diff --git a/__init__.py b/__init__.py index f48c69c..71b9b94 100644 --- a/__init__.py +++ b/__init__.py @@ -42,7 +42,7 @@ def description(): def version(): - return 'Version 7.7.1 - Matera' + return 'Version 7.8.0 - Matera' def icon(): diff --git a/core/config.py b/core/config.py index cd5d2d1..bfcb29a 100644 --- a/core/config.py +++ b/core/config.py @@ -795,6 +795,7 @@ functionNames.append([[' landsat_conversion', 'cfg.batchT.performLandsatConversion', 'cfg.landsatT.landsat', ['input_dir : \'\'', 'mtl_file_path : \'\'', 'celsius_temperature : 0', 'apply_dos1 : 0', 'use_nodata : 1', 'nodata_value : 0', 'pansharpening : 0', 'create_bandset : 1', 'output_dir : \'\'', 'band_set : 1']]]) functionNames.append([[' modis_conversion', 'cfg.batchT.performMODISConversion', 'cfg.MODIST.MODIS', ['input_raster_path : \'\'', 'reproject_wgs84 : 1', 'use_nodata : 1', 'nodata_value : -999', 'create_bandset : 1', 'output_dir : \'\'', 'band_set : 1']]]) functionNames.append([[' mosaic_bandsets', 'cfg.batchT.performMosaicBandSets', 'cfg.mosaicBS.mosaicBandSets', ['band_set_list : \'\'', 'output_dir : \'\'', 'output_name_prefix : \'mosaic\'']]]) +functionNames.append([[' neighbor_pixels', 'cfg.batchT.performNeighborPixels', 'cfg.clssNghbr.classNeighbor', ['band_set : 1', 'matrix_size : 1', 'matrix_file_path : \'\'', 'output_name_prefix : \'neighbor\'', 'statistic : \'sum\'', 'stat_value : 50', 'output_dir : \'\'']]]) functionNames.append([[' reproject_raster_bands', 'cfg.batchT.performReprojectRasters', 'cfg.rprjRstBndsT.reprojectRasters', ['band_set : 1', 'output_dir : \'\'', 'align_raster_path : \'\'', 'same_extent_reference : 0', 'epsg : \'\'','x_resolution : \'\'', 'y_resolution : \'\'', 'resample_pixel_factor : \'\'', 'resampling_method : \'near\'', 'output_nodata_value : -32768', 'data_type : \'auto\'', 'output_name_prefix : \'reproj\'']]]) functionNames.append([[' sentinel1_conversion', 'cfg.batchT.performSentinel1Conversion', 'cfg.sentinel1T.sentinel1', ['input_raster_path : \'\'', 'xml_file_path : \'\'', 'vh : 1', 'vv : 1', 'raster_project : 0', 'raster_projections_band_set : 1', 'convert_to_db : 1', 'use_nodata : 1', 'nodata_value : 0', 'create_bandset : 1', 'output_dir : \'\'', 'band_set : 1']]]) functionNames.append([[' sentinel2_conversion', 'cfg.batchT.performSentinel2Conversion', 'cfg.sentinel2T.sentinel2', ['input_dir : \'\'', 'mtd_safl1c_file_path : \'\'', 'apply_dos1 : 0', 'preprocess_bands_1_9_10 : 0', 'use_nodata : 1', 'nodata_value : 0', 'create_bandset : 1', 'output_dir : \'\'', 'band_set : 1']]]) @@ -821,7 +822,7 @@ functionNames.append([[' edit_raster_using_vector', 'cfg.batchT.performEditRasterUsingVector', 'cfg.editRstr.setRasterValue', ['input_raster_path : \'\'', 'input_vector_path : \'\'', 'vector_field_name : \'\'', 'constant_value : 0', 'expression : \'where(raster == 1, 2, raster)\'']]]) functionNames.append([[' land_cover_change', 'cfg.batchT.performLandCoverChange', 'cfg.landCC.landCoverChange', ['reference_raster_path : \'\'', 'new_raster_path : \'\'', 'output_raster_path : \'\'']]]) functionNames.append([[' reclassification', 'cfg.batchT.performReclassification', 'cfg.reclassification.reclassify', ['input_raster_path : \'\'', 'value_list : \'oldVal_newVal,oldVal_newVal\'', 'use_signature_list_code : 1', 'code_field : \'MC_ID\'', 'output_raster_path : \'\'']]]) -functionNames.append([[' zonal_stat_raster', 'cfg.batchT.performZonalStatRaster', 'cfg.znlSttRstT.zonalStatRaster', ['input_raster_path : \'\'', 'reference_file_path : \'\'', 'use_nodata : 0', 'nodata_value : 0', 'vector_field_name : \'\'', 'statistic : \'sum\'', 'stat_value : 50', 'output_raster_path : \'\'']]]) +functionNames.append([[' zonal_stat_raster', 'cfg.batchT.performZonalStatRaster', 'cfg.znlSttRstT.zonalStatRaster', ['input_raster_path : \'\'', 'reference_file_path : \'\'', 'use_nodata : 0', 'nodata_value : 0', 'vector_field_name : \'\'', 'statistic : \'sum\'', 'stat_value : 50', 'output_raster_path : \'\'']]]) functionNames.append([['Variables']]) functionNames.append([[workingDirNm, 'cfg.batchT.workingDirectory', '', ['\'\'']]]) functionNames.append([[startForDirNm, '', '', ['\'\'']]]) diff --git a/core/input.py b/core/input.py index 13b7c7c..2ed01bc 100644 --- a/core/input.py +++ b/core/input.py @@ -332,6 +332,8 @@ def loadMenu(self): cloud_mask_action = cfg.ipt.addMenuItem(cfg.preprocessing_menu, cfg.utls.cloudMaskingTab, 'semiautomaticclassificationplugin_cloud_masking_tool.svg', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Cloud masking')) # Mosaic bands mosaic_action = cfg.ipt.addMenuItem(cfg.preprocessing_menu, cfg.utls.mosaicBandSetsTab, 'semiautomaticclassificationplugin_mosaic_tool.svg', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Mosaic band sets')) + # Pixel neighbor bands + neighbor_pixels_action = cfg.ipt.addMenuItem(cfg.preprocessing_menu, cfg.utls.neighborPixelsTab, 'semiautomaticclassificationplugin_neighbor_pixels.svg', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Neighbor pixels')) # reproject raster bands reproject_raster_bands_action = cfg.ipt.addMenuItem(cfg.preprocessing_menu, cfg.utls.reprojectrasterbandsTab, 'semiautomaticclassificationplugin_reproject_raster_bands.svg', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Reproject raster bands')) # Split raster bands @@ -502,7 +504,7 @@ def mainTabChanged(self, index): # menu index def menuIndex(self): try: - nDict = {cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band set'): cfg.utls.bandSetTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Basic tools'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band set list'): cfg.utls.BandSetListTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'RGB list'): cfg.utls.RGBListTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Algorithm band weight'): cfg.utls.algorithmBandWeightTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Multiple ROI creation'): cfg.utls.multipleROICreationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Import signatures'): cfg.utls.importSignaturesTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Export signatures'): cfg.utls.exportSignaturesTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Signature threshold'): cfg.utls.signatureThresholdTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'LCS threshold'): cfg.utls.LCSThresholdTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Download products'): cfg.utls.downloadProductsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Preprocessing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Landsat'): cfg.utls.landsatTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-1'): cfg.utls.sentinel1Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-2'): cfg.utls.sentinel2Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-3'): cfg.utls.sentinel3Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'ASTER'): cfg.utls.asterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'MODIS'): cfg.utls.modisTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'GOES'): cfg.utls.GOESTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Vector to raster'): cfg.utls.vectorToRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Clip multiple rasters'): cfg.utls.clipMultipleRastersTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Reproject raster bands'): cfg.utls.reprojectrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Split raster bands'): cfg.utls.splitrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Stack raster bands'): cfg.utls.stackrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Mosaic band sets'): cfg.utls.mosaicBandSetsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Cloud masking'): cfg.utls.cloudMaskingTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band processing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification'): cfg.utls.classificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Random forest'): cfg.utls.randomForestTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'PCA'): cfg.utls.PCATab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Clustering'): cfg.utls.clusteringTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band combination'): cfg.utls.bandCombinationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Spectral distance'): cfg.utls.spectralDistanceTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Postprocessing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Accuracy'): cfg.utls.accuracyTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Land cover change'): cfg.utls.landCoverChangeTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification report'): cfg.utls.classificationReportTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Cross classification'): cfg.utls.crossClassificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Class signature'): cfg.utls.classSignatureTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification to vector'): cfg.utls.classificationToVectorTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Reclassification'): cfg.utls.reclassificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Edit raster'): cfg.utls.editRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification sieve'): cfg.utls.classificationSieveTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification erosion'): cfg.utls.classificationErosionTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification dilation'): cfg.utls.classificationDilationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Zonal stat raster'): cfg.utls.zonalStatRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band calc'): cfg.utls.bandCalcTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Batch'): cfg.utls.batchTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Settings'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Processing setting'): cfg.utls.processingSettingTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Interface'): cfg.utls.interfaceTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Debug'): cfg.utls.debugTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'User manual'): cfg.ipt.quickGuide, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Help'): cfg.ipt.askHelp, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'About'): cfg.utls.aboutTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Support the SCP'): cfg.ipt.supportSCP} + nDict = {cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band set'): cfg.utls.bandSetTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Basic tools'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band set list'): cfg.utls.BandSetListTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'RGB list'): cfg.utls.RGBListTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Algorithm band weight'): cfg.utls.algorithmBandWeightTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Multiple ROI creation'): cfg.utls.multipleROICreationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Import signatures'): cfg.utls.importSignaturesTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Export signatures'): cfg.utls.exportSignaturesTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Signature threshold'): cfg.utls.signatureThresholdTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'LCS threshold'): cfg.utls.LCSThresholdTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Download products'): cfg.utls.downloadProductsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Preprocessing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Landsat'): cfg.utls.landsatTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-1'): cfg.utls.sentinel1Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-2'): cfg.utls.sentinel2Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Sentinel-3'): cfg.utls.sentinel3Tab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'ASTER'): cfg.utls.asterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'MODIS'): cfg.utls.modisTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'GOES'): cfg.utls.GOESTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Vector to raster'): cfg.utls.vectorToRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Clip multiple rasters'): cfg.utls.clipMultipleRastersTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Reproject raster bands'): cfg.utls.reprojectrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Split raster bands'): cfg.utls.splitrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Stack raster bands'): cfg.utls.stackrasterbandsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Mosaic band sets'): cfg.utls.mosaicBandSetsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Neighbor pixels'): cfg.utls.neighborPixelsTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Cloud masking'): cfg.utls.cloudMaskingTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band processing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification'): cfg.utls.classificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Random forest'): cfg.utls.randomForestTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'PCA'): cfg.utls.PCATab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Clustering'): cfg.utls.clusteringTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band combination'): cfg.utls.bandCombinationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Spectral distance'): cfg.utls.spectralDistanceTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Postprocessing'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Accuracy'): cfg.utls.accuracyTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Land cover change'): cfg.utls.landCoverChangeTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification report'): cfg.utls.classificationReportTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Cross classification'): cfg.utls.crossClassificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Class signature'): cfg.utls.classSignatureTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification to vector'): cfg.utls.classificationToVectorTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Reclassification'): cfg.utls.reclassificationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Edit raster'): cfg.utls.editRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification sieve'): cfg.utls.classificationSieveTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification erosion'): cfg.utls.classificationErosionTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Classification dilation'): cfg.utls.classificationDilationTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Zonal stat raster'): cfg.utls.zonalStatRasterTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Band calc'): cfg.utls.bandCalcTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Batch'): cfg.utls.batchTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Settings'): self.topTree, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Processing setting'): cfg.utls.processingSettingTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Interface'): cfg.utls.interfaceTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Debug'): cfg.utls.debugTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'User manual'): cfg.ipt.quickGuide, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Help'): cfg.ipt.askHelp, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'About'): cfg.utls.aboutTab, cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Support the SCP'): cfg.ipt.supportSCP} s = cfg.ui.menu_treeWidget.selectedItems() n = s[0].text(0) t = cfg.ui.menu_treeWidget diff --git a/core/utils.py b/core/utils.py index ff55831..88b1fde 100644 --- a/core/utils.py +++ b/core/utils.py @@ -826,26 +826,22 @@ def copyRenderer(self, inputRaster, outputRaster): # calculate covariance matrix from array list def calculateCovMatrix(self, arrayList): matrix = cfg.np.stack(arrayList) - nanA = cfg.np.where(cfg.np.any(cfg.np.isnan(matrix), axis=0)) - matrix = cfg.np.delete(matrix, nanA, axis=1) # covariance matrix (degree of freedom = 1 for unbiased estimate) - CovMatrix = cfg.np.cov(matrix, ddof=1) + CovMatrix = cfg.np.ma.cov(cfg.np.ma.masked_invalid(matrix), ddof=1) try: - if cfg.np.isnan(CovMatrix[0,0]): - CovMatrix = 'No' try: inv = cfg.np.linalg.inv(CovMatrix) if cfg.np.isnan(inv[0,0]): CovMatrix = 'No' except: - cfg.utls.logCondition(str(__name__) + "-" + (cfg.inspectSCP.stack()[0][3])+ " " + cfg.utls.lineOfCode(), "TEST matrix: " + str(CovMatrix)) + cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'TEST matrix: ' + str(CovMatrix)) CovMatrix = 'No' except Exception as err: CovMatrix = 'No' # logger cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' ERROR exception: ' + str(err)) # logger - cfg.utls.logCondition(str(__name__) + "-" + (cfg.inspectSCP.stack()[0][3])+ " " + cfg.utls.lineOfCode(), "cov matrix: " + str(CovMatrix)) + cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'cov matrix: ' + str(CovMatrix)) return CovMatrix # convert list to covariance array @@ -2901,6 +2897,7 @@ def rasterBlocks(self, gdalRaster, blockSizeX = 1, blockSizeY = 1, previewSize = cfg.utls.logCondition(str(__name__) + "-" + str(cfg.inspectSCP.stack()[0][3])+ " " + cfg.utls.lineOfCode()) return rX, rY, lX, lY, pX, pY + # read a block of band as array def readArrayBlock(self, gdalBand, pixelStartColumn, pixelStartRow, blockColumns, blockRow): try: @@ -2948,14 +2945,22 @@ def writeRasterBlock(self, gdalRaster, bandNumber, dataArray, pixelStartColumn, # create raster from another raster def createRasterFromReferenceMultiprocess(self, raster, bandNumber, outputRasterList, nodataValue = None, driver = 'GTiff', format = 'Float32', compress = 'No', compressFormat = 'DEFLATE21', projection = None, geotransform = None, constantValue = None, xSize = None, ySize = None): + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'format ' + str(format) ) # open input with GDAL gdalRasterRef = cfg.gdalSCP.Open(raster, cfg.gdalSCP.GA_ReadOnly) if format == 'Float64': format = cfg.gdalSCP.GDT_Float64 elif format == 'Float32': format = cfg.gdalSCP.GDT_Float32 + elif format == 'Int32': + format = cfg.gdalSCP.GDT_Int32 + elif format == 'UInt32': + format = cfg.gdalSCP.GDT_UInt32 elif format == 'Int16': format = cfg.gdalSCP.GDT_Int16 + elif format == 'UInt16': + format = cfg.gdalSCP.GDT_UInt16 elif format == 'Byte': format = cfg.gdalSCP.GDT_Byte for o in outputRasterList: @@ -3017,6 +3022,8 @@ def createRasterFromReference(self, gdalRasterRef, bandNumber, outputRasterList, format = cfg.gdalSCP.GDT_Float64 elif format == 'Float32': format = cfg.gdalSCP.GDT_Float32 + elif format == 'Int32': + format = cfg.gdalSCP.GDT_Int32 elif format == 'Int16': format = cfg.gdalSCP.GDT_Int16 elif format == 'Byte': @@ -3701,11 +3708,16 @@ def reclassifyRaster(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumbe # cross raster def crossRasters(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumber, rowNumber, pixelStartColumn, pixelStartRow, outputArrayFile, functionBandArgument, functionVariableList, outputBandNumber): + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'functionVariableList ' + str(functionVariableList) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'functionBandArgument ' + str(functionBandArgument) ) o = eval(functionVariableList) a = cfg.np.copy(o) for i in functionBandArgument: # create condition o[a==int(i[0])] = int(i[1]) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'o ' + str(o) ) return o # band calculation @@ -3775,6 +3787,66 @@ def scatterRasterBandCalculation(self, gdalBandList, rasterSCPArrayfunctionBand, cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), f) return o + # raster neighbor + def rasterNeighbor(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumber, rowNumber, pixelStartColumn, pixelStartRow, outputArrayFile, functionBandArgument, functionVariableList, outputBandNumber): + structure = functionBandArgument + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'structure ' + str(structure)) + + sizeJ = int(structure.shape[0]/2) + sizeI = int(structure.shape[1]/2) + # faster + if 'nansum' in functionVariableList[0]: + o = cfg.signalSCP.convolve2d(rasterSCPArrayfunctionBand[:,:,0], structure, 'same', boundary='fill', fillvalue=cfg.np.nan) + else: + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'sizeI ' + str(sizeI)) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'sizeJ ' + str(sizeJ)) + A = cfg.np.zeros([rasterSCPArrayfunctionBand.shape[0], rasterSCPArrayfunctionBand.shape[1], structure.shape[0]*structure.shape[1]]) + A[:] = cfg.np.nan + z = 0 + for i in range(-sizeI, sizeI+1): + for j in range(-sizeJ, sizeJ+1): + try: + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), '[i,j] ' + str([i,j]) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'structure[j+sizeJ,i+sizeI] ' + str(structure[j+sizeJ,i+sizeI]) ) + if not cfg.np.isnan(structure[j+sizeJ,i+sizeI]): + if i < 0: + if j < 0: + A[-j:,-i:,z] = rasterSCPArrayfunctionBand[0:j,0:i,0] * structure[j+sizeJ,i+sizeI] + elif j == 0: + A[:,-i:,z] = rasterSCPArrayfunctionBand[:,0:i,0] * structure[j+sizeJ,i+sizeI] + else: + A[0:-j,-i:,z] = rasterSCPArrayfunctionBand[j:,0:i,0] * structure[j+sizeJ,i+sizeI] + elif i == 0: + if j < 0: + A[-j:,:,z] = rasterSCPArrayfunctionBand[0:j,:,0] * structure[j+sizeJ,i+sizeI] + elif j == 0: + A[:,:,z] = rasterSCPArrayfunctionBand[:,:,0] * structure[j+sizeJ,i+sizeI] + else: + A[0:-j,:,z] = rasterSCPArrayfunctionBand[j:,:,0] * structure[j+sizeJ,i+sizeI] + else: + if j < 0: + A[-j:,0:-i,z] = rasterSCPArrayfunctionBand[0:j,i:,0] * structure[j+sizeJ,i+sizeI] + elif j == 0: + A[:,0:-i,z] = rasterSCPArrayfunctionBand[:,i:,0] * structure[j+sizeJ,i+sizeI] + else: + A[0:-j,0:-i,z] = rasterSCPArrayfunctionBand[j:,i:,0] * structure[j+sizeJ,i+sizeI] + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'A[:,:,z] ' + str(A[0,0,z]) ) + z = z+1 + except: + pass + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'A[0,0,:] ' + str(A[0,0,:]) ) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'functionVariableList ' + str(functionVariableList[0]) ) + o = eval(functionVariableList[0]) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'o ' + str(o) ) + return o + # raster erosion def rasterErosion(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumber, rowNumber, pixelStartColumn, pixelStartRow, outputArrayFile, functionBandArgument, functionVariableList, outputBandNumber): A = rasterSCPArrayfunctionBand[::, ::, 0] @@ -3844,11 +3916,16 @@ def rasterDilation(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumber, return o # calculate raster with stats - def regionGrowingAlgMultiprocess(self, gdalBandList, rasterSCPArrayfunctionBand, columnNumber, rowNumber, pixelStartColumn, pixelStartRow, outputRaster, functionBandArgument, functionVariableList, outputBandNumber): + def regionGrowingAlgMultiprocess(self, rasterSCPArrayfunctionBand, functionBandArgument, functionVariableList, outputArrayFile, outputBandNumber): # create function - f = " rasterSCPArrayfunctionBand[::, ::," + str(functionBandArgument) + "] " + f = ' rasterSCPArrayfunctionBand[::, ::,' + str(functionBandArgument) + '] ' + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'f ' + str(f) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'functionVariableList ' + str(functionVariableList) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'rasterSCPArrayfunctionBand ' + str(rasterSCPArrayfunctionBand.shape) ) # perform operation array = eval(f) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'array ' + str(array) ) seedX = functionVariableList[0] seedY = functionVariableList[1] spectralRange = functionVariableList[2] @@ -3876,6 +3953,7 @@ def regionGrowingAlgMultiprocess(self, gdalBandList, rasterSCPArrayfunctionBand, break if rr is None and rV != 0 : rr = cfg.np.copy(rV_mask) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'rr.shape ' + str(rr.shape) ) return [rr] # replace numpy operators for expressions in Band calc @@ -4166,6 +4244,11 @@ def multiProcessNoBlocksDev(self, raster = None, signatureList = None, bandNumbe import datetime import random import numpy as np + try: + from scipy.ndimage import label + cfg.labelSCP = label + except: + pass from osgeo import gdal from osgeo import ogr from osgeo import osr @@ -4205,7 +4288,7 @@ def multiProcessNoBlocksDev(self, raster = None, signatureList = None, bandNumbe if outputBandNumber is None: outputBandNumber = 1 # numpy data - array = cfg.np.zeros((rX, rY, len(gdalBandList)), dtype=cfg.np.float32) + array = cfg.np.zeros((rY, rX, len(gdalBandList)), dtype=cfg.np.float32) for b in bandNumberList: if nodataValue is None: ndv = cfg.NoDataVal @@ -4235,7 +4318,7 @@ def multiProcessNoBlocksDev(self, raster = None, signatureList = None, bandNumbe if functionBandArgument == cfg.multiAddFactorsVar: multiAdd = functionVariable a = cfg.utls.arrayMultiplicativeAdditiveFactors(a, multiAdd[0][b], multiAdd[1][b]) - array[::, ::, b] = a.reshape(rX, rY) + array[::, ::, b] = a else: return 'No' a = None @@ -4266,7 +4349,7 @@ def multiProcessNoBlocksDev(self, raster = None, signatureList = None, bandNumbe return o # process a raster entirely - def multiProcessNoBlocks(self, rasterPath, signatureList = None, bandNumberList = None, functionRaster = None, algorithmName = None, outputRasterList = None, outputAlgorithmRaster = None, outputClassificationRaster = None, previewSize = 0, previewPoint = None, nodataValue = None, macroclassCheck = 'No', functionBandArgument = None, functionVariable = None, progressMessage = "", skipReplaceNoData = None, threadNumber = None, parallel = None, outputBandNumber = None, compress = 'No', compressFormat = 'LZW'): + def multiProcessNoBlocks(self, rasterPath, signatureList = None, bandNumberList = None, functionRaster = None, algorithmName = None, outputRasterList = None, outputAlgorithmRaster = None, outputClassificationRaster = None, previewSize = 0, previewPoint = None, nodataValue = None, macroclassCheck = 'No', functionBandArgument = None, functionVariable = None, progressMessage = '', skipReplaceNoData = None, threadNumber = None, parallel = None, outputBandNumber = None, compress = 'No', compressFormat = 'LZW'): # logger cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'start processRaster no boundaries') if threadNumber is None: @@ -4334,11 +4417,6 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N import datetime import random import numpy as np - try: - from scipy.ndimage import label - cfg.labelSCP = label - except: - pass try: import scipy.stats.distributions as statdistr cfg.statdistrSCP = statdistr @@ -4373,6 +4451,10 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N compressFormat = writerLog[7] dataType = writerLog[8] boundarySize = writerLog[9] + roX = writerLog[10] + roY = writerLog[11] + vBX = writerLog[12] + vBY = writerLog[13] cfg.logFile = cfg.tmpDir + '/log_' + wrtProc # GDAL config try: @@ -4413,6 +4495,17 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N outAlgs = [] # signature dictionary rasters outSigDict = {} + # create raster + uLX = tLX + roX * pSX + uLY = tLY + roY * pSY + geotransform = (uLX, pSX, rGT[2], uLY, rGT[4], pSY) + wrtFile = cfg.utls.createTempRasterPath('tif', wrtProc) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'wrtFile, roX, roY, vBX, vBY ' + str([wrtFile, roX, roY, vBX, vBY]) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'dataType ' + str(dataType) ) + # output + if wrtOut is not None: + cfg.utls.createRasterFromReferenceMultiprocess(raster, 1, [wrtFile], nodataValue, 'GTiff', dataType, compress, compressFormat, geotransform = geotransform, xSize = vBX, ySize = vBY) process = 0 while process < 2: procError = 'No' @@ -4435,11 +4528,14 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N gdalBandList.append(rB) # perform the process twice in case of error while check < 2: - wrtFile = cfg.utls.createTempRasterPath('tif', wrtProc) if boundarySize is None: x, y, bSX, bSY = sec + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'x, y, bSX, bSY ' + str([x, y, bSX, bSY]) ) else: - x, y, bSX, bSY, oX, oXX = sec + x, y, bSX, bSY, oX, oXX, oY, oYY = sec + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'x, y, bSX, bSY, oX, oXX, oY, oYY ' + str([x, y, bSX, bSY, oX, oXX, oY, oYY]) ) # if classification if functionRaster is not None and functionBand == 'Yes': dT = cfg.datetimeSCP.datetime.now().strftime('%Y%m%d_%H%M%S%f') @@ -4469,7 +4565,7 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N uLY = tLY + y * pSY geotransform = (uLX, pSX, rGT[2], uLY, rGT[4], pSY) cfg.utls.createRasterFromReferenceMultiprocess(raster, 1, outputReferenceRasterList, nodataValue, 'GTiff', cfg.rasterDataType, compress, compressFormat, geotransform = geotransform, xSize = bSX, ySize = bSY) - array = cfg.np.zeros((bSX, bSY, len(gdalBandList)), dtype=cfg.np.float32) + array = cfg.np.zeros((bSY, bSX, len(gdalBandList)), dtype=cfg.np.float32) for b in range(0, len(gdalBandList)): sclB = 1.0 offsB = 0.0 @@ -4539,7 +4635,9 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N if functionBandArgument == cfg.multiAddFactorsVar: multiAdd = functionVariable a = cfg.utls.arrayMultiplicativeAdditiveFactors(a, multiAdd[0][b], multiAdd[1][b]) - array[::, ::, b] = a.reshape(bSX, bSY) + array[::, ::, b] = a + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'array[0, 0, b] ' + str(array[0, 0, b] ) ) else: procError = 'Error array none' a = None @@ -4570,17 +4668,17 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'array ' + str(array[0,0,0])) except: pass - c = array.reshape(bSY, bSX, len(gdalBandList)) - # logger - cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'c ' + str(c[0,0,0])) # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'wrtOut ' + str(wrtOut)) # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'functionBand ' + str(functionBand)) - array = None if functionRaster is not None: if functionBand == 'No': - oo = functionRaster(gdalBandList, c, bSX, bSY, x, y, outputArrayFile, functionBandArgument, functionVariable, outputBandNumber) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'outputBandNumber ' + str(outputBandNumber)) + oo = functionRaster(gdalBandList, array, bSX, bSY, x, y, outputArrayFile, functionBandArgument, functionVariable, outputBandNumber) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'oo ' + str(oo)) if wrtOut is None: o.append(oo) else: @@ -4594,7 +4692,7 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'outputSigRasterList ' + str(outputSigRasterList)) landCoverSignature, LCSClassAlgorithm, LCSLeaveUnclassified, algBandWeigths, algThrshld = classificationOptions - oo = functionRaster(len(gdalBandList), signatureList, algorithmName, c, landCoverSignature, LCSClassAlgorithm,LCSLeaveUnclassified, algBandWeigths, outputSigRasterList, outAlg, outClass, nodataValue, macroclassCheck, algThrshld) + oo = functionRaster(len(gdalBandList), signatureList, algorithmName, array, landCoverSignature, LCSClassAlgorithm,LCSLeaveUnclassified, algBandWeigths, outputSigRasterList, outAlg, outClass, nodataValue, macroclassCheck, algThrshld) # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'oo ' + str(oo)) o = [outClasses, outAlgs, outSigDict] @@ -4616,9 +4714,11 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N # write array oo[cfg.np.isnan(oo)] = outputNoData if boundarySize is not None: - oo = oo[::, oX:(bSX-oXX)] + oo = oo[oY:(bSY-oYY), oX:(bSX-oXX)] x = x + oX + y = y + oY bSX = bSX - oX - oXX + bSY = bSY - oY - oYY # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'x ' + str(x)) cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'oXX ' + str(oXX)) @@ -4630,10 +4730,12 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N pCount = 0 while True: pCount = pCount + 1 - writeOut = cfg.utls.writeRaster(wrtFile, [tLX + x*pSX, pSX, rGT[2], tLY + y*pSY, rGT[4], pSY], rP, bSX, bSY, format, oo, outputNoData, scl, offs, compress, compressFormat, dataType) + #writeOut = cfg.utls.writeRaster(wrtFile, [tLX + x*pSX, pSX, rGT[2], tLY + y*pSY, rGT[4], pSY], rP, bSX, bSY, format, oo, outputNoData, scl, offs, compress, compressFormat, dataType) + writeOut = cfg.utls.writeRasterNew(wrtFile, x-roX, y-roY, bSX, bSY, oo, outputNoData, scl, offs, dataType) oR = cfg.gdalSCP.Open(wrtFile, cfg.gdalSCP.GA_ReadOnly) bO = oR.GetRasterBand(1) - oo2 = bO.ReadAsArray() + oo2 = cfg.utls.readArrayBlock(bO, x-roX, y-roY, bSX, bSY) + #oo2 = bO.ReadAsArray() bO = None oR = None checkOO = cfg.np.allclose(oo, oo2, equal_nan=True) @@ -4644,9 +4746,10 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N if pCount > 3: break else: - writeOut = cfg.utls.writeRaster(wrtFile, [tLX + x*pSX, pSX, rGT[2], tLY + y*pSY, rGT[4], pSY], rP, bSX, bSY, format, oo, outputNoData, scl, offs, compress, compressFormat, dataType) + #writeOut = cfg.utls.writeRaster(wrtFile, [tLX + x*pSX, pSX, rGT[2], tLY + y*pSY, rGT[4], pSY], rP, bSX, bSY, format, oo, outputNoData, scl, offs, compress, compressFormat, dataType) + writeOut = cfg.utls.writeRasterNew(wrtFile, x-roX, y-roY, bSX, bSY, oo, outputNoData, scl, offs, dataType) check = 2 - c = None + array = None oo = None oo2 = None # logger @@ -4661,7 +4764,9 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N progressQueue.put([perc], False) # close GDAL rasters for b in range(0, len(gdalBandList)): + gdalBandList[b].FlushCache() gdalBandList[b] = None + gdalBandList = None rD = None countPerc = countPerc + 1 if procError == 'No': @@ -4673,7 +4778,7 @@ def processRasterDev(self, raster = None, signatureList = None, functionBand = N return o, '' # process a raster with block size - def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = None, functionRaster = None, algorithmName = None, outputRasterList = None, outputAlgorithmRaster = None, outputClassificationRaster = None, classificationOptions = None, nodataValue = None, macroclassCheck = 'No', functionBandArgument = None, functionVariable = None, progressMessage = "", skipReplaceNoData = None, threadNumber = None, parallel = None, deleteArray = None, skipSingleBand = None, outputBandNumber = None, virtualRaster = 'No', compress = 'No', compressFormat = 'LZW', outputNoDataValue = None, dataType = None, scale = None, offset = None, parallelWritingCheck = None, boundarySize = None): + def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = None, functionRaster = None, algorithmName = None, outputRasterList = None, outputAlgorithmRaster = None, outputClassificationRaster = None, classificationOptions = None, nodataValue = None, macroclassCheck = 'No', functionBandArgument = None, functionVariable = None, progressMessage = "", skipReplaceNoData = None, threadNumber = None, parallel = None, deleteArray = None, skipSingleBand = None, outputBandNumber = None, virtualRaster = 'No', compress = 'No', compressFormat = 'LZW', outputNoDataValue = None, dataType = None, scale = None, offset = None, parallelWritingCheck = None, boundarySize = None, additionalLayer = None): # logger cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'start processRaster') if outputNoDataValue is None: @@ -4681,12 +4786,10 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No if dataType is None: dataType = cfg.rasterDataType gdalRaster = cfg.gdalSCP.Open(rasterPath, cfg.gdalSCP.GA_ReadOnly) - if algorithmName is None: + if additionalLayer is None: additionalLayer = 1 elif algorithmName == 'PCA': additionalLayer = 10 - else: - additionalLayer = 1 if outputBandNumber is None: outputBandNumber = 1 if parallelWritingCheck is None: @@ -4695,14 +4798,19 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No bandNumber = gdalRaster.RasterCount except: return 'No' - # memory issues - #if functionBandArgument is not None: - # if 'max(' in functionBandArgument or 'min(' in functionBandArgument or 'median(' in functionBandArgument: - # bandNumber = bandNumber * 10 - blockSizeX = self.calculateBlockSize(bandNumber + additionalLayer) - blockSizeY = blockSizeX - # raster blocks - rX, rY, lX, lY, pX, pY = self.rasterBlocks(gdalRaster, blockSizeX, blockSizeY) + if threadNumber is None: + threadNumber = cfg.threads + # number of x pixels + rX = gdalRaster.RasterXSize + # number of y pixels + rY = gdalRaster.RasterYSize + # list of range pixels + blockSizeY = int(rY/threadNumber)+1 + lY = list(range(0, rY, blockSizeY)) + blockSizeX = int(cfg.RAMValue / (blockSizeY * cfg.arrayUnitMemory * (bandNumber + additionalLayer) * threadNumber))+1 + if blockSizeX > rX: + blockSizeX = rX + lX = list(range(0, rX, blockSizeX)) gdalRaster = None # set initial value for progress bar try: @@ -4710,26 +4818,22 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No except: progresStep = 60 progressStart = 20 - progresStep - if blockSizeX > rX: - blockSizeX = rX - if blockSizeY > rY: - blockSizeY = rY singleBandNumber = None cfg.remainingTime = 0 remainingBlocks = len(lX) * len(lY) totBlocks = remainingBlocks - if threadNumber is None: - threadNumber = cfg.threads manager = cfg.MultiManagerSCP() # progress queue pMQ = manager.Queue() - ranges = [] + results = [] pR = [] # temporary raster output tmpRastList = [] cfg.subprocRes = {} # calculate raster ranges + ranges = [] for y in lY: + secs = [] bSY = blockSizeY if y + bSY > rY: bSY = rY - y @@ -4739,28 +4843,48 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No bSX = rX - x # single parallel process if parallel is None: - subX = list(range(0, bSX, int(bSX/threadNumber)+1)) - subX.append(bSX) - results = [] - for p in range(0, len(subX)-1): - if boundarySize is None: - ranges.append([x + subX[p], y, subX[p+1] - subX[p], bSY]) - else: - boundX = x + subX[p] - boundarySize - boundSX = subX[p+1] - subX[p] + boundarySize * 2 - oX = boundarySize - oXX = boundarySize - if boundX <= 0: - boundX = 0 - boundSX = subX[p+1] - subX[p] + boundarySize - oX = 0 - if boundX + boundSX >= rX: - boundSX = rX - boundX - oXX = 0 - ranges.append([boundX, y, boundSX, bSY, oX, oXX]) + if boundarySize is None: + secs.append([x, y, bSX, bSY]) + else: + # left x position plus boundary + boundX = x - boundarySize + # right x position plus boundary + boundSX = bSX + boundarySize * 2 + # left pixels + oX = boundarySize + # right pixels + oXX = boundarySize + if boundX <= 0: + boundX = 0 + boundSX = bSX + boundarySize + oX = 0 + if boundX + boundSX >= rX: + boundSX = rX - boundX + oXX = 0 + # upper position plus boundary + boundY = y - boundarySize + # lower y position plus boundary + boundSY = bSY + boundarySize * 2 + # upper pixels + oY = boundarySize + # lower pixels + oYY = boundarySize + if boundY <= 0: + boundY = 0 + boundSY = bSY + boundarySize + oY = 0 + if boundY + boundSY >= rY: + boundSY = rY - boundY + oYY = 0 + secs.append([boundX, boundY, boundSX, boundSY, oX, oXX, oY, oYY]) # multiple parallel processes else: ranges.append([x, y, bSX, bSY]) + # single parallel process + if parallel is None: + ranges.append(secs) + if skipSingleBand is not None: + ranges.append([0, 0, rX, rY]) # single parallel process if parallel is None: # pool @@ -4768,13 +4892,26 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No memVal = '100000000' if progressMessage is not None: cfg.uiUtls.updateBar(progressStart + int((100 - progressStart) * (totBlocks - remainingBlocks) / totBlocks), progressMessage) - rangeRanges = list(range(0, len(ranges), int(round(len(ranges)/threadNumber)))) - rangeRanges.append(len(ranges)) - for p in range(0, len(rangeRanges)-1): - sections = ranges[rangeRanges[p]:rangeRanges[p+1]] + for p in range(0, len(ranges)): + sections = ranges[p] + vX = [] + vBX = 0 + for sec in sections: + if boundarySize is not None: + x, y, bSX, bSY, oX, oXX, oY, oYY = sec + x = x + oX + bSX = bSX - oX - oXX + y = y + oY + bSY = bSY - oY - oYY + else: + x, y, bSX, bSY = sec + vX.append(x) + vBX = vBX + bSX + # minimum origin + roX = min(vX) if cfg.actionCheck == 'Yes': pOut = '' - wrtP = [p, outputRasterList, cfg.tmpDir, parallelWritingCheck, pMQ, memVal, compress, compressFormat, dataType, boundarySize] + wrtP = [p, outputRasterList, cfg.tmpDir, parallelWritingCheck, pMQ, memVal, compress, compressFormat, dataType, boundarySize, roX, y, vBX, bSY] c = cfg.pool.apply_async(self.processRasterDev, args=(rasterPath, signatureList, functionBand, functionRaster, algorithmName, pOut, outputAlgorithmRaster, outputClassificationRaster, sections, classificationOptions, nodataValue, macroclassCheck, functionBandArgument, functionVariable, progressMessage, skipReplaceNoData, singleBandNumber, outputBandNumber, outputNoDataValue, scale, offset, wrtP)) results.append([c, p]) cfg.QtWidgetsSCP.qApp.processEvents() @@ -4841,6 +4978,7 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No cfg.pool = cfg.poolSCP(processes=len(list(range(sez[s], sez[s+1])))) memVal = str(int( cfg.RAMValue / len(list(range(sez[s], sez[s+1]))))*1000000) results = [] + roX = 0 for p in range(sez[s], sez[s+1]): if cfg.actionCheck == 'Yes': sections= ranges @@ -4861,7 +4999,7 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No fArg = functionBandArgument[p] fVar = functionVariable[p] otpLst = None - wrtP = [p, otpLst, cfg.tmpDir, parallelWritingCheck, pMQ, memVal, compress, compressFormat, dataType, boundarySize] + wrtP = [p, otpLst, cfg.tmpDir, parallelWritingCheck, pMQ, memVal, compress, compressFormat, dataType, boundarySize, 0, 0, rX, rY] if skipSingleBand is None: singleBand = p else: @@ -4981,7 +5119,7 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No for oA in cfg.subprocRes[p][1]: outputAlgs.append(oA) return [outputClasses, outputAlgs, outSigDict] - # delete temp array + # delete temp array if deleteArray is None and virtualRaster != 'Yes': for n in tmpRastList: try: @@ -4992,45 +5130,6 @@ def multiProcessRaster(self, rasterPath, signatureList = None, functionBand = No cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'end processRaster') return 'Yes' - # multi cascaded union - def multiCascadedUnion(self, geometries, writerLog = None): - from . import config as cfg - import os - import sys - import inspect - import time - import datetime - import random - from osgeo import gdal - from osgeo import ogr - from osgeo import osr - cfg.osSCP = os - cfg.sysSCP = sys - cfg.inspectSCP = inspect - cfg.datetimeSCP = datetime - cfg.randomSCP = random - cfg.gdalSCP = gdal - cfg.ogrSCP = ogr - cfg.osrSCP = osr - from .utils import Utils - cfg.utls = Utils() - # GDAL config - try: - cfg.gdalSCP.SetConfigOption('GDAL_DISABLE_READDIR_ON_OPEN', 'TRUE') - cfg.gdalSCP.SetConfigOption('GDAL_CACHEMAX', '4') - cfg.gdalSCP.SetConfigOption('VSI_CACHE', 'FALSE') - except: - pass - wrtProc = str(writerLog[0]) - cfg.tmpDir = writerLog[1] - cfg.logFile = cfg.tmpDir + '/log_' + wrtProc - # logger - cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), " process: " + str(wrtProc)) - geometry = geometries.UnionCascaded() - # logger - cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'cascaded union performed') - return geometry, '' - # convert raster to shapefile def multiProcessRasterToVector(self, rasterPath, outputVectorPath, fieldName = 'No', threadNumber = None, dissolveOutput = 'Yes'): cfg.utls.logCondition(str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'start raster to vector') @@ -5306,6 +5405,59 @@ def writeRaster(self, rasterPath, geoTransform, projection, bSX, bSY, format, da r = bO.WriteRaster(0, 0, bSX, bSY, dataArray[:bSY, :bSX].astype(oType).tostring()) # logger cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'output r ' + str(r)) + bO.FlushCache() + bO = None + oR = None + return rasterPath + + # write raster + def writeRasterNew(self, rasterPath, x, y, bSX, bSY, dataArray, nodataValue = None, scale = None, offset = None, dataType = None): + if dataType is not None: + if dataType == 'Float64': + oType = cfg.np.float64 + elif dataType == 'Float32': + oType = cfg.np.float32 + elif dataType == 'Int32': + oType = cfg.np.int32 + elif dataType == 'UInt32': + oType = cfg.np.uint32 + elif dataType == 'Int16': + oType = cfg.np.int16 + elif dataType == 'UInt16': + oType = cfg.np.uint16 + elif dataType == 'Byte': + oType = cfg.np.byte + else: + oType = cfg.np.float32 + else: + oType = cfg.np.float32 + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'oType ' + str(oType)) + oR = cfg.gdalSCP.Open(rasterPath, cfg.gdalSCP.GA_Update) + bO = oR.GetRasterBand(1) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'write bO ' + str(bO)) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'dataArray shape write ' + str(dataArray.shape) + ' type ' + str(dataArray.dtype) ) + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' scale ' + str(scale) ) + try: + # it seems a GDAL issue that if scale is float the datatype is converted to Float32 + if scale is not None or offset is not None: + dataArray = cfg.np.subtract(dataArray/scale, offset/scale) + #bO.SetScale(scale) + #bO.SetOffset(offset) + except Exception as err: + # logger + cfg.utls.logToFile(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' ERROR exception: ' + str(err)) + if nodataValue is not None: + bO.SetNoDataValue(int(nodataValue)) + try: + dataArray = dataArray[::, ::, 0] + except: + pass + r = bO.WriteRaster(x, y, bSX, bSY, dataArray[:bSY, :bSX].astype(oType).tostring()) + # logger + cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'output r ' + str(r)) + bO.FlushCache() bO = None oR = None return rasterPath @@ -7053,6 +7205,8 @@ def getRasterDataTypeName(self, inputRaster): rD = cfg.gdalSCP.Open(inputRaster, cfg.gdalSCP.GA_ReadOnly) b = rD.GetRasterBand(1) dType = cfg.gdalSCP.GetDataTypeName(b.DataType) + b.FlushCache() + b = None rD = None return dType @@ -7093,7 +7247,7 @@ def readAllBandsFromRaster(self, gdalRaster): # logger cfg.utls.logCondition(str(__name__) + "-" + str(cfg.inspectSCP.stack()[0][3])+ " " + cfg.utls.lineOfCode()) return bandList - + # copy raster with GDAL def GDALCopyRaster(self, input, output, outFormat = 'GTiff', compress = 'No', compressFormat = 'DEFLATE', additionalParams = ''): outDir = cfg.osSCP.path.dirname(output) @@ -7110,7 +7264,7 @@ def GDALCopyRaster(self, input, output, outFormat = 'GTiff', compress = 'No', co manager = cfg.MultiManagerSCP() # progress queue pMQ = manager.Queue() - memVal = str(int(cfg.RAMValue * 0.3)*1000000) + memVal = str(int(cfg.RAMValue)*1000000) wrtP = [p, cfg.tmpDir, memVal, pMQ] results = [] c = cfg.pool.apply_async(self.gdalTranslate, args=(input, output, a, wrtP)) @@ -7132,7 +7286,13 @@ def GDALCopyRaster(self, input, output, outFormat = 'GTiff', compress = 'No', co dots = '' cfg.uiUtls.updateBar(int(pMQp[0]), cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Writing file') + dots) except: - pass + try: + dots = dots + '.' + if len(dots) > 3: + dots = '' + except: + dots = '' + cfg.uiUtls.updateBar(message = cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Writing file') + dots) cfg.timeSCP.sleep(1) cfg.QtWidgetsSCP.qApp.processEvents() for r in results: @@ -7674,7 +7834,7 @@ def mergeDissolveLayer(self, inputLayer, targetLayer, column, xListCoordinates): for v in values: uVFL = None # to be replaced by cascaded ST_UNION when performance issues are solved, see https://groups.google.com/g/spatialite-users/c/FTO_cmLCfpE/ - sql = 'SELECT ST_unaryunion(ST_COLLECT(geom)), GROUP_CONCAT(DISTINCT id) FROM (SELECT fid as id, geom FROM "' + iNm0 + '" WHERE ' + column + ' = ' + str(v) + ') INNER JOIN (SELECT DISTINCT id FROM "rtree_' + iNm0 + '_geom" WHERE minx IN (' + sqlList + ') OR maxx IN (' + sqlList + ') ) USING (id)' + sql = 'SELECT DISTINCT(ST_unaryunion(ST_COLLECT(geom))), GROUP_CONCAT(DISTINCT id) FROM (SELECT fid as id, geom FROM "' + iNm0 + '" WHERE ' + column + ' = ' + str(v) + ') INNER JOIN (SELECT DISTINCT id FROM "rtree_' + iNm0 + '_geom" WHERE minx IN (' + sqlList + ') OR maxx IN (' + sqlList + ') ) USING (id)' # logger cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'sql ' + sql) uV = inputM.ExecuteSQL(sql, dialect = 'SQLITE') @@ -7688,18 +7848,39 @@ def mergeDissolveLayer(self, inputLayer, targetLayer, column, xListCoordinates): # logger cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' count geometries ' + str(cUG)) if cUG > 1: - oL.StartTransaction() for j in range(0, cUG): + oL.StartTransaction() jg = geometryRef.GetGeometryRef(int(j)) - oF = cfg.ogrSCP.Feature(oLDefn) - oFO = oF.SetGeometry(jg) - # logger - cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' oFO ' + str(oFO)) - oF.SetField(column, v) - oLO = oL.CreateFeature(oF) - # logger - cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' oLO ' + str(oLO)) - oL.CommitTransaction() + try: + if jg is not None: + if jg.IsValid() is False: + jg = jg.Buffer(0.0) + if jg.IsValid() is True: + oF = cfg.ogrSCP.Feature(oLDefn) + oFO = oF.SetGeometry(jg) + oF.SetField(column, v) + oLO = oL.CreateFeature(oF) + oL.CommitTransaction() + else: + oL.RollbackTransaction() + oL.CommitTransaction() + oL.StartTransaction() + oF = cfg.ogrSCP.Feature(oLDefn) + oF.SetGeometry(geometryRef) + oF.SetField(column, v) + oL.CreateFeature(oF) + oL.CommitTransaction() + break + except: + oL.RollbackTransaction() + oL.CommitTransaction() + oL.StartTransaction() + oF = cfg.ogrSCP.Feature(oLDefn) + oF.SetGeometry(geometryRef) + oF.SetField(column, v) + oL.CreateFeature(oF) + oL.CommitTransaction() + break # logger cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' added union cascade geometries ') else: @@ -7708,7 +7889,7 @@ def mergeDissolveLayer(self, inputLayer, targetLayer, column, xListCoordinates): oF.SetGeometry(geometryRef) oF.SetField(column, v) oL.CreateFeature(oF) - oL.CommitTransaction() + oL.CommitTransaction() # logger cfg.utls.logCondition(str(__name__) + '-' + (cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' added union geometries ') if uVFL is not None: @@ -8717,6 +8898,12 @@ def GOESTab(self): cfg.currentTab = str(cfg.inspectSCP.stack()[0][3]) cfg.ipt.treeMenuTab() + # select neighbor pixels tab + def neighborPixelsTab(self): + cfg.utls.selectTab4MainInterface(14) + cfg.currentTab = str(cfg.inspectSCP.stack()[0][3]) + cfg.ipt.treeMenuTab() + ### tab 5 # select tab 5 from Main Interface def selectTab5MainInterface(self, secondTab = None): diff --git a/dock/scpdock.py b/dock/scpdock.py index e9697c9..336cc55 100644 --- a/dock/scpdock.py +++ b/dock/scpdock.py @@ -2705,7 +2705,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): tN = cfg.subsTmpROI + dT # crs pCrs = cfg.utls.getQGISCrs() - cfg.parallelArrayDict = {} + #cfg.parallelArrayDict = {} # band set if cfg.bandSetsList[bandSetNumber][0] == 'Yes': try: @@ -2723,6 +2723,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): iCrs = cfg.utls.getCrsGDAL(filePath) bList = [] bandNumberList = [] + bandNumberList2 = [] functionList = [] if cfg.rpdROICheck == '0': # subset @@ -2730,6 +2731,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): oL = cfg.utls.subsetImage(cfg.bandSetsList[bandSetNumber][3][b], point.x(), point.y(), float(cfg.maxROIWdth), float(cfg.maxROIWdth), virtual ='Yes') bList.append(oL) bandNumberList.append(1) + bandNumberList2.append([b]) functionList.append(b) # rapid ROI else: @@ -2737,6 +2739,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): oL = cfg.utls.subsetImage(cfg.bandSetsList[bandSetNumber][3][b], point.x(), point.y(), float(cfg.maxROIWdth), float(cfg.maxROIWdth), virtual ='Yes') bList.append(oL) bandNumberList.append(1) + bandNumberList2.append([b]) functionList.append(0) # multiband image else: @@ -2747,6 +2750,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): tRR = cfg.utls.createTempRasterPath('tif') bList = [] bandNumberList = [] + bandNumberList2 = [] functionList = [] if cfg.rpdROICheck == '0': # subset image @@ -2754,6 +2758,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): bList = cfg.utls.rasterToBands(tRR, cfg.tmpDir, None, 'No', cfg.bandSetsList[bandSetNumber][6]) for b in range(0, len(bList)): bandNumberList.append(1) + bandNumberList2.append([b]) functionList.append(b) # rapid ROI else: @@ -2763,6 +2768,7 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): b = int(cfg.ROIband) - 1 bList = [bList[b]] bandNumberList.append(1) + bandNumberList2.append([b]) functionList.append(0) # open input with GDAL try: @@ -2805,12 +2811,12 @@ def createROI(self, point, progressbar = 'Yes', bandSetNumber = None): tPMD = cfg.utls.createTempRasterPath('vrt') vrtCheck = cfg.utls.createVirtualRaster(bList, tPMD, bandNumberList, 'Yes', 'Yes', 0) # region growing - o = cfg.utls.multiProcessRaster(rasterPath = tPMD, functionBand = 'No', functionRaster = cfg.utls.regionGrowingAlgMultiprocess, outputRasterList = oM, functionBandArgument = functionList, functionVariable = fVarList, progressMessage = 'Region growing', parallel = cfg.parallelRaster, skipSingleBand = 'Yes') + #o = cfg.utls.multiProcessRaster(rasterPath = tPMD, functionBand = 'No', functionRaster = cfg.utls.regionGrowingAlgMultiprocess, outputRasterList = oM, functionBandArgument = functionList, functionVariable = fVarList, progressMessage = 'Region growing', parallel = cfg.parallelRaster, skipSingleBand = 'Yes') + o = cfg.utls.multiProcessNoBlocks(rasterPath = tPMD, bandNumberList = bandNumberList2, functionRaster = cfg.utls.regionGrowingAlgMultiprocess, functionBandArgument = functionList, functionVariable = fVarList, progressMessage = cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Region growing')) # run segmentation - for x in sorted(cfg.parallelArrayDict): + for x in sorted(o): try: - for dic in cfg.parallelArrayDict[x]: - arr = dic[0] + for arr in o[x]: try: r = r * arr.astype(int) except: diff --git a/docs/repository.xml b/docs/repository.xml index 4afbeba..9bbc22d 100644 --- a/docs/repository.xml +++ b/docs/repository.xml @@ -1,9 +1,9 @@ - + - 7.7.1 + 7.8.0 3.0.0 3.99.0 diff --git a/i18n/models/semiautomaticclassificationplugin.ts b/i18n/models/semiautomaticclassificationplugin.ts index f8894d1..31216f5 100644 --- a/i18n/models/semiautomaticclassificationplugin.ts +++ b/i18n/models/semiautomaticclassificationplugin.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin.ts b/i18n/semiautomaticclassificationplugin.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin.ts +++ b/i18n/semiautomaticclassificationplugin.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_ar.ts b/i18n/semiautomaticclassificationplugin_ar.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_ar.ts +++ b/i18n/semiautomaticclassificationplugin_ar.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_de.ts b/i18n/semiautomaticclassificationplugin_de.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_de.ts +++ b/i18n/semiautomaticclassificationplugin_de.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_el_GR.ts b/i18n/semiautomaticclassificationplugin_el_GR.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_el_GR.ts +++ b/i18n/semiautomaticclassificationplugin_el_GR.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_es.ts b/i18n/semiautomaticclassificationplugin_es.ts index 3ad7523..493fe1b 100644 --- a/i18n/semiautomaticclassificationplugin_es.ts +++ b/i18n/semiautomaticclassificationplugin_es.ts @@ -623,2837 +623,2837 @@ p, li { white-space: pre-wrap; } Previa - + Semi-Automatic Classification Plugin Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> <html><head/><body><p>Preprocesar imágenes</p></body></html> - + Preprocess images Preprocesar imágenes - + <html><head/><body><p>Load images in QGIS after download</p></body></html> <html><head/><body><p>Cargar imágenes en QGIS después de la descarga</p></body></html> - + Load bands in QGIS Cargar bandas en QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> <html><head/><body><p>Descarga imágenes solo si su correspondiente vista previa está cargada en QGIS</p></body></html> - + Only if preview in Layers Solo con vista previa - + <html><head/><body><p><span >Run</span></p></body></html> <html><head/><body><p><span >Ejecutar</span></p></body></html> - + Import library Importar librería - + <html><head/><body><p>Export download links to a text file</p></body></html> <html><head/><body><p>Exporta los enlaces de descarga a un archivo de texto</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> <html><head/><body><p>Establecer área en el mapa</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> <html><head/><body><p>Inferior derecha X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> <html><head/><body><p>Inferior derecha Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> <html><head/><body><p>Superior izquierda X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> <html><head/><body><p>Superior izquierda Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> <html><head/><body><p>Mostrar / ocultar área</p></body></html> - + Show Mostrar - + <html><head/><body><p>Find images</p></body></html> <html><head/><body><p>Encontrar imágenes</p></body></html> - + Find Encontrar - + yyyy-MM-dd yyyy-MM-dd - + Max cloud cover (%) Máx. nubosidad (%) - + to hasta - + Date from Fecha desde - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> <html><head/><body><p>Máximo porcentaje de cobertura de nubes</p></body></html> - + Filter Filtro - + <html><head/><body><p>Filter images</p></body></html> <html><head/><body><p>Filtrar imágenes</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> <html><head/><body><p >Suprimir fila</p></body></html> - + Plot Gráfico - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> <html><head/><body><p>Muestra en el mapa una vista previa de las imágenes seleccionadas</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> <html><head/><body><p><span >Reiniciar</span></p></body></html> - + AcquisitionDate FechaDeAdquisición - + CloudCover Nubosidad - + min_lat lat_min - + min_lon lon_min - + max_lat lat_max - + max_lon lon_max - + Preview VistaPrevia - + Download options Opciones de Descarga - + <html><head/><body><p >Select all</p></body></html> <html><head/><body><p >Seleccionar todas</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> <html><head/><body><p>Si está seleccionado, recuerda el nombre de usuario y la contraseña internamente en QGIS</p></body></html> - + remember recordar - + <html><head/><body><p>Password</p></body></html> <html><head/><body><p>Contraseña</p></body></html> - + Password Contraseña - + <html><head/><body><p>User name</p></body></html> <html><head/><body><p>Usuario</p></body></html> - + User Usuario - + <html><head/><body><p>Login Sentinels</p></body></html> <html><head/><body><p>Acceso a Sentinels</p></body></html> - + Service Servicio - + Sentinel-2 bands Bandas de Sentinel-2 - + Multiple ROI creation Creación de ROI múltiples - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> <html><head/><body><p align="justify">Distancia mínima entre puntos</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> <html><head/><body><p align="justify">Tamaño de la cuadrícula en la que se crearán los puntos aleatorios</p></body></html> - + Create points Crear puntos - + Number of points Número de puntos - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> <html><head/><body><p align="justify">Número de puntos creados aleatoriamente</p></body></html> - + <html><head/><body><p>Create points</p></body></html> <html><head/><body><p>Crear puntos</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> <html><head/><body><p>Crear puntos aleatorios con una distancia mínima</p></body></html> - + min distance distancia min - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> <html><head/><body><p>Crear puntos aleatorios dentro de cada celda en una cuadrícula con este tamaño</p></body></html> - + inside grid dentro de la cuadrícula - + Point coordinates and ROI definition Coordenadas de los Puntos y definición de ROI - + X X - + Y Y - + MC ID MC ID - + C ID C ID - + Min Min - + Max Max - + Dist Dist - + Rapid ROI band Banda para ROI rápido - + <html><head/><body><p >Add row</p></body></html> <html><head/><body><p >Agregar fila</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> <html><head/><body><p >Exportar la lista de puntos a un archovo de texto</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> <html><head/><body><p >Importar una lista de puntos desde un archivo de texto</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> <html><head/><body><p>Agrega las firmas espectrales de los ROI al listado de firmas espectrales</p></body></html> - + Calculate sig. Calcular firm. - + Run Ejecutar - + Import signatures Importar firmas - + Import library file Importar archivo de librerías - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> <html><head/><body><p>Selecciona un archivo: archivo SCP (*.scp) ; librería USGS (*.asc) ; librería ASTER (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> <html><head/><body><p><span >Abrir archivo</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> <html><head/><body><p>Abre un archivo</p></body></html> - + C ID field Campo C ID - + MC ID field Campo MC ID - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> <html><head/><body><p>Agregar las firmas espectrales del ROI a la lista de firmas espectrales</p></body></html> - + Download USGS Spectral Library Descarga Librería Espectral de USGS - + <html><head/><body><p>Select a chapter</p></body></html> <html><head/><body><p>Selecciona un capítulo</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> <html><head/><body><p>Selecciona una librería</p></body></html> - + Import spectral library Importar una librería espectral - + <html><head/><body><p>Import spectral library</p></body></html> <html><head/><body><p>Importar una librería espectral</p></body></html> - + Library Description (requires internet connection) Descripción de la Librería ( riquiere conexión a Internet) - + Export signatures Exportar librerías - + Export Exportar - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> <html><head/><body><p>Exportar como archivo CSV (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> <html><head/><body><p>Exportar como archivo SCP (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> <html><head/><body><p >Exportar las firmas espectrales seleccionadas</p></body></head></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> <html><head/><body><p>Selecciona el directorio donde las firmas espectrales seleccionadas serán guardadas como .csv</p></body></html> - + Algorithm band weight Algoritmo peso de banda - + Band name Nombre de banda - + <html><head/><body><p >Reset</p></body></html> <html><head/><body><p >Restaurar</p></body></html> - + <html><head/><body><p >Set</p></body></html> <html><head/><body><p >Asignar</p></body></html> - + Set weight Asignar peso - + <html><head/><body><p>Set a value</p></body></html> <html><head/><body><p>Asignar un valor</p></body></html> - + Automatic weight Peso automático - + MD Threshold Umbral MD - + ML Threshold Umbral ML - + SAM Threshold Umbral SAM - + Set threshold = σ * Establecer umbral = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> <html><head/><body><p>Establecer el valor que será multiplicado por la esviación estándar</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> <html><head/><body><p>Establecer umbral automáticamente σ</p></body></html> - + Set threshold Establecer umbral - + Automatic thresholds Umbrales Automáticos - + LCS threshold Umbral LCS - + Color [overlap MC_ID-C_ID] Color [superponer MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> <html><head/><body><p >Agregar las firmas seleccionadas al gráfico de firmas espectrales</p></body></html> - + Min Max Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> <html><head/><body><p>Establecer umbral Min Max automáticamente</p></body></html> - + σ * σ * - + From pixel Desde pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> <html><head/><body><p>Activar el puntero para establecer umbrales desde pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> <html><head/><body><p>Si está seleccionado, el umbral de firma se extiende para incluir la firma del pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> <html><head/><body><p>Si se selecciona, el umbral de firma se reduce para excluir la firma de pixel</p></body></html> - + From ROI Desde ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> <html><head/><body><p>Establecer umbrales desde el ROI temporal</p></body></html> - + RGB list Lista RGB - + <html><head/><body><p>Sort RGB automatically</p></body></html> <html><head/><body><p>Ordena automáticamente combinaciones RGB</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> <html><head/><body><p>Mueve la combinación RGB seleccionada hacia abajo</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> <html><head/><body><p>Mueve la combinación RGB seleccionada hacia arriba</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> <html><head/><body><p>Exportar la lista RGB a un archivo de texto</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> <html><head/><body><p>Importar lista RGB desde archivo de texto</p></body></html> - + RGB RGB - + Automatic RGB RGB Automático - + Band combinations Combinaciones de bandas - + <html><head/><body><p>Add all combinations of bands</p></body></html> <html><head/><body><p>Agregar todas la combinaciones de bandas</p></body></html> - + Preprocessing Preprocesamiento - + Landsat Landsat - + Directory containing Landsat bands Directorio conteniendo bandas Landsat - + Landsat conversion to TOA reflectance and brightness temperature Conversión a reflectancia TOA y Temperatura de Brillo - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> <html><head/><body><p>Activa/Desactiva el cálculo de la temperatura en grados Celsius para la banda térmica</p></body></html> - + Brightness temperature in Celsius Temperatura de brillo en Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> <html><head/><body><p>Activa/Desactiva la corrección atmosférica DOS1 (no se corrige la banda térmica)</p></body></html> - + Apply DOS1 atmospheric correction Aplicar la corrección atmosférica DOS1 - + <html><head/><body><p>No data value</p></body></html> <html><head/><body><p>Valor para SinDatos</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> <html><head/><body><p >Selecciona un directorio</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> <html><head/><body><p>Realizar el pan-sharpening (Transformación de Brovey)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) Realizar pansharpening (Landsat 7 u 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> <html><head/><body><p>Crea el conjunto de bandas automáticamente y utiliza las herramientas seleccionadas en la pestaña Juego de Bandas</p></body></html> - + Create Band set and use Band set tools Crear Juego de Bandas y utilizar sus herramientas - + <html><head/><body><p>Edit metadata</p></body></html> <html><head/><body><p>Editar metadatos</p></body></html> - + Band Banda - + RADIANCE_MULT RADIANCE_MULT - + RADIANCE_ADD RADIANCE_ADD - + REFLECTANCE_MULT REFLECTANCE_MULT - + REFLECTANCE_ADD REFLECTANCE_ADD - + RADIANCE_MAXIMUM RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM REFLECTANCE_MAXIMUM - + K1_CONSTANT K1_CONSTANT - + K2_CONSTANT K2_CONSTANT - + LMAX LMAX - + LMIN LMIN - + QCALMAX QCALMAX - + QCALMIN QCALMIN - + Satellite Satélite - + Sun elevation Elevación del Sol - + <html><head/><body><p>DATE ACQUIRED</p></body></html> <html><head/><body><p>Fecha de adquisición (DATE ACQUIRED)</p></body></html> - + Date (YYYY-MM-DD) Date (YYYY-MM-DD) - + Earth sun distance Distancia Tierra-Sol - + <html><head/><body><p>SUN ELEVATION</p></body></html> <html><head/><body><p>Elevación del Sol (SUN ELEVATION)</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> <html><head/><body><p>Distancia de la tierra al Sol</p></body></html> - + Metadata Metadatos - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> <html><head/><body><p>Satélite (Ej. LANDSAT8)</p></body></html> - + Sentinel-2 Sentinel-2 - + Directory containing Sentinel-2 bands Directorio conteniendo bandas Sentinel-2 - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> <html><head/><body><p>Activa/Desactiva la corrección atmosférica DOS1</p></body></html> - + Sentinel-2 conversion Conversión de Sentinel-2 - + Quantification value Valor de Cuantificación - + Solar irradiance Irradiancia solar - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> <html><head/><body><p>Satélite (Ej. Sentinel-2A)</p></body></html> - + ASTER ASTER - + ASTER conversion to TOA reflectance and brightness temperature ASTER convertir a reflectancia TOA y a Temperatura de Brillo - + Select file ASTER L1T (.hdf) Seleccionar archivo ASTER L1T (.hdf) - + UnitConversionCoeff UnitConversionCoeff - + PixelSize PixelSize - + UTM zone Zona UTM - + <html><head/><body><p>UTM zone</p></body></html> <html><head/><body><p>Zona UTM</p></body></html> - + UPPERLEFTM SUPIZQUIERDAM - + Clip multiple rasters Recortar múltiples rásters - + <html><head/><body><p >Refresh list</p></body></html> <html><head/><body><p >Recargar lista</p></body></html> - + Clip coordinates Coordenadas de Corte - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> <html><head/><body><p>Usar límites de ROI temporal para cortar rásters</p></body></html> - + Use temporary ROI for clipping Usar ROI temporal para cortar - + <html><head/><body><p>NoData value</p></body></html> <html><head/><body><p>Valor SinDatos</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> <html><head/><body><p>Prefijo para el nombre de salida</p></body></html> - + clip clip - + Output name prefix Prefijo para nombre de salida - + Split raster bands Separar bandas ráster - + <html><head/><body><p>Select the image to be split</p></body></html> <html><head/><body><p>Selecciona la imagen a separar</p></body></html> - + Select a multiband raster Selecciona una ráster multibanda - + split split - + PCA PCA - + Input Entrada - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> <html><head/><body><p>Si está seleccionada, solo calcula este número de componentes</p></body></html> - + Number of components Número de componentes - + <html><head/><body><p>Number of components</p></body></html> <html><head/><body><p>Número de componentes</p></body></html> - + Output Salida - + Vector to raster Vectorial a ráster - + Select the vector Selecciona el vectorial - + <html><head/><body><p>Select the vector</p></body></html> <html><head/><body><p>Selecciona el vectorial</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> <html><head/><body><p>Usar el valor del campo del vector</p></body></html> - + Use the value field of the vector Usar el valor del campo del vector - + <html><head/><body><p>Select the value field</p></body></html> <html><head/><body><p>Seleccionar el campo con valores</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> <html><head/><body><p>Usar un valor constante</p></body></html> - + Use constant value Usar un valor constante - + <html><head/><body><p>Value</p></body></html> <html><head/><body><p>Valor</p></body></html> - + Select the type of conversion Selecciona el tipo de conversión - + <html><head/><body><p>Select the type of conversion</p></body></html> <html><head/><body><p>Selecciona el tipo de conversión</p></body></html> - + Select the reference raster Selecciona el ráster de referencia - + <html><head/><body><p>Select the reference raster</p></body></html> <html><head/><body><p>Selecciona el ráster de referencia</p></body></html> - + Postprocessing Postprocesamiento - + Accuracy Precisión - + Select the classification to assess Selecciona la clasificación a evaluar - + <html><head/><body><p>Select the classification to assess</p></body></html> <html><head/><body><p>Selecciona la clasificación para ser evaluada</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> <html><head/><body><p>Selecciona el campo con el código de la clasificación</p></body></html> - + Land cover change Cambio de cobertura del suelo - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> <html><head/><body><p align="justify">Si se selecciona, los pixeles que tienen el mismo valor en ambas clasificaciones se reportarán; si está desactivado, se asigna el valor 0 para los pixeles sin cambios</p></body></html> - + Report unchanged pixels Reportar pixeles sin cambios - + <html><head/><body><p>Select the reference classification raster</p></body></html> <html><head/><body><p>Selecciona el ráster con la clasificación de referencia</p></body></html> - + Select the new classification Selecciona la nueva clasificación - + Select the reference classification Selecciona la clasificación de referencia - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> <html><head/><body><p>Selecciona un nuevo ráster que será comparado con el ráster de referencia</p></body></html> - + Classification report Reporte de la clasificación - + <html><head/><body><p>Select the classification raster</p></body></html> <html><head/><body><p>Selecciona el ráster con la clasificación</p></body></html> - + Select the classification Selecciona la clasificación - + Classification to vector Clasificación a vectorial - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> <html><head/><body><p>Usa los códigos de la tabla del listado de Firmas para la simbología vectorial</p></body></html> - + Use code from Signature list Usar código del listado de Firmas - + <html><head/><body><p>Select the code field</p></body></html> <html><head/><body><p>Selecciona el código del campo</p></body></html> - + C_ID C_ID - + MC_ID MC_ID - + Symbology Simbología - + Reclassification Reclasificación - + <html><head/><body><p>Calculate unique values</p></body></html> <html><head/><body><p>Calcula valores únicos</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> <html><head/><body><p>Selecciona esta casilla para la reclasificación de C ID a MC ID; si está seleccionada, se calculan valores únicos de la lista de Firmas, colocando los viejos valores de C ID y nuevos valores para MC ID</p></body></html> - + calculate C ID to MC ID values calcular valores de C ID a MC ID - + Calculate unique values Calcular valores únicos - + Values Valores - + Old value Valor antiguo - + New value Valor Nuevo - + Edit raster Editar ráster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> <html><head/><body><p>Deshacer editar (solo para polígonos ROI)</p></body></html> - + Select the input raster Selecciona el ráster de entrada - + <html><head/><body><p>Select the raster to edit</p></body></html> <html><head/><body><p>Selecciona el ráster para ser editado</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> <html><head/><body><p>Usar una expresión</p></body></html> - + Use expression Usar expresión - + <html><head/><body><p>Enter expression</p></body></html> <html><head/><body><p>Ingresa una expresión</p></body></html> - + where(raster == 1, 2, raster) where(raster == 1, 2, raster) - + Edit raster values Editar valores de un ráster - + <html><head/><body><p>Edit values using a vector</p></body></html> <html><head/><body><p>Editar los valores utilizando un vectorial</p></body></html> - + Edit values using a vector Editar valores usando vectorial - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> <html><head/><body><p>Editar valores utilizando ROIs temporales</p></body></html> - + Edit values using ROI polygons Editar valores usando polígonos ROI - + Edit options Opciones de Edición - + Classification sieve Filtrado de la Clasificación - + <html><head/><body><p>Select the classification</p></body></html> <html><head/><body><p>Selecciona la clasificación</p></body></html> - + Size threshold Tamaño de umbral - + <html><head/><body><p>Size threshold in pixels</p></body></html> <html><head/><body><p>Tamaño del umbral en pixeles</p></body></html> - + Pixel connection Conexión de pixeles - + <html><head/><body><p>Pixel connection</p></body></html> <html><head/><body><p>Conexión de pixeles</p></body></html> - + 4 4 - + 8 8 - + Classification erosion Erosión de la clasificación - + Size in pixels Tamaño en pixeles - + <html><head/><body><p>Size in pixels</p></body></html> <html><head/><body><p>Tamaño en pixeles</p></body></html> - + Class values Valores de Clase - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> <html><head/><body><p>Ingresa valores de Clases separados por , o -</p></body></html> - + Classification dilation Dilatación de la Clasificación - + Band calc Calculadora de Bandas - + Band list Lista de Bandas - + Expression Expresión - + <html><head/><body><p>Not equals</p></body></html> <html><head/><body><p>No iguales</p></body></html> - + != != - + <html><head/><body><p>Equals</p></body></html> <html><head/><body><p>Iguales</p></body></html> - + == == - + <html><head/><body><p>Multiplication</p></body></html> <html><head/><body><p>Multiplicación</p></body></html> - + * * - + <html><head/><body><p>Power</p></body></html> <html><head/><body><p>Potencia</p></body></html> - + ^ ^ - + <html><head/><body><p>Minus</p></body></html> <html><head/><body><p>Menos</p></body></html> - + - - - + <html><head/><body><p>Plus</p></body></html> <html><head/><body><p>Más</p></body></html> - + + + - + <html><head/><body><p>Division</p></body></html> <html><head/><body><p>División</p></body></html> - + / / - + <html><head/><body><p>Close parenthesis</p></body></html> <html><head/><body><p>Cerrar paréntesis</p></body></html> - + ) ) - + <html><head/><body><p>Square root</p></body></html> <html><head/><body><p>Raíz cuadrada</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> <html><head/><body><p>Abrir paréntesis</p></body></html> - + ( ( - + <html><head/><body><p>Greater than</p></body></html> <html><head/><body><p>Mayor que</p></body></html> - + > > - + <html><head/><body><p>Less than</p></body></html> <html><head/><body><p>Menor que</p></body></html> - + < < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> <html><head/><body><p>Escribe una expresión (Ej. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules Reglas de decisión - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> <html><head/><body><p>Ingresa una o más reglas separadas por punto y coma (Ej. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value Valor - + Rule Regla - + <html><head/><body><p>Move highlighted rule up</p></body></html> <html><head/><body><p>Mueve la regla seleccionada hacia arriba</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> <html><head/><body><p>Importar reglas desde archivo de texto</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> <html><head/><body><p>Exportar reglas hacia archivo de texto</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> <html><head/><body><p>Mueve la regla seleccionada hacia abajo</p></body></html> - + <html><head/><body><p>Band list</p></body></html> <html><head/><body><p>Lista de bandas</p></body></html> - + Variable Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> <html><head/><body><p>Si está seleccionada, los pixeles iguales al valor SinDatos serán excluidos del ráster de salida</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> <html><head/><body><p>Si está seleccionada, la extensión del ráster de salida será igual que la del ráster seleccionado</p></body></html> - + Same as Igual que - + <html><head/><body><p>Select a raster</p></body></html> <html><head/><body><p>Selecciona un ráster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> <html><head/><body><p>Si está seleccionada, la extensión del ráster de salida será igual a la intersección con el ráster de entrada</p></body></html> - + Intersection Intersección - + Extent: Extensión: - + Output raster Ráster de salida - + Band set Juego de bandas - + <html><head/><body><p>Add band to Band set</p></body></html> <html><head/><body><p>Agregar bandas al Juego de Bandas</p></body></html> - + Band set definition Definición del Juego de bandas - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> <html><head/><body><p>Ordenar bandas por nombre (teniendo prioridad el número final)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> <html><head/><body><p>Mueve la banda seleccionada hacia abajo</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> <html><head/><body><p>Mueve la banda seleccionada hacia arriba</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> <html><head/><body><p>Exportar el juego de bandas a un archivo de texto</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> <html><head/><body><p>Importar un juego de bandas desde un archivo de texto</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> <html><head/><body><p>Selecciona una configuración para establecer el centro de la longitud de onda</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> <html><head/><body><p>Unidad de longitud de onda</p></body></html> - + Create virtual raster of band set Crear ráster virtual de Juego de Bandas - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> <html><head/><body><p>Calcular expresión ingresada en Calculadora de Bandas</p></body></html> - + Band calc expressions Expresiones en Calculadora de Bandas - + Build band overviews Construir Vistas Generales - + Band set tools Herramientas para Juego de bandas - + Batch En Lotes - + <html><head/><body><p>Enter a batch function</p></body></html> <html><head/><body><p>Ingrese un lote de funciones</p></body></html> - + Functions Funciones - + <html><head/><body><p>Import batch from text file</p></body></html> <html><head/><body><p>Importar proceso en lotes desde archivo de texto</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> <html><head/><body><p>Exportar proceso en lotes a un archivo de texto</p></body></html> - + Settings Configuración - + Interface Interfaz - + Field names of training input Nombres de campo del Entrenamiento de Entrada - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Asignar el nombre de campo Class ID</p><p>[máx 10 caracteres]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Asignar el nombre de campo Macroclass ID</p><p>[máx 10 caracteres]</p></body></html> - + ROI style Estilo del ROI - + <html><head/><body><p>Select temporary ROI color</p></body></html> <html><head/><body><p>Seleccionar color del ROI temporal</p></body></html> - + ROI color Color del ROI - + Transparency Transparencia - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> <html><head/><body><p>Cambia la transparencia del ROI temporal</p></body></html> - + Variable name Nombre de variable - + <html><head/><body><p>Variable name for expressions</p></body></html> <html><head/><body><p>Nombre de variable para expresiones</p></body></html> - + raster ráster - + Variable name for expressions (tab Reclassification and Edit raster) Nombre de variable para expresiones (pestaña Reclasificación y Editar ráster) - + Group name Nombre de grupo - + <html><head/><body><p>Group name</p></body></html> <html><head/><body><p>Nombre de grupo</p></body></html> - + Class_temp_group Class_temp_group - + Dock Panel - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> <html><head/><body><p>Si está seleccionado, las noticias sobre SCP son descargadas y mostradas en el panel</p></body></html> - + Download news on startup Descarga noticias al inicio - + Processing Procesado - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> <html><head/><body><p>Activar/Desactivar el sonido cuando el proceso termina</p></body></html> - + Play sound when finished Reproducir sonido cuando termina - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> <html><head/><body><p>Si está seleccionado, crea rásters virtuales para ciertos archivos temporales</p></body></html> - + Use virtual raster for temp files Usar ráster virtual para archivos temporales - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> <html><head/><body><p>Si está seleccionado, se aplica la compresión sin pérdidas a los rásters con el fin de ahorrar espacio en disco</p></body></html> - + Raster compression Compresión Ráster - + <html><head/><body><p>Set available RAM for processes</p></body></html> <html><head/><body><p>Asignar RAM disponible para los procesos</p></body></html> - + Available RAM (MB) RAM disponible (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> <html><head/><body><p>Restaurar al directorio temporal por defecto</p></body></html> - + Temporary directory Directorio temporal - + Debug Depurar - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> <html><head/><body><p>Activar/Desactivar Log de eventos</p></body></html> - + Record events in a Log file Guardar eventos en un archivo Log - + <html><head/><body><p>Export the Log file</p></body></html> <html><head/><body><p>Exportar el archivo Log</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> <html><head/><body><p>Vaciar el contenido del archivo Log</p></body></html> - + Log file Archivo Log - + <html><head/><body><p>Test dependencies</p></body></html> <html><head/><body><p>Comprobar dependencias</p></body></html> - + Test dependencies Verificar dependencias - + Test Prueba - + About Acerca de - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance Distancia mínima - + Spectral Angle Mapping Mapeo del Angulo Espectral - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 6 - + 1 1 - + 3 3 - + 2 2 - + 11 - + 5 5 - + 7 7 - + 8A - + 9 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands Bandas de Sentinel-2 {3 ?} - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 Sentinel-3 - + Sentinel-3 conversion Conversión de Sentinel-2 {3 ?} - + Directory containing Sentinel-3 bands Directorio conteniendo bandas Sentinel-2 {3 ?} - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> <html><head/><body><p>Satélite (Ej. Sentinel-2A)</p></body></html> {3A?} - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3462,775 +3462,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands Bandas - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual Manual del Usuario - + Support the SCP - + Use Usar - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> <html><head/><body><p>Usar las ID de las macroclases para la clasificación</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> <html><head/><body><p>Usar las ID de las clases para la clasificación</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> <html><head/><body><p>Abrir pestaña del Algoritmo de peso de banda</p></body></html> - + W W - + <html><head/><body><p>Select a classification algorithm</p></body></html> <html><head/><body><p>Seleccionar un algoritmo de clasificación</p></body></html> - + Maximum Likelihood Máxima Probabilidad - + Algorithm Algoritmo - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> <html><head/><body><p>Establecer el umbral de clasificación para todas las firmas</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> <html><head/><body><p>Abrir la pestaña Umbrales de Firmas</p></body></html> - + Threshold Umbral - + Classification Classificación - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> <html><head/><body><p>Si está seleccionado, se usará la Clasificación de Firmas de Cobertura Terrestre</p></body></html> - + LCS LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> <html><head/><body><p>Abrir pestaña Umbral de Firmas de Cobertura del Suelo LCS-Land Cover Signature</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> <html><head/><body><p>Si está seleccionado, el Algoritmo elegido se usará solo para las Clases que se sobreponen con pixeles de la Clasificación de Firmas de la Cobertura Terrestre</p></body></html> - + only overlap solo sobreposición - + Land Cover Signature Classification Clasificación de Firmas de la Cobertura Terrestre - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> <html><head/><body><p>Si está seleccionado, el Algoritmo elegido se usará para los pixeles no clasificados de la Clasificación de Firmas de la Cobertura Terrestre</p></body></html> - + Algorithm Algoritmo - + Classification output Resultado de la Clasificación - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> <html><head/><body><p><span >Seleccionar estilo desde archivo qml</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> <html><head/><body><p>Ruta a archivo qml</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> <html><head/><body><p>Seleccionar una máscara vectorial opcional</p></body></html> - + Apply mask Aplicar máscara - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> <html><head/><body><p>Ruta al archivo de máscara shape opcional</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> <html><head/><body><p>Crear un archivo shape después del proceso de clasificación</p></body></html> - + Create vector Crear vector - + <html><head/><body><p>Calculate a classification report</p></body></html> <html><head/><body><p>Calcular un reporte de la clasificación</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> <html><head/><body><p>Si se selecciona, los rásters resultado de la clasificación (uno por Firma) son guardados con la clasificación</p></body></html> - + Save algorithm files Guardar archivos de algoritmos - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4239,7 +4239,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4262,247 +4262,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4924,17 +4954,17 @@ Do you want to add the required fields to this shapefile? Eliminar archivos temporales - + Band set Juego de bandas - + Preprocessing Preprocesamiento - + Postprocessing Postprocesamiento @@ -4944,12 +4974,12 @@ Do you want to add the required fields to this shapefile? Calculadora de Bandas - + Spectral plot Gráfico espectral - + Scatter plot Gráfico de dispersión @@ -4959,17 +4989,17 @@ Do you want to add the required fields to this shapefile? En Lotes - + Settings Configuración - + User manual Manual del Usuario - + Online help Ayuda en línea @@ -5419,12 +5449,12 @@ Do you want to add the required fields to this shapefile? Guardar ráster - + Build overviews Construir vistas generales - + Do you want to build the external overviews of bands? ¿Quieres construir vistas generales externas? @@ -5719,57 +5749,57 @@ Do you want to add the required fields to this shapefile? ¿Estás seguro que quieres deshacer los umbrales? - + Multiple ROI creation Creación de ROI múltiples - + Import signatures Importar firmas - + Export signatures Exportar librerías - + Algorithm band weight Algoritmo peso de banda - + Signature threshold Umbral de firma - + LCS threshold Umbral LCS - + Landsat Landsat - + Sentinel-2 Sentinel-2 - + ASTER ASTER - + Clip multiple rasters Recortar múltiples rásters - + Split raster bands Separar bandas ráster @@ -5779,67 +5809,67 @@ Do you want to add the required fields to this shapefile? PCA - + Vector to raster Vectorial a ráster - + Accuracy Precisión - + Land cover change Cambio de cobertura del suelo - + Classification report Reporte de la clasificación - + Classification to vector Clasificación a vectorial - + Reclassification Reclasificación - + Edit raster Editar ráster - + Classification sieve Filtrado de la Clasificación - + Classification erosion Erosión de la clasificación - + Classification dilation Dilatación de la Clasificación - + About Acerca de - + Interface Interfaz - + Debug Depurar @@ -5919,27 +5949,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5954,7 +5984,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6034,12 +6064,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 Sentinel-3 - + SCP: completed process @@ -6109,7 +6139,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6134,7 +6164,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6144,7 +6174,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6159,22 +6189,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6184,7 +6214,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6279,7 +6309,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6314,7 +6344,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 Sentinel-1 @@ -6324,7 +6354,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6349,7 +6379,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6364,7 +6394,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6394,7 +6424,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6454,27 +6484,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6484,7 +6514,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6514,12 +6544,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6529,22 +6559,22 @@ Do you want to add the required fields to this shapefile? Procesado - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6574,7 +6604,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6594,12 +6624,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6868,5 +6898,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_fr.ts b/i18n/semiautomaticclassificationplugin_fr.ts index 0e9670f..1b1f52b 100644 --- a/i18n/semiautomaticclassificationplugin_fr.ts +++ b/i18n/semiautomaticclassificationplugin_fr.ts @@ -607,2790 +607,2790 @@ p, li { white-space: pre-wrap; } SemiAutomaticClassificationPlugin - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> <html><head/><body><p>Pré-traitement des images</p></body></html> - + Preprocess images Prétraitement des images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> <html><head/><body><p>Charger les images dans QGIS après téléchargement</p></body></html> - + Load bands in QGIS Charger les bandes dans QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> <html><head/><body><p>Télécharger les images de la liste si les aperçus correspondant sont chargés dans QGIS</p></body></html> - + Only if preview in Layers Seulement si les aperçus sont chargés en couche - + <html><head/><body><p><span >Run</span></p></body></html> <html><head/><body><p><span >Lancer</span></p></body></html> - + Import library Importer la bibliothèque de signatures - + <html><head/><body><p>Export download links to a text file</p></body></html> <html><head/><body><p>Exporter les liens de téléchargement dans un fichier</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> <html><head/><body><p>Mettre l'aire sur la carte</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> <html><head/><body><p>Bas droit X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> <html><head/><body><p>Bas droit Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> <html><head/><body><p>Haut gauche X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> <html><head/><body><p>Haut gauche Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> <html><head/><body><p>Afficher/cacher l'aire</p></body></html> - + Show Afficher - + <html><head/><body><p>Find images</p></body></html> <html><head/><body><p>Chercher des images</p></body></html> - + Find Chercher - + yyyy-MM-dd yyyy-MM-dd - + Max cloud cover (%) Max couvert nuageux (%) - + to jusqu'à - + Date from Date depuis - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> <html><head/><body><p>Max couvert nuageux</p></body></html> - + Filter Filtre - + <html><head/><body><p>Filter images</p></body></html> Filtrer les images - + <html><head/><body><p >Delete row</p></body></html> <html><head/><body><p >Supprimer une ligne</p></body></html> - + Plot Graphique - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> <html><head/><body><p>Afficher un aperçu des images surlignées sur la carte</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> <html><head/><body><p><span >Réinitialiser</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview Aperçu - + Download options Options de téléchargement - + <html><head/><body><p >Select all</p></body></html> <html><head/><body><p >Tout sélectionner</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> <html><head/><body><p>Si coché, les identifiants seront mémorisé par Qgis</p></body></html> - + remember garder en mémoire - + <html><head/><body><p>Password</p></body></html> <html><head/><body><p>Mot de passe</p></body></html> - + Password Mot de passe - + <html><head/><body><p>User name</p></body></html> <html><head/><body><p>Nom d'utilisateur</p></body></html> - + User Utilisateur - + <html><head/><body><p>Login Sentinels</p></body></html> <html><head/><body><p>Login Sentinels</p></body></html> - + Service Service - + Sentinel-2 bands - + Multiple ROI creation Creation de ROI multiple - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> <html><head/><body><p align="justify">Distance minimum entre les points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> <html><head/><body><p align="justify">Taille de la grille dans laquelle les points sont créés aléatoirement</p></body></html> - + Create points Créer des points - + Number of points Nombre de points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> <html><head/><body><p align="justify">Nombre de points créés aléatoirement</p></body></html> - + <html><head/><body><p>Create points</p></body></html> <html><head/><body><p>Créer des points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> <html><head/><body><p>Créer des points aléatoires avec une distance minimale</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> <html><head/><body><p>Créer des points aléatoires dans chaque cellule de la grille avec cette taille</p></body></html> - + inside grid dans la grille - + Point coordinates and ROI definition Coordonnées des points et définition des ROI - + X - + Y - + MC ID MC ID - + C ID C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> <html><head/><body><p >Ajouter une ligne</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> <html><head/><body><p >Exporter la liste de point dans un fichier</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> <html><head/><body><p >Importer la liste de point depuis un fichier</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> <html><head/><body><p>Ajouter les signatures spectrales de la ROI à la liste des signatures</p></body></html> - + Calculate sig. Calculer les signatures - + Run Lancer - + Import signatures Importer des signatures - + Import library file Importer une bibliothèque de signatures - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> <html><head/><body><p>Sélectionner un fichier: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> <html><head/><body><p><span >Ouvrir un fichier</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> <html><head/><body><p>Ouvrir un fichier</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> <html><head/><body><p>Ajouter les signatures spectrales de la ROI à la liste des signatures</p></body></html> - + Download USGS Spectral Library Télécharger USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> <html><head/><body><p>Sélectionner un chapitre</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> <html><head/><body><p>Sélectionner une bibliothèque de signatures</p></body></html> - + Import spectral library Importer une bibliothèque de signatures - + <html><head/><body><p>Import spectral library</p></body></html> <html><head/><body><p>Importer une bibliothèque de signatures</p></body></html> - + Library Description (requires internet connection) Description de la bibliothèque (nécessite une connexion internet) - + Export signatures Exporter les signatures - + Export Exporter - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> <html><head/><body><p>Exporter comme fichier CSV (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> <html><head/><body><p>Exporter comme fichier SCP (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> <html><head/><body><p >Exporter les signatures spectrales surlignés</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> <html><head/><body><p>Sélectionner un dossier où les signatures surlignées seront sauvegardées comme .csv</p></body></html> - + Algorithm band weight Algorithme : poids des bandes - + Band name Nom de bande - + <html><head/><body><p >Reset</p></body></html> <html><head/><body><p >Réinitialiser</p></body></html> - + <html><head/><body><p >Set</p></body></html> <html><head/><body><p >Fixer</p></body></html> - + Set weight Fixer le poids - + <html><head/><body><p>Set a value</p></body></html> <html><head/><body><p>Utiliser la valeur</p></body></html> - + Automatic weight Poids automatique - + Signature threshold Seuil des signatures - + MD Threshold - + ML Threshold - + SAM Threshold - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> <html><head/><body><p>Utilise une valeur qui sera multiplié par l'écart type</p></body></html> - + Set threshold Utiliser un seuil - + Automatic thresholds Seuils automatiques - + LCS threshold Seuil LCS - + Color [overlap MC_ID-C_ID] Couleur [superposition MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> <html><head/><body><p >Ajouter les signatures surlignés au graphique</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> <html><head/><body><p>Utiliser un seuil automatique Min Max</p></body></html> - + From pixel pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> <html><head/><body><p>Activer le paramétrage des seuils en pointant sur les pixels</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> <html><head/><body><p>Si coché, le seuil de signature est augmenté pour inclure la signature des pixels</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> <html><head/><body><p>Si coché, le seuil de signature est réduit pour exclure la signature des pixels </p></body></html> - + From ROI ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> <html><head/><body><p>Utiliser les seuils de la ROI temporaire</p></body></html> - + RGB list Liste RGB - + <html><head/><body><p>Sort RGB automatically</p></body></html> <html><head/><body><p>Ordonner les RGB automatiquement</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> <html><head/><body><p>Descendre le RGB surligné</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> <html><head/><body><p>Monter le RGB surligné</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> <html><head/><body><p>Exporter la liste de RGB</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> <html><head/><body><p>Importer une liste de RGB</p></body></html> - + RGB - + Automatic RGB RGB automatique - + Band combinations Combinaisons de bandes - + <html><head/><body><p>Add all combinations of bands</p></body></html> <html><head/><body><p>Ajouter toutes les combinaisons de bandes</p></body></html> - + Preprocessing Pré-traitement - + Landsat Landsat - + Directory containing Landsat bands Dossier contenant les bandes Landsat - + Landsat conversion to TOA reflectance and brightness temperature Conversion des bandes Landsat en réflectance TOA et température de surface - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> <html><head/><body><p>Activer/Désactiver le calcul des bandes thermiques en celsius</p></body></html> - + Brightness temperature in Celsius Température de surface en celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> <html><head/><body><p>Activer/Désactiver la correction atmosphérique DOS1 (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction Appliquer correction atmosphérique DOS1 - + <html><head/><body><p>No data value</p></body></html> <html><head/><body><p>Valeur NoData</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> <html><head/><body><p >Sélectionner un dossier</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> <html><head/><body><p>Réaliser le pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) Appliquer pansharpening (Landsat 7 ou 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> <html><head/><body><p>Créer un jeu de bandes automatiquement et utiliser la boîte à outils de vérification</p></body></html> - + Create Band set and use Band set tools Créer un jeu de bandes et utiliser la boîte à outils de bandes - + <html><head/><body><p>Edit metadata</p></body></html> <html><head/><body><p>Editer les métadonnées</p></body></html> - + Band Bande - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation Elevation du soleil - + <html><head/><body><p>DATE ACQUIRED</p></body></html> <html><head/><body><p>Date d'acquisition</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance Distance Terre-Soleil - + <html><head/><body><p>SUN ELEVATION</p></body></html> <html><head/><body><p>Elévation du soleil</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> <html><head/><body><p>Distance Terre-Soleil</p></body></html> - + Metadata Métadonnée - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 Sentinel-2 - + Directory containing Sentinel-2 bands Dossier contenant les bandes Sentinel-2 - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> <html><head/><body><p>Activer/Désactiver la correction atmosphérique DOS1 (thermal band is not corrected)</p></body></html> - + Sentinel-2 conversion Sentinel-2 conversion - + Quantification value Valeur de quantification - + Solar irradiance Irradiance solaire - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER ASTER - + ASTER conversion to TOA reflectance and brightness temperature Conversion ASTER en réflectance TOA et température de surface - + Select file ASTER L1T (.hdf) Sélectionner un fichier ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize Taille de pixel - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters Découper plusieurs rasters - + <html><head/><body><p >Refresh list</p></body></html> <html><head/><body><p >Actualiser la liste</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> <html><head/><body><p>Utiliser les limites de la ROI temporaire pour découper les rasters</p></body></html> - + Use temporary ROI for clipping Utiliser la ROI temporaire pour découper - + <html><head/><body><p>NoData value</p></body></html> <html><head/><body><p>Valeur NoData</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> <html><head/><body><p>Préfixe du nom de sortie</p></body></html> - + clip clip - + Output name prefix Préfixe de sortie - + Split raster bands Séparer les bandes - + <html><head/><body><p>Select the image to be split</p></body></html> <html><head/><body><p>Sélectionner l'image dont les bandes sont à séparer</p></body></html> - + Select a multiband raster Sélectionner un raster multibande - + split Separer - + PCA ACP - + Input Entrée - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> <html><head/><body><p>Si coché, calcule ce nombre d'éléments seulement</p></body></html> - + Number of components Nombre d'éléments - + <html><head/><body><p>Number of components</p></body></html> <html><head/><body><p>Nombre d'éléments</p></body></html> - + Output Sortie - + Vector to raster Vecteur vers raster - + Select the vector Sélectionner un vecteur - + <html><head/><body><p>Select the vector</p></body></html> <html><head/><body><p>Sélectionner un vecteur</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> <html><head/><body><p>Utiliser la valeur du champ du vecteur</p></body></html> - + Use the value field of the vector Utiliser la valeur du champ du vecteur - + <html><head/><body><p>Select the value field</p></body></html> <html><head/><body><p>Utiliser la valeur du champ</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> <html><head/><body><p>Utiliser une valeur constante</p></body></html> - + Use constant value Utiliser une valeur constante - + <html><head/><body><p>Value</p></body></html> <html><head/><body><p>Valeur</p></body></html> - + Select the type of conversion Sélectionner le type de conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> <html><head/><body><p>Sélectionner le type de conversion</p></body></html> - + Select the reference raster Sélectionner le raster de référence - + <html><head/><body><p>Select the reference raster</p></body></html> <html><head/><body><p>Sélectionner le raster de référence</p></body></html> - + Postprocessing Post-traitement - + Accuracy Précision - + Select the classification to assess Sélectionner la classification à évaluer - + <html><head/><body><p>Select the classification to assess</p></body></html> <html><head/><body><p>Sélectionner la classification à évaluer</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> <html><head/><body><p>Sélectionner le champ du code de classification</p></body></html> - + Land cover change Changement d'occupation des sols - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> Si coché, les pixels ayant la même valeur dans les deux classification seront signalés; sinon la valeur 0 sera appliquée pour les pixels inchangés - + Report unchanged pixels Signaler les pixels inchangés - + <html><head/><body><p>Select the reference classification raster</p></body></html> <html><head/><body><p>Sélectionner le raster de classification de référence</p></body></html> - + Select the new classification Sélectionner la nouvelle classification - + Select the reference classification Sélectionner la classification de référence - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> <html><head/><body><p>Sélectionner un nouveau raster à comparer avec celui de référence</p></body></html> - + Classification report Rapport de classification - + <html><head/><body><p>Select the classification raster</p></body></html> <html><head/><body><p>Sélectionner un raster de classification</p></body></html> - + Select the classification Sélectionner la classification - + Classification to vector Classification vers vecteur - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> <html><head/><body><p>Utiliser les codes de la liste des signatures pour la symbologie vecteur</p></body></html> - + Use code from Signature list Utiliser les codes de la liste des signatures - + <html><head/><body><p>Select the code field</p></body></html> <html><head/><body><p>Sélectionner le champ code</p></body></html> - + C_ID - + MC_ID - + Symbology Symbologie - + Reclassification Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> <html><head/><body><p>Calculer les valeurs uniques</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> <html><head/><body><p>Activer pour la reclassification de C ID vers MC ID; si coché, les valeurs uniques seront calculées depuis la liste des signatures</p></body>< - + calculate C ID to MC ID values Valeur C ID vers MC ID - + Calculate unique values Calculer les valeurs uniques - + Values Valeurs - + Old value Ancienne valeur - + New value Nouvelle valeur - + Edit raster Editer raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> <html><head/><body><p>Annuler l'édition (pour les polygones ROI uniquement)</p></body></html> - + Select the input raster Sélectionner les entrées raster - + <html><head/><body><p>Select the raster to edit</p></body></html> <html><head/><body><p>Sélectionner les rasters à éditer</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> <html><head/><body><p>Utiliser expression</p></body></html> - + Use expression Utiliser expression - + <html><head/><body><p>Enter expression</p></body></html> <html><head/><body><p>Entrer l'expression</p></body></html> - + where(raster == 1, 2, raster) where(raster == 1, 2, raster) - + Edit raster values Editer les valeurs raster - + <html><head/><body><p>Edit values using a vector</p></body></html> <html><head/><body><p>Editer les valeurs par un vecteur</p></body></html> - + Edit values using a vector Editer les valeurs par un vecteur - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> lt;html><head/><body><p>Editer les valeurs par des ROI temporaires</p></body></html> - + Edit values using ROI polygons Editer les valeurs par des ROI temporaires - + Edit options Editer les options - + Classification sieve Cribler la classification - + <html><head/><body><p>Select the classification</p></body></html> <html><head/><body><p>Sélectionner la classification</p></body></html> - + Size threshold Seuil de taille - + <html><head/><body><p>Size threshold in pixels</p></body></html> <html><head/><body><p>Seuil de taille en pixels</p></body></html> - + Pixel connection Nombre de pixels voisins - + <html><head/><body><p>Pixel connection</p></body></html> <html><head/><body><p>Nombre de pixels voisins</p></body></html> - + 4 - + 8 - + Classification erosion Eroder la classification - + Size in pixels Taille en pixels - + <html><head/><body><p>Size in pixels</p></body></html> <html><head/><body><p>Taille en pixels</p></body></html> - + Class values Valeur de classe - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> <html><head/><body><p>Entrer les valeurs de classe séparé par , ou -</p></body></html> - + Classification dilation Dilater la classification - + Band calc Calcul de bande - + Band list Liste de bande - + Expression Expression - + <html><head/><body><p>Not equals</p></body></html> <html><head/><body><p>Non égal</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> <html><head/><body><p>Egal</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> <html><head/><body><p>Puissance</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> <html><head/><body><p>Moins</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> <html><head/><body><p>Parenthèse fermante</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> <html><head/><body><p>Racine carré</p></body></html> - + <html><head/><body><p>Open parenthesis</p></body></html> <html><head/><body><p>Parenthèse ouvrante</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> <html><head/><body><p>Supérieur à</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> <html><head/><body><p>inférieur à</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> <html><head/><body><p>Entrer une expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules Règles de décision - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> <html><head/><body><p>Entrer une ou plusieurs règles séparées par un point virgules (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value Valeur - + Rule Règle - + <html><head/><body><p>Move highlighted rule up</p></body></html> <html><head/><body><p>Monter la règle sélectionnée</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> <html><head/><body><p>Importer les règles depuis un fichier texte</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> <html><head/><body><p>Exporter les règles dans un fichier texte</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> <html><head/><body><p>Descendre la règle sélectionnée</p></body></html> - + <html><head/><body><p>Band list</p></body></html> Liste de bandes - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> <html><head/><body><p>Si coché, les pixels de valeur NoDate seront exclus du raster de sortie</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> <html><head/><body><p>Si coché, l'étendue du raster de sortie sera égale à celle du raster sélectionné</p></body></html> - + Same as Identique à - + <html><head/><body><p>Select a raster</p></body></html> <html><head/><body><p>Sélectionner un raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> <html><head/><body><p>Si coché, l'étendue du raster de sortie sera égale à l'intersection des rasters en entrées</p></body></html> - + Intersection - + Extent: Etendue - + Output raster Sortie raster - + Band set Jeu de bandes - + <html><head/><body><p>Add band to Band set</p></body></html> <html><head/><body><p>Ajouter une bande au jeu de bandes</p></body></html> - + Band set definition Détail du jeu de bande - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> <html><head/><body><p>Trier les bandes par nom (priorité au nombre final)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> <html><head/><body><p>Descendre la bande sélectionnée</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> <html><head/><body><p>Monter la bande sélectionnée</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> <html><head/><body><p>Exporter le jeu de bandes dans un fichier texte</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> <html><head/><body><p>Importer le jeu de bandes à partir d'un fichier texte</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> <html><head/><body><p>Sélectionner une configuration pour fixer les longueurs d'onde centrales des bandes</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> <html><head/><body><p>Unité de longueur d'onde</p></body></html> - + Create virtual raster of band set Créer un raster virtuel à partir du jeu de bandes - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> <html><head/><body><p>Calculer avec l'expression du calcul de band</p></body></html> - + Band calc expressions Expressions du calcul de bande - + Build band overviews Créer un aperçu - + Band set tools Outils de jeu de bandes - + Batch Batch - + <html><head/><body><p>Enter a batch function</p></body></html> <html><head/><body><p>Entrer une fonction batch</p></body></html> - + Functions Fonctions - + <html><head/><body><p>Import batch from text file</p></body></html> <html><head/><body><p>Importer un fichier batch</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> <html><head/><body><p>Exporter un fichier batch</p></body></html> - + Settings Paramètres - + Interface Interface - + Field names of training input Noms des champs des données d'entrainement - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Renseigner le nom de champ de l'identifiant de classe</p><p>[max 10 caractères]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Renseigner le nom de champ de l'identifiant de macroclasse</p><p>[max 10 caractères]</p></body></html> - + ROI style Style ROI - + <html><head/><body><p>Select temporary ROI color</p></body></html> <html><head/><body><p>Sélectionner une couleur de ROI temporaire</p></body></html> - + ROI color Couleur ROI - + Transparency Transparence - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> <html><head/><body><p>Changer la transparence de la ROI temporaire</p></body></html> - + Variable name Nom de variable - + <html><head/><body><p>Variable name for expressions</p></body></html> <html><head/><body><p>Nom de variable pour les expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) Nom de variable pour les expressions (menu reclassification et éditer raster) - + Group name Nom de groupe - + <html><head/><body><p>Group name</p></body></html> <html><head/><body><p>Nom de groupe</p></body></html> - + Class_temp_group - + Dock Menu - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> <html><head/><body><p>Si coché, les actualités de SCP seront téléchargées au démarrage et affichées dans le menu</p></body></html> - + Download news on startup Télécharger les actualités au démarrage - + Processing Traitement - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> <html><head/><body><p>Activer/désactiver le son quand le traitement est fini</p></body></html> - + Play sound when finished Alarme à la fin du traitement - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> <html><head/><body><p>Si coché, crée un raster virtual pour certain fichier temporaire</p></body></html> - + Use virtual raster for temp files Utiliser un raster virtuel pour les fichiers temporaires - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> <html><head/><body><p>Si coché, une compression est appliqué aux raster pour économiser de l'espace disque</p></body></html> - + Raster compression Compression des rasters - + <html><head/><body><p>Set available RAM for processes</p></body></html> <html><head/><body><p>Fixer la RAM disponible pour le traitement</p></body></html> - + Available RAM (MB) RAM disponible (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> <html><head/><body><p>Réinitialiser le dossier temporaire par défaut</p></body></html> - + Temporary directory Dossier temporaire - + Debug Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> <html><head/><body><p>Activer/Désactiver les logs</p></body></html> - + Record events in a Log file Enregistrer les évènements dans le fichier log - + <html><head/><body><p>Export the Log file</p></body></html> <html><head/><body><p>Exporter le fichier log</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> <html><head/><body><p>Vider le fichier log</p></body></html> - + Log file Fichier log - + <html><head/><body><p>Test dependencies</p></body></html> <html><head/><body><p>Test des dépendances</p></body></html> - + Test dependencies Test des dépendances - + Test Test - + About A propos - + Align Aligner - + Results Résultats - + <html><head/><body><p>Maximum number of results (images)</p></body></html> <html><head/><body><p>Nombre maximum de résultats (images)</p></body></html> - + Cross classification Classification croisé - + Ancillary data Données auxilliaires - + MODIS MODIS - + MODIS conversion Conversion MODIS - + Select file MODIS (.hdf) Sélectionner un fichier MODIS (.hdf) - + ID ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> <html><head/><body><p>Reprojeter les bandes en WGS 84</p></body></html> - + Reproject to WGS 84 Reprojeter en WGS 84 - + Products Produits - + <html><head/><body><p>Select a product</p></body></html> <html><head/><body><p>Sélectionner un produit</p></body></html> - + Stack raster bands Assembler les bandes raster - + Basic tools Outils basiques - + Download products Télécharger de produits - + Band processing Traitement de bande - + <html><head/><body><p>Add a new band set</p></body></html> <html><head/><body><p>Ajouter un nouveau jeu de bandes</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> <html><head/><body><p>Créer un raster virtuel</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> <html><head/><body><p>Créer un raster tif assemblant les bandes</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> <html><head/><body><p>Construire les pyramides pour une visualisation plus rapide</p></body></html> - + RUN Lancer - + Multiband image list Liste d'images multibandes - + <html><head/><body><p>Select a multiband image</p></body></html> <html><head/><body><p>Sélectionner une image multibande</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> <html><head/><body><p>Sélectionner tout / Désélectionner tout</p></body></html> - + Single band list Liste des bandes - + Create random points Créer des points aléatoires - + Signature threshold Seuil de signature - + Automatic thresholds Seuils automatique - + LC Signature threshold Seuil de signature LC - + Login data Identifiant - + Search Rechercher - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> <html><head/><body><p>Ajouter OpenStreetMap à la carte</p></body></html> - + Search parameters Paramètres de recherche - + X (Lon) - + LR - + UL - + Y (Lat) - + <html><head/><body><p>Export table to text file</p></body></html> <html><head/><body><p>Exporter la table depuis un fichier</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> <html><head/><body><p>Importer la table depuis un fichier</p></body></html> - + Product list Liste de produits - + Product Produit - + ProductID - + Zone/Path - + Row/DayNight - + Collection/Size - + Collection/ID - + Collection/Image - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 1 - + 2 - + 3 - + 5 - + 6 - + 7 - + 8A - + 11 - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> <html><head/><body><p><span style=" color:#ffffff;"> Télécharger</span></p></body></html> - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> Sélectionner le fichier MTL - + Select MTL file Sélectionner le fichier MTL - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> <html><head/><body><p>Créer un nouveau jeu de bandes à partir des bandes ajoutés</p></body></html> - + Add bands in a new Band set Ajouter les bandes à un nouveau jeu de bandes - + Select metadata file (MTD_MSI) Sélectionner un fichier de métadonnées (MTD_MSI) - + Sentinel-3 Sentinel-3 - + Sentinel-3 conversion Sentinel-3 conversion - + Directory containing Sentinel-3 bands Dossier contenant les bandes Sentinel-3 - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + Convert vector to raster Convertir vecteur vers raster - + Clip band set Découper un jeu de bandes - + <html><head/><body><p>Band set number</p></body></html> <html><head/><body><p>Numéro du jeu de bandes</p></body></html> - + Select input band set Sélectionner un jeu de bandes - + <html><head/><body><p>Select the vector for clipping</p></body></html> <html><head/><body><p>Sélectionner le vecteur de découpe</p></body></html> - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> <html><head/><body><p>Utiliser les limites du vecteur pour découper les rasters</p></body></html> - + Use vector for clipping Utiliser un vecteur de découpe - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> <html><head/><body><p>Si coché, le clip itère sur chaque polygone et ajoute la valeur du champ </p></body></html> - + Use vector field for output name Utilise un champ du vecteur pour le nom de sortie - + <html><head/><body><p>Select the vector field</p></body></html> <html><head/><body><p>Sélectionner le champ</p></body></html> - + Split raster bands Découper les bandes raster - + Stack band set Assembler les bandes - + Mosaic band sets Mosaïque de jeu de bandes - + Mosaic of band sets Mosaïque de jeu de bandes - + mosaic mosaique - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> <html><head/><body><p>Liste des numéros de bandes séparées par une virgule ,</p></body></html> - + 1, 2 - + Band set list Liste des bandes - + Cloud masking Masque nuage - + Mask of band set Masque de bande - + mask masque - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> <html><head/><body><p>Si coché, créer un buffer pour les valeurs de classe</p></body></html> - + Use buffer of pixel size Utiliser un buffer en taille de pixel - + Mask class values Valeurs de classe du masque - + Band combination Combinaison de bandes - + Select input band set (of classifications) Sélectionner le jeu de bandes en entrée (de classification) - + Combination of band values Combinaison de valeur de bandes - + Principal Components Analysis of band set Analyse à composante principale du jeu de bandes - + Clustering - + <html><head/><body><p>If checked, use ISODATA</p></body></html> <html><head/><body><p>Si coché, utiliser ISODATA</p></body></html> - + ISODATA - + Method Méthode - + <html><head/><body><p>If checked, use K-means</p></body></html> <html><head/><body><p>Si coché, utiliser K-means</p></body></html> - + &K-means - + Clustering of band set Cluster du jeu de bandes - + Max number of iterations Nombre max d'itérations - + <html><head/><body><p>Number of classes</p></body></html> <html><head/><body><p>Nombre de classes</p></body></html> - + <html><head/><body><p>Threshold</p></body></html> <html><head/><body><p>Seuil</p></body></html> - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> <html><head/><body><p>Si coché, pour K-means: stopper les itérations si la distance plus faible que le seuil; pour ISODATA: les signatures sont fusionnées si la distance est plus grande que les seuils</p></body></html> - + Distance threshold Seuil de distance - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> <html><head/><body><p>Fixer le nombre maximum d'itérations</p></body></html> - + Number of classes Nombre de classes - + ISODATA max standard deviation ISODATA écart type maximum - + ISODATA minimum class size in pixels ISODATA taille minimum de taille en pixel - + <html><head/><body><p>Minimum class size in pixels</p></body></html> <html><head/><body><p>Taille minimum de taille en pixel</p></body></html> - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> <html><head/><body><p>Si coché, utilisé l'algorithme de plus proche voisin</p></body></html> - + Minimum Distance Plus proche voisin - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> <html><head/><body><p>Si coché, sauvegarder les résultats à la liste des signatures</p></body></html> - + Save resulting signatures to Signature list sauvegarder les résultats à la liste des signatures - + Distance algorithm - + Seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> <html><head/><body><p>Si coché, utiliser l'algorithme Spectral Angle Mapping (seulement pour K-means)</p></body></html> - + Spectral Angle Mapping - + Spectral distance Distance spectrale - + Spectral distance of band sets Distance spectrale du jeu de bandes - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> <html><head/><body><p>Si coché, calculer un raster de changement quand la distance est supérieure au seuil</p></body></html> - + Select first input band set Sélectionner le premier jeu de bandes - + Select second input band set Sélectionner le deuxième jeu de bandes - + Select the reference vector or raster Sélectionner le vecteur ou raster de référence - + <html><head/><body><p>Select the reference vector or raster</p></body></html> <html><head/><body><p>Sélectionner le vecteur ou raster de référence</p></body></html> - + Vector field Champ vecteur - + Accuracy assessment Vérification de la précision - + Land cover change Changement d'occupation des sols - + Classification report Rapport de classification - + Cross classification Classification croisée - + Class signature Classe signature - + Class signature Classe signature - + Classification to vector Classification vers vecteur - + Reclassification Reclassification - + Edit raster Editer raster - + Classification sieve Cribler la classification - + Classification erosion Eroder la classification - + Classification dilation Dilater la classification - + SMTP server Serveur SMTP - + password mot de passe - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> <html><head/><body><p>Activer/Désactiver l'envoie d'un mail à la fin du traitement</p></body></html> - + Send email of completed process to envoyer un mail à la fin du traitement - + SMTP process notification Notification SMTP - + user utilisateur - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> <html><head/><body><p>Liste d'adresse (séparée par une virgule , ) à qui envoyer le mail </p></body></html> - + Date Date - + Function Fonction - + Message Message @@ -3410,22 +3410,22 @@ p, li { white-space: pre-wrap; } Aperçu - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + stratified for the values - + of first band of band set de la première bande du jeu de bandes - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3434,777 +3434,777 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) Créer un raster à partir du jeu de bandes - + Input NoData as value - + Sentinel-1 Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual Manuel d'utilisateur - + Support the SCP Soutenir SCP - + Use Utiliser - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> <html><head/><body><p>Utiliser l'ID des macroclasses pour la classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> <html><head/><body><p>Utiliser l'ID des classes pour la classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> <html><head/><body><p>Ouvrir le tableau de poids des bandes</p></body></html> - + W W - + <html><head/><body><p>Select a classification algorithm</p></body></html> <html><head/><body><p>Selectionner un algorithme de classification</p></body></html> - + Maximum Likelihood Maximum de vraisemblance - + Algorithm Algorithme - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> <html><head/><body><p>Appliquer un seuil de classification pour toutes les signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> <html><head/><body><p>Ouvrir le tableau des seuils des signatures</p></body></html> - + Threshold Seuil - + Classification Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> <html><head/><body><p>Si coché, la classification d'occupation des sols est utilisée</p></body></html> - + LCS LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> <html><head/><body><p>Ouvrir le tableau des seuils LCS</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> <html><head/><body><p>Si coché, l'algorithme sélectionné est utilisé seulement pour la classe superposée à des pixels de la classification d'occupation des sols</p></body></html> - + only overlap superposé uniquement - + Land Cover Signature Classification Classification d'occupation des sols - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> <html><head/><body><p>Si coché, l'algorithme sélectionné est utilisé pour les pixels non-classifiés de la classification d'occupation des sols</p></body></html> - + Algorithm Algorithme - + Classification output Sortie de la classification - + Load qml style Charger le style qml - + <html><head/><body><p><span >Select qml style</span></p></body></html> <html><head/><body><p><span >Sélectionner le style qml</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> <html><head/><body><p>Chemin vers fichier Qml</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> <html><head/><body><p>Selectionner un masque vectoriel (optionnel)</p></body></html> - + Apply mask Appliquer le masque - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> <html><head/><body><p>Chemin vers le masque (.shp)</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> <html><head/><body><p>Créer un fichier vecteur de la classification après le traitement</p></body></html> - + Create vector Créer un fichier vecteur - + <html><head/><body><p>Calculate a classification report</p></body></html> <html><head/><body><p>Calculer un rapport de la classification</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> <html><head/><body><p>Si coché, tous les rasters temporaire de la classification (un par signature) sont sauvegardés au cours du traitement</p></body></html> - + Save algorithm files Sauvegarde les fichiers temporaires - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit Unité de longueur d'onde - + Wavelength quick settings Paramétrage rapide des longueur d'onde - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4213,7 +4213,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,272 +4236,302 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> <html><head/><body><p>Login ASTER et MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name Nom de MC - + C Name Nom de C - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + Set threshold = σ * - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + σ * - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4701,12 +4731,12 @@ ROI semiautomaticclassificationplugin - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -4942,7 +4972,7 @@ Do you want to add the required fields to this shapefile? - + Edit raster Editer raster @@ -4987,12 +5017,12 @@ Do you want to add the required fields to this shapefile? SCP - + Band set Jeu de bandes - + Basic tools Outils basiques @@ -5002,107 +5032,107 @@ Do you want to add the required fields to this shapefile? Liste RGB - + Algorithm band weight Algorithme : poids des bandes - + Multiple ROI creation Creation de ROI multiple - + Import signatures Importer des signatures - + Export signatures Exporter les signatures - + Signature threshold Seuil des signatures - + LCS threshold Seuil LCS - + Download products Télécharger de produits - + Preprocessing Pré-traitement - + Landsat Landsat - + Sentinel-2 Sentinel-2 - + Sentinel-3 Sentinel-3 - + ASTER ASTER - + MODIS MODIS - + Vector to raster Vecteur vers raster - + Clip multiple rasters Découper plusieurs rasters - + Split raster bands Séparer les bandes - + Stack raster bands Assembler les bandes raster - + Mosaic band sets Mosaïque de jeu de bandes - + Cloud masking Masque nuage - + Band processing Traitement de bande - + Band combination Combinaison de bandes @@ -5122,57 +5152,57 @@ Do you want to add the required fields to this shapefile? Distance spectrale - + Postprocessing Post-traitement - + Accuracy Précision - + Land cover change Changement d'occupation des sols - + Classification report Rapport de classification - + Cross classification Classification croisé - + Class signature Classe signature - + Classification to vector Classification vers vecteur - + Reclassification Reclassification - + Classification sieve Cribler la classification - + Classification erosion Eroder la classification - + Classification dilation Dilater la classification @@ -5187,47 +5217,47 @@ Do you want to add the required fields to this shapefile? Batch - + Settings Paramètres - + Interface Interface - + Debug Debug - + Spectral plot - + Scatter plot - + User manual Manuel d'utilisateur - + Online help Aide en ligne - + About A propos - + Show plugin @@ -5627,7 +5657,7 @@ Do you want to add the required fields to this shapefile? - + SCP: completed process @@ -5832,12 +5862,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5857,7 +5887,7 @@ Do you want to add the required fields to this shapefile? - + missing parameter @@ -6277,7 +6307,7 @@ Do you want to add the required fields to this shapefile? - + Band set list Liste des bandes @@ -6312,7 +6342,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 Sentinel-1 @@ -6322,7 +6352,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6347,7 +6377,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6362,7 +6392,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6392,7 +6422,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6452,27 +6482,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6482,7 +6512,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6512,12 +6542,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6527,22 +6557,22 @@ Do you want to add the required fields to this shapefile? Traitement - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6572,7 +6602,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6592,12 +6622,12 @@ Do you want to add the required fields to this shapefile? - + Help - + Support the SCP Soutenir SCP @@ -6866,5 +6896,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_it.ts b/i18n/semiautomaticclassificationplugin_it.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_it.ts +++ b/i18n/semiautomaticclassificationplugin_it.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_ja.ts b/i18n/semiautomaticclassificationplugin_ja.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_ja.ts +++ b/i18n/semiautomaticclassificationplugin_ja.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_pl.ts b/i18n/semiautomaticclassificationplugin_pl.ts index 7be3ed8..7d2891b 100644 --- a/i18n/semiautomaticclassificationplugin_pl.ts +++ b/i18n/semiautomaticclassificationplugin_pl.ts @@ -608,892 +608,892 @@ p, li { white-space: pre-wrap; } SemiAutomaticClassificationPlugin - + Semi-Automatic Classification Plugin Semi-Automatic Classification Plugin - + Multiple ROI creation Tworzenie wielu OT - + X X - + Y Y - + MC ID MC ID - + C ID C ID - + Rapid ROI band Szybki kanał OT - + Point coordinates and ROI definition Współrzędne punktu i określenie OT - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> <html><head/><body><p>Generuj losowe punkty wewnątrz każdej komórki siatki o tej wielkości</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> <html><head/><body><p align="justify">Wielkość komórki siatki wewnątrz punktów jest tworzona losowo</p></body></html> - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> <html><head/><body><p align="justify">Liczba punktów generowanych losowo</p></body></html> - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> <html><head/><body><p align="justify">Minimalna odległość pomiędzy punktami</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> <html><head/><body><p>Dodaj sygnatury OT do listy sygnatur</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> <html><head/><body><p>Wybierz bibliotekę</p></body></html> - + <html><head/><body><p>Select a chapter</p></body></html> <html><head/><body><p>Wybierz rozdział</p></body></html> - + Algorithm band weight Wagi kanałów - + Band name Nazwa kanału - + <html><head/><body><p>Set a value</p></body></html> <html><head/><body><p>Ustaw wartość</p></body></html> - + Automatic thresholds Automatyczne progi - + <html><head/><body><p>Lower right Y</p></body></html> <html><head/><body><p>Prawy dolny Y</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> <html><head/><body><p>Prawy dolny X</p></body></html> - + + + - + Max cloud cover (%) Maks. pokrycie chmur (%) - + to do - + yyyy-MM-dd yyyy-MM-dd - + <html><head/><body><p>Upper left X</p></body></html> <html><head/><body><p>Lewy górny X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> <html><head/><body><p>Lewy górny Y</p></body></html> - + AcquisitionDate Data pozyskania - + CloudCover Pokrycie chmur - + min_lat min_szer - + min_lon min_dł - + max_lat maks_szer - + max_lon maks_dł - + Service Usługa - + Preview Podgląd - + Download options Opcje - + <html><head/><body><p>Load images in QGIS after download</p></body></html> <html><head/><body><p>Po pobraniu wczytaj obrazy do QGIS</p></body></html> - + Load bands in QGIS Wczytaj kanały do QGIS - + <html><head/><body><p>Export download links to a text file</p></body></html> <html><head/><body><p>Eksportuj pobrane łącza do pliku tekstowego</p></body></html> - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> <html><head/><body><p>Pobierz tylko te obrazy, których podgląd jest wczytany do QGIS</p></body></html> - + Password Hasło - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> <html><head/><body><p>zapamiętaj nazwę użytkownika i hasło lokalnie w QGIS</p></body></html> - + remember zapamiętaj - + User Użytkownik - + <html><head/><body><p>User name</p></body></html> <html><head/><body><p>Nazwa użytkownika</p></body></html> - + <html><head/><body><p>Password</p></body></html> <html><head/><body><p>Hasło</p></body></html> - + Landsat Landsat - + Directory containing Landsat bands Katalog zawierający kanały Landsat - + Landsat conversion to TOA reflectance and brightness temperature Konwersja Landsat do współczynnika odbicia TOA i temperatury luminancyjnej - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> <html><head/><body><p>Włącz/wyłącz wyliczanie temperatury w st. Celsjusza z kanału termalnego</p></body></html> - + Brightness temperature in Celsius Temperatura luminancyjna w st. Celsjusza - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> <html><head/><body><p>Włącz/Wyłącz korekcję atmosferyczną DOS1 (kanał termalny nie jest korygowany)</p></body></html> - + Apply DOS1 atmospheric correction Zastosuj korekcję atmosferyczną DOS1 - + <html><head/><body><p>No data value</p></body></html> <html><head/><body><p>Wartość "brak danych"</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> <html><head/><body><p>Zastosuj metodę wyostrzania (Transformacja Brovey'a)</p></body></html> - + Satellite Satelita - + Sun elevation Wysokość słońca - + <html><head/><body><p>DATE ACQUIRED</p></body></html> <html><head/><body><p>DATA POZYSKANIA</p></body></html> - + Date (YYYY-MM-DD) Data (YYYY-MM-DD) - + Earth sun distance Odlegość Ziemia-Słońce - + <html><head/><body><p>SUN ELEVATION</p></body></html> <html><head/><body><p>WYSOKOŚĆ SŁOŃCA</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> <html><head/><body><p>Odległość Ziemi do Słońca</p></body></html> - + Metadata Metadane - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> <html><head/><body><p>Satelita (np. LANDSAT8)</p></body></html> - + <html><head/><body><p>Edit metadata</p></body></html> <html><head/><body><p>Edytuj metadane</p></body></html> - + Band Kanał - + RADIANCE_MULT RADIANCE_MULT - + RADIANCE_ADD RADIANCE_ADD - + REFLECTANCE_MULT REFLECTANCE_MULT - + REFLECTANCE_ADD REFLECTANCE_ADD - + RADIANCE_MAXIMUM RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM REFLECTANCE_MAXIMUM - + K1_CONSTANT K1_CONSTANT - + K2_CONSTANT K2_CONSTANT - + LMAX LMAX - + LMIN LMIN - + QCALMAX QCALMAX - + QCALMIN QCALMIN - + Clip multiple rasters Przytnij wiele rastrów - + Clip coordinates Współrzędne przycięcia - + <html><head/><body><p>NoData value</p></body></html> <html><head/><body><p>Wartość BrakDanych</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> <html><head/><body><p>Prefiks nazwy wynikowej</p></body></html> - + clip clip - + Output name prefix Prefiks nazwy wynikowej - + Split raster bands Rozdziel kanały rastra - + <html><head/><body><p>Select the image to be split</p></body></html> <html><head/><body><p>Wybierz obraz który ma zostać rozdzielony</p></body></html> - + Select a multiband raster Wybierz raster wielokanałowy - + split split - + Accuracy Dokładność - + <html><head/><body><p>Select the field of the classification code </p></body></html> <html><head/><body><p>Wybierz pole kodu klasyfikacji</p></body></html> - + Select the classification to assess Wybierz klasyfikację do oszacowania - + <html><head/><body><p>Select the classification to assess</p></body></html> <html><head/><body><p>Wybierz klasyfikację do oszacowania</p></body></html> - + Land cover change Zmiana pokrycia terenu - + <html><head/><body><p>Select the reference classification raster</p></body></html> <html><head/><body><p>Wybierz odniesienie klasyfikacji rastra</p></body></html> - + Select the new classification Wybierz nową klasyfikację - + Select the reference classification Wybierz klasyfikację referencyjną - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> <html><head/><body><p>Wybierz nowy raster w celu porównania z rastrem referencyjnym</p></body></html> - + Report unchanged pixels Zgłoś nie zmienione piksele - + Classification report Raport klasyfikacji - + <html><head/><body><p>Select the classification raster</p></body></html> <html><head/><body><p>Wybierz raster klasyfikacji</p></body></html> - + Select the classification Wybierz klasyfikację - + Classification to vector Klasyfikacja do wektora - + Use code from Signature list Użyj kod z Listy sygnatur - + <html><head/><body><p>Select the code field</p></body></html> <html><head/><body><p>Wybierz pole kodu</p></body></html> - + Reclassification Reklasyfikacja - + Calculate unique values Wyznacz niepowtarzalne wartości - + Old value Stare wartości - + New value Nowe wartości - + Band calc Kalkulator - + <html><head/><body><p>Band list</p></body></html> <html><head/><body><p>Lista kanałów</p></body></html> - + Variable Zmienna - + <html><head/><body><p>Multiplication</p></body></html> <html><head/><body><p>Mnożenie</p></body></html> - + * * - + <html><head/><body><p>Power</p></body></html> <html><head/><body><p>Potęga</p></body></html> - + ^ ^ - + <html><head/><body><p>Minus</p></body></html> <html><head/><body><p>Minus</p></body></html> - + - - - + <html><head/><body><p>Plus</p></body></html> <html><head/><body><p>Plus</p></body></html> - + <html><head/><body><p>Division</p></body></html> <html><head/><body><p>Dzielenie</p></body></html> - + / / - + <html><head/><body><p>Close parenthesis</p></body></html> <html><head/><body><p>Zamknij nawias</p></body></html> - + ) ) - + <html><head/><body><p>Square root</p></body></html> <html><head/><body><p>Pierwiastek kwadratowy</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> <html><head/><body><p>Otwórz nawias</p></body></html> - + ( ( - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> <html><head/><body><p>piksele o wartości BrakDanych zostaną wyłączone z rastra wyjściowego</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> <html><head/><body><p>zasięg rastra wynikowego będzie równy zasięgowi rastra</p></body></html> - + Same as Takie jak - + <html><head/><body><p>Select a raster</p></body></html> <html><head/><body><p>Wybierz raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> <html><head/><body><p>rozszerzenie wyjścia rastra będzie takie jak przecięcie wejścia rastra</p></body></html> - + Intersection Przecięcie - + Extent: Zasięg: - + Output raster Raster wyjściowy - + Expression Wyrażenie - + Band list Lista kanałów - + Band set Zestaw kanałów - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> <html><head/><body><p>Sortuj według nazw kanałów (priorytet dla numerów końcowych)</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> <html><head/><body><p>Jednostka długości fali</p></body></html> - + Band set definition Definicja zestawu kanałów - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> <html><head/><body><p>Wybierz konfigurację dla ustawień centralnej długości fali kanału</p></body></html> - + Create virtual raster of band set Twórz raster wirtualny - + Build band overviews Generuj kanały podglądu - + Settings Ustawienia - + Interface Interfejs - + Group name Nazwa grupy - + <html><head/><body><p>Group name</p></body></html> <html><head/><body><p>Nazwa grupy</p></body></html> - + Class_temp_group grupa_tym_klas - + Variable name Nazwa zmiennej - + <html><head/><body><p>Variable name for expressions</p></body></html> <html><head/><body><p>Nazwa zmiennej do wyrażenia</p></body></html> - + raster raster - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Ustaw nazwę pola ID klasyfikacji</p><p>[maks 10 znaków]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> <html><head/><body><p>Ustaw nazwę pola ID makroklasy</p><p>[maks 10 znaków]</p></body></html> - + C ID field Pole C ID - + MC ID field Pole MC ID - + Transparency Przezroczystość - + ROI style Styl OT - + Processing Obróbka obrazu - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> <html><head/><body><p>Włącz/Wyłącz dźwięk po zakończeniu obróbki obrazu</p></body></html> - + Play sound when finished Odtwórz dźwięk po zakończeniu - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> <html><head/><body><p>stwórz rastry wirtualne dla plików tymczasowych</p></body></html> - + Use virtual raster for temp files Użyj rastrów wirtualnych dla plików tym - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> <html><head/><body><p>kompresja bezstratna dla rastrów w celu zaoszczędzenia miejsca na dysku</p></body></html> - + Raster compression Kompresja rastrów - + <html><head/><body><p>Set available RAM for processes</p></body></html> <html><head/><body><p>Ustaw dostępną pamięć RAM do obróbki obrazu</p></body></html> - + Available RAM (MB) Dostępny RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> <html><head/><body><p>Zmień folder tymczasowy na domyślny</p></body></html> - + Temporary directory Katalog tymczasowy - + Debug Śledź błędy - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> <html><head/><body><p>Włącz/Wyłącz logowanie w pliku zdarzeń</p></body></html> - + Record events in a Log file Rejestruj zdarzenia w pliku - + <html><head/><body><p>Export the Log file</p></body></html> <html><head/><body><p>Eksportuj Plik zdarzeń</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> <html><head/><body><p>Wyczyść zawartość Pliku zdarzeń</p></body></html> - + Log file Plik zdarzeń - + Test Test - + <html><head/><body><p>Test dependencies</p></body></html> <html><head/><body><p>Testuj zależności</p></body></html> - + Test dependencies Testuj zależności - + About O wtyczce @@ -1513,1947 +1513,1947 @@ p, li { white-space: pre-wrap; } Podgląd - + <html><head/><body><p>Preprocess images</p></body></html> <html><head/><body><p>Wstępna obróbka obrazów</p></body></html> - + Preprocess images Wstępna obróbka obrazów - + Only if preview in Layers Tylko te z podglądem w QGIS - + <html><head/><body><p><span >Run</span></p></body></html> <html><head/><body><p><span >Uruchom</span></p></body></html> - + Import library Importuj bibliotekę - + <html><head/><body><p>Set area in the map</p></body></html> <html><head/><body><p>Wybierz obszar na mapie</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> <html><head/><body><p>Pokaż / ukryj obszar</p></body></html> - + Show Pokaż - + <html><head/><body><p>Find images</p></body></html> <html><head/><body><p>Znajdź obrazy</p></body></html> - + Find Znajdź - + Date from Data od - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> <html><head/><body><p>Maksymalny procent pokrycia chmurami</p></body></html> - + Filter Filtruj - + <html><head/><body><p>Filter images</p></body></html> <html><head/><body><p>Filtruj obrazy</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> <html><head/><body><p >Usuń wiersz</p></body></html> - + Plot Wykres - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> <html><head/><body><p>Wyświetl na mapie podgląd wybranych obrazów</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> <html><head/><body><p><span >Wyczyść</span></p></body></html> - + <html><head/><body><p >Select all</p></body></html> <html><head/><body><p >Wybierz wszystkie</p></body></html> - + <html><head/><body><p>Login Sentinels</p></body></html> <html><head/><body><p>Logowanie do Sentinel</p></body></html> - + Sentinel-2 bands Kanały Sentinel-2 - + Create points Generuj punkty - + Number of points Liczba punktów - + <html><head/><body><p>Create points</p></body></html> <html><head/><body><p>Generuj punkty</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> <html><head/><body><p>Generuj losowe punkty w minimalnej odległości</p></body></html> - + min distance min. odległość - + inside grid wewnątrz siatki - + Min Min - + Max Max - + Dist Odl - + <html><head/><body><p >Add row</p></body></html> <html><head/><body><p >Dodaj wiersz</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> <html><head/><body><p>Eksportuj listę punktów do pliku tekstowego</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> <html><head/><body><p>Importuj listę punktów z pliku tekstowego</p></body></html> - + Calculate sig. Oblicz sygnatury - + Run Uruchom - + Import signatures Importuj sygnatury - + Import library file Importuj plik biblioteki - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> <html><head/><body><p>Wybierz: plik SCP (*.scp) ; bibliotekę USGS (*.asc) ; bibliotekę ASTER (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> <html><head/><body><p><span >Otwórz plik</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> <html><head/><body><p>Otwórz plik</p></body></html> - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> <html><head/><body><p>Dodaj charakterystykę spektralną OT do listy sygnatur</p></body></html> - + Download USGS Spectral Library Pobierz bibliotekę spektralną USGS - + Import spectral library Importuj bibliotekę spektralną - + <html><head/><body><p>Import spectral library</p></body></html> <html><head/><body><p>Importuj bibliotekę spektralną</p></body></html> - + Library Description (requires internet connection) Opis biblioteki (wymaga połączenia z internetem) - + Export signatures Eksportuj sygnatury - + Export Eksport - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> <html><head/><body><p>Eksportuj jako plik CSV (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> <html><head/><body><p>Eksportuj jako plik SCP (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> <html><head/><body><p >Eksportuj wybrane sygnatury spektralne</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> <html><head/><body><p>Wybierz folder do zapisu wybranych sygnatur spektralnych jako .csv</p></body></html> - + <html><head/><body><p >Reset</p></body></html> <html><head/><body><p >Wyczyść</p></body></html> - + <html><head/><body><p >Set</p></body></html> <html><head/><body><p >Ustaw</p></body></html> - + Set weight Ustaw wagę - + Automatic weight Automatyczna waga - + MD Threshold Próg MD - + ML Threshold Próg ML - + SAM Threshold Próg SAM - + Set threshold = σ * Ustaw wagę = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> <html><head/><body><p>Ustaw wagę, która będzie mnożona przez odchylenie standardowe</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> <html><head/><body><p>Ustaw automatyczny próg σ</p></body></html> - + Set threshold Ustaw próg - + LCS threshold Próg LCS - + Color [overlap MC_ID-C_ID] Kolor [nałożenie MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> <html><head/><body><p >Dodaj wybrane sygnatury do wykresu spektralnego sygnatur</p></body></html> - + Min Max Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> <html><head/><body><p>Ustaw automatyczny próg Min Max</p></body></html> - + σ * σ * - + From pixel Z piksela - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> <html><head/><body><p>Aktywuj wskaźnik do wyboru progu z piksela</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> <html><head/><body><p>próg sygnatury jest rozszerzany o sygnaturę piksela</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> <html><head/><body><p>próg sygnatury jest redukowany o sygnaturę piksela</p></body></html> - + From ROI Z OT - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> <html><head/><body><p>Ustaw próg z tymczasowego OT</p></body></html> - + RGB list Lista RGB - + <html><head/><body><p>Sort RGB automatically</p></body></html> <html><head/><body><p>Automatycznie sortuj RGB</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> <html><head/><body><p>Przesuń zaznaczone RBG niżej</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> <html><head/><body><p>Przesuń zaznaczone RGB wyżej</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> <html><head/><body><p>Eksportuj listę RGB do pliku tekstowego</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> <html><head/><body><p>Importuj listę RGB z pliku tekstowego</p></body></html> - + RGB RGB - + Automatic RGB Automatyczne RGB - + Band combinations Kombinacje kanałów - + <html><head/><body><p>Add all combinations of bands</p></body></html> <html><head/><body><p>Dodaj wszystkie kombinacje kanałów</p></body></html> - + Preprocessing Wstępna obróbka obrazów - + <html><head/><body><p >Select a directory</p></body></html> <html><head/><body><p >Wybierz folder</p></body></html> - + Perform pansharpening (Landsat 7 or 8) Zastosuj pansharpening (Landsat 7 lub 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> <html><head/><body><p>Automatycznie twórz zestaw kanałów i użyj zaznaczone</p></body></html> - + Create Band set and use Band set tools Twórz zestaw kanałów i użyj narzędzi zestawu kanałów - + Sentinel-2 Sentinel-2 - + Directory containing Sentinel-2 bands Folder zawierający kanały Sentinel-2 - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> <html><head/><body><p>Włącz/wyłącz korekcję atmosferyczną DOS1</p></body></html> - + Sentinel-2 conversion Konwersja Sentinel-2 - + Quantification value - + Solar irradiance Irradiancja słoneczna - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> <html><head/><body><p>Satelita (np. Sentinel-2A)</p></body></html> - + ASTER ASTER - + ASTER conversion to TOA reflectance and brightness temperature Konwersja ASTER do współczynnika odbicia TOA i temperatury luminancyjnej - + Select file ASTER L1T (.hdf) Wybierz plik ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone Strefa UTM - + <html><head/><body><p>UTM zone</p></body></html> <html><head/><body><p>Strefa UTM</p></body></html> - + UPPERLEFTM Lewa-góra [m] - + <html><head/><body><p >Refresh list</p></body></html> <html><head/><body><p >Odśwież listę</p></body></html> - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> <html><head/><body><p>Użyj tymczasowego OT do przycięcia rastrów</p></body></html> - + Use temporary ROI for clipping Użyj tymczasowego OT do przycięcia - + PCA - + Input Dane - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> <html><head/><body><p>oblicz tylko liczbę składowych</p></body></html> - + Number of components Liczba składowych - + <html><head/><body><p>Number of components</p></body></html> <html><head/><body><p>Liczba składowych</p></body></html> - + Output Wynik - + Vector to raster Wektor na raster - + Select the vector Wybierz wektor - + <html><head/><body><p>Select the vector</p></body></html> <html><head/><body><p>Wybierz wektor</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> <html><head/><body><p>Użyj pola warstwy wektorowej</p></body></html> - + Use the value field of the vector Użyj pola warstwy wektorowej - + <html><head/><body><p>Select the value field</p></body></html> <html><head/><body><p>Wybierz pole</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> <html><head/><body><p>Użyj stałej wartości</p></body></html> - + Use constant value Użyj stałej wartości - + <html><head/><body><p>Value</p></body></html> <html><head/><body><p>Wartość</p></body></html> - + Select the type of conversion Wybierz typ konwersji - + <html><head/><body><p>Select the type of conversion</p></body></html> <html><head/><body><p>Wybierz typ konwersji</p></body></html> - + Select the reference raster Wybierz raster referencyjny - + <html><head/><body><p>Select the reference raster</p></body></html> <html><head/><body><p>Wybierz raster referencyjny</p></body></html> - + Postprocessing Końcowa obróbka obrazów - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> <html><head/><body><p align="justify">piksel zachowa wartość, gdy nie uległa ona zmianie (przy wyłączonej opcji, niezmienionym pikselom przypisana zostanie wartość 0)</p></body></html> - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> <html><head/><body><p>Użyj kodów z listy sygnatur do wektora</p></body></html> - + C_ID C_ID - + MC_ID MC_ID - + Symbology Stylizacja - + <html><head/><body><p>Calculate unique values</p></body></html> <html><head/><body><p>Wyznacz wartości unikalne</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> <html><head/><body><p>Mapuje klasy C ID na MC ID; oblicza unikalne wartości z listy sygnatur, pozostawiając stare C ID i przypisując nowe wartości MC ID</p></body></html> - + calculate C ID to MC ID values reklasyfikuj C ID na MC ID - + Values Wartości - + Edit raster Edycja rastra - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> <html><head/><body><p>Cofnij edycję (tylko dla poligonów OT)</p></body></html> - + Select the input raster Wybierz raster źródłowy - + <html><head/><body><p>Select the raster to edit</p></body></html> <html><head/><body><p>Wybierz raster do edycji</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> <html><head/><body><p>Użyj wyrażenia</p></body></html> - + Use expression Użyj wyrażenia - + <html><head/><body><p>Enter expression</p></body></html> <html><head/><body><p>Wprowadź wyrażenie</p></body></html> - + where(raster == 1, 2, raster) where(raster == 1, 2, raster) - + Edit raster values Edytuj wartości rastra - + <html><head/><body><p>Edit values using a vector</p></body></html> <html><head/><body><p>Edytuj wartości używając wektora</p></body></html> - + Edit values using a vector Edytuj wartości używając wektora - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> <html><head/><body><p>Edytuj wartości używając tymczasowych OT</p></body></html> - + Edit values using ROI polygons Edytuj wartości używając poligonów OT - + Edit options Opcje edycji - + Classification sieve Klas. (sieve) - + <html><head/><body><p>Select the classification</p></body></html> <html><head/><body><p>Wybierz klasyfikację</p></body></html> - + Size threshold Próg wielkości - + <html><head/><body><p>Size threshold in pixels</p></body></html> <html><head/><body><p>Próg wielkośći [px]</p></body></html> - + Pixel connection Połączeń pikseli - + <html><head/><body><p>Pixel connection</p></body></html> <html><head/><body><p>Połączeń pikseli</p></body></html> - + 4 4 - + 8 8 - + Classification erosion Klas. (erosion) - + Size in pixels Rozmiar [px] - + <html><head/><body><p>Size in pixels</p></body></html> <html><head/><body><p>Rozmiar w pikselach</p></body></html> - + Class values Wartości klas - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> <html><head/><body><p>Wprowadź wartości klas oddzielone , lub -</p></body></html> - + Classification dilation Klas. (dilation) - + <html><head/><body><p>Not equals</p></body></html> <html><head/><body><p>Różne od</p></body></html> - + != != - + <html><head/><body><p>Equals</p></body></html> <html><head/><body><p>Równe</p></body></html> - + == == - + <html><head/><body><p>Greater than</p></body></html> <html><head/><body><p>Większe niż</p></body></html> - + > > - + <html><head/><body><p>Less than</p></body></html> <html><head/><body><p>Mniejsze niż</p></body></html> - + < < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> <html><head/><body><p>Wprowadź wyrażenie (np. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules Reguły - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> <html><head/><body><p>Wprowadź jedną lub więcej reguł, oddzielonych średnikami (np. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value Wartości - + Rule Reguła - + <html><head/><body><p>Move highlighted rule up</p></body></html> <html><head/><body><p>Przesuń zaznaczone reguły wyżej</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> <html><head/><body><p>Importuj reguły z pliku tekstowego</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> <html><head/><body><p>Eksportuj reguły do pliku tekstowego</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> <html><head/><body><p>Przesuń zaznaczone reguły niżej</p></body></html> - + <html><head/><body><p>Add band to Band set</p></body></html> <html><head/><body><p>Dodaj kanał do zestawu kanałów</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> <html><head/><body><p>Przesuń zaznaczone kanały niżej</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> <html><head/><body><p>Przesuń zaznaczone kanały wyżej</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> <html><head/><body><p>Eksportuj zestaw kanałów do pliku tekstowego</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> <html><head/><body><p>Importuj zestaw kanałów z pliku tekstowego</p></body></html> - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> <html><head/><body><p>Oblicz wyrażenie z kalkulatora kanałów</p></body></html> - + Band calc expressions Wyrażenie kalkulatora - + Band set tools Narzędzia zestawu kanałów - + Batch Tryb wsadowy - + <html><head/><body><p>Enter a batch function</p></body></html> <html><head/><body><p>Wprowadź funkcję</p></body></html> - + Functions Funkcje - + <html><head/><body><p>Import batch from text file</p></body></html> <html><head/><body><p>Importuj plik wsadowy z pliku tekstowego</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> <html><head/><body><p>Eksportuj plik wsadowy do pliku tekstowego</p></body></html> - + Field names of training input Nazwy pól dla obszarów treningowych (OT) - + <html><head/><body><p>Select temporary ROI color</p></body></html> <html><head/><body><p>Wybierz kolor OT</p></body></html> - + ROI color Kolor - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> <html><head/><body><p>Zmień przezroczystość OT</p></body></html> - + Variable name for expressions (tab Reclassification and Edit raster) Nazwa zmiennej do wyrażenia (zakładka Reklasyfikacja i Edycja rastra) - + Dock Panel - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> <html><head/><body><p>Aktualności o wtyczce są pobierane przy uruchomieniu i wyświetlane w panelu</p></body></html> - + Download news on startup Wczytaj aktualności przy uruchamianiu - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance Minimalna odległość - + Spectral Angle Mapping Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 6 - + 1 1 - + 3 3 - + 2 2 - + 11 - + 5 5 - + 7 7 - + 8A - + 9 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands Kanały Sentinel-2 {3 ?} - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold Próg sygnatur - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 Sentinel-3 - + Sentinel-3 conversion Konwersja Sentinel-2 {3 ?} - + Directory containing Sentinel-3 bands Folder zawierający kanały Sentinel-2 {3 ?} - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> <html><head/><body><p>Satelita (np. Sentinel-2A)</p></body></html> {3A?} - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3462,775 +3462,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands Kanały - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual Podręcznik użytkownika - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> <html><head/><body><p>Do klasyfikacji wybierz ID makroklas</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W W - + <html><head/><body><p>Select a classification algorithm</p></body></html> <html><head/><body><p>Wybierz algorytm klasyfikacji</p></body></html> - + Maximum Likelihood Maksymalne prawdopodobieństwo - + Algorithm Algorytm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> <html><head/><body><p>Ustaw próg klasyfikacji dla wszystkich sygnatur</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> <html><head/><body><p>Otwórz zakładkę Próg sygnatur</p></body></html> - + Threshold Próg - + Classification Klasyfikacja - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm Algorytm - + Classification output Wynik klasyfikacji - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> <html><head/><body><p><span >Wybierz styl qml</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> <html><head/><body><p>Ścieżka pliku qml</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask Zastosuj maskę - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> <html><head/><body><p>Ścieżka dodatkowej maski shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> <html><head/><body><p>Po procesie klasyfikacji stwórz plik shapefile z klasyfikacją </p></body></html> - + Create vector Stwórz wektor - + <html><head/><body><p>Calculate a classification report</p></body></html> <html><head/><body><p></p>Twórz raport klasyfikacji</body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> <html><head/><body><p>Kiedy włączone, rastry wyznaczone przez algorytm klasyfikacji (jeden na sygnaturę) zostaną zapisane wraz z klasyfikacją</p></body></html> - + Save algorithm files Zapisz pliki algorytmu - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4239,7 +4239,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4262,247 +4262,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4707,7 +4737,7 @@ ROI SCP - + Settings Ustawienia @@ -4717,7 +4747,7 @@ ROI Semi-Automatic Classification Plugin - + Band set Zestaw kanałów @@ -4742,7 +4772,7 @@ ROI Lokalne wzmocnienie kontrastu (odchylenie standardowe) - + Spectral plot Wykres spektralny @@ -4752,7 +4782,7 @@ ROI Kalkulator kanałów - + Online help Pomoc Online @@ -5147,12 +5177,12 @@ ROI Zapisz raster - + Build overviews Zbuduj podglądy - + Do you want to build the external overviews of bands? Czy na pewno zbudować zewnętrzne podglądy na kanały? @@ -5449,17 +5479,17 @@ Chcesz dodać wymagane pola do tego shapefile? Usuń pliki tymczasowe - + Preprocessing Wstępna obróbka obrazów - + Postprocessing Końcowa obróbka obrazów - + Scatter plot Wykres punktowy @@ -5469,7 +5499,7 @@ Chcesz dodać wymagane pola do tego shapefile? Tryb wsadowy - + User manual Podręcznik użytkownika @@ -5719,57 +5749,57 @@ Chcesz dodać wymagane pola do tego shapefile? Czy na pewno chcesz wyczyścić progi? - + Multiple ROI creation Tworzenie wielu OT - + Import signatures Importuj sygnatury - + Export signatures Eksportuj sygnatury - + Algorithm band weight Wagi kanałów - + Signature threshold Próg sygnatur - + LCS threshold Próg LCS - + Landsat Landsat - + Sentinel-2 Sentinel-2 - + ASTER ASTER - + Clip multiple rasters Przytnij wiele rastrów - + Split raster bands Rozdziel kanały rastra @@ -5779,67 +5809,67 @@ Chcesz dodać wymagane pola do tego shapefile? PCA - + Vector to raster Wektor na raster - + Accuracy Dokładność - + Land cover change Zmiana pokrycia terenu - + Classification report Raport klasyfikacji - + Classification to vector Klasyfikacja do wektora - + Reclassification Reklasyfikacja - + Edit raster Edycja rastra - + Classification sieve Klasyfikacja (sieve) - + Classification erosion Klasyfikacja (erosion) - + Classification dilation Klasyfikacja (dilation) - + About O wtyczce - + Interface Interfejs - + Debug Śledź błędy @@ -5919,27 +5949,27 @@ Chcesz dodać wymagane pola do tego shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5954,7 +5984,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Download products @@ -6034,12 +6064,12 @@ Chcesz dodać wymagane pola do tego shapefile? - + Sentinel-3 Sentinel-3 - + SCP: completed process @@ -6109,7 +6139,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Mosaic band sets @@ -6134,7 +6164,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Band combination @@ -6144,7 +6174,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Band processing @@ -6159,22 +6189,22 @@ Chcesz dodać wymagane pola do tego shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6184,7 +6214,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6279,7 +6309,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Band set list @@ -6314,7 +6344,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Sentinel-1 Sentinel-1 @@ -6324,7 +6354,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Zonal stat raster @@ -6349,7 +6379,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Processing setting @@ -6364,7 +6394,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Random forest @@ -6394,7 +6424,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Reproject raster bands @@ -6454,27 +6484,27 @@ Chcesz dodać wymagane pola do tego shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6484,7 +6514,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + Random forest classification @@ -6514,12 +6544,12 @@ Chcesz dodać wymagane pola do tego shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6529,22 +6559,22 @@ Chcesz dodać wymagane pola do tego shapefile? Obróbka obrazu - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6574,7 +6604,7 @@ Chcesz dodać wymagane pola do tego shapefile? - + GOES @@ -6594,12 +6624,12 @@ Chcesz dodać wymagane pola do tego shapefile? - + Support the SCP - + Help @@ -6868,5 +6898,15 @@ Chcesz dodać wymagane pola do tego shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_pt.ts b/i18n/semiautomaticclassificationplugin_pt.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_pt.ts +++ b/i18n/semiautomaticclassificationplugin_pt.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_pt_BR.ts b/i18n/semiautomaticclassificationplugin_pt_BR.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_pt_BR.ts +++ b/i18n/semiautomaticclassificationplugin_pt_BR.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_uk_UA.ts b/i18n/semiautomaticclassificationplugin_uk_UA.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_uk_UA.ts +++ b/i18n/semiautomaticclassificationplugin_uk_UA.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/i18n/semiautomaticclassificationplugin_zh_CN.ts b/i18n/semiautomaticclassificationplugin_zh_CN.ts index f8894d1..31216f5 100644 --- a/i18n/semiautomaticclassificationplugin_zh_CN.ts +++ b/i18n/semiautomaticclassificationplugin_zh_CN.ts @@ -622,2835 +622,2835 @@ p, li { white-space: pre-wrap; } - + Semi-Automatic Classification Plugin - + <html><head/><body><p>Preprocess images</p></body></html> - + Preprocess images - + <html><head/><body><p>Load images in QGIS after download</p></body></html> - + Load bands in QGIS - + <html><head/><body><p>Download images from list only if the corresponding previews are loaded in QGIS</p></body></html> - + Only if preview in Layers - + <html><head/><body><p><span >Run</span></p></body></html> - + Import library - + <html><head/><body><p>Export download links to a text file</p></body></html> - + <html><head/><body><p>Set area in the map</p></body></html> - + <html><head/><body><p>Lower right X</p></body></html> - + <html><head/><body><p>Lower right Y</p></body></html> - + <html><head/><body><p>Upper left X</p></body></html> - + <html><head/><body><p>Upper left Y</p></body></html> - + <html><head/><body><p>Show / hide area</p></body></html> - + Show - + <html><head/><body><p>Find images</p></body></html> - + Find - + yyyy-MM-dd - + Max cloud cover (%) - + to - + Date from - + <html><head/><body><p>Maximum cloud cover percentage</p></body></html> - + Filter - + <html><head/><body><p>Filter images</p></body></html> - + <html><head/><body><p >Delete row</p></body></html> - + Plot - + <html><head/><body><p>Display preview of highlighted images in map</p></body></html> - + <html><head/><body><p><span >Reset</span></p></body></html> - + AcquisitionDate - + CloudCover - + min_lat - + min_lon - + max_lat - + max_lon - + Preview - + Download options - + <html><head/><body><p >Select all</p></body></html> - + <html><head/><body><p>If checked, remember user name and password locally in QGIS</p></body></html> - + remember - + <html><head/><body><p>Password</p></body></html> - + Password - + <html><head/><body><p>User name</p></body></html> - + User - + <html><head/><body><p>Login Sentinels</p></body></html> - + Service - + Sentinel-2 bands - + Multiple ROI creation - + <html><head/><body><p align="justify">Minimum distance between points</p></body></html> - + <html><head/><body><p align="justify">Size of a grid cell within points are created randomly</p></body></html> - + Create points - + Number of points - + <html><head/><body><p align="justify">Number of points created randomly</p></body></html> - + <html><head/><body><p>Create points</p></body></html> - + <html><head/><body><p>Create random points with a minimum distance</p></body></html> - + min distance - + <html><head/><body><p>Create random points inside each cell of a grid with this size</p></body></html> - + inside grid - + Point coordinates and ROI definition - + X - + Y - + MC ID - + C ID - + Min - + Max - + Dist - + Rapid ROI band - + <html><head/><body><p >Add row</p></body></html> - + <html><head/><body><p >Export point list to text file</p></body></html> - + <html><head/><body><p >Import point list from text file</p></body></html> - + <html><head/><body><p>Add ROI spectral signatures to signature list</p></body></html> - + Calculate sig. - + Run - + Import signatures - + Import library file - + <html><head/><body><p>Select a file: SCP file (*.scp) ; USGS library (*.asc) ; ASTER library (*.txt) ; CSV (*.csv)</p></body></html> - + <html><head/><body><p><span >Open a file</span></p></body></html> - + <html><head/><body><p>Open a file</p></body></html> - + C ID field - + MC ID field - + <html><head/><body><p>Add ROI spectral signature to signature list</p></body></html> - + Download USGS Spectral Library - + <html><head/><body><p>Select a chapter</p></body></html> - + <html><head/><body><p>Select a library</p></body></html> - + Import spectral library - + <html><head/><body><p>Import spectral library</p></body></html> - + Library Description (requires internet connection) - + Export signatures - + Export - + <html><head/><body><p>Export as CSV file (.csv)</p></body></html> - + <html><head/><body><p>Export as SCP file (*.scp)</p></body></html> - + <html><head/><body><p >Export highlighted spectral signatures</p></body></html> - + <html><head/><body><p>Select a directory where highlighted spectral signatures are saved as .csv</p></body></html> - + Algorithm band weight - + Band name - + <html><head/><body><p >Reset</p></body></html> - + <html><head/><body><p >Set</p></body></html> - + Set weight - + <html><head/><body><p>Set a value</p></body></html> - + Automatic weight - + MD Threshold - + ML Threshold - + SAM Threshold - + Set threshold = σ * - + <html><head/><body><p>Set a value that will be multiplied by standard deviation</p></body></html> - + <html><head/><body><p>Set automatic threshold σ</p></body></html> - + Set threshold - + Automatic thresholds - + LCS threshold - + Color [overlap MC_ID-C_ID] - + <html><head/><body><p >Add highlighted signatures to spectral signature plot</p></body></html> - + Min Max - + <html><head/><body><p>Set automatic threshold Min Max</p></body></html> - + σ * - + From pixel - + <html><head/><body><p>Activate pointer for setting thresholds from pixel</p></body></html> - + <html><head/><body><p>If checked, signature threshold is extended to include pixel signature</p></body></html> - + <html><head/><body><p>If checked, signature threshold is reduced to exclude pixel signature</p></body></html> - + From ROI - + <html><head/><body><p>Set thresholds from temporary ROI</p></body></html> - + RGB list - + <html><head/><body><p>Sort RGB automatically</p></body></html> - + <html><head/><body><p>Move highlighted RGB down</p></body></html> - + <html><head/><body><p>Move highlighted RGB up</p></body></html> - + <html><head/><body><p>Export RGB list to text file</p></body></html> - + <html><head/><body><p>Import RGB list from text file</p></body></html> - + RGB - + Automatic RGB - + Band combinations - + <html><head/><body><p>Add all combinations of bands</p></body></html> - + Preprocessing - + Landsat - + Directory containing Landsat bands - + Landsat conversion to TOA reflectance and brightness temperature - + <html><head/><body><p>Enable/Disable calculation of temperature in Celsius from thermal band</p></body></html> - + Brightness temperature in Celsius - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction (thermal band is not corrected)</p></body></html> - + Apply DOS1 atmospheric correction - + <html><head/><body><p>No data value</p></body></html> - + <html><head/><body><p >Select a directory</p></body></html> - + <html><head/><body><p>Perform pan-sharpening (Brovey Transform)</p></body></html> - + Perform pansharpening (Landsat 7 or 8) - + <html><head/><body><p>Create the Band set automatically and use the checked Band set tools</p></body></html> - + Create Band set and use Band set tools - + <html><head/><body><p>Edit metadata</p></body></html> - + Band - + RADIANCE_MULT - + RADIANCE_ADD - + REFLECTANCE_MULT - + REFLECTANCE_ADD - + RADIANCE_MAXIMUM - + REFLECTANCE_MAXIMUM - + K1_CONSTANT - + K2_CONSTANT - + LMAX - + LMIN - + QCALMAX - + QCALMIN - + Satellite - + Sun elevation - + <html><head/><body><p>DATE ACQUIRED</p></body></html> - + Date (YYYY-MM-DD) - + Earth sun distance - + <html><head/><body><p>SUN ELEVATION</p></body></html> - + <html><head/><body><p>Earth sun distance</p></body></html> - + Metadata - + <html><head/><body><p>Satellite (e.g. LANDSAT8)</p></body></html> - + Sentinel-2 - + Directory containing Sentinel-2 bands - + <html><head/><body><p>Enable/Disable the DOS1 atmospheric correction</p></body></html> - + Sentinel-2 conversion - + Quantification value - + Solar irradiance - + <html><head/><body><p>Satellite (e.g. Sentinel-2A)</p></body></html> - + ASTER - + ASTER conversion to TOA reflectance and brightness temperature - + Select file ASTER L1T (.hdf) - + UnitConversionCoeff - + PixelSize - + UTM zone - + <html><head/><body><p>UTM zone</p></body></html> - + UPPERLEFTM - + Clip multiple rasters - + <html><head/><body><p >Refresh list</p></body></html> - + Clip coordinates - + <html><head/><body><p>Use temporary ROI boundaries for clipping rasters</p></body></html> - + Use temporary ROI for clipping - + <html><head/><body><p>NoData value</p></body></html> - + <html><head/><body><p>Output name prefix</p></body></html> - + clip - + Output name prefix - + Split raster bands - + <html><head/><body><p>Select the image to be split</p></body></html> - + Select a multiband raster - + split - + PCA - + Input - + <html><head/><body><p>If checked, calculate this number of components only</p></body></html> - + Number of components - + <html><head/><body><p>Number of components</p></body></html> - + Output - + Vector to raster - + Select the vector - + <html><head/><body><p>Select the vector</p></body></html> - + <html><head/><body><p>Use the value field of the vector</p></body></html> - + Use the value field of the vector - + <html><head/><body><p>Select the value field</p></body></html> - + <html><head/><body><p>Use constant value</p></body></html> - + Use constant value - + <html><head/><body><p>Value</p></body></html> - + Select the type of conversion - + <html><head/><body><p>Select the type of conversion</p></body></html> - + Select the reference raster - + <html><head/><body><p>Select the reference raster</p></body></html> - + Postprocessing - + Accuracy - + Select the classification to assess - + <html><head/><body><p>Select the classification to assess</p></body></html> - + <html><head/><body><p>Select the field of the classification code </p></body></html> - + Land cover change - + <html><head/><body><p align="justify">If enabled, pixels having the same values in both classifications will be reported; if not enabled, 0 value is set for unchanged pixels</p></body></html> - + Report unchanged pixels - + <html><head/><body><p>Select the reference classification raster</p></body></html> - + Select the new classification - + Select the reference classification - + <html><head/><body><p>Select a new raster to be compared with the reference raster</p></body></html> - + Classification report - + <html><head/><body><p>Select the classification raster</p></body></html> - + Select the classification - + Classification to vector - + <html><head/><body><p>Use the codes from Signature list table for vector symbology</p></body></html> - + Use code from Signature list - + <html><head/><body><p>Select the code field</p></body></html> - + C_ID - + MC_ID - + Symbology - + Reclassification - + <html><head/><body><p>Calculate unique values</p></body></html> - + <html><head/><body><p>Enable this for reclassification from C ID to MC ID; if checked, unique values are calculated from the Signature list, setting old value C ID and new value MC ID</p></body></html> - + calculate C ID to MC ID values - + Calculate unique values - + Values - + Old value - + New value - + Edit raster - + <html><head/><body><p>Undo edit (only for ROI polygons)</p></body></html> - + Select the input raster - + <html><head/><body><p>Select the raster to edit</p></body></html> - + <html><head/><body><p>Use expression</p></body></html> - + Use expression - + <html><head/><body><p>Enter expression</p></body></html> - + where(raster == 1, 2, raster) - + Edit raster values - + <html><head/><body><p>Edit values using a vector</p></body></html> - + Edit values using a vector - + <html><head/><body><p>Edit values using temporary ROIs</p></body></html> - + Edit values using ROI polygons - + Edit options - + Classification sieve - + <html><head/><body><p>Select the classification</p></body></html> - + Size threshold - + <html><head/><body><p>Size threshold in pixels</p></body></html> - + Pixel connection - + <html><head/><body><p>Pixel connection</p></body></html> - + 4 - + 8 - + Classification erosion - + Size in pixels - + <html><head/><body><p>Size in pixels</p></body></html> - + Class values - + <html><head/><body><p>Enter class values separated by , or -</p></body></html> - + Classification dilation - + Band calc - + Band list - + Expression - + <html><head/><body><p>Not equals</p></body></html> - + != - + <html><head/><body><p>Equals</p></body></html> - + == - + <html><head/><body><p>Multiplication</p></body></html> - + * - + <html><head/><body><p>Power</p></body></html> - + ^ - + <html><head/><body><p>Minus</p></body></html> - + - - + <html><head/><body><p>Plus</p></body></html> - + + - + <html><head/><body><p>Division</p></body></html> - + / - + <html><head/><body><p>Close parenthesis</p></body></html> - + ) - + <html><head/><body><p>Square root</p></body></html> - + - + <html><head/><body><p>Open parenthesis</p></body></html> - + ( - + <html><head/><body><p>Greater than</p></body></html> - + > - + <html><head/><body><p>Less than</p></body></html> - + < - + <html><head/><body><p>Enter an expression (e.g. &quot;raster1&quot; + &quot;raster2&quot; )</p></body></html> - + Decision rules - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. &quot;raster1&quot; &gt; 0; &quot;raster2&quot; &gt; 0 )</p></body></html> - + Value - + Rule - + <html><head/><body><p>Move highlighted rule up</p></body></html> - + <html><head/><body><p>Import rules from text file</p></body></html> - + <html><head/><body><p>Export rules to text file</p></body></html> - + <html><head/><body><p>Move highlighted rule down</p></body></html> - + <html><head/><body><p>Band list</p></body></html> - + Variable - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the output raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the extent of selected raster</p></body></html> - + Same as - + <html><head/><body><p>Select a raster</p></body></html> - + <html><head/><body><p>If checked, the extent of raster ouput equals the intersection of input rasters</p></body></html> - + Intersection - + Extent: - + Output raster - + Band set - + <html><head/><body><p>Add band to Band set</p></body></html> - + Band set definition - + <html><head/><body><p>Sort bands by name (priority to ending number)</p></body></html> - + <html><head/><body><p>Move highlighted band down</p></body></html> - + <html><head/><body><p>Move highlighted band up</p></body></html> - + <html><head/><body><p>Export band set to text file</p></body></html> - + <html><head/><body><p>Import band set from text file</p></body></html> - + <html><head/><body><p>Select a configuration for setting band center wavelengths</p></body></html> - + <html><head/><body><p>Wavelength unit</p></body></html> - + Create virtual raster of band set - + <html><head/><body><p>Calculate expression in Band calc</p></body></html> - + Band calc expressions - + Build band overviews - + Band set tools - + Batch - + <html><head/><body><p>Enter a batch function</p></body></html> - + Functions - + <html><head/><body><p>Import batch from text file</p></body></html> - + <html><head/><body><p>Export batch to text file</p></body></html> - + Settings - + Interface - + Field names of training input - + <html><head/><body><p>Set the Class ID field name</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass ID field name</p><p>[max 10 characters]</p></body></html> - + ROI style - + <html><head/><body><p>Select temporary ROI color</p></body></html> - + ROI color - + Transparency - + <html><head/><body><p>Change temporary ROI transparency</p></body></html> - + Variable name - + <html><head/><body><p>Variable name for expressions</p></body></html> - + raster - + Variable name for expressions (tab Reclassification and Edit raster) - + Group name - + <html><head/><body><p>Group name</p></body></html> - + Class_temp_group - + Dock - + <html><head/><body><p>If checked, news about the SCP are downloaded on startup and displayed in Dock</p></body></html> - + Download news on startup - + Processing - + <html><head/><body><p>Enable/Disable the sound when the process is finished</p></body></html> - + Play sound when finished - + <html><head/><body><p>If checked, create virtual rasters for certain temporary files</p></body></html> - + Use virtual raster for temp files - + <html><head/><body><p>If checked, a lossless compression is applied to rasters in order to save disk space</p></body></html> - + Raster compression - + <html><head/><body><p>Set available RAM for processes</p></body></html> - + Available RAM (MB) - + <html><head/><body><p>Reset to default temporary directory</p></body></html> - + Temporary directory - + Debug - + <html><head/><body><p>Enable/Disable the Log of events</p></body></html> - + Record events in a Log file - + <html><head/><body><p>Export the Log file</p></body></html> - + <html><head/><body><p>Clear the Log file content</p></body></html> - + Log file - + <html><head/><body><p>Test dependencies</p></body></html> - + Test dependencies - + Test - + About - + Align - + Results - + <html><head/><body><p>Maximum number of results (images)</p></body></html> - + Cross classification - + Ancillary data - + MODIS - + MODIS conversion - + Select file MODIS (.hdf) - + ID - + <html><head/><body><p>Reproject bands to WGS 84</p></body></html> - + Reproject to WGS 84 - + Products - + <html><head/><body><p>Select a product</p></body></html> - + Stack raster bands - + Select metadata file (MTD_MSI) - + Product - + Login data - + Search - + Search parameters - + Product list - + ProductID - + Zone/Path - + Collection/Size - + Collection/ID - + Collection/Image - + Download products - + Row/DayNight - + <html><head/><body><p>Export table to text file</p></body></html> - + <html><head/><body><p>Import table from text file</p></body></html> - + X (Lon) - + LR - + UL - + Y (Lat) - + Date - + Function - + Message - + Number of classes - + <html><head/><body><p>Threshold</p></body></html> - + <html><head/><body><p>Number of classes</p></body></html> - + <html><head/><body><p>Set the maximum number of iterations</p></body></html> - + Max number of iterations - + Distance algorithm - + Minimum Distance - + Spectral Angle Mapping - + <html><head/><body><p>Use vector boundaries for clipping rasters</p></body></html> - + Use vector for clipping - + <html><head/><body><p>Select the vector for clipping</p></body></html> - + <html><head/><body><p>If checked, use signatures in Signature list as seed signatures</p></body></html> - + Use Signature list as seed signatures - + <html><head/><body><p>If checked, save the resulting signatures to Signature list</p></body></html> - + Save resulting signatures to Signature list - + Clustering - + <html><head/><body><p>If checked, calculate seed signatures from random pixels</p></body></html> - + Use random seed signatures - + <html><head/><body><p>If checked, calculate seed signatures from minimum and maximum values of bands</p></body></html> - + Seed signatures from band values - + Seed signatures - + <html><head/><body><p>Minimum class size in pixels</p></body></html> - + <html><head/><body><p>If checked, use ISODATA</p></body></html> - + ISODATA - + Distance threshold - + <html><head/><body><p>If checked, for K-means: iteration is terminated if distance is lower than threshold; for ISODATA: signatures are merged if distance is greater than threshold</p></body></html> - + ISODATA max standard deviation - + <html><head/><body><p>If checked, use K-means</p></body></html> - + ISODATA minimum class size in pixels - + <html><head/><body><p>If checked, use Minimum Distance algorithm</p></body></html> - + <html><head/><body><p>If checked, use Spectral Angle Mapping algorithm (only for K-means)</p></body></html> - + Method - + 6 - + 1 - + 3 - + 2 - + 11 - + 5 - + 7 - + 8A - + 9 - + 10 - + 12 - + 16 - + Sentinel-3 bands - + 20 - + 17 - + 14 - + 13 - + 19 - + 15 - + 21 - + 18 - + SMTP server - + password - + <html><head/><body><p>Enable/Disable the sending of email of completed process</p></body></html> - + Send email of completed process to - + SMTP process notification - + user - + <html><head/><body><p>A list of addresses (separated by comma , ) to send this mail to </p></body></html> - + RUN - + <html><head/><body><p>Add a new band set</p></body></html> - + <html><head/><body><p>Create a virtual raster of active band set</p></body></html> - + <html><head/><body><p>Create a .tif raster stacking the bands of the active band set</p></body></html> - + <html><head/><body><p>Build band overviews (external pyramids) of active band set for faster visualization</p></body></html> - + <html><head/><body><p>Create a new band set where bands are added</p></body></html> - + Add bands in a new Band set - + Mosaic band sets - + <html><head/><body><p>List of band set numbers separated by comma ,</p></body></html> - + 1, 2 - + mosaic - + Select input band set - + Band combination - + <html><head/><body><p>Band set number</p></body></html> - + Select the reference vector or raster - + Vector field - + <html><head/><body><p>Select the reference vector or raster</p></body></html> - + <html><head/><body><p>Select the vector field</p></body></html> - + <html><head/><body><p>If checked, clip iterating through each vector polygon and add field value to the output name</p></body></html> - + Use vector field for output name - + Stack band set - + Spectral distance of band sets - + Select first input band set - + Select second input band set - + <html><head/><body><p>If checked, calculate a raster of changes where distance is above threshold</p></body></html> - + Spectral distance - + Band processing - + Class signature - + Basic tools - + Cloud masking - + mask - + <html><head/><body><p>If checked, create a buffer for class values</p></body></html> - + Mask class values - + &K-means - + <html><head/><body><p>Select MTL file (if not in Landsat directory)</p></body></html> - + Select MTL file - + Use buffer of pixel size - + Create random points - + Signature threshold - + Automatic thresholds - + LC Signature threshold - + Convert vector to raster - + Clip band set - + Split raster bands - + Mosaic of band sets - + Band set list - + Mask of band set - + Combination of band values - + Principal Components Analysis of band set - + Clustering of band set - + Accuracy assessment - + Land cover change - + Classification report - + Cross classification - + Class signature - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + Multiband image list - + <html><head/><body><p>Select a multiband image</p></body></html> - + <html><head/><body><p>Select all / Unselect all</p></body></html> - + Single band list - + Select input band set (of classifications) - + Signature threshold - + <html><head/><body><p><span style=" color:#ffffff;"> Download</span></p></body></html> - + Sentinel-3 - + Sentinel-3 conversion - + Directory containing Sentinel-3 bands - + <html><head/><body><p>Satellite (e.g. Sentinel-3A)</p></body></html> - + 6 (Landsat 1-8) - + 4 (Landsat 1-8) - + 1 (Landsat 4-8) - + 3 (Landsat 4-8) - + 2 (Landsat 4-8) - + 11 (Landsat 8) - + 5 (Landsat 1-8) - + Landsat bands - + 8 (Landsat 7, 8) - + 10 (Landsat 8) - + 9 (Landsat 8) - + 7 (Landsat 1-8) - + <html><head/><body><p>Add OpenStreetMap to the map</p></body></html> - + <html><head/><body><p><span style=" color:#000000;">Add OpenStreetMap to the map</span></p></body></html> - + <html><head/><body><p>(© <a href="http://www.openstreetmap.org/copyright"><span style=" text-decoration: underline; color:#0000ff;">OpenStreetMap</span></a> contributors. The cartography is licensed as CC BY-SA. <a href="https://operations.osmfoundation.org/policies/tiles/"><span style=" text-decoration: underline; color:#0000ff;">Tile Usage Policy</span></a>)</p></body></html> - + stratified for the values - + of first band of band set - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3459,775 +3459,775 @@ p, li { white-space: pre-wrap; } - + raster > 0 - + <html><head/><body><p>Enter one or more rules separated by semicolon (e.g. raster &gt; 0; raster == 1 )</p></body></html> - + <html><head/><body><p>Create stratified random points</p></body></html> - + <html><head/><body><p>Service</p></body></html> - + <html><head/><body><p>Filter</p></body></html> - + Advanced search - + <html><head/><body><p>If checked, input NoData pixels will be evaluated as regular values</p></body></html> - + Bands - + Number - + <html><head/><body><p>Move highlighted Band sets down</p></body></html> - + <html><head/><body><p>Move highlighted Band sets up</p></body></html> - + <html><head/><body><p>Export Band set list to file</p></body></html> - + <html><head/><body><p>Import Band set list from file</p></body></html> - + System - + CPU threads - + <html><head/><body><p>Select a type</p></body></html> - + Float32 - + Int16 - + Byte - + Preprocess bands 1, 9, 10 - + Create raster of band set (stack bands) - + Input NoData as value - + Sentinel-1 - + Sentinel-1 conversion (ESA SNAP software required) - + Sentinel-1 file - + Select SNAP xml graph (optional) - + Polarization - + <html><head/><body><p>Select VH polarization</p></body></html> - + VH - + <html><head/><body><p>Select VV polarization</p></body></html> - + VV - + <html><head/><body><p>If checked, convert to dB</p></body></html> - + convert to dB - + <html><head/><body><p>Path to the GPT executable (e.g. C:\Program Files\snap\bin\gpt.exe)</p></body></html> - + <html><head/><body><p>If checked, project the output to the same projection as selected Band set</p></body></html> - + Raster projection as Band set - + External programs - + <html><head/><body><p><a href="https://step.esa.int/main/download/snap-download/"><span style=" text-decoration: underline; color:#0000ff;">ESA SNAP GPT executable</span></a></p></body></html> - + <html><head/><body><p>Open a text file to add custom functions</p></body></html> - + Zonal stat rasters - + <html><head/><body><p>Select a statistic</p></body></html> - + Select a statistic - + <html><head/><body><p>Enter a value</p></body></html> - + Statistic - + BATCH - + Project - + <html><head/><body><p>If checked, an RGB composite of the active band set is created when a previous project is loaded</p></body></html> - + Create RGB composite of band set when a project is loaded - + Zonal stat raster - + User manual - + Support the SCP - + Use - + <html><head/><body><p>Use the ID of macroclasses for the classification</p></body></html> - + <html><head/><body><p>Use the ID of classes for the classification</p></body></html> - + <html><head/><body><p>Open tab Algorithm band weight</p></body></html> - + W - + <html><head/><body><p>Select a classification algorithm</p></body></html> - + Maximum Likelihood - + Algorithm - + <html><head/><body><p>Set a classification threshold for all signatures</p></body></html> - + <html><head/><body><p>Open tab Signature threshold</p></body></html> - + Threshold - + Classification - + <html><head/><body><p>If checked, the Land Cover Signature Classification is used</p></body></html> - + LCS - + <html><head/><body><p>Open tab LCS threshold</p></body></html> - + <html><head/><body><p>If checked, the selected Algorithm is used only for class overlapping pixels of the Land Cover Signature Classification</p></body></html> - + only overlap - + Land Cover Signature Classification - + <html><head/><body><p>If checked, the selected Algorithm is used for unclassified pixels of the Land Cover Signature Classification</p></body></html> - + Algorithm - + Classification output - + Load qml style - + <html><head/><body><p><span >Select qml style</span></p></body></html> - + <html><head/><body><p>Qml file path</p></body></html> - + <html><head/><body><p>Select an optional mask vector</p></body></html> - + Apply mask - + <html><head/><body><p>Path of the optional mask shapefile</p></body></html> - + <html><head/><body><p>Create a classification shapefile after the classification process</p></body></html> - + Create vector - + <html><head/><body><p>Calculate a classification report</p></body></html> - + <html><head/><body><p>If enabled, the rasters calculated by the classification algorithm (one per signature) are saved along with the classification</p></body></html> - + Save algorithm files - + Processing setting - + Help - + Tool - + Random forest - + Random Forest classification (ESA SNAP software required) - + <html><head/><body><p>Number of training samples</p></body></html> - + Number of trees - + Number of training samples - + <html><head/><body><p>Evaluate classifier</p></body></html> - + Evaluate classifier - + Evaluate feature power set - + Save classifier - + Load classifier - + <html><head/><body><p>Select a previosly saved classifier</p></body></html> - + <html><head/><body><p>Classifier file path</p></body></html> - + Reproject raster bands - + Reproject raster bands - + Use EPSG code - + reproj - + <html><head/><body><p>Use EPSG value</p></body></html> - + <html><head/><body><p>EPSG value</p></body></html> - + <html><head/><body><p>X resolution</p></body></html> - + <html><head/><body><p>Y resolution</p></body></html> - + <html><head/><body><p>Align to raster</p></body></html> - + Align to raster - + <html><head/><body><p>Keep the same extent as the reference raster</p></body></html> - + same extent as reference - + Y resolution - + X resolution - + <html><head/><body><p>NoData value of the output raster</p></body></html> - + Int32 - + UInt32 - + UInt16 - + <html><head/><body><p>If checked, set a scale</p></body></html> - + <html><head/><body><p>Scale</p></body></html> - + <html><head/><body><p>If checked, set an offset</p></body></html> - + Output NoData value - + Set scale - + Set offset - + Calculation process - + Resampling method - + average - + sum - + maximum - + minimum - + mode - + median - + nearest_neighbour - + first_quartile - + third_quartile - + <html><head/><body><p>If checked, new pixel size is original pixel size times this factor</p></body></html> - + Resample pixel factor - + <html><head/><body><p>Resample factor</p></body></html> - + <html><head/><body><p>Select the resampling method</p></body></html> - + Output type - + Auto - + <html><head/><body><p>If checked, change output NoData value</p></body></html> - + Change output NoData value - + <html><head/><body><p>If checked, the polygons are dissolved to avoid discontinuity between processed blocks (slower)</p></body></html> - + Dissolve output - + Wavelength unit - + Wavelength quick settings - + Use value as NoData - + Use value as NoData - + <html><head/><body><p>Function to Batch</p></body></html> - + <html><head/><body><p>Check batch function</p></body></html> - + <html><head/><body><p>Set incremental new values</p></body></html> - + Incremental new values - + CHECK - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4236,7 +4236,7 @@ p, li { white-space: pre-wrap; } - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -4259,247 +4259,277 @@ p, li { white-space: pre-wrap; } - + <html><head/><body><p>If checked, the output raster is compared to output calculation to avoid writing errors. It could slightly slow the process.</p></body></html> - + Enable writing verification - + <html><head/><body><p>Login Landsat (<a href="https://ers.cr.usgs.gov"><span style=" text-decoration: underline; color:#ffffff;">https://ers.cr.usgs.gov</span></a>)</p></body></html> - + <html><head/><body><p>Login ASTER and MODIS (<a href="https://urs.earthdata.nasa.gov"><span style=" text-decoration: underline; color:#ffffff;">https://urs.earthdata.nasa.gov</span></a>)</p></body></html> - + Earth sun distance - + Date (YYYYMMDD) - + <html><head/><body><p>Upper left</p></body></html> - + LOWERRIGHTM - + <html><head/><body><p>Lower right</p></body></html> - + Output NoData value - + <html><head/><body><p>If checked, pixels equal to NoData value will be excluded from the report</p></body></html> - + C Name field - + <html><head/><body><p>Set the Class name field</p><p>[max 10 characters]</p></body></html> - + <html><head/><body><p>Set the Macroclass name field</p><p>[max 10 characters]</p></body></html> - + MC Name field - + GOES bands - + GOES conversion - + Directory containing GOES bands - + MC Name - + C Name - + GOES - + <html><head/><body><p>Set the number of CPU threads </p></body></html> - + <html><head/><body><p>Number of trees</p></body></html> - + <html><head/><body><p>If checked, evaluate feature power set</p></body></html> - + <html><head/><body><p>Minumum power</p></body></html> - + <html><head/><body><p>Maximum power</p></body></html> - + <html><head/><body><p>If checked, save classifier</p></body></html> - + Import vector - + <html><head/><body><p>Select a vector (*.shp;*.gpkg)</p></body></html> - + <html><head/><body><p>C ID field</p></body></html> - + <html><head/><body><p>MC ID field</p></body></html> - + <html><head/><body><p>MC Name field</p></body></html> - + <html><head/><body><p>C Name field</p></body></html> - + Vector fields - + Import vector - + <html><head/><body><p>Import vector</p></body></html> - + <html><head/><body><p>USGS Spectral Library Version 7 downloaded from <a href="https://crustal.usgs.gov/speclab/QueryAll07a.php"><span style=" text-decoration: underline; color:#0000ff;">https://crustal.usgs.gov/speclab/QueryAll07a.php</span></a>.<br/><span style=" font-weight:600;">Reference</span>: Kokaly, R.F., Clark, R.N., Swayze, G.A., Livo, K.E., Hoefen, T.M., Pearson, N.C., Wise, R.A., Benzel, W.M., Lowers, H.A., Driscoll, R.L., and Klein, A.J., 2017, USGS Spectral Library Version 7: U.S. Geological Survey Data Series 1035, 61 p., https://doi.org/10.3133/ds1035.</p></body></html> - + Python executable path - + <html><head/><body><p>Path to the Python executable (e.g. /usr/local/bin/python3)</p></body></html> - + <html><head/><body><p>Path to the GDAL directory containing tools such as gdal_translate and gdalwarp (e.g. /usr/bin)</p></body></html> - + GDAL installation directory - + <html><head/><body><p>Use the same extent as reference raster</p></body></html> - + Same extent as reference raster - + <html><head/><body><p>Import reclassification table from text file</p></body></html> - + <html><head/><body><p>Export reclassification table to text file</p></body></html> - + <html><head/><body><p>Export as shapefile (*.shp) or geopackage (*.gpkg)</p></body></html> - + <html><head/><body><p>If checked, use alternative search for Sentinel-2 (no authentication required)</p></body></html> - + Use alternative search for Sentinel-2 (no authentication required) + + + Matrix file (optional) + + + + + neighbor + + + + + Neighbor pixels + + + + + Neighbor pixels + + + + + Neighbor distance in pixels + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + SpectralSignaturePlot @@ -4920,17 +4950,17 @@ Do you want to add the required fields to this shapefile? - + Band set - + Preprocessing - + Postprocessing @@ -4940,12 +4970,12 @@ Do you want to add the required fields to this shapefile? - + Spectral plot - + Scatter plot @@ -4955,17 +4985,17 @@ Do you want to add the required fields to this shapefile? - + Settings - + User manual - + Online help @@ -5415,12 +5445,12 @@ Do you want to add the required fields to this shapefile? - + Build overviews - + Do you want to build the external overviews of bands? @@ -5715,57 +5745,57 @@ Do you want to add the required fields to this shapefile? - + Multiple ROI creation - + Import signatures - + Export signatures - + Algorithm band weight - + Signature threshold - + LCS threshold - + Landsat - + Sentinel-2 - + ASTER - + Clip multiple rasters - + Split raster bands @@ -5775,67 +5805,67 @@ Do you want to add the required fields to this shapefile? - + Vector to raster - + Accuracy - + Land cover change - + Classification report - + Classification to vector - + Reclassification - + Edit raster - + Classification sieve - + Classification erosion - + Classification dilation - + About - + Interface - + Debug @@ -5915,27 +5945,27 @@ Do you want to add the required fields to this shapefile? - + Cross classification - + Show plugin - + MODIS - + Stack raster bands - + Please, restart QGIS for executing the Semi-Automatic Classification Plugin @@ -5950,7 +5980,7 @@ Do you want to add the required fields to this shapefile? - + Download products @@ -6030,12 +6060,12 @@ Do you want to add the required fields to this shapefile? - + Sentinel-3 - + SCP: completed process @@ -6105,7 +6135,7 @@ Do you want to add the required fields to this shapefile? - + Mosaic band sets @@ -6130,7 +6160,7 @@ Do you want to add the required fields to this shapefile? - + Band combination @@ -6140,7 +6170,7 @@ Do you want to add the required fields to this shapefile? - + Band processing @@ -6155,22 +6185,22 @@ Do you want to add the required fields to this shapefile? - + Class signature - + Basic tools - + Cloud masking - + missing parameter @@ -6180,7 +6210,7 @@ Do you want to add the required fields to this shapefile? - + Please restart QGIS for installing the Semi-Automatic Classification Plugin @@ -6275,7 +6305,7 @@ Do you want to add the required fields to this shapefile? - + Band set list @@ -6310,7 +6340,7 @@ Do you want to add the required fields to this shapefile? - + Sentinel-1 @@ -6320,7 +6350,7 @@ Do you want to add the required fields to this shapefile? - + Zonal stat raster @@ -6345,7 +6375,7 @@ Do you want to add the required fields to this shapefile? - + Processing setting @@ -6360,7 +6390,7 @@ Do you want to add the required fields to this shapefile? - + Random forest @@ -6390,7 +6420,7 @@ Do you want to add the required fields to this shapefile? - + Reproject raster bands @@ -6450,27 +6480,27 @@ Do you want to add the required fields to this shapefile? - + Calculating signature - + Writing file - + Conversion to vector - + Sieve - + Building overviews @@ -6480,7 +6510,7 @@ Do you want to add the required fields to this shapefile? - + Random forest classification @@ -6510,12 +6540,12 @@ Do you want to add the required fields to this shapefile? - + Remove rows - + Are you sure you want to remove highlighted rows from the table? @@ -6525,22 +6555,22 @@ Do you want to add the required fields to this shapefile? - + Error. Check Python Numpy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Scipy installation for the Semi-Automatic Classification Plugin - + Error. Check Python Matplotlib installation for the Semi-Automatic Classification Plugin - + DOS1 calculation @@ -6570,7 +6600,7 @@ Do you want to add the required fields to this shapefile? - + GOES @@ -6590,12 +6620,12 @@ Do you want to add the required fields to this shapefile? - + Support the SCP - + Help @@ -6864,5 +6894,15 @@ Do you want to add the required fields to this shapefile? Are you sure you want to redo? + + + Neighbor pixels + + + + + Region growing + + diff --git a/maininterface/batchTab.py b/maininterface/batchTab.py index 5b703b7..0f0d9a6 100644 --- a/maininterface/batchTab.py +++ b/maininterface/batchTab.py @@ -1802,6 +1802,96 @@ def performMosaicBandSets(self, paramList): return 'No', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'missing parameter') return 'Yes', parameters + # neighbor pixels band sets + def performNeighborPixels(self, paramList): + matrixSize = 'None' + file = 'None' + namePrefix = 'None' + statPerc = 'None' + parameters = [] + for p in paramList: + pSplit = p.split(':', 1) + pName = pSplit[0].lower().replace(' ', '') + # output directory inside ' ' + if pName == 'output_dir': + pSplitX = pSplit[1] + if cfg.workingDir is not None: + pSplitX = pSplitX.replace(cfg.workingDirNm, cfg.workingDir) + g = cfg.reSCP.findall('[\'](.*?)[\']',pSplitX.replace('\\', '/')) + if len(g[0]) > 0: + outputDir = '\'' + g[0] + '\'' + else: + return 'No', pName + # output name prefix inside ' ' + elif pName == 'output_name_prefix': + pSplitX = pSplit[1] + g = cfg.reSCP.findall('[\'](.*?)[\']',pSplitX.replace('\\', '/')) + namePrefix = '\'' + g[0] + '\'' + if len(cfg.utls.fileName(g[0])) > 0: + pass + else: + return 'No', pName + # band set number + elif pName == 'band_set': + try: + bandset = str(int(eval(pSplit[1].replace(' ', ''))) - 1) + except: + return 'No', pName + # input file path inside ' ' + elif pName == 'matrix_file_path': + pSplitX = pSplit[1] + if cfg.workingDir is not None: + pSplitX = pSplitX.replace(cfg.workingDirNm, cfg.workingDir) + g = cfg.reSCP.findall('[\'](.*?)[\']',pSplitX.replace('\\', '/')) + file = '\'' + g[0] + '\'' + if len(cfg.utls.fileName(g[0])) > 0: + pass + else: + return 'No', pName + # matrix size (int value) + elif pName == 'matrix_size': + try: + matrixSize = str(int(eval(pSplit[1].replace(' ', '')))) + except: + return 'No', pName + # statistic name inside ' ' + elif pName == 'statistic': + pSplitX = pSplit[1] + g = cfg.reSCP.findall('[\'](.*?)[\']',pSplitX.replace('\\', '/')) + if len(g[0]) > 0: + statName = None + for i in cfg.statisticList: + if i[0].lower() == g[0].lower(): + statName = '\'' + g[0] + '\'' + break + if statName is None: + return 'No', pName + else: + return 'No', pName + # stat value (int value) + elif pName == 'stat_value': + try: + statPerc = int(eval(pSplit[1].replace(' ', ''))) + except: + return 'No', pName + else: + if len(pName.strip()) > 0: + return 'No', pName + # append parameters + try: + # batch + parameters.append('\'Yes\'') + parameters.append(bandset) + parameters.append(outputDir) + parameters.append(matrixSize) + parameters.append(file) + parameters.append(statName) + parameters.append(statPerc) + parameters.append(namePrefix) + except: + return 'No', cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'missing parameter') + return 'Yes', parameters + # batch band calc def performBandCalc(self, paramList): extentRaster = 'None' diff --git a/maininterface/neighborpixelsTab.py b/maininterface/neighborpixelsTab.py new file mode 100644 index 0000000..f888536 --- /dev/null +++ b/maininterface/neighborpixelsTab.py @@ -0,0 +1,211 @@ +# -*- coding: utf-8 -*- +''' +/************************************************************************************************************************** + SemiAutomaticClassificationPlugin + + The Semi-Automatic Classification Plugin for QGIS allows for the supervised classification of remote sensing images, + providing tools for the download, the preprocessing and postprocessing of images. + + ------------------- + begin : 2012-12-29 + copyright : (C) 2012-2021 by Luca Congedo + email : ing.congedoluca@gmail.com +**************************************************************************************************************************/ + +/************************************************************************************************************************** + * + * This file is part of Semi-Automatic Classification Plugin + * + * Semi-Automatic Classification Plugin 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, + * version 3 of the License. + * + * Semi-Automatic Classification Plugin 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 + * Semi-Automatic Classification Plugin. If not, see . + * +**************************************************************************************************************************/ + +''' + + + +cfg = __import__(str(__name__).split('.')[0] + '.core.config', fromlist=['']) + +class NeighborPixels: + + def __init__(self): + pass + + # neighbor + def classNeighborAction(self): + self.classNeighbor() + + # matrix file + def inputMatrixFile(self): + m = cfg.utls.getOpenFileName(None , cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Select a XML file'), '', 'CSV file (*.csv);;Text file (*.txt)') + cfg.ui.label_287.setText(str(m)) + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), str(m)) + + # classification neighbor + def classNeighbor(self, batch = 'No', bandSetNumber = None, outputDirectory = None, size = None, structure = None, statName = None, statPerc = None, outputName = None): + if bandSetNumber is None: + bandSet = cfg.ui.band_set_comb_spinBox_15.value() + bandSetNumber = bandSet - 1 + if bandSetNumber >= len(cfg.bandSetsList): + cfg.mx.msgWar25(bandSetNumber + 1) + return 'No' + if batch == 'No': + o = cfg.utls.getExistingDirectory(None , cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Select a directory')) + else: + o = outputDirectory + if len(o) > 0: + if outputName is None: + outputName = cfg.ui.neighbor_output_name_lineEdit.text() + if len(outputName) > 0: + outputName = str(outputName.encode('ascii','replace'))[2:-1] + '_' + if batch == 'No': + cfg.uiUtls.addProgressBar() + # create list of rasters + try: + cfg.bandSetsList[bandSetNumber][0] + except: + if batch == 'No': + cfg.uiUtls.removeProgressBar() + cfg.mx.msgWar28() + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' Warning') + return 'No' + bndSetSources = [] + if cfg.bandSetsList[bandSetNumber][0] == 'Yes': + ckB = cfg.utls.checkBandSet(bandSetNumber) + bndSetSources = cfg.bndSetLst + else: + r = cfg.utls.selectLayerbyName(cfg.bandSetsList[bandSetNumber][8], 'Yes') + iR = cfg.utls.layerSource(r) + iBC = cfg.utls.getNumberBandRaster(iR) + for i in range(1, iBC+1): + bndNumberList.append(i) + tVRT = cfg.utls.createTempRasterPath('vrt') + bndSetSources.append(tVRT) + cfg.utls.createVirtualRaster(inputRasterList = [iR], output = tVRT, bandNumberList = [i], quiet = 'Yes') + if len(bndSetSources) == 0: + if batch == 'No': + cfg.uiUtls.removeProgressBar() + cfg.mx.msgWar28() + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' Error') + return 'No' + cfg.uiUtls.updateBar(10) + if size is None: + size = cfg.ui.class_neighbor_threshold_spinBox.value() + if statName is None: + statName = cfg.ui.statistic_name_combobox_2.currentText() + for i in cfg.statisticList: + if i[0].lower() == statName.lower(): + statNp = i[1] + if i[0].lower() == 'percentile': + if statPerc is None: + statPerc = cfg.ui.statistic_lineEdit_2.text() + try: + statPerc = int(statPerc) + break + except: + cfg.mx.msgErr66() + return 'No' + else: + break + if cfg.statPerc in statNp: + ee = statNp.replace('array', 'A') + try: + statPerc = int(statPerc) + ee = ee.replace(cfg.statPerc, str(statPerc) + ', axis=2') + except: + pass + else: + ee = statNp.replace('array', 'A, axis=2') + functionList = [ee.replace('np.', 'cfg.np.')] + if structure is None: + if len(cfg.ui.label_287.text()) > 0: + try: + structure = self.openStructure(cfg.ui.label_287.text()) + except Exception as err: + # logger + if cfg.logSetVal == 'Yes': cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' ERROR exception: ' + str(err)) + return 'No' + else: + structure = cfg.np.ones((size*2+1,size*2+1)) + else: + try: + structure = self.openStructure(structure) + except Exception as err: + # logger + if cfg.logSetVal == 'Yes': cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' ERROR exception: ' + str(err)) + return 'No' + if 'nansum' in ee: + additionalLayer = 2 + else: + additionalLayer = structure.shape[0]*structure.shape[1]*0.8 + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'structure ' + str(structure)) + for y in range(0, len(bndSetSources)): + if cfg.actionCheck == 'Yes': + input = bndSetSources[y] + nd = cfg.utls.imageNoDataValue(input) + dType = cfg.utls.getRasterDataTypeName(input) + tPMD = cfg.utls.createTempRasterPath('vrt') + # process calculation + u = cfg.utls.multiProcessRaster(rasterPath = input, functionBand = 'No', functionRaster = cfg.utls.rasterNeighbor, outputRasterList = [tPMD], functionBandArgument = structure, functionVariable = functionList, progressMessage = cfg.QtWidgetsSCP.QApplication.translate('semiautomaticclassificationplugin', 'Neighbor pixels'), virtualRaster = 'Yes', compress = 'No', outputNoDataValue = nd, dataType = dType, boundarySize = structure.shape[0]+1, additionalLayer = additionalLayer) + outputRaster = o + '/' + outputName + cfg.utls.fileNameNoExt(bndSetSources[y]) + '.tif' + # copy raster + try: + cfg.utls.GDALCopyRaster(tPMD, outputRaster, 'GTiff', cfg.rasterCompression, 'LZW') + except Exception as err: + # logger + if cfg.logSetVal == 'Yes': cfg.utls.logToFile(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' ERROR exception: ' + str(err)) + if cfg.osSCP.path.isfile(outputRaster): + oR =cfg.utls.addRasterLayer(outputRaster) + if batch == 'No': + cfg.utls.finishSound() + cfg.utls.sendSMTPMessage(None, str(__name__)) + cfg.uiUtls.removeProgressBar() + cfg.cnvs.setRenderFlag(True) + else: + if batch == 'No': + cfg.uiUtls.removeProgressBar() + cfg.cnvs.setRenderFlag(True) + cfg.mx.msgErr9() + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), 'Error raster not found') + # logger + cfg.utls.logCondition(str(__name__) + "-" + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode()) + + # open structure file + def openStructure(self, structure): + text = open(structure, 'r') + lines = text.readlines() + for b in lines: + b = b.replace('nan', 'cfg.np.nan').replace('\n', '') + a = eval(b) + i = cfg.np.array(a, dtype=cfg.np.float32) + try: + c = cfg.np.append(c, [i], axis=0) + except: + try: + c = cfg.np.append([c], [i], axis=0) + except: + c = i + return c + + # stat combo + def loadStatisticCombo(self): + cfg.ui.statistic_name_combobox_2.blockSignals(True) + cfg.ui.statistic_name_combobox_2.clear() + for i in cfg.statisticList: + cfg.dlg.statistic_name_combo2(i[0]) + cfg.ui.statistic_name_combobox_2.blockSignals(False) \ No newline at end of file diff --git a/maininterface/randomForestTab.py b/maininterface/randomForestTab.py index 30c43df..f491bae 100644 --- a/maininterface/randomForestTab.py +++ b/maininterface/randomForestTab.py @@ -399,6 +399,8 @@ def processGPTRandomForest(self, xmlFile, inputRaster, outputRaster, treeCount, return 'No' d = '"' + cfg.SNAPGPT + '" -q ' + str(cfg.threads) + ' -c ' + str(cfg.RAMValue) + 'M ' + ' -Dsnap.userdir="' + cfg.tmpDir + '" "' + xmlFile + '" -Pinput="' + inputRaster + '" -PtreeCount=' + str(treeCount) + ' -PnumTrainSamples=' + str(numTrainSamples) + ' -PclassifierName="' + str(classifierName) + '" -PloadClassifier=' + str(loadClassifier) + ' -PtrainingVectors="' + str(trainingVectors) + '" -PfeatureBands=' + str(featureBands) + ' -PevaluateClassifier=' + str(evaluateClassifier) + ' -PevaluateFeaturePowerSet=' + str(evaluateFeaturePowerSet) + ' -PminPowerSetSize=' + str(minPowerSetSize) + ' -PmaxPowerSetSize=' + str(maxPowerSetSize) + ' -Poutput="' + outputRaster + '"' outTxt = cfg.tmpDir + '/auxdata/classifiers/RandomForest/' + classifierName + '.txt' + # logger + cfg.utls.logCondition(str(__name__) + '-' + str(cfg.inspectSCP.stack()[0][3])+ ' ' + cfg.utls.lineOfCode(), ' d: ' + str(d)) if cfg.sysSCPNm != 'Windows': d = cfg.shlexSCP.split(d) # logger diff --git a/metadata.txt b/metadata.txt index 98b29a8..40d0d78 100644 --- a/metadata.txt +++ b/metadata.txt @@ -2,7 +2,7 @@ name=Semi-Automatic Classification Plugin qgisMinimumVersion=3.00 description=The Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images. -version=7.7.1 +version=7.8.0 about=Developed by Luca Congedo, the Semi-Automatic Classification Plugin (SCP) allows for the supervised classification of remote sensing images, providing tools for the download, the preprocessing and postprocessing of images. Search and download is available for ASTER, GOES, Landsat, MODIS, Sentinel-1, Sentinel-2, and Sentinel-3 images. Several algorithms are available for the land cover classification. This plugin requires the installation of GDAL, OGR, Numpy, SciPy, and Matplotlib. Some tools require also the installation of SNAP (ESA Sentinel Application Platform). For more information please visit https://fromgistors.blogspot.com . author=Luca Congedo @@ -14,6 +14,11 @@ icon=semiautomaticclassificationplugin.png ; start of optional metadata changelog= + 7.8.0 + -new tool for analysis of neighbor pixel with convolution matrix + -improved performance with multiprocessing calculations + -fixed conversion to vector + 7.7.1 -fixed issue importing shapefile -fixed scatter plot issue @@ -347,4 +352,4 @@ tags = Raster, Classification, Land Cover, Remote Sensing, Analysis, ASTER, GOES homepage=https://fromgistors.blogspot.com/p/semi-automatic-classification-plugin.html tracker=https://github.com/semiautomaticgit/SemiAutomaticClassificationPlugin/issues -repository=https://github.com/semiautomaticgit/SemiAutomaticClassificationPlugin \ No newline at end of file +repository=https://github.com/semiautomaticgit/SemiAutomaticClassificationPlugin diff --git a/semiautomaticclassificationplugin.py b/semiautomaticclassificationplugin.py index 095ba77..d68d061 100644 --- a/semiautomaticclassificationplugin.py +++ b/semiautomaticclassificationplugin.py @@ -153,6 +153,7 @@ from .maininterface.sieveTab import SieveRaster from .maininterface.erosionTab import ErosionRaster from .maininterface.dilationTab import DilationRaster + from .maininterface.neighborpixelsTab import NeighborPixels from .maininterface.clipmultiplerasterspointer import ClipMultiplerastersPointer from .maininterface.landcoverchange import LandCoverChange from .maininterface.classreportTab import ClassReportTab @@ -316,6 +317,7 @@ def __init__(self, iface): cfg.sieveRstr = SieveRaster() cfg.ersnRstr = ErosionRaster() cfg.dltnRstr = DilationRaster() + cfg.clssNghbr = NeighborPixels() cfg.downProd = DownloadProducts() cfg.landsatT = LandsatTab() cfg.ASTERT = ASTERTab() @@ -1098,6 +1100,10 @@ def initGui(self): cfg.ui.pushButton_Conversion_8.clicked.connect(cfg.goesT.performGOESConversion) cfg.ui.goes_conversion.clicked.connect(cfg.batchT.setFunctionButton) cfg.ui.GOES_pushButton_remove_band.clicked.connect(cfg.goesT.removeHighlightedBand) + ''' Classification neighbor tab''' + cfg.ui.class_neighbor_toolButton.clicked.connect(cfg.clssNghbr.classNeighborAction) + cfg.ui.neighbor_pixels.clicked.connect(cfg.batchT.setFunctionButton) + cfg.ui.toolButton_input_matrix.clicked.connect(cfg.clssNghbr.inputMatrixFile) ''' Reproject raster bands tab ''' # connect to refresh button cfg.ui.toolButton_reload_25.clicked.connect(cfg.rprjRstBndsT.refreshClassificationLayer) @@ -1264,7 +1270,7 @@ def initGui(self): cfg.ui.classification_dilation.clicked.connect(cfg.batchT.setFunctionButton) # connect the value text cfg.ui.dilation_classes_lineEdit.textChanged.connect(cfg.dltnRstr.textChanged) - ''' Classification dilation tab''' + ''' Classification zonal stat tab''' # connect to refresh rasters button cfg.ui.toolButton_reload_24.clicked.connect(cfg.utls.refreshClassificationLayer) cfg.ui.buttonReload_shape_6.clicked.connect(cfg.znlSttRstT.refreshReferenceLayer) @@ -1481,6 +1487,7 @@ def resetSCP(self): cfg.crossC.refreshReferenceLayer() cfg.znlSttRstT.refreshReferenceLayer() cfg.znlSttRstT.loadStatisticCombo() + cfg.clssNghbr.loadStatisticCombo() cfg.landCC.refreshClassificationReferenceLayer() cfg.landCC.refreshNewClassificationLayer() # read variables diff --git a/ui/icons/semiautomaticclassificationplugin_neighbor_pixels.svg b/ui/icons/semiautomaticclassificationplugin_neighbor_pixels.svg new file mode 100644 index 0000000..e64fc46 --- /dev/null +++ b/ui/icons/semiautomaticclassificationplugin_neighbor_pixels.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ui/resources.qrc b/ui/resources.qrc index 07a5619..a0082bb 100644 --- a/ui/resources.qrc +++ b/ui/resources.qrc @@ -91,6 +91,7 @@ icons/semiautomaticclassificationplugin_random_forest.svg icons/semiautomaticclassificationplugin_reclassification_tool.svg icons/semiautomaticclassificationplugin_docks.svg + icons/semiautomaticclassificationplugin_neighbor_pixels.svg icons/semiautomaticclassificationplugin_class_to_vector_tool.svg icons/help.svg icons/semiautomaticclassificationplugin_report_tool.svg diff --git a/ui/resources_rc.py b/ui/resources_rc.py index b9b08ff..8fe45be 100644 --- a/ui/resources_rc.py +++ b/ui/resources_rc.py @@ -9,7 +9,7 @@ from PyQt5 import QtCore qt_resource_data = b"\ -\x00\x00\x08\x05\ +\x00\x00\x11\x80\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -33,18943 +33,6914 @@ \x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ \x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ \x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\ -\x33\x39\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\ -\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\ -\x33\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x52\x4f\x49\x5f\x70\x6f\x69\ -\x6e\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6f\x6d\x5f\x74\x6f\ +\x5f\x52\x4f\x49\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ \x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ \x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x33\x30\x34\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ -\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x33\x30\x34\x33\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\ +\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\ +\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\ +\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ +\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\ +\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\x2e\x36\ +\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ +\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\ +\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x34\ +\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\x32\x34\ +\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\x38\x2c\ +\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\x35\x38\ +\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ +\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ +\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ \x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\ -\x61\x63\x69\x74\x79\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x6f\ -\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ -\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ -\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ -\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x33\x30\x34\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x66\x61\x6c\x73\x65\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ +\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ +\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\ +\x39\x30\x32\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x38\x2e\x33\x32\x38\ +\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x31\x39\x2e\x31\x31\x38\x33\x31\x39\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x36\x38\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x34\x33\x2e\x38\x31\x35\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x37\x2e\ -\x31\x30\x31\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\ -\x67\x33\x30\x33\x39\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x66\x33\x66\x33\x66\x33\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x33\x36\x36\x30\x30\x30\x30\x36\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x70\x61\x69\x6e\ -\x74\x2d\x6f\x72\x64\x65\x72\x3a\x6e\x6f\x72\x6d\x61\x6c\x22\x0a\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x35\x2e\x32\x30\x34\ -\x39\x37\x35\x2c\x38\x2e\x37\x39\x36\x32\x31\x31\x20\x76\x20\x33\ -\x2e\x33\x35\x37\x34\x32\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\ -\x20\x48\x20\x31\x31\x2e\x33\x32\x34\x31\x31\x36\x20\x37\x2e\x34\ -\x34\x33\x32\x35\x36\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\ -\x32\x20\x68\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x31\x20\x33\x2e\ -\x38\x38\x30\x38\x35\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\ -\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\x20\x68\x20\x33\x2e\x38\ -\x38\x32\x38\x31\x33\x20\x56\x20\x32\x32\x2e\x32\x32\x37\x38\x35\ -\x32\x20\x31\x38\x2e\x38\x37\x30\x34\x33\x20\x68\x20\x33\x2e\x38\ -\x38\x30\x38\x35\x39\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x20\x56\ -\x20\x31\x35\x2e\x35\x31\x33\x30\x30\x38\x20\x48\x20\x32\x32\x2e\ -\x39\x36\x38\x36\x34\x37\x20\x31\x39\x2e\x30\x38\x37\x37\x38\x38\ -\x20\x56\x20\x31\x32\x2e\x31\x35\x33\x36\x33\x33\x20\x38\x2e\x37\ -\x39\x36\x32\x31\x31\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x65\x63\x74\x38\x38\x38\x2d\x36\x31\x2d\x36\x2d\x39\ -\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x15\x22\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\ -\x33\x39\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ -\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\ -\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\ -\x33\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4c\x43\x53\x5f\x70\x6f\x69\ -\x6e\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x33\x30\x34\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ -\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x34\x33\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ -\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ -\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ -\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ -\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\ -\x61\x63\x69\x74\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\ -\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ +\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ +\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\ +\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\ +\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ \x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ \x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ \x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ \x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x34\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x32\ -\x31\x34\x39\x31\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x2e\x39\x31\x35\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x79\x3d\x22\x31\x36\x2e\x38\x34\x32\x31\x38\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ \x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x33\x30\x33\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x34\x35\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\ -\x38\x31\x34\x35\x30\x34\x30\x32\x2c\x30\x2c\x30\x2c\x30\x2e\x38\ -\x31\x34\x35\x30\x34\x30\x32\x2c\x33\x2e\x32\x31\x38\x32\x34\x30\ -\x38\x2c\x33\x2e\x31\x39\x36\x32\x31\x37\x32\x29\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\ -\x65\x28\x34\x35\x2e\x36\x33\x38\x32\x30\x34\x29\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\x31\x37\x33\x34\x35\ -\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x36\ -\x2e\x39\x35\x39\x31\x38\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x3d\x22\x31\x37\x2e\x34\x37\x36\x39\x31\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x33\ -\x2e\x32\x31\x33\x38\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x2e\x32\x31\x33\x38\x39\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ -\x74\x33\x38\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ -\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\ -\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ -\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x30\x2e\x33\x37\x37\x35\x33\x39\x38\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ -\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ -\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ -\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ -\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\x61\x73\x73\x61\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\x35\x2d\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x33\x2e\x30\x32\ -\x34\x34\x30\x35\x2c\x31\x39\x2e\x35\x38\x34\x38\x35\x35\x20\x63\ -\x20\x2d\x31\x2e\x39\x34\x39\x31\x38\x33\x2c\x30\x2e\x32\x31\x34\ -\x39\x34\x34\x20\x2d\x33\x2e\x32\x34\x38\x39\x38\x36\x2c\x2d\x32\ -\x2e\x34\x35\x31\x39\x39\x37\x20\x2d\x34\x2e\x31\x30\x30\x35\x30\ -\x38\x2c\x2d\x34\x2e\x32\x31\x38\x34\x37\x33\x20\x2d\x30\x2e\x34\ -\x34\x37\x31\x35\x2c\x2d\x30\x2e\x39\x32\x37\x36\x30\x38\x20\x30\ -\x2e\x32\x37\x30\x35\x33\x34\x2c\x2d\x32\x2e\x32\x37\x35\x37\x38\ -\x33\x20\x2d\x30\x2e\x33\x39\x31\x37\x32\x36\x2c\x2d\x33\x2e\x30\ -\x36\x34\x33\x33\x32\x20\x2d\x30\x2e\x38\x32\x39\x38\x30\x37\x2c\ -\x2d\x30\x2e\x39\x38\x38\x30\x34\x39\x20\x2d\x33\x2e\x33\x39\x36\ -\x37\x30\x32\x2c\x30\x2e\x31\x30\x37\x39\x35\x36\x20\x2d\x33\x2e\ -\x36\x39\x37\x30\x33\x37\x2c\x2d\x31\x2e\x31\x34\x36\x38\x38\x33\ -\x20\x2d\x30\x2e\x32\x38\x37\x36\x33\x33\x2c\x2d\x31\x2e\x32\x30\ -\x31\x37\x36\x35\x36\x20\x31\x2e\x34\x32\x34\x31\x34\x34\x2c\x2d\ -\x32\x2e\x36\x30\x30\x36\x30\x36\x35\x20\x32\x2e\x36\x35\x39\x37\ -\x31\x35\x2c\x2d\x32\x2e\x35\x38\x32\x33\x37\x37\x31\x20\x31\x2e\ -\x38\x30\x31\x38\x37\x37\x2c\x30\x2e\x30\x32\x36\x35\x38\x35\x20\ -\x32\x2e\x37\x36\x30\x37\x30\x31\x2c\x32\x2e\x33\x38\x33\x31\x31\ -\x39\x31\x20\x33\x2e\x37\x36\x35\x39\x36\x36\x2c\x33\x2e\x38\x37\ -\x38\x37\x35\x31\x31\x20\x32\x2e\x32\x36\x35\x31\x33\x31\x2c\x33\ -\x2e\x33\x37\x30\x30\x35\x36\x20\x33\x2e\x35\x36\x38\x39\x35\x35\ -\x2c\x32\x2e\x30\x38\x37\x34\x37\x39\x20\x33\x2e\x37\x36\x35\x39\ -\x36\x35\x2c\x33\x2e\x38\x37\x38\x37\x35\x20\x30\x2e\x31\x33\x39\ -\x32\x35\x32\x2c\x31\x2e\x32\x36\x36\x31\x30\x35\x20\x2d\x30\x2e\ -\x37\x33\x36\x33\x31\x2c\x33\x2e\x31\x31\x34\x39\x34\x38\x20\x2d\ -\x32\x2e\x30\x30\x32\x33\x37\x34\x2c\x33\x2e\x32\x35\x34\x35\x36\ -\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x31\x63\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\ -\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\ -\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ -\x31\x2e\x36\x38\x38\x38\x39\x38\x2c\x32\x30\x2e\x34\x35\x38\x37\ -\x38\x20\x63\x20\x2d\x31\x2e\x39\x34\x39\x31\x38\x33\x2c\x30\x2e\ -\x32\x31\x34\x39\x34\x36\x20\x2d\x33\x2e\x32\x34\x38\x39\x38\x34\ -\x2c\x2d\x32\x2e\x34\x35\x31\x39\x39\x37\x20\x2d\x34\x2e\x31\x30\ -\x30\x35\x30\x38\x2c\x2d\x34\x2e\x32\x31\x38\x34\x37\x34\x20\x2d\ -\x30\x2e\x34\x34\x37\x31\x35\x32\x2c\x2d\x30\x2e\x39\x32\x37\x36\ -\x30\x33\x20\x30\x2e\x32\x37\x30\x35\x32\x39\x2c\x2d\x32\x2e\x32\ -\x37\x35\x37\x37\x38\x20\x2d\x30\x2e\x33\x39\x31\x37\x32\x38\x2c\ -\x2d\x33\x2e\x30\x36\x34\x33\x32\x37\x20\x2d\x30\x2e\x38\x32\x39\ -\x38\x31\x2c\x2d\x30\x2e\x39\x38\x38\x30\x34\x39\x20\x2d\x33\x2e\ -\x33\x39\x36\x37\x30\x34\x2c\x30\x2e\x31\x30\x37\x39\x35\x36\x20\ -\x2d\x33\x2e\x36\x39\x37\x30\x33\x36\x2c\x2d\x31\x2e\x31\x34\x36\ -\x38\x38\x34\x20\x2d\x30\x2e\x32\x38\x37\x36\x33\x35\x2c\x2d\x31\ -\x2e\x32\x30\x31\x37\x36\x34\x20\x31\x2e\x34\x32\x34\x31\x34\x33\ -\x2c\x2d\x32\x2e\x36\x30\x30\x36\x30\x35\x39\x20\x32\x2e\x36\x35\ -\x39\x37\x31\x35\x2c\x2d\x32\x2e\x35\x38\x32\x33\x37\x36\x37\x20\ -\x31\x2e\x38\x30\x31\x38\x37\x36\x2c\x30\x2e\x30\x32\x36\x35\x38\ -\x35\x20\x32\x2e\x37\x36\x30\x37\x30\x32\x2c\x32\x2e\x33\x38\x33\ -\x31\x31\x39\x37\x20\x33\x2e\x37\x36\x35\x39\x36\x37\x2c\x33\x2e\ -\x38\x37\x38\x37\x34\x39\x37\x20\x32\x2e\x32\x36\x35\x31\x32\x38\ -\x2c\x33\x2e\x33\x37\x30\x30\x35\x37\x20\x33\x2e\x35\x36\x38\x39\ -\x35\x33\x2c\x32\x2e\x30\x38\x37\x34\x37\x38\x20\x33\x2e\x37\x36\ -\x35\x39\x36\x36\x2c\x33\x2e\x38\x37\x38\x37\x35\x31\x20\x30\x2e\ -\x31\x33\x39\x32\x35\x2c\x31\x2e\x32\x36\x36\x31\x30\x31\x20\x2d\ -\x30\x2e\x37\x33\x36\x33\x31\x32\x2c\x33\x2e\x31\x31\x34\x39\x34\ -\x36\x20\x2d\x32\x2e\x30\x30\x32\x33\x37\x36\x2c\x33\x2e\x32\x35\ -\x34\x35\x36\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x64\x34\ -\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x34\x33\x31\x63\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x33\x30\x38\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\ -\x61\x61\x61\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x38\x33\x33\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x31\x32\x2e\x37\x39\x39\x33\x38\x38\x2c\x31\x33\ -\x2e\x36\x37\x35\x30\x32\x34\x20\x63\x20\x31\x2e\x30\x36\x35\x33\ -\x37\x33\x2c\x2d\x30\x2e\x31\x34\x34\x32\x36\x33\x20\x32\x2e\x31\ -\x36\x33\x30\x35\x35\x2c\x30\x2e\x37\x31\x31\x36\x30\x31\x20\x32\ -\x2e\x38\x32\x32\x35\x36\x37\x2c\x31\x2e\x35\x36\x30\x36\x34\x36\ -\x20\x31\x2e\x30\x31\x38\x35\x38\x33\x2c\x31\x2e\x33\x31\x31\x33\ -\x30\x37\x20\x2d\x30\x2e\x30\x35\x31\x32\x2c\x33\x2e\x37\x39\x37\ -\x35\x36\x36\x20\x31\x2e\x32\x35\x37\x30\x35\x35\x2c\x34\x2e\x38\ -\x32\x30\x30\x37\x34\x20\x31\x2e\x31\x34\x37\x34\x30\x38\x2c\x30\ -\x2e\x38\x39\x36\x37\x39\x37\x20\x33\x2e\x37\x39\x34\x33\x33\x35\ -\x2c\x2d\x31\x2e\x32\x38\x39\x36\x31\x39\x20\x34\x2e\x33\x36\x38\ -\x36\x31\x33\x2c\x30\x2e\x30\x34\x38\x36\x36\x20\x30\x2e\x38\x35\ -\x33\x37\x32\x37\x2c\x31\x2e\x39\x38\x39\x35\x20\x2d\x32\x2e\x32\ -\x35\x37\x33\x37\x38\x2c\x34\x2e\x37\x32\x39\x34\x32\x32\x20\x2d\ -\x34\x2e\x34\x32\x32\x31\x34\x32\x2c\x34\x2e\x37\x35\x36\x38\x31\ -\x35\x20\x2d\x31\x2e\x38\x30\x31\x39\x32\x39\x2c\x30\x2e\x30\x32\ -\x32\x38\x20\x2d\x33\x2e\x39\x31\x33\x38\x39\x36\x2c\x2d\x32\x2e\ -\x30\x36\x38\x30\x33\x31\x20\x2d\x33\x2e\x37\x37\x39\x39\x35\x38\ -\x2c\x2d\x33\x2e\x38\x36\x35\x31\x31\x38\x20\x30\x2e\x37\x34\x31\ -\x30\x32\x36\x2c\x2d\x39\x2e\x39\x34\x32\x36\x33\x37\x20\x2d\x33\ -\x2e\x38\x35\x39\x39\x38\x32\x34\x2c\x2d\x32\x2e\x30\x36\x34\x38\ -\x32\x33\x20\x2d\x33\x2e\x37\x37\x39\x39\x35\x37\x32\x2c\x2d\x33\ -\x2e\x38\x36\x35\x31\x31\x37\x20\x30\x2e\x30\x36\x38\x37\x34\x38\ -\x2c\x2d\x31\x2e\x35\x34\x36\x35\x33\x37\x20\x31\x2e\x39\x30\x31\ -\x31\x31\x32\x32\x2c\x2d\x33\x2e\x32\x33\x34\x38\x37\x39\x20\x33\ -\x2e\x35\x33\x33\x38\x32\x32\x32\x2c\x2d\x33\x2e\x34\x35\x35\x39\ -\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\ -\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\ -\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ -\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ -\x34\x2e\x39\x31\x38\x32\x30\x39\x2c\x31\x32\x2e\x31\x35\x34\x31\ -\x32\x35\x20\x63\x20\x31\x2e\x30\x36\x35\x33\x37\x34\x2c\x2d\x30\ -\x2e\x31\x34\x34\x32\x35\x39\x20\x32\x2e\x31\x36\x33\x30\x35\x33\ -\x2c\x30\x2e\x37\x31\x31\x36\x30\x32\x20\x32\x2e\x38\x32\x32\x35\ -\x36\x34\x2c\x31\x2e\x35\x36\x30\x36\x34\x36\x20\x31\x2e\x30\x31\ -\x38\x35\x38\x35\x2c\x31\x2e\x33\x31\x31\x33\x30\x36\x20\x2d\x30\ -\x2e\x30\x35\x31\x32\x2c\x33\x2e\x37\x39\x37\x35\x36\x37\x20\x31\ -\x2e\x32\x35\x37\x30\x35\x37\x2c\x34\x2e\x38\x32\x30\x30\x37\x34\ -\x20\x31\x2e\x31\x34\x37\x34\x30\x39\x2c\x30\x2e\x38\x39\x36\x37\ -\x39\x38\x20\x33\x2e\x37\x39\x34\x33\x33\x36\x2c\x2d\x31\x2e\x32\ -\x38\x39\x36\x31\x38\x20\x34\x2e\x33\x36\x38\x36\x31\x34\x2c\x30\ -\x2e\x30\x34\x38\x36\x36\x20\x30\x2e\x38\x35\x33\x37\x32\x37\x2c\ -\x31\x2e\x39\x38\x39\x34\x39\x39\x20\x2d\x32\x2e\x32\x35\x37\x33\ -\x37\x38\x2c\x34\x2e\x37\x32\x39\x34\x31\x39\x20\x2d\x34\x2e\x34\ -\x32\x32\x31\x34\x31\x2c\x34\x2e\x37\x35\x36\x38\x31\x31\x20\x2d\ -\x31\x2e\x38\x30\x31\x39\x33\x2c\x30\x2e\x30\x32\x32\x37\x39\x20\ -\x2d\x33\x2e\x39\x31\x33\x38\x39\x34\x2c\x2d\x32\x2e\x30\x36\x38\ -\x30\x32\x39\x20\x2d\x33\x2e\x37\x37\x39\x39\x36\x2c\x2d\x33\x2e\ -\x38\x36\x35\x31\x31\x38\x20\x30\x2e\x37\x34\x31\x30\x32\x37\x2c\ -\x2d\x39\x2e\x39\x34\x32\x36\x33\x35\x32\x20\x2d\x33\x2e\x38\x35\ -\x39\x39\x38\x32\x2c\x2d\x32\x2e\x30\x36\x34\x38\x32\x31\x20\x2d\ -\x33\x2e\x37\x37\x39\x39\x35\x36\x2c\x2d\x33\x2e\x38\x36\x35\x31\ -\x31\x37\x20\x30\x2e\x30\x36\x38\x37\x35\x2c\x2d\x31\x2e\x35\x34\ -\x36\x35\x33\x35\x20\x31\x2e\x39\x30\x31\x31\x31\x32\x2c\x2d\x33\ -\x2e\x32\x33\x34\x38\x37\x38\x20\x33\x2e\x35\x33\x33\x38\x32\x32\ -\x2c\x2d\x33\x2e\x34\x35\x35\x39\x36\x31\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x32\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\x39\x32\x36\x37\x39\x70\x78\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x66\x33\x66\x33\x66\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x2e\x33\x36\x36\x30\x30\x30\x30\x36\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x70\x61\x69\x6e\x74\x2d\x6f\ -\x72\x64\x65\x72\x3a\x6e\x6f\x72\x6d\x61\x6c\x22\x0a\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x31\x35\x2e\x32\x30\x34\x39\x37\x35\ -\x2c\x38\x2e\x37\x39\x36\x32\x31\x31\x20\x76\x20\x33\x2e\x33\x35\ -\x37\x34\x32\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\x20\x48\x20\ -\x31\x31\x2e\x33\x32\x34\x31\x31\x36\x20\x37\x2e\x34\x34\x33\x32\ -\x35\x36\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\x32\x20\x68\ -\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x31\x20\x33\x2e\x38\x38\x30\ -\x38\x35\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\x32\x20\x33\ -\x2e\x33\x35\x39\x33\x37\x35\x20\x68\x20\x33\x2e\x38\x38\x32\x38\ -\x31\x33\x20\x56\x20\x32\x32\x2e\x32\x32\x37\x38\x35\x32\x20\x31\ -\x38\x2e\x38\x37\x30\x34\x33\x20\x68\x20\x33\x2e\x38\x38\x30\x38\ -\x35\x39\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x20\x56\x20\x31\x35\ -\x2e\x35\x31\x33\x30\x30\x38\x20\x48\x20\x32\x32\x2e\x39\x36\x38\ -\x36\x34\x37\x20\x31\x39\x2e\x30\x38\x37\x37\x38\x38\x20\x56\x20\ -\x31\x32\x2e\x31\x35\x33\x36\x33\x33\x20\x38\x2e\x37\x39\x36\x32\ -\x31\x31\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x65\x63\x74\x38\x38\x38\x2d\x36\x31\x2d\x36\x2d\x39\x2d\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x0d\x9a\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x69\x6d\x70\x6f\x72\x74\x2e\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ -\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x2d\x32\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\ -\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x39\x37\x33\x2d\x34\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\ -\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ -\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x39\x37\x35\x2d\x32\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x31\x3d\x22\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x31\x39\x37\x32\ -\x37\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x31\x39\x37\x32\x37\x33\ -\x2c\x32\x2e\x38\x37\x33\x39\x39\x38\x39\x2c\x32\x2e\x38\x30\x30\ -\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ -\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x30\x31\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\ -\x37\x31\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ -\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x78\x3d\x22\x2d\x34\x32\x2e\x38\x39\x35\x39\x37\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ -\x22\x31\x32\x2e\x39\x37\x39\x35\x39\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ -\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ -\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\ -\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ -\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ -\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\ -\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ -\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ -\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ -\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ -\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ -\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ +\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ +\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ +\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ \x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ -\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\ -\x35\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x31\x32\x29\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ -\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\x36\x38\x36\x37\x34\x37\x2c\ -\x32\x2e\x35\x37\x30\x39\x31\x39\x35\x20\x63\x20\x2d\x30\x2e\x39\ -\x34\x32\x31\x30\x33\x2c\x30\x20\x2d\x31\x2e\x36\x39\x35\x37\x34\ -\x38\x2c\x30\x2e\x37\x35\x33\x36\x34\x36\x36\x20\x2d\x31\x2e\x36\ -\x39\x35\x37\x34\x38\x2c\x31\x2e\x36\x39\x35\x37\x34\x37\x32\x20\ -\x56\x20\x31\x36\x2e\x35\x39\x36\x37\x35\x39\x20\x48\x20\x36\x2e\ -\x35\x35\x32\x39\x30\x37\x39\x20\x63\x20\x2d\x31\x2e\x38\x33\x39\ -\x34\x35\x34\x38\x2c\x30\x20\x31\x30\x2e\x31\x31\x37\x30\x30\x30\ -\x31\x2c\x31\x33\x2e\x37\x39\x35\x39\x31\x31\x20\x31\x30\x2e\x31\ -\x31\x37\x30\x30\x30\x31\x2c\x31\x33\x2e\x37\x39\x35\x39\x31\x31\ -\x20\x6c\x20\x30\x2e\x39\x31\x39\x37\x32\x37\x2c\x30\x2e\x39\x31\ -\x39\x37\x32\x38\x20\x30\x2e\x39\x31\x39\x37\x32\x38\x2c\x2d\x30\ -\x2e\x39\x31\x39\x37\x32\x38\x20\x63\x20\x30\x2c\x30\x20\x31\x31\ -\x2e\x39\x35\x36\x34\x35\x36\x2c\x2d\x31\x33\x2e\x37\x39\x35\x39\ -\x31\x31\x20\x31\x30\x2e\x31\x31\x37\x2c\x2d\x31\x33\x2e\x37\x39\ -\x35\x39\x31\x31\x20\x48\x20\x32\x32\x2e\x31\x38\x38\x32\x37\x32\ -\x20\x56\x20\x34\x2e\x32\x36\x36\x36\x36\x36\x37\x20\x63\x20\x30\ -\x2c\x2d\x30\x2e\x39\x34\x32\x31\x30\x30\x36\x20\x2d\x30\x2e\x37\ -\x35\x33\x36\x34\x35\x2c\x2d\x31\x2e\x36\x39\x35\x37\x34\x37\x32\ -\x20\x2d\x31\x2e\x36\x39\x35\x37\x34\x38\x2c\x2d\x31\x2e\x36\x39\ -\x35\x37\x34\x37\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x2d\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ -\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x5e\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x30\x2e\x35\x37\x30\x37\x35\x32\x33\x2c\x30\x2c\x30\x2c\ +\x30\x2e\x35\x37\x30\x37\x35\x32\x33\x2c\x39\x2e\x36\x38\x35\x37\ +\x32\x32\x36\x2c\x34\x2e\x37\x33\x30\x33\x34\x31\x35\x29\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\ +\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x35\x2e\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\x38\x33\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ +\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x37\x2e\x30\x36\ +\x36\x36\x36\x37\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x63\ +\x20\x30\x2c\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\ +\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\ +\x32\x30\x30\x30\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\ +\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x33\x2e\x32\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ +\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\x36\x36\x36\x36\ +\x36\x37\x2c\x31\x36\x2e\x36\x30\x32\x32\x38\x39\x20\x63\x20\x31\ +\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\ +\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\x30\x30\ +\x30\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\x30\x38\ +\x30\x38\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x33\x2e\x35\x38\x39\x30\x39\x35\x31\x32\x70\x78\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\ +\x38\x34\x30\x39\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x31\x39\x2e\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\ +\x2e\x34\x38\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x31\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x35\x35\x32\x32\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\ +\x2e\x30\x35\x31\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\ +\x2e\x32\x35\x37\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x32\x31\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\ +\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ +\x2e\x37\x32\x30\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\ +\x28\x2d\x33\x39\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x09\x06\ \x00\ -\x00\x55\x31\x78\x9c\xe5\x9c\xdd\x93\x9b\x36\x10\xc0\xdf\xef\xaf\ -\xa0\xe4\xa5\x9d\x46\x7c\x63\x30\xb1\x9d\x87\x64\x3a\xcd\x4c\xfb\ -\xd2\xa6\xed\x63\x46\x06\xd9\x47\x03\xc8\x23\xe4\xb3\x9d\xbf\xbe\ -\x12\x5f\x06\xc3\xb5\xc9\x48\xee\xe8\x6c\xcf\xdc\x04\xb4\x42\x48\ -\x3f\x76\xb5\xbb\x12\x61\xf1\xf6\x98\x67\xda\x13\x22\x65\x8a\x8b\ -\xa5\x6e\x1b\x96\xae\xa1\x22\xc6\x49\x5a\x6c\x97\xfa\x1f\x1f\x7f\ -\x02\xa1\xae\x95\x14\x16\x09\xcc\x70\x81\x96\x7a\x81\xf5\xb7\xab\ -\x87\xc5\x77\x00\x68\xef\x08\x82\x14\x25\xda\x21\xa5\x8f\xda\x87\ -\xe2\x73\x19\xc3\x1d\xd2\xbe\x7f\xa4\x74\x17\x99\xe6\xe1\x70\x30\ -\xd2\xa6\xd0\xc0\x64\x6b\xfe\xa0\x01\xb0\x7a\x78\x58\x94\x4f\xdb\ -\x07\x4d\xd3\xd8\x7d\x8b\x32\x4a\xe2\xa5\xde\x5c\xb0\xdb\x93\xac\ -\xaa\x98\xc4\x26\xca\x50\x8e\x0a\x5a\x9a\xb6\x61\x9b\xfa\xb9\x7a\ -\x7c\xae\x1e\xf3\xbb\xa7\x4f\x28\xc6\x79\x8e\x8b\xb2\xba\xb2\x28\ -\x5f\xf5\x2a\x93\x64\xd3\xd5\xe6\xbd\x39\xb8\x55\x25\x7b\x3e\x9f\ -\x9b\x96\x63\x3a\x0e\x60\x35\x40\x79\x2a\x28\x3c\x82\xe1\xa5\xac\ -\x8f\x53\x97\x3a\x96\x65\x99\x4c\x76\xae\xf9\x75\xb5\xa2\x92\x01\ -\xdd\xb1\xbf\xae\x7a\x5b\x60\x94\x78\x4f\x62\xb4\x61\xd7\x21\xa3\ -\x40\xd4\x7c\xff\xf1\x7d\x27\x04\x96\x91\xd0\xa4\xd7\x4c\xcb\x73\ -\x70\xd7\x01\xe4\x02\xe6\xa8\xdc\xc1\x18\x95\x66\x5b\x5e\x5d\x7f\ -\x48\x13\xfa\xb8\xd4\x5d\xcf\xb0\x5d\xf6\xf3\xab\xc2\x47\x94\x6e\ -\x1f\xe9\x65\x69\x9a\x2c\x75\xd6\x7b\x67\x1e\xd6\xe7\x3d\xe5\xb0\ -\xeb\x0a\x4d\xc3\x51\x27\xb1\x8c\xb9\x63\xd8\x1a\xb1\x7d\x37\xa8\ -\xeb\xb4\x43\x88\x12\x1c\xf3\x3e\xb1\x26\x51\x9e\xc2\x3d\xc5\x39\ -\x7b\x6a\x71\x9c\xc1\xb2\x4c\x37\x69\xcc\x4e\x70\xb1\xcb\xf6\xdb\ -\xb4\xf8\xc4\x1a\xa5\x14\x91\x4f\xe5\x23\x3e\x7c\x22\xb0\x64\xc7\ -\x46\x8b\xb1\xbb\x27\x3a\xee\x30\xa1\xe0\x98\xec\x18\xcc\x59\x30\ -\x29\x3c\xb5\xc2\x15\x93\x2e\x12\xb4\x29\x79\xad\x7a\x64\xfc\x8c\ -\x0d\x2d\xd0\x35\xb3\x92\x76\x1d\xe5\xbd\x4c\x9e\x52\x74\x38\xd7\ -\x5d\xc3\xb2\xa6\xa7\x69\x3b\xb8\x65\x9a\x96\x61\xb2\xd4\x5f\x6d\ -\xaa\x5f\x23\x58\x63\x92\x20\xd2\x8a\x66\xd5\x6f\x20\xc2\xec\x69\ -\xa4\xf4\x54\xdb\x56\xd3\x76\xdb\x5f\xde\x6a\x27\xb7\xa6\xe5\xe5\ -\x23\x4c\xf0\x61\xa9\x3b\x97\xc2\x2f\x18\xe7\x4b\xdd\x37\xfc\x79\ -\x38\xb7\xec\x4b\x69\x7c\x5c\xea\xc0\x0e\x0c\xd7\xf5\xac\xae\x47\ -\x67\x29\xef\x0f\x7b\x9e\x76\xe8\x05\xa3\x86\xe3\x3d\x21\xcc\xf8\ -\x40\x06\x4f\x88\x0d\xaa\xfa\xa7\x6d\x9f\x3f\x9b\x2d\xe1\x70\x28\ -\xd9\xa3\xcb\x2b\xb9\x04\xac\xd7\xf8\x38\x2d\x66\xba\xb0\xe7\x66\ -\x0d\xf6\x45\x4a\x99\xe9\xec\x8e\xfd\x56\xf7\x69\x82\xca\xe9\x0b\ -\x0f\x69\xc1\x18\x80\x46\x89\x6d\x77\x3c\xa0\xa6\x46\xab\xd1\x81\ -\x15\x3e\x53\x83\x75\x6d\x84\xb9\x11\x9d\x9e\x17\xe5\xf0\x98\xe6\ -\xe9\x17\xc4\xc6\x3d\x22\x5d\x16\x70\x07\xb6\x19\x5e\xc3\xac\xe9\ -\xfd\xaa\xaa\xb1\x18\x60\xa9\x2f\xd2\x34\x7a\xe2\xe6\x7b\x3c\xf1\ -\x32\xbd\x2d\xe4\x3c\x79\x81\x1b\xcc\xfc\xae\x10\x93\x94\x59\x45\ -\xaf\xbf\x6d\xd1\xa9\x5f\xc4\x8d\x9d\xcd\xd5\xc7\x4a\xbf\x2a\xed\ -\x0b\x2e\x65\xa7\xbe\xac\x51\x7b\x73\xac\xf7\x55\x79\x8e\x28\x4c\ -\x20\x85\x67\x23\x68\x4b\x9c\xf9\xdc\x6a\x47\xc6\xe6\xcd\xe8\xb7\ -\xf7\x3f\xad\x9a\x1b\x2d\xe2\x38\xfa\x0b\x93\xcf\xed\x7d\x35\x8d\ -\x57\x80\x6b\xbc\x67\x8f\x42\x5f\x75\xc5\x8b\x24\x8e\xd8\x4c\xc7\ -\x66\x80\x55\x9a\x33\xd5\xe6\x93\xe4\x8f\x6c\x66\x5b\x98\x67\xc1\ -\xa0\x32\x87\x75\x6e\xb4\x6e\x96\xa0\x7a\xca\x9c\xf4\x1b\x49\x9c\ -\xa7\xfc\x22\xf3\x77\x9a\x66\xd9\x07\x7e\x93\x66\xc4\xbd\x46\x53\ -\x9a\xa1\x73\xe1\xc2\x6c\x7a\xdf\x8c\xcd\xec\x0d\x6e\x61\xb6\xa3\ -\xaf\xce\xb6\x67\x2a\x03\xa3\xe8\x1e\x74\x06\xd7\x88\x29\xc1\x2f\ -\x5c\xa8\x8d\xa4\x5b\x82\xf7\xbb\x1c\x27\xa8\xb9\xbc\xa3\x89\x62\ -\xda\x3d\x32\x7a\xca\x98\x7c\xc3\x7a\x1f\xbd\xb2\xac\x38\xde\x6c\ -\xde\xf0\x13\xd0\x4c\x13\x91\x5d\x9f\x92\x7d\xc6\xa6\xbb\x27\x54\ -\xe0\x24\x79\x53\x52\x82\x3f\xa3\xa8\x99\x98\x9a\xd3\xda\x5a\x22\ -\xab\x3d\x65\x60\x10\xc9\x98\x16\xd3\xc8\x6b\xcb\x12\xc8\x66\x17\ -\x42\xe0\x29\x2a\x98\x73\x6f\x4b\xbb\x5b\x0d\xf4\x93\xf7\xd2\x0f\ -\xdd\x79\x57\xd8\x58\xa3\x67\x38\x95\x6a\x9d\x05\xad\x11\x8e\x25\ -\x03\x65\x3e\x4d\xd5\x20\x83\x2a\xa4\x52\x5d\xcf\xe1\x3f\xb7\x7b\ -\x90\xff\x06\x0c\xc2\xc4\x53\x0c\x18\xb0\x05\x91\x8d\x0b\xaf\x82\ -\xce\xf3\x7c\x5f\x39\x74\xc0\x12\x84\x67\x3b\x46\x78\x4d\x6e\x9b\ -\x8d\x03\x1d\xa8\x1c\x37\x57\x14\x5b\x50\x7b\x8c\x7b\x64\x07\x42\ -\xe0\x0b\xe2\x73\x7c\x63\x76\x8f\xe4\x2c\x20\xaa\x78\xce\xdc\x08\ -\x87\x51\xcc\xfd\xf8\x09\xe0\x5d\xc3\x53\x58\xd2\xa0\xb1\xe9\xc0\ -\x52\x0f\x5a\x28\xec\x60\x43\xc3\xe7\xe9\xaf\x1b\x5e\x07\x9b\xa2\ -\x8e\x15\x04\x82\xd8\x2e\x5d\xab\x2c\x62\x9b\xcd\x7c\xae\x20\x31\ -\x17\xcc\x44\x81\x4d\x39\xd5\x1b\xa7\x06\x02\xe0\x08\x62\x73\x6c\ -\xa3\x32\x4f\xef\x9e\xb0\xb1\x18\x04\x88\xe6\x5a\x97\x51\x88\xbc\ -\x29\x4d\xc1\xbc\x14\x84\x82\xb4\x06\x99\xe9\x60\x6e\xbb\xcd\x60\ -\x23\x14\x05\x36\x19\x6d\x48\x05\xa7\xaa\xe7\x14\x76\x04\x17\x9e\ -\x53\x22\xb4\xd0\xe2\x3f\xe5\xa0\xb9\xc2\x5e\x60\xd2\x79\xde\x3e\ -\x38\xe6\x3f\x85\x53\xaa\x29\xff\x79\x07\xe4\xb8\x0b\x15\x9d\xe3\ -\x2e\x5d\xe8\x1d\x60\x63\x39\xbc\x70\x6a\x30\x99\xc5\x4b\x75\x0d\ -\x2a\x46\x20\x96\x70\x02\x3f\x88\x41\xc6\x69\xe9\x6d\x06\x22\x9e\ -\xb0\x6f\x98\x8c\x44\xe4\xe3\x53\x76\xfd\x43\x78\xbd\x72\x72\x05\ -\x44\x3e\x40\x55\xe3\xb9\x40\x38\xd5\xba\x8c\xe8\x64\xb3\x4b\x3c\ -\x25\x9d\x85\x0b\x66\xd7\x09\xec\xee\x84\x1f\x5f\x1d\x11\x77\xb6\ -\x53\xf1\xdd\xbd\x00\xe4\xd1\x8a\x23\xbc\x02\x3c\x19\xaf\xc8\x46\ -\xc8\xdd\x87\x7a\x08\x2d\xd1\xf4\x62\x10\xb3\x8c\x75\xf1\x16\x99\ -\xd9\xc2\x2b\x00\x93\x11\xcb\xbd\xc0\x0b\x85\xa7\xbc\xc9\x78\x45\ -\x36\x3e\xcb\x62\x37\x50\x0f\x1f\x9b\xef\x84\x77\x6e\xa6\x5c\xae\ -\x7c\x7c\x9e\x07\x15\xdc\xa3\x0e\xc4\x77\xf7\xa7\x1c\xae\x6c\x7c\ -\x61\xc0\xb2\x35\xa4\x1e\xbe\x6a\x79\xe0\x2a\xbb\xfc\xb2\x09\xf2\ -\x6c\x43\xbd\xe9\x4f\x7c\xdf\x75\xb8\x51\x31\x32\xe5\x5b\x84\xd6\ -\x64\xb9\x57\x49\x73\xef\x85\x20\x4f\x73\x45\xd7\xa7\x46\x1b\x17\ -\x92\xd9\x29\xeb\x72\x67\xc2\x4e\x63\x7a\xff\x42\x32\x3f\x07\x06\ -\x1b\xf5\xd6\x45\x9b\xdd\x6c\xf1\x8d\x8c\xcb\xc5\x78\xc9\xf4\x54\ -\x76\xb9\x8e\xf0\x9b\xb0\xd3\x6b\xf2\x92\x11\xae\xe3\xc4\xf5\x55\ -\x54\x40\xf1\xb7\xc4\xa6\x53\xb6\x11\xd4\x1b\xe5\xc7\xcc\xf7\x3a\ -\x49\xdb\x9d\x00\xb4\x98\x0b\x91\xfd\xda\x80\x6c\x76\xca\x7a\x5f\ -\xe7\x3a\xde\x57\x3e\x3f\x55\x33\x5e\x57\x38\xf2\x9b\xce\x79\x25\ -\x03\x54\x39\x7c\x91\xff\x9f\x02\x64\xd3\x0b\x43\x08\xd5\x4b\x3c\ -\x2c\xe0\x09\xbb\xde\xe1\x12\x73\x1f\xe3\x2d\x12\xab\x76\xc4\x85\ -\xbd\xed\x74\xb8\x72\xfb\xec\xaa\xdd\x5c\xe1\x54\x63\xe4\x6a\xe5\ -\x81\x53\xd6\xcb\xce\x24\x24\x19\xd3\x7e\x56\x26\x3c\x55\x5d\x2c\ -\xb3\xd8\xeb\xec\xe4\x4a\xa4\xa7\xb2\x7f\xe5\x9e\x42\x38\xc5\xbd\ -\xf4\xb0\x12\xa7\x3b\xa5\xd7\x06\xec\xeb\xec\x80\x7f\x3b\xbf\x1d\ -\xa4\x8f\x53\xfc\x7a\x63\xe2\x46\x5c\xbd\x4b\x30\x60\xe3\xd4\x9f\ -\x20\x71\xbd\x0e\x48\x96\x16\x28\x86\xbb\x68\xbd\xa7\xb4\x5f\xf6\ -\x37\x4e\x8b\xa8\x22\x28\x03\x27\xa3\xf9\xab\x66\xbd\xb6\xb4\x3f\ -\xb5\xf6\x33\x28\xee\x80\x35\x1f\x91\x33\x9f\x9f\x39\x9c\xbf\x93\ -\x81\x0b\xd6\x43\x8a\x09\x88\xf7\xe4\x09\xd2\x3d\x41\x83\x2f\x33\ -\x74\x5f\x58\xc0\x09\xe2\x1f\x25\x28\x97\x7a\x1c\xbf\x74\x54\x1d\ -\xa4\xd7\xdd\x91\xf6\xb3\x66\x4d\x21\x0b\xd5\x41\x66\x1b\xec\x09\ -\x5a\x8e\x1f\xee\x8e\xdf\xce\xec\x19\x12\xdd\x37\x35\x5e\x3b\xa1\ -\x11\x6a\xef\x34\xd7\x70\xea\xc3\xd1\xc1\x88\x8e\x1b\x04\x7d\x5f\ -\xfb\x5f\x7c\xa4\xe8\x8c\x1d\xf8\x9e\xed\xfb\xd2\x08\xe4\x9a\x5f\ -\x7b\x2b\xae\x0b\xbe\xe1\x68\x31\xb3\x23\xd0\x4c\x2e\xc1\x73\xc7\ -\x63\x14\xa1\xf7\xe2\x41\xd8\x96\xd1\xa8\x82\x20\x08\xf0\xf5\x36\ -\xa3\x28\x8a\x36\x84\x11\xd6\x89\xde\x2b\x99\x2f\x15\xc5\x4c\x96\ -\x56\xbc\x78\x03\x71\x1d\x61\x06\xee\x4b\x67\x60\xcf\x84\x19\x7c\ -\x7d\x10\xa2\xa2\xcb\xcc\xfb\x2e\xd3\x35\xbc\x7a\xd0\xb1\xd6\xc6\ -\x33\x2e\x8b\xc2\x9e\x39\x7e\xc6\x81\xf6\xde\x3d\x7e\xe9\x40\xec\ -\xb0\x8d\xa6\x84\x80\xd8\x2f\x1a\x48\x3f\xa8\xe2\x2b\x30\x4d\x50\ -\x55\x1d\x8e\x0e\x9e\x43\xf0\x7f\x4e\x14\xd7\xd5\x89\xa0\xb6\x11\ -\x51\x23\xf1\x6e\x06\x48\x37\x58\x31\x20\xdf\x1a\x59\x2c\xcc\xed\ -\xea\x61\xc1\xbf\x56\xb7\x7a\xf8\x07\x3d\x1f\xd6\xd0\ -\x00\x00\x07\x3d\ +\x00\x5f\x8b\x78\x9c\xe5\x5c\x5b\x8f\xa3\x38\x16\x7e\xaf\x5f\x91\ +\x4d\xbd\x74\x6b\x0b\x62\x8c\x09\x76\xba\x52\xf3\xb0\xad\x19\x8d\ +\xb4\xd2\x4a\x3b\xdd\xda\xc7\x96\x03\x26\xc5\x36\x81\x08\x48\x25\ +\x99\x5f\xbf\xc7\x04\x02\x04\x8c\x7a\xb5\xb1\xb4\xe5\x4e\xab\x55\ +\x85\x8f\xaf\x9f\xcf\xe5\xe3\xc4\xe5\xe7\x5f\x4e\xbb\x64\xf6\x26\ +\xf2\x22\xce\xd2\xf5\xdc\xb1\xd1\x7c\x26\xd2\x20\x0b\xe3\x74\xbb\ +\x9e\x7f\xfd\xf2\xab\x45\xe7\xb3\xa2\xe4\x69\xc8\x93\x2c\x15\xeb\ +\x79\x9a\xcd\x7f\x79\x79\x78\xfe\x8b\x65\xcd\xfe\x96\x0b\x5e\x8a\ +\x70\x76\x8c\xcb\xd7\xd9\xef\xe9\xf7\x22\xe0\x7b\x31\xfb\xf0\x5a\ +\x96\xfb\xd5\x62\x71\x3c\x1e\xed\xb8\x2e\xb4\xb3\x7c\xbb\xf8\x38\ +\xb3\xac\x97\x87\x87\xe7\xe2\x6d\xfb\x30\x9b\xcd\x60\xdc\xb4\x58\ +\x85\xc1\x7a\x5e\x37\xd8\x1f\xf2\xa4\xaa\x18\x06\x0b\x91\x88\x9d\ +\x48\xcb\x62\xe1\xd8\xce\x62\xde\x56\x0f\xda\xea\x81\x1c\x3d\x7e\ +\x13\x41\xb6\xdb\x65\x69\x51\xb5\x4c\x8b\xc7\x4e\xe5\x3c\x8c\xae\ +\xb5\xe5\x6c\x8e\x6e\x55\xc9\x61\x8c\x2d\x10\x5e\x60\x6c\x41\x0d\ +\xab\x38\xa7\x25\x3f\x59\xfd\xa6\x30\xc7\xb1\xa6\x18\x21\xb4\x00\ +\x59\x5b\xf3\xc7\x6a\xad\x4e\x09\x40\xa1\x9c\x4c\x25\xed\x8e\x0e\ +\xf0\xef\xe1\xff\xb5\x41\x53\x60\x17\xd9\x21\x0f\x44\x04\x2d\x85\ +\x9d\x8a\x72\xf1\xf9\xcb\xe7\xab\xd0\x42\x76\x58\x86\x9d\x6e\x1a\ +\xf4\x7b\xe3\xf6\xb6\x24\xe5\x3b\x51\xec\x79\x20\x8a\x45\x53\x5e\ +\xb5\x3f\xc6\x61\xf9\xba\x9e\xbb\xc4\x76\x5c\xf8\x78\x55\xe1\xab\ +\x88\xb7\xaf\xe5\x6d\x69\x1c\xae\xe7\xb0\x56\xcc\xe8\xe5\xb9\xa3\ +\x4a\xce\xa5\x42\xdd\xf1\xea\x2a\x41\x36\xc3\xb6\x33\xcb\x1d\xcf\ +\xf5\x2f\x75\x9a\x25\xac\xc2\x2c\x90\x73\x82\x2e\xc5\x2e\xe6\x87\ +\x32\xdb\xc1\x1e\x07\x41\xc2\x8b\x22\x8e\xe2\x00\x1e\xb2\x74\x9f\ +\x1c\xb6\x71\xfa\xed\xcf\x2c\xdb\x7d\x2b\xb3\x6f\xfb\x5c\xbc\xc5\ +\xe2\x68\x37\x80\x5f\xc7\x13\xa7\x7d\x96\x97\xd6\x29\xdc\x03\x90\ +\x4b\x7f\x54\x78\x6e\x84\x2f\x20\x7d\x0e\x45\x54\xc8\x5a\x97\x55\ +\xc9\x27\x58\xd6\x45\x06\x52\xd8\x24\xc1\xf3\xdf\x72\x1e\xc6\xa0\ +\x9a\x97\x7a\x97\x9a\x7d\x89\xeb\xfb\xac\x6e\x03\xad\x8a\x32\xdb\ +\x37\x75\x61\xa1\xe5\x39\x91\xab\x83\x42\x2b\xc8\x92\x2c\x5f\x3d\ +\x46\x28\x12\x51\xf4\xa9\x2a\xca\x60\x2f\xe2\xf2\xbc\x42\x9f\xe6\ +\x6d\x9b\x2c\x8a\x0a\x01\xb8\xa3\x4e\x59\x85\x3a\xb4\x70\x7d\xea\ +\xce\x67\x0b\xc5\x68\x9d\x5a\xfe\x58\x87\x36\x61\xae\xe3\xa1\x25\ +\x9d\x4f\xce\x70\xb3\x89\xf8\x60\x86\x36\xf1\x91\x47\x29\x26\x9f\ +\x7e\x68\x7c\x6f\x64\x7c\x67\x7a\x58\xea\x47\xcb\xe1\xb0\x8c\x22\ +\x97\x61\x67\xd9\x0e\xfb\xbc\xe8\xe3\x5f\x97\xca\x27\x9e\x0c\xb6\ +\xab\x51\x00\x18\x24\x11\x01\xcc\x82\x27\x47\x7e\x2e\xae\x53\xa9\ +\x6c\x71\xf5\x9a\x0b\xf0\x1d\x8f\x23\x1b\xdb\xdd\xf7\xfe\x10\x20\ +\x6e\x57\x19\x9c\xd6\x73\x62\xbb\xbe\x47\x01\xa4\xb6\xf4\xbc\x9e\ +\x7b\xf6\xd2\xf3\x3c\x42\xdc\x6b\x69\x34\x5a\x37\x1a\xad\x9b\x03\ +\x6c\xc4\x86\xf5\x77\x6a\x6e\xeb\x09\x7c\xc9\x79\x5a\x80\x6f\xd8\ +\xad\xe7\x60\x36\x79\x7c\xfa\x00\xee\x1c\x23\x4c\x08\x7b\x42\xf0\ +\x0f\x9e\x1c\x86\x29\x7d\x82\x1e\xd8\xd2\x67\x2e\x7d\xa2\xb6\x4f\ +\x3c\x8a\x96\xe4\xe3\xa0\xb7\xaf\x69\x5c\x82\x7b\x3b\x14\x22\xff\ +\x43\xba\x88\x7f\xa4\x5f\x0b\x51\x83\xfe\xbc\x90\xc6\x51\xfd\x76\ +\x35\x5d\x69\xb7\xa1\xb4\xc4\xd6\x82\x36\xbc\x10\x75\xbf\x7b\xbe\ +\x15\xd5\xbe\x02\xaa\x51\xf5\xa9\x05\x9b\x2c\x0f\x45\xde\x88\x96\ +\xd5\xa7\x27\xaa\xb7\xfe\x12\x9b\x1e\xfa\x9b\x28\x7b\xbd\xca\xd1\ +\xb8\xbc\x78\xe5\x61\x76\x5c\xcf\xf1\xad\x50\x3a\x10\xd9\x2b\xf3\ +\x99\xe7\x20\x72\x2b\x96\x3b\x68\x51\xd7\xc6\xd4\x63\xde\x72\x20\ +\x85\x01\x2d\x8c\x6c\x17\x13\x46\xfc\x81\xf4\x90\xe7\x00\xa1\x95\ +\xf0\xb3\x80\x65\x55\x3f\x1a\x6d\x2f\x5e\xb3\xe3\x36\x97\xf0\x94\ +\xf9\x41\xdc\xb6\x94\x12\x6b\xb3\xc9\x4e\xe3\x62\xf0\x8f\x07\x19\ +\x18\xad\xc3\x65\x77\xf6\xa7\x6e\xaf\x87\x38\x14\x50\x18\xf1\xa4\ +\x18\xb4\x2c\x52\xbe\xb7\xb6\x49\xb6\xe1\x89\xa2\xc6\x31\x4e\x01\ +\x28\xab\xf6\xfd\x8e\xbb\x1c\x2c\xba\xae\xd1\x04\x02\x1f\x51\x45\ +\x8d\x53\xeb\xad\x6e\x45\x67\xb5\x68\xc7\x4f\xf1\x2e\xfe\x53\x84\ +\xd2\x35\xd4\x56\xdc\x03\xa6\x51\xd1\xf2\x2c\x83\xda\xe9\x2c\xcb\ +\x7a\x06\x29\x0b\x30\x63\xad\xb3\xcb\xf2\x18\x62\xc5\xa9\xeb\x3c\ +\x2f\x45\xe7\x6e\x91\x0c\x81\xc0\x77\x4e\x95\x8e\x55\x1a\xe8\xdf\ +\xca\xce\x5d\x59\x63\x04\x43\xdd\xaf\xca\x77\xa2\xe4\x21\x2f\x79\ +\x6b\x08\x4d\x09\xcc\x0d\x35\x2b\x03\xee\xb1\xfa\xe7\xe7\x5f\xaf\ +\xae\x33\x08\x56\xff\xca\xf2\xef\xad\x4b\x94\x15\xf8\x26\x3b\x00\ +\xd2\xd7\x70\x22\x83\x54\xb0\x92\x36\xce\xcb\x97\x78\x07\xea\x2d\ +\x89\xc6\x5f\x21\xde\x83\x49\x5e\x05\xbd\xca\x12\xac\xb6\xd3\x4b\ +\xb7\xb9\xb8\x10\x89\x51\xee\x15\x06\xbb\x58\x36\x5a\xfc\x51\xc6\ +\x49\xf2\xbb\x1c\xa4\xe3\xe2\xeb\x4e\xe3\x32\x11\x1d\xbf\xbf\xa8\ +\x67\xdf\x78\xe4\xce\xe2\x9e\x17\xcd\xea\xab\xa7\x6d\x8b\x4a\xcf\ +\x2c\xae\x1b\x9d\xf0\x8d\x00\x15\xfd\xbb\x14\xce\x06\xd2\x6d\x9e\ +\x1d\xf6\xbb\x2c\x14\x75\xf3\x06\xcd\xed\xc0\xc1\x8f\xf6\xd3\x1d\ +\xd8\x6a\x15\xa0\x1c\x78\x4e\x64\x7b\x3e\xf2\x3d\xec\x56\x9e\xb3\ +\x7d\x62\xf6\x92\xb8\xd4\x43\xf4\x89\xd8\x10\x55\x99\x43\xdc\x8f\ +\x6d\xb0\xcf\x21\xa2\x74\x36\xb0\x52\x1a\x82\xe5\xa7\xf5\xe0\x50\ +\x7e\xea\x07\xf3\xb3\x74\xff\xb8\xd2\x2d\xd6\x29\xbe\xa9\xd5\x58\ +\xdd\x58\xd5\xda\x66\xc7\x44\x55\x9c\x82\x69\x79\xd4\xed\x16\xd7\ +\xf1\x36\x82\x1d\x5e\x3d\x22\x14\x04\x10\x69\xe5\xc3\x35\xd2\x3a\ +\x97\xc7\xfc\x90\x00\x59\x7a\x13\x69\x16\x86\x10\x8a\xf3\xec\xbb\ +\x58\xd5\x0e\xbc\x7e\xbc\x38\x0c\xa0\x2c\xf5\x23\x28\x8f\xc8\x13\ +\x30\xe4\x72\x45\x9a\xb2\x90\x83\x17\xce\x73\x7e\x5e\xa5\xf0\x12\ +\xd1\x94\x5e\x87\xea\x32\x88\x7b\x43\x38\x56\x7c\x07\x28\xad\x11\ +\xf2\xd2\x80\xc9\x79\x48\xcc\x04\x93\xda\x9e\x64\xfe\x2e\xbd\x37\ +\x98\xd6\x08\x05\x6d\xe0\x5c\x2e\x29\x32\x13\x4e\x07\xdb\xf7\x47\ +\x12\xa9\x91\x24\xc4\xf3\x0c\x45\xd2\xbf\x04\xe7\xbb\xc3\xe9\xaa\ +\xd0\x8c\x22\xcc\x31\x37\x13\x4d\xec\xd8\x95\x99\x93\xbb\x2b\xa7\ +\xff\x53\xc2\x09\xaf\x71\xf7\x77\x98\x96\xf7\x53\x62\xc9\x6c\xda\ +\x27\xe8\x77\xf3\x9b\x96\xd9\xb6\x8e\xfa\x40\x6a\xe3\x45\x16\x51\ +\xc1\x68\x04\x33\xba\x81\x51\x23\x23\x9a\xa2\x98\x06\x70\xa2\x1b\ +\x20\xf5\x70\x21\x75\xc0\x31\x82\x0d\xdd\x62\xa8\x8d\x05\x59\x4b\ +\xb5\x6f\x64\xcc\x34\x1c\x35\xf2\x1f\x0b\xff\x54\x40\x6a\x62\x3e\ +\x96\x32\x95\x61\x04\x8a\x37\xbe\xf0\xfe\x89\xa0\xa9\xd7\x6d\x03\ +\x52\x41\x43\xfc\xf4\xb1\x1d\x3a\x01\xa5\x01\x74\x67\x08\xa5\x4e\ +\xc6\x33\x91\xa1\x34\x80\xf1\x0c\xb1\xd4\x44\x7a\x94\xc1\xda\x08\ +\xd2\x33\x02\xa3\x3e\xde\xa3\x0c\xd7\x14\xc9\x8f\x71\x50\xea\xa4\ +\x3e\xca\xf7\x6b\x53\xb1\xd4\xc5\x7e\x94\x21\xc7\x54\x20\x75\x26\ +\x7d\xd4\xaf\x88\x46\xa0\x39\x16\xae\x35\x10\x4a\x34\x95\xf6\x31\ +\x80\x52\x2a\x60\xd4\x98\x45\x53\x87\x1e\x23\x88\xa5\x02\x50\xad\ +\xf9\x34\x75\xca\xdc\x08\x7e\xa9\x80\x54\x57\x66\x6d\x8a\xad\x1b\ +\x40\x33\x55\x68\x6a\xcc\xb1\xa9\x4d\x3e\x24\xe6\x86\x22\xad\xd9\ +\x36\x75\x74\x37\x1a\x52\x6d\x79\x37\xf5\xf1\x02\xa3\xf1\xd4\x4a\ +\x40\xb1\xfa\x9b\x1e\x23\x40\x1d\x33\x70\x1d\x14\x54\xf9\x7e\x29\ +\x63\xbb\xa9\x28\xea\x63\xa0\xca\x2c\x92\xc9\x70\xea\xe4\x9f\xca\ +\x50\x64\x32\xa0\x9a\xd8\xa7\x32\x05\x62\x34\x96\x1a\xf3\x9c\x13\ +\x5f\x94\x83\x35\x18\x0a\xa8\x4e\xea\x39\xf1\xae\x49\x08\x7f\xef\ +\xa7\x89\x54\x80\xea\x22\x9e\xca\xd8\x8e\xb9\x1f\xbd\xfb\xec\x92\ +\x0a\x4d\xbd\x79\x4f\x75\x3e\xde\xe7\x3c\x14\xef\x1c\xd3\x31\x67\ +\xa9\x25\xf1\xa9\xf4\x9c\x32\x09\xf2\xee\x43\x91\x02\x46\x9d\x89\ +\x4f\x25\xf1\x34\x19\x50\xcd\x89\x4f\x65\x34\x32\x19\x53\x6d\x99\ +\x4f\xe5\x77\x1d\x46\xa3\xa9\x33\xf3\x39\xc1\x96\x0c\xa0\x9f\x0a\ +\x44\xf5\x66\x3e\x27\x4f\x81\xbc\x7b\x02\xaa\x82\x54\x5f\xe6\xd3\ +\x6c\x0a\xaa\xc2\x53\x73\xe6\x53\x99\x4e\x36\x82\x83\x8e\xa1\xa7\ +\xf9\x34\xa2\x3a\x97\xbc\x09\x42\xd7\x7b\xef\x6a\xaa\x40\x54\xeb\ +\xa1\x44\x35\xc3\x37\x19\x52\x5d\x67\x13\xd5\x71\xc9\x68\x34\x35\ +\xa6\xee\x0c\x27\x4f\x0a\x44\xb5\x9e\x54\x9c\x3a\xcd\x64\x00\x79\ +\x52\x41\xaa\xed\xc0\xa2\x5a\x45\x8d\x20\x4f\x37\xc0\xe9\x39\x5f\ +\xa7\x8e\xec\x94\x72\xfe\xee\xdf\x3a\x87\x18\x6a\x3d\x5c\x37\x71\ +\xec\xd3\x4c\x34\x35\x27\x98\x26\x98\xbc\x99\x78\xea\x3b\x56\x37\ +\x71\x50\xde\x50\x28\xb5\x9e\xa9\x9b\xba\x11\xc5\x04\x7a\x34\x80\ +\x53\xf3\x81\xba\xe9\xbf\xa9\x7e\xff\xdc\x68\x88\xa7\xc6\xd3\x74\ +\x6a\xe5\x34\x94\x18\x69\x3f\x4a\x37\x41\x93\xfe\x8f\x52\x4a\x7b\ +\x5e\xbe\x76\x56\xd2\xde\x4a\x9a\xa6\xb0\xa2\x2c\xb7\x82\x43\xfe\ +\xc6\xcb\x43\x2e\x86\x17\xbf\xca\xb6\xae\xbf\x64\xbd\x37\x69\x79\ +\xcb\xe0\xac\x71\xa4\xfe\x13\xb5\x19\xf3\x7d\x07\xb1\x59\x30\x43\ +\x4f\x0e\xb3\x71\xf5\xc7\x2c\x8e\xfa\x41\x85\x5a\x7d\xf9\xc9\x14\ +\x28\xae\x8d\x09\x42\xde\x12\x91\xfd\xa9\x91\xc8\xab\x53\x61\x49\ +\xab\xcd\xa1\x2c\xbb\x65\xff\xce\xe2\x74\x55\x81\xa7\x17\x1f\x4a\ +\xfc\x5b\x74\x7c\x9b\x2c\x2f\xe8\x38\xf4\x72\x85\xb1\x0b\xe8\x5c\ +\x11\x70\x9f\x90\xfa\x41\x85\x4e\xfd\x85\xcf\x34\x3a\x1e\x65\x88\ +\x79\x0e\xbe\x1b\x3a\x43\x7b\x74\x6d\x8a\x08\xed\xdf\xb3\x2b\xed\ +\xd1\x83\x50\x80\xdc\x9e\xd9\xf4\xae\xb2\xec\xc7\xe1\x91\xe2\xeb\ +\xad\xcf\x78\x68\x94\xbd\xb2\xc6\x1a\x31\x63\xaa\x3f\x0c\xe8\x58\ +\x85\x0c\x16\xd5\xd1\xd6\x1e\x54\xd8\x76\x7c\x0f\x39\x98\xba\xf7\ +\x30\xb3\xe7\xc5\xb6\xfe\x45\x24\x49\xbc\x2f\xae\xd7\x60\x76\xe7\ +\x74\xc8\x93\x0f\x8f\xc3\x8b\x7c\x3f\xfe\xb8\x9b\x18\x5f\x08\xc2\ +\x4b\x4a\x10\xfb\x9f\x16\xf2\xd0\x81\x56\x2a\x35\x40\xdb\xfa\x5b\ +\x79\x3f\x2d\x68\x28\x71\xb1\x4b\x5b\x47\x20\xef\xa5\x75\x88\x2d\ +\x2f\xb4\x75\x5b\x5d\x90\x9a\xe0\xb8\x36\xa1\xa0\xae\x2d\x2b\xa8\ +\xfc\x78\x5d\xda\xde\x22\xdd\x53\xae\x9e\xae\x7b\x1e\xc6\xff\x0d\ +\xfb\x54\xec\xf0\x85\x9b\x90\x7b\x01\x23\xa7\x0b\xde\xb0\xd5\xd9\ +\xe6\x02\x5b\x66\x23\xcf\x71\xbd\x56\xd0\x86\x19\xe2\xfb\x68\x49\ +\x5b\x35\x3d\xc9\xcb\x7c\x7d\x1b\x7b\x3e\xed\x90\xd0\xcb\xc1\x1c\ +\xec\x53\x8c\x48\x1f\x4a\xdb\x01\x67\xe7\x7a\xac\x07\xa5\x6b\xfb\ +\x18\x75\x48\x57\xe7\x52\xd1\x3c\x2b\x79\x29\x3e\x58\x2e\xb3\x7d\ +\xe6\x53\xdf\xfd\x78\xbd\x43\x16\x54\xf4\x59\xde\xe1\xfa\xf2\xf0\ +\x1f\xe4\x46\xc2\x2a\ +\x00\x00\x17\xb0\ \x00\ -\x00\x54\xb5\x78\x9c\xe5\x9c\x4b\xaf\xa3\x36\x14\xc7\xf7\xf7\x53\ -\x50\x66\xd3\xaa\x63\x30\xaf\xf0\x98\x24\xb3\xe8\xa8\x52\xa5\xae\ -\xda\xa9\xba\xac\x1c\x70\x12\x3a\x04\x23\x20\x37\x49\x3f\x7d\x6d\ -\x5e\x81\xe0\x3b\xed\xc8\x8e\x64\x25\x91\x46\x23\x7c\x8e\xc1\xfc\ -\xf0\xb1\xff\x1c\xfb\xb2\xfc\x78\x3e\x64\xda\x2b\x2e\xab\x94\xe4\ -\x2b\xdd\x32\xa0\xae\xe1\x3c\x26\x49\x9a\xef\x56\xfa\x1f\x9f\x7f\ -\x06\x81\xae\x55\x35\xca\x13\x94\x91\x1c\xaf\xf4\x9c\xe8\x1f\xd7\ -\x2f\xcb\xef\x00\xd0\x7e\x2a\x31\xaa\x71\xa2\x9d\xd2\x7a\xaf\xfd\ -\x92\x7f\xa9\x62\x54\x60\xed\xfb\x7d\x5d\x17\x91\x69\x9e\x4e\x27\ -\x23\xed\x0a\x0d\x52\xee\xcc\x1f\x34\x00\xd6\x2f\x2f\xcb\xea\x75\ -\xf7\xa2\x69\x1a\xbd\x6e\x5e\x45\x49\xbc\xd2\xbb\x0a\xc5\xb1\xcc\ -\x1a\xc7\x24\x36\x71\x86\x0f\x38\xaf\x2b\xd3\x32\x2c\x53\xbf\xba\ -\xc7\x57\xf7\x98\x5d\x3d\x7d\xc5\x31\x39\x1c\x48\x5e\x35\x35\xf3\ -\xea\xdd\xc8\xb9\x4c\xb6\x83\x37\x6b\xcd\xc9\x69\x9c\xac\x30\x0c\ -\x4d\x68\x9b\xb6\x0d\xa8\x07\xa8\x2e\x79\x8d\xce\x60\x5a\x95\xb6\ -\x91\x57\xd5\x86\x10\x9a\xd4\x76\xf5\xfc\x7f\x5e\x51\x45\x81\x16\ -\xf4\xdf\xe0\xde\x17\x18\x15\x39\x96\x31\xde\xd2\x7a\xd8\xc8\x71\ -\x6d\x7e\xfa\xfc\x69\x30\x02\x68\x24\x75\x32\x3a\x4d\xcf\x73\x72\ -\xd5\x09\xe4\x1c\x1d\x70\x55\xa0\x18\x57\x66\x5f\xde\xd4\x3f\xa5\ -\x49\xbd\x5f\xe9\x8e\x6b\x58\x0e\xfd\x79\x4d\xe1\x1e\xa7\xbb\x7d\ -\x7d\x5b\x9a\x26\x2b\x9d\xb6\xde\x0e\x83\xf6\x78\xd4\x39\xac\xd6\ -\xa1\x3b\x71\x34\x58\xa0\x11\xda\x86\xa5\x95\x96\xe7\xf8\xad\x4f\ -\x7f\x0b\x51\x42\x62\xd6\x26\x7a\x4a\x7c\x48\xd1\xb1\x26\x07\xfa\ -\xd4\xe2\x38\x43\x55\x95\x6e\xd3\x98\x1e\x90\xbc\xc8\x8e\xbb\x34\ -\xff\xab\x28\xf1\x6b\x8a\x4f\x46\x8f\x6e\xb8\x0e\x3e\x17\xa4\xac\ -\xc1\x39\x29\x28\xc0\x85\xcf\x35\x5e\x7a\xe3\x9a\x5a\x97\x09\xde\ -\x56\xcc\xab\xbd\x1b\x76\x44\x6f\xc7\xd7\x35\xb3\xb1\x0e\x8d\x63\ -\x2d\x4b\xd8\x35\xaf\xbe\x1b\x54\xb5\xc4\x34\xad\x40\x3b\xda\xbb\ -\x32\x52\xae\xf4\x77\xdb\xe6\xd7\x19\x36\xa4\x4c\x70\xd9\x9b\x16\ -\xcd\x6f\x62\x22\xf4\x09\xa4\xf5\xa5\x8d\xa7\xee\xdc\x7d\x7b\xd9\ -\x59\x07\x3b\xe4\xdb\xab\x3d\x4a\xc8\x69\xa5\xdb\xb7\xc6\x7f\x08\ -\x39\xac\x74\xdf\x08\xad\x00\xba\x96\x7f\x6b\x8e\xcf\x2b\x1d\x38\ -\x8e\x61\x3b\xd0\xf7\x9c\x99\x95\x35\xc8\x35\x1c\x3f\x70\xec\xd9\ -\x99\xe3\x63\x59\xd2\x88\x03\x19\xba\x60\x7a\x57\xcd\x7f\x56\xe7\ -\x54\xed\xc9\x69\x57\x32\x3a\x75\x79\xc4\xb7\x35\x99\x05\x6c\x36\ -\xe4\xcc\x37\xd3\x0e\x70\x64\xb1\x0c\x8e\x79\x5a\xd3\x78\x29\xce\ -\xe3\xb3\x1e\xd3\x04\x57\xfc\x8a\x55\x8e\x0a\xb0\xcb\xc8\x06\x65\ -\x7c\x87\x53\x9a\x53\x4a\xa0\xeb\xda\x96\x33\x3c\x84\x5b\x8f\xbe\ -\x9f\xfb\x30\x78\xc3\x83\xb6\x7d\xf6\x20\x3a\xd3\xe5\x6d\xd3\x01\ -\x9d\xd3\x43\xfa\x0f\xa6\x60\xac\xa6\xdf\xd1\xbe\x35\xc1\xd2\x56\ -\xd3\xb4\xfa\xc2\x62\xf6\x7c\x61\x65\x7a\x5f\xc8\x78\xb2\x02\x3b\ -\x0c\xfd\xa1\x90\x94\x29\x0d\x85\x51\x73\xfa\xa2\xcb\xb8\x88\x45\ -\x38\x1d\xa0\xcf\x4d\x07\x6b\xba\x9f\x7f\x6b\xbb\x8c\x6d\x5d\xbf\ -\x37\xe7\x1d\xbf\x29\x3f\xe0\x1a\x25\xa8\x46\xd7\x28\xe8\x4b\x68\ -\xdb\x60\x7f\x67\x74\xb0\x8c\x7e\xfb\xf4\xf3\xba\xbb\xd0\x32\x8e\ -\xa3\x3f\x49\xf9\xa5\xbf\xae\xa6\x31\x07\xb4\x21\x47\x4a\x5a\x5f\ -\x0f\xc5\xcb\x24\x8e\xe8\xf0\x46\xc3\x7e\x9d\x1e\x68\xdf\x66\x23\ -\xe3\x8f\x74\x38\x5b\x9a\x57\xc3\xc4\x99\xc1\xba\x9e\xb4\x3d\x6d\ -\x89\xdb\x71\x92\x3b\x59\x24\xf1\x21\x65\x95\xcc\xdf\xeb\x34\xcb\ -\x7e\x61\x17\xe9\xee\x78\x74\xd2\xb4\xce\xf0\xb5\x70\x69\x76\xad\ -\xef\xee\xcd\x1c\xdd\xdc\xd2\xec\xef\xbe\x39\xda\x5d\xa9\x4c\x82\ -\x62\x78\xd0\x19\xda\x60\xda\x43\x7f\x65\x46\x6d\x66\xdd\x95\xe4\ -\x58\x1c\x48\x82\xbb\xea\x03\x4d\x1c\xd7\xc3\x23\xab\x2f\x19\xb5\ -\x6f\x69\xeb\xa3\x77\x10\xc6\xf1\x76\xfb\x81\x1d\x80\x6e\x9c\x88\ -\xac\xf6\xb0\x3c\x66\x74\xbc\x7b\xc5\x39\x49\x92\x0f\x55\x5d\x92\ -\x2f\x38\xea\x46\xa6\xee\xb0\x0d\x86\x08\xf6\x87\x14\x0c\x2e\x33\ -\xda\x49\xeb\xc8\xed\xcb\x12\x44\x87\x97\xb2\x44\x97\x28\xa7\x33\ -\x7a\x5f\x3a\x5c\x6a\xd2\x3f\x59\x2b\xbd\xc0\x09\x87\xc2\x2e\xd8\ -\x5c\xc3\x6e\xba\xd6\xd5\xd0\xc7\xd8\xdc\x32\xe9\xcc\x17\x9e\x47\ -\x39\x71\x29\x9b\xae\xeb\xda\xec\xe7\x0c\x0f\xf2\x6b\xc0\x10\x4a\ -\x5c\xc5\x80\x01\x4b\x10\xd9\xbc\xf0\x2e\xe8\x16\x8b\x00\x2a\x87\ -\x0e\x04\x82\xf0\x02\xc3\x63\x7a\xc6\x09\xee\x0b\xcf\x75\x3d\x4f\ -\x3d\x78\x50\x10\x9e\x65\x1b\x77\xe5\xb6\xdd\xda\xc8\x46\xca\x71\ -\x73\x44\xb1\xf9\xed\x74\xfb\x8c\xec\x80\x2f\x08\xcf\xb6\x8c\x26\ -\x60\xdd\x67\x84\x17\x00\x4f\x14\x9f\x67\x2c\x9e\x91\x1c\x04\xa2\ -\x51\x6b\x87\x46\x30\xd5\xcf\xcf\xa3\x50\x80\x2b\x08\x8f\xab\x51\ -\xa0\x34\x68\x8a\x6a\x13\x61\x69\xc7\x55\x27\xf2\xb0\x29\xaa\x4a\ -\x84\xe7\x88\x5b\x5d\x22\x8b\xd8\x76\x1b\x86\x0a\x12\x73\xc0\x42\ -\x14\x18\x4f\x91\x3c\x38\x35\xe0\x03\x5b\x10\x1b\x57\x8b\x3c\x3a\ -\x36\xaa\x41\x80\xe8\x5b\xfe\xad\x0a\x91\x37\xa4\x29\x98\x11\x11\ -\x7e\x47\x9d\xe4\x44\x26\x63\xdb\x63\x8a\x8d\x40\x14\x18\x57\x6d\ -\x48\x05\xa7\xaa\xe0\x10\x0d\x4c\xae\xe0\x90\x4a\x4e\x55\xcd\x21\ -\x3c\x85\xde\x68\x0e\x89\xd0\x02\xc8\x7e\xca\x41\x73\x84\xe7\x4f\ -\xae\xec\x78\x7c\x70\x54\x79\x08\xbf\x8c\xf2\x94\xc7\x13\x90\x63\ -\xe2\x43\x74\x76\xb8\x15\x1f\x4f\x80\x0d\x02\x47\x3c\xf1\xc6\xcb\ -\x7f\x48\x9d\x1a\x54\xd4\x6e\x50\x38\xf5\x31\x51\x6f\xf3\xf9\xf5\ -\x31\x25\x9c\x2b\x3c\x37\x70\x35\x9c\x7c\x7c\xaa\x0a\x39\x4b\x38\ -\xd3\xcb\x95\x72\xf2\x01\xaa\xaa\xe7\x7c\x61\x2d\x7c\xab\xe8\x64\ -\xb3\x4b\x5c\x25\x27\x0b\x07\x2c\xee\x23\xec\x9e\x84\x1f\xcb\x2b\ -\xdd\x67\x95\xeb\x59\x00\x36\x19\x26\xe1\xc5\xe9\x5b\x99\xf7\x2c\ -\xf4\x98\xd6\xb3\x85\x57\x1e\xb8\x6a\x4f\x36\x42\x36\xf9\xaa\x87\ -\x10\x8a\xbe\x9c\x4d\x14\xdf\x3c\x92\x1f\x91\x99\x25\x9c\x3f\xe1\ -\xea\xbd\x67\x81\x17\x08\x4f\x18\x5c\xb5\xf7\x2c\xf8\xa0\x70\x4e\ -\xe0\x56\xeb\xc9\x26\x07\x21\x7d\x34\xea\x91\xa3\x33\x85\xf0\x5a\ -\x2b\x4f\xea\xc9\xc7\xe7\xba\x48\xc1\x5d\x25\xbe\xf8\x7e\x1c\x9e\ -\xd0\x93\x8d\xcf\x46\xfe\x56\xbd\xd4\x4a\x2b\xf4\x84\x33\xa1\x37\ -\x32\x4f\x36\xbb\xc0\x47\x28\xc1\xea\xb1\x6b\x52\x7a\x77\xd9\xd3\ -\x24\x9b\x20\xcb\x10\xa8\x37\x6b\x88\xef\x32\x99\x2e\xcb\xce\x86\ -\xc1\x47\x84\xc6\x12\x7b\x77\x11\x7a\xcf\x82\xaf\x49\xec\xdd\x25\ -\xb3\xf7\x2c\x04\x59\x66\x4f\x34\x25\x3f\x5b\xab\x95\xcc\x4e\x59\ -\xb5\xb7\x10\xd6\x2b\xfc\x25\x5b\xe9\xfc\x54\x95\x7b\xb6\xf0\xf0\ -\xc7\x5f\xb9\x95\x0c\x50\x65\xc1\x17\x4a\x97\x7c\xb2\xe9\xa9\x2c\ -\xf9\x6c\xf1\xbc\x28\x77\x1d\x57\x32\xc2\x4d\x9c\x38\x9e\x8a\x1d\ -\x50\x7c\x4f\x36\x3f\x51\x35\x83\xfa\xa0\xfc\x68\xf8\xde\x27\x55\ -\xf5\x24\x00\x21\x9d\x83\x65\x6f\x35\x93\xcd\x4e\x59\xf9\x62\xdf\ -\x47\xbe\xc8\xe7\xa7\xaa\x7c\x71\x84\xa5\x33\x3f\x5f\x25\x19\xa0\ -\xca\xf2\x45\xfe\x9f\xe0\xc9\xa6\x17\x04\x08\xa9\xf7\xe6\x06\x81\ -\x2b\x3c\xf5\x4e\x17\xd6\xc6\x18\x1f\x91\x58\xb3\x8b\x4a\x78\xb6\ -\xe5\xcb\x95\xc7\x67\xd7\x64\x5a\x84\xc5\x32\x5f\xab\x3c\x3e\xbd\ -\x66\xff\x94\xf0\x8b\xda\x4c\xa8\xc8\x03\xa7\xac\x46\x59\x48\x78\ -\x45\xe3\xab\x14\x99\xf0\x54\x15\x28\x74\xbc\xbb\xcf\xde\x29\x89\ -\xf4\x54\x56\x27\x6c\x9e\x95\xbd\x71\x4a\xe6\x70\xa7\x74\x66\xc5\ -\xba\xcf\xae\xa9\x6f\xe7\x57\xa0\x7a\xcf\xe5\xd7\x7d\x5d\xe1\x6b\ -\x78\x1c\xc3\x76\x21\xf4\x16\xd0\x2d\xce\xbd\x25\x4b\x73\x1c\xa3\ -\x22\xda\x1c\xeb\x7a\x5c\xf6\x37\x49\xf3\xa8\xc1\xf8\x36\x29\xf6\ -\x89\x2f\xad\x1f\x90\xfc\xf7\x81\x11\x86\xbe\x6f\xc1\x50\x8b\x35\ -\xf8\xde\x0a\x0d\xbb\xf9\x93\x07\xeb\xed\x83\x09\x73\x76\x67\x8e\ -\xbf\x08\x47\xef\xc0\xd7\xef\xca\x91\x9c\x36\xb3\x26\x25\x88\x8f\ -\xe5\x2b\xaa\x8f\x25\x66\xac\xfe\x9b\x4a\xb7\x54\xf1\x75\x2a\x5e\ -\x10\xc2\xd0\xb3\x6c\x89\x54\x7c\xc3\x5d\xb4\x54\xac\xa0\xfd\x2c\ -\xa2\x43\xa9\x0c\x77\xee\xbc\x87\x6f\x1f\xcc\xa9\x04\xae\xff\xed\ -\x4c\xde\x8a\xb4\x51\xef\x67\xc3\x7d\xb3\x53\x71\x02\xc4\x36\x2c\ -\xdf\x83\x96\x1d\x38\x32\xc3\xc9\x0e\xc3\xd9\xae\x6b\xc7\x9e\xc5\ -\xce\xa8\x88\xfb\x61\xba\x0b\xaf\x90\x45\x8e\x47\x47\x76\xe8\x8c\ -\xbf\xb6\x41\x5d\x1d\x23\x80\x6e\xe0\x07\xde\xf0\xf1\xba\xdd\xfa\ -\x65\xc9\x3e\x1e\xb7\x7e\xf9\x17\x80\x2a\x7a\x3f\ -\x00\x00\x06\xfb\ -\x00\ -\x00\x17\xd8\x78\x9c\xed\x58\x5b\x8f\xe3\xb6\x15\x7e\x9f\x5f\xa1\ -\x6a\x51\x24\x8b\xae\x28\x5e\x74\xa1\xe4\x4b\x80\x66\xb1\x40\x80\ -\xf4\xa5\x49\xd0\xc7\x40\x96\x68\x0f\x3b\xb2\x68\x50\xf4\xd8\xde\ -\x5f\x9f\x43\xdd\x2c\xc9\xf6\x76\xda\x4d\x51\x14\xad\x3c\x03\x5b\ -\xe7\x1c\x92\xe7\xf2\x7d\x87\x94\x96\xdf\x9d\xf7\xa5\xf3\x2a\x74\ -\x2d\x55\xb5\x72\x09\xc2\xae\x23\xaa\x5c\x15\xb2\xda\xad\xdc\x5f\ -\x7e\xfe\xe4\x71\xd7\xa9\x4d\x56\x15\x59\xa9\x2a\xb1\x72\x2b\xe5\ -\x7e\xb7\x7e\x5a\xfe\xc1\xf3\x9c\xef\xb5\xc8\x8c\x28\x9c\x93\x34\ -\xcf\xce\x0f\xd5\x4b\x9d\x67\x07\xe1\x7c\xfb\x6c\xcc\x21\xf5\xfd\ -\xd3\xe9\x84\x64\x27\x44\x4a\xef\xfc\xf7\x8e\xe7\xad\x9f\x9e\x96\ -\xf5\xeb\xee\xc9\x71\x1c\x58\xb7\xaa\xd3\x22\x5f\xb9\xdd\x80\xc3\ -\x51\x97\x8d\x61\x91\xfb\xa2\x14\x7b\x51\x99\xda\x27\x88\xf8\xee\ -\xd5\x3c\xbf\x9a\xe7\x76\x75\xf9\x2a\x72\xb5\xdf\xab\xaa\x6e\x46\ -\x56\xf5\xbb\x91\xb1\x2e\xb6\x83\xb5\xf5\xe6\xc4\x1a\x23\x92\x24\ -\x89\x8f\xa9\x4f\xa9\x07\x16\x5e\x7d\xa9\x4c\x76\xf6\xa6\x43\xc1\ -\xc7\x7b\x43\x29\xc6\xd8\x07\xdd\xd5\xf2\x6d\x56\x69\x0d\x09\x3d\ -\xc0\xff\x60\xde\x0b\x50\xad\x8e\x3a\x17\x5b\x18\x27\x50\x25\x8c\ -\xff\xf1\xe7\x8f\x83\xd2\xc3\xa8\x30\xc5\x68\x9a\x3e\x9f\x93\x55\ -\x27\x49\xae\xb2\xbd\xa8\x0f\x59\x2e\x6a\xbf\x97\x37\xe3\x4f\xb2\ -\x30\xcf\x2b\x97\x05\x88\x30\xb8\xc2\x46\xf8\x2c\xe4\xee\xd9\xcc\ -\xa5\xb2\x58\xb9\xe0\x3d\x4d\x78\x7b\x3f\x02\x07\x69\x0d\xba\x89\ -\xd3\x41\x83\x51\x42\x11\x71\x34\x09\x59\xdc\xda\xf4\x21\xa4\x85\ -\xca\xad\x4f\x30\xa5\xd8\xcb\xec\x68\xd4\x1e\xaa\x96\xe7\x65\x56\ -\xd7\x72\x2b\x73\xb8\x51\xd5\xa1\x3c\xee\x64\xf5\xeb\xa9\x71\xe7\ -\x57\xa3\x54\x89\xfa\xf4\x0d\x6b\x89\xf3\x41\x69\xe3\x9d\x8b\x03\ -\x24\x31\x8a\xef\x2a\x2f\xbd\x72\x0d\xda\x65\x21\xb6\xb5\xb5\x6a\ -\x23\xb2\x77\x10\x52\xec\x3a\x7e\xa3\x1d\x1c\xb4\xde\x15\xaf\x52\ -\x9c\xae\xb6\x9b\xac\x6e\xb3\xe6\x38\x87\x6c\x07\x08\x2b\x95\x5e\ -\xb9\xef\xb6\xcd\xd5\x29\x36\x4a\x17\x42\xf7\xaa\xa8\xb9\x26\x2a\ -\x05\x55\x90\xe6\xd2\x72\xaa\x9b\xbb\xf7\xd7\xce\x3a\xe8\xf1\x7d\ -\x7d\xfd\x9c\x15\xea\xb4\x72\xe9\x5c\xf9\x59\xa9\xfd\xca\x8d\x51\ -\x42\x38\x0e\x48\x3c\x57\xe7\xe7\x95\xeb\x31\x8c\x58\x42\x93\xe8\ -\x56\x0b\x0b\x86\x28\x20\x41\xcc\xd8\xcd\xcc\xf9\x51\x6b\x60\x9d\ -\x57\x66\x17\x01\x51\x35\x5f\xa4\x33\xaa\x9f\xd5\x69\xa7\x6d\x76\ -\x8c\x3e\x8a\xf9\x48\xab\xf1\x36\x1b\x75\xbe\xaf\x06\x10\x1c\x2d\ -\x9f\xbd\x63\x25\x0d\x70\xe6\x70\x1e\xcf\x7a\x94\x85\xa8\xef\x0f\ -\xac\xab\xec\xe0\xed\x4a\xb5\xc9\xca\xfb\x06\x27\x59\x41\x96\xbc\ -\x0e\xde\x84\x0d\x45\x98\x5b\xf4\x58\x8f\x31\x7f\x60\x01\xbe\xdf\ -\x14\xa2\x53\x5d\x1e\xab\xf6\xd9\x59\xee\xe5\x67\x01\x89\x21\x37\ -\x59\xb1\x91\x8d\xd3\xb2\x6e\x0c\x96\x93\xb4\xb5\x63\x1c\xc7\x5c\ -\x2c\xaf\xcf\x17\x2b\x73\x7b\xa1\xcd\xb7\x15\xd0\x24\x89\x07\xa1\ -\xd2\x12\xe8\x32\x72\xb7\x17\x5d\xc6\x22\xdb\x05\xa0\x89\x9f\x1b\ -\x00\x36\xf0\x8c\xe7\xba\xcb\x58\xd7\xf1\xc2\xbf\x25\x46\x23\xdf\ -\x0b\x93\x15\x99\xc9\xae\x2c\xe9\x25\xe0\x1b\xee\x23\x83\x86\x9a\ -\xfe\xf5\xe3\xa7\x75\xb7\xd0\x32\xcf\xd3\xbf\x29\xfd\xd2\xaf\xeb\ -\x38\xd6\x20\xdb\xa8\x23\x54\xc2\x5d\x0f\xe2\x65\x91\xa7\xd0\x02\ -\xa1\x35\xac\xe5\x1e\xb0\x6f\xbb\xe7\x9f\xa0\xe5\x2d\xfd\xab\x62\ -\x62\x6c\x93\x75\x9d\xb4\x9d\x56\x8b\xb6\x97\xde\xdd\x50\x8a\x7c\ -\x2f\xed\x20\xff\x27\x23\xcb\xf2\x07\xbb\x48\x17\xf1\x68\x52\x69\ -\x4a\x71\x15\x2e\xfd\xce\xfb\x2e\x36\x7f\x14\xdc\xd2\xef\xa3\x6f\ -\xee\x76\xd7\xac\x4c\x48\x33\x14\xba\xcc\x36\x02\x10\xfc\xa3\x55\ -\x3a\xb7\x38\xd1\xea\x78\xd8\xab\x42\x74\xc3\x87\x6c\x8a\xdc\x0c\ -\x25\x33\x97\x12\xf4\x4d\xc3\x49\xdf\xe1\xe6\x5a\x14\xb2\x3e\xc0\ -\x08\xd8\x17\x4a\x59\x89\x85\x82\x86\xbc\x2d\xd5\x29\x7d\x95\xb5\ -\xdc\x94\x62\xd1\x7c\xcb\x12\x22\x1f\x44\x5d\xdb\x49\xa1\x65\xf3\ -\xa4\xb9\x16\x5b\xc8\x08\x4c\x59\xd8\x4f\x73\xe3\xf5\x46\xa4\xbd\ -\xd5\xc7\x52\xa4\x95\xaa\x3e\x43\x57\x5b\xd4\x46\xab\x17\x91\x76\ -\xdd\xb0\xbb\x6d\x09\x98\x52\x84\x39\xb3\xfb\x2b\xef\xe5\xd6\x2f\ -\x88\x31\xdd\x1c\x8d\x19\xcb\xfe\xae\x64\x95\x42\x49\x84\xee\xa5\ -\xcd\x4d\x09\x5c\x32\x69\xd0\xcb\x8a\x0c\xba\xa0\xd6\x10\x21\xac\ -\x2e\xc6\x52\xb5\xdd\xd6\xc2\xc0\x82\x9c\x51\x8e\x49\x38\x2c\x78\ -\x75\x7d\x9f\xe9\x17\xa1\xdb\x91\xa2\xca\x20\x78\x6f\x93\xe5\x2f\ -\x36\xd9\x55\x91\x66\x39\xb4\xa4\x63\x09\x07\x98\x09\xd9\x6c\xca\ -\x19\x26\xc4\x0b\xbd\x60\x50\x74\xdd\x25\xe0\x83\xa4\xef\x26\x04\ -\xa3\x19\xb5\x80\x6f\x11\x0a\x9a\xf2\x90\x41\x68\x89\x96\x20\x3a\ -\x15\xea\xb3\x6d\xc5\x21\x86\x2e\xce\x47\x52\xb0\x65\x28\x61\x24\ -\xc6\x71\x32\x40\xf4\xff\x50\xf8\x4f\x42\xe1\x5f\x05\x02\x6d\x8f\ -\x55\x2c\xf8\xdf\x06\x42\x4c\x22\x12\x61\xf6\xdf\x8e\x83\xb7\xa0\ -\x80\x77\x15\x1f\xa3\xc0\x0b\x51\x23\x63\xe1\x18\x06\x94\xa0\x19\ -\x36\x1e\xc3\x20\x42\x11\x67\x09\x86\x03\xdb\x00\x83\xdd\xe0\xe1\ -\x17\xb7\x98\xf1\x9e\xe4\x5d\xb1\x69\x74\x56\xd5\x76\x5f\x85\x5d\ -\x3c\x33\x5a\x9e\xbf\xc5\x28\x4c\x48\xc0\xe3\x30\xfc\x80\xed\x07\ -\x85\x51\xc4\x39\x21\xc1\x87\x18\xc5\x09\xc7\x2c\x09\x3f\x00\x9c\ -\xa3\x98\xc7\x31\x79\x3f\x6c\xdd\x13\x38\x7e\xe1\x40\xfe\xd8\xe4\ -\x7c\x6b\x72\xeb\x1d\x01\x97\xe0\x61\x88\x07\x0c\x1c\x08\xb8\x75\ -\x8f\x45\xf0\x23\x4e\xac\xaf\xef\x47\x63\x6d\xba\x00\x71\x38\x0c\ -\xe3\x51\x12\xdb\xe4\x52\x14\x06\x38\xe2\xf1\x58\x0e\xe6\x01\x9c\ -\x87\x43\x88\x34\x19\x89\x6d\x29\x28\xa2\x84\x72\x4a\x47\xe2\xa1\ -\xce\x31\xe2\xdc\x6a\x47\xba\x0e\x15\xb6\xae\x24\x4a\xa6\x31\x77\ -\x28\x82\x93\x12\x1b\x89\x3b\xfa\x76\x54\x03\x97\x8b\xe0\x31\xd5\ -\xc4\xab\xa8\x54\x51\x0c\x54\xeb\xd8\x3e\xa3\x1a\xe1\x0c\x62\xc7\ -\xc9\x3f\xcf\xa0\x61\xcd\xd1\xb1\x68\x56\xdd\x99\xbf\x59\x06\xeb\ -\x7f\xa5\xbf\x38\xa0\x38\x48\x48\xfc\x35\xfe\xde\xe6\x99\xc5\x93\ -\xf4\x7f\xa1\x32\x43\x41\x13\x44\x08\x65\x01\x99\x62\x80\x85\xd0\ -\x11\x31\x0f\xa2\x29\x62\xa8\xe5\x44\x12\x47\xfc\x0d\x00\x6b\x01\ -\xc9\x21\x46\x82\xf9\x5b\x40\x1e\xf3\x84\xc5\x34\x61\x00\xf2\x88\ -\xb0\x04\xfe\x78\x0b\xf2\x87\x75\x79\x3c\x15\x8b\x28\xf4\x93\xc4\ -\x4e\x05\x29\xc1\x3c\xe2\xf7\xf8\xc2\x10\xc1\x98\x85\xa3\xfe\xf4\ -\x45\xbe\x10\x0a\x8e\x01\x5c\xe3\x69\xae\x28\x43\x8c\xe2\x88\x26\ -\x77\xd2\x4b\x31\x82\x2a\x33\xf6\xc6\xaa\x8c\xea\x98\x3c\xe2\xcb\ -\x76\xdb\xe0\xe9\xab\xf0\x47\x50\x12\x04\x50\xc8\xf8\xdf\xc3\x97\ -\xdf\xa7\x1b\x4e\xa2\xce\x9b\xeb\xab\xa3\xc6\x71\x44\x83\x24\xfa\ -\xbd\x59\x37\x41\xca\x1b\x58\x07\x3a\x4a\xa1\xc6\x74\x8a\x24\xc2\ -\x10\x9f\x9e\xa5\x1a\xdc\x79\x01\xb4\x0b\x4c\x18\x0f\x84\x47\xde\ -\x82\xd5\x16\xdb\x94\x90\x38\x9a\x30\xf8\x31\x5f\x08\x8e\x09\x09\ -\x29\xf0\x25\xc6\x2c\xe0\x2c\x9c\x51\x6f\xe9\xef\xba\x1f\x46\x9c\ -\x87\x4a\xc3\x83\x6a\xda\xbc\x73\x5b\xb9\x07\x78\x08\x15\xfa\xf5\ -\x7a\x80\xe8\xab\xa7\x2a\xe3\x35\xbf\x21\x9d\xf0\x38\x5b\x2e\x1a\ -\x49\xfb\xc6\x6b\x22\xaa\xe5\x67\x91\x02\xc5\x78\xfb\x08\x91\x1c\ -\xce\x0b\x7b\x38\xea\xde\x5f\xa4\xf8\x8f\xad\xd9\x36\xdb\xcb\xf2\ -\x92\xd6\x10\x89\x07\x2b\xca\xed\xa2\x14\x06\xaa\xe8\x75\x8f\xf6\ -\x29\x86\x81\x27\xa5\x8b\x89\xa0\x6f\xdd\x96\x3c\x73\x10\x75\x90\ -\x19\x57\xbb\xc7\x4b\xf7\x8a\xe0\x5a\x26\x48\x38\x87\x2d\xd8\x5e\ -\xd7\x9e\x66\xb3\x7d\x35\x69\xde\x14\x41\x92\x18\xf4\x77\x77\xbd\ -\x34\xe0\x46\x35\x02\x75\xff\x92\x41\x2b\x9b\x1e\x1b\xe1\x0c\x51\ -\xcd\x00\x86\xc3\x59\x47\xbe\x5d\x76\xbe\xf0\x3f\xca\xf9\x6b\xa6\ -\x65\x56\x99\x7b\x75\xd8\xa8\xb2\xe8\xaa\x60\xb4\x30\xf9\xf3\x9d\ -\xca\xc0\xd1\x83\x52\x0e\x27\x91\x78\x56\x19\xc0\x72\x38\xa9\xcd\ -\x27\x2d\xc4\x5f\x54\xa5\x16\x5e\xcf\x72\xaf\x9d\xe7\x20\xf2\xe1\ -\xd5\x67\xfa\x4d\x6f\xe6\xfc\x19\x56\xff\x66\x5a\xa2\x47\x75\x58\ -\xc3\xef\xa5\xdf\xa4\x68\x0d\xdf\x90\xe6\xf6\xa5\x04\xa0\x73\x69\ -\xdf\x9d\xac\x9f\x7e\x03\x05\x60\xed\xea\ -\x00\x00\x05\xe6\ -\x00\ -\x00\x1e\xf2\x78\x9c\xdd\x59\xdd\x93\x9b\x36\x10\x7f\xbf\xbf\x42\ -\x25\x2f\xed\xd4\x7c\x7f\x13\xdb\x79\x48\xa6\x93\xcc\xb4\x2f\x6d\ -\xda\x3e\x66\x30\xc8\x36\x0d\x20\x57\x88\xb3\x9d\xbf\xbe\x2b\x40\ -\x02\x0c\x9e\xb9\xd4\x97\xe4\x2e\xcc\xdc\x1c\xda\x5d\x49\xbb\x3f\ -\xed\xae\x96\xf5\xf2\xd5\xa9\xc8\xd1\x3d\xa6\x55\x46\xca\x95\x62\ -\x6a\x86\x82\x70\x99\x90\x34\x2b\x77\x2b\xe5\xcf\xf7\xbf\xa8\x81\ -\x82\x2a\x16\x97\x69\x9c\x93\x12\xaf\x94\x92\x28\xaf\xd6\x77\xcb\ -\x1f\x54\x15\xbd\xa6\x38\x66\x38\x45\xc7\x8c\xed\xd1\xbb\xf2\x63\ -\x95\xc4\x07\x8c\x7e\xdc\x33\x76\x88\x74\xfd\x78\x3c\x6a\x59\x47\ -\xd4\x08\xdd\xe9\x3f\x21\x55\x5d\xdf\xdd\x2d\xab\xfb\xdd\x1d\x42\ -\x08\xf6\x2d\xab\x28\x4d\x56\x4a\x37\xe1\x50\xd3\xbc\x11\x4c\x13\ -\x1d\xe7\xb8\xc0\x25\xab\x74\x53\x33\x75\xa5\x17\x4f\x7a\xf1\x84\ -\xef\x9e\xdd\xe3\x84\x14\x05\x29\xab\x66\x66\x59\xbd\x18\x08\xd3\ -\x74\x2b\xa5\xb9\x36\x47\xbb\x11\x32\xc3\x30\xd4\x0d\x4b\xb7\x2c\ -\x15\x24\xd4\xea\x5c\xb2\xf8\xa4\x8e\xa7\x82\x8e\x73\x53\x2d\xc3\ -\x30\x74\xe0\xf5\x92\x0f\x93\x8a\x2a\x00\xf4\x00\x7f\x52\x5c\x10\ -\xb4\x8a\xd4\x34\xc1\x5b\x98\x87\xb5\x12\x33\xfd\xcd\xfb\x37\x92\ -\xa9\x1a\x5a\xca\xd2\xc1\x32\x02\xcf\xd1\xae\x23\x90\xcb\xb8\xc0\ -\xd5\x21\x4e\x70\xa5\x0b\x7a\x33\xff\x98\xa5\x6c\xbf\x52\x6c\x47\ -\x33\x6d\x78\xdc\x86\xb8\xc7\xd9\x6e\xcf\x2e\xa9\x59\xba\x52\x40\ -\x7b\x2b\x0c\xda\xf1\xc0\x39\xcc\x56\xa0\x5b\x38\x92\x1c\x43\x0b\ -\x2d\xcd\x44\xd4\x74\x6d\xbf\x95\x11\x26\x44\x29\x49\xb8\x4e\xb0\ -\x24\x2e\xb2\xb8\x66\xa4\x80\x53\x4b\x92\x3c\xae\xaa\x6c\x9b\x25\ -\x30\x20\xe5\x21\xaf\x77\x59\xf9\x21\x4e\xd3\x0f\x55\xb6\x2b\x3f\ -\x30\x42\x72\x4d\x00\x28\x77\xc3\xa7\x03\xa1\x4c\x3d\xa5\x07\x80\ -\xd1\xf3\x67\x99\x67\xc1\x5c\x03\x77\x99\xe2\x6d\xc5\xa5\x5a\x9b\ -\xf8\x08\x8c\xf2\x15\xa4\x37\x5c\xa9\x22\xd7\x2f\xbd\xcf\xf0\xb1\ -\x97\xdd\xc4\x55\x8b\x1b\x42\x87\x78\x07\x3e\x96\x13\xba\x52\x5e\ -\x6c\x9b\xa7\x63\x6c\x08\x4d\x31\x15\x2c\xaf\x79\x46\x2c\x02\xe7\ -\x90\xb1\x73\x1b\x55\xdd\xda\x42\x5f\xbe\xaa\xe4\x1b\xf3\xfc\x6a\ -\x1f\xa7\xe4\xb8\x52\xac\x4b\xe6\x27\x42\x0a\x58\x15\xce\x23\xf4\ -\x03\x63\xc2\x4e\x4e\x2b\xc5\xd1\x02\x2b\x70\x5d\xc7\x99\x30\x61\ -\x3f\xcb\xd6\x3c\xcf\x70\x4d\x6f\xc2\xac\x29\x85\xb0\x53\xf3\xf8\ -\x8c\xc1\xa8\xe6\x9f\xd9\x09\x55\x7b\x72\xdc\x51\x0e\x0e\xa3\x35\ -\xbe\x9c\xc9\x39\xea\x66\x43\x4e\xf3\x6c\xf0\x82\x9a\x07\xb4\x5a\ -\x97\x19\x83\xa0\x39\x9c\x86\xab\xd6\x59\x8a\xab\xf9\x89\xc7\xac\ -\x04\x0c\xd4\xce\x7d\x4d\xdb\x9b\xe8\xdc\x49\x08\x5f\xf6\x8d\xe0\ -\x8a\x04\xa8\x36\x81\xb9\x63\x9d\xaf\xb3\x8a\xf8\x94\x15\xd9\x27\ -\x0c\x76\x9b\x97\x22\x55\x19\x1f\xd4\x5d\x4e\x36\x71\xde\x69\xbf\ -\x6e\x24\x96\x23\x58\xda\x49\x08\xb1\x33\x0f\xdc\xd3\x99\xd3\x14\ -\x41\xe4\x78\x72\x82\xed\x7b\xae\x24\x12\x9a\x41\x3c\x0c\xf4\x15\ -\xa4\xf3\x90\xc4\xc3\x1c\xb2\xf4\xa9\xf1\xaf\xc6\xfb\xfc\x4b\xde\ -\x79\xc8\xeb\xdc\x5e\x9f\xfa\x7d\x43\x2f\x30\x8b\xd3\x98\xc5\x7d\ -\x10\x08\x8a\x15\x86\x86\xb0\x0c\x32\x66\xf4\xfb\x9b\x5f\xd6\xdd\ -\x46\xcb\x24\x89\xfe\x26\xf4\xa3\xd8\x17\x21\x2e\x10\x6f\x48\x0d\ -\x47\xa1\xac\x25\x79\x99\x26\x11\xe4\x38\x88\xfd\x75\x56\x80\x6b\ -\xf3\xf4\xf8\x33\xe4\xb4\xa5\xde\x33\x46\xc2\x1c\xac\x7e\xd1\x76\ -\x59\x8a\xdb\x64\x39\x7b\x63\xa4\x49\x91\xf1\x49\xfa\x1f\x2c\xcb\ -\xf3\x77\x7c\x93\xce\xe2\xc1\xa2\x19\xcb\x71\x4f\x5c\xea\x9d\xf6\ -\x9d\x6d\xfa\xc0\xb8\xa5\x2e\xac\x6f\x46\xbb\x1e\x95\x51\x50\xc8\ -\x83\xce\xe3\x0d\x06\x27\xf8\x95\x33\xd1\x84\xbb\xa3\xa4\x3e\x14\ -\x24\xc5\xdd\x74\x89\x26\x4e\x98\x3c\x32\x76\xce\x81\xbf\x05\xed\ -\xa3\x2e\xd1\xbc\xe4\x03\xb5\x4b\x13\x91\xd9\x0e\x69\x9d\x43\xba\ -\xbb\xc7\x25\x49\xd3\x97\x15\xa3\xe4\x23\x8e\x5e\x18\x86\x13\x18\ -\x46\x37\x6c\xa3\x25\x92\xc3\x3c\x2b\x31\xa8\x11\x55\xff\xd6\x31\ -\xc5\x43\xea\x3f\x24\x2b\x23\xc0\x0d\x53\x41\x6d\x06\x39\x78\x3c\ -\x8b\x1c\x41\x4b\x63\xc8\x44\x94\xc6\xe7\xa8\x84\x12\x60\x48\x25\ -\xdb\x6d\x85\x59\xbf\x93\x50\xd5\xd0\xec\xee\x19\x39\x3a\x37\xd7\ -\x0e\x43\x53\x12\x67\x6f\x25\xfe\xcc\xdf\x4c\xfc\x19\x45\x05\xf8\ -\x77\xa8\x39\xbe\x1d\x1a\xb6\x87\x55\x99\xcf\xc0\x5d\x46\x62\x14\ -\xe4\x6c\xcd\x86\xdb\xc9\x0b\x03\xe9\x15\xcb\x43\xcc\xf6\x73\xe8\ -\x0f\xac\xe4\xc8\xf2\x67\x8c\xac\xd5\x2a\x65\x3b\xce\x25\xc4\x9b\ -\x9a\xb1\xc7\x02\x58\x9e\xbb\xb4\x03\x20\xfc\x0d\x19\x0b\x03\xfd\ -\x85\x04\x30\x63\x80\xb9\x45\x10\xad\x3d\x0e\x7d\x66\x27\x25\x68\ -\xc8\x08\x55\x21\xc7\xdf\xc7\xac\xa6\x78\x94\x4b\x64\x4e\x00\x27\ -\xe5\x61\x04\xe9\x38\x49\x9e\x3b\x54\x12\xa4\x85\x7c\x43\x6f\x91\ -\x31\x07\x59\xf0\x74\x20\x33\x35\x38\x41\xc3\x72\x83\xc3\xe9\xf3\ -\x31\xbb\x82\x84\xbc\x05\x16\x56\xa0\x05\xe8\x35\xb2\x35\xab\x7d\ -\x9d\xbc\x4c\xd0\xb1\x7d\xdf\x52\x8d\x07\xe3\xf3\x28\x3e\x63\xfa\ -\xae\x63\xba\xee\xa3\x21\x50\x20\x57\xa4\xa4\x85\xed\x6a\x16\x4a\ -\x20\x8e\x54\x47\xb3\x1a\x50\xae\xbd\x4f\xa1\x08\x9c\x2f\x07\x44\ -\x80\xa7\x9e\xd0\x9d\x9a\xf5\x45\x5c\xc1\xb4\xb5\xa0\xb5\xb9\x33\ -\x98\xd3\x2c\x70\x05\xd3\xd0\xba\xa1\x64\x20\xd3\x5b\x80\x87\xa0\ -\x5c\x02\xb9\x08\x35\x4f\x0c\x9c\x85\x88\x73\xe4\x6b\x4e\x33\x63\ -\x21\x01\x0d\x34\xb7\x95\x81\xf9\x13\x44\x1d\xc3\xf6\xbf\x22\xa2\ -\x70\xf4\x8d\x56\xa1\xfd\x35\xd2\xd1\xcc\x35\xf8\x44\x8f\x40\xb5\ -\x3f\x3b\xff\x49\x39\x46\xe3\xb2\xe2\x35\x9c\x9a\x40\x85\x8f\xa9\ -\xda\x54\xa4\x33\x77\xd0\x44\x10\xae\x65\xf5\xb2\x3e\x7d\x72\x89\ -\xa3\x3f\x89\x1b\x13\x87\xfa\xf0\x3b\xe6\x89\x42\x61\x99\xc2\xf1\ -\x6e\x85\x22\x7c\xf6\x50\x78\x8f\xe5\x15\xcf\xfe\x66\xb5\xad\x9b\ -\x31\x78\x78\xf6\x79\xa2\x18\xf0\xd4\x7c\x23\x06\x0f\x2f\xda\x9f\ -\x62\x89\x59\x0c\x4b\x4c\xbb\xbd\x80\x7c\x80\x43\x5c\x4a\x36\x7c\ -\xb5\x5c\x79\xbf\x52\x70\xaa\xd6\x77\x03\x88\x19\x88\xab\xf9\x26\ -\x40\xcc\x67\x0d\xc8\xa8\xec\xb1\xe4\x47\x48\xf3\x3a\x79\xb9\x06\ -\xc1\xd7\x4c\x14\x5f\xd6\x27\x44\x91\x76\x63\x90\x38\xdf\x0d\x20\ -\xd2\xd8\xdb\x00\xf9\x1f\x95\xc5\x4c\x17\x6e\xdc\x73\xe3\x70\xb8\ -\x6e\xea\x3c\xbc\x1f\xd7\xf5\xef\x2e\xe0\xf3\x5a\x54\xad\x6f\xd7\ -\x98\x33\x47\xb0\x35\xfd\x38\xc3\xec\xb1\xec\xfa\x71\xa2\xce\xeb\ -\x9d\x4b\xf4\xe3\xa6\x1c\x5e\xec\x8b\x0a\x79\xd8\x97\x1b\x45\x31\ -\x6f\xc0\x39\x70\xd2\xb6\x13\x5a\xf6\x67\x7a\xe2\x1c\x94\x8e\xe6\ -\x9a\x9e\xef\x86\xdf\xa2\xa9\x24\x3f\xd9\x06\xf7\xdc\x5b\x74\xa5\ -\x73\x12\x3c\xfc\x12\xbb\xb5\xaf\x34\x06\x6a\x1e\x37\xf1\xe1\xe8\ -\x84\xdf\x00\xb8\xfe\xeb\xc1\xf4\x78\x07\xd3\xd0\xc2\xf9\x0e\xa6\ -\x6d\x38\xee\xe3\xc2\xb6\xd4\x77\xeb\xbb\x25\xff\xd1\x61\x7d\xf7\ -\x1f\x25\xc2\x15\x46\ -\x00\x00\x08\xf1\ -\x00\ -\x00\x5b\x07\x78\x9c\xed\x5c\x59\x73\xe3\x36\x12\x7e\xf7\xaf\xc0\ -\xca\x2f\x49\xad\x40\xe1\xe0\x6d\xd9\xa9\xda\x4c\xa5\x92\xaa\xe4\ -\x25\xc7\x6c\xd5\xbe\x6c\x51\x24\x24\x71\x4d\x91\x2a\x92\xb2\xa4\ -\xf9\xf5\xdb\x0d\x5e\xba\x3c\x71\xd6\xce\x8e\xed\x80\x1a\xc9\x44\ -\x77\x83\x00\x1a\xfd\x75\x37\x48\x0c\xa7\xdf\xec\x56\x19\x79\x50\ -\x65\x95\x16\xf9\xed\x88\x5b\x6c\x44\x54\x1e\x17\x49\x9a\x2f\x6e\ -\x47\xbf\xfd\xfa\x1d\xf5\x47\xa4\xaa\xa3\x3c\x89\xb2\x22\x57\xb7\ -\xa3\xbc\x18\x7d\x73\x77\x35\xfd\x1b\xa5\xe4\xdb\x52\x45\xb5\x4a\ -\xc8\x36\xad\x97\xe4\x87\xfc\xbe\x8a\xa3\xb5\x22\x5f\x2d\xeb\x7a\ -\x1d\x4e\x26\xdb\xed\xd6\x4a\x5b\xa2\x55\x94\x8b\xc9\xd7\x84\xd2\ -\xbb\xab\xab\x69\xf5\xb0\xb8\x22\x84\x40\xbb\x79\x15\x26\xf1\xed\ -\xa8\xad\xb0\xde\x94\x99\x16\x4c\xe2\x89\xca\xd4\x4a\xe5\x75\x35\ -\xe1\x16\x9f\x8c\x06\xf1\x78\x10\x8f\xb1\xf5\xf4\x41\xc5\xc5\x6a\ -\x55\xe4\x95\xae\x99\x57\xd7\x07\xc2\x65\x32\xef\xa5\xb1\x37\x5b\ -\xa9\x85\x78\x10\x04\x13\x26\x26\x42\x50\x90\xa0\xd5\x3e\xaf\xa3\ -\x1d\x3d\xae\x0a\x7d\xbc\x54\x55\x30\xc6\x26\xc0\x1b\x24\x9f\x26\ -\x15\x56\xa0\xd0\x35\x7c\x7b\xf1\x8e\x60\x55\xc5\xa6\x8c\xd5\x1c\ -\xea\x29\x2b\x57\xf5\xe4\xc3\xaf\x1f\x7a\x26\x65\x56\x52\x27\x07\ -\x97\xe9\xf4\x79\xd4\xea\x91\x92\xf3\x68\xa5\xaa\x75\x14\xab\x6a\ -\xd2\xd1\x75\xfd\x6d\x9a\xd4\xcb\xdb\x91\xb4\x2d\x2e\xe1\x70\x34\ -\x71\xa9\xd2\xc5\xb2\x3e\xa5\xa6\xc9\xed\x08\x7a\x2f\x02\xbf\x29\ -\x1f\x18\x07\x6f\x04\xda\x0b\x87\x3d\x87\x59\x81\xb0\x38\x29\xb9\ -\x23\xbd\x46\xa6\x1b\x42\x98\x14\x31\xf6\x09\x2e\xa9\x56\x69\xb4\ -\xa9\x8b\x15\xcc\x5a\x1c\x67\x51\x55\xa5\xf3\x34\x86\x42\x91\xaf\ -\xb3\xcd\x22\xcd\xff\xbd\x2c\x56\xca\xea\xf4\xd6\x37\xa2\x76\xeb\ -\xa2\xac\xe9\x2e\x59\x83\xf6\x5c\xef\x22\x73\x7f\xc8\x7c\x48\xd5\ -\xf6\x1f\xc5\x0e\x7a\x45\x18\x91\x02\xfe\x8d\xee\x80\x3e\x4d\xd4\ -\xbc\x42\x7e\x33\x42\x2c\xc1\x10\xbd\x11\x99\x68\x6e\xdf\x61\xec\ -\x6d\x82\xd7\x18\x64\x67\x51\xd5\x68\x91\x90\x75\xb4\x00\x8b\xcb\ -\x8a\xf2\x76\x74\x3d\xd7\x47\xcb\x98\x15\x65\xa2\xca\x8e\xe5\xea\ -\xe3\x88\x55\xc0\xac\xa4\xf5\xbe\xc1\x58\x7b\xed\x6e\x18\x78\xd5\ -\x9e\xcf\x2e\xf3\xab\x65\x94\x14\xdb\xdb\x91\x38\x65\x7e\x2a\x8a\ -\xd5\xed\xc8\xb1\x9c\xc0\x0f\x18\x3f\xe5\xc6\xa0\x08\x6a\xfb\x96\ -\xf4\x1d\x21\xfd\x33\x2e\xb4\xe7\x59\x8e\xf4\x3d\xee\x9c\x57\xdd\ -\x94\x25\x80\x90\x66\xd1\x5e\xc1\xa0\xf4\x9f\x4e\xa8\x5a\x16\xdb\ -\x45\x89\xca\xa9\xcb\x8d\x3a\xad\x89\x1c\x3a\x9b\xe1\x24\x5c\x62\ -\x83\x4d\x6c\x10\xde\x74\x93\xa7\x35\x40\x68\xbd\x3b\xbc\xea\x26\ -\x4d\x54\x75\xb9\x62\x95\x47\x6b\xba\xc8\x8a\x59\x94\x5d\x16\xd8\ -\xa6\x39\x28\x89\xb6\xd6\xce\x65\x3f\x07\xa7\x12\x9d\xe9\x7b\xec\ -\x4c\x27\xad\x04\x1a\xd0\x23\xac\xfd\xe3\xac\x55\xb4\x4b\x57\xe9\ -\x27\x05\x8a\x39\xd3\xa7\x1e\xd9\xa1\x5a\xee\xb4\xc0\xf4\x48\x6d\ -\x4d\x1d\x42\xea\x3d\xc2\x7c\xb7\x47\xda\xa8\x23\xa2\xbe\x91\x20\ -\x82\xc0\xeb\x89\x45\x99\x02\x7a\x0e\xba\xdb\x91\xf6\x87\x24\x74\ -\x0a\xe0\xd3\x77\x43\xbf\x7a\x1a\xda\x64\x07\x83\xc9\x39\x0e\x34\ -\x7d\xa5\xea\x28\x89\xea\x68\x00\x45\x47\x81\xbe\xb0\x6e\x24\xe0\ -\x4f\xc3\x9f\x3f\x7c\x77\xd7\x36\x30\x8d\xe3\xf0\x9f\x45\x79\xdf\ -\xb5\x47\x08\x0a\x44\xb3\x62\x03\x9a\x1f\xdd\xf5\xe4\x69\x12\x87\ -\xe0\x01\xc1\x33\xdc\xa5\x2b\x30\x75\x74\x9e\x7f\x07\x8f\x37\x9d\ -\x0c\x8c\x23\x61\x54\xce\x70\xd1\xe6\xb2\xa5\x6a\x5c\xe9\xc5\x78\ -\x92\xc4\xab\x14\x2b\x4d\x7e\xa9\xd3\x2c\xfb\x01\x1b\x69\x47\x7c\ -\x70\xd1\xb4\xce\xd4\x40\x9c\x4e\xda\xde\xb7\x63\x9b\x1c\x0c\x6e\ -\x3a\xe9\x46\xaf\x4b\x8b\x41\x2b\x47\x20\xe9\x27\x36\x8b\x66\x0a\ -\x2c\xf6\x47\x64\x92\x73\xbb\x28\x8b\xcd\x7a\x55\x24\xaa\xad\xde\ -\x69\x73\x1d\xd5\xcb\x7e\xaa\xea\x7d\x06\xfc\x39\xf4\x3e\xbc\xb6\ -\x13\xfc\xdc\x60\x81\xb6\x6e\x23\xe4\x4d\xb1\xdc\x64\xe0\x15\x1f\ -\x54\x5e\x24\xc9\x4d\x55\x97\xc5\xbd\x0a\xaf\x3d\x17\x3f\x6d\xb1\ -\x01\x47\xc8\xba\x22\x28\x46\x95\x19\x18\x6d\x1d\xda\x1d\x2d\x89\ -\xc0\xdb\x94\x65\xb4\x0f\x73\x08\xfa\x1d\xb5\x6f\xaa\x37\x20\x34\ -\x03\x22\xb8\x65\xdb\xc2\x96\xce\x58\x5a\x0e\x79\x20\xc2\x27\xdf\ -\x13\xce\x2d\x3f\x70\x03\x9f\x64\x84\x8d\xa9\x0b\x14\xd7\xe2\x6e\ -\xe0\x31\x2f\x00\x11\x20\x64\x84\x3a\x96\x27\xf0\x13\x38\x63\x86\ -\x44\x09\x24\x42\x7d\xf2\xe9\xc8\xde\x4b\x15\xd7\x32\x10\x92\x3a\ -\x03\xb9\xf7\x50\x45\x9e\x03\xbb\x28\x29\xf8\xaa\x87\xa8\xde\x94\ -\xea\xc8\xe6\x7b\x5b\x06\xe5\xe2\xf4\x83\x5b\x89\x87\xa3\xb7\x80\ -\xc7\x35\x2d\x65\x14\xb3\xe7\x6a\xda\xe2\xe0\x5c\x25\xe7\xfc\x73\ -\x2a\x7f\x44\xb9\xb2\x57\x2e\x24\x03\x0e\xe8\x52\x32\xb2\x24\x14\ -\x7c\xb6\x8b\x2a\xe3\x12\x34\x6b\x37\x22\xb6\xd6\x2c\xf7\x2e\xea\ -\x8f\xfb\x2f\xa9\xbd\x27\x68\x6e\xee\x47\x73\x9b\xbf\x1a\x1b\x75\ -\x3b\x35\xf2\xce\x46\x41\x8b\x9c\x35\xb6\xb8\xc4\x1f\x7d\x76\xa2\ -\xcc\xcf\x5b\xe4\x9f\x67\x8f\x8b\x3e\x0a\x94\x51\x5e\xa1\x07\x84\ -\x56\x8b\x1a\xb2\xed\xaf\x02\x36\xe6\xb6\x15\x78\x5c\x70\x6f\xcc\ -\x1d\xcb\xd6\x67\x5f\x1f\x87\x08\xdb\x73\x7c\x7a\xe0\xe7\xcf\x9d\ -\x47\xef\x7d\x8f\x66\xf0\xf3\x93\x3e\x48\x3d\x75\xc0\x4d\x77\xb0\ -\x05\xd0\xa8\x43\x83\x03\x06\xd0\x7f\x22\x62\x1c\xa0\xca\xc9\xb7\ -\xc4\x1e\xfb\x16\x0f\xbc\x80\xbb\x1e\x9c\x7b\x96\xcf\x04\xf3\xa5\ -\xc4\x73\x98\x12\xdf\xb5\x1d\x28\xc1\xb9\x03\x99\xaa\x63\x83\x14\ -\x9c\xbb\xf0\xfd\x48\x1c\xac\x6d\xb9\x4d\xdd\xb1\x43\xa4\x25\x9b\ -\xba\x70\x2e\xf4\xd7\xb5\x84\x0c\xb0\x3e\x9c\x7b\x96\xe7\x32\xac\ -\xaf\xdb\xfe\xd7\x41\x87\x5a\x25\xe9\x0c\x2e\xbc\x66\xfa\xb8\x99\ -\x17\x90\xa5\x68\x0e\x28\x04\xe2\x50\xd6\x50\x1e\xa2\x32\x8d\xf2\ -\xfa\x88\xb6\xd5\x19\xc5\x11\x09\x6c\x52\xd5\xf1\xf2\x98\x06\xc9\ -\x41\x08\x91\x35\xdd\xac\x6e\xb2\x34\x57\x6d\x26\x72\x24\x33\x8f\ -\x56\x69\xb6\x0f\x7f\x81\xb9\xbf\xa1\x9d\xae\x69\x53\x7d\xad\xe2\ -\x3e\x6f\x6e\x24\x6a\xb5\xab\x41\x2a\x81\x84\x0a\x10\xa3\x4b\x51\ -\x96\x2e\xf2\x10\x96\x6d\x65\xdd\x10\x12\x48\x5a\xcb\xa6\x8e\x46\ -\xcb\x09\x91\x62\x4f\x1a\x4e\xa6\x6a\xc0\x1a\x6d\x53\x83\xae\x5b\ -\x5b\x48\x61\x4f\x69\xfa\x1a\xbd\x81\x36\xb5\xb7\x65\x5a\x83\x08\ -\xc5\x68\x16\x66\x25\xad\x67\x37\x49\x8a\x78\xc1\x96\xb3\xba\xbc\ -\xc1\x54\x5a\x0f\xbb\x5a\xa6\xf3\x3a\xec\x8a\x6d\xb7\xf3\x78\x09\ -\xca\x6f\xfa\x9d\xa4\xd5\x1a\xc2\x21\xac\x79\xb4\x40\x01\x8b\x8d\ -\x79\x56\x6c\xc3\x87\xb4\x4a\x67\x99\xba\xd1\x7f\xd3\x0c\xc1\xde\ -\x91\xfe\xa7\xe8\x78\xe8\x3d\x1a\xb7\xc3\x2d\xc8\x69\xf0\x70\x6e\ -\x56\x51\x79\xaf\xca\x46\x46\xe5\x11\x34\x42\x67\x51\x7c\x8f\x11\ -\x3b\x4f\xc2\x28\x86\x3c\x76\x93\x01\x2c\x0f\x92\x89\xa7\x02\xea\ -\x99\x70\x92\x0e\xb5\xcf\xe1\xc4\x9d\x1e\x4f\x5c\x36\xa0\x40\x3c\ -\x71\xd1\x82\x02\xcf\x39\x88\x08\x12\x43\x2c\xe1\x1d\x95\x8d\x45\ -\x27\xcc\xc6\xf6\x81\xbb\x33\xb0\x30\xb0\xf8\xff\xc2\xe2\xd9\xc0\ -\x10\x1e\xf5\x8e\x81\xb1\x22\xdc\x1d\x0b\x07\x4c\x1e\x72\x28\xdb\ -\xf5\x3d\xcc\x37\x29\x24\x02\x92\x0b\x7d\x2a\x74\xfe\x89\x98\x80\ -\xb5\x39\xe3\xb0\x50\x06\x82\xb4\x98\xed\x0a\xc6\xe1\xd4\x86\x2f\ -\xc3\x04\xcc\xc7\xbb\x24\x08\x17\x2a\x21\x9b\x85\x03\xf1\x42\x6d\ -\x4c\x20\x1a\x44\x31\xab\x8d\x34\x08\xae\x36\xd0\x00\xb8\x0c\xa2\ -\x0c\xa2\xde\x5e\xa0\xe9\x57\x5e\x1e\xf5\x4f\x11\xe5\x8f\x85\x87\ -\x16\xdf\x25\x6a\x1a\x30\x78\x67\x15\xb2\x52\x00\x0c\xc0\x08\x41\ -\xf5\x23\xe1\xa2\x47\x5e\x23\x89\x78\x93\x5d\xaa\x87\x05\x04\x97\ -\x81\x87\x81\xc7\x5b\x0d\x38\xc2\x95\x94\x9d\xc2\x43\xe0\xda\x04\ -\xe1\xa1\xd7\x2d\x68\xf4\x10\x6e\x20\x1a\x68\x93\x17\x3a\x9c\xf0\ -\xf6\x2b\x20\x7a\x34\xc1\x03\x42\x12\x67\xae\xf4\xa5\x8d\x05\x61\ -\x05\x0e\x83\xb1\x07\x4d\x88\x01\x00\x05\x92\x33\x29\x5a\x00\xf9\ -\x8e\x0c\x02\x83\x1f\x83\x9f\xcf\xe1\x47\xda\x3e\x4e\xff\xab\xc6\ -\x8f\x64\x9c\xca\x33\xfc\x34\xe1\x05\xd2\xb1\xc0\xb1\x99\xad\xef\ -\x7e\x41\x66\xe6\x12\xd9\xa6\x63\x1f\x89\xc0\x85\xbf\xd3\x26\x71\ -\x50\xb0\xdb\xd4\x0e\x4f\xdb\x1f\xbb\xff\x91\xc3\x9a\x47\x2f\x76\ -\x3c\xdf\xf1\xb8\x6d\x16\x3b\x06\x3b\x5f\x14\x3b\x2f\x91\x9a\x79\ -\x54\x9c\x27\x67\x4f\xcd\xcd\x10\x43\x9c\x37\xe9\x18\xde\x3c\xf3\ -\xfb\x3a\x70\x0e\x5f\x73\x83\xcc\x80\xe3\x2d\xaf\x5b\xec\x83\xa7\ -\x46\xdd\xbd\x00\xfb\x08\x1d\x8f\x82\x03\xcd\xff\xf2\xba\xc5\x2c\ -\x5b\x0c\x3a\xde\x07\x3a\xf8\xf9\xc2\x5e\xb0\x27\xc1\x43\xd8\x06\ -\x1e\x06\x1e\xef\x10\x1e\xfd\xd3\x15\x87\xba\xe7\xcf\x57\x04\x1f\ -\x9e\xaf\x04\x07\xcf\x57\xfc\x83\xe7\x2b\x9e\x79\xbe\x62\x80\xf1\ -\x6a\x81\xf1\x52\x8b\x0e\xfb\x42\xe8\x70\xf1\xf9\xe3\xef\xc7\x0e\ -\xc9\xf0\x21\xa4\x0e\x1e\x02\x16\x58\x82\x77\xcf\x60\x68\x73\x67\ -\x8c\xf5\x77\xc6\xa8\x66\xf5\x7c\x83\x1b\x83\x9b\xb7\x8f\x9b\x4b\ -\xc8\x61\x18\x59\x9e\x94\x75\x71\xcf\x20\xc7\x20\xe7\xcb\x23\x67\ -\x3a\x59\x9c\x6e\x56\xeb\xb7\x9e\xf5\xc6\x76\x79\xfb\x9a\x73\x61\ -\xfb\xda\x17\xd8\x8e\x66\x36\xa3\x19\x8c\xfe\xe9\x18\x65\x7c\x96\ -\x24\xc1\xab\x8f\x6e\xcf\x5e\x2e\x99\xad\x68\x06\x14\xef\x0d\x14\ -\x2f\xb0\x15\xcd\x6c\x44\x33\x78\x32\x78\x7a\xb9\x5b\xd6\x66\x1b\ -\x9a\x01\xc7\xfb\x04\xc7\x0b\x6c\x43\x33\x9b\xd0\x0c\x7a\x5e\x21\ -\x7a\xde\xc8\x26\x34\xb3\x05\xcd\x20\xe7\x2f\x88\x9c\x17\xb9\xab\ -\x6d\x36\xa0\x19\x68\xbc\xbf\x94\xec\x45\xb6\xd8\x98\xed\x67\x06\ -\x1b\x06\x1b\x97\xb1\x71\x9e\x73\x99\xcd\x67\x06\x1c\x7f\x61\x70\ -\x0c\x9b\xcf\xcc\xd6\x33\x03\x8b\xf7\x06\x8b\x17\xdb\x42\x63\x36\ -\x9e\x19\xd4\x18\xd4\xfc\xf1\x8d\x67\x66\xdb\x99\xc1\xcd\x1b\xc7\ -\xcd\xb0\xed\xec\xf1\x37\xcf\xe9\x63\x78\xb1\x9c\x8f\x9f\x47\x5e\ -\x2c\x87\x43\x87\xc9\x0f\x67\x9b\xba\x3e\xa4\xfd\xa7\x48\xf3\x50\ -\xbf\x75\xee\xec\xc5\x72\x4f\x7f\x27\xdd\xf1\x2b\xe8\x82\xb1\x67\ -\x39\xda\xea\x1d\xb2\x24\x3e\xf9\x08\x6b\x7c\x48\xd7\x9a\xf7\xcc\ -\x59\xb6\x56\x08\x3e\x85\xb1\x02\x06\x1f\x8e\x7c\xae\xf9\xc3\x2d\ -\xb0\x2e\x45\xf4\x9d\xe1\xbf\x7c\xfe\x9e\x47\x78\xc2\x9b\xfa\x8e\ -\xf5\xd5\x22\xf3\xb9\xfa\x7a\xe6\x2b\xfb\x7e\x22\xe0\x83\x6c\xcb\ -\xe7\xf0\x11\x04\x3c\x0e\x97\x48\x81\xcc\xb7\x21\x5d\xd0\x89\xfd\ -\x07\x75\xa2\x4d\x69\x8a\xef\x1a\xbd\xbb\xfa\x2f\xbb\x92\xfa\xa3\ -\ -\x00\x00\x05\xc9\ -\x00\ -\x00\x25\xd3\x78\x9c\xed\x5a\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ -\xd4\x97\x0d\x0b\x29\x52\xb2\xae\xb5\xdd\x87\x15\xc3\x0a\x74\x2f\ -\x5b\xd7\x01\x7b\x29\x68\x89\xb6\xb5\xca\xa2\x47\x51\xb1\xdd\x5f\ -\xbf\x43\xdd\x6c\xd9\x4e\x17\x37\xf3\x06\x14\x56\x10\x24\x3a\x17\ -\xf2\xf0\xfb\xce\x25\x09\x33\x7e\xb5\x5d\xe5\xe8\x41\xa8\x32\x93\ -\xc5\xc4\x62\x84\x5a\x48\x14\x89\x4c\xb3\x62\x31\xb1\x7e\x7b\xf7\ -\x23\x0e\x2d\x54\x6a\x5e\xa4\x3c\x97\x85\x98\x58\x85\xb4\x5e\x4d\ -\xef\xc6\xdf\x60\x8c\x7e\x50\x82\x6b\x91\xa2\x4d\xa6\x97\xe8\x4d\ -\xf1\xb1\x4c\xf8\x5a\xa0\x6f\x97\x5a\xaf\x63\xdb\xde\x6c\x36\x24\ -\x6b\x85\x44\xaa\x85\xfd\x1d\xc2\x78\x7a\x77\x37\x2e\x1f\x16\x77\ -\x08\x21\xd8\xb7\x28\xe3\x34\x99\x58\xad\xc3\xba\x52\x79\x6d\x98\ -\x26\xb6\xc8\xc5\x4a\x14\xba\xb4\x19\x61\xb6\xb5\x37\x4f\xf6\xe6\ -\x89\xd9\x3d\x7b\x10\x89\x5c\xad\x64\x51\xd6\x9e\x45\xf9\xe2\xc0\ -\x58\xa5\xf3\xde\xda\x44\xb3\x71\x6b\x23\x16\x45\x91\x4d\x1d\xdb\ -\x71\x30\x58\xe0\x72\x57\x68\xbe\xc5\x43\x57\x88\xf1\x9c\xab\x43\ -\x29\xb5\x41\xb7\xb7\x7c\x9a\x55\x5c\x02\xa0\x6b\xf8\xec\xcd\x3b\ -\x01\x29\x65\xa5\x12\x31\x07\x3f\x41\x0a\xa1\xed\xd7\xef\x5e\xf7\ -\x4a\x4c\x49\xaa\xd3\x83\x65\x3a\x3c\x07\xbb\x0e\x40\x2e\xf8\x4a\ -\x94\x6b\x9e\x88\xd2\xee\xe4\xb5\xff\x26\x4b\xf5\x72\x62\xb9\x23\ -\xc2\x5c\x78\xbc\x5a\xb8\x14\xd9\x62\xa9\x8f\xa5\x59\x3a\xb1\x20\ -\x7a\x27\x0a\x9b\xf7\x83\xe4\x60\x8d\x41\xbb\x70\xdc\x6b\x28\x89\ -\x1c\xc2\x90\x62\x9e\x1b\x34\x36\xdd\x11\xe2\x54\x26\x26\x26\x58\ -\x52\xac\x32\x5e\x69\xb9\x02\xd6\x92\x24\xe7\x65\x99\xcd\xb3\x04\ -\x5e\x64\xb1\xce\xab\x45\x56\x7c\x00\x2e\xb5\x54\x1f\xb4\xfc\xa0\ -\x78\xa9\x85\xf9\x4e\xe6\xa4\x03\xb2\xdf\x55\x6c\xd7\x52\x69\xbc\ -\x4d\xd7\x00\xa7\x1f\x9c\x55\xee\x3a\xe5\x14\xb4\xe3\x54\xcc\x4b\ -\x63\xd5\x9c\xcd\xbc\xc1\xe1\x02\x0b\xd9\xb5\xb6\x0f\xd5\xc4\x99\ -\x3e\x64\x62\xb3\xb7\x9d\xf1\xb2\xc1\x0f\xa1\x35\x5f\x40\xae\xe5\ -\x52\x4d\xac\x17\xf3\xfa\x69\x15\x33\xa9\x52\xa1\x3a\x95\x5f\x3f\ -\x03\x95\x04\x3e\x32\xbd\x6b\xaa\xab\x5d\xbb\x8b\xd7\xac\xda\xeb\ -\xe9\x79\x7d\xb9\xe4\xa9\xdc\x4c\x2c\xe7\x58\xf9\x49\xca\x15\xb0\ -\x47\x22\x2f\xa2\x0e\x8d\x8e\xd5\xc9\x76\x62\x61\x46\x61\x55\xc6\ -\x58\x78\xa2\x85\x0d\x5d\xd0\xd1\xd0\x73\xdc\x13\x65\xa5\x14\xd4\ -\x1f\xce\xf9\x4e\xc0\xa9\xea\x2f\xac\x35\x2a\x97\x72\xb3\x50\x06\ -\x1d\xad\x2a\x71\xec\x69\x34\x78\x36\x93\xdb\xf3\x6a\x48\x87\xca\ -\x54\x36\xae\x8a\x4c\x43\xf5\xac\xb7\x87\xab\x56\x59\x2a\xca\xf3\ -\x8e\x65\xc1\xd7\x78\x91\xcb\x19\xcf\xcf\x1b\x6c\xb2\x02\x50\xc2\ -\x6d\xa2\x33\xb7\x27\xe1\xd8\xa2\xcb\xfa\x80\x9e\x60\xd2\x5a\x40\ -\xec\x27\x44\xb4\xaa\xdd\xe3\xaa\x15\xdf\x66\xab\xec\x93\x00\x60\ -\x58\x9d\x77\x90\x5b\x03\x58\x1a\x37\x84\xf4\xce\x54\xf0\x76\x67\ -\x64\x56\x27\x34\x78\x1a\x81\x13\x45\x41\x2f\x94\x2a\x83\xc2\x38\ -\x08\xa7\x13\xed\x0e\x45\xa6\xde\xa1\x5d\x6f\xeb\x04\xab\xd3\x2f\ -\x38\xd6\xed\x0e\x75\x6d\xde\xdb\xa7\x89\x5f\xcb\x57\x42\xf3\x94\ -\x6b\xbe\xaf\x82\x4e\x02\xb1\xd1\xee\x64\xd0\x3a\xe3\x5f\x5e\xff\ -\x38\x6d\x37\x1a\x27\x49\xfc\xbb\x54\x1f\xbb\x7d\x11\x32\x06\x7c\ -\x26\x2b\x40\xda\x9a\xf6\xe2\x71\x9a\xc4\xd0\xec\xa0\x09\x4c\xb3\ -\x15\xe4\xb6\xe9\x93\xdf\x43\x73\x1b\xdb\x7b\xc5\xc0\xd8\x80\xb5\ -\x5f\xb4\x59\x56\x89\xa6\x6b\x9e\x1d\x1d\x69\xb2\xca\x8c\x93\xfd\ -\xab\xce\xf2\xfc\x8d\xd9\xa4\x3d\xf1\xc1\xa2\x99\xce\xc5\x5e\x38\ -\xb6\xdb\xe8\xdb\xb3\xd9\x07\x87\x1b\xdb\xdd\xe9\xeb\xb7\xc5\x1e\ -\x95\x41\x51\xf4\x44\xe7\x7c\x26\x20\x43\xdf\x1a\x25\x3a\xd1\x2e\ -\x94\xac\xd6\x2b\x99\x8a\xd6\xbd\x47\x13\x5a\x5f\x4f\x99\xde\xe5\ -\xa0\x9f\x43\xf4\x31\x74\x1a\x21\x38\x7f\x69\x5e\x70\xdb\x27\x62\ -\xf6\xb2\xd4\x4a\x7e\x14\xf1\x0b\x4a\x45\x30\x9f\xb7\xaf\x4d\xea\ -\xc7\x94\x8c\x9c\x9a\xe8\xb0\x93\x03\x1e\x42\xe5\x90\x9b\x3a\x1e\ -\x75\xb2\x94\x43\x57\x51\x8a\xef\xe2\x02\xc6\x7a\x27\xed\x77\x18\ -\xa4\xa5\x09\xce\x0d\xdd\x51\x2f\x6c\x6b\xcc\x73\x89\x99\x1a\xae\ -\xd3\x2b\xba\xd2\x1a\x39\xa4\x09\xa1\xd7\x34\xad\x88\x1c\x65\x27\ -\xa4\x25\x76\xc9\xde\x5f\xd5\x79\xea\x8f\xcc\xe3\xf7\xac\x3d\x8e\ -\x4e\x3a\x82\x51\x4b\x8f\xd1\xa9\x5f\x55\x95\xc3\x34\x78\x10\x85\ -\x4c\xd3\x1e\x2f\x27\x9c\xcf\x53\x7a\x8c\x57\xe8\xd5\xc7\xf0\xfe\ -\x4d\xbc\xbc\xd0\x8d\x30\xc3\xa3\x53\xd0\x1a\xcc\xda\x59\x3b\x00\ -\x8d\x44\xb5\x66\x74\x08\x9a\x13\x92\x20\x32\xcf\x21\x66\x2e\x09\ -\x9a\x45\xf6\xc0\x0d\x7a\xc4\x10\xc6\x3e\xb4\xcf\x0d\xd0\x73\x06\ -\xfd\x10\xfd\x0a\x88\x08\x43\xec\x5f\x83\x0a\xe6\x12\xff\xc6\xc2\ -\x93\xcb\x01\x3b\xd8\xbd\x06\x0d\xe1\x71\x67\xb9\x51\xf1\x0f\x54\ -\xf8\xd7\xa9\x07\xc7\x25\xa3\x1b\x13\x17\x16\x85\x7f\x9d\xa2\x60\ -\x21\xf1\x6e\x63\xe2\xe2\x06\x15\xe0\xe0\x2a\x95\x11\x92\xd1\x8d\ -\x88\x27\xcf\x6b\x1c\x61\xe7\x99\x34\x0c\xff\xac\xd1\x15\xc5\x6d\ -\x60\x5f\x44\x03\xc3\xde\xb3\xeb\xe1\x2c\x11\xb7\x91\x7d\x39\x19\ -\x01\x7e\xee\xef\x13\x67\xa9\xb8\x0d\xed\x2f\x2b\x0c\x0f\xd3\xab\ -\xb4\xa8\xdb\xdc\xfe\xb2\x3e\x45\x71\x74\x95\xf2\xb8\x4d\xee\x27\ -\x53\x11\x3e\xbb\x43\x9d\x36\xa3\xdb\xd4\xbe\x88\x02\x0a\x3f\xc5\ -\xb2\xab\xb0\x70\x1b\xd9\x17\x32\xe1\xe2\xf0\x1a\x3c\xdc\xe6\xf5\ -\xc5\x25\x11\x3c\xfb\xb7\x89\xf3\x7d\xe9\x36\xaa\xbf\xa0\x39\x5d\ -\xa9\x2a\xfe\x87\x31\xbd\xe6\x7a\x79\x96\x06\x4a\x2f\xa3\xa1\xb9\ -\x51\x1e\xd2\xc0\x88\x13\xb9\x34\x08\xa2\x9e\x86\x3c\x2b\x04\x04\ -\x14\x97\x7f\x55\x5c\x89\x43\xe9\x9f\x32\x2b\xe2\x9a\xa5\xcb\x29\ -\x33\x52\x39\x9f\x97\x42\xc7\xf4\x71\x1a\x81\xc5\x9f\x11\x36\xb7\ -\x4b\x2c\x72\x20\x3d\xee\xcd\x4c\x8e\xfc\x28\x40\x3f\x21\xe6\xa3\ -\xf7\x28\x68\x6f\x83\x3c\xf4\x16\xb9\x94\xb8\x7e\xc4\x42\xef\x9e\ -\x05\xc4\x63\xe6\x03\x8c\xee\x9d\xa0\x75\x79\x8f\x1c\xd6\x52\x0e\ -\xee\x07\xab\xa2\x3f\x4e\xf2\xc6\x0d\x19\x3b\xa5\x24\x91\x45\x51\ -\xff\xbf\x00\x4e\x2a\xf5\xc0\x75\xa5\xc4\xe0\x4e\xb4\xbf\xdb\x94\ -\xa9\x30\xd7\x81\xe5\xc4\x4a\xda\xe7\x09\xf4\xb5\x55\xf4\xb9\x7b\ -\x36\x46\xe0\x78\x94\x32\x37\x58\x6f\x8f\xf9\x99\x55\x5a\x7f\x9e\ -\x9d\xc7\xf0\x0d\x49\xe0\xf9\x0e\x1d\x85\xf7\x2e\xc0\xeb\xf8\x2e\ -\x0b\x11\x86\xd4\xf5\xc3\x80\xfa\xec\xde\x03\x30\xc3\xc8\x0b\x23\ -\xe4\x91\x30\x70\x1c\x8f\x06\xf7\xa6\x76\x9c\x11\x0d\x5d\x04\x8c\ -\x84\x75\x59\x18\xe7\xfa\xb6\x37\x38\xbb\xe2\x00\x62\x83\x81\x4b\ -\x47\xf4\xc9\x10\x7f\x2d\x3d\xe8\xd9\x7f\xd6\x80\xe6\xcf\x86\xcd\ -\xbf\xe9\x42\x47\xc2\xff\xa2\x15\x8d\xed\xc5\xf4\x6e\x6c\x2e\xd3\ -\xa7\x77\x7f\x03\x12\x53\xa0\x4a\ -\x00\x00\x17\xb0\ -\x00\ -\x00\xbf\x45\x78\x9c\xed\x5d\x5b\x6f\x23\x47\x76\x7e\xf7\xaf\x60\ -\xb4\x2f\x6b\x44\x4d\xd5\xfd\x22\xcf\x78\xb1\xc8\x62\x81\x05\x92\ -\x97\x64\x83\x3c\x1a\x14\xc9\x99\x61\x4c\x91\x02\x49\xcd\xc5\xbf\ -\x7e\xbf\x73\x4e\x35\xbb\x9b\xdd\x1a\x51\x63\x2a\xb0\xb3\x2d\xc1\ -\x9e\x66\x75\x5d\xcf\xfd\xab\x3a\x45\xbd\xf9\xd3\xe7\xfb\xf5\xe4\ -\xe3\x72\xb7\x5f\x6d\x37\x6f\xaf\xf4\x54\x5d\x4d\x96\x9b\xf9\x76\ -\xb1\xda\xbc\x7f\x7b\xf5\xdf\x7f\xff\x6b\x95\xae\x26\xfb\xc3\x6c\ -\xb3\x98\xad\xb7\x9b\xe5\xdb\xab\xcd\xf6\xea\x4f\x3f\x7e\xf7\xe6\ -\x5f\xaa\x6a\xf2\x6f\xbb\xe5\xec\xb0\x5c\x4c\x3e\xad\x0e\x1f\x26\ -\x7f\xdb\xfc\xbc\x9f\xcf\x1e\x96\x93\x3f\x7e\x38\x1c\x1e\x6e\x6f\ -\x6e\x3e\x7d\xfa\x34\x5d\x95\xc2\xe9\x76\xf7\xfe\xe6\xfb\x49\x55\ -\xfd\xf8\xdd\x77\x6f\xf6\x1f\xdf\x7f\x37\x99\x4c\x30\xee\x66\x7f\ -\xbb\x98\xbf\xbd\x2a\x0d\x1e\x1e\x77\x6b\xae\xb8\x98\xdf\x2c\xd7\ -\xcb\xfb\xe5\xe6\xb0\xbf\xd1\x53\x7d\x73\xd5\x54\x9f\x37\xd5\xe7\ -\x34\xfa\xea\xe3\x72\xbe\xbd\xbf\xdf\x6e\xf6\xdc\x72\xb3\xff\x43\ -\xab\xf2\x6e\xf1\xee\x58\x9b\x66\xf3\xc9\x72\x25\x9d\x73\xbe\x51\ -\xe6\xc6\x98\x0a\x35\xaa\xfd\x97\xcd\x61\xf6\xb9\xea\x36\xc5\x1c\ -\x87\x9a\x1a\xa5\xd4\x0d\xde\x35\x35\xcf\xab\x75\xbb\x07\x41\x1f\ -\xf0\xdf\xb1\x7a\x5d\x30\xdd\x6f\x1f\x77\xf3\xe5\x3b\xb4\x5b\x4e\ -\x37\xcb\xc3\xcd\x5f\xfe\xfe\x97\xe3\xcb\x4a\x4d\x17\x87\x45\xab\ -\x9b\x9a\x9e\x9d\x51\x3b\x44\xde\xcc\xee\x97\xfb\x87\xd9\x7c\xb9\ -\xbf\xa9\xcb\xb9\xfd\xa7\xd5\xe2\xf0\xe1\xed\x95\x75\x53\x6d\xf1\ -\xe3\xb9\xf0\xc3\x72\xf5\xfe\xc3\xe1\xb4\x74\xb5\x78\x7b\x85\xd9\ -\x9b\x9c\xe4\x73\x4b\x38\xb4\x54\x28\x1d\xdf\x1e\xdf\xa8\x69\x36\ -\x53\x3d\xd9\x69\x6f\xa3\xd4\xa9\x97\x70\xbb\xd8\xce\x69\x4e\xe8\ -\x72\x79\xbf\x9a\x3d\x1e\xb6\xf7\xe0\xda\x7c\xbe\x9e\xed\xf7\xab\ -\x77\xab\x39\x3e\x6c\x37\x0f\xeb\xc7\xf7\xab\xcd\x4f\x6b\x48\xd9\ -\x4f\xf3\x2d\x7a\xfd\x69\xfe\x61\xb6\x01\x41\x6a\x22\x1e\x47\x5c\ -\x7e\x7e\xd8\xee\x0e\xd5\xe7\xc5\x03\x48\x19\xe2\xe0\xcb\x2f\xf5\ -\xcb\x1f\xf1\xf6\xcd\x62\xf9\x6e\x4f\xb5\x64\x5d\xf4\x09\x0b\x8b\ -\x57\x93\x1b\x7e\x7b\x9c\x26\xcd\x71\xf1\x71\xb5\xfc\xd4\xd4\xbd\ -\x9b\xed\x85\x76\x93\xc9\xc3\xec\x3d\xe4\x6c\xbd\xdd\xbd\xbd\xfa\ -\xc3\x3b\xfe\x29\x2f\xee\xb6\xbb\xc5\x72\x57\xbf\x0a\xfc\xd3\x79\ -\xb5\x05\x2f\x56\x87\x2f\xa2\x59\xa5\xef\x7a\xbe\xd4\xeb\xf1\xbd\ -\x1a\x7e\xbf\xff\x30\x5b\x6c\x3f\xbd\xbd\x32\xa7\x2f\x7f\xd9\x6e\ -\xef\xa9\xd7\x1c\xb3\xd7\xca\x9d\xbe\x9e\x7f\x7e\x7b\x55\x59\x35\ -\x4d\xc6\xda\xa0\x7b\x6f\x31\x60\xa5\xd3\x54\xa3\xb5\xce\xbd\xb7\ -\x8f\xbb\x1d\x94\xaf\x5a\xcf\xbe\x2c\xb1\x2c\xfe\xa7\xee\x62\xff\ -\x61\xfb\xe9\xfd\x8e\xc8\x73\xd8\x3d\x2e\x4f\x5b\xd2\x9b\xea\xee\ -\x6e\xfb\x79\xf8\x35\x64\xe1\x91\xd4\xba\x7a\xdc\xac\x0e\x50\x9d\ -\x87\xcf\xed\x5e\x1f\x57\x8b\xe5\x7e\xb8\xe1\x7e\x33\x7b\xa8\xde\ -\xaf\xb7\x77\xb3\xf5\x70\x85\x4f\xab\x0d\xc8\x54\x15\x29\xd7\xf6\ -\xc8\x85\xd3\x1a\xb5\xc8\x47\x95\x9e\xa8\x81\xb9\xf7\x38\x51\x5e\ -\x7d\x79\xfa\xd5\xfd\xec\xf3\xea\x7e\xf5\xcb\x12\x84\xd1\x2c\x78\ -\x10\xae\x0e\x59\xa4\xd9\x64\x72\xf8\x42\xea\xfb\xf9\x0b\x95\x5d\ -\xd5\x85\x44\x4f\x2a\x30\x39\xc7\x63\xe1\x76\xb7\x82\x56\xb4\xa6\ -\x53\x17\x7d\x69\x17\x91\xb2\xc3\x56\x7f\x66\x09\x63\xf9\x8b\xa7\ -\xef\xbe\xb4\xdf\x15\xc1\xbf\xe9\x4b\x3e\x97\xdf\x2f\x0f\xb3\xc5\ -\xec\x30\x6b\xd4\xa0\x2e\xc1\xdc\x54\xbd\x32\xd8\xcd\xdb\xff\xfc\ -\xcb\x5f\x7f\x2c\x03\xbd\x99\xcf\x6f\xff\x67\xbb\xfb\xb9\x1e\x77\ -\x32\xa1\x0a\xb3\xbb\xed\x23\x28\x7d\xf5\xe3\xb1\xf8\xcd\x62\x7e\ -\x0b\x4b\x07\x0b\xf0\xe3\xea\x1e\xc2\x4d\x46\xf2\x5f\x61\xd9\xde\ -\xdc\x34\x2f\x3a\x95\x89\x58\x4d\xa7\xd2\xed\x6e\x29\x26\x73\xd0\ -\x6f\x2c\xe6\xf7\x2b\x6a\x74\xf3\x5f\x87\xd5\x7a\xfd\x37\x1a\xa4\ -\xac\xb8\xd5\xe9\xea\xb0\x5e\x36\x85\x6f\x6e\xca\xec\xcb\xda\x6e\ -\x5a\x8b\x7b\x73\x53\xaf\x9e\x3f\xbd\x6f\xa8\xd2\x51\x8a\x23\xa3\ -\xd7\xb3\xbb\x25\x24\xf4\xdf\xe9\xe5\xa4\xf7\xf6\xfd\x6e\xfb\xf8\ -\x70\xbf\x5d\x2c\x4b\xf3\x9a\x9a\xef\x3b\x62\x60\x55\x8b\x83\x87\ -\xdd\x6c\xb3\x27\xca\x80\x0f\xb3\xc3\x6e\xf5\xf9\x8f\x76\xaa\x4d\ -\xd0\x21\xfb\x6b\x33\x45\x55\xa5\xc2\x75\x85\x27\x67\x52\x8e\xe1\ -\xda\x32\x9f\xb5\x75\xd7\x26\x4d\x9d\x35\x5e\xc7\xeb\xca\xc7\xa9\ -\x71\x39\x9a\xf0\x7d\x23\x19\x87\x2f\x6b\x4c\xe3\x1d\x88\x74\x0b\ -\x8b\x76\x77\xe7\xe2\x0f\xf4\xa1\x2a\xf6\xe8\x56\x1f\xd9\xd6\x4c\ -\xaf\x4c\x30\x58\xef\xae\x9a\xb2\x17\x74\x45\x92\xb3\x9c\x1f\xda\ -\x1c\x7d\xbe\xb5\x7c\xdc\x3d\xae\x61\xe0\x3f\x2e\x37\xdb\xc5\xe2\ -\x87\xfd\x61\xb7\xfd\x79\x79\x5b\x4c\x71\xf9\x28\xca\x7f\xab\xea\ -\x8f\x10\x84\xe5\x6e\x0d\xa5\x3c\xdc\xba\xba\x6c\x31\x83\x3d\xdd\ -\xed\x66\x5f\x6e\x37\x08\x66\xea\xd2\x66\xa2\xed\x99\xd1\x5a\x69\ -\xb6\x3e\xd9\x5c\xa9\xca\x55\x1a\xbf\xa1\xea\x56\x2a\x06\xc7\x4d\ -\x0d\xab\x57\xee\xbc\xac\x6d\xcd\xf0\x5b\x36\xd0\x7e\xaa\xb2\x8d\ -\xc9\x75\xde\x40\x5f\x4d\x86\x61\x0f\x26\x85\xce\x8b\x5d\xc7\x18\ -\x70\x09\xeb\xb6\x33\xf4\x63\x3b\x6f\x5a\x92\xb3\xdb\x1e\x10\xa7\ -\xfd\xb1\x4a\x79\x1a\x33\xa4\xe3\xfb\xae\x4a\xfc\xce\x59\x92\xaa\ -\x58\xf9\x0b\x33\x45\xab\x94\x4d\xee\x31\xc5\x4f\xa3\xca\xc1\x8d\ -\x4c\x79\x9e\x29\xb1\xb2\x55\x7c\x05\xae\x78\xdf\xe3\x0a\x91\x3a\ -\x26\x6b\x46\xae\x3c\xc7\x95\x0c\x55\x71\x97\x66\x8a\x45\x04\xd9\ -\xb3\x5f\x3a\x22\xb6\xd4\x5e\xfb\x91\x29\xcf\x31\x25\x55\xa6\xf2\ -\x97\xd7\x15\xef\xac\xed\x59\x30\x6d\x00\xd4\x5c\x8a\xa3\x05\x3b\ -\xc7\x82\x45\xb8\x7b\xf3\x0a\x7c\x09\xe1\x94\x2f\x69\x1a\x1c\x82\ -\x39\x3d\xf2\xe5\x59\xbe\x58\x28\x4b\xb8\x34\x53\x10\x4e\xf7\x4c\ -\x98\x9b\x02\x38\x9b\x68\xd3\xc8\x93\xe7\x78\x02\x13\x66\x5f\x43\ -\x57\x92\x0b\xa9\xe7\xef\x15\x42\x66\x17\xac\xcb\xce\x8e\x9c\x79\ -\x86\x33\x17\x65\x08\x6d\x26\x45\xad\xd3\x29\x43\x46\xac\x72\xbe\ -\xa2\x5c\x9a\x21\xa0\x66\x30\x3d\x86\x14\x9c\x32\x5a\xae\x33\xbc\ -\xfc\x2b\x70\x24\xeb\x1e\x47\x0a\x46\x71\x23\x47\x9e\xe3\x48\xbe\ -\x34\x43\xa2\xf1\xa6\x67\xb3\x46\x7c\xf2\x12\xe7\x7e\x69\x96\x00\ -\x80\xc4\x9e\xd5\xaa\xb1\xc9\x68\xb5\xce\xc2\x26\x97\xe7\x49\x54\ -\x3d\xbb\x55\x70\x89\x1d\xd5\xe4\x79\x5c\x72\x61\x86\x64\x65\x52\ -\x7c\x0a\x94\xb8\x38\x32\xe4\x39\x86\x10\x28\xb9\x34\x4f\x74\x52\ -\x3d\xbb\x55\xf0\x48\x08\x7e\x0c\x80\x9f\x65\xca\x45\x91\xbb\x09\ -\x53\xef\xbc\xed\x43\x44\x42\x24\x56\xa5\x71\x47\xf8\x0c\x25\xb9\ -\xa8\x23\x21\x8e\x04\xe5\x6d\x8f\x21\x7e\x1a\x82\xd3\x69\x44\xec\ -\xe7\xf8\xf6\x8b\x9a\xad\xc2\x12\xdf\x87\xed\x7a\x6a\x93\xb1\x61\ -\x8c\xb7\x9e\xc7\x24\x97\xd7\x92\xac\x40\xa7\x21\x54\xe2\x82\x72\ -\x79\x64\xc9\x73\x2c\xe1\x53\x93\x0b\x33\x05\x6a\x32\x70\x92\x65\ -\x00\x21\xb3\xd3\xa3\xe9\x3a\x0b\x96\x5c\xdc\xc3\x13\x53\x42\xcf\ -\x78\x25\x68\x50\xf4\x39\xe9\x91\x2b\xcf\x71\xc5\x5e\x5e\x4f\x8c\ -\xd6\xae\xe7\xe3\x01\x4d\xb4\x4f\x5a\x8d\x51\xd7\x59\xd0\xe4\xf2\ -\x8a\x62\x83\x49\x3d\x45\x01\x3a\x71\x59\x47\xfd\xfa\xc1\xf0\x9b\ -\x9b\xf7\x43\x29\x63\xad\xd6\xfc\xb8\xa6\x0e\x30\x2b\xed\xb5\x8e\ -\x26\x5f\xe7\x69\xc0\x23\x9e\xbe\x6f\x0d\x5a\xf2\xcc\x3a\xfb\x76\ -\xff\x64\x79\x66\x0a\xff\xbf\xa8\xe2\x3a\xc4\x16\xde\x9b\xd4\x0f\ -\xce\xf3\x34\x79\x6d\xf2\x18\x75\x9c\x03\x97\x10\x77\x5c\x38\x42\ -\x07\x63\x82\x0a\xd1\xf5\x4f\x0d\xfc\xd4\x27\x17\xc2\xe8\xe4\xce\ -\x42\x4d\xc4\x97\xcb\x1e\x1f\x30\x67\xa2\xd2\x7d\x95\x01\x76\x52\ -\x06\x5a\x33\x72\xe6\x39\xce\x50\xce\x99\xbf\xf4\x3e\x03\x18\x93\ -\x55\x1e\xd8\xf9\x01\x82\x52\x21\xf8\x31\x58\x3f\x0f\x40\xe1\x39\ -\x5f\xf6\x50\x1a\x6f\x54\x50\xc9\xf6\x54\x06\x38\x2a\xe6\x9c\xf2\ -\x18\x1e\x9e\x89\xa3\xf0\xfb\x1a\xbc\xd1\x88\xdd\x07\xd0\x94\x4e\ -\x0a\x78\x6a\xe4\xcd\x73\xbc\xb1\xac\x34\xca\x5c\x3a\x04\x30\x46\ -\x9b\x74\xb2\xf1\xc3\xa0\xca\x50\x58\x3f\x26\x6c\x9e\x0b\xaa\x38\ -\x08\x50\x17\xe6\x8d\x0d\xce\xe4\x78\xca\x9b\x0a\x28\xc6\x2a\x4a\ -\x44\x1b\x33\xd1\xce\x44\x34\x97\xe4\x0b\x1c\x4a\x40\x08\x90\x07\ -\xf3\xd1\xb4\x06\xe8\x1d\x99\xf2\x1c\x53\x0a\x9e\xb9\x30\x5b\xa2\ -\xca\xca\xf5\xaf\x34\xf9\x69\x70\xde\xc4\x91\x2d\x67\xa3\x99\x57\ -\xe0\x4b\x3f\xef\x86\xb0\x4c\xb0\x2e\x8c\x2e\xe6\x5c\x2c\x73\x69\ -\xb6\x58\x3a\xac\x1e\x40\x32\xda\x44\x3d\x5e\x36\x7b\x01\x94\xb9\ -\x34\x63\xbc\x73\xfd\x7b\x01\x74\x20\x14\x94\x57\xe3\xb9\xe9\x0b\ -\x80\xcc\x2b\x70\x26\xf5\x2c\x19\x60\x4c\x4c\x21\x8f\x49\x9d\xe7\ -\xc3\x98\x4b\xf3\x25\xe4\xd0\xbf\xa1\x89\x26\x39\x20\x24\x18\x4d\ -\xd9\x0b\x40\xcc\xa5\x39\x93\x5c\xea\xe7\x77\x32\x82\x41\x2b\xaf\ -\xc7\xcc\xf4\xb3\x10\x8c\xbf\x6c\x32\x74\xa2\x6b\x01\x26\xf9\x7e\ -\x50\x96\xa7\x29\xe9\x60\x46\x95\x39\x13\xc3\x5c\x38\x1b\x04\x8c\ -\x71\xc6\x59\xd5\x4f\x2d\x04\x8a\xd1\x2e\xa7\xd1\xfb\x9f\x8b\x62\ -\xdc\x65\x61\xbf\x70\xc6\xf7\xbd\x3f\xe1\x18\x6b\x75\x1c\x37\x98\ -\xcf\xc4\x31\xe6\xb2\x29\x08\x60\x4c\x34\x43\x17\x69\xe9\x4c\x26\ -\x87\xe4\xc7\xb0\xec\x6c\x24\x63\x2f\xfb\x35\x0d\x60\x4d\x42\x00\ -\xa0\x7a\x5b\x98\x84\x65\x10\x00\x8c\x11\xf3\x0b\xb0\xcc\xe5\xed\ -\x19\x78\x13\xfa\x69\x19\x40\x33\x0e\x3c\x53\xe3\xa1\xcc\xb9\x68\ -\xe6\xb2\x41\x33\xe8\x8f\xe0\x18\x74\x1d\x80\x33\x68\xa0\xcd\xa8\ -\x34\xe7\xc3\x19\x75\xd9\x2d\x00\x3e\xb0\xd4\xa9\xff\x45\x1a\x95\ -\x99\x7a\x63\x5d\xf6\x69\x59\xa9\x57\x67\xd0\x31\xe5\xad\x79\xe8\ -\x7e\x97\x9b\x4f\xba\xfd\x6d\x15\xfd\x6f\x73\xd3\x94\xf0\xed\x7d\ -\x0c\xd7\x6a\x1a\x80\x92\xb5\x75\xfa\xba\x52\x50\x7d\x1d\x6c\xb4\ -\x28\xcd\xb0\x0d\xd1\xe8\x74\x5d\xc1\x8f\x66\xa3\x72\x32\xd7\x94\ -\xee\x17\xa3\x52\x56\x3f\xf1\x8d\x6e\x8a\x7f\x4e\x25\xa3\x96\x83\ -\xf2\xb6\xc7\xce\xe3\xb2\x1e\x66\x87\x0f\x0d\x39\x8e\xdf\x14\xb8\ -\xdc\x60\x4d\x16\x33\xce\xd9\x77\xc2\xac\x63\x8d\xfd\x61\xb6\x3b\ -\x74\xc9\x8c\x26\xff\x31\xf1\x7e\xea\x88\x93\x91\xd2\xfd\x78\x74\ -\x37\xf9\xf3\x04\x5c\xa4\x6f\x1d\x35\xe9\x3a\xca\xeb\x10\x27\x0a\ -\xbf\x7a\xe2\x41\x97\x98\x6d\xcc\xd7\x3a\x4c\x55\x0c\x51\xc5\xaf\ -\xd4\x76\x06\xb4\xf3\xde\x78\xae\xed\xbc\x53\xfe\x2b\xb5\x2d\x2c\ -\x2e\x48\x87\x99\x78\x1b\x3d\x22\xc9\xc9\x5a\x6a\x2b\xeb\x40\x6f\ -\x15\x10\x5d\xfa\xc9\x2f\x43\xcb\x23\x81\x39\x76\x37\x58\xe1\x33\ -\xdb\x6d\x19\x79\xa8\x02\x7d\xf1\xe6\x91\x04\x83\x15\xd0\x83\x0b\ -\xd3\x4c\x5d\xb4\x2b\x90\x38\x11\x5b\x6c\x76\x8c\x44\xdb\x6d\x85\ -\xf3\xfc\x25\xa4\x47\xe6\x2e\x56\xfb\x87\x35\x14\x77\xb5\x59\xaf\ -\xa0\xba\xf4\xa5\xaa\xef\xd6\xdb\x4f\xb7\x1f\x57\xfb\xd5\xdd\x7a\ -\xf9\x03\xff\xbb\x5a\x13\xe3\xeb\xa2\xaf\x89\x4e\x63\x54\x60\x09\ -\x7e\x59\xee\xb6\x4f\x08\xd3\x89\x51\xa1\xb1\xe7\xb3\x87\xdb\xbb\ -\xc7\xc3\xa1\x5d\xf6\xbf\xdb\xd5\xe6\x96\x2d\xce\xcb\xcd\x0f\x95\ -\x6e\xdf\xbd\xdb\x2f\x0f\xb7\x7d\x19\xfe\xe1\x7e\xb6\xfb\x79\xb9\ -\x93\x06\xcb\xcd\x0c\xeb\xaa\xee\x66\xf3\x9f\xe9\xab\x17\x37\x8b\ -\xdb\xd9\x7c\xfe\x78\xff\x48\x29\xa8\x43\xb4\x97\xaf\xe6\x9c\xed\ -\xe6\x6d\x15\xef\xea\x42\xf3\x1d\xa9\xdb\x0d\x96\x76\xd8\xee\xaa\ -\xf9\xe3\xee\xe3\xec\xf0\xb8\x5b\x76\xe5\xbe\x66\x98\x8f\x29\x77\ -\x22\x06\xfa\x4a\xcd\x89\xcd\xb4\x27\x66\x52\xba\x06\xd2\x87\xc4\ -\x46\x1f\x26\xf3\x09\x25\xeb\x26\x13\xc9\x00\x00\x7a\x6a\x67\xa8\ -\xc4\x07\x67\xa9\x24\x18\xab\xa2\x46\x89\xa6\xbd\x4f\xb6\x12\x59\ -\x7b\x67\x02\x55\x32\x4a\x73\x25\x4a\x7e\xa2\x02\xad\xa2\xca\x51\ -\x4a\xac\xe1\x56\x01\x4f\x52\x92\xd1\x9e\x7b\xb6\x3e\x70\x81\xd5\ -\x81\xab\x28\x9b\x3c\x77\xac\xa2\x71\xa1\x6e\x94\x3b\x8d\x8c\x77\ -\xfc\x59\x43\x87\xb8\x93\xa4\x58\x6d\x34\x74\x89\x3e\x27\x65\xcd\ -\xb5\xe2\xde\x52\x54\x32\x29\x0f\xa9\xe5\x89\x07\xe7\x3c\x95\x18\ -\xb4\x76\x09\x45\xc6\xa9\x2c\x93\x30\xc9\x39\x9d\x4f\xa7\x55\x96\ -\x92\xfc\x33\x4b\x31\x21\x46\x1e\x15\xe4\xc2\x2b\x9a\x8f\xd3\xba\ -\x33\x1f\x65\x6d\x92\x46\x3a\xe7\x24\xb4\x26\x5b\x4a\xab\x2d\x6b\ -\xe1\xba\xed\x6e\x01\xf4\x65\x26\x99\x3e\x6a\xba\x79\x2b\xd4\xf0\ -\x86\x99\x33\x40\x1f\x25\xac\x51\x8a\x17\x63\x15\x1d\x44\x33\x43\ -\xad\x85\x5d\xa0\x22\x43\xdf\x2a\xc4\x45\x31\x1b\xc3\x4b\xd6\x3a\ -\xcb\x92\x0d\xd8\x3f\xa9\xda\x25\x60\x28\x68\xd7\x19\x02\x8e\x8f\ -\x3f\x3b\x4b\x8d\x31\x27\x65\xb9\xc0\xc2\xf3\x85\x54\x0f\x11\x8e\ -\x43\xc8\x62\xa3\x29\xcc\xf0\x31\x4e\x98\xde\x2a\xf1\x54\x2d\x8c\ -\x79\x0c\x75\x33\xdf\x6d\x66\x6c\x16\xda\xd7\xf4\x7c\x01\x7d\x8f\ -\x8c\x2c\x7c\xeb\xd3\xb7\x57\x23\xc7\xc0\xb3\xd4\x64\xa2\x8f\x14\ -\x66\x26\xe8\x04\xf7\xc8\x22\x66\x6b\xd1\x36\xce\xd2\x40\x20\x95\ -\x31\x41\x84\x30\xd4\x42\xe5\x6b\x71\x88\xc2\x1f\xb8\x78\xf7\xcd\ -\x32\xee\xac\xa7\xee\x15\x53\xae\xb5\x64\xe8\xa1\x2b\x33\x31\xdc\ -\xbb\x4f\x45\x35\x21\x53\xfe\x38\x97\xae\xac\x46\xef\x8f\x53\x12\ -\x71\xf6\x36\xe8\xeb\xa6\xa0\x28\x85\x2a\xea\x25\x22\xa8\xa3\xb6\ -\x65\xfe\xae\x37\xfd\xd0\xa5\x2a\xa4\x53\x06\xd0\x91\x67\x95\x41\ -\xe6\xc4\x03\xc4\x1c\x9b\x49\xf1\x00\x50\x1c\x53\x64\x5c\xb8\x96\ -\x4d\x16\x0e\xe4\xd0\xc8\x78\xec\x72\xc0\xd8\x94\xda\x52\x01\x8b\ -\x84\x78\x98\x3b\xc4\x53\xd6\x5a\x2c\x00\x24\x22\xc8\x3a\x48\x3f\ -\xad\xbc\x57\xda\x67\x57\x16\x67\xcb\x32\x35\xc2\x1a\xc7\x24\x2e\ -\xb2\x53\xd8\xfe\x12\x16\xc6\xaf\xb3\xf0\x05\x66\x21\x88\x91\x52\ -\xd1\xa5\x61\xb3\x00\xa5\x08\xe7\x2a\x85\x71\x65\x22\x30\xd6\xa4\ -\x63\x3a\x21\xa0\x13\x1d\xc3\x0a\x63\x5f\xed\xba\x36\xb0\x36\x79\ -\xd0\xf9\xc2\x17\xed\x4f\x17\xcd\x7c\xf1\xb2\x16\x23\x33\xf5\x29\ -\x72\x3f\xce\x49\x3c\x09\x56\x40\xdb\xdb\x8b\x69\x98\x09\xf7\x53\ -\x24\x4a\x7b\xdd\xf1\x1d\xda\x04\xa7\xc3\x64\x58\x0b\xd9\xe4\x36\ -\x66\x1a\x15\xa4\x06\xb4\xe5\x09\xb2\xbd\xcc\xca\x91\xf0\xc8\xb4\ -\x10\x6e\x4e\x78\x32\x51\xc8\x04\x69\x09\x5d\xd1\xe7\x59\x3d\x35\ -\x86\xab\xbd\x47\xa2\xe5\x75\xc7\xc8\x45\x15\xa3\x62\xc6\xc1\x21\ -\x8b\xea\xc0\x6e\x1b\xb6\xae\x27\xa6\x74\xc0\x5a\xab\x16\x9f\xfa\ -\x3e\xa9\x6d\xdc\x3a\xcc\x30\x3d\x66\xf8\x27\x99\x11\x8e\xcc\xf0\ -\xfd\x65\x7f\x23\x33\x6c\x2c\x62\x9f\xb2\x15\x51\x81\x58\x71\xa7\ -\x19\xb8\x37\xb4\xdb\x90\x6b\x16\xe2\x86\x6c\x6b\x5b\xc1\x96\xd0\ -\xe7\xd2\x2b\x10\x8c\x19\x1e\xa6\x27\x91\x51\x17\x22\x40\x20\xfd\ -\x13\x12\x59\xdc\x72\x31\xef\xb4\x38\x77\x64\x7c\x37\x02\x68\x28\ -\xf7\x42\x1f\x7a\xba\x94\x90\xac\x6b\xbb\xf6\x01\xf1\x0d\xb9\x2c\ -\x85\x9b\xb4\x79\xd2\x9e\x7e\x99\x68\xb4\x5e\x26\x11\xa5\x95\x25\ -\x3a\x5b\x79\xed\xc8\x65\xf3\x4a\xb5\xf3\xa6\x16\x4e\x5e\x05\x10\ -\xa0\xa8\xb9\x31\x3e\xda\x61\x19\xa9\xc3\x21\xc3\x06\x6b\x58\xfc\ -\xb8\x05\x9c\x87\x2e\xcf\x90\x0b\x98\xad\xd6\xf0\x65\xd6\x7c\xcc\ -\x51\xea\xa4\xe4\x12\x29\x16\xa0\x26\xe4\x3e\xa2\xfb\xd6\xca\x4a\ -\xfd\x3a\x32\xa0\x67\x38\x95\xe4\x4c\x7b\xd8\xaa\xb1\xbc\x3a\x3b\ -\x57\xea\xb1\xfc\xe8\x0e\x8f\xc4\x5d\x9e\x11\x21\x64\x2d\xe4\x50\ -\x09\x31\xb2\xc4\x60\x58\x93\x18\x42\x23\xfa\xd8\x38\x70\x1e\xc8\ -\xb6\xcd\x7f\xca\x88\x3c\x99\x0d\xbe\x88\x50\xa6\x5b\x50\xbd\x79\ -\x85\xe2\x41\x63\x16\xf3\x9b\x63\xb1\x76\xd1\x85\x7c\xaa\x0b\x12\ -\xa6\x6a\x53\x82\x43\xb0\x4c\xb7\xc4\x21\xf4\x89\x46\xc9\xbd\x3a\ -\xb6\x08\x5e\x18\x11\xa0\xc7\xa5\x8a\x27\x1f\x92\x84\xf6\x8a\x02\ -\x4d\x2f\xcf\x1e\x52\xa7\x9f\xe2\xa7\x6b\xf1\xb3\x63\x88\xaa\xd6\ -\xfc\x34\xf4\x21\x9b\xd6\xa4\x98\x40\xd1\x8a\xc1\xb0\xb0\x0f\x5d\ -\x79\x37\x8a\x04\xbc\x5d\xd2\xef\x7f\x58\xf8\xcb\xaa\xd8\x06\x55\ -\x6d\xa3\xd4\x88\x64\x2f\x60\xbf\x6e\xba\x6c\x2a\xb6\xfa\x6b\x49\ -\x5c\x4b\xe0\x14\x61\x77\xe3\xa8\x95\x26\x3b\xc1\x92\xa6\xa7\x81\ -\xae\x14\xea\xe3\x7b\xb2\x6b\xfd\xf7\xfc\x9a\xbe\x13\x4c\x97\x4e\ -\xd9\x7b\xf3\x63\xf4\x88\x42\x62\x99\x54\x6d\xec\x3d\xc4\x0d\x0d\ -\x10\x74\xca\x7c\x8a\xd4\x30\x89\x53\x36\x5c\x37\x2a\x91\x32\xd6\ -\xde\xa2\xbc\xa2\x0d\x12\x09\xd4\xc6\x41\x24\x31\x71\xb0\x87\x28\ -\xd0\x71\x87\xe8\x0d\x24\x90\xc7\x5a\x33\xd5\x11\x94\x89\xff\x6a\ -\xdc\x57\x5b\xd5\x1c\x8f\xce\x66\xb2\x3a\xda\xc9\xda\x3f\x56\x4d\ -\x14\xd5\x1e\x5e\x65\x27\xa1\x26\x2d\xef\x9a\x05\x29\xbb\xd8\x50\ -\x5a\x4a\x61\x9b\xa5\x53\x4c\x37\x50\x68\xe3\xe1\xb4\xa2\x6e\xb8\ -\xd0\xa8\x73\xa3\xcd\xec\x74\x4e\x7d\xce\xa9\xff\x6f\xdc\xe6\x00\ -\xe7\x6b\xb9\x68\x56\xff\x5c\x9f\x1c\x8a\xd1\xfb\xe0\x85\x26\x6c\ -\xd8\x89\x18\x39\xf8\xdc\xc8\x92\x93\xd0\xd6\x10\x7b\xac\x09\x2d\ -\xf7\xcb\xde\xdf\xb4\x3b\x67\x0e\xd7\x72\x18\x93\x11\x69\x56\x81\ -\xd8\x00\x3d\x4e\x3e\xb4\x2a\xd7\x2c\x23\x46\x29\xa1\x06\x42\xe7\ -\x17\x93\xa3\x19\x41\x15\xad\x6a\x2f\x12\x86\x92\x3f\x87\xcc\x43\ -\x03\xb8\x32\x57\xb3\x0e\xd6\x0d\x4c\xbc\x21\x63\x6d\x57\x25\xd2\ -\x6e\x62\x88\x13\xb9\xec\x12\xfe\x9b\xe8\xce\x40\xb1\x89\x6d\xae\ -\xdb\x0e\x8b\x00\xab\xea\xe0\xd5\x78\x7d\x0a\x57\x7d\x2d\x80\x71\ -\x60\xb8\xe2\xef\x5b\x7d\xd6\x10\xa6\x65\xc4\x4f\x56\xc0\xe8\x5e\ -\x9d\x80\xfb\xd6\x0a\x08\xdb\xab\x06\xda\x13\x96\x13\xb5\x6c\x05\ -\xbc\x6d\x47\x64\x58\x0f\x00\x39\xa4\x01\x8a\x13\xcb\x03\xb8\x6d\ -\x26\x0d\x68\x6b\xdb\x07\xc5\xe6\x01\x11\x00\x7a\x9b\x88\x37\x51\ -\xa9\xc5\x96\x1a\xa8\x9e\x04\xbd\xea\x04\x42\x9f\xfa\xc7\xf6\xac\ -\x68\x43\x82\x41\x81\x92\x90\x38\x46\xe6\x0b\x62\x18\x6d\xdb\xa4\ -\x3d\x92\xc9\xc3\xb3\xd3\x4a\xd8\x3e\x68\xeb\xcb\x16\x88\x13\x3f\ -\x77\x24\x6b\x33\xa3\x10\x65\x7f\xc7\x39\x89\x90\xbd\xb7\x35\xba\ -\xd4\x93\xe3\x76\x06\xa3\x38\x47\xe9\x77\x6c\x3d\xa2\xb0\x11\xaf\ -\x98\x6b\x39\x36\x91\x6b\xea\x30\x0d\x18\x93\x17\x48\xac\xe7\xf9\ -\xc3\x96\x16\x3c\x1a\x1b\xba\xc6\x16\x54\x7b\x01\x75\x4e\xf1\x65\ -\xd5\xb4\xad\x25\x8a\xbb\xf5\x59\xb7\xd1\x1b\x03\x40\x36\xac\x5d\ -\x33\x71\x2a\xfb\x1d\xf4\x57\xb5\x0a\x1a\xf8\x97\x8b\x14\xc1\x66\ -\x72\xa8\xe2\xe0\x5f\x68\x2c\x88\xb9\xb7\xb1\x2d\x02\x2d\x39\x16\ -\x4d\x3a\xa7\xfb\x53\x82\x5c\x70\xe6\x2f\xa5\xf5\x90\xc6\x1e\x5d\ -\x8f\xed\x69\xec\x90\xad\x07\x3e\x62\xe1\x51\x61\xc8\x06\x50\xca\ -\x6d\x7b\x87\x40\x50\xaa\x3a\xe1\xe5\xc9\x46\xe0\x93\x6b\x0b\xbf\ -\x8a\x6c\xb5\x5c\xb5\xfa\x3c\xa5\x0f\xef\x64\x95\x8d\x2c\x57\x4f\ -\x32\x74\x4c\xae\x75\x5a\x76\x65\x58\xf5\x10\x86\x1b\xab\x4b\x60\ -\xcf\x7b\x5f\xbc\x95\x62\x5f\x7b\xca\xb5\x7a\x84\x9e\x7a\xa4\xa3\ -\x7a\x98\x5f\xa5\x1e\xae\xe0\x26\xdd\xb1\xc4\xc2\xa3\x98\x25\x1a\ -\x39\xee\xec\x38\x31\xb2\xed\x2d\x8e\xa7\x65\xa0\xde\x38\x29\x21\ -\x45\x67\xda\xce\x48\xd7\x5e\x36\xd9\x72\x0a\xa2\x79\xd6\x79\x75\ -\x34\x75\x47\x83\x2d\x2b\x89\x1c\x51\x61\x1a\x9a\xd5\xd5\x80\x51\ -\x8a\x95\x33\x82\x39\x6e\xd8\x55\x99\xcc\x33\xf4\x25\x4c\xe0\xb0\ -\xbb\x44\xdd\xf6\x24\xfe\xe8\xf9\x71\xc3\x94\x64\xc4\x9d\x06\xfd\ -\xb8\x63\x1f\x06\x3b\x1d\x05\xfd\x64\x18\x6f\x6e\x12\x15\x39\xde\ -\xc1\x55\xf4\xe2\x8a\xba\xa0\xc0\xe0\x16\x39\x29\xf6\x13\x27\x28\ -\x52\x05\xaf\x9f\x5f\x14\xb2\x7c\xb5\x6b\x5b\xba\xae\xf1\xb5\x15\ -\x3a\xb9\x41\xa9\xa9\xeb\x17\x70\xdd\x02\x53\x2d\x2c\xd5\x47\xd6\ -\x2d\x60\x5d\x62\xb1\xd6\xf1\x47\x03\xab\x7a\x60\xe4\xc4\x1c\x99\ -\xc2\x49\x5d\xb3\xf2\x84\x93\x1d\x54\xc2\x83\x5b\x09\x1f\x10\x64\ -\x4a\x9c\x9c\x4b\x7c\xe8\xac\xd6\xa9\x13\x7c\xb7\x02\x82\x8e\x6a\ -\x54\x8d\x0a\x36\x48\xa1\x01\x4e\xea\xe9\x0a\xb5\x2d\xa1\xe7\x5a\ -\x22\xe9\x99\x0d\x46\xa9\x13\x40\x4f\x43\xc6\x83\xc0\x3c\x8c\x07\ -\xd9\xd6\x49\x65\x68\x13\x3b\x87\xd2\xf6\xb8\xd1\x5c\xb5\x8c\x0d\ -\x9e\x23\x00\x17\x39\xf2\xde\xb0\x16\xc6\x40\xf4\xcd\x1e\xdb\x97\ -\xb1\x9b\x40\x41\x09\x41\x9c\xf0\x97\xee\x4a\xb4\x91\xd0\x11\xbd\ -\x68\x28\xb3\x16\x2c\xe2\x62\xe6\xee\x40\x96\xe4\xfa\xcb\x2a\x7b\ -\x60\x6a\xb0\x4e\x5d\x9e\xa1\xd6\x5a\x9e\x7d\xca\x74\xc0\xcb\xcf\ -\x29\x59\xaf\x4a\x3f\xe0\x63\xf6\x49\x48\x02\xbe\x65\x9d\x84\x24\ -\x2e\x65\x84\xf9\xa5\x1f\xda\x0f\x2f\xcf\xa0\xbd\xf3\x85\x11\x89\ -\x6c\xc2\x13\x9c\xc8\x2d\x6a\xc6\x01\x16\x76\x1c\xd1\x09\xab\x53\ -\x90\x53\x67\xd8\x24\x26\x93\xf6\x2e\x68\x8e\x99\xc0\x33\xaf\xdb\ -\x54\x6e\xa3\xb8\x0b\x09\xd2\xe9\x4a\x62\x5f\x2e\x28\x68\x2d\x74\ -\xb5\x91\xcd\x11\x93\x26\xb0\xb3\x3a\x79\xd6\x50\x16\x04\x92\xe5\ -\x39\xa4\x40\x3b\x66\x22\x8d\xce\x88\xa0\x68\x8a\x20\x55\x2e\x5c\ -\x20\x73\xe6\x62\x7f\x02\x6d\xce\xb6\x05\x53\xd1\xd7\x3e\x94\x2a\ -\x98\xb9\xa8\xab\xa6\x78\xe1\xa4\xd1\xc9\xae\xbe\x44\xb8\x65\x4b\ -\xa8\x54\x3f\xd9\x6b\xaa\x8a\x77\x69\xb7\xe1\xa3\x47\xd7\xd7\xb9\ -\x1e\x77\x9f\x60\xee\xc0\x24\x5a\x67\x0b\xe6\x89\x59\x74\x4f\x17\ -\x5e\x3e\x86\x57\x4a\x97\x3d\x45\xf5\xc4\x18\xda\xc0\x29\xcb\xfe\ -\x29\xd4\xd5\xb3\xe7\xa2\x2d\x0b\x39\x69\x46\x60\x4f\x27\x13\x44\ -\xd2\xe4\x53\x39\x5b\x84\xc7\x89\xb1\x9b\x16\xf1\xad\x19\x27\xff\ -\x07\x49\x02\x4d\x52\xcb\x93\x47\xf9\xbf\x3a\xad\xe5\x7e\xe2\x83\ -\xe4\x7a\xf8\x6b\x4f\xe7\xbb\x16\x41\xcc\x6c\x72\x4c\xef\xb8\xd6\ -\x7a\x1a\xb9\xb8\x64\x9e\x54\x8e\xfe\x1c\xab\xb9\xd6\x8c\xd3\x68\ -\x0f\xe2\x2b\x75\x33\x1f\xf8\x17\xde\xba\xac\xf3\xe4\xcf\x5f\xa9\ -\x6e\x23\x4d\x00\xb8\xce\x23\xc0\xf1\x74\x02\x37\x59\xa3\x3a\x8c\ -\x5c\x08\x6c\x5f\x72\xd2\xce\x3e\x9d\xd5\x72\xec\xef\xa9\xac\x96\ -\xaf\x27\xad\xa0\x87\x9a\x02\xdf\x9c\xd4\x32\xf4\x47\x25\x7f\x43\ -\x39\x2d\xf0\xa2\x0e\xb1\x0c\x94\xec\xff\x6d\x72\xcb\xaf\xd3\x88\ -\x7e\xce\x1c\x02\x34\xe8\x47\xd2\xfa\xfb\x53\xc5\xa9\x2c\xe5\x84\ -\x6b\x08\x32\x7d\xad\x36\x7c\x86\x72\xf1\x0c\xd5\x81\x89\xfb\x56\ -\xe5\xf9\x6a\xd7\xc0\xe2\x94\x6b\x56\x69\x02\xe6\x81\xf6\xd4\x8e\ -\xca\xe3\x6b\xe5\x79\x4d\xdd\x69\x88\xf0\x94\xf6\x54\x50\x9f\x90\ -\xb5\x7a\x5a\x7b\x7e\xe3\x29\x61\xff\x04\xea\x73\x7e\x6e\x98\x38\ -\x0f\x07\xc8\xef\x02\x42\x8e\x8c\x60\x0f\x41\x54\xd6\x93\xb9\x44\ -\x1d\x99\xb3\x35\x80\x85\x15\x80\xa7\x44\xbd\x90\x40\x2a\x8b\x21\ -\x04\xa0\x65\xf6\xcd\x8c\x76\xae\x35\xe7\x83\x45\x93\x65\x43\x0f\ -\x38\x4c\xda\x5a\x23\x01\xa5\xa5\x6f\xf6\x21\x50\x47\x97\x33\x42\ -\x96\xb8\x36\xc3\x29\x68\x3a\xb5\xa5\x2d\xd9\x8a\x0f\xa8\x3c\xe3\ -\x25\x44\x55\x99\x47\x74\xce\x1b\x8e\xd7\x83\x8a\x40\xa7\x1c\xc3\ -\x01\x13\x70\x1e\x4c\x42\x14\xed\x64\x0e\x84\xc6\x18\x55\x83\xb3\ -\xce\x09\xee\x40\xa0\x40\x48\x0e\xb1\xb3\xa6\x63\x11\x8c\x83\xe0\ -\x93\x67\x05\x53\xa0\x25\xd4\xb7\x86\xfe\x8a\x30\xe3\x25\x45\x87\ -\x09\xd4\xd0\xd2\xb9\x33\x63\x36\x4a\x9a\xa0\x22\xc4\xf4\x82\x2f\ -\x11\x25\x22\xca\xab\xe3\x7f\xd9\xe0\x0f\xf4\x87\xcf\xeb\x28\x4d\ -\x71\x24\x98\x5c\x4c\x25\x12\xf4\x82\xed\x5c\xf6\x7c\xea\x29\x91\ -\x27\xd4\x94\x03\x69\xaf\x22\x1d\xb7\x0e\x14\x7d\x84\x49\xa0\x3c\ -\x3c\xa3\xad\x91\x53\x56\x1d\x4c\xd2\x72\x12\x1f\x72\x92\x6c\x81\ -\xa4\xf9\x2c\x9b\x72\x39\x24\x85\x8a\xae\x8a\x05\x27\x45\x26\x48\ -\x8a\x9b\x8f\x9e\xce\x55\x60\x89\x94\x95\x14\x1b\x84\xe0\x96\x37\ -\x82\x11\xce\x27\x49\xab\x8a\x11\xa1\x16\x37\xb4\x40\x94\x6c\xaf\ -\x00\x7b\x15\x1d\x4d\x4d\x43\xb4\x46\xa2\x45\x0f\xdf\x8d\x80\x8c\ -\x28\x89\x00\x9b\x47\x8c\x40\xe0\xdc\x17\xed\x6f\x64\x39\xfd\x8c\ -\xde\xf0\x91\xb1\x03\xa7\xe4\x40\x14\x7c\xb2\xbc\xfd\x01\x9c\xaf\ -\xc5\x1c\x52\x82\x12\x6f\x3c\x5a\xca\x1f\x2e\xa1\x1d\x43\x74\x18\ -\xa0\x18\xb8\x59\x00\x02\xe6\x13\x11\x8f\x70\x95\xce\x4d\x35\xa5\ -\x0e\x25\xce\x08\xd3\xa8\x5e\xb2\x55\x42\xe4\x33\x6b\xe3\x21\x17\ -\x1c\x5b\x47\x8b\x68\x9e\x53\x5a\x68\xab\xc7\x5f\x33\x20\xf0\xb4\ -\x01\xc4\x2c\x20\x72\xbb\x20\xf9\x51\x80\xcd\x41\x0f\x94\xfc\x32\ -\x98\x42\x99\x63\x27\x7f\x7c\x34\x6f\xbf\xca\xbc\x5d\xcc\x82\x59\ -\xd6\xf6\x4c\x7f\x6b\x1c\xd2\xe4\x83\x96\x1c\x56\xca\x1d\x10\x15\ -\x48\xf0\xfe\xe5\x14\xd1\x97\x53\x6e\x4a\x13\x65\x70\x52\xf6\xf9\ -\x23\x04\x4c\x0b\x4c\x29\x52\x04\x43\x68\xe5\x50\x89\xb6\xbd\x42\ -\x14\xe1\x80\x48\x89\xb6\x8b\x0e\xa6\x4c\xb2\x26\x78\xc7\x49\x9a\ -\xa9\x41\x84\x50\x20\x10\x2c\x55\x90\x0c\x05\x28\x91\x34\x83\xb1\ -\x94\x4c\x14\x98\x1b\x27\xdb\x17\x04\x73\x24\x29\x12\x4e\x3f\x1d\ -\xc1\x76\x92\x14\x44\xfa\xaa\x9a\xc0\xf5\x2c\xf4\x41\x94\x27\xa6\ -\x9c\x52\x28\x08\x4a\xd5\xab\x0c\xba\xb6\x86\x30\x96\x5a\x4e\xcc\ -\x11\xa1\x88\x1d\x85\x89\x95\x9c\xd1\xa8\x7c\xd9\x35\xd3\x74\x49\ -\x5e\xec\x86\x95\xbd\x2c\x98\x7f\xa7\x79\xc6\x14\xac\xc8\x66\x91\ -\x4b\xa9\x60\x34\x18\x7d\x2d\x69\x0c\xda\xf0\x86\x24\x2b\xbb\xd6\ -\x42\x49\x93\x61\xe9\x45\x83\xe8\x18\x28\x4a\x5b\x18\xf2\x24\x2a\ -\x19\x93\xec\x47\x51\xba\x48\x9d\x20\x23\x46\x98\xf6\xda\xea\xf4\ -\x1d\x5f\x08\x77\x34\x71\xe5\x4c\x1c\x2a\x4a\xf7\x2c\xa4\x14\x2e\ -\x04\x56\xae\x5f\x52\x5b\x4d\x18\x14\xc3\x01\x13\x19\x4f\xde\xf4\ -\x33\x5e\xcb\x2e\x19\xef\x01\x66\xcb\x17\x1d\x10\x4f\x79\xd9\xcd\ -\x74\xc6\xb0\x13\xb0\x21\xf3\x16\x1c\x4c\x8a\x9c\x20\x61\xf1\x34\ -\x25\xa2\x07\x82\x50\xf6\x00\xb0\xb5\xb1\xd8\x1f\x76\x00\xb0\x93\ -\xce\x48\x26\xab\x1c\x82\x79\xed\xe5\xe4\x15\x5e\x20\x51\x0a\xe2\ -\x14\x92\x25\x29\x76\x1a\x44\x70\x32\x12\xcc\x20\xe7\xba\xc2\x38\ -\x27\x1e\x89\x0e\xcd\x79\x24\x38\x51\x3e\xc0\x8d\x44\x4f\x2b\x43\ -\x59\x71\x23\x81\x3c\x25\x9b\x3a\x6f\x03\xfb\x28\x80\x2c\x49\xde\ -\x8b\x1a\x64\x24\xdf\xa6\xc8\xcf\xf2\x2a\xb1\x2a\xde\x33\xce\x49\ -\x95\x43\x9f\xac\xd9\xc7\x04\x0f\xba\x52\x49\xf2\x59\x1c\x22\x4c\ -\xa7\x50\x8a\x3a\x66\x3f\x9a\x6c\x49\x32\x0d\xec\x6b\x03\x25\x20\ -\x64\x69\x13\xf8\x44\x21\x65\x45\xc9\x05\xdc\x46\x73\x1b\xef\x03\ -\x3b\x1f\x0d\xcf\x28\xae\x17\x82\x28\x69\x83\x94\x0b\x2a\x0e\x34\ -\xe7\x18\x8e\x8e\xd0\x27\xde\x33\x86\xd0\x99\x90\x06\x4a\x06\xad\ -\x70\xd2\xb6\x73\xc3\x6a\xb4\xc2\x17\xb1\xc2\x5f\xbb\x3b\xf4\xd5\ -\x9b\x43\x00\x38\xb0\x7d\xb0\x06\x69\x1a\x35\x9d\xa3\xda\x65\xe5\ -\x10\x4c\xe2\x43\xd0\x26\xd1\x07\xba\x46\x63\x1d\x2c\x74\xe5\x1c\ -\x1d\x6f\x68\x31\x28\x78\xf0\x11\xb1\xdb\xf7\xe3\x95\x9f\xdf\xcd\ -\x95\x9f\x57\x53\xbc\x85\xbf\x9b\xf9\xaf\xdc\x22\x3c\x55\x3c\x97\ -\xee\xdc\x5d\x1e\x2f\xfc\x7c\xed\xc2\xcf\x78\xdd\x87\x27\x3e\x5e\ -\xf7\x19\xaf\xfb\x0c\x4a\xe0\x78\xdd\xe7\xba\x29\x18\xaf\xfb\x8c\ -\xd7\x7d\xc6\xeb\x3e\xe3\x75\x9f\xf1\xba\xcf\x78\xdd\x67\xbc\xee\ -\x33\x5e\xf7\x19\xaf\xfb\x8c\xd7\x7d\xc6\xeb\x3e\xe3\x75\x9f\xf1\ -\xba\xcf\x78\xdd\x67\xbc\xee\xf3\x02\xea\x8c\xd7\x7d\xc6\xeb\x3e\ -\xe3\x75\x9f\xf1\xba\x0f\xbd\x19\xaf\xfb\x8c\xd7\x7d\xda\x08\x64\ -\xbc\xee\x33\x5e\xf7\x19\xaf\xfb\x8c\xd7\x7d\x5a\x12\x39\x5e\xf7\ -\xf9\xf6\xeb\x3e\xc3\x49\x03\xe3\x75\x9f\xf1\xba\xcf\x99\x09\x2d\ -\xaf\x96\xce\x02\xe4\x05\xc7\xde\x95\x4c\xca\x7f\x86\xc2\x04\x95\ -\x5e\x98\xd7\xf2\xbb\x4a\x28\x1b\x2f\xfd\xfc\xd3\x5d\xfa\x19\xb5\ -\xe8\x37\xa2\x45\xe3\xdd\x1f\x01\x21\xe3\xdd\x9f\xeb\x6a\xbc\xfb\ -\x73\xe1\xbb\x3f\xbf\x99\xd4\xd7\xa1\x3f\xa0\xf1\xbb\x32\x6e\xe3\ -\xcd\x9f\xf1\xe6\x8f\x50\x6e\xbc\xf9\x33\xde\xfc\x79\xc9\xcd\x9f\ -\xd1\x06\xbf\xde\xbd\x9f\xe5\x7a\xbd\x7a\xd8\x2f\xbf\x7b\x15\xfa\ -\x2a\x45\xf2\xf9\x2b\xff\x9e\xcb\x94\xd2\x51\x09\xcd\xff\x0e\xe8\ -\xfb\xdd\x89\xf4\x86\xf6\x1f\x57\x27\x58\xa5\xe3\xe9\xde\x05\xc1\ -\x31\x3b\x6d\x30\x2f\xe1\x37\x6d\x64\xb3\xa7\x91\xfc\x5d\xa9\x25\ -\x0c\x64\xf6\xbd\xb9\xd9\x7f\xc4\x3f\xff\x00\xaa\x5d\xac\xfa\ -\x00\x00\x12\xe9\ -\x00\ -\x01\xe7\x43\x78\x9c\xed\x5d\x4b\x73\xdb\xc8\x11\xbe\xfb\x57\x30\ -\xf4\x25\xa9\x18\x43\xcc\xe0\x4d\x4b\xde\x43\xb6\xb6\xb2\x55\xc9\ -\x25\xd9\x24\x55\xb9\x6c\x51\x24\x28\x31\x26\x09\x15\x08\x5a\xd2\ -\xfe\xfa\xcc\xe0\x49\x42\xad\xb5\xb8\x0d\x34\xac\x45\xd3\xbb\x65\ -\x13\x00\x5f\xf3\xa1\x9f\x5f\x4f\xf7\xd5\x77\x8f\xbb\xed\xe4\x4b\ -\x9c\x1e\x36\xc9\xfe\x7a\x2a\x85\x3d\x9d\xc4\xfb\x65\xb2\xda\xec\ -\x6f\xaf\xa7\xff\xfa\xe9\x07\x2b\x9c\x4e\x0e\xd9\x62\xbf\x5a\x6c\ -\x93\x7d\x7c\x3d\xdd\x27\xd3\xef\x3e\xbd\xbb\xfa\x83\x65\x4d\xfe\ -\x92\xc6\x8b\x2c\x5e\x4d\x1e\x36\xd9\xdd\xe4\xc7\xfd\xe7\xc3\x72\ -\x71\x1f\x4f\xfe\x78\x97\x65\xf7\xf3\xd9\xec\xe1\xe1\x41\x6c\xca\ -\x83\x22\x49\x6f\x67\x7f\x9a\x58\xd6\xa7\x77\xef\xae\x0e\x5f\x6e\ -\xdf\x4d\x26\x13\xfd\xb9\xfb\xc3\x7c\xb5\xbc\x9e\x96\x2f\xb8\x3f\ -\xa6\xdb\xfc\xc2\xd5\x72\x16\x6f\xe3\x5d\xbc\xcf\x0e\x33\x29\xe4\ -\x6c\xda\x5c\xbe\x6c\x2e\x5f\x9a\x4f\xdf\x7c\x89\x97\xc9\x6e\x97\ -\xec\x0f\xf9\x2b\xf7\x87\xf7\x27\x17\xa7\xab\x75\x7d\xb5\xf9\x36\ -\x0f\x4e\x7e\x91\x8c\xa2\x68\x66\xab\x99\x52\x96\xbe\xc2\x3a\x3c\ -\xed\xb3\xc5\xa3\x75\xfe\x52\xfd\x1d\xa1\x97\x2a\xdb\xb6\x67\xfa\ -\x5c\x73\xe5\xeb\xae\x9a\x1f\xf4\x82\xde\xeb\xff\xeb\xcb\xab\x03\ -\xe2\x90\x1c\xd3\x65\xbc\xd6\xaf\x8b\xc5\x3e\xce\x66\xdf\xff\xf4\ -\x7d\x7d\xd2\xb2\xc5\x2a\x5b\x9d\xbc\x4d\xb5\x9e\x67\x9f\x7a\xb6\ -\xc8\xfb\xc5\x2e\x3e\xdc\x2f\x96\xf1\x61\x56\x1d\xcf\x5f\xff\xb0\ -\x59\x65\x77\xd7\x53\xc7\x15\xd2\xd1\x0f\x2f\x3f\x78\x17\x6f\x6e\ -\xef\xb2\xf6\xd1\xcd\xea\x7a\xaa\xbf\xbd\xe7\x28\x3b\x7f\x7e\x72\ -\x73\xc8\xe2\x82\xf2\x8d\xe7\xf5\x19\x5b\x44\x4a\xc8\x49\x2a\x3d\ -\x27\x28\xae\xa9\x7e\xc2\x7c\x95\x2c\xcd\x77\xd2\x6f\x19\xef\x36\ -\x8b\x63\x96\xec\x34\x6a\xcb\xe5\x76\x71\x38\x6c\xd6\x9b\xa5\x7e\ -\x92\xec\xef\xb7\xc7\xdb\xcd\xfe\x67\xfd\xa6\x59\x16\xa7\x3f\xa7\ -\x8b\x83\xf9\x6b\xb3\x5b\xe8\x35\xa9\xd6\xb1\xfe\xd0\xf8\xf1\x3e\ -\x49\x33\xeb\x71\x75\xaf\x57\xd3\x0f\x84\x07\x9e\x7e\x6a\x4e\x7f\ -\xd2\xe7\xaf\x56\xf1\xfa\x60\xae\x2b\x7e\x9e\x79\xa6\x7f\x9f\x9a\ -\x4e\x66\xf9\xd9\xfa\xdb\x9a\xaf\xba\xfa\xb2\x89\x1f\x9a\x6b\x6f\ -\x16\x87\x62\x09\x27\x93\x7b\xfd\x85\x96\xc9\x36\x49\xaf\xa7\xef\ -\xd7\xf9\xa3\x3c\x71\x93\xa4\xab\x38\xad\x4e\xf9\xf9\xe3\xec\x54\ -\xa2\x21\xd9\x64\x4f\x85\x80\x95\xef\x5d\x7d\x63\xf3\xae\xf5\x79\ -\x1b\x3e\x7f\xb8\x5b\xac\x92\x87\xeb\xa9\x6a\x9f\xfc\x25\x49\x76\ -\xd7\xd3\x40\x44\x32\xb4\x5d\x19\xb4\x4f\x2f\x1f\xaf\xa7\x96\xaf\ -\x84\xf2\xdd\x28\x72\x9f\x9d\x35\x5f\x28\x12\xa1\xe3\xf9\x25\x6c\ -\xa7\x27\x8f\x69\xaa\x45\xd0\xda\x2e\x9e\x62\xfd\xab\xf2\xbf\x9c\ -\xf2\xa2\xc3\x5d\xf2\x70\x9b\x9a\xd5\xc9\xd2\x63\xdc\x7e\xa5\x39\ -\x63\xdd\xdc\x24\x8f\xf0\x69\x7d\x47\x1c\x8d\x70\x5b\xc7\xfd\x26\ -\xd3\x02\x74\xff\x78\xfa\xae\xc7\xcd\x2a\x3e\xbc\xf0\xbe\xe6\xdc\ -\xaf\xbc\xf1\xc3\x66\xaf\x17\xc9\x2a\x6f\x75\xe9\xd4\x18\xb4\xaf\ -\xa8\xee\xfb\xc0\x0e\x5f\xb8\x42\x7f\xc2\x33\x1c\xca\x53\x4f\x2f\ -\x9f\xda\x2d\x1e\x37\xbb\xcd\x2f\xb1\x5e\x17\x99\xdf\x76\xfa\xd6\ -\x3a\x5b\x95\xe2\x65\x93\x49\xf6\x64\x64\xf8\xf1\xc9\x1c\x9b\x56\ -\x07\xcd\x72\x9a\x03\x9e\xe3\xfa\xf5\xc1\x24\xdd\x68\xd1\x38\xf9\ -\x3a\xd5\xa1\xa7\xd3\x43\x46\xe2\xb5\xc2\x7e\xcc\xef\xaf\xfc\xee\ -\x0b\xda\xe7\x9e\x4e\xcf\x95\xb7\xfd\xec\xf9\x7d\x9f\x1f\xdf\xc5\ -\xd9\x62\xb5\xc8\x16\x8d\x10\x54\x47\xb4\xd0\x78\xd5\x2f\xd3\xca\ -\x73\xfe\x8f\xef\x7f\xf8\x54\x7e\xd0\xd5\x72\x39\xff\x4f\x92\x7e\ -\xae\x3e\x77\x32\x31\x17\x2c\x6e\x92\xa3\x5e\xe9\xe9\xa7\xfa\xf0\ -\xd5\x6a\x39\xd7\xea\x4e\xab\x81\x4f\xb9\x84\x1b\x4d\xf9\x67\xad\ -\xde\xae\x66\xcd\x89\xb3\x8b\xcd\x62\x35\x6f\x5a\xbc\x6d\x1a\x17\ -\x7a\x13\x34\x1e\xab\xe5\x6e\x63\x5e\x34\xfb\x67\xb6\xd9\x6e\x7f\ -\x34\x1f\x52\xfe\xe2\x93\x37\xdd\x64\xdb\xb8\x39\x78\x35\x2b\xbf\ -\x7d\xf9\xdb\x66\x27\x3f\xee\x6a\x56\xfd\xfa\xfc\xd9\x6d\xb3\x2a\ -\xb9\x4c\x3c\x13\x9c\xed\xe2\x26\xde\x5e\x4f\xff\x66\x4e\x4e\x9e\ -\x9d\xbd\x4d\x93\xe3\xfd\x2e\x59\xc5\xe5\xcb\x2b\x2c\x6e\xbf\x76\ -\x5d\xeb\x63\x9d\x97\x3e\x56\x9b\xc4\xed\x36\xa9\x41\x8a\x97\x59\ -\x7d\x27\x64\x4f\x5b\xfd\x76\xb9\x9a\x9a\xbf\xb7\xf3\xc7\xc7\xd5\ -\xe6\x70\xaf\xdf\x50\x9b\x96\xed\x66\x1f\x7f\x4c\xb4\x4e\x5f\x6f\ -\x93\x87\xf9\x97\xcd\x61\x73\xb3\x8d\x3f\xe6\x7f\x6f\xb6\x7a\x41\ -\xeb\x43\x6b\xbd\xaa\xf3\xf7\x37\x8e\xf9\x93\x3f\xb1\x4a\xf5\x35\ -\x97\xc5\xd3\xf4\xb8\x8d\xe7\xfb\x64\xff\x8b\x56\x7c\x1f\x0f\x59\ -\x9a\x7c\x8e\xe7\xef\xa5\xb7\x5e\xeb\xcf\x2b\x9e\x16\x42\x3a\xd7\ -\x8a\xc9\xcd\xbf\x86\xac\x8e\x9b\x2f\xa1\x7f\xce\xfc\xe6\x98\x65\ -\xa7\xc7\xfe\x97\x6c\xf6\x73\x0d\x6b\x9c\x56\x47\xf3\x27\x5b\x2d\ -\x6f\xd9\xdc\xad\x8e\xad\x16\x5a\x51\xa6\xa9\xfe\x39\xfa\xd3\xe3\ -\xd3\xa3\xc9\x7a\x7d\x88\x33\xfd\x81\xa1\xa3\x42\x5b\x7a\x61\x75\ -\xb2\xf9\xea\xbb\x45\xfa\x39\x4e\x8b\x57\xc6\xfb\x85\xfe\xa5\xd6\ -\xcd\x62\xf9\xd9\x00\xb1\x5f\xcd\x17\x4b\xad\xb5\x8e\x5b\xed\xf0\ -\x9c\x09\xac\x59\x5f\xc7\xb6\x1b\x71\x2b\xb5\x8f\xeb\x8a\x20\x32\ -\x8f\xfa\x44\x6d\x6c\x03\x61\x6c\xad\xa3\xea\x33\xb9\x8e\x16\xe5\ -\x42\xd4\x47\xb5\xc0\x5a\xaa\xb0\xcb\x8e\x5b\x1f\x4d\xf5\xe1\x48\ -\x68\x2b\x6b\x2b\xdb\xa9\xef\xea\xab\xfb\x45\x76\xd7\x82\xb9\x42\ -\x69\xbd\x0e\xed\x1a\x84\x12\xf4\x33\x10\xb4\x59\x77\x02\xfd\xf0\ -\xa3\xfb\xc7\xcb\x61\xa8\xd7\xaf\xfe\x8a\x7a\x55\xfe\x3e\x91\x52\ -\xe4\x6f\x1a\x7e\xb0\x27\x95\x7b\xe1\x7c\xa8\x8f\x4e\x94\x12\x81\ -\x67\x1e\x1f\xea\xb3\x13\xfb\x43\x7d\x74\xf2\xdf\xb3\x55\x36\x3f\ -\x4f\x45\x51\xb3\xca\x8d\x95\x4a\xf6\xfa\x9b\x66\x49\x6a\x69\x7b\ -\xf5\x65\x91\x1d\xd3\xd8\x28\xc6\xaf\x2e\xcc\xc9\xfd\x01\xaf\x4a\ -\xbd\xf4\x6e\x9f\xb7\xe6\x4b\xab\x57\x69\xea\x0f\x56\xfd\xcf\xc9\ -\xbf\x27\x8e\x53\x3c\x09\xa0\xc5\xf1\x5f\xbd\x38\xf5\x7a\xd4\xda\ -\x5f\xab\x19\xa3\x30\xb5\xdd\x5d\x2e\xdf\xfa\xda\x39\x9e\x50\x1f\ -\xea\x95\x9a\xfc\x75\xf2\xdc\x24\x9e\xac\x5a\xf8\xed\xac\x9a\x14\ -\x1a\x44\x5b\x79\x61\x67\x62\xb8\x9b\x54\x48\x38\x1f\x54\x20\x82\ -\x42\xcc\x96\xf5\x51\x57\x0b\xe7\x0b\xff\x7e\xb6\x56\x5a\x6e\x95\ -\x65\xd3\x0a\xa0\x0c\x3c\x57\x7a\x5e\x87\xeb\xa1\xd5\xec\x89\xc2\ -\x59\x6a\x95\x63\xb9\xda\x39\x36\x8f\x97\xfe\xfd\x7c\x25\x42\xf7\ -\xcd\xaf\x83\x56\xc4\xc5\xdd\xd0\xc9\x6a\x58\xaf\x97\xa2\x6f\x74\ -\x3d\xb4\xe1\xe9\xe6\xc6\xb0\xa2\x37\xbf\x14\x41\xa7\xb7\xc6\x9b\ -\x17\x95\xda\x94\x74\xb3\x1e\xce\x5b\x5f\x0f\x19\x74\xba\x1e\xaf\ -\x77\x5b\xbe\xee\xec\x9a\x8c\x8c\xfd\x35\x67\xb7\x57\x23\xab\xd5\ -\x08\xca\xbe\x5a\xea\xf7\xb4\x1c\xf5\xad\x82\x5b\x13\x49\x28\x32\ -\x3d\x2f\x88\xec\xc2\x09\x23\xd5\x21\xfd\x2e\x88\x8f\x95\x17\xf7\ -\x77\xb3\x14\x4d\xa0\x87\x5a\x90\xdf\xe0\x7f\xf4\x97\x23\x32\xfa\ -\x47\xbf\xfe\xd5\x39\x22\x68\xd5\xed\xcb\xd7\xfa\x37\xa5\x86\xec\ -\x67\x48\x21\x32\x42\xa1\xdd\x28\xf2\x2a\x1f\x2d\x9a\x43\x55\x2e\ -\xc8\x16\x91\x74\x55\xe8\x05\x67\xc9\x20\xe9\x08\xf7\xdc\x62\x9a\ -\xe4\x6d\xa9\x3a\x3c\xc6\xad\x5f\xdc\x4e\x54\xca\xe5\xc8\x79\x22\ -\x3c\x4f\x35\x30\x72\x84\xc8\x45\x08\xe4\x5c\xe1\x3f\x47\xce\x13\ -\x4e\x64\xbb\x81\xcf\xc8\xf5\x2d\x73\x27\x29\x84\xcb\xb1\x2b\xdd\ -\xcc\x90\xb1\x1b\x02\x3b\x8c\xa5\x83\xa4\x2e\x12\x39\x6e\x8e\x62\ -\xe4\x7a\x97\x3a\xbf\x63\xa9\x63\xec\xc8\x6c\xdd\x49\x14\xd8\x91\ -\x9f\xe2\x08\xcf\x97\x91\xcd\x7e\x0a\x81\xb5\x43\xf9\x2a\x61\x3b\ -\xa3\xc6\xe8\x51\xda\xbb\xae\x05\x2f\x14\x76\xa0\xa1\x93\x11\x43\ -\xd7\xbb\xe0\x75\x2d\x76\x8c\x1d\x9d\xc1\x43\x38\x9a\xca\x16\x3e\ -\xa7\x54\x86\x35\x78\xb2\x6b\x8b\xc7\xf0\x11\xc1\x87\x89\x12\xc0\ -\x5c\x26\xfb\x2a\x64\x82\x87\x70\x56\x60\xa5\xc9\xd8\x91\x19\x3c\ -\x8c\xc6\x8c\x0a\xb9\xe3\xcc\xca\x60\x06\x0f\xa1\x35\x95\x04\xc2\ -\x04\x52\xf4\xcc\xab\xc3\xb1\xa2\x17\x01\x4a\xb3\x5d\x43\x5a\x01\ -\xf8\xfc\x4c\x81\x5f\xc1\xd3\x9e\x69\x4e\xbb\x4a\x76\x32\x7e\xbd\ -\x5b\x3d\x34\x82\x0e\xa0\x3f\x19\x41\x3a\xdb\x07\x68\xcf\xcb\x00\ -\x54\xe2\x5c\xfa\x5c\x11\xe5\x32\xc9\xd8\x11\xd8\x3e\x0f\x8b\x9e\ -\x2b\xbc\x02\x2d\x86\x70\x88\x14\x27\x14\x36\xa0\xc4\x2f\x2c\xf1\ -\x0c\x19\xbb\xfe\x49\x3d\x28\x70\xc0\x8b\x1f\x43\x48\xc8\xed\xe1\ -\x35\x28\xe8\xc0\x28\xc1\xe8\x91\x24\x3b\x21\xa2\xe1\x32\xfc\x3c\ -\xe1\x33\x74\xe4\xd4\x1e\x1e\x37\x48\xee\x9a\xdd\xbd\x8c\x60\xef\ -\x0c\x1f\x3e\x74\x68\x89\x1e\xa3\x47\xc8\xf1\xe1\xd1\x2b\xf7\xaf\ -\x71\xee\x65\x40\xaa\x0f\xef\x81\xb6\xcd\x1f\x03\x48\x45\xf6\xe1\ -\x63\x3f\x30\xfb\xc9\xfe\x0b\x49\xe2\xd3\x7a\xd6\x8a\xa4\x13\xfd\ -\xc9\xe8\x91\x10\x7e\x78\xf7\xd3\x07\x38\x5b\x8e\xdc\x49\x79\x3f\ -\x7c\xec\x1e\xb6\x9b\x07\x31\x88\x84\x20\x62\xed\x5f\xe3\xab\x9c\ -\x6a\xd0\x48\x28\x0e\x22\x88\x8c\x20\xb0\x85\xef\x32\x04\x8d\xb9\ -\x63\xf0\x06\xb1\x81\x58\xff\xa5\x2a\x0b\x3c\xf3\x5f\x9a\xac\x0c\ -\x03\x48\x60\x01\xb1\x06\x50\x3a\x40\xfd\x0b\x63\x48\x47\xff\x01\ -\xa5\xd6\x78\x21\x6c\x76\x8c\x31\x80\xfd\x73\x80\x68\x3d\x0a\xc9\ -\x20\x43\x48\xc9\x01\x62\x53\xa1\x6d\x37\xa6\x49\xcc\x30\x7a\x14\ -\x1c\xa0\x8d\xc5\xaf\x2e\x78\x61\x10\x87\x61\x03\xd1\x08\xb6\x03\ -\x09\x2e\x61\x22\x24\x02\x7b\x91\x3f\x86\x90\x92\x0d\x44\x7b\x31\ -\x60\x6f\x10\x0e\xe7\x69\xd9\x40\x74\x38\x01\x0a\x22\xa3\x48\x47\ -\x09\xa2\x55\x29\x94\x13\x65\x57\x86\x92\x18\x44\x27\x65\x20\x55\ -\xca\x10\x92\xb2\x83\x68\x0c\xcf\x8b\x2a\x38\x9a\x27\xe5\x05\xd1\ -\x4a\x34\x2c\xfb\x7f\x32\x88\x03\x6d\x4a\x42\xd7\x35\xc1\x10\x92\ -\x34\xa9\x1b\x35\x76\xf9\xa6\x24\xb4\x1f\xaa\x6c\xa8\x0f\x05\xa3\ -\x47\x91\x0c\xf5\xd0\xb5\x31\x4d\xc0\x70\x8a\x5e\x9d\xe6\x66\x10\ -\x49\xf6\x45\xe0\x85\x10\x2c\x2f\x64\x18\xe9\x82\x41\xbc\x24\x82\ -\x59\x19\x86\x90\xb2\x4c\x14\x5f\x28\x0a\xee\x30\x63\x10\x09\xbd\ -\x51\x74\xa5\x1a\x6f\x31\x1b\xc8\x11\x45\x07\xf2\x60\x1c\xc1\x00\ -\xd2\xb9\x31\xfd\x78\xa3\xbc\xcd\x85\xd0\x8d\xc1\xe6\x63\xc0\x3a\ -\x6d\xaf\xf0\x4e\x69\xda\x12\x8e\x1a\xc2\xd2\x8d\x41\x57\xdb\x7f\ -\x03\xcd\x9a\xcc\xa8\xae\x91\xa2\x18\x39\xd0\xec\x07\xd7\x33\x7f\ -\x3c\x00\x41\xc7\x76\x02\xfd\x5f\x2b\x2d\x13\x99\xcb\xcf\xbd\x19\ -\x4f\x04\xbe\x8a\x7c\x22\x66\x62\xc4\x08\x9a\x76\x5b\x50\xad\xda\ -\x65\x18\xea\xc0\xc1\x5c\xcf\x18\x0e\x16\x4d\x00\xbb\x26\x2e\x83\ -\xb0\xd5\xf3\xc7\x88\xa5\x99\xf6\x4d\xd2\x1b\x7b\xd4\xe8\x15\x41\ -\x05\xe0\x91\x5e\x86\x9f\x76\x5d\xec\xc8\x8e\x14\x83\x38\x50\xd3\ -\x2d\x88\xa3\x47\x89\xa0\x74\x84\xf4\xf4\x83\xdd\x98\xfe\x45\xd0\ -\xb7\xc0\xb6\x07\x78\x11\x64\x10\x89\x79\x26\x20\xad\xd6\x81\x2f\ -\x13\x0a\x73\xa1\xcf\x8a\x94\x2a\x43\x83\x16\x46\x5f\x7b\x9f\x8e\ -\xef\x84\x0c\xe3\x50\xcd\xb8\xa0\x0c\x77\x07\xa2\x68\x0b\xcf\x0d\ -\xa5\x4b\x94\x2c\x1d\x31\x86\x79\x3b\x2e\x7c\x7c\x0f\x0a\x22\x83\ -\x48\xdc\xd2\xa9\x27\x85\xca\x31\x3e\x61\xca\x1b\x1d\x60\x80\xa9\ -\x36\xb6\x89\x94\xbb\x9a\xd0\x46\x51\x2a\xa1\x64\xa8\xff\x9c\x81\ -\x18\x09\x3f\x70\xed\x80\x68\xbc\xc4\x88\x41\xcc\xeb\x48\x21\xf2\ -\xe9\x32\x10\x7d\xe1\x69\x0c\x39\x59\x33\x24\x8d\x0f\x15\xd1\x5c\ -\x86\x62\x24\x5c\x1d\xef\x4b\x46\x71\xc0\x78\x1f\xaf\x50\x43\xa1\ -\xcd\x9f\xe3\xb3\x55\x1c\x34\xe0\x07\x9b\xc7\x76\xe0\xde\xb0\x65\ -\xa4\xac\x2d\x45\x87\x19\x3a\xa2\x90\x2a\x50\x81\x64\x69\x1c\xb0\ -\x2c\x03\x4f\x47\x81\xa9\x1b\x96\x45\xca\xfa\x52\x34\x88\xd2\xd1\ -\x78\x69\x61\x1c\x72\xdf\xe1\x88\x41\xac\xaa\x4d\x7b\x89\x36\x18\ -\x46\x5a\x3f\x55\xa1\x2b\x34\x60\xcb\xe8\xea\x37\x89\x94\x4f\xd4\ -\x47\x61\xc4\x30\xd6\xa5\xc3\xe8\x8c\x38\x1c\x70\x30\x90\xc4\x95\ -\xa7\xf8\x92\xa9\x6f\xa0\x72\x71\xc4\x15\xc4\xa6\xf6\x14\x3d\x6f\ -\x84\x07\xfe\x0c\x5e\x7c\x8a\xde\x52\xca\x13\x7f\x06\x82\x2f\x2f\ -\x7a\x03\xac\x21\x7e\x5c\xa1\x5b\x6e\xd5\x27\x0a\xf8\x47\x8c\x61\ -\x51\xfa\x86\xde\x86\x01\x4d\xae\x60\x10\x69\x43\x0c\xb4\x24\xb6\ -\x14\x29\x0f\xad\xa0\x8e\x2d\xd0\x08\x42\xe3\x7f\x18\x46\xd2\xa2\ -\xb7\xae\x87\xa7\xa9\x72\xaf\x30\x07\x14\xfd\x4b\xa1\x49\x9b\xf6\ -\x32\xc2\x90\x41\xa4\x33\x85\x9d\x4c\xc1\x8b\x80\xfe\xf9\x1c\x58\ -\x90\x17\x2d\xa2\x37\x79\x43\xc2\xc8\x38\x52\x52\xc2\xbd\x74\xaa\ -\x61\x9f\x86\x36\x5b\x8a\x36\x8a\x90\x3e\x65\x10\xe9\x8c\xa2\xec\ -\x60\x38\x17\xd8\x31\x83\x83\x7c\x4a\xa3\xe8\x77\xd0\x07\xd3\xb1\ -\x8b\x7e\xec\x8a\x61\x1c\x96\x47\xc4\x0e\x3a\x04\x7b\x9f\xb0\x73\ -\x43\xda\x84\x08\x6d\x19\x41\x69\x6c\xae\x64\x10\x89\xc8\x60\x74\ -\x06\x9c\x99\xc4\x81\xc9\x60\x34\x82\xad\xc4\x1b\xb7\x73\x23\xa5\ -\x81\xd1\xc3\xd3\xa1\x50\x9f\x31\x24\xe5\x82\xd1\x18\x42\x34\x22\ -\x87\x89\xb4\x5c\x30\x1a\x44\x28\x4c\x64\x10\x69\xb9\x60\x74\x6c\ -\x01\x6a\x53\x6e\x51\x4b\x17\x1f\xa2\xdd\x19\x28\xe5\xc6\x08\x52\ -\x98\xc2\x9c\x06\xee\x45\x02\x39\xa0\x20\x6e\x7e\xd2\x4b\xe2\x9b\ -\x51\xa4\x65\x83\xd1\x39\x9a\xf3\xe4\x0c\xc7\x14\xd4\x34\x30\xba\ -\x2e\x0a\xb4\x85\x8c\x23\x61\xa6\xb4\xeb\x2a\x6f\xf6\x64\xc8\xb2\ -\xa3\xd8\x22\x8c\x96\xfa\x64\xe0\x28\xec\x9e\x21\x7c\x7b\xe1\x26\ -\x38\x92\x27\x27\x7c\xd1\x38\x3a\xe5\x51\xc6\x71\x58\xc6\xb7\x97\ -\xed\x6a\xec\xc7\xd0\x32\xbe\xd8\x02\x6f\x50\x1a\x79\xf0\x0c\x39\ -\xe3\x8b\xce\x73\x33\x5f\x38\x94\x77\x83\x67\x0b\x23\xe1\xe7\x2b\ -\x72\x9e\xdf\xae\xa7\x7a\x11\x20\xb8\x5e\xe7\xaf\x1f\x27\x82\x39\ -\xe3\x8b\x1e\xa3\x27\x21\x8e\x82\x12\xc3\x51\x4b\xa1\x61\x7c\xd1\ -\x33\x2c\x6b\x9d\x79\x0a\x21\x6d\x6b\x9a\x11\x43\x58\x10\xbe\xd8\ -\xec\x5a\x1e\xd1\x33\x7e\xc3\xed\xfb\x45\x4b\x21\xa4\x48\x9b\xea\ -\x52\x46\x91\x26\x3e\xc4\xe6\xd9\x9a\xf1\xcd\x0c\xe3\x50\xb4\x2f\ -\x96\xf5\x85\x7d\x1a\xb7\xc8\xc3\x39\x8c\x21\x09\xeb\x8b\x76\x4c\ -\x21\x41\x64\x10\x69\x49\x5f\x2c\xe1\x24\xdb\xad\x4b\x39\xac\x20\ -\x1e\x58\x82\xd6\xa5\xa0\x18\x32\x90\x84\xd9\x52\x6c\x68\x01\xa6\ -\x69\xd8\xa5\xa1\xcd\x95\x76\xab\x49\x19\x3d\x5a\x12\x18\x4b\x57\ -\x34\x7e\x0b\x87\xf8\x03\x92\xc0\xd8\x84\x77\x83\x18\xc3\x38\x28\ -\x07\x8c\x05\xb2\xe1\xed\x4f\x95\xaa\x5d\xee\xdf\x66\x20\x49\x38\ -\xe0\x7e\xa4\xb1\xf6\x57\x19\x44\x22\x0e\x18\xdb\x12\xe3\x5b\xc8\ -\x9c\x8e\xb8\x95\xb7\x69\x01\x8d\x1e\x1b\x34\x7c\x3b\x76\xa6\x82\ -\x3b\x18\x33\x0b\x36\x63\xe7\xa6\xfa\x84\x03\x67\x5c\x28\x52\x44\ -\x0f\xd4\xe3\xa1\x41\x94\x3e\xaa\x07\x7b\xa8\x97\x89\xa2\x12\xed\ -\x92\x0c\x46\x90\x6e\x13\x3e\x7e\x5c\x10\x24\x85\x52\x84\x9e\x0c\ -\x3d\x22\xf6\x62\xc4\x18\x16\x35\x19\xe0\x36\x7c\x9c\x14\x32\x82\ -\xa4\x55\x19\x11\xb8\xe7\xa9\x03\x9f\x86\x07\x77\x11\xe7\x6c\x3a\ -\x90\x45\x70\x1a\x22\x03\x49\x59\x99\xe1\xf4\x33\x5f\x36\x12\xca\ -\xd5\x0f\x8f\x51\xec\x5f\x1c\xf3\x1d\xf9\x78\x18\x21\x61\x64\x18\ -\xe9\xf9\x7d\xf4\xac\x60\x58\xad\x72\xcc\x4f\x98\x0a\xc7\x4f\xd1\ -\x83\xd3\x6f\x94\xb6\x71\xd4\xe9\xb7\x28\x0f\x37\x6c\x28\x13\xde\ -\xc1\xac\x60\x8e\xfc\x49\x73\x37\xca\x0a\xf0\xd3\x49\xa1\x61\xc1\ -\x8c\x23\x6d\xec\xd8\xc5\xf0\x6e\x70\x5c\x30\xc7\x1c\xc4\xc1\xa3\ -\x82\xeb\x89\x3b\x30\x91\xa1\x30\x17\x52\x75\x6c\x1f\x31\x94\xc6\ -\xcf\x31\x59\x00\x34\xd1\xa8\x84\x92\x5a\xb5\xb2\x44\x0e\x49\xfa\ -\x1b\x99\xec\x25\x2f\xc7\xf2\x48\xeb\xeb\x78\xda\x6b\x45\x3b\x3b\ -\xa0\xd7\x4a\x3b\xc2\x7b\xc4\x48\x16\xde\x4e\x2e\x9a\xbd\xe8\x56\ -\x47\x48\x4f\x3f\x88\x0a\xaa\x46\x0c\x64\x53\xde\x18\xf6\xe4\xb8\ -\x32\x94\xd4\xb5\x71\x2e\x9e\x48\xe6\xca\xaa\x41\x91\x04\x94\xaa\ -\x7a\x86\x9c\xf6\x65\xa4\xab\x42\x2f\x50\x67\xd0\xb9\x50\x63\x06\ -\x25\x7c\x37\xf0\x25\x89\x8b\x33\x6e\xe8\xac\x10\x48\xc8\xbd\x1a\ -\x3c\xb0\xba\x98\xc1\x23\xab\xc2\x01\x22\xc5\x57\x63\xe7\xc1\xad\ -\x6a\x43\x19\xd9\x24\xcd\xc1\x46\x0d\x9d\x29\xbe\x01\xfc\x97\x57\ -\x83\x17\x56\xdb\x30\x18\xbc\x61\xf6\x7d\x03\x01\xe1\x6b\xc1\x53\ -\x12\x1e\x98\xc0\x5a\x93\x92\x17\xc6\x98\xbd\x08\xea\x8e\xc9\x00\ -\x12\x6e\x37\x45\x18\x3e\x65\x03\xb3\x9f\x58\x77\x92\x6e\x33\x05\ -\xb8\xfc\x57\xc3\xe7\x40\x3e\x27\xc3\x47\xe4\x72\x62\xd4\x26\x18\ -\xea\x05\x22\x0a\xed\xc8\x65\xb5\x49\x20\x79\x98\x70\xe1\x85\x6d\ -\xdd\x0c\x1e\x91\xcd\x0b\x30\x92\x07\xc5\x7a\xda\x0d\xf5\x1d\x83\ -\x1e\x83\x47\x60\xf3\x00\x2a\x10\x15\xec\x31\x7a\x74\x59\x16\x44\ -\xac\x07\x67\x59\x7c\x21\x3d\x45\x33\x10\x61\xd4\xd0\xb9\x38\x57\ -\x13\xce\xb2\x30\x78\x74\x9c\xad\x8f\xc9\x91\x81\x1e\x4b\x24\xb4\ -\xd2\xf4\x14\x93\x42\x24\x69\x96\xee\xb3\x2c\x8c\x1f\xdd\x5e\x26\ -\x8c\xcf\x02\x0a\x9f\x2b\x1c\xad\x39\x19\xbb\xfe\x65\x0f\xdc\x5c\ -\x8f\x93\x3c\x06\x8f\x8e\x5d\x00\x36\x2c\xe1\xd8\x05\x0e\xd4\x69\ -\xd9\x05\x4c\xa6\x05\x94\x3e\x06\x90\xac\x08\xbb\xf3\x14\x27\xfb\ -\x2c\x84\x25\x65\x9d\x13\xb3\x8c\x1e\x21\xaf\x87\x70\x39\x61\x5e\ -\x8f\xa3\x75\x4a\x5e\xcf\x46\x54\x02\xc2\xc4\x1e\xe3\x47\x55\xc3\ -\x89\xb2\x7b\x60\x9a\x33\x14\xa1\x56\x9c\x0e\xfb\x2c\x04\xc2\x17\ -\x40\x9b\xff\x70\x89\x4e\x86\x8f\xae\x8e\x13\x15\xae\xff\x5a\xc7\ -\x6d\xe6\x87\x28\x48\x06\x70\xe2\x32\x36\xe0\x63\xfc\xe8\xaa\x39\ -\x31\xc6\x0f\x76\x5c\x58\x7b\x12\xd7\x73\x76\x1f\x3b\x30\x84\x94\ -\x15\x9d\xd0\xd6\x4c\x6c\xd2\x93\x55\x28\x65\x51\x27\x4a\x89\xba\ -\x90\x0b\x4a\x89\xa0\x79\xf5\x88\x07\x15\x14\xfb\x6a\x01\x37\x06\ -\x37\xa2\x97\x87\x11\x92\x76\x2d\xf4\xd0\xb3\x5d\x5b\x00\x36\x53\ -\x60\x18\xc0\xfe\xfd\x50\xb0\x5c\xa9\x83\x29\x5a\x06\x54\xc6\x8f\ -\xa8\xdf\x24\x7a\x4a\x76\x5b\x87\x32\x7a\x34\xd4\x11\xd8\xd3\xae\ -\x03\xe9\x63\x1b\x48\x3b\x88\x10\x2d\x80\xe0\x3c\x57\xbb\xa2\x76\ -\x19\x45\x9a\x49\x84\x68\x57\xa6\xbd\xc3\x8f\xf1\x23\x9c\x5c\xd7\ -\xed\x30\xd7\xa0\x48\x91\x52\xa1\x37\xea\xb6\x3c\xe5\x58\x10\x74\ -\xa3\x5e\x25\x3c\x3b\xb2\xa3\x33\x21\xf4\x84\x0a\xc3\x90\x5b\xd7\ -\xd1\x44\x83\x21\xba\xf3\xb9\x36\x85\x91\xef\xf8\x8e\xd7\x72\x48\ -\xfd\x50\xba\x21\x51\x97\xde\x11\xab\xd2\x7c\x66\x9d\xc2\x4f\x01\ -\xe5\xa0\x7e\x50\x6d\xea\xe1\x87\x63\x43\x2e\xa9\x2f\xdc\x7c\xad\ -\x88\x26\x10\x8c\x18\xc6\xa2\x7f\x24\xb8\x8b\x13\x17\xda\xb3\x53\ -\x4a\x9c\xe0\x0e\xf1\x61\x05\x18\xe3\x33\x90\x94\x33\x96\xc0\x49\ -\x59\x17\xa1\xd8\x0c\x32\x3f\x41\xd1\x2b\xe6\x29\x3b\x24\x7d\x44\ -\x46\x8d\x62\xe1\x9f\xfa\x78\x61\x8c\x84\x2a\x4c\x20\xc3\x38\x18\ -\x67\x01\x16\xdd\xe3\xc7\xd4\xb3\x97\x4a\x4e\x5d\xd8\x78\x47\x15\ -\xb2\x8e\x8c\x24\x2d\x8d\xe1\xe3\x1d\x55\xb0\xa6\x94\x9d\x1c\x52\ -\x22\x23\xc0\x53\x89\x67\xee\x0d\xc7\x8b\xd4\x14\x86\xc2\x3b\x38\ -\xa1\x90\xcf\xf4\x29\x03\x49\xcb\x65\x80\xe5\xf9\x97\x85\x1b\xad\ -\x21\xd9\x8e\xe0\xe4\x69\xef\x4a\x34\x9f\xf9\xc1\xc5\x18\x6f\x0f\ -\xb9\x3c\xed\xdd\x41\x31\x22\xd7\x42\x0d\x95\xa4\x31\xf9\xd2\x08\ -\x1f\x16\x72\x21\xc6\xf0\xe4\x45\x07\x72\xc8\x85\x18\x03\xb2\x16\ -\x6e\x3f\x31\x3d\x57\xb5\x51\x53\x17\x1e\x5e\x10\x5f\xe8\xca\xc5\ -\x40\x12\x52\x17\xe0\x0c\x3a\xce\xb1\xbd\x1d\x18\xcb\xda\x1a\xbf\ -\x1f\x71\x24\xc5\x71\xd4\xbb\xd6\x0a\xf2\xc2\xc7\x7b\xa9\x10\x07\ -\xc5\x61\x06\x25\x6f\x01\xee\xdf\xee\xc0\x34\x32\x88\x34\x29\x36\ -\xd5\x7d\x9e\x86\xd2\xab\x19\xb5\x1a\x2d\x28\x27\x1b\x6f\x0d\x41\ -\x35\xca\xce\x29\x29\xe5\xd4\x41\x45\x06\x44\x58\x70\xcc\x4f\xce\ -\x3c\x81\x7d\x2c\xf1\x25\x52\x8c\x24\x2d\xf5\x24\xd1\xee\x29\x08\ -\x23\xf1\x7e\x9a\x11\xc3\x58\x8f\xb9\x8e\x98\x8b\x7a\x8b\xf8\x39\ -\xe8\xf4\x69\x13\xd1\x9f\x60\xa7\x9c\xaa\xe9\x17\x03\xd8\xbb\x00\ -\x82\x13\xe6\x2f\x13\x3d\x1b\x68\xec\xcc\x18\xd2\x39\xa7\xf8\x5a\ -\xa8\x48\xf8\xf9\x92\x9c\xd5\x61\xa8\x40\x04\x46\x36\xb9\xc3\x10\ -\x89\x63\xea\x41\x5d\x4a\x2f\x13\x44\x59\x01\xc6\x28\x0e\x35\x94\ -\x09\x9f\x31\x05\xb5\xa9\x27\x7c\xc6\x8f\x84\x4b\xb4\xf1\x6d\x86\ -\x5a\xae\x28\x83\x47\x44\x58\x80\x6d\x2e\xf1\xec\x21\xbb\x32\xc4\ -\x9c\x85\xea\xbc\xd5\x1e\x43\x48\x98\x99\xb1\xd1\x36\x10\x8e\x0a\ -\x59\x8d\xd2\x64\x64\x3a\xe8\x2e\x04\xaa\x51\x32\xfc\x46\xdc\xdb\ -\x24\xca\x7b\xcd\x02\xea\xf3\xa2\xce\x26\x60\x5a\x54\xe3\xa7\x5c\ -\xfd\x60\x10\x29\xcc\xa0\x07\xd7\x96\x5e\x06\xa3\x23\x64\xe0\x05\ -\x5e\x5b\x8d\x32\x8c\x64\xb5\x50\xb6\x89\x09\x91\x30\xea\x88\xd0\ -\x0e\xdd\xd0\x6d\xe7\xd7\x22\xd7\x0e\x68\x1a\xb0\x8f\x1a\xc6\x28\ -\xaf\xf4\x06\x39\xfc\xcb\x60\x74\x85\xab\x51\x0c\xdb\x46\x91\xa5\ -\x91\x50\xa9\x9a\x20\x11\xdd\xbc\x2d\x10\x8e\xd6\xaa\x01\x5b\xc7\ -\x01\xd3\x34\x65\x77\x05\x2c\x94\xa1\x08\xa5\x92\x4a\xb1\x6a\x1d\ -\x90\xff\xb5\xc0\xdd\x50\x97\xb9\x3a\x52\x04\xca\x20\x39\x20\x90\ -\x23\x0e\x1b\x23\x07\x9e\xaa\x7d\x51\xd4\xd8\xd4\x5d\x70\xe6\x66\ -\xa8\x8d\xa5\xf8\x6e\x7c\x30\x8a\x4c\x42\xd1\x76\xe3\x73\xd0\x39\ -\x1c\x98\x12\xe6\x1c\x1c\x9d\x83\xd3\x41\xd9\x30\x48\x08\x33\x86\ -\x34\x74\x94\xaf\xff\xef\xa5\xb7\x29\xdb\x44\xf2\x4d\x34\x5d\xec\ -\x4c\x04\x85\x91\xa1\x24\x2c\x19\x06\x7b\x7e\x77\xe0\xdd\xb0\x46\ -\xa5\x8a\x15\x15\xbe\x3a\x03\xd4\xa8\x8c\x20\x59\xb4\xef\x99\x26\ -\x7c\x6f\xdb\x39\x1d\x71\xca\xa6\x20\x18\x15\x54\xab\xd8\x41\x12\ -\x95\x33\x6f\xc4\x14\x63\x07\x24\x23\xc8\x15\x33\x90\xc4\xec\x54\ -\x00\x05\xfc\x97\x49\xa4\x14\x9e\x13\x39\x11\xe7\xc2\x07\xe6\xa7\ -\xc0\x0d\xfb\x1d\x50\x8d\x94\x50\x8e\x7a\xd7\x77\x64\x05\xa8\x89\ -\xeb\xda\x45\x05\xd3\x36\x91\xed\x06\x24\x1e\xce\xa8\xd1\x33\x82\ -\xa8\x30\x03\xd7\xa5\x0f\xec\xf2\x66\xf8\x28\x77\x61\x44\x98\x71\ -\xeb\x70\xf5\xa2\x2b\xec\xc0\x97\x34\xe3\xd9\x46\x0d\x60\x91\xfe\ -\x06\x63\xc4\x57\x23\x18\x14\x53\x2e\x5c\x46\x70\x98\x54\x1b\xe8\ -\x8d\xbe\x1a\x3d\x55\x94\x7f\x33\x7a\x83\xa5\x69\x42\x28\xbe\x7f\ -\x35\x7e\x11\xe4\xbe\xb4\xf0\xbb\x9a\xdd\x7e\x7a\x77\x35\x3b\x7c\ -\xd1\x7f\xfd\x1f\xc3\xde\xb3\xe7\ -\x00\x00\x0b\xed\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x6c\x6f\x61\ -\x64\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x31\x2e\x39\x37\x39\x35\x31\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x33\x36\x2e\x39\x36\x33\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x38\x2e\ -\x39\x35\x30\x31\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ -\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ -\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ -\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ -\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ -\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ -\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ -\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\ -\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\ -\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\ -\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ -\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\ -\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\ -\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\ -\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\ -\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\ -\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\ -\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\ -\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\ -\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\ -\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\ -\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\ -\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\ -\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ -\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ -\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x32\x32\x32\ -\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\ -\x33\x33\x34\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ -\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ -\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2c\x39\x2e\x36\ -\x36\x36\x36\x36\x36\x37\x20\x43\x20\x33\x2e\x38\x31\x34\x30\x31\ -\x30\x37\x2c\x31\x34\x2e\x38\x37\x36\x37\x39\x35\x20\x34\x2e\x34\ -\x33\x32\x38\x39\x30\x37\x2c\x32\x32\x2e\x36\x34\x34\x37\x39\x34\ -\x20\x39\x2e\x34\x2c\x32\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x31\ -\x34\x2e\x33\x36\x37\x31\x30\x39\x2c\x33\x31\x2e\x34\x38\x38\x35\ -\x34\x20\x32\x31\x2e\x39\x34\x37\x33\x34\x32\x2c\x33\x30\x2e\x38\ -\x31\x30\x31\x32\x38\x20\x32\x36\x2e\x31\x33\x33\x33\x33\x31\x2c\ -\x32\x35\x2e\x36\x20\x63\x20\x34\x2e\x31\x38\x35\x39\x39\x2c\x2d\ -\x35\x2e\x32\x31\x30\x31\x32\x38\x20\x33\x2e\x35\x36\x37\x31\x31\ -\x2c\x2d\x31\x32\x2e\x39\x37\x38\x31\x32\x37\x20\x2d\x31\x2e\x34\ -\x2c\x2d\x31\x37\x2e\x34\x20\x6c\x20\x33\x2c\x2d\x32\x2e\x38\x36\ -\x36\x36\x36\x36\x37\x20\x48\x20\x31\x37\x2e\x30\x36\x36\x36\x36\ -\x35\x20\x56\x20\x36\x2e\x34\x20\x6c\x20\x33\x2e\x32\x2c\x38\x2e\ -\x35\x33\x33\x33\x33\x33\x20\x32\x2e\x36\x36\x36\x36\x36\x36\x2c\ -\x2d\x33\x2e\x37\x20\x63\x20\x32\x2e\x33\x37\x39\x33\x30\x32\x2c\ -\x33\x2e\x32\x37\x37\x37\x32\x39\x20\x33\x2e\x31\x37\x31\x30\x35\ -\x38\x2c\x38\x2e\x39\x35\x30\x32\x36\x36\x20\x30\x2e\x35\x33\x33\ -\x33\x33\x34\x2c\x31\x32\x2e\x32\x33\x33\x33\x33\x34\x20\x2d\x33\ -\x2e\x30\x34\x31\x38\x35\x39\x2c\x33\x2e\x37\x38\x36\x30\x37\x34\ -\x20\x2d\x38\x2e\x32\x32\x30\x37\x31\x35\x2c\x34\x2e\x32\x31\x39\ -\x37\x32\x20\x2d\x31\x31\x2e\x37\x39\x39\x39\x39\x38\x2c\x31\x2e\ -\x30\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x35\x37\x39\x32\x38\x33\ -\x35\x2c\x2d\x33\x2e\x31\x38\x36\x33\x38\x37\x20\x2d\x34\x2e\x30\ -\x34\x31\x38\x35\x38\x35\x2c\x2d\x38\x2e\x39\x31\x33\x39\x32\x35\ -\x20\x2d\x31\x2c\x2d\x31\x32\x2e\x37\x20\x43\x20\x31\x31\x2e\x32\ -\x2c\x31\x32\x2e\x33\x20\x31\x31\x2e\x32\x2c\x36\x2e\x39\x36\x36\ -\x36\x36\x36\x37\x20\x38\x2c\x39\x2e\x36\x36\x36\x36\x36\x36\x37\ -\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x32\x39\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x73\x63\ -\x63\x63\x63\x63\x63\x73\x73\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\x99\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x70\x65\x6e\x5f\ -\x64\x69\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x2d\x36\x38\x2e\x36\x31\x31\x38\x34\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\ -\x32\x2e\x36\x31\x31\x30\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ -\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ -\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x38\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x31\x39\x32\x35\x36\x39\x36\x31\x70\ -\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\ -\x33\x33\x33\x33\x33\x20\x48\x20\x32\x36\x2e\x36\x36\x36\x36\x36\ -\x37\x20\x56\x20\x32\x38\x2e\x38\x20\x48\x20\x30\x20\x5a\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x30\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\ -\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x30\x2e\x38\x37\x30\x39\x32\x39\x37\x32\x70\x78\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\ -\x33\x20\x31\x36\x2c\x39\x2e\x32\x34\x34\x34\x34\x34\x35\x20\x56\ -\x20\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x4c\x20\x30\x2c\x32\ -\x37\x2e\x30\x32\x32\x32\x32\x32\x20\x76\x20\x2d\x32\x34\x2e\x38\ -\x38\x38\x38\x38\x38\x37\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\xcc\ -\x00\ -\x00\x49\x37\x78\x9c\xe5\x5c\x6d\x8f\xdb\xb8\x11\xfe\xbe\xbf\x42\ -\x75\xbe\xe4\x50\x53\xe6\x8b\xc4\x17\x67\x77\x0f\x48\x83\x3b\x1c\ -\xd0\x7e\xb9\x5e\xd1\x8f\x01\x2d\xd1\x5e\x35\xb2\x64\x48\xf2\xda\ -\xbe\x5f\xdf\xa1\x6c\xc9\x96\xed\xbc\x30\x2b\x17\x6a\xd6\x49\x90\ -\xd5\xcc\x90\x22\x9f\xe1\x3c\x33\xa4\xe4\xbd\xff\x79\xbb\x4c\xbd\ -\x67\x53\x94\x49\x9e\x3d\x8c\x88\x8f\x47\x9e\xc9\xa2\x3c\x4e\xb2\ -\xc5\xc3\xe8\x5f\x7f\xfc\x82\xe4\xc8\x2b\x2b\x9d\xc5\x3a\xcd\x33\ -\xf3\x30\xca\xf2\xd1\xcf\x8f\x77\xf7\x7f\x41\xc8\xfb\x5b\x61\x74\ -\x65\x62\x6f\x93\x54\x4f\xde\x6f\xd9\xa7\x32\xd2\x2b\xe3\xbd\x7d\ -\xaa\xaa\xd5\x74\x32\xd9\x6c\x36\x7e\x72\x10\xfa\x79\xb1\x98\xfc\ -\xe4\x21\xf4\x78\x77\x77\x5f\x3e\x2f\xee\x3c\xcf\x83\xfb\x66\xe5\ -\x34\x8e\x1e\x46\x87\x06\xab\x75\x91\xd6\x86\x71\x34\x31\xa9\x59\ -\x9a\xac\x2a\x27\xc4\x27\x93\xd1\xd1\x3c\x3a\x9a\x47\xf6\xee\xc9\ -\xb3\x89\xf2\xe5\x32\xcf\xca\xba\x65\x56\xbe\x39\x31\x2e\xe2\x79\ -\x6b\x6d\x47\xb3\x61\xb5\x11\x51\x4a\x4d\x30\x9d\x50\x8a\xc0\x02\ -\x95\xbb\xac\xd2\x5b\xd4\x6d\x0a\x63\xbc\xd6\x94\x62\x8c\x27\xa0\ -\x3b\x5a\x7e\x9b\xd5\xb4\x04\x40\x57\xf0\xaf\x35\x6f\x04\x7e\x99\ -\xaf\x8b\xc8\xcc\xa1\x9d\xf1\x33\x53\x4d\x3e\xfc\xf1\xa1\x55\x22\ -\xec\xc7\x55\x7c\xd2\x4d\x83\x67\xe7\xae\x1d\x90\x33\xbd\x34\xe5\ -\x4a\x47\xa6\x9c\x34\xf2\xba\xfd\x26\x89\xab\xa7\x87\x11\x0b\x7c\ -\xc2\xe0\x13\xd6\xc2\x27\x93\x2c\x9e\xaa\x73\x69\x12\x3f\x8c\x60\ -\xf4\x54\xc9\xfd\xf5\xc9\xe2\x20\x7b\x83\x43\xc7\xd3\x56\x83\x7d\ -\x45\x7d\xe2\x15\x24\x64\x62\x6f\xd3\x4c\x61\x1a\xe7\x91\x1d\x13\ -\x74\x69\x96\x89\x5e\x57\xf9\x12\xbc\x16\x45\xa9\x2e\xcb\x64\x9e\ -\x44\x70\x91\x67\xab\x74\xbd\x48\xb2\x8f\xb5\xf0\x63\x99\x2c\x32\ -\x5d\xad\x0b\xf3\xb1\xca\xf3\xd4\x6f\x70\x6c\x6f\x6a\xb6\xab\xbc\ -\xa8\xd0\x36\x5e\x01\x9a\x5c\x5c\x55\xee\x4e\x95\xcf\x89\xd9\xbc\ -\xcf\xb7\x30\x4a\x0f\x7b\x8c\xc2\xdf\xd1\x23\xc8\xef\x63\x33\x2f\ -\xad\x7e\x3f\x63\x7b\x05\x53\x16\xb5\x0e\xb4\xf3\x24\xad\x4c\xb1\ -\xd7\x9f\xdc\x20\xca\xd3\xd4\x44\x80\x99\x4e\x37\x7a\x57\x8e\x1a\ -\x83\xb2\xda\xa5\x30\x49\x50\xe7\x05\x4a\x32\x68\xba\xca\xd3\x7a\ -\x72\x68\xdf\x13\xac\x81\xdf\x7f\x7d\xdf\xda\xdb\x5b\xee\x15\x2a\ -\xc4\xad\x14\x06\x09\x3e\xc7\x8c\xf2\x40\x4a\x22\x5b\xf9\xc1\x7b\ -\x10\x9d\x3c\xa4\x4a\xf0\x56\xb1\xdb\x37\x08\x30\x21\x42\x52\xda\ -\xca\x1b\xcf\x42\x0b\x89\x29\x0b\xf9\x61\x5a\x76\x62\xe6\x57\xbd\ -\x06\xf0\x75\xf6\x3e\x5d\xb7\x13\xfc\x86\x29\xda\x49\xc6\x1f\xcc\ -\x73\x52\x4f\xab\xee\x1b\x53\x15\x84\xe1\x89\x45\x3d\xad\xce\x0d\ -\x54\x48\x47\xde\xe4\x00\xea\x64\x3f\xe5\x1a\xfe\x89\x45\xbc\xfe\ -\xa9\x5d\x2b\x76\xa1\xc4\xd6\x5d\x47\xb7\xcc\x74\x69\x0e\xfd\xaf\ -\xf4\xc2\xd4\xf8\x3e\x8c\xde\xcc\xeb\xcf\x41\x31\xcb\x8b\xd8\x14\ -\x8d\x8a\xd7\x9f\x8e\x2a\x87\x80\x48\xaa\xdd\x9e\xde\xee\xba\xb3\ -\xb5\xbd\xb6\x7a\x7c\x5d\x5f\x3e\xe9\x38\xdf\x3c\x8c\xe8\xb9\xf2\ -\xcf\x3c\x5f\x42\xf8\xf8\x2a\x54\x98\x62\x75\xae\x8e\xac\x3f\xa5\ -\xf2\x03\xc1\xb0\x14\x17\x5a\xb8\x21\x15\x7e\xc8\xc3\xe0\x42\xb5\ -\x2e\x0a\xa0\x3f\x94\xea\x9d\x81\x39\xd5\xff\x91\x83\x51\xf9\x94\ -\x6f\x16\x85\xc5\xa6\x2a\xd6\xe6\xbc\xa5\xd5\xa0\xd9\xcc\x2e\xf7\ -\x6b\x6a\x88\xc6\xb5\x25\x56\xb4\xce\x92\x0a\xc8\x6b\xb5\x3d\xed\ -\x75\x9d\xc4\xa6\xbc\xde\x70\x93\x64\x00\x01\x6a\x16\x22\x6b\x11\ -\x3e\xb7\x68\x56\x9e\xc0\xf2\x33\x16\x36\x12\x3f\xa3\xda\x7d\x5e\ -\xb5\xd4\xdb\x64\x99\xfc\x69\x60\xde\xe4\xdc\xa4\xcc\xf4\x0a\x2d\ -\xd2\x7c\xa6\xd3\xcf\xa0\x62\x67\x76\x0a\xcb\x61\x3d\x76\x60\x6b\ -\x56\x71\xb5\xb3\x04\xbb\xdd\x59\x59\x27\x5e\xad\x80\x09\x7e\x5c\ -\xef\x79\x91\x00\x6f\x9d\xcc\xa7\x11\xed\x4e\x45\x96\x8e\x21\x9b\ -\x6e\x8f\x03\x6f\x65\x76\x49\x1e\xa3\xa3\x8d\x83\x7a\xb8\x8d\xe9\ -\x2a\x2f\x93\x7d\xc0\x21\x8e\xc7\x9d\x3b\x81\x23\x9b\x58\x3c\x51\ -\xd4\x43\xb5\x3d\xa8\xe0\x44\xd8\xcc\x34\xcd\xa3\x4f\x16\xc4\xb9\ -\x4e\x21\xb2\xf6\xf7\xbe\x9f\x5c\x86\x60\x2d\x5f\x9a\x4a\xc7\xba\ -\xd2\xc7\x78\x6c\x24\x54\x29\xdc\xa0\x08\x59\x74\xfa\xfb\x87\x5f\ -\x5a\x86\x89\xa2\xe9\xbf\xf3\xe2\xd3\x91\x15\xac\x81\x9e\xe5\x6b\ -\x58\x16\x2d\x0f\x59\x02\x8e\xa6\x90\xf7\x20\x1f\x3c\x26\x4b\x88\ -\x32\x9b\x32\xff\x0a\x79\x0e\x98\xa1\x55\x74\x8c\xad\x63\x8e\x9d\ -\xee\xbb\x2d\xcc\x3e\x81\x5e\xad\x22\xe2\x68\x99\xd8\x46\x93\x7f\ -\x56\x49\x9a\xfe\x66\x6f\xd2\xa2\xdd\x76\x9a\x54\xa9\x39\x0a\xef\ -\x27\x87\xd1\x37\x8c\x75\x32\xb9\xfb\x49\x33\xfb\xfa\x6a\x71\x44\ -\xa5\x13\xa0\x47\xa8\xf5\xcc\xc0\x82\xfc\xbb\x55\x7a\x17\xda\x45\ -\x91\xaf\x57\xcb\x3c\x36\x87\xe6\x2d\x9a\xc0\xbd\x67\x59\x05\x58\ -\x33\x9d\xbe\xc1\x38\x8a\xe6\xf3\x77\xf6\x02\x1d\x18\x6b\x4a\xf6\ -\x97\xc5\x3a\x85\xdc\xf7\x6c\xb2\x3c\x8e\xdf\x95\x55\x91\x7f\x32\ -\xd3\x03\x47\x1e\x2e\xf7\x91\x3b\xc5\xcd\x25\x00\x63\x8a\x14\x22\ -\xaa\x9a\x06\x8d\x2c\xd6\x40\x74\x45\xa1\x77\xd3\x0c\x4a\xbd\x46\ -\xda\xde\xaa\xb3\xc0\xec\x28\x43\xc9\x54\x2b\x3c\x30\x43\xd0\x0a\ -\x1a\x22\x38\x4a\xf6\xd9\x8d\xd0\x10\xea\xa3\x63\x6f\x36\x06\x8e\ -\xdd\x14\x36\x4c\x7c\x56\x7f\x8e\x2d\x8b\xdd\xa9\xb4\x0d\x98\x2f\ -\x40\xa5\x75\x1c\x0c\x0c\x2a\x44\x1c\xc1\x62\xbe\x14\xe1\x8d\x71\ -\x0a\x20\x7f\x0f\x0e\x27\x84\x1d\x91\x22\xe4\xe6\x50\xcd\xe7\x54\ -\x53\x3d\x38\xa8\x98\x2b\x52\x9d\xda\x31\xe8\x80\x84\x7f\x34\x70\ -\x90\x44\xa1\x23\x3e\x34\x78\x4d\xf8\x60\xe4\xba\x7e\xa8\xbc\x05\ -\x3e\x03\xe5\x6b\x14\x38\xa2\x73\xc9\xd8\x61\xcf\x34\x84\x31\xe7\ -\x12\x0f\x0f\x29\xe9\x9c\xdd\xc4\xff\x00\xab\x81\x66\x37\x24\x1c\ -\xb1\xba\x92\xdf\xfa\x06\x6b\x3e\x57\x6a\x80\x60\x31\xc4\x5d\xb1\ -\xea\x64\x38\xdc\x13\x43\x0d\x14\x1e\x24\x10\x75\xc4\x87\xe2\xd7\ -\x84\x0f\x54\x00\xc8\x75\x93\xd2\xad\x01\xfa\x42\x68\x90\xdb\x37\ -\x74\x71\xc6\xf8\xd5\x0c\xc7\x69\xa0\x94\xea\x94\x01\x54\xf4\x4c\ -\x46\x43\xad\x07\xa4\x2b\x5c\x02\xe0\x0a\x6f\x0c\xd5\x50\x93\x9c\ -\x33\x71\x5f\x24\xb9\xde\xc1\x92\xd8\x7e\x06\x07\x16\x73\x26\xf1\ -\x6e\x92\x23\xb4\x27\x8e\x1a\x28\x3e\x90\xe5\x9c\xf7\x29\xf8\x55\ -\x01\x64\xd3\x9c\x2b\x37\x75\xd3\xdc\x0f\x0f\x11\xec\x75\x9d\xeb\ -\xee\xee\x6e\xb7\x37\x88\x86\x59\x0a\x60\xe7\xed\xee\xf5\xd3\x5c\ -\xca\x3a\x30\xfd\xb8\xd5\x40\xe0\x4c\xdb\x17\xe7\x03\x37\xc0\x6a\ -\xb0\xe7\x03\xce\x67\x71\x17\x27\x04\x37\x40\x6b\xa8\xc5\x93\x70\ -\xde\xb5\x5c\x29\x9f\xfa\x86\x2b\x0e\x06\x49\xed\x0c\xf1\x17\x16\ -\x50\xb2\x03\xd4\xf7\x13\xfb\x40\x01\xb2\xa7\x04\xee\xb9\x0f\xbf\ -\x26\x84\x6c\x75\x40\x9d\xcf\x30\xbb\xf5\x41\x5f\x18\x59\x06\x1f\ -\x22\x46\xd2\x79\x0d\x09\xbf\xbb\xfb\x0d\x7a\x26\x24\x8c\x19\x1b\ -\x60\xb6\x83\xa5\xe4\x7c\xc2\xdb\xe1\x23\xda\xdf\xa1\x53\x10\xe8\ -\x01\x3e\x78\x12\xee\x0f\xe6\xf0\x4d\x00\x92\x02\x6a\x4b\x33\x3c\ -\x80\xea\xdd\xca\xcb\x1e\xce\xf5\x86\x91\xad\x91\x86\xc9\x47\x50\ -\x53\xba\x17\x95\x5d\x4a\xc2\x3d\x53\xd2\x50\xc1\xb2\x25\xa5\xeb\ -\xfe\x0e\x4a\xca\xdb\x82\x35\x58\xfe\xe6\xce\xfc\x74\x76\x22\xc7\ -\x7b\x8a\x3d\xaa\xc5\x7c\x78\x47\x05\x87\xe7\x2a\xee\xa7\x72\xc1\ -\x4d\x40\x1a\x32\x89\x53\xe7\x97\x99\xce\x0e\x9d\xfa\x02\x69\x16\ -\xc5\x2c\x1c\xe2\x4a\x72\x7f\x75\x80\x9d\xd1\xd2\xd9\xc1\xdc\xcb\ -\x79\x69\xb0\x58\x41\xcc\xbd\xb4\x06\x7f\x35\x60\x61\x60\xf1\xef\ -\x78\x06\x75\x63\xb4\x06\x9b\xf2\xe8\x0b\x53\x1e\xed\x6b\xfb\x3b\ -\xdc\x3d\x0b\x73\xae\xa0\xce\x76\x2d\x7d\x41\x34\xe4\xaa\xe0\xa5\ -\xef\x5c\xf6\x06\x92\x94\x5a\x0f\xaf\x12\xc7\x28\x70\xce\x77\x08\ -\xfb\xc2\xbe\x74\x71\xf6\xcd\x2f\xd9\x33\x35\x0d\x13\xb0\xfa\x39\ -\x8b\x73\xd6\x3b\x2f\x11\x5e\x0b\x56\xf5\x93\x03\xe7\xba\xfc\x22\ -\xed\xf5\x0d\xd7\x60\xb3\x1e\xff\x8e\x02\xfd\x2c\xef\xf5\xf7\x12\ -\xf4\x50\xf3\x1e\x84\xdf\x0b\x1f\x1f\xf4\x06\xd2\x90\x33\x9f\x25\ -\x77\xe7\xcd\x5e\x70\x13\x98\x86\xbd\x23\x26\x2f\x7c\xd0\xd2\x03\ -\x4c\xcd\x48\xb1\xaf\x44\xfd\xc2\x0a\x7d\xd7\xbc\xc8\x3a\xbf\x58\ -\x60\xd8\x0f\x09\xa7\x1c\x13\xfa\x45\xc0\x88\x4f\x48\x18\xe0\x80\ -\x93\x46\x9e\x26\x99\x89\xf4\x6a\x5a\xe4\xeb\x2c\x3e\x15\xfe\x27\ -\x4f\xb2\x69\x8d\xeb\x15\x90\xa9\x1f\x7e\x23\xcc\x76\x98\xd0\x6c\ -\xba\x2e\xd2\xb7\x6f\xe6\xcd\xd7\xc9\x7f\xba\x40\x5f\xca\x8b\xc2\ -\x55\x30\x5f\xc0\x94\xc4\x25\xf0\xa1\xf2\x6d\xad\xa1\xf8\xa9\x03\ -\x10\xe9\xe4\x07\x24\x0e\x36\xc7\xed\x51\x55\xe8\xac\xb4\x5f\xdb\ -\x7c\x18\x2d\x75\x55\x24\xdb\xb7\xd8\xe7\x42\x12\xc9\x09\x1d\x63\ -\xfb\xc7\xdf\x7f\x35\x9b\x87\x63\x14\xf8\x92\x0a\x8a\x25\x1d\x23\ -\xba\x17\x87\xfc\xa7\xa3\xc3\x56\xba\x7a\xba\xb6\xae\x4f\x40\xb0\ -\x7c\x29\x0d\xc6\x67\x2e\x58\x6d\xcf\xb1\x9f\xad\xab\xea\xcb\xd0\ -\x5f\xae\x5a\x80\xed\x1f\x1e\x62\xbe\x92\x82\x0b\x1a\x8c\x49\xe8\ -\x0b\x26\x03\x26\x3d\x64\x17\x0c\x57\x81\x82\xa1\x93\xc0\x17\x82\ -\x50\x2f\xf4\x09\x56\x0a\xe3\x70\xcc\x7d\xc9\x04\x96\xc4\x23\xf6\ -\xcd\x18\x1c\x62\x36\x0e\x7d\xa9\x08\x0f\x02\xe1\x41\x27\x98\x52\ -\x62\x9b\xa9\x20\xe4\x84\x79\x14\x8f\x89\xf0\x52\x8f\xfb\x2a\x0c\ -\x95\x1c\x07\x3e\x16\x1c\x73\xe9\x01\xba\x9c\x4b\xca\xc6\xcc\xc7\ -\x52\x60\xaa\x3a\x1e\xb5\xe8\x04\x98\x1d\x19\xf9\xe4\xab\xfb\x19\ -\x4c\xba\xca\x0b\x14\xad\x8b\xe7\xfa\xb7\x28\xd8\xf0\x78\x39\xae\ -\x30\xe4\x3a\x4a\x2e\x56\xf6\xd7\xd1\x75\x67\x0f\x7c\x88\x60\xc6\ -\xfe\xcf\x1c\x72\x52\x77\x7d\xcd\x25\x17\x76\x6d\xf8\xa0\xc8\xd8\ -\x5f\x1f\x81\xea\xba\x2b\x0c\x58\x48\x82\x6f\xb0\xde\xff\x22\x08\ -\xc5\x94\x92\x21\x17\x8e\x1e\x9f\xcf\x31\x23\xb3\x61\x7a\x1c\x13\ -\x2c\x28\xe5\x63\x4a\xc1\x05\x82\x32\xe1\x61\xf8\xb9\xf6\x11\x96\ -\x5c\x86\x38\x18\x5b\x32\x62\x01\xa1\x04\x1c\x0f\xe6\x1c\x33\x3e\ -\xb6\x60\x04\x80\x1e\xf7\xec\x44\x48\xa8\xf8\x58\xf9\x38\x64\x4a\ -\x10\x2b\x11\x42\x2a\x35\xa6\x20\x81\x35\x14\x34\xfe\x26\xee\x0e\ -\x3f\x39\x61\xea\xd5\xe5\x57\x56\xd2\x17\x7d\xae\x88\xbb\xcf\x31\ -\xd6\x37\x65\xcf\x81\xbb\x8e\x38\xf2\xe7\xfd\x64\xf1\x78\x77\x6f\ -\x7f\x4b\xc1\xe3\xdd\x7f\x01\x5f\xd9\x98\x1e\ -\x00\x00\x08\xcc\ -\x00\ -\x00\x49\x37\x78\x9c\xe5\x5c\x6d\x8f\xdb\xb8\x11\xfe\xbe\xbf\x42\ -\x75\xbe\xe4\x50\x53\xe6\x8b\xc4\x17\x67\x77\x0f\x48\x83\x3b\x1c\ -\xd0\x7e\xb9\x5e\xd1\x8f\x01\x2d\xd1\x5e\x35\xb2\x64\x48\xf2\xda\ -\xbe\x5f\xdf\xa1\x6c\xc9\x96\xed\xbc\x30\x2b\x17\x6a\xd6\x49\x90\ -\xd5\xcc\x90\x22\x9f\xe1\x3c\x33\xa4\xe4\xbd\xff\x79\xbb\x4c\xbd\ -\x67\x53\x94\x49\x9e\x3d\x8c\x88\x8f\x47\x9e\xc9\xa2\x3c\x4e\xb2\ -\xc5\xc3\xe8\x5f\x7f\xfc\x82\xe4\xc8\x2b\x2b\x9d\xc5\x3a\xcd\x33\ -\xf3\x30\xca\xf2\xd1\xcf\x8f\x77\xf7\x7f\x41\xc8\xfb\x5b\x61\x74\ -\x65\x62\x6f\x93\x54\x4f\xde\x6f\xd9\xa7\x32\xd2\x2b\xe3\xbd\x7d\ -\xaa\xaa\xd5\x74\x32\xd9\x6c\x36\x7e\x72\x10\xfa\x79\xb1\x98\xfc\ -\xe4\x21\xf4\x78\x77\x77\x5f\x3e\x2f\xee\x3c\xcf\x83\xfb\x66\xe5\ -\x34\x8e\x1e\x46\x87\x06\xab\x75\x91\xd6\x86\x71\x34\x31\xa9\x59\ -\x9a\xac\x2a\x27\xc4\x27\x93\xd1\xd1\x3c\x3a\x9a\x47\xf6\xee\xc9\ -\xb3\x89\xf2\xe5\x32\xcf\xca\xba\x65\x56\xbe\x39\x31\x2e\xe2\x79\ -\x6b\x6d\x47\xb3\x61\xb5\x11\x51\x4a\x4d\x30\x9d\x50\x8a\xc0\x02\ -\x95\xbb\xac\xd2\x5b\xd4\x6d\x0a\x63\xbc\xd6\x94\x62\x8c\x27\xa0\ -\x3b\x5a\x7e\x9b\xd5\xb4\x04\x40\x57\xf0\xaf\x35\x6f\x04\x7e\x99\ -\xaf\x8b\xc8\xcc\xa1\x9d\xf1\x33\x53\x4d\x3e\xfc\xf1\xa1\x55\x22\ -\xec\xc7\x55\x7c\xd2\x4d\x83\x67\xe7\xae\x1d\x90\x33\xbd\x34\xe5\ -\x4a\x47\xa6\x9c\x34\xf2\xba\xfd\x26\x89\xab\xa7\x87\x11\x0b\x7c\ -\xc2\xe0\x13\xd6\xc2\x27\x93\x2c\x9e\xaa\x73\x69\x12\x3f\x8c\x60\ -\xf4\x54\xc9\xfd\xf5\xc9\xe2\x20\x7b\x83\x43\xc7\xd3\x56\x83\x7d\ -\x45\x7d\xe2\x15\x24\x64\x62\x6f\xd3\x4c\x61\x1a\xe7\x91\x1d\x13\ -\x74\x69\x96\x89\x5e\x57\xf9\x12\xbc\x16\x45\xa9\x2e\xcb\x64\x9e\ -\x44\x70\x91\x67\xab\x74\xbd\x48\xb2\x8f\xb5\xf0\x63\x99\x2c\x32\ -\x5d\xad\x0b\xf3\xb1\xca\xf3\xd4\x6f\x70\x6c\x6f\x6a\xb6\xab\xbc\ -\xa8\xd0\x36\x5e\x01\x9a\x5c\x5c\x55\xee\x4e\x95\xcf\x89\xd9\xbc\ -\xcf\xb7\x30\x4a\x0f\x7b\x8c\xc2\xdf\xd1\x23\xc8\xef\x63\x33\x2f\ -\xad\x7e\x3f\x63\x7b\x05\x53\x16\xb5\x0e\xb4\xf3\x24\xad\x4c\xb1\ -\xd7\x9f\xdc\x20\xca\xd3\xd4\x44\x80\x99\x4e\x37\x7a\x57\x8e\x1a\ -\x83\xb2\xda\xa5\x30\x49\x50\xe7\x05\x4a\x32\x68\xba\xca\xd3\x7a\ -\x72\x68\xdf\x13\xac\x81\xdf\x7f\x7d\xdf\xda\xdb\x5b\xee\x15\x2a\ -\xc4\xad\x14\x06\x09\x3e\xc7\x8c\xf2\x40\x4a\x22\x5b\xf9\xc1\x7b\ -\x10\x9d\x3c\xa4\x4a\xf0\x56\xb1\xdb\x37\x08\x30\x21\x42\x52\xda\ -\xca\x1b\xcf\x42\x0b\x89\x29\x0b\xf9\x61\x5a\x76\x62\xe6\x57\xbd\ -\x06\xf0\x75\xf6\x3e\x5d\xb7\x13\xfc\x86\x29\xda\x49\xc6\x1f\xcc\ -\x73\x52\x4f\xab\xee\x1b\x53\x15\x84\xe1\x89\x45\x3d\xad\xce\x0d\ -\x54\x48\x47\xde\xe4\x00\xea\x64\x3f\xe5\x1a\xfe\x89\x45\xbc\xfe\ -\xa9\x5d\x2b\x76\xa1\xc4\xd6\x5d\x47\xb7\xcc\x74\x69\x0e\xfd\xaf\ -\xf4\xc2\xd4\xf8\x3e\x8c\xde\xcc\xeb\xcf\x41\x31\xcb\x8b\xd8\x14\ -\x8d\x8a\xd7\x9f\x8e\x2a\x87\x80\x48\xaa\xdd\x9e\xde\xee\xba\xb3\ -\xb5\xbd\xb6\x7a\x7c\x5d\x5f\x3e\xe9\x38\xdf\x3c\x8c\xe8\xb9\xf2\ -\xcf\x3c\x5f\x42\xf8\xf8\x2a\x54\x98\x62\x75\xae\x8e\xac\x3f\xa5\ -\xf2\x03\xc1\xb0\x14\x17\x5a\xb8\x21\x15\x7e\xc8\xc3\xe0\x42\xb5\ -\x2e\x0a\xa0\x3f\x94\xea\x9d\x81\x39\xd5\xff\x91\x83\x51\xf9\x94\ -\x6f\x16\x85\xc5\xa6\x2a\xd6\xe6\xbc\xa5\xd5\xa0\xd9\xcc\x2e\xf7\ -\x6b\x6a\x88\xc6\xb5\x25\x56\xb4\xce\x92\x0a\xc8\x6b\xb5\x3d\xed\ -\x75\x9d\xc4\xa6\xbc\xde\x70\x93\x64\x00\x01\x6a\x16\x22\x6b\x11\ -\x3e\xb7\x68\x56\x9e\xc0\xf2\x33\x16\x36\x12\x3f\xa3\xda\x7d\x5e\ -\xb5\xd4\xdb\x64\x99\xfc\x69\x60\xde\xe4\xdc\xa4\xcc\xf4\x0a\x2d\ -\xd2\x7c\xa6\xd3\xcf\xa0\x62\x67\x76\x0a\xcb\x61\x3d\x76\x60\x6b\ -\x56\x71\xb5\xb3\x04\xbb\xdd\x59\x59\x27\x5e\xad\x80\x09\x7e\x5c\ -\xef\x79\x91\x00\x6f\x9d\xcc\xa7\x11\xed\x4e\x45\x96\x8e\x21\x9b\ -\x6e\x8f\x03\x6f\x65\x76\x49\x1e\xa3\xa3\x8d\x83\x7a\xb8\x8d\xe9\ -\x2a\x2f\x93\x7d\xc0\x21\x8e\xc7\x9d\x3b\x81\x23\x9b\x58\x3c\x51\ -\xd4\x43\xb5\x3d\xa8\xe0\x44\xd8\xcc\x34\xcd\xa3\x4f\x16\xc4\xb9\ -\x4e\x21\xb2\xf6\xf7\xbe\x9f\x5c\x86\x60\x2d\x5f\x9a\x4a\xc7\xba\ -\xd2\xc7\x78\x6c\x24\x54\x29\xdc\xa0\x08\x59\x74\xfa\xfb\x87\x5f\ -\x5a\x86\x89\xa2\xe9\xbf\xf3\xe2\xd3\x91\x15\xac\x81\x9e\xe5\x6b\ -\x58\x16\x2d\x0f\x59\x02\x8e\xa6\x90\xf7\x20\x1f\x3c\x26\x4b\x88\ -\x32\x9b\x32\xff\x0a\x79\x0e\x98\xa1\x55\x74\x8c\xad\x63\x8e\x9d\ -\xee\xbb\x2d\xcc\x3e\x81\x5e\xad\x22\xe2\x68\x99\xd8\x46\x93\x7f\ -\x56\x49\x9a\xfe\x66\x6f\xd2\xa2\xdd\x76\x9a\x54\xa9\x39\x0a\xef\ -\x27\x87\xd1\x37\x8c\x75\x32\xb9\xfb\x49\x33\xfb\xfa\x6a\x71\x44\ -\xa5\x13\xa0\x47\xa8\xf5\xcc\xc0\x82\xfc\xbb\x55\x7a\x17\xda\x45\ -\x91\xaf\x57\xcb\x3c\x36\x87\xe6\x2d\x9a\xc0\xbd\x67\x59\x05\x58\ -\x33\x9d\xbe\xc1\x38\x8a\xe6\xf3\x77\xf6\x02\x1d\x18\x6b\x4a\xf6\ -\x97\xc5\x3a\x85\xdc\xf7\x6c\xb2\x3c\x8e\xdf\x95\x55\x91\x7f\x32\ -\xd3\x03\x47\x1e\x2e\xf7\x91\x3b\xc5\xcd\x25\x00\x63\x8a\x14\x22\ -\xaa\x9a\x06\x8d\x2c\xd6\x40\x74\x45\xa1\x77\xd3\x0c\x4a\xbd\x46\ -\xda\xde\xaa\xb3\xc0\xec\x28\x43\xc9\x54\x2b\x3c\x30\x43\xd0\x0a\ -\x1a\x22\x38\x4a\xf6\xd9\x8d\xd0\x10\xea\xa3\x63\x6f\x36\x06\x8e\ -\xdd\x14\x36\x4c\x7c\x56\x7f\x8e\x2d\x8b\xdd\xa9\xb4\x0d\x98\x2f\ -\x40\xa5\x75\x1c\x0c\x0c\x2a\x44\x1c\xc1\x62\xbe\x14\xe1\x8d\x71\ -\x0a\x20\x7f\x0f\x0e\x27\x84\x1d\x91\x22\xe4\xe6\x50\xcd\xe7\x54\ -\x53\x3d\x38\xa8\x98\x2b\x52\x9d\xda\x31\xe8\x80\x84\x7f\x34\x70\ -\x90\x44\xa1\x23\x3e\x34\x78\x4d\xf8\x60\xe4\xba\x7e\xa8\xbc\x05\ -\x3e\x03\xe5\x6b\x14\x38\xa2\x73\xc9\xd8\x61\xcf\x34\x84\x31\xe7\ -\x12\x0f\x0f\x29\xe9\x9c\xdd\xc4\xff\x00\xab\x81\x66\x37\x24\x1c\ -\xb1\xba\x92\xdf\xfa\x06\x6b\x3e\x57\x6a\x80\x60\x31\xc4\x5d\xb1\ -\xea\x64\x38\xdc\x13\x43\x0d\x14\x1e\x24\x10\x75\xc4\x87\xe2\xd7\ -\x84\x0f\x54\x00\xc8\x75\x93\xd2\xad\x01\xfa\x42\x68\x90\xdb\x37\ -\x74\x71\xc6\xf8\xd5\x0c\xc7\x69\xa0\x94\xea\x94\x01\x54\xf4\x4c\ -\x46\x43\xad\x07\xa4\x2b\x5c\x02\xe0\x0a\x6f\x0c\xd5\x50\x93\x9c\ -\x33\x71\x5f\x24\xb9\xde\xc1\x92\xd8\x7e\x06\x07\x16\x73\x26\xf1\ -\x6e\x92\x23\xb4\x27\x8e\x1a\x28\x3e\x90\xe5\x9c\xf7\x29\xf8\x55\ -\x01\x64\xd3\x9c\x2b\x37\x75\xd3\xdc\x0f\x0f\x11\xec\x75\x9d\xeb\ -\xee\xee\x6e\xb7\x37\x88\x86\x59\x0a\x60\xe7\xed\xee\xf5\xd3\x5c\ -\xca\x3a\x30\xfd\xb8\xd5\x40\xe0\x4c\xdb\x17\xe7\x03\x37\xc0\x6a\ -\xb0\xe7\x03\xce\x67\x71\x17\x27\x04\x37\x40\x6b\xa8\xc5\x93\x70\ -\xde\xb5\x5c\x29\x9f\xfa\x86\x2b\x0e\x06\x49\xed\x0c\xf1\x17\x16\ -\x50\xb2\x03\xd4\xf7\x13\xfb\x40\x01\xb2\xa7\x04\xee\xb9\x0f\xbf\ -\x26\x84\x6c\x75\x40\x9d\xcf\x30\xbb\xf5\x41\x5f\x18\x59\x06\x1f\ -\x22\x46\xd2\x79\x0d\x09\xbf\xbb\xfb\x0d\x7a\x26\x24\x8c\x19\x1b\ -\x60\xb6\x83\xa5\xe4\x7c\xc2\xdb\xe1\x23\xda\xdf\xa1\x53\x10\xe8\ -\x01\x3e\x78\x12\xee\x0f\xe6\xf0\x4d\x00\x92\x02\x6a\x4b\x33\x3c\ -\x80\xea\xdd\xca\xcb\x1e\xce\xf5\x86\x91\xad\x91\x86\xc9\x47\x50\ -\x53\xba\x17\x95\x5d\x4a\xc2\x3d\x53\xd2\x50\xc1\xb2\x25\xa5\xeb\ -\xfe\x0e\x4a\xca\xdb\x82\x35\x58\xfe\xe6\xce\xfc\x74\x76\x22\xc7\ -\x7b\x8a\x3d\xaa\xc5\x7c\x78\x47\x05\x87\xe7\x2a\xee\xa7\x72\xc1\ -\x4d\x40\x1a\x32\x89\x53\xe7\x97\x99\xce\x0e\x9d\xfa\x02\x69\x16\ -\xc5\x2c\x1c\xe2\x4a\x72\x7f\x75\x80\x9d\xd1\xd2\xd9\xc1\xdc\xcb\ -\x79\x69\xb0\x58\x41\xcc\xbd\xb4\x06\x7f\x35\x60\x61\x60\xf1\xef\ -\x78\x06\x75\x63\xb4\x06\x9b\xf2\xe8\x0b\x53\x1e\xed\x6b\xfb\x3b\ -\xdc\x3d\x0b\x73\xae\xa0\xce\x76\x2d\x7d\x41\x34\xe4\xaa\xe0\xa5\ -\xef\x5c\xf6\x06\x92\x94\x5a\x0f\xaf\x12\xc7\x28\x70\xce\x77\x08\ -\xfb\xc2\xbe\x74\x71\xf6\xcd\x2f\xd9\x33\x35\x0d\x13\xb0\xfa\x39\ -\x8b\x73\xd6\x3b\x2f\x11\x5e\x0b\x56\xf5\x93\x03\xe7\xba\xfc\x22\ -\xed\xf5\x0d\xd7\x60\xb3\x1e\xff\x8e\x02\xfd\x2c\xef\xf5\xf7\x12\ -\xf4\x50\xf3\x1e\x84\xdf\x0b\x1f\x1f\xf4\x06\xd2\x90\x33\x9f\x25\ -\x77\xe7\xcd\x5e\x70\x13\x98\x86\xbd\x23\x26\x2f\x7c\xd0\xd2\x03\ -\x4c\xcd\x48\xb1\xaf\x44\xfd\xc2\x0a\x7d\xd7\xbc\xc8\x3a\xbf\x58\ -\x60\xd8\x0f\x09\xa7\x1c\x13\xfa\x45\xc0\x88\x4f\x48\x18\xe0\x80\ -\x93\x46\x9e\x26\x99\x89\xf4\x6a\x5a\xe4\xeb\x2c\x3e\x15\xfe\x27\ -\x4f\xb2\x69\x8d\xeb\x15\x90\xa9\x1f\x7e\x23\xcc\x76\x98\xd0\x6c\ -\xba\x2e\xd2\xb7\x6f\xe6\xcd\xd7\xc9\x7f\xba\x40\x5f\xca\x8b\xc2\ -\x55\x30\x5f\xc0\x94\xc4\x25\xf0\xa1\xf2\x6d\xad\xa1\xf8\xa9\x03\ -\x10\xe9\xe4\x07\x24\x0e\x36\xc7\xed\x51\x55\xe8\xac\xb4\x5f\xdb\ -\x7c\x18\x2d\x75\x55\x24\xdb\xb7\xd8\xe7\x42\x12\xc9\x09\x1d\x63\ -\xfb\xc7\xdf\x7f\x35\x9b\x87\x63\x14\xf8\x92\x0a\x8a\x25\x1d\x23\ -\xba\x17\x87\xfc\xa7\xa3\xc3\x56\xba\x7a\xba\xb6\xae\x4f\x40\xb0\ -\x7c\x29\x0d\xc6\x67\x2e\x58\x6d\xcf\xb1\x9f\xad\xab\xea\xcb\xd0\ -\x5f\xae\x5a\x80\xed\x1f\x1e\x62\xbe\x92\x82\x0b\x1a\x8c\x49\xe8\ -\x0b\x26\x03\x26\x3d\x64\x17\x0c\x57\x81\x82\xa1\x93\xc0\x17\x82\ -\x50\x2f\xf4\x09\x56\x0a\xe3\x70\xcc\x7d\xc9\x04\x96\xc4\x23\xf6\ -\xcd\x18\x1c\x62\x36\x0e\x7d\xa9\x08\x0f\x02\xe1\x41\x27\x98\x52\ -\x62\x9b\xa9\x20\xe4\x84\x79\x14\x8f\x89\xf0\x52\x8f\xfb\x2a\x0c\ -\x95\x1c\x07\x3e\x16\x1c\x73\xe9\x01\xba\x9c\x4b\xca\xc6\xcc\xc7\ -\x52\x60\xaa\x3a\x1e\xb5\xe8\x04\x98\x1d\x19\xf9\xe4\xab\xfb\x19\ -\x4c\xba\xca\x0b\x14\xad\x8b\xe7\xfa\xb7\x28\xd8\xf0\x78\x39\xae\ -\x30\xe4\x3a\x4a\x2e\x56\xf6\xd7\xd1\x75\x67\x0f\x7c\x88\x60\xc6\ -\xfe\xcf\x1c\x72\x52\x77\x7d\xcd\x25\x17\x76\x6d\xf8\xa0\xc8\xd8\ -\x5f\x1f\x81\xea\xba\x2b\x0c\x58\x48\x82\x6f\xb0\xde\xff\x22\x08\ -\xc5\x94\x92\x21\x17\x8e\x1e\x9f\xcf\x31\x23\xb3\x61\x7a\x1c\x13\ -\x2c\x28\xe5\x63\x4a\xc1\x05\x82\x32\xe1\x61\xf8\xb9\xf6\x11\x96\ -\x5c\x86\x38\x18\x5b\x32\x62\x01\xa1\x04\x1c\x0f\xe6\x1c\x33\x3e\ -\xb6\x60\x04\x80\x1e\xf7\xec\x44\x48\xa8\xf8\x58\xf9\x38\x64\x4a\ -\x10\x2b\x11\x42\x2a\x35\xa6\x20\x81\x35\x14\x34\xfe\x26\xee\x0e\ -\x3f\x39\x61\xea\xd5\xe5\x57\x56\xd2\x17\x7d\xae\x88\xbb\xcf\x31\ -\xd6\x37\x65\xcf\x81\xbb\x8e\x38\xf2\xe7\xfd\x64\xf1\x78\x77\x6f\ -\x7f\x4b\xc1\xe3\xdd\x7f\x01\x5f\xd9\x98\x1e\ -\x00\x00\x0a\xea\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x6f\x69\x5f\x73\ -\x69\x6e\x67\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x78\x3d\x22\x2d\x31\x34\x2e\x39\x31\x38\x38\x38\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x32\x31\x2e\x39\x38\x36\x31\x39\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\ -\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\ -\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\ -\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ -\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\ -\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ -\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ -\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\ -\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\ -\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\ -\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ -\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ -\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ -\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ -\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ -\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ -\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\ -\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\ -\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\ -\x38\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ -\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\ -\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\x37\x38\x35\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\ -\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ -\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x33\x2e\x32\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\ -\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x63\x20\x30\x2c\x31\ -\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\x32\ -\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\x32\x30\x30\x30\ -\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x38\x30\x38\x30\x38\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x35\x38\x39\x30\x39\x35\ -\x31\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\ -\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x36\x30\x32\x32\x38\x39\ -\x20\x63\x20\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\ -\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\ -\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ -\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x59\ -\x00\ -\x00\x4e\xd5\x78\x9c\xe5\x9c\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ -\x54\xed\x25\x41\x4b\xbd\x6d\x3d\x62\x3b\x87\x06\x01\x02\xf4\xd4\ -\xa6\xe8\x31\x90\x25\xda\x26\x56\x12\x0d\x8a\x5e\xdb\xf9\xf5\x21\ -\xf5\xb2\x65\x6b\x81\xa6\xa4\x0a\xed\x52\x45\x90\x6a\x66\x48\x91\ -\x9f\x66\xc8\x21\x45\x67\xf1\xf1\x94\x67\xda\x33\x24\x25\xc2\xc5\ -\x52\xb7\x0d\x4b\xd7\x60\x91\xe0\x14\x15\xdb\xa5\xfe\xf7\xd7\xcf\ -\x20\xd0\xb5\x92\xc6\x45\x1a\x67\xb8\x80\x4b\xbd\xc0\xfa\xc7\xd5\ -\xc3\xe2\x17\x00\xb4\xdf\x09\x8c\x29\x4c\xb5\x23\xa2\x3b\xed\x4b\ -\xf1\x54\x26\xf1\x1e\x6a\xef\x76\x94\xee\x23\xd3\x3c\x1e\x8f\x06\ -\x6a\x84\x06\x26\x5b\xf3\xbd\x06\xc0\xea\xe1\x61\x51\x3e\x6f\x1f\ -\x34\x4d\x63\xcf\x2d\xca\x28\x4d\x96\x7a\x53\x60\x7f\x20\x59\x65\ -\x98\x26\x26\xcc\x60\x0e\x0b\x5a\x9a\xb6\x61\x9b\xfa\xc5\x3c\xb9\ -\x98\x27\xfc\xe9\xe8\x19\x26\x38\xcf\x71\x51\x56\x25\x8b\xf2\xf1\ -\xca\x98\xa4\x9b\xce\x9a\xb7\xe6\xe8\x56\x46\x76\x18\x86\xa6\xe5\ -\x98\x8e\x03\x98\x05\x28\xcf\x05\x8d\x4f\xa0\x5f\x94\xb5\x71\xa8\ -\xa8\x63\x59\x96\xc9\x74\x17\xcb\x7f\x67\x15\x95\x0c\xe8\x9e\xfd\ -\xe9\xcc\x5b\x81\x51\xe2\x03\x49\xe0\x86\x95\x83\x46\x01\xa9\xf9\ -\xe9\xeb\xa7\x4e\x09\x2c\x23\xa5\xe9\x55\x35\x2d\xcf\xde\x53\x7b\ -\x90\x8b\x38\x87\xe5\x3e\x4e\x60\x69\xb6\xf2\xaa\xfc\x11\xa5\x74\ -\xb7\xd4\x5d\xcf\xb0\x5d\x76\xcd\x2a\xe1\x0e\xa2\xed\x8e\xde\x4a\ -\x51\xba\xd4\x59\xeb\x9d\x30\xa8\xef\xaf\x9c\xc3\xae\x0d\x9a\x8a\ -\xa3\x4e\x63\x19\xa1\x63\xd8\x1a\xb1\x67\xae\x5f\xdb\xb4\x5d\x88\ -\x52\x9c\xf0\x36\xb1\x2a\x61\x8e\xe2\x03\xc5\x39\x7b\x6b\x49\x92\ -\xc5\x65\x89\x36\x28\x61\x37\xb8\xd8\x67\x87\x2d\x2a\xbe\xf5\x85\ -\xdf\x52\x94\x55\xff\x63\xb4\x28\xbb\xe7\xc2\xd3\x1e\x13\x0a\x4e\ -\xe9\x9e\x01\x9d\xfb\x83\xca\x73\xab\x5c\x31\xed\x22\x85\x9b\x92\ -\x5b\xd5\xbd\xe3\x77\xac\x7b\xbe\xae\x99\x95\xb6\x6b\x2c\x6f\x69\ -\xfa\x8c\xe0\xf1\x62\xbb\x8e\xcb\x9a\xa0\xa6\xed\xe3\x2d\xf3\xb6\ -\x0c\x93\xa5\xfe\xb8\xa9\xae\x46\xb1\xc6\x24\x85\xa4\x55\xcd\xab\ -\xab\xa7\xc2\xec\x8d\x20\x7a\xae\xe3\xab\xa9\xbb\x6d\x2f\xaf\xb5\ -\xd3\x5b\xc3\xfa\x72\x17\xa7\xf8\xb8\xd4\x9d\x5b\xe5\x77\x8c\x73\ -\x56\x2b\x7b\x33\xa1\x1f\x58\x77\xea\xe4\xb4\xd4\x81\x1d\x18\xee\ -\xcc\x9b\xdb\x77\x4a\xde\x1e\xdf\xb0\x9c\xd0\x0a\xef\x74\x07\x42\ -\x58\xfc\x81\x2c\x3e\x43\xd6\xa7\xea\xaf\xb6\x82\x72\x87\x8f\x5b\ -\xc2\xd9\x50\x72\x80\xb7\x25\xb9\x06\xac\xd7\xf8\x34\xac\x66\xee\ -\x70\xe0\x91\x0d\x0e\x05\xa2\x2c\x7a\xf6\xa7\xeb\x5a\x0f\x28\x85\ -\xe5\x70\xc1\xb2\x88\xf7\x60\x9b\xe1\x75\x9c\x0d\x1b\x1c\x51\xc1\ -\x18\x81\xc6\xd1\x6d\xb7\x7b\x05\xb7\x16\xad\xd7\xfb\x56\xf0\x82\ -\x05\x6b\xfb\xdd\x6b\x68\x54\xe7\x97\x55\x79\x7c\x42\x39\xfa\x0e\ -\x19\x18\xbb\xf2\x3a\xe6\x59\x3d\x2c\x75\x31\x4d\xa3\x67\x1e\xc1\ -\xa7\x33\x97\xe9\xad\x90\xf3\xe4\x02\x27\x0c\xfd\x4e\x88\x09\x62\ -\x81\x71\xd5\x9c\x56\x74\xbe\x16\xf1\x78\x67\xc3\xf5\xa9\x72\xaf\ -\xca\xf9\xfc\x5b\xdd\xf9\x5a\xd7\x78\xbd\x79\xef\xf6\x95\x3c\x87\ -\x34\x4e\x63\x1a\x5f\x62\xa0\x95\xb0\xb6\x59\x6d\xcf\xd8\xd0\x19\ -\xfd\xf9\xe9\xf3\xaa\x79\xd0\x22\x49\xa2\x7f\x30\x79\x6a\x9f\xab\ -\x69\xdc\x20\x5e\xe3\x03\x23\xad\xaf\x3a\xf1\x22\x4d\x22\x36\xd8\ -\xb1\x41\x60\x85\x72\xe6\xd9\x7c\x9c\xfc\x95\x0d\x6e\x0b\xf3\xa2\ -\xe8\x19\x73\x58\x97\x4a\xeb\x6a\x09\xac\x47\xcd\xc1\xa9\x23\x4d\ -\x72\xc4\x0b\x99\x7f\x51\x94\x65\x5f\xf8\x43\x9a\x1e\x5f\x55\x8a\ -\x68\x06\x2f\xc2\x85\xd9\xb4\xbe\xe9\x9b\x79\xd5\xb9\x85\xd9\xf6\ -\xbe\xba\xdb\x5e\xa8\xf4\x82\xa2\x7b\xd1\x59\xbc\x86\xcc\x43\xff\ -\xe0\x4a\xed\x4e\xbb\x25\xf8\xb0\xcf\x71\x0a\x9b\xe2\x1d\x4d\x98\ -\xd0\xee\x95\xd1\x73\xc6\xf4\x1b\xd6\xfa\xe8\x71\xed\xf2\xff\x3e\ -\xf0\x1b\xd0\x8c\x12\x91\x5d\xdf\x92\x43\xc6\x46\xbb\x67\x58\xe0\ -\x34\xfd\x50\x52\x82\x9f\x60\xf4\x68\x55\x57\x73\x5b\x07\x43\x64\ -\x19\x9e\x1b\x7a\xfc\xdd\xb7\x72\x46\x08\x92\x8c\x79\x2b\x8d\xbc\ -\x56\x96\xc6\x6c\x94\x21\x24\x3e\x47\x05\x9b\xe8\x5b\x69\xf7\xcc\ -\x9e\xa3\xf2\xe6\xce\x02\x37\x04\x36\x08\xc0\x45\xd5\xc4\xde\xcc\ -\x70\xdd\xcb\x74\xc2\xaf\x36\xe4\x3c\x23\xac\x34\x5e\xa7\xe1\x4e\ -\x6b\x19\x37\x4e\x7b\xe6\xa3\xd6\x9d\x2b\x93\x5e\x1c\x90\xca\xa5\ -\xe7\x1e\xbf\xe6\xdd\x0b\x7e\x19\xa4\x65\xcd\x66\x0c\xcc\x94\x41\ -\x86\x63\x80\xb4\x5d\xc3\xef\x5b\xbe\x79\x8e\x36\x98\x8d\x41\x32\ -\x30\x82\xaa\x2f\x8e\x3a\x24\xfd\x31\x38\x3a\xae\x31\x57\x07\x21\ -\x73\xc6\x51\xbc\x91\x65\x75\xbd\x44\x53\x14\xe5\x2b\x98\x68\xc2\ -\x71\xfc\xd1\x75\x0d\x4f\xe6\x4c\x33\x6d\x92\x82\x04\xad\x1e\x39\ -\x23\x50\xcb\x07\x3d\x41\x7a\xf7\xe6\x63\xa4\x3a\x13\xc7\x18\xc8\ -\x74\x41\xd9\xe9\xcd\xc4\xd9\x59\xc2\x2e\xd8\xa3\x27\x3b\xa5\x99\ -\x3a\x3d\x57\x26\x3c\x89\x79\xcc\xd4\xb9\x09\x4f\xbc\xfd\x98\x55\ -\x2e\x75\x11\x5f\x24\x0f\xce\x1c\x6a\x65\x2e\x7c\xf0\x13\xe6\xd8\ -\x8f\xe0\xc0\x98\x55\x26\x0a\xf1\x93\x3b\x81\xa8\xe8\x81\xc0\x91\ -\x49\x50\xb5\xec\x8f\x2f\xe4\x3c\x51\x1f\x74\xe6\xb7\x33\x48\xb5\ -\x1a\xf1\x5d\x85\xa2\xb9\xde\x5c\x10\x9d\x98\x07\x49\x32\x9f\x54\ -\x24\x23\x6c\x76\x68\x84\x37\x0c\x07\x31\x06\xb7\x9b\x0d\x6f\x1e\ -\x65\x08\x7c\xe1\xd1\x71\x38\xb6\xdd\xba\x12\x65\xdc\xd2\x03\x8e\ -\xe8\x3a\xd9\xb1\x8d\x1b\xa1\xdc\xd0\x9e\xf8\xe6\x6b\x00\x44\x57\ -\x7b\x76\xcf\x05\x6d\x65\xb6\xad\xab\x2c\xc7\x13\x75\x3f\x7b\xcc\ -\xb1\x70\xea\x04\x5d\xf1\xad\xea\x1e\x3e\x47\x72\x9e\x3d\x71\x7e\ -\x36\x98\x8b\x4f\xc9\x43\xc3\x9f\x62\x1c\x2d\x36\x1f\xcb\x8d\x63\ -\x5b\xf2\x92\x79\xe2\x00\xf9\x44\x3c\x07\xae\xe8\xae\xc3\xa0\x2f\ -\xca\x46\x39\xf9\x9c\x86\x6f\x83\x81\xd0\x1a\x83\xa5\x62\xf9\x61\ -\xb3\x93\x23\x7e\xce\x41\xe5\x24\xbb\xd9\xcc\x01\xe1\x5c\x2a\x45\ -\xb5\x16\xcf\x9e\x27\xbc\xe0\xbb\xf2\x37\x65\x77\x71\x80\xa8\x0f\ -\xf6\x21\xaa\xe5\x83\x3c\x94\x45\xb3\x9c\x3e\x3f\x89\x6b\xbd\x57\ -\xc0\xaf\xda\x00\x13\xfe\xb2\xd2\x27\xa8\xde\xde\x97\xcf\xa6\x12\ -\xd1\x45\x5f\x9f\xa1\xec\xc5\xca\x2b\x80\xc8\x4f\xcb\x01\x6b\x2e\ -\x79\x4e\x91\x97\x69\xf7\xb1\xbd\x0a\xa4\xd5\x9e\xac\xf0\x5e\x18\ -\x70\xfd\xdb\xe4\xf0\xa7\x33\xc6\x56\x4a\x49\x5c\x94\xfc\xac\xff\ -\x52\x2f\x93\x38\x83\xef\x80\xfd\x9b\xfd\xfe\xcd\x38\x70\x95\x58\ -\x8a\x7e\xe1\xba\x19\x09\x02\x43\xde\xf9\xed\xcd\xe6\x67\x16\xdc\ -\xf5\x0f\x9d\xfe\x4f\x86\xa2\xd9\xf8\xe0\x19\x4f\xc9\x27\x15\xa7\ -\x4f\xb1\xf6\xc4\x31\x58\xca\x3e\x35\x31\x75\x96\x82\x0c\x87\x4f\ -\xee\x28\xe7\x8f\xa2\x61\x3d\x88\x51\xfe\x8f\x5b\x26\x8e\x51\x7c\ -\xb5\x3d\xc8\x51\xfe\x4f\x5b\x26\xce\x51\x74\xb9\x3d\x48\x51\xea\ -\x0f\x5b\x26\x0e\xd0\x1b\x07\xa1\xec\xa3\xa1\xaf\x80\xa3\xf8\xaa\ -\x71\xd8\x19\x15\x9b\xa5\xeb\x7d\x20\x41\x92\x83\x67\x4f\xa4\x7e\ -\xf8\x9f\x3c\xc4\x66\x05\x3e\x0a\x48\xf5\x5c\xb2\x59\x0e\x8e\x41\ -\x53\x9d\x35\xa1\xdc\xa3\x14\xb2\x3f\x30\x4c\x1c\x9e\xf8\x71\xe5\ -\xe1\x0f\xae\xaa\x51\x0c\xc4\xcf\x93\x0d\x9f\x02\x50\x68\x76\xe1\ -\xc9\xce\x28\xa7\x1a\xa5\x9f\x2e\x9b\x34\xc8\xfa\xc3\x75\x20\xf7\ -\x78\xa3\x3a\xd3\x49\x93\x74\x0b\x6f\xec\x0c\x1f\x30\x53\x08\x63\ -\x30\xd6\x69\xef\xff\xf2\xe1\x6b\x61\x6e\x57\x0f\x0b\xfe\xcf\x09\ -\xad\x1e\x7e\x00\x7b\xad\x87\x0c\ -\x00\x00\x12\xa8\ -\x00\ -\x01\xe6\x23\x78\x9c\xed\x5d\x4b\x73\xe3\xc6\x11\xbe\xef\xaf\x60\ -\xb8\x97\xa4\xb2\x18\x62\x06\x6f\xae\x24\x1f\xe2\x4a\xc5\x55\xc9\ -\x25\x71\x92\xa3\x8b\x22\x21\x89\x59\x92\x50\x81\xe0\x4a\xf2\xaf\ -\xcf\x0c\x9e\x24\xd8\xb2\x45\x37\xd0\x58\x19\xcd\xb5\x6b\x97\x00\ -\xf8\x9a\x0f\xfd\xfc\x7a\xba\xaf\xbe\x7b\xde\x6e\x26\x5f\xe3\x74\ -\xbf\x4e\x76\xd7\x53\x29\xec\xe9\x24\xde\x2d\x93\xd5\x7a\x77\x7f\ -\x3d\xfd\xf7\x8f\x7f\xb5\xc2\xe9\x64\x9f\x2d\x76\xab\xc5\x26\xd9\ -\xc5\xd7\xd3\x5d\x32\xfd\xee\xe6\xc3\xd5\x1f\x2c\x6b\xf2\x97\x34\ -\x5e\x64\xf1\x6a\xf2\xb4\xce\x1e\x26\x3f\xec\xbe\xec\x97\x8b\xc7\ -\x78\xf2\xc7\x87\x2c\x7b\x9c\xcf\x66\x4f\x4f\x4f\x62\x5d\x1e\x14\ -\x49\x7a\x3f\xfb\xd3\xc4\xb2\x6e\x3e\x7c\xb8\xda\x7f\xbd\xff\x30\ -\x99\x4c\xf4\xe7\xee\xf6\xf3\xd5\xf2\x7a\x5a\xbe\xe0\xf1\x90\x6e\ -\xf2\x0b\x57\xcb\x59\xbc\x89\xb7\xf1\x2e\xdb\xcf\xa4\x90\xb3\x69\ -\x73\xf9\xb2\xb9\x7c\x69\x3e\x7d\xfd\x35\x5e\x26\xdb\x6d\xb2\xdb\ -\xe7\xaf\xdc\xed\x3f\x1e\x5d\x9c\xae\xee\xea\xab\xcd\xb7\x79\x72\ -\xf2\x8b\x64\x14\x45\x33\x5b\xcd\x94\xb2\xf4\x15\xd6\xfe\x65\x97\ -\x2d\x9e\xad\xd3\x97\xea\xef\x08\xbd\x54\xd9\xb6\x3d\xd3\xe7\x9a\ -\x2b\xdf\x76\xd5\x7c\xaf\x17\xf4\x51\xff\x5f\x5f\x5e\x1d\x10\xfb\ -\xe4\x90\x2e\xe3\x3b\xfd\xba\x58\xec\xe2\x6c\xf6\xfd\x8f\xdf\xd7\ -\x27\x2d\x5b\xac\xb2\xd5\xd1\xdb\x54\xeb\x79\xf2\xa9\x27\x8b\xbc\ -\x5b\x6c\xe3\xfd\xe3\x62\x19\xef\x67\xd5\xf1\xfc\xf5\x4f\xeb\x55\ -\xf6\x70\x3d\x75\x5c\x21\x1d\xfd\xf0\xf2\x83\x0f\xf1\xfa\xfe\x21\ -\x6b\x1f\x5d\xaf\xae\xa7\xfa\xdb\x7b\x8e\xb2\xf3\xe7\x47\x37\x87\ -\x2c\x2e\x28\xdf\x78\x5e\x9f\xb1\x45\xa4\x84\x9c\xa4\xd2\x73\x82\ -\xe2\x9a\xea\x27\xcc\x57\xc9\xd2\x7c\x27\xfd\x96\xf1\x76\xbd\x38\ -\x64\xc9\x56\xa3\xb6\x5c\x6e\x16\xfb\xfd\xfa\x6e\xbd\xd4\x4f\x92\ -\xdd\xe3\xe6\x70\xbf\xde\xfd\xa4\xdf\x34\xcb\xe2\xf4\xa7\x74\xb1\ -\x37\x7f\xad\xd6\xfb\xc7\xcd\xe2\x45\x54\x2b\x59\x7f\x6c\xfc\xfc\ -\x98\xa4\x99\xf5\xbc\x7a\xd4\xeb\xe9\x07\xc2\x03\x4f\xbf\x34\xa7\ -\x6f\xf4\xf9\xab\x55\x7c\xb7\x37\xd7\x15\x3f\xd0\x3c\xd3\xbf\x50\ -\x4d\x27\xb3\xfc\x6c\xfd\x7d\xcd\x97\x5d\x7d\x5d\xc7\x4f\xcd\xb5\ -\xb7\x8b\x7d\xb1\x88\x93\xc9\xe3\xe2\x5e\xdf\x70\x9b\x24\xbd\x9e\ -\x7e\xbc\xcb\x1f\xe5\x89\xdb\x24\x5d\xc5\x69\x75\xca\xcf\x1f\x27\ -\xa7\x12\x0d\xca\x3a\x7b\x29\x44\xac\x7c\xef\xea\x1b\x9b\x77\xad\ -\xcf\xdb\xf0\xf9\xfd\xc3\x62\x95\x3c\x5d\x4f\x55\xfb\xe4\xcf\x49\ -\xb2\xbd\x9e\x06\x22\x92\xa1\xed\xca\xa0\x7d\x7a\xf9\x7c\x3d\xb5\ -\xa4\x14\xa1\x13\xb9\x5e\x74\x76\xd6\x7c\xa1\x48\x9f\xf4\xfc\x12\ -\xb8\xe3\x93\x87\x34\xd5\x42\x68\x69\x10\x62\xfd\xab\xf2\xbf\x9c\ -\xf2\xa2\xfd\x43\xf2\x74\x9f\x9a\xd5\xc9\xd2\x43\xdc\x7e\xa5\x39\ -\x63\xdd\xde\x26\xcf\xf0\x69\x7d\x4f\x1c\x8c\x78\x5b\x87\xdd\x3a\ -\xd3\x22\xf4\xf8\x7c\xfc\xae\x87\xf5\x2a\xde\xbf\xf2\xbe\xe6\xdc\ -\x2f\xbc\xf1\xd3\x7a\xa7\x17\xc9\x2a\x6f\x76\xe9\xd4\x18\xb4\xaf\ -\xa8\xee\xfc\xc0\x0e\x5f\xb9\x42\x7f\xc2\x19\x0e\xe5\xa9\x97\xd7\ -\x4f\x6d\x17\xcf\xeb\xed\xfa\xe7\x58\xaf\x8b\xcc\x6f\x3b\x7d\x6b\ -\x9d\xac\x4a\xf1\xb2\xc9\x24\x7b\x31\x52\xfc\xfc\x62\x8e\x4d\xab\ -\x83\x66\x39\xcd\x01\xcf\x71\xfd\xfa\x60\x92\xae\xb5\x70\x1c\x7d\ -\x9d\xea\xd0\xcb\xf1\x21\x23\xf3\x5a\x65\x3f\xe7\xf7\x57\x7e\xf7\ -\x05\xed\x73\x2f\xc7\xe7\xca\xdb\x7e\x76\x7e\xdf\xe7\xc7\xb7\x71\ -\xb6\x58\x2d\xb2\x45\x23\x04\xd5\x11\x2d\x34\x5e\xf5\xcb\xb4\xfa\ -\x9c\xff\xf3\xfb\xbf\xde\x94\x1f\x74\xb5\x5c\xce\xff\x9b\xa4\x5f\ -\xaa\xcf\x9d\x4c\xcc\x05\x8b\xdb\xe4\xa0\x57\x7a\x7a\x53\x1f\xbe\ -\x5a\x2d\xe7\x5a\xe1\x69\x45\x70\xb3\xde\xea\x5b\xdb\xe8\xca\x3f\ -\x6b\x05\x77\x35\x6b\x4e\x9c\x5c\x6c\x16\xab\x79\xd3\xe2\x6d\xd3\ -\xb8\xd0\x9c\xa0\xf9\x58\x2d\xb7\x6b\xf3\xa2\xd9\xbf\xb2\xf5\x66\ -\xf3\x83\xf9\x90\xf2\x17\x1f\xbd\xe9\x3a\xdb\xc4\xcd\xc1\xab\x59\ -\xf9\xed\xcb\xdf\x36\x3b\xfa\x71\x57\xb3\xea\xd7\xe7\xcf\xee\x9b\ -\x55\xc9\x65\xe2\x4c\x70\x36\x8b\xdb\x78\x73\x3d\xfd\xbb\x39\x39\ -\x39\x3b\x7b\x9f\x26\x87\xc7\x6d\xb2\x8a\xcb\x97\x57\x58\xdc\xff\ -\xda\x75\xad\x8f\x75\x5e\xfb\x58\x6d\x14\x37\x9b\xa4\x06\x29\x5e\ -\x66\xf5\x9d\x90\xbd\x6c\xf4\xdb\xe5\x6a\x6a\xfe\xd1\xce\x1f\x9f\ -\x4b\x3d\xab\x8d\xcb\x66\xbd\x8b\x3f\x27\x5a\xab\xdf\x6d\x92\xa7\ -\xf9\xd7\xf5\x7e\x7d\xbb\x89\x3f\xe7\x7f\xaf\x37\x7a\x41\xeb\x43\ -\x77\x7a\x55\xe7\x1f\x6f\x1d\xf3\x27\x7f\x62\x95\xea\x6b\x2e\x8b\ -\xa7\xe9\x61\x13\xcf\x77\xc9\xee\x67\xad\xf8\x3e\xef\xb3\x34\xf9\ -\x12\xcf\xb5\xc2\x0c\x3d\xfd\x79\xc5\xd3\x42\x48\xe7\x9e\x90\x91\ -\x74\x7d\x3f\x94\xd5\x71\xf3\x25\xf4\xcf\x99\xdf\x1e\xb2\xec\xf8\ -\xd8\xff\x92\xf5\x6e\xae\x61\x8d\xd3\xea\x68\xfe\x64\xa3\xe5\x2d\ -\x9b\xbb\xd5\xb1\xd5\x42\x2b\xca\x34\xd5\x3f\x47\x7f\x7a\x7c\x7c\ -\x34\xb9\xbb\xdb\xc7\xd9\x5c\x69\x65\xa7\x42\x5b\x7a\x61\x75\xb2\ -\xf9\xea\xdb\x45\xfa\x25\x4e\x8b\x57\xc6\xbb\x85\xfe\xa5\xd6\xed\ -\x62\xf9\xc5\x00\xb1\x5b\xcd\x17\x4b\xad\xb5\x0e\x1b\xed\xf2\x9c\ -\x08\xac\x59\x5f\xc7\xb6\x1b\x71\xab\x4c\xad\xaa\x8f\x54\xda\x46\ -\xf9\xe2\xc4\x32\x68\xb3\xae\x0f\x16\xb6\xd7\x71\xeb\x83\x2f\xd0\ -\xc1\x54\x1f\xd5\x2f\x8f\x1c\x2f\xf4\x9d\xfa\x66\xbe\x7a\x5c\x64\ -\x0f\x2d\x74\x73\x70\x8e\x7e\x7d\x0d\xf4\xc9\xc2\xd7\x9f\xe0\xf6\ -\xb9\xf0\xf5\xda\xd6\xbf\x43\xaf\xd8\x3f\x26\xb5\x1e\xfa\x64\xd5\ -\xff\x9c\xfc\x67\xe2\x38\xc5\x93\xe0\x64\x81\xcd\x4f\x54\x51\xd4\ -\x2c\x5a\x63\xa0\x92\x9d\xfe\xca\x59\x92\x5a\xda\x54\x7d\x5d\x64\ -\x87\x34\x3e\xd1\x89\xb5\x6e\xd3\x42\x64\xd4\x81\xb6\x2a\xcb\xe5\ -\x7b\x5f\x3b\xc7\x13\xea\x53\xbd\x52\x93\xbf\x4d\xce\x15\xfe\xd1\ -\xaa\x85\xdf\xce\xaa\x49\xa1\x41\xb4\x95\x17\x3e\x3e\x5f\xbe\x6c\ -\xe0\x62\x6c\x27\x15\x12\xce\x27\x15\x88\x20\xff\xd7\x64\x59\x1f\ -\x75\x3f\xd9\xaf\xfd\xfb\x6c\xad\x9c\x20\x50\x96\xfd\xe6\xd5\xea\ -\xe4\x26\x92\x81\xe7\x4a\xcf\xeb\x70\x3d\x7c\xe1\x7e\xaa\xbc\x79\ -\xb3\x12\xf6\x27\xcb\x15\x2a\xbf\x3d\x5e\xfb\xf7\xf9\x4a\x84\xee\ -\xbb\x5f\x07\xed\xf0\x16\x77\x43\x27\xab\x61\xbd\x5d\x8a\xbe\xd1\ -\xf5\x50\xaa\xa3\x1b\xc3\x8a\xde\xfd\x52\x04\x9d\xde\x1a\xef\x5e\ -\x54\x6a\x53\xd2\xcd\x7a\x38\xef\x7d\x3d\x64\xd0\xe9\x7a\xbc\xdd\ -\x6d\xf9\xd5\xf5\xc8\x33\x0e\xf5\x1a\x0c\x62\x64\xb5\x1a\x41\xd9\ -\x57\x4b\xfd\x9e\x96\xa3\xbe\x55\x70\x6b\x22\x09\x45\xa6\xe7\x05\ -\x91\x5d\x38\x61\xa4\x3a\xa4\xdf\x05\xf1\xb1\xf2\xe2\xfe\x6e\x96\ -\xa2\x09\xf4\x50\x0b\xf2\x1b\xfc\x8f\xfe\x32\x20\x46\xff\xe8\xd7\ -\xbf\x39\x03\x02\xad\xba\x7d\xf9\x5a\xff\xa6\xc4\x87\x7d\x86\x14\ -\x22\xdf\x11\xda\x8d\x22\xaf\xb2\xad\xe2\x3c\xe1\x61\x8b\x48\xba\ -\x2a\xf4\x82\xe6\x94\xc9\x50\x3a\xc2\x3d\xb5\x98\x26\x35\x59\xaa\ -\x0e\x8f\x71\xeb\x17\xb7\x23\x95\x72\x39\x72\x9e\x08\x4f\x53\x0d\ -\x8c\x1c\x21\x72\x11\x02\x39\x57\xf8\xe7\xc8\x79\xc2\x89\x6c\x37\ -\xf0\x19\xb9\xbe\x65\xee\x28\x85\x70\x39\x76\xa5\x9b\x19\x32\x76\ -\x43\x60\x87\xb1\x74\x90\xd4\x45\x22\xc7\xcd\x51\x8c\x5c\xef\x52\ -\xe7\x77\x2c\x75\x8c\x1d\x99\xad\x3b\x8a\x02\x3b\xf2\x53\x1c\xe1\ -\xf9\x32\xb2\xd9\x4f\x21\xb0\x76\x28\x5f\x25\x6c\x67\xd4\x18\x3d\ -\x4a\x7b\xd7\xb5\xe0\x85\xc2\x0e\x34\x74\x32\x62\xe8\x7a\x17\xbc\ -\xae\xc5\x8e\xb1\xa3\x33\x78\x08\x47\x53\xd9\xed\xca\x12\x0e\xcc\ -\xa9\x0d\x9e\xec\xda\xe2\x31\x7c\x44\xf0\x61\xa2\x04\x30\x97\xc9\ -\xbe\x0a\x99\xe0\x21\x9c\x15\x58\x69\x32\x76\x64\x06\x0f\xa3\x31\ -\xa3\x42\xee\x38\xb3\x32\x98\xc1\x43\x68\x4d\x25\x81\x30\x81\x14\ -\x3d\xf3\xea\x70\xac\xe8\x45\x80\xd2\x6c\xd7\x90\x56\x00\x9e\x9f\ -\x29\xf0\x3b\xaf\x59\x96\x76\x95\xec\x64\xfc\x7a\xb7\x7a\x68\x04\ -\x1d\x40\x7f\x32\x82\x74\xb6\x0f\xd0\x9e\x97\x01\xa8\xc4\xa9\xf4\ -\xb9\x22\xca\x65\x92\xb1\x23\xb0\x7d\x1e\x16\x3d\x57\x78\x05\x5a\ -\x0c\xe1\x10\x29\x4e\x28\x6c\x40\x89\x5f\x58\xe2\x19\x32\x76\xfd\ -\x93\x7a\x50\xe0\x80\x17\x3f\x86\x90\x90\xdb\xc3\x6b\x50\xd0\x81\ -\x51\x82\xd1\x23\x49\x76\x42\x44\xc3\x65\xf8\x79\xc2\x67\xe8\xc8\ -\xa9\x3d\x3c\x6e\x90\xdc\xf9\xc2\xcd\x97\x49\x32\x82\xfd\x33\x7c\ -\xf8\xd0\xa1\x25\x7a\x8c\x1e\x21\xc7\x87\x47\xaf\xdc\xbf\xc6\xb9\ -\x97\x01\xa9\x3e\xbc\x07\xda\x36\x7f\x0c\x20\x15\xd9\x87\x8f\xfd\ -\xc0\xec\x27\xfb\x2f\x24\x89\x4f\xeb\xac\xd1\x46\x27\xfa\x93\xd1\ -\x23\x21\xfc\xf0\xee\xe7\x59\x0b\x15\x8e\xdc\xa9\x79\x3f\x7c\xec\ -\x1e\x8a\x20\x32\x0f\x06\x71\x08\x10\xb1\xf6\xaf\xf1\x55\x8e\x35\ -\x68\x24\x14\x07\x11\x44\x46\x10\xd8\xc2\x77\x19\x82\xc6\xdc\x31\ -\x78\x83\xd8\x40\xac\xff\x52\x95\x05\x9e\xf6\x0b\xab\xb3\x32\x0c\ -\x20\x81\x05\xc4\x1a\x40\xe9\x00\xf5\x2f\x8c\x21\x1d\xfd\x07\x94\ -\x5a\xe3\x85\xb0\xd9\x31\xc6\x00\xf6\xcf\x01\xa2\xf5\x28\x24\x83\ -\x0c\x21\x25\x07\x88\x4d\x85\xb6\xdd\x98\x26\x31\xc3\xe8\x51\x70\ -\x80\x36\x16\xbf\xba\xe0\x85\x41\x1c\x86\x0d\x44\x23\xd8\x0e\x24\ -\xb8\x84\x89\x90\x08\xec\x45\xfe\x18\x42\x4a\x36\x10\xed\xc5\x80\ -\xbd\x41\x38\x9c\xa7\x65\x03\xd1\xe1\x04\x28\x88\x8c\x22\x1d\x25\ -\x88\x56\xa5\x50\x4e\x94\x5d\x19\x4a\x62\x10\x9d\x94\x81\x54\x29\ -\x43\x48\xca\x0e\xa2\x31\x3c\x2d\xaa\xe0\x68\x9e\x94\x17\x44\x2b\ -\xd1\xb0\xec\xff\xc9\x20\x0e\xb4\x29\x09\x5d\xd7\x04\x43\x48\xd2\ -\xa4\x6e\xd4\xd8\xe5\x9b\x92\xd0\x7e\xa8\xb2\xa1\x3e\x14\x8c\x1e\ -\x45\x32\xd4\x43\xd7\xc6\x34\x01\xc3\x31\x7a\x75\x9a\x9b\x41\x24\ -\xd9\x17\x81\x17\x42\xb0\xbc\x90\x61\xa4\x0b\x06\xf1\x92\x08\x66\ -\x65\x18\x42\xca\x32\x51\x7c\xa1\x28\xb8\xc3\x8c\x41\x24\xf4\x46\ -\xd1\x95\x6a\xbc\xc5\x6c\x20\x47\x14\x1d\xc8\x83\x71\x04\x03\x48\ -\xe7\xc6\xf4\xe3\x8d\xf2\x36\x17\x42\x37\x06\x9b\x8f\x01\xeb\xb4\ -\xbd\xc2\x3b\xa5\x69\x4b\x38\x6a\x08\x4b\x37\x06\x5d\x6d\xff\x0d\ -\x34\x6b\x32\xa3\xba\x46\x8a\x62\xe4\x40\xb3\x1f\x5c\xcf\xfc\xf1\ -\x00\x04\x1d\xdb\x09\xf4\x7f\xad\xb4\x4c\x64\x2e\x3f\xf5\x66\x3c\ -\x11\xf8\x2a\xf2\x89\x98\x89\x11\x23\x68\xda\x6d\x41\xb5\x6a\x97\ -\x61\xa8\x03\x07\x73\x3d\x63\x38\x58\x34\x01\xec\x9a\xb8\x0c\xc2\ -\x56\xcf\x1f\x23\x96\x81\x7e\x90\xf4\xc6\x1e\x35\x7a\x45\x50\x01\ -\x78\xa4\x97\xe1\xa7\x5d\x17\x3b\xb2\x23\xc5\x20\x0e\xd4\x74\x0b\ -\xe2\xe8\x51\x22\x28\x1d\x21\x3d\xfd\x60\x37\xa6\x7f\x11\xf4\x2d\ -\xb0\xed\x01\x5e\x04\x19\x44\x62\x9e\x09\x48\xab\x75\xe0\xcb\x84\ -\xc2\x5c\xe8\xb3\x22\xa5\xca\xd0\xa0\x85\xd1\xd7\xde\xa7\xe3\x3b\ -\x21\xc3\x38\x54\x33\x2e\x28\xc3\xdd\x81\x28\xda\xc2\x73\x43\xe9\ -\x12\x25\x4b\x47\x8c\x61\xde\x8e\x0b\x1f\xdf\x83\x82\xc8\x20\x12\ -\xb7\x74\xea\x49\xa1\x72\x8c\x4f\x98\xf2\x46\x07\x18\x60\xaa\x8d\ -\x6d\x22\xe5\xae\x26\xb4\x51\x94\x4a\x28\x19\xea\x3f\x27\x20\x46\ -\xc2\x0f\x5c\x3b\x20\x1a\x2f\x31\x62\x10\xf3\x3a\x52\x88\x7c\xba\ -\x0c\x44\x5f\x78\x1a\x43\x4e\xd6\x0c\x49\xe3\x43\x45\x34\x97\xa1\ -\x18\x09\x57\xc7\xfb\x92\x51\x1c\x30\xde\xc7\x2b\xd4\x50\x68\xf3\ -\xe7\xf8\x6c\x15\x07\x0d\xf8\xc1\xe6\xb1\x1d\xb8\x37\x6c\x19\x29\ -\x6b\x4b\xd1\x61\x86\x8e\x28\xa4\x0a\x54\x20\x59\x1a\x07\x2c\xcb\ -\xc0\xd3\x51\x60\xea\x86\x65\x91\xb2\xbe\x14\x0d\xa2\x74\x34\x5e\ -\x5a\x18\x87\xdc\x77\x38\x62\x10\xab\x6a\xd3\x5e\xa2\x0d\x86\x91\ -\xd6\x4f\x55\xe8\x0a\x0d\xd8\x32\xba\xfa\x4d\x22\xe5\x13\xf5\x51\ -\x18\x31\x8c\x75\xe9\x30\x3a\x23\x0e\x07\x1c\x0c\x24\x71\xe5\x29\ -\xbe\x64\xea\x1b\xa8\x5c\x1c\x71\x05\xb1\xa9\x3d\x45\xcf\x1b\xe1\ -\x81\x3f\x83\x17\x9f\xa2\xb7\x94\xf2\xc4\x9f\x81\xe0\xcb\x8b\xde\ -\x00\x6b\x88\x1f\x57\xe8\x96\x5b\xf5\x89\x02\xfe\x11\x63\x58\x94\ -\xbe\xa1\xb7\x61\x40\x93\x2b\x18\x44\xda\x10\x03\x2d\x89\x2d\x45\ -\xca\x43\x2b\xa8\x63\x0b\x34\x82\xd0\xf8\x1f\x86\x91\xb4\xe8\xad\ -\xeb\xe1\x69\xaa\xdc\x2b\xcc\x01\x45\xff\x52\x68\xd2\xa6\xbd\x8c\ -\x30\x64\x10\xe9\x4c\x61\x27\x53\xf0\x22\xa0\x7f\x3e\x07\x16\xe4\ -\x45\x8b\xe8\x4d\xde\x90\x30\x32\x8e\x94\x94\x70\x2f\x9d\x6a\xd8\ -\xa7\xa1\xcd\x96\xa2\x8d\x22\xa4\x4f\x19\x44\x3a\xa3\x28\x3b\x18\ -\xce\x05\x76\xcc\xe0\x20\x9f\xd2\x28\xfa\x1d\xf4\xc1\x74\xec\xa2\ -\x1f\xbb\x62\x18\x87\xe5\x11\xb1\x83\x0e\xc1\xde\x27\xec\xdc\x90\ -\x36\x21\x42\x5b\x46\x50\x1a\x9b\x2b\x19\x44\x22\x32\x18\x9d\x01\ -\x67\x26\x71\x60\x32\x18\x8d\x60\x2b\xf1\xc6\xed\xdc\x48\x69\x60\ -\xf4\xf0\x74\x28\xd4\x67\x0c\x49\xb9\x60\x34\x86\x10\x8d\xc8\x61\ -\x22\x2d\x17\x8c\x06\x11\x0a\x13\x19\x44\x5a\x2e\x18\x1d\x5b\x80\ -\xda\x94\x5b\xd4\xd2\xc5\x87\x68\x77\x06\x4a\xb9\x31\x82\x14\xa6\ -\x30\xa7\x81\x7b\x91\x40\x0e\x28\x88\x9b\x9f\xf4\x92\xf8\x66\x14\ -\x69\xd9\x60\x74\x8e\xe6\x34\x39\xc3\x31\x05\x35\x0d\x8c\xae\x8b\ -\x02\x6d\x21\xe3\x48\x98\x29\xed\xba\xca\x9b\x3d\x19\xb2\xec\x28\ -\xb6\x08\xa3\xa5\x3e\x19\x38\x0a\xbb\x67\x08\xdf\x5e\xb8\x09\x8e\ -\xe4\xc9\x09\x5f\x34\x8e\x4e\x79\x94\x71\x1c\x96\xf1\xed\x65\xbb\ -\x1a\xfb\x31\xb4\x8c\x2f\xb6\xc0\x1b\x94\x46\x1e\x3c\x43\xce\xf8\ -\xa2\xf3\xdc\xcc\x17\x0e\xe5\xdd\xe0\xd9\xc2\x48\xf8\xf9\x8a\x9c\ -\xe6\xb7\xeb\xa9\x5e\x04\x08\xde\xdd\xe5\xaf\x1f\x27\x82\x39\xe3\ -\x8b\x1e\xa3\x27\x21\x8e\x82\x12\xc3\x51\x4b\xa1\x61\x7c\xd1\x33\ -\x2c\x6b\x9d\x79\x0c\x21\x6d\x6b\x9a\x11\x43\x58\x10\xbe\xd8\xec\ -\x5a\x1e\xd1\x33\x7e\xc3\xed\xfb\x45\x4b\x21\xa4\x48\x9b\xea\x52\ -\x46\x91\x26\x3e\xc4\xe6\xd9\x9a\xf1\xcd\x0c\xe3\x50\xb4\x2f\x96\ -\xf5\x85\x7d\x1a\xb7\xc8\xc3\x39\x8c\x21\x09\xeb\x8b\x76\x4c\x21\ -\x41\x64\x10\x69\x49\x5f\x2c\xe1\x24\xdb\xad\x4b\x39\xac\x20\x1e\ -\x58\x82\xd6\xa5\xa0\x18\x32\x90\x84\xd9\x52\x6c\x68\x01\xa6\x69\ -\xd8\xa5\xa1\xcd\x95\x76\xab\x49\x19\x3d\x5a\x12\x18\x4b\x57\x34\ -\x7e\x0b\x87\xf8\x03\x92\xc0\xd8\x84\x77\x83\x18\xc3\x38\x28\x07\ -\x8c\x05\xb2\xe1\xed\x8f\x95\xaa\x5d\xee\xdf\x66\x20\x49\x38\xe0\ -\x7e\xa4\xb1\xf6\x57\x19\x44\x22\x0e\x18\xdb\x12\xe3\x5b\xc8\x9c\ -\x8e\xb8\x95\xb7\x69\x01\x8d\x1e\x1b\x34\x7c\x3b\x76\xa6\x82\x3b\ -\x18\x33\x0b\x36\x63\xe7\xa6\xfa\x84\x03\x67\x5c\x28\x52\x44\x0f\ -\xd4\xe3\xa1\x41\x94\x3e\xaa\x07\x7b\xa8\x97\x89\xa2\x12\xed\x92\ -\x0c\x46\x90\x6e\x13\x3e\x7e\x5c\x10\x24\x85\x52\x84\x9e\x0c\x3d\ -\x22\xf6\x62\xc4\x18\x16\x35\x19\xe0\x36\x7c\x9c\x14\x32\x82\xa4\ -\x55\x19\x11\xb8\xe7\xa9\x03\x9f\x86\x07\x77\x11\xe7\x6c\x3a\x90\ -\x45\x70\x1a\x22\x03\x49\x59\x99\xe1\xf4\x33\x5f\x36\x12\xca\xd5\ -\x0f\x8f\x51\xec\x5f\x1c\xf3\x1d\xf9\x78\x18\x21\x61\x64\x18\xe9\ -\xf9\x7d\xf4\xac\x60\x58\xad\x72\xcc\x4f\x98\x0a\xc7\x4f\xd1\x83\ -\xd3\x6f\x94\xb6\x71\xd4\xe9\xb7\x28\x0f\x37\x6c\x28\x13\xde\xc1\ -\xac\x60\x8e\xfc\x49\x73\x37\xca\x0a\xf0\xd3\x49\xa1\x61\xc1\x8c\ -\x23\x6d\xec\xd8\xc5\xf0\x6e\x70\x5c\x30\xc7\x1c\xc4\xc1\xa3\x82\ -\xeb\x89\x3b\x30\x91\xa1\x30\x17\x52\x75\x6c\x1f\x31\x94\xc6\xcf\ -\x31\x59\x00\x34\xd1\xa8\x84\x92\x5a\xb5\xb2\x44\x0e\x49\xfa\x1b\ -\x99\xec\x25\x2f\xc7\xf2\x48\xeb\xeb\x78\xda\x6b\x45\x3b\x3b\xa0\ -\xd7\x4a\x3b\xc2\x7b\xc4\x48\x16\xde\x4e\x2e\x9a\xbd\xe8\x56\x47\ -\x48\x4f\x3f\x88\x0a\xaa\x46\x0c\x64\x53\xde\x18\xf6\xe4\xb8\x32\ -\x94\xd4\xb5\x71\x2e\x9e\x48\xe6\xca\xaa\x41\x91\x04\x94\xaa\x3a\ -\x43\x4e\xfb\x32\xd2\x55\xa1\x17\xa8\x13\xe8\x5c\xa8\x31\x83\x12\ -\xbe\x1b\xf8\x92\xc4\xc5\x19\x37\x74\x56\x08\x24\xe4\xde\x0c\x1e\ -\x58\x5d\xcc\xe0\x91\x55\xe1\x00\x91\xe2\x9b\xb1\xf3\xe0\x56\xb5\ -\xa1\x8c\x6c\x92\xe6\x60\xa3\x86\xce\x14\xdf\x00\xfe\xcb\x9b\xc1\ -\x0b\xab\x6d\x18\x0c\xde\x30\xfb\xbe\x81\x80\xf0\xad\xe0\x29\x09\ -\x0f\x4c\x60\xad\x49\xc9\x0b\x63\xcc\x5e\x04\x75\xc7\x64\x00\x09\ -\xb7\x9b\x22\x0c\x9f\xb2\x81\xd9\x4f\xac\x3b\x49\xb7\x99\x02\x5c\ -\xfe\x9b\xe1\x73\x20\x9f\x93\xe1\x23\x72\x39\x31\x6a\x13\x0c\xf5\ -\x02\x11\x85\x76\xe4\xb2\xda\x24\x90\x3c\x4c\xb8\xf0\xca\xb6\x6e\ -\x06\x8f\xc8\xe6\x05\x18\xc9\x83\x62\x3d\xed\x86\xfa\x8e\x41\x8f\ -\xc1\x23\xb0\x79\x00\x15\x88\x0a\xf6\x18\x3d\xba\x2c\x0b\x22\xd6\ -\x83\xb3\x2c\xbe\x90\x9e\xa2\x19\x88\x30\x6a\xe8\x5c\x9c\xab\x09\ -\x67\x59\x18\x3c\x3a\xce\xd6\xc7\xe4\xc8\x40\x8f\x25\x12\x5a\x69\ -\x7a\x8a\x49\x21\x92\x34\x4b\xf7\x59\x16\xc6\x8f\x6e\x2f\x13\xc6\ -\x67\x01\x85\xcf\x15\x8e\xd6\x9c\x8c\x5d\xff\xb2\x07\x6e\xae\xc7\ -\x49\x1e\x83\x47\xc7\x2e\x00\x1b\x96\x70\xec\x02\x07\xea\xb4\xec\ -\x02\x26\xd3\x02\x4a\x1f\x03\x48\x56\x84\xdd\x79\x8a\x93\x7d\x16\ -\xc2\x92\xb2\xce\x89\x59\x46\x8f\x90\xd7\x43\xb8\x9c\x30\xaf\xc7\ -\xd1\x3a\x25\xaf\x67\x23\x2a\x01\x61\x62\x8f\xf1\xa3\xaa\xe1\x44\ -\xd9\x3d\x30\xcd\x19\x8a\x50\x2b\x4e\x87\x7d\x16\x02\xe1\x0b\xa0\ -\xcd\x7f\xb8\x44\x27\xc3\x47\x57\xc7\x89\x0a\xd7\x7f\xa9\xe3\x36\ -\xf3\x43\x14\x24\x03\x38\x71\x19\x1b\xf0\x31\x7e\x74\xd5\x9c\x18\ -\xe3\x07\x3b\x2e\xac\x3d\x89\xeb\x39\xbb\x8f\x1d\x18\x42\xca\x8a\ -\x4e\x68\x6b\x26\x36\xe9\xc9\x2a\x94\xb2\xa8\x13\xa5\x44\x5d\xc8\ -\x05\xa5\x44\xd0\xbc\x7a\xc4\x83\x0a\x8a\x7d\xb5\x80\x1b\x83\x1b\ -\xd1\xcb\xc3\x08\x49\xbb\x16\x7a\xe8\xd9\xae\x2d\x00\x9b\x29\x30\ -\x0c\x60\xff\x7e\x28\x58\xae\xd4\xc1\x14\x2d\x03\x2a\xe3\x47\xd4\ -\x6f\x12\x3d\x25\xbb\xad\x43\x19\x3d\x1a\xea\x08\xec\x69\xd7\x81\ -\xf4\xb1\x0d\xa4\x1d\x44\x88\x16\x40\x70\x9e\xab\x5d\x51\xbb\x8c\ -\x22\xcd\x24\x42\xb4\x2b\xd3\xde\xe1\xc7\xf8\x11\x4e\xae\xeb\x76\ -\x98\x6b\x50\xa4\x48\xa9\xd0\x1b\x75\x5b\x9e\x72\x2c\x08\xba\x51\ -\xaf\x12\x9e\x1d\xd9\xd1\x89\x10\x7a\x42\x85\x61\xc8\xad\xeb\x68\ -\xa2\xc1\x10\xdd\xf9\x5c\x9b\xc2\xc8\x77\x7c\xc7\x6b\x39\xa4\x7e\ -\x28\xdd\x90\xa8\x4b\xef\x88\x55\x69\x3e\xb3\x4e\xe1\xa7\x80\x72\ -\x50\x3f\xa8\x36\xf5\xf0\xc3\xb1\x21\x97\xd4\x17\x6e\xbe\x56\x44\ -\x13\x08\x46\x0c\x63\xd1\x3f\x12\xdc\xc5\x89\x0b\xed\xd9\x29\x25\ -\x4e\x70\x87\xf8\xb0\x02\x8c\xf1\x19\x48\xca\x19\x4b\xe0\xa4\xac\ -\x8b\x50\x6c\x06\x99\x1f\xa1\xe8\x15\xf3\x94\x1d\x92\x3e\x22\xa3\ -\x46\xb1\xf0\x4f\x7d\xbc\x30\x46\x42\x15\x26\x90\x61\x1c\x8c\xb3\ -\x00\x8b\xee\xf1\x63\xea\xd9\x4b\x25\xa7\x2e\x6c\xbc\xa3\x0a\x59\ -\x47\x46\x92\x96\xc6\xf0\xf1\x8e\x2a\x58\x53\xca\x4e\x0e\x29\x91\ -\x11\xe0\xa9\xc4\x13\xf7\x86\xe3\x45\x6a\x0a\x43\xe1\x1d\x9c\x50\ -\xc8\x33\x7d\xca\x40\xd2\x72\x19\x60\x79\xfe\x65\xe1\x46\x6b\x48\ -\xb6\x23\x38\x79\xda\xbb\x12\xcd\x67\x7e\x70\x31\xc6\xfb\x43\x2e\ -\x4f\x7b\x77\x50\x8c\xc8\xb5\x50\x43\x25\x69\x4c\xbe\x34\xc2\x87\ -\x85\x5c\x88\x31\x3c\x79\xd1\x81\x1c\x72\x21\xc6\x80\xac\x85\xdb\ -\x4f\x4c\xcf\x55\x6d\xd4\xd4\x85\x87\x17\xc4\x57\xba\x72\x31\x90\ -\x84\xd4\x05\x38\x83\x8e\x73\x6c\xef\x07\xc6\xb2\xb6\xc6\xef\x47\ -\x1c\x49\x71\x1c\xf5\xae\xb5\x82\xbc\xf0\xf1\x5e\x2a\xc4\x41\x71\ -\x98\x41\xc9\x5b\x80\xfb\xb7\x3b\x30\x8d\x0c\x22\x4d\x8a\x4d\x75\ -\x9f\xa7\xa1\xf4\x6a\x46\xad\x46\x0b\xca\xc9\xc6\x5b\x43\x50\x8d\ -\xb2\x73\x4a\x4a\x39\x75\x50\x91\x01\x11\x16\x1c\xf3\x93\x33\x4f\ -\x60\x1f\x4b\x7c\x89\x14\x23\x49\x4b\x3d\x49\xb4\x7b\x0a\xc2\x48\ -\xbc\x9f\x66\xc4\x30\xd6\x63\xae\x23\xe6\xa2\xde\x23\x7e\x0e\x3a\ -\x7d\xda\x44\xf4\x47\xd8\x29\xa7\x6a\xfa\xc5\x00\xf6\x2e\x80\xe0\ -\x84\xf9\xcb\x44\xcf\x06\x1a\x3b\x33\x86\x74\xce\x29\xbe\x16\x2a\ -\x12\x7e\xbe\x24\x27\x75\x18\x2a\x10\x81\x91\x4d\xee\x30\x44\xe2\ -\x98\x7a\x50\x97\xd2\xcb\x04\x51\x56\x80\x31\x8a\x43\x0d\x65\xc2\ -\x67\x4c\x41\x6d\xea\x09\x9f\xf1\x23\xe1\x12\x6d\x7c\x9b\xa1\x96\ -\x2b\xca\xe0\x11\x11\x16\x60\x9b\x4b\x3c\x7b\xc8\xae\x0c\x31\x67\ -\xa1\x3a\x6f\xb5\xc7\x10\x12\x66\x66\x6c\xb4\x0d\x84\xa3\x42\x56\ -\xa3\x34\x19\x99\x0e\xba\x0b\x81\x6a\x94\x0c\xbf\x11\xf7\x36\x89\ -\xf2\x5e\xb3\x80\xfa\xbc\xa8\xb3\x09\x98\x16\xd5\xf8\x29\x57\x3f\ -\x18\x44\x0a\x33\xe8\xc1\xb5\xa5\x97\xc1\xe8\x08\x19\x78\x81\xd7\ -\x56\xa3\x0c\x23\x59\x2d\x94\x6d\x62\x42\x24\x8c\x3a\x22\xb4\x43\ -\x37\x74\xdb\xf9\xb5\xc8\xb5\x03\x9a\x06\xec\xa3\x86\x31\xca\x2b\ -\xbd\x41\x0e\xff\x32\x18\x5d\xe1\x6a\x14\xc3\xb6\x51\x64\x69\x24\ -\x54\xaa\x26\x48\x44\x37\x6f\x0b\x84\xa3\xb5\x6a\xc0\xd6\x71\xc0\ -\x34\x4d\xd9\x5d\x01\x0b\x65\x28\x42\xa9\xa4\x52\xac\x5a\x07\xe4\ -\x7f\x2d\x70\x37\xd4\x65\xae\x8e\x14\x81\x32\x48\x0e\x08\xe4\x88\ -\xc3\xc6\xc8\x81\xa7\x6a\x5f\x14\x35\x36\x75\x17\x9c\xb9\x19\x6a\ -\x63\x29\xbe\x1b\x1f\x8c\x22\x93\x50\xb4\xdd\xf8\x1c\x74\x0e\x07\ -\xa6\x84\x39\x07\x47\xe7\xe0\x74\x50\x36\x0c\x12\xc2\x8c\x21\x0d\ -\x1d\xe5\xeb\xff\x7b\xe9\x6d\xca\x36\x91\x7c\x13\x4d\x17\x3b\x13\ -\x41\x61\x64\x28\x09\x4b\x86\xc1\x9e\xdf\x1d\x78\x37\xac\x51\xa9\ -\x62\x45\x85\xaf\xce\x00\x35\x2a\x23\x48\x16\xed\x7b\xa6\x09\xdf\ -\xfb\x76\x4e\x47\x9c\xb2\x29\x08\x46\x05\xd5\x2a\x76\x90\x44\xe5\ -\xcc\x1b\x31\xc5\xd8\x01\xc9\x08\x72\xc5\x0c\x24\x31\x3b\x15\x40\ -\x01\xff\x65\x12\x29\x85\xe7\x44\x4e\xc4\xb9\xf0\x81\xf9\x29\x70\ -\xc3\x7e\x07\x54\x23\x25\x94\xa3\xde\xf5\x1d\x59\x01\x6a\xe2\xba\ -\x76\x51\xc1\xb4\x4d\x64\xbb\x01\x89\x87\x33\x6a\xf4\x8c\x20\x2a\ -\xcc\xc0\x75\xe9\x03\xbb\xbc\x19\x3e\xca\x5d\x18\x11\x66\xdc\x3a\ -\x5c\xbd\xe8\x0a\x3b\xf0\x25\xcd\x78\xb6\x51\x03\x58\xa4\xbf\xc1\ -\x18\xf1\xcd\x08\x06\xc5\x94\x0b\x97\x11\x1c\x26\xd5\x06\x7a\xa3\ -\x6f\x46\x4f\x15\xe5\xdf\x8c\xde\x60\x69\x9a\x10\x8a\xef\xdf\x8c\ -\x5f\x04\xb9\x2f\x2d\xfc\xae\x66\xf7\x37\x1f\xae\x66\xfb\xaf\xfa\ -\xaf\xff\x03\xee\x2b\x64\x9e\ -\x00\x00\x0b\x1c\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x63\x6c\x61\x73\x73\ -\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\ -\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\ -\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ -\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\ -\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\ -\x39\x37\x39\x35\x31\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\x35\x34\x2e\ -\x30\x36\x30\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x37\x31\x2e\x36\x30\x37\x38\ -\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ -\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\ -\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\ -\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ -\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ -\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\x32\ -\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x66\x32\ -\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x36\x31\x33\x39\x36\x38\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x4d\x20\x31\x31\x2e\x31\x33\x39\x38\x35\x32\x2c\x31\x35\x2e\x34\ -\x30\x33\x31\x34\x32\x20\x48\x20\x31\x39\x20\x76\x20\x2d\x32\x2e\ -\x39\x39\x37\x33\x38\x20\x6c\x20\x36\x2e\x38\x37\x37\x36\x33\x2c\ -\x34\x2e\x37\x39\x35\x38\x31\x20\x4c\x20\x31\x39\x2c\x32\x31\x2e\ -\x39\x39\x37\x33\x38\x31\x20\x56\x20\x31\x39\x20\x68\x20\x2d\x37\ -\x2e\x38\x36\x30\x31\x34\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ -\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\ -\x30\x66\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ -\x20\x2d\x31\x38\x2e\x34\x30\x36\x32\x35\x2c\x2d\x31\x33\x20\x43\ -\x20\x2d\x31\x39\x2e\x32\x39\x37\x36\x30\x39\x2c\x2d\x31\x33\x20\ -\x2d\x32\x30\x2c\x2d\x31\x32\x2e\x34\x38\x30\x30\x31\x32\x20\x2d\ -\x32\x30\x2c\x2d\x31\x31\x2e\x38\x34\x33\x37\x35\x20\x76\x20\x34\ -\x37\x2e\x36\x38\x37\x35\x20\x43\x20\x2d\x32\x30\x2c\x33\x36\x2e\ -\x34\x38\x30\x30\x31\x32\x20\x2d\x31\x39\x2e\x32\x39\x37\x36\x30\ -\x39\x2c\x33\x37\x20\x2d\x31\x38\x2e\x34\x30\x36\x32\x35\x2c\x33\ -\x37\x20\x68\x20\x33\x36\x2e\x38\x31\x32\x35\x20\x43\x20\x31\x39\ -\x2e\x32\x39\x37\x36\x30\x39\x2c\x33\x37\x20\x32\x30\x2c\x33\x36\ -\x2e\x34\x38\x30\x30\x31\x32\x20\x32\x30\x2c\x33\x35\x2e\x38\x34\ -\x33\x37\x35\x20\x76\x20\x2d\x31\x2e\x39\x33\x37\x35\x20\x43\x20\ -\x31\x32\x2e\x36\x30\x30\x39\x31\x2c\x33\x30\x2e\x36\x33\x30\x36\ -\x30\x36\x20\x37\x2e\x35\x2c\x32\x33\x2e\x38\x34\x36\x35\x31\x37\ -\x20\x37\x2e\x35\x2c\x31\x36\x20\x37\x2e\x35\x2c\x38\x2e\x31\x35\ -\x33\x34\x38\x32\x38\x20\x31\x32\x2e\x36\x30\x30\x39\x31\x2c\x31\ -\x2e\x33\x36\x39\x33\x39\x34\x35\x20\x32\x30\x2c\x2d\x31\x2e\x39\ -\x30\x36\x32\x35\x20\x76\x20\x2d\x39\x2e\x39\x33\x37\x35\x20\x43\ -\x20\x32\x30\x2c\x2d\x31\x32\x2e\x34\x38\x30\x30\x31\x32\x20\x31\ -\x39\x2e\x32\x39\x37\x36\x30\x39\x2c\x2d\x31\x33\x20\x31\x38\x2e\ -\x34\x30\x36\x32\x35\x2c\x2d\x31\x33\x20\x5a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x39\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x31\ -\x00\ -\x00\x20\x5c\x78\x9c\xed\x59\xdd\x8f\xe3\xb8\x0d\x7f\x9f\xbf\xc2\ -\xf5\xbe\xec\xa2\x91\xac\x0f\xcb\x92\xbc\xc9\x1c\x8a\x2e\x0e\x38\ -\xa0\x7d\x69\xaf\xe8\xb3\x63\x2b\x19\x77\x1c\x3b\xb0\x9d\x49\xb2\ -\x7f\x7d\x29\xc7\x5f\x49\x9c\xd9\xd9\x36\x77\x0b\x1c\xc6\xc1\x20\ -\x23\x92\x92\x48\x8a\x3f\x92\x72\xe6\x3f\x1d\x36\x99\xf3\x62\xca\ -\x2a\x2d\xf2\x85\x4b\x31\x71\x1d\x93\xc7\x45\x92\xe6\xeb\x85\xfb\ -\xaf\x5f\x7f\x46\xca\x75\xaa\x3a\xca\x93\x28\x2b\x72\xb3\x70\xf3\ -\xc2\xfd\xe9\xf1\x61\xfe\x27\x84\x9c\xbf\x96\x26\xaa\x4d\xe2\xec\ -\xd3\xfa\xc9\xf9\x25\x7f\xae\xe2\x68\x6b\x9c\x8f\x4f\x75\xbd\x0d\ -\x3d\x6f\xbf\xdf\xe3\xb4\x25\xe2\xa2\x5c\x7b\x9f\x1c\x84\x1e\x1f\ -\x1e\xe6\xd5\xcb\xfa\xc1\x71\x1c\xd8\x37\xaf\xc2\x24\x5e\xb8\xed\ -\x84\xed\xae\xcc\x1a\xc1\x24\xf6\x4c\x66\x36\x26\xaf\x2b\x8f\x62\ -\xea\xb9\x83\x78\x3c\x88\xc7\x76\xf7\xf4\xc5\xc4\xc5\x66\x53\xe4\ -\x55\x33\x33\xaf\x3e\x8c\x84\xcb\x64\xd5\x4b\x5b\x6d\xf6\xbc\x11\ -\xa2\x5a\x6b\x8f\x30\x8f\x31\x04\x12\xa8\x3a\xe6\x75\x74\x40\xe7\ -\x53\x41\xc7\xa9\xa9\x8c\x10\xe2\x01\x6f\x90\x7c\x9b\x54\x58\x81\ -\x43\xb7\xf0\xd7\x8b\x77\x04\x5c\x15\xbb\x32\x36\x2b\x98\x67\x70\ -\x6e\x6a\xef\xcb\xaf\x5f\x7a\x26\x22\x38\xa9\x93\xd1\x32\x9d\x3f\ -\xcf\x76\x3d\x73\x72\x1e\x6d\x4c\xb5\x8d\x62\x53\x79\x1d\xbd\x99\ -\xbf\x4f\x93\xfa\x69\xe1\x72\x1f\x53\x0e\x8f\x68\x88\x4f\x26\x5d\ -\x3f\xd5\x97\xd4\x34\x59\xb8\xa0\x3d\xd3\xea\x34\x1e\x05\x07\x3d\ -\x09\xb4\x0b\x87\x3d\x87\x60\xcd\x30\x75\x4a\x2a\xb8\x3c\xc9\x74\ -\x26\x84\x49\x11\x5b\x9d\x40\x63\x93\x6d\x71\xe7\x95\x7e\x09\x73\ -\xd8\x16\x65\x8d\x0e\xc9\x16\x7c\x13\xc8\x49\xe6\xb1\x63\x3e\x02\ -\x77\x9e\x98\x55\x65\xa5\x4e\x8a\xda\x11\x68\x2a\x5d\xc7\x6b\xb8\ -\xfd\xbe\x76\xd3\xe4\x25\x35\xfb\x41\x76\x19\x55\x27\x67\x38\xce\ -\x36\x5a\x43\xe0\x64\x45\xb9\x70\x3f\xac\x9a\xa7\x65\x2c\x8b\x32\ -\x31\x65\xc7\x0a\x9a\xe7\x8c\x55\x80\x73\xd3\xfa\x78\x82\x4a\xbb\ -\x76\xa7\xaf\x5d\xb5\xe7\x93\x69\x7e\xf5\x14\x25\xc5\x7e\xe1\xb2\ -\x4b\xe6\xd7\xa2\xd8\xc0\x51\x60\x2d\x34\x61\x44\x5d\xb2\xe3\xc3\ -\xc2\x45\x8a\x60\x46\xa8\xef\x5f\x73\x61\x43\x0e\xa7\x20\x09\xa3\ -\xe2\x8a\xb9\x2b\x4b\x00\x13\xca\xa2\xa3\x01\xab\x9a\x2f\xda\x0a\ -\x55\x4f\xc5\x7e\x5d\x5a\xef\xd4\xe5\xce\x5c\xce\xb4\x1c\xb4\x5c\ -\x16\x87\x69\x36\x9c\xed\xce\xc2\x14\xed\xf2\xb4\x06\x28\x6c\x0f\ -\xe3\x55\x77\x69\x62\xaa\xe9\x89\xfb\x34\x07\x27\xa0\x36\x28\x29\ -\xef\x7d\x7c\x29\xd1\x45\xa8\xbc\x76\x48\x2b\x01\xaa\x5d\xf9\xb9\ -\x65\x1d\x6f\xb3\x36\xd1\x21\xdd\xa4\x5f\x0d\xd8\x4d\x2f\x45\xaa\ -\x3c\xda\xa2\x75\x56\x2c\xa3\xac\xd5\xfe\xb1\x91\x98\x9f\xb9\xe5\ -\x34\xc9\x71\xea\xa3\x85\xe3\xe1\x68\x69\x6e\x47\xb4\xfe\xb4\x04\ -\x2e\x03\xd1\x13\x8b\x32\x5d\xa7\xf9\x48\xdf\x8e\x74\x1c\x93\x2c\ -\x78\x21\xf7\x1e\x9a\x00\x6b\xc2\x4f\x5e\xf2\x8e\x63\x5e\x1b\xf7\ -\xde\x75\xe0\x37\xf4\x8d\xa9\xa3\x24\xaa\xa3\x01\x05\x1d\x85\x69\ -\x4d\x3a\xcb\x20\x0f\x86\xff\xf8\xf2\xf3\x63\xbb\xd1\x3c\x8e\xc3\ -\x7f\x17\xe5\x73\xb7\xaf\xe3\x58\x81\x68\x59\xec\xe0\x28\xdc\xc7\ -\x9e\x3c\x4f\xe2\x10\x32\xd7\x26\xaa\x1f\xd3\x0d\xc4\xb6\x4d\x7a\ -\x7f\x86\x4c\x35\xf7\x06\xc6\x99\xb0\x75\xd6\xb0\xe8\x69\xd9\xd2\ -\x9c\x52\xe0\x64\x1d\x48\xe2\x4d\x6a\x27\x79\xff\xac\xd3\x2c\xfb\ -\xc5\x6e\xd2\x5a\x3c\x5a\x34\xad\x33\x33\x10\xe7\x5e\xab\x7d\x6b\ -\x9b\x37\x32\x6e\xee\x75\xd6\x37\xa3\xf5\xe0\x95\x33\x50\xf4\x07\ -\x9d\x45\x4b\x03\x41\xf0\x37\xcb\x74\xae\xb8\xeb\xb2\xd8\x6d\x37\ -\x45\x62\xda\xe9\x9d\x37\xe3\xb4\x8c\xb3\xde\xce\xaa\x3e\x66\x20\ -\xd1\xa4\x94\xf0\x03\x69\x9e\xcf\x49\x5a\x6d\x61\x0e\x24\xf4\x2c\ -\xcd\xcd\xe7\x02\x32\xe9\x2a\x2b\xf6\xe1\x4b\x5a\xa5\xcb\xcc\x7c\ -\x6e\xbe\xd3\x0c\x6c\xef\x49\x2b\x70\x40\xf8\x61\x15\xd8\x4f\x33\ -\x40\x6d\xaa\x09\xe9\x69\x58\xee\x32\x13\xe6\x45\xfe\x15\x92\xd4\ -\xe7\xaa\x2e\x8b\x67\x63\xf7\x0b\x62\x9d\xb4\xc3\x13\xe0\x42\xd2\ -\x0d\xed\xde\x60\x49\xb8\xdc\xd5\xf5\x98\xf6\x9f\x22\xcd\x43\x70\ -\xbc\x29\x3b\x6a\x33\xc8\x00\x32\x75\xc8\xb1\xe8\xa8\x49\x04\xd9\ -\xac\x2c\xc1\x0e\xd8\xd6\x8c\xa9\xc5\x6a\x55\x99\x3a\x64\x58\x71\ -\xa6\x08\x15\xaa\x63\x0e\x3a\x6f\xa2\xf2\xd9\x94\xa7\x99\x26\x8f\ -\xc0\x44\xb4\x8c\xe2\x67\xeb\xd4\x3c\x09\xa3\x18\x52\xcb\x2e\x83\ -\xfe\xe2\x0c\x54\xdb\xa8\x7e\xe2\x4c\xe8\x9e\x68\xd3\x22\x95\x27\ -\x34\xa8\x81\x6a\x21\x12\xf4\xc3\xb2\x19\x75\x21\xd2\x1d\x7b\x0b\ -\x53\x4e\x28\x75\x2f\x0e\x6b\xf0\x1e\x59\x31\x76\xa5\x7b\x0f\x81\ -\xb9\xd5\x67\x08\xe8\x3e\x32\xea\x32\xca\x2b\x0b\x00\x14\x43\x7a\ -\x34\xa5\x4d\x45\x0c\x07\x4c\x69\xed\xbb\x6f\x91\xb7\xc9\x9e\x62\ -\x29\xb5\x1c\x1b\x3b\x2a\xab\xc5\xd6\xe4\x67\xb9\xf5\x8c\x6b\xf2\ -\xc4\x16\x20\x45\x85\x14\x5a\xa8\x29\x11\xe8\xe9\xca\x7a\x9c\x78\ -\x20\x95\x75\x5a\x2c\xdc\xb2\xa8\xc1\xf5\x1f\x03\x1f\xd6\x80\xf4\ -\x4c\x3f\x8d\xc4\x60\xe9\xbf\x3b\x5c\x60\x11\x28\x3a\x43\x0a\xfb\ -\x92\x2b\x46\x03\xe7\x2f\x0e\xe5\x58\x35\x59\x69\xd6\xfd\xa7\x1c\ -\x02\x1f\xea\x70\x0a\x85\xcb\xf7\xa5\x3f\xa3\xe0\x06\x5f\x30\x25\ -\xa7\x94\x2a\xed\xb9\x75\x53\x27\x05\x0e\x83\xc0\xe4\x0a\xf6\xe4\ -\x07\x9d\x26\x25\x60\x09\x06\xbe\x85\x3a\xca\xf9\xf8\x30\xba\xf0\ -\x82\x43\x47\x0c\x8d\xcf\xe9\xae\x10\x1e\x41\xe5\x32\xc0\x4e\xf0\ -\x14\x58\xfb\x52\x11\x2d\xff\x2f\x98\xfa\xdf\x01\x52\xad\x02\xc2\ -\x7d\x25\xef\x00\xd2\x91\xa3\x4f\x95\x31\x2a\xe3\x51\xc6\xbe\x00\ -\xcc\xef\x1c\xce\x08\x62\x19\x33\x9f\x11\x71\x15\xcf\x10\x33\x82\ -\x68\x2d\x69\x30\xd3\x98\x52\x48\x59\x82\x4e\x46\xb4\x6c\x23\x1a\ -\x51\x48\x6e\x92\x0b\xad\x66\x54\x43\x70\x2b\x41\xc4\xb7\x42\x7a\ -\x3a\xe6\xdf\x12\xd2\xbd\x4e\xb7\x22\x1a\x31\x86\xa1\xdb\x08\xb8\ -\xba\x1d\xd2\x14\xa9\xf7\xa0\xfe\xed\x83\xfa\xd5\x2a\x00\x57\x3a\ -\xa6\x89\x94\x94\xcb\x37\x17\x02\x06\x85\x00\x92\x95\xfc\x81\x85\ -\x00\xd0\x41\x7d\x50\x5b\x5f\x17\x02\xd0\x0e\x2a\xb2\x0c\x2c\x42\ -\x02\x00\x10\x7f\x15\x36\x4c\x61\x1e\x28\x2d\x66\x8c\x63\xa9\x85\ -\x3f\x9d\xe5\xef\x82\x99\x4e\x9f\x5b\x90\xa1\x0a\x16\x10\x9a\xbe\ -\x52\x03\x10\x7d\x07\xcc\x1f\xb0\x0a\x48\x86\x89\x20\x92\x5f\x57\ -\x01\x81\x39\x64\x51\xc5\xe4\x0c\x51\x1f\x73\x2d\x84\xd2\xaf\x36\ -\x36\x48\xdb\x4e\x82\x13\xa5\x66\xc8\x07\x68\x4b\xc6\xd5\x64\xdb\ -\x71\xa7\xd6\xa6\xd7\xea\x66\x21\x68\xaa\x91\xcf\xc5\xab\x75\xe0\ -\xbd\xbd\xf9\xf1\x95\x80\x61\xa1\x18\x3f\xef\x84\xbf\x75\x23\x20\ -\xd0\xd8\x4a\xfe\x03\x0b\x01\x12\x1c\xfb\x54\xfb\x94\x5d\x81\x87\ -\xc2\xf2\x70\x0f\x93\xd2\xe6\xf6\x00\x24\xd4\xeb\x1d\x54\x80\x7d\ -\x9f\x03\x0e\xc5\x8c\x43\x2d\xe0\x3a\xe0\x93\xdd\xcd\x7d\x8a\x41\ -\xaf\xd2\x4d\xdc\x70\xc8\x09\x5a\x6b\xc2\x5e\xad\x07\x88\xbd\x03\ -\xe7\x0f\x57\x11\x20\x2e\xb0\x60\x92\xca\x8b\x98\xde\x38\x14\x82\ -\x54\x0a\x4a\xf8\x0c\xd9\x86\xc5\x0f\xa0\x07\x77\xa2\xd7\xea\x01\ -\xe4\xe7\x80\x07\x0c\xda\x21\x82\x89\x56\x7c\xba\x65\xbf\x53\x35\ -\xe8\x75\xba\x79\xd1\xc5\x01\x51\x50\x0c\xf4\x37\xaa\x01\xd2\xef\ -\x61\x7d\xf7\xb0\x9e\x7b\xeb\xf6\x1f\x93\x65\xe9\xb6\xfa\x8d\x5e\ -\x09\x12\xc2\xb8\x1f\xbf\xfd\x95\xa0\x11\xf6\x73\x7e\x08\x14\xfa\ -\x1e\x21\x29\xf3\xf9\xef\x74\x0a\xe4\x0e\xce\xef\x02\x19\xee\xe0\ -\x0c\x0d\x6d\x7e\xd3\xdb\x07\x58\x69\xdf\x67\x23\x6a\xf3\x4a\x10\ -\x43\xbf\xcf\x46\xef\xe4\x2d\xcc\x24\xf6\x2d\xca\xc4\x20\x6b\xd1\ -\x19\xe0\xd3\x8f\x3f\x62\x38\xce\xe9\x53\xbc\x8e\xf2\x29\x07\xdb\ -\x1f\x6e\x18\xa1\x4a\xaa\xef\x77\xdb\xf0\xde\xf1\xd2\xf2\x00\x1a\ -\x3d\x14\x5c\x5a\x2e\x14\xe7\xa3\x77\x9a\xb7\x2d\x87\xab\x9b\xb6\ -\x8f\xb8\xb0\xdc\xb6\xc0\x94\xde\xb6\x7c\xb4\xbd\x40\xa3\x9f\x27\ -\xbe\xcf\x21\xf6\xc5\xab\xa0\x8a\xde\xc3\x21\xe3\x33\x7f\x8b\xe5\ -\x01\x66\xf6\xa1\xfe\x77\x5a\x3e\xaa\x1d\x9b\xa8\x2e\xd3\xc3\x47\ -\xc8\xf2\x24\xe0\x52\x28\x39\x23\xd8\x3a\x53\xea\xc0\xde\x1e\x66\ -\xc4\x7e\x3e\x4d\x1d\x99\x44\xe2\x7f\xf5\x19\x23\x0a\x6e\xcd\xec\ -\x8e\x2e\x03\xe7\x04\xa3\x9e\xe7\x74\xc9\x08\xb0\x75\xa4\x1f\x5c\ -\x44\x0b\xd4\x12\x39\xba\x79\x58\x97\x49\x0c\xa1\x46\x44\x40\xfb\ -\x1f\xa2\x20\xe7\xcd\xed\x0f\x41\x8f\x0f\xff\x05\xb6\x74\x74\x2d\ -\ -\x00\x00\x12\x12\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x5f\ -\x70\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x2e\x73\x76\x67\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\ -\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\ -\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x33\x37\x2e\x31\x36\x36\x36\x37\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x2e\ -\x33\x35\x36\x32\x36\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ -\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ -\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ -\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\ -\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x6f\x63\x6b\x67\x75\x69\x64\x65\ -\x73\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ -\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ -\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\ -\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\ -\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x30\x66\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x66\x32\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x30\x2e\x36\x31\x33\x39\x36\x38\x38\x35\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ -\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x4d\x20\x2d\x31\x39\x2e\x30\x33\x31\x32\x34\ -\x2c\x32\x32\x2e\x31\x30\x32\x37\x20\x39\x2c\x32\x32\x20\x39\x2e\ -\x36\x35\x35\x30\x30\x34\x35\x2c\x33\x31\x2e\x37\x33\x34\x32\x36\ -\x37\x20\x33\x33\x2e\x31\x33\x34\x33\x33\x36\x2c\x31\x36\x2e\x30\ -\x36\x39\x35\x36\x34\x20\x37\x2e\x35\x35\x38\x39\x39\x31\x38\x2c\ -\x30\x2e\x35\x38\x34\x35\x38\x36\x32\x20\x38\x2e\x32\x31\x33\x39\ -\x39\x36\x35\x2c\x31\x30\x2e\x33\x31\x38\x38\x35\x37\x20\x2d\x31\ -\x39\x2e\x38\x31\x37\x32\x34\x35\x2c\x31\x30\x2e\x34\x32\x31\x35\ -\x36\x32\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ -\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\x31\x63\x38\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\ -\x32\x30\x32\x35\x33\x32\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x38\ -\x2e\x30\x32\x39\x32\x31\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x2e\x33\x35\x36\x38\x37\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x35\x30\x2e\ -\x38\x38\x32\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x34\x30\x2e\x34\x39\x35\x32\x33\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ -\x34\x33\x37\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x39\x33\x39\x32\x33\x38\ -\x35\x2c\x30\x2e\x34\x34\x38\x32\x31\x38\x38\x37\x2c\x30\x2c\x30\ -\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\ -\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x32\x34\x32\ -\x31\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\ -\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\x32\x32\x2e\x37\x31\x39\x32\ -\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ -\x38\x35\x32\x36\x32\x39\x31\x34\x2c\x30\x2e\x35\x32\x32\x35\x31\ -\x36\x35\x35\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x32\x2e\x35\x38\x33\x30\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\ -\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\ -\x2e\x35\x37\x31\x34\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x34\x30\x2e\x38\x31\x32\x36\x31\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x2e\x36\ -\x36\x34\x37\x35\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\x39\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x32\x31\x34\x34\x37\x38\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x35\x66\x35\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ -\x30\x33\x37\x35\x35\x35\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\ -\x2d\x32\x2e\x34\x38\x38\x31\x36\x35\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\ -\x32\x30\x2e\x38\x35\x39\x31\x36\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x31\x31\ -\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x30\x2e\x39\x37\x39\x32\x36\x36\x34\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ -\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ -\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\x39\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x2e\x30\x31\ -\x36\x33\x39\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x33\x33\x2e\x33\x30\x35\x34\x38\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x32\x32\x2e\x39\x31\x35\x32\x30\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\ -\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x32\x2e\x37\x35\x33\x34\x30\x34\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x30\x39\ -\x38\x39\x37\x37\x32\x2c\x30\x2e\x35\x38\x36\x35\x37\x31\x31\x32\ -\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x2d\x63\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x38\ -\x38\x31\x36\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\x31\x38\x2e\x36\x34\ -\x33\x30\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\ -\x30\x2e\x37\x38\x38\x35\x31\x35\x36\x34\x2c\x30\x2e\x36\x31\x35\ -\x30\x31\x34\x37\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x34\x36\x39\x30\x34\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\ -\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ -\x22\x31\x37\x2e\x37\x33\x37\x33\x32\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x3d\x22\x32\x38\x2e\x36\x36\x38\x37\x31\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x37\x2e\x32\x30\x36\x36\x35\x35\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\ -\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x63\x63\ -\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\ -\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x30\x2e\x39\x35\x36\x33\x35\x33\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\ -\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x32\x34\x32\x31\x37\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\ -\x72\x2d\x79\x3d\x22\x31\x36\x2e\x32\x36\x38\x36\x36\x39\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x14\xeb\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6f\x6d\x5f\x74\x6f\ -\x5f\x49\x6d\x61\x67\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x37\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ -\x30\x66\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\ -\x30\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x62\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\ -\x30\x33\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\ -\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\ -\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\ -\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x31\x34\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\ -\x32\x34\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\ -\x38\x2c\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\ -\x35\x38\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\ -\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\ -\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x32\x2e\ -\x37\x39\x39\x34\x35\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x34\x2e\x37\ -\x33\x33\x32\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x30\x2e\x36\x36\x31\x37\ -\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ -\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\ -\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\ -\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ -\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\ -\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ -\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ -\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ -\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ -\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ -\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ -\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ -\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ -\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ -\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ -\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x30\x2e\x36\x33\x36\x33\x36\x33\x34\x2c\x30\x2c\ -\x30\x2c\x30\x2e\x35\x34\x32\x34\x35\x31\x33\x35\x2c\x38\x2e\x37\ -\x31\x34\x36\x36\x38\x37\x2c\x34\x2e\x39\x35\x35\x32\x35\x37\x32\ -\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\ -\x2c\x30\x2e\x35\x33\x36\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\ -\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\ -\x2e\x34\x35\x31\x31\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\ -\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x38\x33\x37\x30\x35\ -\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\ -\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x33\x37\x36\x37\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x35\x2e\x39\x38\ -\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x32\x37\x2e\x37\x39\x39\x37\x36\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\ -\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\ -\x38\x39\x33\x37\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\ -\x39\x38\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\x35\x30\ -\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\x30\x2c\ -\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\ -\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x78\x3d\x22\x32\x33\x2e\x33\x32\x30\x36\x32\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ -\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\ -\x39\x37\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x63\x63\x63\ -\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ -\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\ -\x36\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x31\x33\x2e\x38\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x34\x2e\x30\x34\x30\x31\x33\ -\x38\x34\x65\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\ -\x31\x31\x37\x36\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\ -\x35\x32\x2c\x30\x2e\x37\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\ -\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\x38\x34\x30\x39\x33\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x39\x2e\ -\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x34\x38\x34\x34\ -\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\ -\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x32\x32\x30\ -\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\ -\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x30\x35\x31\x33\ -\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\x2e\x32\x35\x37\x38\ -\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x31\ -\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\x35\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x32\x30\x33\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\x39\x2e\ -\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\x33\ -\x00\ -\x00\x4e\xa2\x78\x9c\xe5\x5c\xdd\x8f\xa3\x36\x10\x7f\xdf\xbf\x82\ -\xb2\x2f\xad\x2a\x9b\xcf\x24\xc0\x25\xb9\x87\xae\x4e\x3a\xa9\x4f\ -\xed\x55\x7d\x3c\x11\x70\x12\x6b\x01\x47\x86\x6c\x92\xfb\xeb\x3b\ -\xe6\x2b\x21\x61\xa5\x56\x06\x89\xad\x59\x9d\x56\xcc\x8c\x8d\xfd\ -\xe3\x37\xb6\x67\x86\xbd\xe5\xe7\x73\x9a\x68\x6f\x84\xe7\x94\x65\ -\x2b\xdd\xc2\xa6\xae\x91\x2c\x62\x31\xcd\x76\x2b\xfd\xaf\x6f\x5f\ -\x90\xa7\x6b\x79\x11\x66\x71\x98\xb0\x8c\xac\xf4\x8c\xe9\x9f\xd7\ -\x4f\xcb\x9f\x10\xd2\x7e\xe3\x24\x2c\x48\xac\x9d\x68\xb1\xd7\xbe\ -\x66\xaf\x79\x14\x1e\x88\xf6\xf3\xbe\x28\x0e\x81\x61\x9c\x4e\x27\ -\x4c\x6b\x21\x66\x7c\x67\xfc\xa2\x21\xb4\x7e\x7a\x5a\xe6\x6f\xbb\ -\x27\x4d\xd3\xe0\xb9\x59\x1e\xc4\xd1\x4a\xaf\x1b\x1c\x8e\x3c\x29\ -\x0d\xe3\xc8\x20\x09\x49\x49\x56\xe4\x86\x85\x2d\x43\xbf\x9a\x47\ -\x57\xf3\x48\x3c\x9d\xbe\x91\x88\xa5\x29\xcb\xf2\xb2\x65\x96\x3f\ -\xdf\x18\xf3\x78\xdb\x5a\x8b\xd1\x9c\x9c\xd2\xc8\xf2\x7d\xdf\x30\ -\x6d\xc3\xb6\x11\x58\xa0\xfc\x92\x15\xe1\x19\x75\x9b\xc2\x18\xfb\ -\x9a\xda\xa6\x69\x1a\xa0\xbb\x5a\xfe\x3b\xab\x20\x07\x40\x0f\xf0\ -\xaf\x35\x6f\x04\x38\x67\x47\x1e\x91\x2d\xb4\x23\x38\x23\x85\xf1\ -\xf2\xed\xa5\x55\x22\x13\xc7\x45\x7c\xd3\x4d\x83\x67\xe7\xa9\x1d\ -\x90\xb3\x30\x25\xf9\x21\x8c\x48\x6e\x34\xf2\xb2\xfd\x89\xc6\xc5\ -\x7e\xa5\x3b\x2e\xb6\x1c\xb8\x66\xa5\x70\x4f\xe8\x6e\x5f\xdc\x4b\ -\x69\xbc\xd2\x61\xf4\xb6\xef\x55\xf7\x37\xe4\xb0\x2a\x83\xba\xe3\ -\xa0\xd5\x98\xd8\xb7\xb1\xa5\x71\x6b\xe6\x2c\x2a\x9b\x66\x0a\x41\ -\xcc\x22\x31\x26\xe8\x92\xa4\x34\x3c\x16\x2c\x85\xb7\x16\x45\x49\ -\x98\xe7\x74\x4b\x23\xb8\x61\xd9\x21\x39\xee\x68\xf6\xbd\x2b\xfc\ -\x9e\x53\xf2\x46\x70\x83\x63\xfb\x50\x72\x3e\x30\x5e\xa0\x73\x7c\ -\x00\x34\xe7\x8b\x5e\xe5\xa5\x51\xae\x41\xbb\x8c\xc9\x36\x17\x56\ -\xd5\xd4\xc4\x1d\xcc\x6d\xa1\x6b\x46\xa9\x6d\x47\x2a\x86\x19\xbf\ -\x51\x72\xba\xda\x6e\xc2\xbc\x82\x4f\xd3\x0e\xe1\x0e\xa8\x96\x30\ -\xbe\xd2\x9f\xb7\xe5\x55\x2b\x36\x8c\xc7\x84\x37\xaa\x79\x79\x75\ -\x54\x0c\x5e\x07\x2d\x2e\x95\x73\xd5\x7d\x37\xe3\x15\xbd\xb6\x7a\ -\xb3\x5f\x9f\xef\xc3\x98\x9d\x56\xba\x7d\xaf\xfc\xc1\x58\xba\xd2\ -\x67\x78\xe6\x7b\xbe\x69\xdd\x6b\xa3\xf3\x4a\x47\xb3\x05\xf6\x7c\ -\xd7\xf7\x1f\xb5\xf0\x3c\xd7\xc6\xee\xc2\xb4\xe7\x8f\xca\x23\xe7\ -\xe0\x7d\x28\x09\x2f\x04\x26\x55\xfe\x6a\x8c\xf2\x3d\x3b\xed\xb8\ -\x00\xa7\xe0\x47\x72\xdf\x52\x68\xd0\x66\xc3\xce\xfd\x6a\x20\xc3\ -\x51\xf8\x35\x3a\x66\xb4\x00\xdf\x39\x9c\x6f\x7b\x3d\xd2\x98\xe4\ -\xfd\x0d\xf3\x2c\x3c\xa0\x5d\xc2\x36\x61\xd2\x6f\x70\xa2\x19\x80\ -\x84\x6a\x9a\x5b\x4e\xfb\x0e\xee\x2d\x1a\xce\x2f\x4c\xef\x1d\x0b\ -\x18\xfb\xc3\x7b\xa8\x55\x97\xf7\x55\x69\x78\xa6\x29\xfd\x41\x00\ -\x18\xab\xa4\x1d\x50\xab\x03\x4b\xd5\x4c\xd3\x8a\x8b\xf0\xdf\xf3\ -\x45\xc8\xf4\x46\x28\xf0\x14\x02\xdb\xf7\x17\xad\x90\x71\x0a\x6e\ -\x71\x33\x9c\x46\x74\xb9\x15\x09\x6f\x87\xc5\xfa\x5c\xf2\xab\x64\ -\xdf\xe2\x5e\x77\xb9\xd5\xd5\xb4\x37\x1e\x79\x5f\xca\x53\x52\x84\ -\x71\x58\x84\x57\x27\x68\x24\x30\x36\xb3\x99\x19\x2c\x9c\xc1\x1f\ -\x2f\x5f\xd6\xf5\x83\x96\x51\x14\xfc\xcd\xf8\x6b\xf3\x5c\x4d\x13\ -\x06\xe1\x86\x1d\x01\x69\x7d\xdd\x8a\x97\x71\x14\xc0\x52\x07\x4b\ -\xc0\x9a\xa6\x40\x6d\xb1\x4a\xfe\x0a\x4b\xdb\xd2\xb8\x2a\x3a\xc6\ -\x02\xac\x6b\xa7\x55\xb7\x9c\x54\x6b\x66\xef\xc6\x11\x47\x29\x15\ -\x8d\x8c\x3f\x0b\x9a\x24\x5f\xc5\x43\xea\x19\xdf\x74\x4a\x8b\x84\ -\x5c\x85\x4b\xa3\x1e\x7d\x3d\x37\xe3\x66\x72\x4b\xa3\x99\x7d\x79\ -\xb7\xbb\xa2\xd2\x71\x8a\xf6\x45\x27\xe1\x86\x00\x43\x7f\x17\x4a\ -\xed\x41\xbb\xe3\xec\x78\x48\x59\x4c\xea\xe6\x2d\x9a\x24\x2a\xda\ -\x57\x56\x5c\x12\xd0\x6f\x61\xf4\xc1\xb3\x69\xba\xfe\xc6\xfe\x24\ -\x6e\x50\xbd\x4c\x04\x56\x75\xcb\x8f\x09\x2c\x77\x6f\x24\x63\x71\ -\xfc\x29\x2f\x38\x7b\x25\xc2\x5e\x5c\xf5\x6d\xe5\x0c\x81\x89\x5d\ -\xc7\x77\xc5\xbb\x6f\xe4\x80\x10\xe1\x09\xb0\xb5\x08\xdc\x46\x16\ -\x87\xb0\xcc\x70\x1e\x5e\x82\x0c\xb6\xf9\x46\xda\x3e\xb3\x43\x54\ -\x31\xdc\x99\xe7\xf8\xc8\x42\x5e\xab\xa8\x3d\x6f\x86\x1d\xe7\xba\ -\x95\x88\xab\x71\x38\x17\xfb\xa5\xc6\x6d\x35\x82\xb2\x26\xbe\xa3\ -\x2c\x70\xd5\xc1\x5e\x67\x19\x85\xd7\xde\x71\x02\x5e\xf2\x79\xee\ -\x8a\x6b\xde\xbe\xdd\xf7\x51\xdc\x38\xe2\x67\xca\x28\x22\x6b\x0c\ -\x1c\xd1\xe3\x82\x20\x07\xe4\xf4\xe9\x88\xfc\x31\x80\xb4\x1c\xbc\ -\xe8\x5a\xca\xe1\x28\x4e\x0f\x80\xcb\x94\x71\xb4\xd0\x6c\x0c\x24\ -\x3d\xec\x95\x73\xb1\xd5\x41\x72\x31\x06\x8e\xb6\x83\x87\x5a\x1d\ -\x3f\x80\x53\x03\x19\x47\x61\xa3\xe5\x61\xd5\x36\x1a\x7f\x1c\x3e\ -\x3a\x0e\x76\x15\xdb\x69\x80\x94\xc8\x1c\xc5\xb7\x3d\x3c\x2b\x4d\ -\x95\x60\xa5\x24\x82\x66\x87\x85\x03\x1f\x1c\xa7\xce\x42\x49\xec\ -\x1e\xcd\x55\x3c\x7c\xbb\x63\xa0\x38\xf8\xd1\x7b\xe2\x30\xca\xc6\ -\x81\x1d\x37\x1e\xfa\xb8\x3d\x75\x37\x46\x9e\x2c\x7c\xbd\x1c\x1c\ -\x1a\xc6\x89\x53\xd0\x94\xf6\xe4\x0e\x09\x87\x8e\x54\x26\x4f\x42\ -\x17\xd9\x63\xb0\x70\x68\x1c\xa7\xce\x42\x67\x48\x12\xaa\x14\xe6\ -\xcd\xc7\x60\xdf\x80\x00\x4e\x9d\x78\xd2\x81\x5d\x77\x0f\x1e\x38\ -\x34\x9e\x3c\xfd\xdc\x71\x08\xa8\x5e\x8a\x41\x3e\x99\xdd\x1f\x97\ -\x0c\x9c\x61\x98\x38\x90\x70\x9a\x91\xc6\xb1\xbb\x95\x0c\x9c\x55\ -\xf8\x00\x0e\x6d\x4b\x2f\x89\xfd\x7b\x8a\x52\xf9\x99\x8a\x89\xc3\ -\x9e\xad\x55\xf4\x65\xe9\xd3\x75\x07\x41\xd5\xf2\x0b\x22\xe1\xea\ -\xca\x72\xd0\x9e\xdf\xef\xc5\x65\xbe\x6b\xe1\x28\xe4\xcd\x55\xe6\ -\x5a\x76\x5d\xec\x45\x12\x38\xa9\x48\x90\x57\x15\x52\x64\x93\xff\ -\xbd\x20\x5a\xca\x04\x2c\x4d\x0d\x45\xb6\xb2\xd7\x0b\xa3\x77\x5f\ -\x57\xf9\x9f\x1f\x76\x3c\xb4\x90\xde\x60\x7a\x81\xb4\x95\x2c\xec\ -\xcd\x90\x29\x1b\x0d\xf6\x7b\xb7\x5a\x47\xc7\xba\xe0\x3c\x0e\x33\ -\xe1\x10\x59\x5a\x2a\x93\xa0\xad\x4b\xce\xd2\x47\xf1\x7e\x3f\xf7\ -\xb0\x22\xe5\x16\xe9\xef\x1f\xd4\x3e\x3e\x4a\xfb\xb2\x85\xef\x84\ -\x2a\xa2\xe8\x22\x5b\xb6\xe6\xd7\x0b\xe4\x80\x67\xf0\x89\xbb\xb1\ -\x87\x64\x2b\x2d\x96\xba\x07\x6f\x79\xf0\x7a\xd9\x37\x20\x86\x13\ -\x67\x5f\x99\xd2\x71\xa5\xbf\x7e\x1f\x33\x66\x99\x3c\x0b\x45\x82\ -\x76\x94\x45\x50\xad\xe0\xcf\x74\x06\x3e\xd2\x0c\x1d\xf2\x4d\xfe\ -\x1b\xed\xb9\x7c\x0e\xa2\x8f\x86\x8a\x85\xce\x26\x04\x7a\xc3\x2e\ -\x88\x43\x47\xcb\x13\x07\xb0\xac\x41\x23\x47\xb6\xea\xd7\xbf\x33\ -\x2b\x97\x78\x10\xd1\xb2\x2f\x9d\xa2\xed\x0d\x56\xd4\x4a\x3c\x54\ -\xd5\x2b\x6f\xd8\xd3\xb6\x3a\xe9\x86\xba\x10\x2d\x5d\xcc\xef\xdf\ -\x62\x86\x83\x71\xe2\x1e\x5d\x57\xa1\xe5\xff\x2a\x6d\xd4\x1c\xe2\ -\x87\x00\xd1\x46\xbe\x6c\x72\xdb\x52\xb8\xf0\xe7\xca\x7f\x28\x7b\ -\xc3\x37\x15\x93\x5f\x65\x05\x5a\xfa\x73\xbb\x2e\x88\x6a\x71\x50\ -\xb8\xb2\xec\x59\xbb\x8b\x9f\x52\xe9\xaf\xaa\xee\x2c\xbd\x25\x77\ -\x11\x54\x2d\x7d\x53\x96\x9c\xa5\x53\x0f\x5d\x0c\x87\x0e\x99\x3f\ -\x00\x88\x75\xb5\x79\xe0\x3d\x45\xbd\x78\xaf\x2a\x34\x4b\xe7\xb5\ -\xef\xb6\x66\xb5\xce\x87\x37\x35\x66\xe9\x2a\xf3\x9d\x63\xff\xb7\ -\x40\x65\x69\xec\xd6\x4f\x4b\xf1\xbf\x03\xad\x9f\xfe\x01\xed\x59\ -\x64\x2c\ -\x00\x00\x0f\xa4\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x61\x76\x65\x5f\ -\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x2d\x31\x32\x2e\x33\x36\x33\x34\x35\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x31\x31\x2e\x38\x35\x32\x34\x35\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ -\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\ -\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\ -\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ -\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ -\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x61\x61\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x37\x38\x39\x33\x33\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\ -\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ -\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x38\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x37\x35\ -\x37\x30\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x31\x2e\x39\x30\x32\x34\x33\x39\x32\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\ -\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\ -\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x30\x2e\x39\x34\x32\x35\x30\x35\x35\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x2e\x38\ -\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x31\x33\x2e\x38\x36\x36\x36\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x39\x2e\x32\x30\ -\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x31\x39\x2e\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x30\x39\x38\x32\x36\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\x36\x34\ -\x38\x37\x38\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\ -\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x62\x33\x62\x33\x62\x33\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\ -\x31\x39\x37\x32\x32\x37\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\ -\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\ -\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ -\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ -\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x65\x63\x74\x33\x37\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x33\x2e\x38\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x33\x2e\x30\x36\x33\x34\ -\x33\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x32\x2e\x30\x36\x30\x39\x37\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ -\x20\x36\x2e\x37\x39\x34\x36\x33\x34\x37\x2c\x34\x2e\x32\x31\x35\ -\x33\x37\x34\x39\x20\x32\x37\x2e\x37\x33\x33\x33\x33\x33\x2c\x34\ -\x2e\x32\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x2e\x37\ -\x39\x34\x36\x33\x34\x37\x2c\x37\x2e\x34\x31\x35\x33\x37\x34\x39\ -\x20\x32\x37\x2e\x37\x33\x33\x33\x33\x33\x2c\x37\x2e\x34\x36\x36\ -\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x37\x35\x38\x2d\x33\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ -\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x37\x39\x34\ -\x36\x33\x34\x37\x2c\x31\x30\x2e\x36\x31\x35\x33\x37\x35\x20\x32\ -\x30\x2e\x39\x33\x38\x36\x39\x38\x33\x2c\x30\x2e\x30\x35\x31\x32\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x37\x35\x38\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x12\x20\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x34\x20\x28\x35\x64\x61\ -\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\x31\x39\x2d\x30\x31\ -\x2d\x31\x34\x29\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\ -\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\ -\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x75\x6e\x64\ -\x6f\x5f\x73\x61\x76\x65\x5f\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ -\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ -\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ -\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x34\x2e\x35\x34\x38\x38\x30\ -\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x31\x36\x2e\x31\x30\x34\x39\x38\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ -\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x37\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ -\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ -\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ -\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ -\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ -\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ -\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ -\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ -\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ -\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ -\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ -\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\x34\ -\x37\x35\x31\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x33\x32\x35\x36\x36\x65\x2d\ -\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x35\ -\x2e\x32\x31\x30\x36\x34\x36\x38\x65\x2d\x31\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\x34\ -\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ -\x2e\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\ -\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\ -\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\ -\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ -\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\ -\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\ -\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\ -\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\ -\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\ -\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\ -\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\ -\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\ -\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\ -\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\ -\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\ -\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\ -\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\ -\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\ -\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\ -\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\ -\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ -\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\x32\ -\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\ -\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ -\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x4d\x20\x33\x30\x2e\x34\x30\x36\x39\x35\x34\ -\x2c\x31\x31\x2e\x36\x39\x35\x31\x30\x38\x20\x43\x20\x32\x36\x2e\ -\x30\x30\x34\x31\x39\x38\x2c\x33\x2e\x33\x31\x30\x30\x37\x35\x38\ -\x20\x31\x39\x2e\x33\x36\x39\x31\x35\x38\x2c\x34\x2e\x35\x32\x38\ -\x36\x37\x30\x31\x20\x31\x30\x2e\x36\x36\x36\x36\x36\x37\x2c\x37\ -\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x4c\x20\x38\x2e\x36\x36\x36\ -\x30\x31\x30\x37\x2c\x31\x2e\x39\x34\x31\x30\x36\x32\x34\x20\x32\ -\x2e\x32\x30\x39\x35\x30\x37\x36\x2c\x31\x35\x2e\x39\x30\x32\x37\ -\x20\x33\x2e\x36\x32\x39\x36\x31\x36\x31\x2c\x31\x36\x2e\x34\x39\ -\x37\x36\x33\x35\x20\x31\x36\x2e\x39\x32\x37\x34\x35\x32\x2c\x31\ -\x37\x2e\x30\x36\x38\x36\x35\x31\x20\x31\x33\x2e\x36\x31\x35\x35\ -\x36\x39\x2c\x31\x31\x2e\x35\x31\x34\x35\x34\x38\x20\x63\x20\x35\ -\x2e\x38\x30\x33\x39\x39\x39\x2c\x2d\x31\x2e\x32\x38\x36\x31\x30\ -\x35\x20\x31\x31\x2e\x36\x30\x39\x39\x34\x38\x2c\x2d\x32\x2e\x35\ -\x39\x31\x38\x30\x38\x38\x20\x31\x34\x2e\x33\x38\x34\x32\x36\x34\ -\x2c\x32\x2e\x36\x39\x31\x38\x36\x36\x20\x32\x2e\x35\x32\x34\x36\ -\x31\x33\x2c\x32\x2e\x32\x38\x32\x34\x32\x38\x20\x33\x2e\x39\x39\ -\x32\x33\x38\x34\x2c\x31\x2e\x37\x33\x34\x33\x39\x32\x20\x32\x2e\ -\x34\x30\x37\x31\x32\x36\x2c\x2d\x32\x2e\x35\x31\x31\x33\x20\x7a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x32\x39\x38\x38\x2d\x37\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ -\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\ -\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ -\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ -\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\ -\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\ -\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ -\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ -\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\ -\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\ -\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\ -\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\ -\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\ -\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\ -\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\ -\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\ -\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\ -\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\ -\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\ -\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\ -\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\ -\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\ -\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ -\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\ -\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\x32\x3b\ -\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\ -\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ -\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x33\x30\x2e\x30\x39\x32\x30\x33\x36\x2c\ -\x39\x2e\x33\x38\x30\x39\x31\x34\x31\x20\x43\x20\x32\x35\x2e\x36\ -\x38\x39\x32\x38\x32\x2c\x30\x2e\x39\x39\x35\x38\x38\x31\x30\x37\ -\x20\x31\x39\x2e\x30\x35\x34\x32\x34\x31\x2c\x32\x2e\x32\x31\x34\ -\x34\x37\x35\x36\x20\x31\x30\x2e\x33\x35\x31\x37\x34\x39\x2c\x35\ -\x2e\x31\x35\x32\x34\x37\x32\x32\x20\x4c\x20\x38\x2e\x33\x35\x31\ -\x30\x39\x33\x33\x2c\x2d\x30\x2e\x33\x37\x33\x31\x33\x32\x36\x39\ -\x20\x31\x2e\x38\x39\x34\x35\x39\x30\x32\x2c\x31\x33\x2e\x35\x38\ -\x38\x35\x30\x35\x20\x33\x2e\x33\x31\x34\x37\x30\x31\x31\x2c\x31\ -\x34\x2e\x31\x38\x33\x34\x34\x32\x20\x31\x36\x2e\x36\x31\x32\x35\ -\x33\x34\x2c\x31\x34\x2e\x37\x35\x34\x34\x35\x38\x20\x31\x33\x2e\ -\x33\x30\x30\x36\x35\x32\x2c\x39\x2e\x32\x30\x30\x33\x35\x34\x31\ -\x20\x63\x20\x35\x2e\x38\x30\x33\x39\x39\x39\x2c\x2d\x31\x2e\x32\ -\x38\x36\x31\x30\x34\x35\x20\x31\x31\x2e\x36\x30\x39\x39\x34\x37\ -\x2c\x2d\x32\x2e\x35\x39\x31\x38\x30\x39\x36\x20\x31\x34\x2e\x33\ -\x38\x34\x32\x36\x33\x2c\x32\x2e\x36\x39\x31\x38\x36\x33\x39\x20\ -\x32\x2e\x35\x32\x34\x36\x31\x32\x2c\x32\x2e\x32\x38\x32\x34\x32\ -\x38\x20\x33\x2e\x39\x39\x32\x33\x38\x33\x2c\x31\x2e\x37\x33\x34\ -\x33\x39\x32\x20\x32\x2e\x34\x30\x37\x31\x32\x37\x2c\x2d\x32\x2e\ -\x35\x31\x31\x32\x39\x39\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\ -\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x38\x2e\x31\x33\x33\x33\x33\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\ -\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x32\x2e\x38\x34\x34\x34\x34\x34\x35\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\x11\ -\x00\ -\x00\x25\xb3\x78\x9c\xdd\x59\x5b\x6f\xdb\x38\x16\x7e\xcf\xaf\xd0\ -\x3a\x2f\x2d\xd6\x92\x29\x51\x77\x27\x99\x87\x29\x66\x67\x80\x2e\ -\x06\x98\xb6\xbb\xc0\xbc\x14\xb4\x44\xdb\x9c\x48\xa2\x97\xa2\x63\ -\xbb\xbf\x7e\x0f\x29\x89\x92\x7c\x29\xd2\x49\xd3\x49\x47\x40\x10\ -\xf2\x5c\x78\xf9\xce\x95\xc9\xcd\x0f\xfb\xb2\xb0\x1e\xa8\xa8\x19\ -\xaf\x6e\x27\xae\x83\x26\x16\xad\x32\x9e\xb3\x6a\x75\x3b\xf9\xf0\ -\xfe\x27\x3b\x9e\x58\xb5\x24\x55\x4e\x0a\x5e\xd1\xdb\x49\xc5\x27\ -\x3f\xdc\x5d\xdd\xfc\xc3\xb6\xad\x1f\x05\x25\x92\xe6\xd6\x8e\xc9\ -\xb5\xf5\x4b\x75\x5f\x67\x64\x43\xad\x57\x6b\x29\x37\xe9\x6c\xb6\ -\xdb\xed\x1c\xd6\x12\x1d\x2e\x56\xb3\xd7\x96\x6d\xdf\x5d\x5d\xdd\ -\xd4\x0f\xab\x2b\xcb\xb2\x60\xdf\xaa\x4e\xf3\xec\x76\xd2\x2a\x6c\ -\xb6\xa2\xd0\x82\x79\x36\xa3\x05\x2d\x69\x25\xeb\x99\xeb\xb8\xb3\ -\x49\x2f\x9e\xf5\xe2\x99\xda\x9d\x3d\xd0\x8c\x97\x25\xaf\x6a\xad\ -\x59\xd5\xd7\x03\x61\x91\x2f\x8d\xb4\x3a\xcd\x0e\x6b\x21\x37\x49\ -\x92\x19\xf2\x66\x9e\x67\x83\x84\x5d\x1f\x2a\x49\xf6\xf6\x58\x15\ -\xce\x78\x4e\xd5\x43\x08\xcd\x80\xd7\x4b\x3e\x4e\x2a\xdd\x17\x00\ -\xc5\xc5\xc3\x68\xee\x70\x77\x80\x7f\x03\x3f\x46\xa1\x23\x38\x35\ -\xdf\x8a\x8c\x2e\x41\x93\x3a\x15\x95\xb3\x37\xef\xdf\x18\xa6\x8d\ -\x9c\x5c\xe6\x83\x65\x3a\xf4\x47\xfb\x8e\x4c\x52\x91\x92\xd6\x1b\ -\x92\xd1\x7a\xd6\xd1\xb5\xfe\x8e\xe5\x72\x7d\x3b\xc1\xbe\xe3\x62\ -\xf8\x02\x4d\x5c\x53\xb6\x5a\xcb\x63\x2a\xcb\x6f\x27\x70\x57\x2f\ -\x89\x9b\xf9\xc0\x95\xdc\x46\xa0\x5d\x38\x35\x1c\xe4\x24\x9e\xe3\ -\x5a\xc2\x0d\x70\xd4\xc8\x74\x57\x48\x73\x9e\xa9\x33\xc1\x92\xb4\ -\x64\x64\x2b\x79\x09\x36\xce\xb2\x82\xd4\x35\x5b\xb2\x0c\x26\xbc\ -\xda\x14\xdb\x15\xab\x3e\x96\x14\x40\xf8\x58\xb3\x55\xf5\x51\x72\ -\x5e\x38\x1d\xe0\x66\x3f\xba\xdf\x70\x21\xed\x7d\xbe\x01\x20\xc3\ -\xe8\x2c\xf3\xd0\x31\xef\x80\x7b\x93\xd3\x65\xad\xa4\x9a\x5b\xa9\ -\x19\x5c\xab\xe1\x01\x17\x8c\x44\x89\xf8\x97\x20\x39\x03\xd7\x6c\ -\xe4\x1a\xc9\x31\x07\xc7\x6e\xd0\xea\x80\x56\x2d\xf9\xa6\x93\x85\ -\x8b\xca\x43\xa1\x6e\x07\x44\x3b\xe3\x05\x17\xe9\x75\x18\x2d\x97\ -\x61\x34\xd7\x24\x0e\xb6\x60\xf2\x90\xba\xf3\x49\xaf\xc3\x97\xcb\ -\x9a\x02\xee\x68\x40\xd3\xa8\x83\x06\xec\x15\x4d\xac\xd9\x85\xdd\ -\x7a\x29\x0f\x9f\x5b\xd0\x89\x62\x14\x7b\x6e\xe2\x4d\x3e\x7b\xc2\ -\x45\x06\x0e\x8d\xc6\x27\x44\x8e\x9f\xc4\x08\x27\x9e\x37\xbf\xbc\ -\xff\x99\xb5\x92\xb3\x6b\xc1\x3a\x6e\x10\xc6\xd1\xb9\x6b\xbb\xe7\ -\xaf\x9d\x98\x6d\x6f\x66\x63\xfc\x3f\x6f\xae\xce\x01\xe0\x3c\x05\ -\xcd\x60\x7d\x52\xec\xc8\xa1\x36\x9b\xe8\x58\x4c\xd7\x82\x42\xee\ -\xb8\x3e\x63\xd8\xcf\xd9\xdd\xeb\xcf\xba\x77\xe1\xe4\xc8\x41\xa1\ -\xd7\xab\x1c\x14\xad\x9f\xee\x3d\x98\x26\x4e\x82\xa3\x81\x88\x37\ -\x12\x59\xb5\x4b\x7f\xa8\x98\x84\x54\xb3\xad\xa9\x78\xa7\xc2\xf5\ -\xd7\xea\x43\x4d\x4f\xa4\xde\x0b\x52\xd5\x90\x1b\xca\xdb\x09\x84\ -\x8d\x60\xfb\x57\x90\x12\x90\x1f\x84\xbe\x8f\xfd\x29\x76\xa2\x10\ -\xbc\x39\xf4\xa7\xb6\xe7\x84\xd8\xf7\x23\x77\xaa\xf8\x21\x4a\x60\ -\x1c\x4d\x83\xd8\x89\xc3\x18\x27\xd1\xd4\xc6\x89\x13\x25\x38\x48\ -\xa2\xd7\x2d\xc8\x37\x33\x15\x0c\x7a\x64\x42\x55\xc5\x69\xfe\xc0\ -\xe8\xae\x8f\x98\x05\x31\xa7\xda\x90\x15\xd5\x26\x07\x14\x97\xfa\ -\x6b\x19\x0b\x2e\x72\x2a\x3a\x56\xa8\xbf\x11\xab\xf5\x8a\xa6\x16\ -\x5d\x8d\x8d\xa6\x56\x35\x7c\x74\x9e\x5f\xaf\x49\xce\x77\xb7\x13\ -\xef\x98\xf9\x89\x73\x40\x26\x70\x82\x24\x4e\x90\x7b\xcc\xcd\xf6\ -\xb7\x13\xdb\x47\x2a\xb5\x05\x01\x3e\xe1\x1e\x14\xd7\x41\x41\x88\ -\x11\x4a\x4e\xb8\x5b\x21\x00\x7f\xbb\x20\x07\x0a\xb7\xd2\xbf\xba\ -\x0d\xea\x35\xdf\xad\x84\x42\x47\x8a\x2d\x3d\xd6\x54\x1c\x7b\xb1\ -\xe0\xfb\xf3\x6c\x48\x87\x5b\x55\x07\xed\x6d\xe3\x00\x9b\xfd\x70\ -\xd5\x2d\xcb\x69\x7d\x5e\x71\xc7\x2a\x00\xc1\x6e\xf3\xb8\x8b\x0d\ -\xc6\xc7\x12\x5d\x52\x8f\x50\x7c\x41\x62\xdf\x67\x9e\x63\xd6\xe1\ -\x32\xab\x24\x7b\x56\xb2\x4f\x34\xef\x03\xd8\x88\xd4\x15\xd9\xd8\ -\xab\x82\x2f\x48\xd1\x9e\xbe\x0d\xd9\x11\x2c\x9d\x77\xcb\x83\xaa\ -\x60\xfb\x83\xa2\x8d\xa2\x4f\x11\x70\x14\xf6\xd1\xc2\x05\x83\xc2\ -\xb0\x1f\x66\xca\x86\x74\x18\x92\x54\xbd\x83\xe6\x66\xaf\x1d\x4c\ -\xbb\x5f\x74\xcc\x3b\x0c\x79\x5d\x04\x9c\x3a\xbe\xa6\x97\x54\x92\ -\x9c\x48\xd2\x47\x41\x47\xf1\x92\x04\x75\x37\x83\x46\x23\xfd\xed\ -\xcd\x4f\x26\x4f\x66\x59\xfa\x5f\x2e\xee\xfb\xcc\xa6\x04\xc8\x82\ -\x6f\xc1\x14\xa6\x76\xa8\x8a\x94\xa5\x2a\xa0\x89\xbc\x63\x25\xf8\ -\xb6\xea\x2a\xfe\x09\xc5\x1d\xe2\xd1\x30\x46\xc2\x0a\xac\x7e\xd1\ -\x66\x59\x41\x9b\xae\xe1\x6c\xa3\x95\x67\x25\x53\x4a\xb3\x77\x92\ -\x15\xc5\x2f\x6a\x93\x41\x3e\x6f\x17\x65\xb2\xa0\x83\x24\x3f\x6b\ -\x4f\xdf\xa5\xdf\xc1\xe5\x6e\x66\xdd\xed\xf5\x6c\xd5\xa3\x32\x0a\ -\x0a\x63\xe8\x82\x2c\x28\x38\xc1\x5b\xc5\xb4\x4e\xb8\x2b\xc1\xb7\ -\x9b\x92\xe7\xb4\x55\x37\x68\x42\xe2\x36\x26\x6b\x6a\xcc\x12\x4e\ -\x9f\xb6\x99\x66\xae\x26\x83\x5a\xaa\xa7\x62\x5b\x40\xd5\x7f\xa0\ -\x15\xcf\x73\x28\x3f\x82\xdf\xd3\xf4\x1a\x21\x3f\xd6\xd5\x48\x4d\ -\x9b\x68\x49\xcd\x54\x65\x77\x38\x46\x5a\xff\x6f\x4b\x04\x1d\x52\ -\xff\xe0\xac\x4a\x01\x37\x2a\x3a\xaa\x9e\x14\xe0\xf1\x32\xf5\x3b\ -\x5a\x4e\x20\x15\x09\x41\x0e\x69\x05\x9d\xf3\x90\xda\x94\xb6\x7e\ -\xa7\x41\x21\x6c\xbf\x91\xa3\xab\xeb\xe2\x24\xe9\x8b\xcb\xd9\xf6\ -\x4c\x7d\xe7\x5b\x34\xf5\x8d\xa2\x02\xfc\x3b\x71\xfc\x08\x27\x08\ -\x87\xd4\x76\x43\xc3\x10\x23\x31\x01\x72\xd8\xc1\xd0\xa6\x41\xe1\ -\xe8\xcb\xed\x86\xc8\xf5\x11\xfa\x6d\x71\x47\xfa\x9b\x2f\x39\x64\ -\x2c\xcd\x81\x9b\x83\x8f\x16\x0d\xe5\x81\x08\x46\x2a\x39\xa2\xed\ -\xf4\x81\x47\x24\xc0\x84\xca\x6c\x3d\xa6\x41\x26\x49\x21\xea\xd8\ -\xb6\x9c\x2b\x03\xb4\x69\x6b\x24\xb3\x24\x25\x2b\x0e\xe9\x3b\xa8\ -\x81\x73\xbb\x73\x21\xbb\x51\xdf\xd0\xcc\xb4\x8f\x8d\x84\xa4\x7b\ -\x09\x52\x39\x24\x57\xb0\x83\x9e\x91\x02\x7a\xc9\x14\xde\x3a\x42\ -\x36\x84\x1c\x2a\x98\x68\x74\xb4\x05\x8f\x88\xda\x15\x1a\x4e\x41\ -\x25\xd8\xdf\x6e\xd3\x47\x77\xac\x1d\xd4\xb3\x63\x9a\x5e\x43\x76\ -\x85\xba\xd1\xde\x09\x26\x41\xc4\x56\x9e\x9e\x16\xc2\x96\x8b\x79\ -\xce\x94\xd1\xd5\xce\x85\x14\x73\x55\x57\xf5\xb5\xeb\x35\x5b\xca\ -\xb4\x9b\xb6\xc7\xae\xb2\x35\x80\xdf\x9c\x3b\x67\xf5\x06\x42\x05\ -\x5a\x7f\x2d\xc0\xa1\xe7\x5e\x16\x7c\x97\x3e\xb0\x9a\x2d\x0a\x3a\ -\xd7\xbf\x59\xa1\x9c\xad\x23\xe9\xc8\x81\x8c\xf0\xea\xa4\xdb\xf1\ -\xdc\xd7\x97\x43\x09\x4e\xfe\x09\x8a\x75\x17\x4a\x43\x17\x6f\xe2\ -\x08\xba\x9f\xc0\xc3\x11\xc6\xae\x3f\x2f\x89\xb8\xa7\xa2\x11\xa2\ -\x15\x81\x6d\xed\x05\xc9\xee\x55\x7c\x57\x79\x4a\x32\xa8\x72\xdb\ -\x02\xde\x92\xc6\xf5\xc0\xeb\xff\x6d\xe1\xa8\x8d\x07\xd5\xb1\x60\ -\x3f\x8c\xa0\x79\xb1\xa0\xf1\x0c\x50\x84\x63\x45\xc5\x8e\x67\xa1\ -\x29\x38\x3b\xf2\xa2\x00\xbb\x16\x0e\x9d\x38\xf6\xa0\x6f\x51\xb4\ -\x38\x46\x51\xe0\x5b\xbf\x8f\x42\x49\xf9\x2e\x86\x96\xa8\x27\xf6\ -\xfd\x60\x05\xe1\x2e\xb9\xb0\xa1\x9a\x3f\x10\xb9\x15\x54\xc5\xc2\ -\xe7\xbc\x5e\x23\x37\xb8\xb8\x09\x80\x11\x0e\x5e\x13\x8a\xd0\x70\ -\x1d\x27\x96\xc5\x56\xca\xaf\x95\x56\x8c\x89\xc6\x10\xa2\x29\xb2\ -\xfe\x63\x75\xe9\x00\x9f\x60\x01\x35\x2a\x7c\x34\x16\xe6\xfa\xa6\ -\x12\x82\xc3\xaa\xe2\x01\x4d\x48\x96\x7d\xef\x50\x19\x90\xa6\x66\ -\x64\xfd\x6c\xa1\x73\x90\xc5\x2f\x07\x32\xd7\x01\x0b\x22\x2f\x88\ -\x37\xfb\x2f\xc7\xec\x02\x12\xa6\xf7\x99\x7a\xf0\x26\xb0\x7e\xb4\ -\x20\xce\x9a\xe1\xc9\xe0\x34\xb8\xa2\xc8\xb3\xd1\xb7\x0d\x2f\x17\ -\xe2\xdc\x0d\x82\xaf\x86\x40\x69\x05\x5d\x21\x9e\xe2\x00\x72\x4c\ -\x06\x71\x04\xdd\xbf\xa7\x41\xb9\x34\x3e\x85\x22\xf6\x9f\x0f\x88\ -\x98\x9e\x7a\x42\x6b\x35\xef\x59\x5c\xc1\xc5\xf0\x3c\xd4\x77\x6e\ -\x2f\xac\x68\x1e\xb8\x02\xe4\xf9\x76\x6a\x18\x96\x1b\x4e\x55\x6e\ -\x2e\x0c\x90\xd3\xc4\x09\xbb\x89\x3f\xed\xe2\xdc\x8a\x1c\x5f\x6b\ -\x4c\x0d\xa0\xb1\x13\x34\x32\xa0\x7f\x82\xa8\x8f\x70\xf4\x0d\x11\ -\x05\xd3\xeb\x53\x25\xf8\x5b\xa4\xa3\x33\xcd\xdf\x0b\x35\x81\x8d\ -\xbf\x38\xff\x19\x39\xd3\xfa\xd8\x19\xf4\x18\xd0\x33\xe9\x77\xd8\ -\x99\x1a\x74\x22\xa8\x5e\xe0\xc7\xaf\xb2\x17\x97\x38\x7a\x4b\x3c\ -\x31\x71\xd8\x8f\xaf\x31\x2f\x14\x0a\xcf\xed\x1c\xef\xa9\x50\x24\ -\xdf\x3d\x14\xe1\xd7\xf2\x8a\xef\xbe\xb2\x62\xef\xc9\x18\x3c\x3e\ -\xfb\xbc\x50\x0c\x54\x6a\x7e\x22\x06\x8f\x6f\xda\x5f\x62\x8b\x59\ -\x0e\x5b\x4c\xdc\x14\xa0\x08\xe0\xe8\x8a\x12\x86\x57\xcb\x85\xf1\ -\x85\x86\xd3\xf6\xfe\x36\x80\xb8\x71\x57\x9a\x9f\x04\x88\xfb\x5d\ -\x03\x32\x6a\x7b\x3c\xf3\x08\xd1\xc3\x93\xc1\x25\x08\xbe\x65\xa2\ -\x78\x5e\x9f\xe8\x9a\xb4\x27\x06\x89\xff\xb7\x01\xc4\x5c\xf6\x69\ -\x80\x3c\x57\x67\xb1\x5c\x22\xec\x2e\x5e\xde\x6b\x62\x08\x21\x46\ -\x4e\xd2\x40\xa8\xe2\xc8\xb4\xd6\xd6\xdb\x41\x13\x6b\x7a\x38\x55\ -\xb3\x3c\xd4\x95\xa7\xa3\x47\xc5\xdb\x61\x83\xa3\x9e\x1c\x7f\xea\ -\x4d\xf1\x05\x35\xed\x85\xbc\x2a\xc0\xca\x08\x91\x67\x7f\x85\xbf\ -\x64\xa3\x7d\xc5\x2a\x73\x4d\xc8\x20\x8b\x9c\x4f\x2a\xbe\x13\xb8\ -\x61\x14\x24\x7f\xc5\xdf\x07\x03\xdf\x01\x24\x92\xae\x5b\xf9\xd9\ -\x0a\x13\xe7\x28\xc2\xfa\xec\x12\x3f\xbe\x1f\x79\xd4\x9f\x08\x6f\ -\x66\xab\xbb\xab\x1b\xf5\xef\xbf\xbb\xab\xff\x03\xff\xe0\x07\xdf\ -\ -\x00\x00\x0d\xbb\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x65\x78\x70\x6f\x72\x74\x2e\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ -\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x30\x30\x30\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x35\x39\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x35\x39\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x32\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ -\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x2d\x30\x2e\x39\x32\x30\x37\x37\x33\x37\x35\x2c\x2d\x30\ -\x2e\x30\x30\x31\x34\x32\x36\x38\x36\x2c\x30\x2e\x30\x30\x31\x34\ -\x30\x36\x31\x39\x2c\x2d\x30\x2e\x39\x33\x34\x33\x31\x30\x31\x34\ -\x2c\x33\x32\x2e\x35\x30\x37\x34\x32\x32\x2c\x33\x31\x2e\x30\x39\ -\x37\x30\x31\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ -\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ -\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x30\x32\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\ -\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x2d\x32\x39\x2e\x34\x37\x34\x37\x31\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x31\x35\x2e\x35\x35\x38\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\ -\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ -\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ -\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ -\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ -\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ -\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ -\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ -\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ -\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\ -\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x32\x38\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x32\x30\x2e\x36\x38\x30\x38\x38\x31\x2c\x33\x31\ -\x2e\x33\x31\x32\x32\x36\x37\x20\x63\x20\x30\x2e\x39\x34\x33\x31\ -\x37\x33\x2c\x30\x2e\x30\x30\x31\x34\x20\x31\x2e\x36\x39\x38\x38\ -\x33\x2c\x2d\x30\x2e\x37\x36\x32\x39\x36\x35\x20\x31\x2e\x37\x30\ -\x30\x32\x37\x31\x2c\x2d\x31\x2e\x37\x32\x30\x30\x30\x32\x20\x4c\ -\x20\x32\x32\x2e\x34\x2c\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\ -\x6c\x20\x36\x2e\x34\x34\x35\x34\x31\x37\x2c\x30\x2e\x30\x31\x30\ -\x30\x33\x20\x43\x20\x33\x30\x2e\x36\x38\x36\x39\x36\x36\x2c\x31\ -\x37\x2e\x30\x37\x39\x35\x30\x38\x20\x31\x38\x2e\x37\x33\x38\x2c\ -\x33\x2e\x30\x34\x36\x33\x30\x39\x31\x20\x31\x38\x2e\x37\x33\x38\ -\x2c\x33\x2e\x30\x34\x36\x33\x30\x39\x31\x20\x4c\x20\x31\x37\x2e\ -\x38\x31\x38\x36\x33\x31\x2c\x32\x2e\x31\x31\x30\x35\x37\x31\x37\ -\x20\x31\x36\x2e\x38\x39\x36\x34\x35\x32\x2c\x33\x2e\x30\x34\x33\ -\x34\x35\x35\x35\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x31\x2e\x39\ -\x39\x31\x31\x35\x31\x31\x2c\x31\x33\x2e\x39\x39\x36\x31\x30\x31\ -\x35\x20\x2d\x31\x30\x2e\x31\x34\x39\x36\x30\x31\x38\x2c\x31\x33\ -\x2e\x39\x39\x38\x39\x35\x35\x35\x20\x6c\x20\x36\x2e\x34\x34\x35\ -\x34\x31\x35\x38\x2c\x30\x2e\x30\x31\x30\x30\x33\x20\x2d\x30\x2e\ -\x30\x31\x38\x38\x35\x2c\x31\x32\x2e\x35\x32\x35\x35\x39\x37\x20\ -\x63\x20\x2d\x30\x2e\x30\x30\x31\x34\x2c\x30\x2e\x39\x35\x37\x30\ -\x33\x38\x20\x30\x2e\x37\x35\x31\x39\x31\x31\x2c\x31\x2e\x37\x32\ -\x33\x38\x30\x32\x20\x31\x2e\x36\x39\x35\x30\x38\x33\x2c\x31\x2e\ -\x37\x32\x35\x32\x36\x35\x20\x6c\x20\x35\x2e\x38\x31\x32\x33\x38\ -\x34\x2c\x30\x2e\x30\x30\x39\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0a\xa6\ -\x00\ -\x00\x2c\xbd\x78\x9c\xed\x5a\xdb\x6e\xe3\x46\x12\x7d\xf7\x57\x70\ -\xe5\x97\x19\xac\x48\xf5\xfd\xa2\xb1\x9d\x87\x0d\x12\x04\x48\xb0\ -\xc0\x66\x06\xfb\x18\x50\x64\x4b\xe6\x0e\x45\x0a\x24\x65\x49\xf3\ -\xf5\x5b\xdd\x22\x29\x52\xa2\x6c\xd9\x56\x80\x9d\x60\xa5\x0c\x66\ -\xd8\xdd\xec\xcb\xa9\x53\x55\xa7\x5a\xb9\xfb\x61\xbb\x4c\xbd\x27\ -\x53\x94\x49\x9e\xdd\x8f\x70\x80\x46\x9e\xc9\xa2\x3c\x4e\xb2\xc5\ -\xfd\xe8\xcb\xe7\x9f\x7c\x35\xf2\xca\x2a\xcc\xe2\x30\xcd\x33\x73\ -\x3f\xca\xf2\xd1\x0f\x0f\x37\x77\x7f\xf3\x7d\xef\x1f\x85\x09\x2b\ -\x13\x7b\x9b\xa4\x7a\xf4\x7e\xc9\xbe\x96\x51\xb8\x32\xde\x87\xc7\ -\xaa\x5a\x4d\x27\x93\xcd\x66\x13\x24\x75\x63\x90\x17\x8b\xc9\x47\ -\xcf\xf7\x1f\x6e\x6e\xee\xca\xa7\xc5\x8d\xe7\x79\xb0\x6e\x56\x4e\ -\xf3\x72\x76\x3f\xea\xbc\x91\xaf\x4c\x56\x6e\xc2\x2a\x7a\x9c\xe5\ -\xf9\x57\xf7\xde\xba\x48\x26\x04\x21\x3d\x81\xb1\xa3\xc3\x9b\x71\ -\xd4\xbe\xb8\x5a\x17\xa9\x1b\x1a\x47\x13\x93\x9a\xa5\xc9\xaa\x72\ -\x82\x03\x3c\xe9\x0c\x8f\x0e\xc3\x23\xbb\xef\xe4\xc9\x44\xf9\x72\ -\x99\x67\xa5\x7b\x33\x2b\x6f\x3b\x83\x8b\x78\xde\xdb\xd5\x86\xba\ -\x41\x58\x6b\x3d\x41\x64\x42\x88\x0f\x23\xfc\x72\x97\x55\xe1\xd6\ -\xef\xbf\x0a\xa7\x1b\x7a\x15\x0e\x80\x26\xd0\x77\x18\x79\xd9\xa8\ -\xe9\x36\x05\x10\xcf\x6e\xc6\xf5\x76\x57\x07\xc3\xad\xe0\x4f\xfb\ -\x42\xd3\x10\x94\xf9\xba\x88\xcc\x1c\xde\x34\x41\x66\xaa\xc9\x8f\ -\x9f\x7f\x6c\x3b\x7d\x14\xc4\x55\xdc\x99\xa6\xb1\x5b\x6f\xdd\x9e\ -\x31\xb3\x70\x69\xca\x55\x18\x99\x72\xd2\xb4\xbb\xf7\x37\x49\x5c\ -\x3d\xde\x8f\x28\x0b\x30\x85\x0f\x77\x8d\x8f\x26\x59\x3c\x56\xc7\ -\xad\x49\x7c\x3f\x82\xb3\x12\xad\xa5\x7b\xee\x90\x10\xef\x07\xd4\ -\x13\x4f\xdb\x1e\x14\x68\x12\x60\xaf\xc0\x9c\xca\xfd\x98\xe6\x08\ -\xd3\x38\x8f\xec\x9e\x60\x4a\xb3\x4c\xc2\x75\x95\x2f\xc1\xc6\x51\ -\x94\x86\x65\x99\xcc\x93\x08\x1e\xf2\x6c\x95\xae\x17\x49\xf6\x47\ -\x0a\x6c\x2e\xc3\x4a\xfd\x51\xe5\x79\x1a\x34\x70\xb7\xab\x99\xed\ -\x2a\x2f\x2a\x7f\x1b\xaf\x00\x46\x21\x07\x3b\x77\x4d\xe7\x03\xf4\ -\xde\xb5\x9b\xb0\x3b\x88\x9f\x12\xb3\xb1\xef\xec\x4f\x38\x0b\xcb\ -\x3d\x32\x9e\xb7\x0a\x17\xc0\xb9\x34\x2f\xee\x47\xb7\x73\xf7\xa9\ -\x3b\x66\x79\x11\x9b\xa2\xe9\x12\xee\xd3\xeb\xca\x01\xe9\xa4\xda\ -\xed\xfd\xb3\x9e\xbb\xd9\x91\x9d\xb5\xed\x47\xc3\xfd\xe5\x63\x18\ -\xe7\x9b\xfb\x11\x39\xee\xfc\x96\xe7\xcb\xfb\x91\x0c\x34\x56\x88\ -\x61\x79\xdc\x1d\x6d\xef\x47\x3e\x56\x01\xc2\x0c\x73\x71\xd2\x0b\ -\x0b\x12\x19\x50\x84\x88\xa4\x27\x9d\xeb\xa2\x00\x3f\xf4\xd3\x70\ -\x67\xe0\x54\xee\x2f\x5c\x0f\x2a\x1f\xf3\xcd\xa2\xb0\xe8\x54\xc5\ -\xda\x1c\xbf\x69\x7b\xfc\xd9\x2c\xdf\x0e\x77\x83\xa1\xd7\xd6\xc3\ -\xfd\x75\x96\x54\xe0\x45\xab\x6d\x77\xd6\x75\x12\x9b\x72\xf8\xc5\ -\x32\x0b\x57\xfe\x22\xcd\x67\x61\x3a\x3c\x60\x93\x64\x80\x92\x5f\ -\x53\x18\x53\x71\x72\xe2\x7a\x44\xc3\x67\x89\xd4\x99\x11\xb0\xf7\ -\x13\x43\xd4\x5d\xbb\xf3\x5d\xcb\x70\x9b\x2c\x93\x6f\x06\x80\xc1\ -\x8e\x59\xc0\xad\x1e\x2c\xfb\xd7\xf6\xc4\xb2\xcf\x00\x3d\x1f\x35\ -\x8d\xd5\xce\x3a\xec\x76\x67\x3b\xda\xc6\xbc\x48\x80\xf2\x9d\xed\ -\x34\x4d\xbb\x6e\x93\xf5\x64\x08\xf8\x5b\x47\x30\x47\x3f\x79\xdc\ -\xb7\xeb\xf6\x79\x13\xc7\xfb\xc9\x29\xf1\x5d\x7b\x6c\xe6\xe5\xc1\ -\x03\xec\x13\x38\xb9\x6e\x4e\x04\x21\xcb\x84\xc5\xcf\x45\x18\x27\ -\x60\xc6\xee\x91\xfa\x3d\x02\x31\x51\xbf\x63\x7d\xac\xca\x57\xcd\ -\xd8\x3a\x76\x40\x0b\x8c\x51\xa3\x43\x73\x3e\x9f\x97\xa6\xea\x9e\ -\x0c\xf6\x5f\xed\x52\xb3\x1f\xed\x3b\x17\x9b\xde\x4a\x61\xbf\x9f\ -\x5c\x53\xed\x3a\x53\xfc\xa9\x3e\xd5\xb3\xab\x71\x34\xb0\x1a\x7e\ -\x7e\x35\x4a\x18\x17\xea\xec\x6a\x77\x93\xfe\xb1\x5f\x89\x12\x57\ -\x75\x14\x1a\xd8\xf7\xc0\x66\xe2\x38\xd6\xb1\x3e\xd9\xcc\xf3\x10\ -\x36\xe7\x87\xb5\xf4\x79\x94\x06\x56\x13\x91\xfd\x5e\xb0\x1a\x1e\ -\x5c\x0d\x62\xfc\xd5\x50\xe2\xfa\x15\x28\xe9\x28\x0c\x11\x7a\x3b\ -\x4a\xf8\x55\x28\x69\x4c\x63\x3c\x7b\x33\x4a\x82\x5e\x0f\x25\x72\ -\x58\x02\xd4\x16\xe4\x8e\x24\x83\x75\xcb\x3c\x85\x90\x72\xf9\x81\ -\xe6\x02\x74\xcc\x11\x7c\x28\x90\x4a\x11\xca\xe9\x2b\x70\x24\x57\ -\x3c\x19\xe6\x57\x39\xd9\x7c\x26\x67\xf2\xcd\xc4\xc0\xf2\x6a\x07\ -\x92\xf8\x6c\x70\x1c\xd8\x37\x47\x92\x28\xf6\xd6\x7d\x4b\xac\x5e\ -\x0e\x8e\x1c\x56\x78\x7d\x70\xc4\x33\x1b\x22\x8e\xa9\xc2\xb4\x42\ -\x54\x13\xf2\x4c\x4c\x1e\x0a\xb4\x52\xc5\x2a\x3e\x9a\xeb\x62\x3f\ -\x92\x04\xbd\xd1\x38\xad\xe4\xc9\xd3\xd4\x44\x30\x7f\x98\x6e\xc2\ -\x5d\xd9\x2e\xe2\x44\xfa\xf4\xb1\x30\x50\x54\xdc\x0e\x98\xf1\x39\ -\x2b\x13\x72\x98\x06\xdf\x8f\x54\x40\x88\x52\x02\xe9\xb6\x75\x07\ -\xad\x58\x07\x5a\x68\x79\xc8\xd9\x5b\x02\xca\x8c\x05\xe0\x6d\x36\ -\x16\xb5\x43\xc9\xc0\xd0\x45\xbd\xd4\x97\xbd\x9a\x5a\x97\xa6\xf8\ -\xdd\xea\xfa\x7f\x66\x5f\x5a\xe1\x6a\x45\x00\xd4\x4c\xf1\x6f\xa6\ -\x7a\xcc\x61\x93\xab\x30\x3e\x79\xff\x73\x11\x66\x25\x94\x17\x20\ -\x27\x01\x8d\xd4\x7c\x68\xd5\xc2\xc7\x03\xac\xc3\x00\x0e\x4c\x01\ -\xe2\xbd\x48\xb6\x30\x07\x96\x1c\x11\x8e\xc7\x3e\x09\x28\xc6\x8a\ -\x70\xe3\xab\x31\x0e\x38\xa3\x9a\xd1\xfa\x01\x4b\x8d\xb0\xa4\x30\ -\x46\x05\x42\x49\xaa\xf9\x18\x74\x30\x63\x94\x6a\x4a\x3e\x3e\x7f\ -\xfc\x33\x48\x0d\x82\x3a\x88\xff\xcb\xc8\x3c\x8f\xec\x90\xd1\x15\ -\xb9\x84\x3b\x4e\x1f\xbd\x48\xc2\x17\xb0\x7f\x17\x79\x6d\x52\x7d\ -\x56\x99\xf0\x1e\x78\x18\x07\x12\x33\xd1\x91\xac\x16\x67\x30\x15\ -\xe6\x18\x21\xa6\x45\xcf\x2a\x14\x07\x0a\x2a\x0b\x44\x7b\x06\x1c\ -\x1a\x7d\x19\xd0\xe7\x59\x06\xa9\x09\x49\x09\x7c\xb1\xbc\x91\x10\ -\x7a\x18\xd3\xc0\x26\x28\x36\x91\x26\x92\x11\x0d\xcd\x9c\x83\x64\ -\xc4\x5a\x8d\xd1\x18\x75\x08\x6d\xe7\x0c\xd3\xeb\x82\xda\xd1\xde\ -\x16\xd4\xfe\x12\x20\x8a\x0e\x80\xd8\xf2\xac\x13\x20\x6c\x3d\x06\ -\xc5\xda\x01\xde\x79\xbf\x7f\x7e\xdc\x5f\xd8\xd2\x0f\x69\xf7\xb9\ -\x08\x27\x85\x35\x92\x02\x49\x8b\x02\x80\x22\x18\xc1\xe0\xe0\x80\ -\x15\x13\x01\x46\xe0\x9e\xe0\x8e\x24\x10\x1c\x53\xc5\x3e\x5e\x68\ -\x9f\x97\x08\x3a\xa4\x52\xa4\x8f\xfc\xb3\x7a\xae\xa3\x1f\xb4\x2f\ -\xfd\x6e\xb0\xbf\xb0\x3e\x98\x87\x18\x0f\xc8\xbf\x97\x53\xa0\xa2\ -\x18\x76\xf6\x86\x34\x38\x17\xf3\xf9\x89\x62\x7a\xb1\x46\xf8\x33\ -\xd8\x57\x63\x7b\x9e\x81\x54\xf1\xd7\x66\x8f\xf3\x94\xf2\x69\x40\ -\xa8\xfb\x8e\x49\xc0\x30\x65\x42\x59\xc7\x53\x18\x09\x48\xff\xce\ -\x07\x19\x57\x48\x72\x3d\x96\x2c\x10\x10\x3b\x88\x18\xfb\x2a\x50\ -\x8c\x81\x23\x74\x38\x66\x5d\x01\xf3\x0e\xb7\x9d\x33\x48\x70\x67\ -\xa6\xb4\xec\x79\x44\x6f\xd8\x7c\x70\x58\xb1\x77\x14\x41\x78\x5b\ -\xea\xda\x2a\xd6\xfd\x6b\x69\xaa\x30\x0e\xab\xf0\xa6\xc5\xa7\x69\ -\xb1\x17\x21\x4d\x91\x5b\xc4\xf3\xe9\xbf\x7e\xfc\xa9\x25\x4c\x14\ -\x4d\xff\x9d\x17\x5f\x0f\x24\xb0\x03\xc2\x59\xbe\x06\xf3\xb4\x44\ -\xb6\xa5\x73\x34\xb5\x00\x85\xd5\x43\xb2\x0c\x17\xc6\x5e\x06\xfe\ -\x7d\xbb\x4c\x61\xfd\xb6\xa3\x37\xd8\x16\xfd\x87\x49\xf7\xd3\x16\ -\x66\x7f\xd9\x37\x78\x3f\x1a\x47\xcb\xc4\xbe\x34\xf9\xbd\x4a\xd2\ -\xf4\x17\xbb\x48\x87\xd8\xf5\xa4\x49\x95\x9a\x0e\xdb\x27\xf5\xee\ -\x1b\x32\x76\x0e\x77\x37\x69\x4e\xef\x9e\x16\x37\x7d\x0a\x2e\x8a\ -\x7c\xbd\x5a\xe6\xb1\xa9\x6f\x80\x8e\x2f\x3e\xd2\x70\x66\xd2\xfb\ -\xd1\xaf\xb6\xcf\x6b\x7c\xc4\xb9\xfc\xfe\xbe\xa8\x5e\xd1\xa4\x69\ -\xb2\x2a\xdb\x83\xd6\x0e\x34\x87\x03\x4c\xe1\x68\x1f\x6e\x4f\x19\ -\xfa\xf1\x93\xed\xed\x78\xaf\x7b\x2c\xd6\xa9\x99\x9a\x27\x93\xe5\ -\xb1\xd5\x89\x45\xfe\xd5\x4c\x6f\x11\xaa\xab\x15\xfb\xb8\xbf\xfd\ -\x99\xb6\x8f\x00\x96\x29\xd2\x04\xfe\x9a\xb2\xa6\x2d\x0e\xcb\xc7\ -\xb0\x28\xc2\xdd\x34\xcb\x33\xd3\xb4\xb6\x4b\xf5\x7c\x67\x15\x56\ -\x8f\x42\x50\xd2\x27\x2a\xda\xdf\x83\xd2\x3e\x5b\x21\x3d\xda\x46\ -\x76\xa0\xa1\x8d\xdf\x9d\x47\x7b\xdf\x06\x6e\xd2\x49\x3f\xe0\xde\ -\x67\x41\x39\x55\x15\xef\x05\x25\xc0\x58\x4a\x84\xb5\xb8\x16\x3a\ -\x76\xff\x8c\x70\xe4\x1f\x92\x79\x73\xfb\xa6\x6c\xf6\x67\xe8\x00\ -\x5c\x73\xe9\x06\x12\x0c\x8a\x48\x82\x0e\xb8\xd4\x97\x94\x1a\x62\ -\x02\x3d\xc4\xde\x9d\x93\x70\x4c\x10\xd6\x91\x53\x16\x42\x1a\x70\ -\x2a\x11\xc7\xb2\x87\x73\x2b\x35\x0f\xf7\x69\x03\x09\x50\x80\x20\ -\x61\x58\xb8\xc8\x04\x4a\x81\x09\x26\x31\x24\x42\x05\x71\x09\x24\ -\x29\xb3\x42\x41\x13\xf8\x72\xbe\x17\x0a\x27\x31\xb9\x9d\xd4\x8f\ -\xc0\x28\xa6\xf0\xdd\xe6\x21\x7b\x6a\x8a\x35\xbe\x60\x3c\x1c\xc0\ -\x07\x12\x28\x29\x04\xc8\xbf\xb7\x31\x81\x5c\x81\x09\xb5\xb8\xbf\ -\x36\x13\x4e\x78\x20\xf7\x65\x84\x3a\xe1\x81\x04\xdb\xf6\x6f\x2a\ -\xb7\x96\x1c\x90\x19\xa0\x4e\xc0\x3d\x1a\x48\x08\xe5\x52\x72\x7e\ -\x44\x03\x72\x44\x80\xe3\x9b\xcf\x0e\x01\x8a\xbc\x0a\x2b\xf3\xc1\ -\x22\x2f\x00\x79\x4d\x3a\x1a\xd0\xba\xf8\xa5\xd0\x83\x24\x7e\x37\ -\xf4\x48\x09\x8d\x81\x84\xcf\x41\x7f\x0a\xb2\xcd\x53\x5e\x83\xa6\ -\x1c\x43\x08\xda\x9f\xd6\xd3\x81\xe8\x3c\x45\x1e\xb0\x99\x42\xc1\ -\x2f\x80\xcb\x9a\x22\x82\xb9\x07\x49\x1a\x31\xa9\x81\xe9\x96\x77\ -\x18\x44\x8e\xe7\xb3\x00\x71\xb0\x8a\x18\xd3\x40\x60\x02\x99\xd2\ -\x4b\x3d\x5b\xa3\x41\xd1\x85\x39\xd4\x64\x50\x4d\x4b\x3b\x9b\x0f\ -\xb0\x22\x78\x49\x5a\x69\xcd\xec\x2d\x84\x9d\x0e\x34\x35\x93\xac\ -\x59\x81\xd9\xe9\x88\xdb\xc0\x18\x79\xbf\x7a\x22\x60\xee\xe0\x30\ -\x8f\xa8\xa7\x70\x9b\x83\xcc\x0f\x5e\xaa\x38\xfc\x77\x68\x04\x57\ -\x04\x4b\xc2\xda\xc6\x97\xe3\x76\x1e\x0f\xbc\xcf\xdb\x37\x91\x3a\ -\xd6\x52\xaf\xe9\x94\xee\x15\xb7\xc4\xa1\x71\xdc\xce\x88\x3d\x1e\ -\x30\x36\x6e\xf8\x20\xec\x7e\xc6\x87\x59\xbe\x0d\xf0\x96\xf1\x53\ -\xcf\x8d\xf2\x2c\x83\xce\xbc\xf0\xa3\x75\xf1\x14\x56\xeb\xc2\xf4\ -\xae\xdc\xdb\xab\x73\xc8\x8e\x36\x21\x83\x7c\x2a\xdd\x27\xfa\xd6\ -\xa9\xda\x5e\x97\xf9\x6c\x75\xf0\x7e\xd7\x56\x36\xc8\xc9\xab\x05\ -\x79\xeb\x1f\x54\x13\xea\xd3\x67\x42\xab\x0f\x61\xd4\x06\x55\x02\ -\xd4\x26\x84\x39\x6e\x70\xc1\x21\xa6\x8b\x7e\x24\x75\x3f\x49\x41\ -\xa1\x8f\x14\x50\xb3\x9f\x40\xa1\x8e\x87\xcc\xc0\x44\x3f\xb0\x73\ -\x9b\x55\x39\x3d\xca\xa3\x0c\xa2\x07\xb2\x96\x7f\xd9\x8f\x3b\x27\ -\x3c\x07\x19\xdd\xb3\x89\x34\xed\xd6\xeb\x81\x04\xd3\xd9\xba\xaa\ -\xba\x6d\xff\xc9\x93\x6c\xea\xf0\xbc\x06\xb8\x80\xed\x6f\x8e\x9c\ -\x8d\x72\xa0\x1e\x16\x63\xa7\x10\x8e\xf1\xe7\x4a\x0f\xde\x15\x0c\ -\x52\xf4\x3b\x47\x04\x33\x08\x2b\xf6\x33\x06\x09\x5f\x3b\xad\xa3\ -\x86\x6b\x03\x4d\x40\x06\xe1\xe9\xd0\xf3\x62\x80\xce\x65\xdd\x5b\ -\x23\xec\xf7\xdd\x9e\x08\x9a\x80\x6a\x75\x55\xb9\xc5\x35\x3e\x15\ -\x5b\x10\xeb\x88\x02\xcf\x3b\x49\xb2\x1c\xc2\x3c\xd2\xe8\x38\xc9\ -\x4a\x29\x85\xea\xdc\x19\x58\xe7\xd3\x30\x87\x50\xf8\x38\xa9\x52\ -\xa9\x04\x66\xf4\x28\xf5\x4a\xa5\x20\xcc\x3c\xaf\xb5\xb4\xd0\x4a\ -\x51\xc8\x02\x36\x2c\x30\xca\x25\x46\x6a\x6c\x23\x04\x78\x38\xc2\ -\xdc\x45\x08\xce\xb5\x46\xf4\xf8\x52\xe6\xcf\xb5\x0a\x24\x36\x50\ -\x13\xfa\xaa\xd2\xc7\x5a\xc5\x67\xc7\x76\xe1\x81\x86\xac\xcb\xd0\ -\xa9\x5d\x20\x7f\x61\xcd\x75\xe7\x2e\xc8\x82\x0d\xe9\x99\x33\xde\ -\x19\x6e\xc5\xa2\xfd\xe1\x05\x34\x2b\xee\xfc\x50\x6a\x2d\x63\xd3\ -\xb1\x16\x20\xb9\xfa\xaa\xc8\x56\xe1\x0c\x80\x7f\x41\x06\x33\x09\ -\x12\xdc\x65\x70\x29\x08\xc4\x6b\x7b\x43\x6b\xff\x0d\x64\xb1\xb5\ -\xba\x1d\x41\x81\x4f\x56\x11\x5f\x2c\x83\xe1\x7d\x49\x21\xe0\xcb\ -\x0b\x86\x3b\x12\x31\x86\xa0\x42\xd7\x7f\x01\xc3\x77\x2e\x5c\xde\ -\x66\x7a\x02\x88\x43\xb4\xa0\x3d\xdd\x6b\xd5\x12\xe6\x9c\xfd\xdf\ -\xee\xef\xb4\xbb\x90\x9a\xf0\xeb\x86\x61\x81\xd0\x89\xcd\x29\x54\ -\x55\x10\x2c\x3b\x1d\x8d\xcd\x49\x40\x88\xa0\xa0\x86\x7a\xee\x4e\ -\x6d\x05\x84\x74\xaf\xe4\xb5\x3a\x55\x6b\x90\xc5\x47\x46\xa7\x94\ -\x01\xd5\x70\xbf\x12\xb6\x85\xab\xa2\x9a\x76\x28\x32\x64\x75\x78\ -\x91\x53\xcd\xf7\x85\xae\x20\x52\x20\x67\x75\x6a\xef\xff\xb1\x92\ -\x4e\xc6\x53\x06\x16\x7c\x9d\xd5\xb5\x64\x04\x13\x36\x90\x76\x07\ -\x8b\x5e\xd8\x07\x48\x3e\x2a\x09\xfe\xee\x0d\xdf\xb9\x93\x7e\x9b\ -\xe9\x41\xe3\x61\x70\x6d\xd1\x2f\x73\x03\x4e\x94\x50\x9d\x1f\x85\ -\xfe\xc7\x4d\x4f\x2f\xbd\xef\x68\x4c\x8f\xe4\xf7\x6f\x7a\xf2\x5e\ -\xaf\x97\x01\xd6\x12\x75\x7e\x5a\x73\x5e\x0f\x36\x66\xac\xf3\x7f\ -\x6f\xfc\x65\x4d\x7f\x37\x59\x3c\xdc\xdc\xd9\x7b\xf1\x87\x9b\xff\ -\x02\x19\x39\x4d\x45\ -\x00\x00\x06\xaf\ -\x00\ -\x00\x20\x4b\x78\x9c\xe5\x58\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\xa1\ -\xa9\x5f\x5a\xcc\x92\x28\x52\xef\xb5\xd3\x0f\x2b\xba\x16\xe8\x30\ -\x60\x6d\xb7\x8f\x05\x2d\xd1\xb6\x56\x59\xf4\x28\x29\xb6\xfb\xeb\ -\x77\x94\x44\x4a\xb2\x1d\x20\x6d\xb2\x75\x5d\x14\x04\x11\xef\x8e\ -\x6f\xcf\xdd\x3d\x77\xca\xfc\xc5\x61\x5b\x18\x37\x4c\x54\x39\x2f\ -\x17\xa6\x6b\x23\xd3\x60\x65\xca\xb3\xbc\x5c\x2f\xcc\x0f\xef\x5f\ -\x59\x91\x69\x54\x35\x2d\x33\x5a\xf0\x92\x2d\xcc\x92\x9b\x2f\xae\ -\xaf\xe6\x3f\x58\x96\xf1\x93\x60\xb4\x66\x99\xb1\xcf\xeb\x8d\xf1\ -\xa6\xfc\x54\xa5\x74\xc7\x8c\xa7\x9b\xba\xde\x25\x8e\xb3\xdf\xef\ -\xed\xbc\x17\xda\x5c\xac\x9d\x67\x86\x65\x5d\x5f\x5d\xcd\xab\x9b\ -\xf5\x95\x61\x18\xb0\x6f\x59\x25\x59\xba\x30\xfb\x09\xbb\x46\x14\ -\xad\x61\x96\x3a\xac\x60\x5b\x56\xd6\x95\xe3\xda\xae\x63\x0e\xe6\ -\xe9\x60\x9e\xca\xdd\xf3\x1b\x96\xf2\xed\x96\x97\x55\x3b\xb3\xac\ -\x9e\x8c\x8c\x45\xb6\xd2\xd6\xf2\x34\x7b\xd2\x1a\xb9\x71\x1c\x3b\ -\x08\x3b\x18\x5b\x60\x61\x55\xc7\xb2\xa6\x07\x6b\x3a\x15\xce\x78\ -\x69\x2a\x46\x08\x39\xa0\x1b\x2c\xef\x66\x95\x1c\x0a\x80\xe2\xd6\ -\xc3\xb4\xda\xf1\xee\x00\xff\x0e\x7e\xf5\x04\x25\xb0\x2b\xde\x88\ -\x94\xad\x60\x26\xb3\x4b\x56\x3b\x2f\xdf\xbf\xd4\x4a\x0b\xd9\x59\ -\x9d\x8d\x96\x51\xe8\x4f\xf6\x9d\xb8\xa4\xa4\x5b\x56\xed\x68\xca\ -\x2a\x47\xc9\xdb\xf9\xfb\x3c\xab\x37\x0b\x93\x78\xb6\x4b\xe0\xf1\ -\x5b\xe1\x86\xe5\xeb\x4d\x7d\x2a\xcd\xb3\x85\x09\x77\xc5\x71\xd4\ -\x8d\x47\xa1\xe4\x76\x06\xfd\xc2\x89\xd6\x20\x3b\xc6\xb6\x6b\x08\ -\xd7\x27\x61\x67\xa3\xae\x90\x64\x3c\x95\x67\x82\x25\xd9\x36\xa7\ -\x4d\xcd\xb7\xe0\xe3\x34\x2d\x68\x55\xe5\xab\x3c\x85\x01\x2f\x77\ -\x45\xb3\xce\xcb\x8f\x15\xbd\x61\x1f\x77\x05\xaf\x3f\xe6\x5b\x0a\ -\x70\x28\xc0\xf5\x7e\xec\xb0\xe3\xa2\xb6\x0e\xd9\x0e\x80\x0c\xc2\ -\x8b\xca\xa3\x52\x5e\x83\x76\x9e\xb1\x55\x25\xad\xba\x5b\xc9\x11\ -\x5c\xab\xd3\x81\x16\x9c\xc4\xa8\xf8\x59\xd0\x2c\x87\xd0\xec\xec\ -\x46\x2b\xa6\xbc\x28\x58\x0a\xf8\xd0\x62\x4f\x8f\x95\xa9\x0d\x60\ -\xa9\xe9\x54\x3f\x86\x6b\x5f\xf7\xfa\x79\x55\xf3\x9d\xb2\x05\x24\ -\xea\x63\x21\xaf\x0f\x42\x0b\x56\xe4\x22\x79\x02\xd1\x84\x22\xf4\ -\xbc\x15\x71\x70\x56\x5e\x1f\x13\xf7\xb9\x39\xcc\xe1\xab\x55\xc5\ -\x60\x63\x34\x92\xb5\x6e\x81\x19\xb0\x17\x31\x0d\xe7\x7e\xbb\xa1\ -\x4b\xbb\xb9\x97\x77\xf3\xf5\x6e\x73\x67\x7a\xed\xfb\xc1\xd8\xe6\ -\x48\xb2\x11\x0c\x72\xfa\xc9\x05\x3c\x6f\x87\x9b\x20\x1c\x6a\xf5\ -\xba\x17\x7e\x28\xf3\x1a\x92\xb7\xa9\x98\x78\x27\x13\xe0\xd7\xf2\ -\x43\xc5\xce\xac\xde\x0b\x5a\x56\x90\x6d\xdb\x85\x09\x81\x28\xf2\ -\xc3\x53\x88\xdd\x88\x44\xbe\x8b\xe3\x19\x92\x3f\xa3\xa1\x1d\x84\ -\xd8\xf3\x03\x9f\xcc\xb0\x4d\x50\x14\xc5\x7e\xfc\x6c\x38\xbe\x0b\ -\x88\xf9\x7a\x78\x84\x21\xc6\x83\x16\x2f\x4c\x6f\x50\xc2\x88\xa0\ -\x1e\xc7\xb9\x23\xe3\xb0\x7d\xd3\x59\x22\x53\x24\xbb\xc9\xd9\x7e\ -\x08\xd6\x25\xd5\xc7\xdf\x41\x36\xb4\xce\x04\xa0\x56\xed\xd3\x2b\ -\x96\x5c\x64\x4c\x28\x55\xd0\x3e\x13\x55\xef\xef\xae\x0c\x5c\x4d\ -\xfd\x22\x57\xd5\x7a\x74\x59\x5f\x6d\x68\xc6\xf7\x70\xb3\x53\xe5\ -\x67\xce\x01\x42\x17\x28\x21\x0e\x23\x74\xa6\x4e\x0f\x0b\xd3\x72\ -\x03\x3b\x8a\xdc\xc8\x8b\xcf\xb4\xf2\x40\xbe\xed\x85\x3e\x46\xd1\ -\x99\xb2\x11\x02\x1c\x65\x15\xf4\xc8\xe0\x56\xed\x1f\x15\x0c\xd5\ -\x86\xef\xd7\x42\xa2\x53\x8b\x86\x9d\xce\x94\x1a\x6b\xb9\xe4\x87\ -\xcb\x6a\x60\xa2\x46\x96\x20\xab\xe9\x22\x65\x77\x18\xaf\xda\xe4\ -\x19\xab\x2e\x4f\xdc\xe7\x25\x80\x60\xf5\x14\xea\x12\x8d\xf1\xa9\ -\x85\xe2\xd3\xf0\xfc\x56\xbd\xc5\x61\xc8\xe9\x53\xd5\xf1\x76\xd5\ -\x96\x1e\xf2\x6d\xfe\x99\x65\x43\x8e\x6a\x93\xaa\xa4\x3b\x6b\x5d\ -\xf0\x25\x2d\xfa\xd3\xf7\x59\x39\x81\x45\x05\x62\x7d\x94\xc5\xe3\ -\x70\x94\xb2\x49\x82\x49\x01\x09\x83\x21\x9e\xb9\xc8\x81\x93\x0f\ -\x63\x0e\xea\x44\xc7\xb1\x48\x96\x1a\xe8\x2b\x0e\x6d\x80\xb5\xe1\ -\x17\x9e\xea\x8e\x63\x9d\xca\x80\xf3\xc0\x6f\xe5\x5b\x56\xd3\x8c\ -\xd6\x74\xc8\x02\x25\xc1\x71\x8c\xd4\xcd\xa0\xc6\x27\xbf\xbd\x7c\ -\xa5\x19\x30\x4d\x93\x3f\xb8\xf8\x34\x90\x97\x34\xa0\x4b\xde\x80\ -\x2b\x34\x2b\xcb\x62\x90\x26\x32\xf3\x69\x7d\xdd\xd6\x17\x59\xd0\ -\x7f\x84\xba\x0a\xf9\xa8\x15\x13\x63\x09\xd6\xb0\x68\xb7\xac\x60\ -\x5d\xc1\xbe\xd8\xe3\x64\xe9\x36\x97\x93\x9c\x77\x75\x5e\x14\x6f\ -\xe4\x26\x23\xa6\xee\x17\xcd\xeb\x82\x8d\xe8\xdb\xe9\x4f\xaf\x18\ -\x76\x74\xb9\xb9\xa3\x6e\xdf\x8e\xd6\x03\x2a\x93\xa4\xd0\x8e\x2e\ -\xe8\x92\x41\x10\xbc\x95\x4a\xe3\x4c\xbb\x16\xbc\xd9\x6d\x79\xc6\ -\xfa\xe9\x0a\xcd\x1d\xad\x37\xda\x65\x5d\xf5\x58\xc1\xe9\x13\xb8\ -\xd7\xd3\x27\xe7\xbc\xfb\xec\xb9\xd4\x8e\xca\x56\x3b\x14\x4d\x01\ -\x15\xf8\x86\x95\x3c\xcb\xa0\xd2\x08\xfe\x89\x75\xf9\x92\x68\xdf\ -\x0f\xdc\x28\xdd\x6a\xb8\x44\x52\x6a\x18\x87\xc0\xad\x28\xc0\x31\ -\x21\x91\x91\x1a\x16\x98\xa3\x30\x8c\x82\x19\x92\xef\x91\x4b\xe2\ -\x30\x04\x22\x8e\x50\xe0\xc6\xc8\x1d\xc9\xfa\x17\xdf\xf8\xdd\x70\ -\xc3\x6e\x8f\xd0\x78\x6d\x78\x76\x80\x60\xba\x4b\xba\xc5\xe2\x20\ -\x0c\x11\xf6\x60\x35\x17\x16\xc1\x98\x04\x1e\x4c\xf5\xec\xd0\x0f\ -\x43\xb0\xbf\x28\x2c\x8c\xbe\x06\x60\x55\x0c\xb0\x92\xb8\x33\x4b\ -\x8b\x52\x03\xc9\x65\xb1\x1d\xc6\x08\x05\xe1\xcc\x3a\x5f\x16\x8f\ -\x85\xaf\x0d\xec\xda\xa4\x7d\xe0\xcc\xc4\x8e\xc2\x20\x86\x9a\xd2\ -\xae\xa3\xae\xed\xc5\x86\xd5\x5f\xd6\x9d\x59\xfa\x8a\xfa\x6d\x24\ -\xfb\x3c\x49\x5f\x01\x05\xd6\x27\x5e\x34\x08\x87\xea\x5b\x96\xa0\ -\xe4\xc2\x02\x62\xbd\xa1\x75\x23\x98\x4c\x60\x5d\xd2\xe5\xcc\x4b\ -\xee\xef\x0b\xcd\x5d\xbd\x2d\xdb\x0c\x2f\x42\x68\xea\x7c\x3d\x94\ -\x71\x04\xc7\x49\xaa\xbf\x1a\x2a\xd8\x58\xfa\x27\xcf\xcb\x04\xd2\ -\x86\x09\x25\x6d\x07\x05\x10\x5e\x9d\x78\x4a\x96\x51\xa8\x44\x42\ -\xd0\x63\x52\xc2\x37\xcb\x58\xda\x35\x2f\xc3\x4e\xba\xc3\xe9\xb1\ -\x26\xe4\x0c\x28\x12\xc7\x43\x77\xa1\x58\x1d\x7c\x13\xc2\x33\x20\ -\xa8\xc8\xfc\x5c\x03\x6c\xa7\x5c\x39\x2a\xf1\x20\x24\xb6\x37\xa5\ -\x40\x31\xe1\x4f\xd1\x52\xa1\x8b\xa0\xb9\x20\x43\x0b\x77\x6b\x02\ -\x8e\x6e\xda\x35\x71\xa7\xe8\xba\xb6\x4f\x70\x24\xbb\xbb\x53\x98\ -\x97\x4d\x5d\x3f\x14\xc8\xda\xf7\xe3\xfc\xfd\x65\x08\xe6\x99\xbe\ -\xb6\x0c\x6b\xcf\x8e\x3c\x78\xfc\x09\xe8\xf2\x86\x40\xe0\xc1\x9d\ -\xa3\x53\xc3\xa1\xcb\x04\xf0\x96\x64\x56\xa8\xd0\x69\xfa\x00\xd0\ -\x01\xe7\x44\x44\x7e\xa9\x7d\x0b\xe8\x08\xb1\xc3\x36\xa2\x66\xea\ -\xc3\x8b\x48\x76\xc0\xb6\x77\x09\xb5\xbb\xe7\xf4\xff\x19\xb5\xad\ -\x0c\xb8\x20\x82\x27\x9e\x01\x7e\x3d\xdf\x03\x77\xda\xa1\x2b\x1f\ -\xa0\xe2\x8b\xaf\x67\x88\x42\x2e\x63\x0b\x7d\x39\x4f\x7e\xa7\xa0\ -\x41\x80\xe9\x50\xf3\x5a\xf8\x54\xc1\xf1\xb0\x7c\x6e\x7b\x3f\xc7\ -\x2d\xf2\xfe\x39\xd4\x22\x76\xce\x6d\x01\xf1\xe5\xbf\x5d\xf0\xb7\ -\x40\x0d\x7c\x26\x59\xcc\x9b\x11\x64\xe3\x0e\x1b\xd5\xc7\xc8\x0e\ -\x80\xf8\xf2\x31\x70\x97\xbc\xde\xcc\xc2\x3d\xeb\x81\x55\x9f\xd9\ -\x83\x95\x16\x11\x1b\xab\x81\x6c\x69\xba\x08\x35\xde\x1a\x3a\x9c\ -\x67\x04\x1b\xc4\xb7\xe3\x36\x72\xb5\xf4\xcc\x13\x1e\x22\xe1\xa3\ -\x89\x5f\x80\xa3\x85\xf1\x41\xe2\xd7\xfa\x8a\xfe\xe8\x3b\xc5\x2d\ -\xb6\xfd\x8e\x01\x1f\x04\xb7\xf8\xb1\xe0\x46\x5c\x1b\xf7\x45\xe6\ -\x21\x70\x7b\x34\x75\x66\xc4\x61\x0f\x81\x1b\x79\x2c\xb8\xe1\xd0\ -\x0e\xbb\x2e\xfa\x41\x70\xbb\x7b\x87\xfd\x5d\x7f\x7d\x4c\x9a\x41\ -\x95\xb1\x5f\xdf\x0c\x5a\xf8\xf1\xc1\xa6\x0b\xc4\x3d\x60\x73\x1f\ -\x21\x6c\x2a\x5f\xef\x01\xdb\xbf\x49\x6e\xff\x15\xd8\x54\x1b\x77\ -\x0f\xd8\xbc\x47\x08\x9b\xfa\x7a\xbb\x07\x6c\x5f\xda\xba\xcd\x9d\ -\xf5\xf5\xd5\x5c\xfe\x6f\xfc\xfa\xea\x6f\x89\xcc\x6b\x21\ -\x00\x00\x13\x72\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x72\x64\x65\x72\ -\x5f\x62\x79\x5f\x6e\x61\x6d\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\ -\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\ -\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\ -\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\ -\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\ -\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\ -\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x39\x2e\x34\x30\x30\x32\x35\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x79\x3d\x22\x31\x38\x2e\x39\x32\x37\x30\x34\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\ -\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\ -\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\ -\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ -\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\ -\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\ -\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ -\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ -\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ -\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ -\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ -\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ -\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ -\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ -\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ -\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\ -\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x36\x2e\x30\x39\x35\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ -\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\ -\x3a\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\ -\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\ -\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\ -\x65\x72\x69\x66\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\ -\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\ -\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\ -\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ -\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x31\x32\x2e\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x74\x65\x78\x74\x32\x39\x39\x35\x22\x3e\x3c\x74\ -\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x74\x73\x70\x61\x6e\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x78\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\ -\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\ -\x38\x34\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\ -\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ -\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x32\x22\x3e\x61\x3c\x2f\x74\x73\x70\x61\x6e\x3e\ -\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\ -\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ -\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ -\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\ -\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\ -\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\ -\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ -\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\ -\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\ -\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\ -\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x38\x2e\ -\x35\x33\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x32\x39\x39\ -\x39\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\ -\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x30\x30\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x38\x2e\x35\x33\ -\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\ -\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\ -\x38\x34\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\ -\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ -\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x32\x22\x3e\x62\x3c\x2f\x74\x73\x70\x61\x6e\x3e\ -\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\ -\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x38\x2e\x35\x33\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x35\x31\x2e\x39\x38\x37\x36\x32\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x74\x73\x70\x61\x6e\x33\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\ -\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\x38\x34\x32\ -\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\ -\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ -\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x32\x22\x3e\xc2\xa0\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ -\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\ -\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\ -\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ -\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\ -\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\ -\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\ -\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\x65\x74\ -\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ -\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\ -\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x31\x2e\x33\ -\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ -\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\x30\x30\x35\x22\ -\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\ -\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x32\x31\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\ -\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x74\x73\x70\x61\x6e\x33\x30\x30\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ -\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\x38\x34\ -\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ -\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ -\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x32\x22\x3e\x63\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ -\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\ -\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ -\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\ -\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\ -\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\ -\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\ -\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\ -\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\ -\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\ -\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\ -\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\ -\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\ -\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\ -\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\ -\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\ -\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\ -\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\ -\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\ -\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ -\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ -\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ -\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\ -\x61\x63\x61\x37\x39\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\x61\x72\x6b\ -\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\ -\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\ -\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x4d\x20\x37\x2e\x32\x38\x34\x38\x33\x37\x31\x2c\x2d\x31\x32\x2e\ -\x34\x31\x35\x34\x38\x34\x20\x35\x2e\x33\x31\x38\x32\x30\x35\x37\ -\x2c\x2d\x31\x30\x2e\x37\x37\x34\x32\x31\x35\x20\x33\x2e\x33\x35\ -\x31\x35\x37\x35\x33\x2c\x2d\x39\x2e\x31\x33\x32\x39\x34\x37\x34\ -\x20\x32\x30\x2e\x38\x30\x30\x35\x35\x33\x2c\x31\x32\x2e\x32\x32\ -\x33\x39\x31\x36\x20\x31\x36\x2e\x30\x30\x31\x31\x30\x34\x2c\x31\ -\x34\x2e\x38\x34\x37\x38\x33\x33\x20\x32\x37\x2e\x37\x33\x30\x30\ -\x33\x35\x2c\x31\x37\x2e\x34\x39\x32\x38\x37\x36\x20\x33\x30\x2e\ -\x35\x36\x38\x33\x33\x33\x2c\x35\x2e\x34\x35\x33\x36\x33\x37\x33\ -\x20\x32\x35\x2e\x36\x2c\x39\x2e\x36\x20\x5a\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x0c\x42\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x6f\x76\x65\x5f\ -\x64\x6f\x77\x6e\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ -\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ -\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x78\x3d\x22\x2d\x32\x31\x2e\x30\x31\x36\x36\x38\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ -\x22\x31\x37\x2e\x31\x32\x36\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ -\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ -\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\ -\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\ -\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ -\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\ -\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\ -\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\ -\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\ -\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\ -\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\ -\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\ -\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\ -\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\ -\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ -\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\ -\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\ -\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\ -\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\ -\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\ -\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\ -\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\ -\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\ -\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ -\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ -\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x30\x30\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ -\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ -\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x6d\x20\x31\x38\x2e\x36\x38\x36\x36\x31\x32\x2c\x2d\ -\x31\x39\x2e\x32\x30\x33\x37\x37\x36\x20\x2d\x32\x2e\x36\x33\x33\ -\x35\x31\x39\x2c\x30\x2e\x30\x35\x30\x31\x39\x20\x2d\x30\x2e\x38\ -\x30\x34\x30\x38\x2c\x2d\x30\x2e\x30\x34\x32\x33\x31\x20\x30\x2e\ -\x30\x32\x33\x32\x39\x2c\x33\x32\x2e\x36\x37\x39\x34\x38\x32\x20\ -\x2d\x34\x2e\x31\x32\x35\x31\x31\x39\x2c\x30\x2e\x30\x30\x39\x35\ -\x20\x35\x2e\x39\x31\x39\x34\x38\x37\x2c\x31\x35\x2e\x33\x30\x36\ -\x39\x32\x39\x20\x35\x2e\x37\x36\x38\x33\x35\x2c\x2d\x31\x35\x2e\ -\x33\x33\x33\x37\x33\x37\x20\x2d\x34\x2e\x31\x32\x35\x31\x31\x39\ -\x2c\x30\x2e\x30\x30\x39\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\x33\x2d\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ -\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x0d\x9d\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\x6f\x61\ -\x64\x5f\x73\x65\x61\x72\x63\x68\x2e\x73\x76\x67\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\ -\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\ -\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\x65\x66\x66\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x66\x61\x66\x66\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\ -\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\x39\x32\x31\x36\x3b\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ -\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x2e\ -\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x34\x2e\x32\x31\x36\x38\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x32\x35\ -\x36\x33\x2c\x30\x2c\x2d\x30\x2e\x30\x37\x31\x30\x35\x30\x33\x35\ -\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ -\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ -\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\ -\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x2d\x39\x34\x2e\x32\x37\x36\x34\x33\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x31\x39\x2e\x31\x31\x38\x33\x31\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ -\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ -\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ -\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ -\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ -\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ -\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ -\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ -\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ -\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ -\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ -\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ -\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\ -\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ -\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\ -\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\ -\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x32\x31\x36\ -\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\ -\x33\x2e\x33\x39\x35\x34\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x30\x2e\x39\x35\x36\x34\x37\x39\x35\x37\x2c\x30\x2c\ -\x30\x2c\x30\x2e\x39\x34\x33\x37\x32\x36\x35\x31\x2c\x31\x34\x2e\ -\x30\x33\x32\x34\x34\x32\x2c\x38\x2e\x32\x36\x36\x32\x34\x35\x36\ -\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x37\x2e\x38\x36\x30\x36\ -\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x34\x2e\x31\x39\x37\x32\x35\x32\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x35\x2e\x35\x35\x34\x32\ -\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\ -\x2e\x39\x34\x38\x33\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x31\x2e\x30\x38\x33\x37\x38\x33\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x34\x38\x37\x38\ -\x31\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\ -\x39\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0c\x67\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x70\x6c\x69\x74\ -\x5f\x72\x61\x73\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x78\x3d\x22\x2d\x36\x36\x2e\x34\x38\x32\x37\x34\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x79\x3d\x22\x35\x2e\x31\x34\x39\x30\x32\x30\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ -\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ -\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ -\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ -\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ -\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ -\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ -\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\ -\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x31\x31\x36\x30\ -\x36\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\ -\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\x2e\ -\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x34\x32\x2e\x38\x35\x36\x30\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x35\x38\x2e\x35\x30\x31\x32\x35\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\ -\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\ -\x2c\x2d\x30\x2e\x37\x39\x31\x31\x33\x38\x38\x2c\x2d\x30\x2e\x30\ -\x39\x31\x33\x30\x32\x37\x38\x2c\x30\x2e\x39\x39\x35\x38\x32\x33\ -\x31\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\x2c\x2d\x30\x2e\x37\ -\x39\x31\x31\x33\x38\x38\x2c\x30\x2e\x30\x30\x32\x38\x38\x31\x37\ -\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x35\x38\x35\x2c\x30\x2c\x30\ -\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ -\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x32\x2e\x30\x32\x36\x37\ -\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x38\ -\x2e\x39\x35\x36\x30\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\ -\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\x32\x32\x37\x33\ -\x32\x33\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x35\x39\x33\x33\x33\x30\x33\x38\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\ -\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\ -\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\ -\x34\x35\x36\x37\x38\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x31\x30\x2e\x33\x37\x38\x31\x39\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\ -\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ -\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\x2c\x2d\x30\ -\x2e\x37\x39\x31\x31\x33\x38\x38\x2c\x30\x2e\x30\x38\x35\x30\x35\ -\x32\x34\x36\x2c\x30\x2e\x39\x39\x36\x33\x37\x36\x34\x37\x2c\x30\ -\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\xd9\ -\x00\ -\x00\x28\xf8\x78\x9c\xe5\x5a\xd9\x6e\xdb\x48\x16\x7d\xf7\x57\xd4\ -\x28\x2f\x33\x18\xb1\x54\xfb\xa2\xc8\xee\x87\x34\x1a\x68\xa0\xe7\ -\x65\xba\x07\xf3\x18\xd0\x24\x6d\x73\x42\x91\x02\x49\x79\xc9\xd7\ -\xf7\x29\x6e\x92\x6c\x39\xf0\xc4\x71\x3a\x89\x69\x18\x22\xef\x52\ -\x75\xeb\xd4\xb9\xf7\x16\x65\xaf\x7e\xba\x5d\x17\xe4\x3a\xab\x9b\ -\xbc\x2a\x4f\x67\x9c\xb2\x19\xc9\xca\xa4\x4a\xf3\xf2\xf2\x74\xf6\ -\x9f\x3f\x7e\x89\xdc\x8c\x34\x6d\x5c\xa6\x71\x51\x95\xd9\xe9\xac\ -\xac\x66\x3f\x9d\x9d\xac\xfe\x16\x45\xe4\x5d\x9d\xc5\x6d\x96\x92\ -\x9b\xbc\xbd\x22\xbf\x96\x1f\x9a\x24\xde\x64\xe4\xef\x57\x6d\xbb\ -\x59\x2e\x16\x37\x37\x37\x34\x1f\x84\xb4\xaa\x2f\x17\xff\x20\x51\ -\x74\x76\x72\xb2\x6a\xae\x2f\x4f\x08\x21\x98\xb7\x6c\x96\x69\x72\ -\x3a\x1b\x1c\x36\xdb\xba\xe8\x0c\xd3\x64\x91\x15\xd9\x3a\x2b\xdb\ -\x66\xc1\x29\x5f\xcc\x76\xe6\xc9\xce\x3c\x09\xb3\xe7\xd7\x59\x52\ -\xad\xd7\x55\xd9\x74\x9e\x65\xf3\x66\xcf\xb8\x4e\x2f\x26\xeb\x10\ -\xcd\x8d\xec\x8c\xb8\xf7\x7e\xc1\xc4\x42\x88\x08\x16\x51\x73\x57\ -\xb6\xf1\x6d\x74\xe8\x8a\x18\x8f\xb9\x0a\xc6\xd8\x02\xba\x9d\xe5\ -\xd3\xac\x96\x0d\x00\xdd\xe0\x77\x32\x1f\x05\xb4\xa9\xb6\x75\x92\ -\x5d\xc0\x2f\xa3\x65\xd6\x2e\x7e\xfe\xe3\xe7\x49\x19\x31\x9a\xb6\ -\xe9\xde\x30\x23\x9e\x07\xb3\x1e\x80\x5c\xc6\xeb\xac\xd9\xc4\x49\ -\xd6\x2c\x46\x79\xe7\x7f\x93\xa7\xed\xd5\xe9\x4c\x2a\xca\x25\x2e\ -\xdd\x09\xaf\xb2\xfc\xf2\xaa\xbd\x2f\xcd\xd3\xd3\x19\xa2\x17\xde\ -\xf5\xcf\x7b\xe4\xe0\xbd\xc1\x30\xf0\x72\xd2\x30\xea\x05\xe5\xa4\ -\xe6\x5a\xda\xde\x66\x5c\xc2\x32\xad\x92\x10\x13\x86\xcc\xd6\x79\ -\xbc\x6d\xab\x35\x76\x2d\x49\x8a\xb8\x69\xf2\x8b\x3c\xc1\x43\x55\ -\x6e\x8a\xed\x65\x5e\xbe\xff\xed\xdd\xef\xef\xdb\xab\x3a\x6b\xae\ -\xaa\x22\x7d\xdf\x56\x55\x41\x47\x14\xa7\x29\xb3\xdb\x4d\x55\xb7\ -\xd1\x6d\xba\x01\x96\xc6\x1e\x55\xde\x8d\xca\x33\x68\x57\x69\x76\ -\xd1\x04\xab\x7e\x61\xe1\x09\x2b\xb3\x33\xb2\xe8\xb4\x53\x9c\x21\ -\xc8\xf4\x3a\xcf\x6e\x76\xb6\xe7\x71\xd3\x83\x47\xc8\x26\xbe\x04\ -\xd1\x8a\xaa\x3e\x9d\xbd\xb9\xe8\xae\x41\x71\x5e\xd5\x69\x56\x8f\ -\x2a\xd3\x5d\x07\xaa\x0a\x9b\x91\xb7\x77\x7d\x6a\x0d\x63\x8f\xf1\ -\x86\x51\x27\x3d\x3b\xae\x6f\xae\xe2\xb4\xba\x39\x9d\x89\xfb\xca\ -\x8f\x55\xb5\x3e\x9d\x69\xaa\xbd\xf3\x8c\xdf\xd7\x26\xb7\xa7\xb3\ -\x48\x7b\xea\xbc\x12\xd6\x3e\xd0\x62\x3e\xa1\xa9\xf2\x4e\xf0\x87\ -\xca\x6d\x5d\x23\xf7\xa2\x22\xbe\xcb\xb0\xa8\xee\x63\x1c\x1f\x5b\ -\x73\x73\x59\x07\x70\xda\x7a\x9b\xdd\xf7\x0c\x9a\xe8\xfc\xbc\xba\ -\x3d\xae\x06\x15\xb6\x21\xab\xa3\x6d\x99\xb7\xc8\x9c\xcd\xed\xfe\ -\xa8\xdb\x3c\xcd\x9a\xe3\x8e\x4d\x19\x6f\xa2\xcb\xa2\x3a\x8f\x8b\ -\xe3\x06\x37\x79\x09\x90\xa2\x81\xe4\x5c\x4e\x7b\x70\xdf\x62\x64\ -\xbc\x65\xee\x11\x0b\xc4\xfe\x60\x1f\x06\xd5\xdd\xe3\xaa\x75\x7c\ -\x9b\xaf\xf3\x8f\x19\x80\x79\xb0\x15\xdd\xca\xf6\x61\x39\xeb\x0c\ -\x56\x07\xb0\xf5\x3e\x84\xb4\x77\x21\xbb\x6f\xef\x82\x6c\x36\x0a\ -\x03\xde\x41\x20\xbc\xb7\x93\xb0\xaa\x73\x24\xcd\x5e\xb8\xa3\xe8\ -\x6e\x5f\x14\x6a\x01\x4a\xf9\x6d\xc7\xbf\x8e\x9d\xf6\xbe\xee\x6e\ -\x5f\x37\xa4\xc5\xe2\x61\x5e\x74\xf2\x75\xd6\xc6\x69\xdc\xc6\xbb\ -\x24\x19\x25\x88\x8d\x8d\x2b\x43\x59\x5d\xfe\xfb\xe7\x5f\xce\x86\ -\x89\x56\x49\xb2\xfc\x6f\x55\x7f\x18\xe7\x25\x24\x18\xc4\xe7\xd5\ -\x16\x3b\x31\x3b\x9b\xc4\xab\x34\x59\xa2\x10\xa2\x40\x9c\xe5\x6b\ -\x50\x3f\xd4\xd0\x7f\xa2\xf0\xad\x16\x3b\xc5\x81\x71\x00\x6b\x37\ -\x68\x3f\x2c\xca\x47\x57\x51\x8f\xb6\x95\x34\x59\xe7\xc1\x69\xf1\ -\x7b\x9b\x17\xc5\xaf\x61\x92\x61\xc5\x7b\x83\xe6\x6d\x91\xed\x84\ -\xab\xc5\x10\xfd\xb0\xb6\xc5\xde\xe2\x56\x8b\x71\xf5\xdd\xd3\xe5\ -\x0e\x95\x83\xa4\x99\x36\xba\x88\xcf\x33\x30\xf8\xb7\xa0\x24\x0f\ -\x79\x52\x57\xdb\xcd\xba\x4a\xb3\xc1\x7d\x42\x33\x4b\xda\x69\xcb\ -\xda\xbb\x02\xfa\xae\xde\x2c\xdf\xb0\xee\x7a\x9b\xe6\xcd\x06\x1e\ -\xe8\x0e\x45\x5e\x66\x6f\x2b\x94\xe5\x8b\xa2\xba\x59\x5e\xe7\x4d\ -\x7e\x5e\x64\x6f\xbb\xcf\xbc\xc0\xca\x27\xd1\x05\x96\xbf\x1c\x2a\ -\x59\xf7\x10\x0d\x75\x68\xc9\xfb\xc7\x7a\x5b\x64\xcb\xb2\x2a\x3f\ -\xa2\x82\xbd\x6d\xda\xba\xfa\x90\x2d\xdf\xa4\xe7\x81\x24\xc3\x63\ -\x9f\x6d\xcb\x89\x3a\x62\x94\x87\x20\xb0\xa0\xe5\xf9\xb6\x6d\xf7\ -\x65\xff\xab\xf2\x72\x09\xfc\xb3\x7a\x94\x76\x0f\x05\x12\xa7\x5d\ -\xaa\x51\x96\xc6\xa8\x78\x75\x8d\xe5\x60\xf6\x6c\x5f\x5a\x5d\x5c\ -\x34\x59\xbb\x64\xa3\x6c\x17\xf1\x3a\xae\x3f\x64\x75\xef\x90\x95\ -\x31\x16\x18\x9d\xc7\xc9\x87\x00\x68\x99\x2e\xe3\x04\x65\x67\x5b\ -\xe0\xa8\x72\x90\x50\x01\x56\xe9\xb8\x9e\x84\x63\x8b\xb4\x34\xf4\ -\x42\x29\x26\xc5\xd4\x26\x1f\x68\x0e\xb2\x0f\x79\x14\x49\xba\x53\ -\xd6\x10\x48\x2a\xd1\x13\x8d\x77\x13\xcd\x56\x9b\xb8\xbd\xba\xb7\ -\x9d\xfd\x6e\x88\xf8\xe2\x42\xc4\xf7\x77\x63\xc4\x3e\xec\x34\x4f\ -\x0e\xb1\x67\x2f\x09\xf9\x14\xc2\xb4\x20\x80\xf6\x2f\xa2\x38\x35\ -\xca\x70\x35\xe7\x8a\x7a\xaf\x99\xd3\xe4\x1d\x01\x32\xca\x72\xe6\ -\xed\x5c\x30\x2a\x85\x36\xda\x11\x61\xa9\x55\xde\x58\x37\xe7\x96\ -\x32\xaf\x5d\x90\xf1\x1e\x41\xd9\x79\x77\x77\x04\x5a\x6f\x24\x2a\ -\xdb\x9c\x4b\x6a\xbd\xb5\x1a\x32\x43\xa5\x71\x5a\xdb\xb9\xa3\xd6\ -\x72\xc5\x0c\x64\x82\x3a\x21\xb9\x13\x90\x69\x26\xb4\xe2\xc4\x51\ -\xe9\x98\x93\x5e\x43\xc4\x0d\x66\x95\x8e\x28\xea\xd0\xf3\xd0\x11\ -\xc3\xb4\x5c\x39\xe6\x1d\xe9\x38\x6a\xd1\x27\xc3\xb4\xce\x30\xce\ -\x38\x89\x04\x3a\xa7\x12\xcc\xc3\x50\x50\x63\x9c\xb3\x96\x44\x9c\ -\x7a\xf8\x08\x26\xe7\x3a\xf8\x08\x2d\x14\xbc\x39\x97\x4c\x33\x2c\ -\x0e\x32\xc6\x9d\xd2\x04\x6d\x57\x38\xe3\xb5\x9e\x63\x1c\x29\xd0\ -\x70\x60\x27\x31\x0c\x33\x4e\xcd\x71\x1c\xf2\x4e\x39\xab\x2c\xe1\ -\x1e\x0b\xf0\x1a\x21\xe2\x80\x24\xac\x91\x5a\x10\x29\xa9\x36\x58\ -\x15\x9f\x2b\x8a\x4f\xcf\x6c\x27\x52\xce\x58\x33\x8f\x02\xbe\x12\ -\x9b\xad\x89\x74\x54\x75\x50\xc3\xb5\x43\xda\x93\x84\x48\x0a\x11\ -\x7e\x20\xb4\x5c\x38\xe1\x1c\x82\xf1\x9c\x3b\xa9\xe7\x1e\xe8\x5a\ -\x84\xc0\x61\x25\xc2\xb2\xac\x0f\x17\x27\x1f\x0f\x98\x1f\x18\x28\ -\x61\x1f\xed\xb8\xbb\x6b\xfe\x55\x09\x2a\xb5\x55\x1d\xe1\x18\x70\ -\x1d\xb7\xdb\x3a\x3b\x68\x27\x53\x5b\x40\x9d\x0a\x95\x14\x1d\x3b\ -\x0e\x57\xd3\xc4\x4f\xa1\x78\x12\x33\x91\x3c\x4e\x71\x25\xbf\x09\ -\x8a\x33\xaa\x7b\x96\x7a\x6a\x02\xbb\xc1\x46\xed\x84\xef\x49\xcb\ -\xb4\x95\x44\x18\x6a\xc0\x50\x0b\xf2\x70\x6a\x19\xb3\x41\xc6\xa8\ -\x10\x4c\x0b\x0b\x37\x30\x51\x28\xab\x03\x91\x9d\xe6\xdc\x83\xa0\ -\x8a\x09\x90\x10\x34\xd1\x54\x80\xd9\x7a\x8e\xda\x00\x3e\x08\xce\ -\x49\x18\x83\x33\xd9\xc9\x38\xb3\x4a\x23\x55\x2c\x15\xc6\x31\x29\ -\xba\x8d\xb6\x4c\x23\x1d\xb0\xab\xd6\x82\xa9\xd2\x77\xb3\x6a\xc9\ -\xb8\x24\x78\x47\x60\xca\x84\x08\x30\xad\x32\x9a\x21\x11\x08\xea\ -\x90\x65\x96\x71\xed\xe6\x18\xc7\x4a\xeb\xb9\x0b\x42\x06\x06\x0a\ -\x04\x1d\x85\x2c\x75\x0e\xbf\x9a\x08\x90\x0c\x19\x61\x6c\x16\xa9\ -\x39\x6c\xa4\x44\xf6\x80\x92\x8a\x2a\xf8\x23\x67\x22\x24\x32\x07\ -\x99\xbd\x08\x39\xa8\x95\x45\xa6\xcc\x23\x45\xa5\x37\xda\x5b\x64\ -\x97\xa3\xa1\xfe\x3b\x17\xbc\x05\x96\xa8\x99\x24\x12\xc3\x6a\x85\ -\x57\x8a\x30\x97\x45\xde\x5a\xa7\x4d\x27\x05\x94\x36\x8c\xc9\x42\ -\xee\x06\xaa\xda\xb1\x26\x04\xf7\x63\x0c\x37\x7e\xa4\xb8\x99\x28\ -\xee\x46\x8a\xbb\x47\xc8\xfd\xf5\xa9\xed\x7c\xcc\x3e\x55\xbd\x19\ -\xfb\xab\xa9\xbd\x26\xa1\xd2\xe1\xd2\x66\x8e\x5d\xe3\x7d\x01\x4e\ -\x20\x15\xd8\x6a\xcb\x7c\xa8\x66\xd8\x52\x8e\x9a\x69\xc2\x8d\xee\ -\xb6\x1a\x75\x4d\x70\x83\x32\xc2\x59\xef\x6e\x55\xbf\x57\x9a\x1a\ -\x6f\x98\xf2\x28\x78\x46\x63\xab\x38\xf1\xe0\x36\x0b\xc5\x17\x37\ -\x1e\xd9\x0c\xba\x0f\x85\x5e\x85\xb2\xdd\xdd\x84\x8c\x92\xc1\x0e\ -\x8e\xa2\xab\x51\x42\x81\x30\x8a\xe2\x43\x86\xc6\x82\xf2\xe9\xc0\ -\x7d\x13\x0a\xa0\x1f\xda\x45\xd8\x68\x05\x16\x30\x8d\x3a\x39\xe7\ -\xe1\xdd\x45\x6b\x98\x40\x86\xd0\x15\x22\x12\xa8\xb4\x20\xae\xf4\ -\xc8\xdf\xb9\xd4\x1d\x95\xc0\x52\xe1\xa5\x33\x02\x95\x16\xac\x0c\ -\xeb\x8a\x10\x90\x46\x7a\xa2\x9c\xa3\xfa\x1a\xcf\x3c\x72\xa8\xa7\ -\x30\x16\x36\x67\x68\x0c\x88\x49\x63\x78\x21\x00\x87\xa6\xc8\x12\ -\xe9\x3a\xa3\x2e\x23\xac\x92\xc1\x13\xdc\x86\xd1\x9e\xa7\x0a\xae\ -\x32\xe0\x60\x25\x1a\x51\x00\xc8\x23\x7d\x91\x34\x21\xa7\x7c\x07\ -\x2f\xa4\x21\x83\xd0\xbc\x90\xf4\x0c\x0f\xb6\x3f\x3c\xd9\xe3\x1c\ -\x96\x91\xfb\xda\x2c\x66\x88\xc7\x7d\x92\xc5\x38\x2f\xfe\xe5\x2c\ -\x9e\xce\x9c\x73\xa1\x86\x52\xbd\x63\x31\xe7\x47\x58\x2c\x8f\xb0\ -\xd8\xc8\xe7\xb2\x18\xad\xba\x67\xb1\x47\x83\xee\x59\x2c\x42\xf7\ -\xee\x58\x8c\xb2\x36\xb0\x78\x2a\x70\x38\x0c\x08\xa2\x50\x39\x7b\ -\x16\xe3\x34\xe4\x06\x16\xa3\xfd\xf7\x2c\x46\xaf\xe1\x3d\x8b\x43\ -\xf7\x9f\x87\xd3\xd6\x73\x79\x0c\x8b\x89\xc7\x6e\x8f\xc6\xfc\x08\ -\x8d\x81\xc9\x3e\x8d\x8f\xb0\x98\xeb\xff\x93\xc4\x5f\x9b\xc2\x3c\ -\x11\x4a\x88\x1d\x67\xd3\xf0\x73\xc8\x59\x89\x33\x22\x9a\x31\x3a\ -\xe9\xf3\xc8\x1b\x76\x1d\x97\xe3\x9f\x75\xcc\xd8\x63\x31\xda\x62\ -\xe0\x13\x3a\x5a\x77\xfb\xe0\xe6\x21\xb0\xd6\x8a\x88\x45\xe2\xc9\ -\xe0\xfe\x30\xb8\xed\x67\xff\x8e\x7a\x21\xfb\xf9\x90\x65\xec\xb1\ -\xfb\xc7\x50\xe4\xaf\x1c\x45\x9c\x25\x77\x35\xf4\xb3\x51\x7c\x7a\ -\xa2\xff\x30\x28\xee\xe7\xb0\x99\x52\xd8\x0c\x89\xbb\xf7\xf9\x18\ -\x66\xea\xf5\x61\x76\xc0\xbc\xf1\xee\x79\xcc\xf3\x2f\x88\xe2\x91\ -\x73\xfb\xb7\x81\xa2\x1e\x0e\x15\x72\x3e\xfe\xf5\x26\xe4\x2f\x0b\ -\x2f\x66\xa2\x03\xf5\xb1\xfb\x23\x4d\x5a\x3d\xfd\x8b\x80\x1f\x08\ -\xc1\xf0\x4e\xf1\x45\xc0\x8b\xcc\x6b\x84\x4f\xb8\x2f\x05\xdf\x4b\ -\x9e\x62\xbe\x5d\xf8\xa6\xaf\x42\xbf\x08\x86\xf6\x75\x77\x92\xf0\ -\x65\xf3\xf3\xcf\x30\xaf\x91\x87\xd1\xbd\xd7\x90\x1d\x7e\x6a\x0f\ -\xb3\x7b\xf7\x8f\xbe\x8f\xbc\xe8\x29\xf0\x7b\xc0\xf0\xd8\x2b\xc9\ -\x67\x00\xc9\x5f\xe7\xa1\x26\xfa\xf4\x5b\xc9\x67\x00\x29\x5f\xf4\ -\xed\xee\x7b\x00\x12\xaf\x1f\x5d\x98\xfc\x79\x40\xaa\x17\x7d\x59\ -\xf9\x1e\x80\x1c\xef\xdc\xf3\x80\xf4\xaf\x9e\x91\xc7\x9a\xf5\xe7\ -\xd4\xc8\xa7\xff\x8d\x67\xfc\xaf\x96\xcb\xb3\x93\x55\xf8\xaf\x92\ -\xb3\x93\x3f\x01\x78\x38\x9b\x3d\ -\x00\x00\x0a\x55\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ -\x6f\x61\x64\x5f\x6c\x6f\x67\x69\x6e\x2e\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\ -\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ -\x38\x34\x2e\x32\x36\x31\x35\x31\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\x35\x2e\ -\x30\x33\x36\x33\x36\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ -\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ -\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ -\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x33\x33\x33\x33\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x31\x32\x33\x33\x32\x35\x31\x31\x70\ -\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x35\x34\x39\ -\x36\x33\x37\x33\x35\x2c\x33\x37\x2e\x37\x38\x33\x32\x37\x20\x63\ -\x20\x30\x2c\x30\x20\x38\x2e\x34\x39\x33\x38\x31\x39\x33\x35\x2c\ -\x2d\x32\x33\x2e\x34\x34\x37\x35\x37\x20\x31\x36\x2e\x31\x30\x35\ -\x31\x36\x30\x33\x35\x2c\x2d\x32\x33\x2e\x33\x33\x36\x34\x38\x32\ -\x20\x37\x2e\x35\x30\x31\x38\x37\x38\x2c\x30\x2e\x31\x30\x39\x34\ -\x38\x38\x20\x31\x35\x2e\x37\x31\x35\x39\x31\x39\x2c\x32\x33\x2e\ -\x34\x36\x31\x39\x31\x33\x20\x31\x35\x2e\x37\x31\x35\x39\x31\x39\ -\x2c\x32\x33\x2e\x34\x36\x31\x39\x31\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x38\x38\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ -\x73\x3d\x22\x63\x61\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x33\x33\x33\ -\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ -\x2e\x32\x35\x32\x38\x36\x32\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\ -\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x38\ -\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ -\x35\x2e\x34\x35\x38\x36\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x37\x2e\x32\x31\x35\x36\x35\x30\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x32\x38\x32\ -\x38\x31\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x35\x2e\x36\x39\x30\x38\x31\x37\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\ -\x74\x61\x74\x65\x28\x2d\x30\x2e\x33\x38\x39\x31\x37\x31\x35\x33\ -\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x08\xae\ -\x00\ -\x00\x1e\xc0\x78\x9c\xed\x59\x5b\x8f\xe2\x56\x12\x7e\xef\x5f\xe1\ -\x65\x5e\x12\x2d\x36\xe7\x7e\xa1\xe9\x8e\xb4\x19\x45\x8a\x94\x7d\ -\xd9\x4d\x94\xc7\xc8\xd8\x07\xda\x3b\xc6\x46\xb6\x69\x60\x7e\x7d\ -\xbe\x63\x63\x03\x0d\xcc\xcc\x6a\x7a\xd4\x59\x69\x21\x33\x83\xab\ -\xea\x5c\xea\x3b\x5f\xd5\xa9\x72\x66\x3f\xec\x56\x79\xf0\xec\xaa\ -\x3a\x2b\x8b\x87\x11\x8d\xc8\x28\x70\x45\x52\xa6\x59\xb1\x7c\x18\ -\xfd\xf6\xeb\x4f\xa1\x19\x05\x75\x13\x17\x69\x9c\x97\x85\x7b\x18\ -\x15\xe5\xe8\x87\xc7\xbb\xd9\xdf\xc2\x30\xf8\xb1\x72\x71\xe3\xd2\ -\x60\x9b\x35\x4f\xc1\xcf\xc5\x87\x3a\x89\xd7\x2e\xf8\xee\xa9\x69\ -\xd6\xd3\xc9\x64\xbb\xdd\x46\xd9\x41\x18\x95\xd5\x72\xf2\x7d\x10\ -\x86\x8f\x77\x77\xb3\xfa\x79\x79\x17\x04\x01\xd6\x2d\xea\x69\x9a\ -\x3c\x8c\x0e\x03\xd6\x9b\x2a\x6f\x0d\xd3\x64\xe2\x72\xb7\x72\x45\ -\x53\x4f\x68\x44\x27\xa3\xa3\x79\x72\x34\x4f\xfc\xea\xd9\xb3\x4b\ -\xca\xd5\xaa\x2c\xea\x76\x64\x51\xbf\x3b\x31\xae\xd2\xc5\x60\xed\ -\x77\xb3\xe5\xad\x11\xb5\xd6\x4e\x08\x9b\x30\x16\xc2\x22\xac\xf7\ -\x45\x13\xef\xc2\xf3\xa1\xd8\xe3\xb5\xa1\x8c\x10\x32\x81\xee\x68\ -\xf9\x65\x56\xd3\x1a\x80\xae\xf1\x67\x30\xef\x05\x51\x5d\x6e\xaa\ -\xc4\x2d\x30\xce\x45\x85\x6b\x26\xef\x7f\x7d\x3f\x28\x43\x12\xa5\ -\x4d\x7a\x32\x4d\x8f\xe7\xd9\xaa\x67\x20\x17\xf1\xca\xd5\xeb\x38\ -\x71\xf5\xa4\x97\xb7\xe3\xb7\x59\xda\x3c\x3d\x8c\xb8\x88\x28\xc7\ -\x47\xb6\xc2\x27\x97\x2d\x9f\x9a\x97\xd2\x2c\x7d\x18\x61\xf7\xcc\ -\x9a\xee\xf9\x84\x1c\xb4\x33\x38\x4c\x3c\x1d\x34\x24\xb2\x2c\xa2\ -\x41\x45\x25\xd7\x9d\x4d\xef\xc2\x34\x2d\x13\xbf\x27\x4c\xe9\x56\ -\x59\xbc\x69\xca\x15\x4e\x2d\x49\xf2\xb8\xae\xb3\x45\x96\xe0\xa1\ -\x2c\xd6\xf9\x66\x99\x15\x7f\x54\x65\xf6\x47\xb9\xf6\x82\x3a\xea\ -\xe1\x1b\xd6\x72\xbb\x75\x59\x35\xe1\x2e\x5d\x03\x44\xa5\xaf\x2a\ -\xf7\xa7\xca\xe7\xcc\x6d\xff\x51\xee\xb0\xb9\x80\x04\x9c\xe1\xbf\ -\xd1\x23\xe4\xb3\xd4\x2d\x6a\xaf\xef\x1c\xf5\x4f\xf0\x54\x8f\x82\ -\x49\xab\x1d\xf6\xed\x37\x9d\xfa\x39\x8e\xb6\xf3\xb8\xee\xc0\x0c\ -\x82\x75\xbc\x04\xf1\xf2\xb2\x7a\x18\xbd\x5b\xb4\x9f\x83\x62\x5e\ -\x56\xa9\xab\x7a\x95\x6a\x3f\x67\xaa\x12\x87\x93\x35\xfb\x2e\xd4\ -\x0e\x73\xf7\x6e\xf8\x59\x07\x3d\xb9\xae\xaf\x9f\xe2\xb4\xdc\x3e\ -\x8c\xd8\x4b\xe5\xc7\xb2\x5c\x3d\x8c\x74\x64\xa9\x21\x82\xea\x97\ -\xea\x04\x48\x84\x3a\xa2\x4c\x2b\xaa\x2e\x06\x27\x58\x90\xe9\x48\ -\x50\x6e\xe5\x85\x6e\x53\x55\x88\xc5\x30\x8f\xf7\x0e\x4e\xb5\xff\ -\xd0\x83\x51\xfd\x54\x6e\x97\x95\x07\xa7\xa9\x36\xee\xe5\x48\xaf\ -\x09\xe7\x73\x7f\x08\xd7\xd4\xa0\xc6\xc6\x47\x79\xb8\x29\xb2\x06\ -\x91\xb4\xde\x9d\xce\xba\xc9\x52\x57\x5f\x1f\x58\x17\xf1\x3a\x5c\ -\xe6\xe5\x3c\xce\xaf\x1b\x6c\xb3\x02\x20\x85\x07\xd2\x53\x3e\x9c\ -\xc1\x4b\x8b\x3e\x02\x34\xb1\x37\x2c\x3c\x81\x6e\xa8\xf6\xb7\x55\ -\xab\x78\x97\xad\xb2\x8f\x0e\xc0\xd0\x96\x76\xa0\xd6\x19\x2c\xdd\ -\xb0\x20\x68\xf6\x3e\x9a\x77\x7b\x2f\x1b\xf5\x42\x8f\xa7\x17\x30\ -\x6b\xf5\x20\x2c\xab\x0c\x41\x72\xb2\x9d\x5e\xb4\x3f\x15\xf9\xd8\ -\x47\xea\xde\xf9\x75\x5f\xc8\x3c\xe7\x7a\x9a\x4f\x2e\x79\xde\xca\ -\x57\xae\x89\xd3\xb8\x89\x8f\xa4\xef\x25\xd8\x0b\xe9\x3d\x41\xda\ -\x9c\xfe\xeb\xfd\x4f\x8f\x87\x05\x66\x49\x32\xfd\xbd\xac\x3e\xf4\ -\xeb\x05\x81\x37\x88\xe7\xe5\x06\xc8\x8e\x1e\x07\xf1\x2c\x4d\xa6\ -\x48\x74\x48\x00\x8f\xd9\x0a\x54\xf6\x39\xf2\xef\x48\x6c\xb3\xc9\ -\x51\x71\x66\xec\xc1\x39\x4e\xda\x4d\x5b\xb9\x2e\x63\x5e\xbd\x36\ -\xd2\x64\x95\xf9\x41\x93\x7f\x37\x59\x9e\xff\xec\x17\x39\x78\x7c\ -\x32\x69\xd6\xe4\xee\xb1\x5d\xb3\xfb\xd9\x7b\x31\x39\xb8\x71\x70\ -\x72\x72\xe2\xe5\x6c\xd2\xc3\xd0\x3e\x2d\x8f\xf0\x9c\x45\xc3\x70\ -\xc2\x79\x3c\x77\xa0\xe6\x2f\x5e\x19\x5c\x68\x97\x55\xb9\x59\xaf\ -\xca\xd4\x1d\x86\x0f\xb0\xba\xa4\x19\xce\xac\xd9\xe7\xd0\x2f\xe0\ -\xc6\xf4\x9d\xb3\xf1\x9c\xaa\x7b\xff\x10\x1e\xf2\xc3\x94\x76\x8f\ -\xd5\x26\x47\xfa\x7b\x76\x45\x99\xa6\xf7\x75\x53\x95\x1f\xdc\xf4\ -\x1d\x35\xa9\x5a\x2c\x0e\x8f\x5d\x14\x4c\x59\x44\xb8\x25\x5a\x08\ -\xd6\xcb\x01\x95\xab\x72\xd0\xb4\x99\x8a\x5e\x96\xc6\xc8\x2f\x55\ -\x15\xef\xa7\x05\x6e\xfb\x5e\x3a\xac\x79\xc6\x50\xbf\x5d\xb0\xc2\ -\x0e\xc2\xfe\x8e\x39\xb2\x71\xb8\x60\x8e\xa2\x33\x66\xee\x4f\x1f\ -\x2a\xa8\x44\x04\xca\x33\x76\x22\x84\x09\x8f\xa4\xd2\x44\x73\x35\ -\x9c\xe5\x6c\x1d\x37\x4f\x57\xa1\xb2\xed\x67\x40\xa2\xcb\xcd\xe7\ -\x48\x70\x20\xa1\xa5\x64\x6a\xbd\xeb\x15\x79\x56\x38\x1c\xcd\x74\ -\xbe\x69\x9a\x53\xd9\x7f\xca\xac\x98\xb6\x38\xdd\x86\xc2\xc7\x48\ -\x40\xd5\x58\x07\x49\x40\xc6\xd4\x1c\xff\x3a\x43\xcb\xef\x98\x6b\ -\x65\x43\x75\x14\x0f\x19\xb6\x2c\xb0\x7e\x53\x56\x21\x72\xed\x73\ -\xdc\x6c\x2a\xe7\x63\xfa\xf3\xde\x1a\xe2\xbf\x9f\xf1\x96\x2b\xa1\ -\xb5\x52\xf4\x15\xdd\xd5\x63\x2a\x71\x28\x02\x5f\x78\x4d\xcd\x98\ -\x1c\xff\xba\xf4\xda\x08\xfd\x8a\x3e\x0b\xc3\x35\xd7\x83\xcf\x4c\ -\xf8\xef\x4b\x9f\x19\xb7\x42\x0b\xfe\xdf\x3b\xfc\x35\x41\x01\x7f\ -\xff\x19\x50\x11\x11\xad\xb5\xe5\x63\xaa\x22\x49\x95\xd6\x01\x93\ -\x91\x11\x42\x80\x23\x32\xa2\x82\x58\x4b\xe9\x25\x48\x38\xc7\x57\ -\x04\x09\x15\xe8\x82\xb1\x2f\xcf\x18\xd7\x50\x44\x01\x22\x85\x20\ -\xc6\x7e\x0a\x9b\xdb\x28\x08\x61\x0c\x67\x63\x46\x23\x25\x24\x67\ -\x36\xd0\x91\xe2\xd6\x30\x39\x46\xa1\x21\x35\x15\x8c\x07\x3f\x42\ -\x48\x84\x22\x4c\x8f\x99\x89\x88\x31\x08\xfd\x40\x46\x8a\x31\x8c\ -\x1d\x7b\xdc\x94\xb1\xd4\x42\x44\xac\xc4\x91\x7a\x11\x52\x8e\x30\ -\x32\xf8\x25\xe0\x91\xd1\xf0\x13\x4b\xf0\xc8\x82\xe0\x42\x62\x3e\ -\xd0\x5d\x30\x49\xa5\x17\x0a\xa2\x19\xb1\x10\x51\xae\x09\x97\x7e\ -\x2b\xd6\x4a\xcc\x0d\x91\x06\xe0\xdd\xee\x84\x36\x82\xe9\x20\x0f\ -\x54\x64\x88\x25\x44\x8f\x43\x89\x72\x56\x11\xcb\x7d\x44\x47\x5a\ -\x2a\x29\xcd\x18\xb5\xb8\x92\x46\x48\x15\xa0\xd2\x25\xd4\x08\xeb\ -\x45\x9a\x2a\x82\xcd\x30\x1c\xb0\x31\x52\x79\x11\x65\x0c\xf5\x17\ -\x12\x00\xc2\x21\x02\xa8\x98\xdc\x8b\x89\xa2\x84\xc1\x90\x69\x69\ -\xe8\x98\x61\x73\x4a\x19\xe4\x89\xc8\x48\x8a\x08\xf1\x12\x70\x05\ -\xdb\x85\xad\xe4\x88\x58\x36\x06\x8d\xa9\xd4\x1c\x22\xea\x7f\x29\ -\xcd\x21\x42\xc0\x73\x61\x82\x8f\x17\xa9\x18\x4b\xc9\x2f\x66\xd0\ -\x40\x9a\xa1\x0c\xc0\x75\xe4\x6f\x4e\x54\x5c\x75\xfb\x49\x3e\xd6\ -\x47\x9e\xb9\x3c\xcf\xd6\xb5\xbb\x4a\xb5\x03\x75\xbe\x98\x6a\xd7\ -\x92\x14\x5c\x06\xd7\x08\xdc\x7f\xad\xcb\xa9\x8d\x29\xcb\x78\xc8\ -\x07\x71\x53\xc5\x45\xed\xcb\x0c\x64\xb0\xb8\xa9\xb2\xdd\x77\xfe\ -\x58\xa4\x54\x8c\xb2\xf6\x7c\xad\xc5\xf9\x52\xb0\xcc\xff\xd6\x4a\ -\x70\x21\xa5\xff\x0d\xec\x0d\x28\x24\xc7\x38\xd3\xef\x87\xe9\xda\ -\x82\x1a\x2c\x63\x4a\x58\x75\x5c\xc5\x57\xd2\xa1\xf0\x7c\x50\x18\ -\x73\x76\xb9\xf9\x54\xcc\x38\xe1\x67\x97\x1b\x8b\x2c\x98\xc1\xe9\ -\xe7\x83\xfa\xc4\xe9\x36\xc0\xf1\x79\x89\x22\x3a\x4f\xce\xd8\x9b\ -\xa4\x3d\x10\xd9\x52\x2e\xad\xbf\x19\x04\x27\x0c\xd1\x83\x4c\x68\ -\x18\x97\x6d\x94\x71\xa9\xb8\xd1\x17\x47\x24\x8d\x55\xe1\xe9\x21\ -\x7d\x4d\xea\x6b\xbb\xae\x01\x9a\x34\xab\xd7\x28\xaf\xd0\x33\x7b\ -\x97\xef\x4b\x34\xab\x8b\xbc\xdc\x4e\x9f\xb3\x3a\x9b\xe7\xee\xbe\ -\xfd\x37\xcb\xbd\x2f\xbd\xe8\x12\xe6\xb9\xf3\xdf\x97\x30\x6b\xf4\ -\x58\x08\x63\xf1\x2d\x71\xf6\xd2\x72\xb1\xa8\x5d\x33\x25\x17\xd8\ -\xdf\xaf\xe2\xea\x83\xab\xba\x01\xae\x88\xb1\xf9\x70\x1e\x27\x1f\ -\x7c\x65\x59\xa4\xd3\x38\x41\x63\xb5\xc9\xe3\xc6\x5d\x64\x65\x85\ -\xcb\x53\xd1\x31\xb5\x91\x30\xd6\x58\x1d\x58\xa4\x67\xa6\x6c\x9b\ -\x45\xa5\xb0\xf2\xd6\x11\xd1\x57\xbc\x9d\x98\xa2\x48\x96\x2f\x53\ -\x46\x8f\x79\xa2\xfd\xf7\x2d\x30\xbf\x55\xdc\xb1\xc8\x67\x03\x0f\ -\x1b\xae\x74\x8b\xe4\x1f\x84\xbe\x50\x45\xc2\x1e\x83\xe3\xd2\x2a\ -\x22\x6e\xc2\x16\xda\xd7\x03\xee\x0b\x32\x80\x36\xcc\x68\x66\xd4\ -\x1b\xa4\x80\x63\x99\xe3\x5f\x24\x28\x2a\x94\xf5\x05\x21\xbd\x49\ -\xa9\x57\x44\xe6\x46\xc1\x73\x82\x95\xd7\xfe\x65\x8a\x44\xe6\x19\ -\x65\x88\x42\x4d\x82\xb2\x82\x4a\xcb\xa5\xcf\xa0\xb8\x48\x8d\x46\ -\x06\xc5\xb5\xc4\x04\xd5\x97\xe9\xd2\x57\x89\xe1\x2b\x16\xd3\x7f\ -\x65\x42\xb5\x71\x87\x68\xb3\x40\xc9\xa2\xd4\x63\x82\x5b\x1a\x18\ -\xdc\x24\x04\x25\x16\x38\x86\x8a\x8a\x6a\x66\x6f\xb2\xeb\x35\x3b\ -\xad\x33\xa0\xae\x55\x30\x34\x22\xa8\x68\x95\xa0\xf4\x2d\x80\x22\ -\x91\x90\x8c\x0a\x04\x1b\x9a\x5b\xe9\x21\xeb\x81\xe2\x3d\x50\x97\ -\xe5\xd1\x80\x93\x0d\xd9\x57\x22\xd5\x57\x91\xdd\xdb\xac\xb8\x4a\ -\x46\xdf\xe4\x6a\xfe\x6c\x5b\x03\xac\x3e\xba\xaa\x3c\xb6\x35\xdc\ -\xc8\x23\x75\x0f\x94\xfe\x1f\xba\xb5\x8f\x95\xec\xc9\x6b\x96\x01\ -\xed\xb6\x02\x45\x68\xa0\x6d\xa2\xea\x8a\x1a\xd5\xa5\x8d\x38\x30\ -\x30\xea\xca\xe8\xae\x22\xd5\x16\xdd\xd2\x95\xc1\xdd\x7b\x17\x8b\ -\x89\xb9\xe1\xe7\x6c\x0b\x95\xef\xc6\xf4\x78\x98\x3b\x88\x83\x7e\ -\xa2\xf1\x30\x26\xf0\xaf\xdd\x69\x10\xfa\x56\x0b\x5d\x92\x90\x9d\ -\x0a\xcd\x11\xfd\xa4\xb5\x11\xaa\xed\xdf\xfc\x4f\xa2\x34\x7a\xc3\ -\xdb\xe6\x1c\x9d\x22\xca\x18\x36\xc6\x75\x8c\xc2\x97\x23\x9f\xa3\ -\x8f\x43\x0b\xa6\x14\x21\xc6\x9b\x53\x8d\x84\x2a\x4f\xba\xa5\xc1\ -\xc1\xba\x89\xab\xe6\x6a\x2b\xe4\x8a\xd4\xbf\x88\x42\x7b\x86\xc5\ -\x8f\xd0\x5c\x6f\x1f\xd0\x9f\xe2\x0a\x51\x5d\xfb\xa0\x51\xd7\x08\ -\x3e\x6e\x7f\xa2\x5c\x91\x5d\xdf\x87\x46\x58\x2b\xdb\x35\x0f\xff\ -\x0f\x9f\xb7\x0a\x9f\xf0\x46\x00\xa1\x37\x31\x56\xa0\xeb\xbb\x1e\ -\x40\x21\x13\xe8\xda\xa4\x22\xd7\x62\xe4\x10\x41\xd4\x72\xa2\x6f\ -\x87\x90\x7f\x1f\x70\x1e\x41\xa8\x94\x40\x2e\xca\xd0\x69\x0e\xd3\ -\x1f\x82\xa8\x9d\x6b\xdc\x0f\x3b\x0d\x22\x25\x4d\xa7\x00\xa7\xd5\ -\x27\x6d\xfd\x5b\x0a\x34\x62\x6d\x04\x69\x4e\x6f\xdb\xb6\xf1\xc3\ -\xb9\x38\xc4\x0f\xa6\x3e\x84\x8f\xb4\x86\xb5\xe1\x83\x82\xee\x5b\ -\x46\x0f\x91\x86\x09\x22\xda\x88\x41\xf7\xcd\x49\xd7\x7b\xfb\xdf\ -\x92\xb6\x3d\x39\xf1\xef\xa0\x38\xb2\xcd\x49\xf8\xcc\x26\xcb\xc7\ -\xbb\x99\xff\xbf\x07\x8f\x77\x7f\x02\x11\xca\xfc\x10\ -\x00\x00\x06\xfa\ -\x00\ -\x00\x20\xf8\x78\x9c\xdd\x59\x59\x8f\xdb\x36\x10\x7e\xdf\x5f\xa1\ -\x2a\x2f\x09\x6a\x49\x3c\x74\xc7\xde\x3e\x24\x48\x13\xa0\x45\x81\ -\x36\x69\x1f\x03\x5a\xe2\xda\x6a\x74\xb8\x94\xb4\xb6\xf3\xeb\x3b\ -\xd4\x41\x49\xb6\x0c\x6c\xe0\x6c\xba\xa9\x16\x0b\x93\x33\xc3\x63\ -\xbe\xb9\x48\x69\xf9\xd3\x21\x4b\xb5\x7b\x2e\xca\xa4\xc8\x57\x3a\ -\x36\x91\xae\xf1\x3c\x2a\xe2\x24\xdf\xac\xf4\x0f\xef\xdf\x18\xbe\ -\xae\x95\x15\xcb\x63\x96\x16\x39\x5f\xe9\x79\xa1\xff\x74\x7b\xb3\ -\xfc\xc1\x30\xb4\x57\x82\xb3\x8a\xc7\xda\x3e\xa9\xb6\xda\xbb\xfc\ -\x53\x19\xb1\x1d\xd7\x9e\x6f\xab\x6a\x17\x5a\xd6\x7e\xbf\x37\x93\ -\x8e\x68\x16\x62\x63\xbd\xd0\x0c\xe3\xf6\xe6\x66\x59\xde\x6f\x6e\ -\x34\x4d\x83\x75\xf3\x32\x8c\xa3\x95\xde\x0d\xd8\xd5\x22\x6d\x04\ -\xe3\xc8\xe2\x29\xcf\x78\x5e\x95\x16\x36\xb1\xa5\x0f\xe2\xd1\x20\ -\x1e\xc9\xd5\x93\x7b\x1e\x15\x59\x56\xe4\x65\x33\x32\x2f\x9f\x8d\ -\x84\x45\x7c\xa7\xa4\xe5\x6e\xf6\xb4\x11\xc2\x41\x10\x58\x88\x58\ -\x84\x18\x20\x61\x94\xc7\xbc\x62\x07\x63\x3a\x14\xf6\x38\x37\x94\ -\x20\x84\x2c\xe0\x0d\x92\x0f\x93\x0a\x0f\x29\x40\x71\x71\x33\x0d\ -\x77\xbc\x3a\xc0\xbf\x83\x7f\x35\xa0\x27\x98\x65\x51\x8b\x88\xdf\ -\xc1\x48\x6e\xe6\xbc\xb2\x5e\xbf\x7f\xad\x98\x06\x32\xe3\x2a\x1e\ -\x4d\xd3\xa3\x3f\x59\x77\x62\x92\x9c\x65\xbc\xdc\xb1\x88\x97\x56\ -\x4f\x6f\xc6\xef\x93\xb8\xda\xae\x74\x6a\x9b\x98\xc2\xe3\x34\xc4\ -\x2d\x4f\x36\xdb\xea\x94\x9a\xc4\x2b\x1d\x74\x25\x81\xdf\xf6\x47\ -\xae\x84\x5b\x81\x6e\xe2\x50\x71\x90\x19\x10\x13\x6b\x02\x3b\xd4\ -\x6b\x65\x7a\x15\xc2\xb8\x88\xe4\x9e\x60\x4a\x9e\x25\xac\xae\x8a\ -\x0c\x6c\x1c\x45\x29\x2b\xcb\xe4\x2e\x89\xa0\x53\xe4\xbb\xb4\xde\ -\x24\xf9\xc7\x24\xdb\x15\xa2\xfa\x58\xee\x78\x54\x09\x96\x7e\x4c\ -\x93\xb5\x60\xe2\x68\xf6\xc0\xab\x75\xf9\x41\x0a\x1a\x87\x78\x07\ -\x80\xba\xde\x2c\xf3\xd8\x33\x6f\x81\xbb\x8c\xf9\x5d\x29\xa5\x5a\ -\xed\x64\x0f\xd4\x6b\x79\xc0\x05\x63\x71\x26\x7e\x16\x2c\x4e\xc0\ -\x45\x5b\xb9\xd1\x8c\x51\x91\xa6\xb0\xa5\x95\xce\xd2\x3d\x3b\x96\ -\xba\x12\x80\xa9\xa6\x43\x9d\x00\xd4\xbf\xed\xf8\xcb\xb2\x2a\x76\ -\xbd\x2c\x20\x52\x1d\x53\x09\x03\x10\x0d\x98\xb1\x10\xe1\x33\xf0\ -\x2a\xe4\xa3\x97\x0d\xa9\x00\xa3\x25\xd5\x31\xc4\x2f\xf5\x61\x4c\ -\x71\x77\x57\x72\x58\x18\x8d\x68\x8d\x79\x60\x04\xac\x45\x75\xcd\ -\xba\x6e\x35\x34\xb7\x1a\x9e\x5f\xcd\x51\xab\x2d\xad\xa9\xda\xd7\ -\xc1\xd8\xc4\x4a\xb8\x15\x1c\x62\xfb\xd9\x0c\x9e\x97\xe1\xa6\x88\ -\x78\x8a\xbd\xe9\x88\x1f\xf2\xa4\x82\x20\xae\x4b\x2e\xfe\x90\x81\ -\xf0\x5b\xfe\xa1\xe4\x67\x52\xef\x05\xcb\x4b\x88\xba\x6c\xa5\x83\ -\x43\x8a\xe4\xf0\x1c\x7c\xd8\xa7\xbe\x83\x49\xb0\x40\xf2\x6f\xe8\ -\x62\xd3\xa3\x01\x26\xc4\x5b\x40\x40\xfa\x01\xc6\xc8\xc6\xf8\xc5\ -\xb0\x7f\x0c\x90\x39\xaa\x7b\x84\x2e\x21\x03\x97\xac\x74\x7b\x60\ -\x42\x8f\xa2\x0e\xc8\xa5\x25\x1d\xb1\x69\xa9\x70\x91\xb1\x12\xdf\ -\x27\x7c\x3f\x78\xeb\x9a\xa9\xfd\xef\xd8\x86\x37\xd6\x04\xa4\xee\ -\x9a\xa7\x63\xac\x0b\x11\x73\xd1\xb3\xdc\xe6\x99\xb0\x3a\x83\xb7\ -\xf5\xe0\x66\x6a\x18\x39\xab\xe2\xa3\x79\x7e\xb9\x65\x71\xb1\x07\ -\xcd\x4e\x99\x9f\x8b\x02\x30\x74\x4c\x27\xf0\x03\x84\x4f\xb9\xd1\ -\x61\xa5\x1b\x0e\x31\x1d\x3f\x70\x6d\xf7\x8c\x0b\xeb\x51\x62\x12\ -\x70\xcb\xe0\x9c\x59\x0b\x01\x86\x32\x52\x76\xe4\xa0\x54\xf3\xd3\ -\xcf\x5f\x6e\x8b\xfd\x46\x48\x70\x2a\x51\xf3\xd3\x91\x92\x63\xac\ -\xd7\xc5\x61\x9e\x0d\x19\xa9\x96\xa5\xc8\xa8\x5b\x4f\xd9\x1d\xc6\ -\xb3\xd6\x49\xcc\xcb\xf9\x81\xfb\x24\x07\x0c\x8c\x2e\x95\x62\xea\ -\x9e\xed\xb9\x93\xe8\xf3\xaa\x87\xfc\x0b\x12\x87\x21\xa6\x4f\x59\ -\xc7\xcb\xac\x8c\x1d\x92\x2c\xf9\xcc\xe3\x21\x46\x95\x48\x99\xb3\ -\x9d\xb1\x49\x8b\x35\x4b\xbb\xdd\x77\x51\x39\x81\xa5\xf7\xc3\xea\ -\x28\x8b\xc8\xe1\x28\x69\x93\x00\x93\x04\xea\xb9\x83\x3b\x17\x22\ -\x81\xdc\x7c\x18\xe7\xa0\x96\x74\x1c\x93\x64\xc9\x81\xf3\xc5\xa1\ -\xf1\xaf\xc6\xfb\xbc\x53\xde\x71\xcc\xeb\x03\xe0\xdc\xef\x1b\x7a\ -\xc6\x2b\x16\xb3\x8a\x0d\x41\xd0\x53\x48\x10\xa0\x5e\x33\xa8\xf5\ -\xe1\xef\xaf\xdf\xa8\x0c\x18\x45\xe1\x5f\x85\xf8\x34\x24\x2f\x29\ -\xc0\xd6\x45\x0d\xa6\x50\x59\x59\x16\x83\x28\x94\x91\xcf\xaa\xdb\ -\x24\x03\xd7\x96\x85\xfd\x47\xa8\xaf\x10\x8e\x8a\x31\x11\x96\x60\ -\x0d\x93\xb6\xd3\x0a\xde\x16\xee\xd9\xb3\x4e\x1c\x65\x89\x1c\x64\ -\xfd\x51\x25\x69\xfa\x4e\x2e\x32\xca\xd4\xdd\xa4\x49\x95\xf2\x51\ -\xfa\xb6\xba\xdd\xf7\x19\x76\xa4\xdc\xd2\xea\xb5\x6f\x7a\x9b\x01\ -\x95\x49\x50\x28\x43\xa7\x6c\xcd\xc1\x09\x7e\x91\x4c\xed\x8c\xbb\ -\x11\x45\xbd\xcb\x8a\x98\x77\xc3\x15\x9a\x90\x9b\x95\xc9\xda\xea\ -\x71\x07\xbb\x0f\xbb\x44\xf3\x52\x76\x46\x55\xaa\xe9\x8a\x3a\x85\ -\x82\x7b\xcf\xf3\x22\x8e\xa1\xb0\x88\xe2\x13\x97\x75\xc6\xf6\x11\ -\xea\xba\x6d\xb4\x84\xaa\x2b\x13\x38\x6c\x23\x2c\xff\xa9\x99\xe0\ -\x63\xea\xdf\x45\x92\x87\x80\x1b\x17\x3d\xb5\xe9\xa4\xe0\xf1\x55\ -\x68\xf7\xb4\x98\x41\x26\x12\x82\x1d\xc3\x1c\x0e\xaf\x63\x6a\x5b\ -\xbd\x86\x95\x54\x89\x33\x69\xf7\x4c\x1c\x5d\xaa\x4b\x83\x60\x28\ -\x2f\xb3\x27\x24\xf9\xcc\x9f\x92\xe4\x33\x89\x0a\xf0\xef\xc0\xb4\ -\xa1\x52\x20\xea\x72\x03\xbb\x8a\x21\x26\x62\x42\xe6\x3c\x93\xc2\ -\x49\xc9\x0d\xfc\xa1\xa2\xee\x58\xb5\x9d\x43\x7f\xa4\x65\x5b\xc1\ -\x4f\x91\x25\xed\xa6\xa8\x6d\x9f\x42\xbc\xae\xab\xea\x6b\x01\xac\ -\xec\xae\xf4\x00\x08\x7f\xd5\xa0\x4c\x6a\x7f\x6a\x3d\x30\x53\x80\ -\xa5\x46\x10\xad\x03\x0e\xa3\x83\x40\x0e\x3b\xac\x0a\x61\x40\x8e\ -\xbf\x67\x55\x2d\xf8\x24\x97\xa8\x9c\x00\x4e\x2a\xc3\x08\xd2\x71\ -\x14\x7d\xef\x50\x29\x90\x16\xaa\xa5\xbd\xd5\xd0\x1c\x64\xfe\xd3\ -\x81\x0c\x9b\x60\x41\x44\x1c\x7f\x77\xf8\x72\xcc\x2e\x20\xa1\xaa\ -\xc0\x82\xf8\xa6\xaf\xbd\xd2\xa8\x49\xda\xe6\x59\xe3\x0c\x1d\xea\ -\x79\xc4\x40\x0f\xc6\xe7\xab\xf8\x0c\xf6\x1c\x1b\x3b\xce\x57\x43\ -\x20\xd3\x9c\x3e\x25\x2d\xa8\x63\x12\x2d\x82\x38\x32\x6c\x93\x34\ -\xa0\x5c\x6a\x9f\x43\xe1\xdb\x8f\x07\x84\xcf\xcf\x3d\xa1\xb3\x1a\ -\x79\x14\x57\xc0\xd4\xf4\x5b\x9d\x3b\x85\x25\x8d\x80\x2b\x60\x64\ -\x76\x5d\xc5\xd0\xb0\xbb\x00\x0f\xd1\x52\x05\xe4\x22\x30\xdd\xbe\ -\x63\x2f\xfa\x38\xd7\x3c\xd3\x6e\x46\x2c\x14\xa0\xbe\xe9\xb4\x32\ -\x30\xfe\x0c\x51\x1b\x51\xef\x1b\x22\x0a\xa6\x6f\x76\x15\xd0\x6f\ -\x91\x8e\x66\xca\xe0\x13\x35\x81\x41\xbf\x38\xff\x29\xb9\xaa\xbf\ -\xd6\x19\x11\x9c\xf0\xb9\x30\x9a\x13\xe9\x4c\x0d\x3a\x13\x84\xb2\ -\x6c\x9c\x9e\x4f\x9f\x5c\xe2\x18\x2c\x71\x65\xe2\x30\x1e\x5e\x63\ -\x9e\x28\x14\x04\xf7\x8e\x77\x2d\x14\xc1\x77\x0f\x85\xfb\xb5\xbc\ -\xe2\xbb\xaf\xac\x94\x5c\x8d\xc1\xc3\xb3\xcf\x13\xc5\x40\xa6\xe6\ -\x2b\x31\x78\xf8\xa1\xfd\x29\x1e\x31\xb3\xf1\x11\x93\xb6\x05\xc8\ -\x03\x38\xfa\xa2\x44\xe1\xd6\x72\xa1\x7d\xe1\xc0\x69\x90\xff\x0d\ -\x20\xd8\xef\x4b\xf3\x55\x80\xe0\xef\x1a\x90\xc9\xb1\x87\xa8\x4b\ -\x48\xd3\x3c\x6b\x5c\x82\xe0\x5b\x26\x8a\xc7\xf5\x89\xfe\x90\x76\ -\x65\x90\xd8\xff\x1b\x40\x94\xb2\xd7\x01\xf2\x58\x27\x8b\xee\x8d\ -\xdc\x04\x10\xdb\x74\xb0\xeb\x39\xc1\x7f\xf1\x6e\x43\x46\xc9\x28\ -\xd3\xbe\xd5\x48\xd0\x5d\x25\x66\x90\xf1\x1f\x9e\x4b\xaf\x7d\xbd\ -\x51\x8b\xf4\xf9\xc9\x17\x25\xf9\xc9\xe8\xc5\x43\xdf\x65\x9e\x5d\ -\x7d\x4f\xfc\xc5\x36\x29\x54\x6f\x97\x2e\xe0\xe6\x80\xa9\x07\x52\ -\xb2\xea\xca\x6b\x04\xf2\x3c\xdf\x01\x27\x81\xb6\x8f\x69\xe0\xb9\ -\x0b\x64\xfa\xc8\xc5\x01\xc2\xce\x88\xd8\x35\x1c\xed\x4f\x6d\xb8\ -\x7d\xbd\x85\x6b\x94\xeb\xd9\x0e\xf1\xbc\x76\xb6\xc0\xf5\x3c\xd8\ -\x36\x4c\x07\xe7\x7f\x9f\x10\xea\x3a\x74\x01\x8b\x7b\x8e\xe7\xc9\ -\xab\xd8\x1c\x31\xd5\xba\x0f\x58\xa4\xff\x92\x45\x7a\x8a\xfc\x8a\ -\xd5\x51\xa2\xe6\x0d\x1e\x98\xcf\x0b\x10\x02\xbf\x37\xce\x67\xa5\ -\x63\x22\x58\x96\x98\x36\xec\x16\xee\x21\x9e\x1b\x20\xdf\x6f\x4f\ -\x19\x9d\xc6\xb6\x0f\xca\x75\x8a\xe2\x85\xa1\xb4\x53\xad\x11\xed\ -\xf3\xd9\xdb\x58\x87\xda\x5f\x7a\x2b\x59\x5a\x9b\xdb\x9b\xa5\x7c\ -\x81\x7f\x7b\xf3\x2f\x9c\x31\x79\xe2\ -\x00\x00\x06\x71\ -\x00\ -\x00\x16\x14\x78\x9c\xed\x57\x6d\x8f\x9b\x46\x10\xfe\x7e\xbf\x82\ -\x72\x5f\x12\x15\x96\x7d\x7f\x71\x6c\x47\x6a\xa3\x48\x91\xda\x2f\ -\x6d\xaa\x7e\x8c\x30\xac\x7d\x34\x18\x2c\xc0\x67\x3b\xbf\xbe\xb3\ -\x18\x30\xbe\xf3\xe9\x1c\xe5\x22\x45\x55\xad\x44\xa7\x9d\x99\xdd\ -\x9d\x9d\x79\x66\xe6\x61\xfa\x76\xbf\xce\xbd\x7b\x5b\xd5\x59\x59\ -\xcc\x7c\x82\xb0\xef\xd9\x22\x29\xd3\xac\x58\xcd\xfc\xbf\x3e\xbe\ -\x0f\xb5\xef\xd5\x4d\x5c\xa4\x71\x5e\x16\x76\xe6\x17\xa5\xff\x76\ -\x7e\x33\xfd\x29\x0c\xbd\x5f\x2b\x1b\x37\x36\xf5\x76\x59\x73\xe7\ -\x7d\x28\x3e\xd7\x49\xbc\xb1\xde\xab\xbb\xa6\xd9\x4c\xa2\x68\xb7\ -\xdb\xa1\xac\x13\xa2\xb2\x5a\x45\xaf\xbd\x30\x9c\xdf\xdc\x4c\xeb\ -\xfb\xd5\x8d\xe7\x79\x70\x6f\x51\x4f\xd2\x64\xe6\x77\x1b\x36\xdb\ -\x2a\x6f\x0d\xd3\x24\xb2\xb9\x5d\xdb\xa2\xa9\x23\x82\x48\xe4\x9f\ -\xcc\x93\x93\x79\xe2\x6e\xcf\xee\x6d\x52\xae\xd7\x65\x51\xb7\x3b\ -\x8b\xfa\x76\x64\x5c\xa5\xcb\xc1\xda\x79\xb3\x63\xad\x11\x31\xc6\ -\x44\x98\x46\x94\x86\x60\x11\xd6\x87\xa2\x89\xf7\xe1\xf9\x56\xf0\ -\xf1\xd2\x56\x8a\x31\x8e\x40\x77\xb2\xbc\xce\x6a\x52\x43\x40\x37\ -\xf0\x7f\x30\xef\x05\xa8\x2e\xb7\x55\x62\x97\xb0\xcf\xa2\xc2\x36\ -\xd1\xbb\x8f\xef\x06\x65\x88\x51\xda\xa4\xa3\x63\xfa\x78\x9e\xdd\ -\x7a\x16\xe4\x22\x5e\xdb\x7a\x13\x27\xb6\x8e\x7a\x79\xbb\x7f\x97\ -\xa5\xcd\xdd\xcc\x67\x12\x71\xac\xb5\x69\x65\x77\x36\x5b\xdd\x35\ -\x0f\x84\x59\x3a\xf3\xc1\x77\x6a\xb4\x68\xd7\x23\x68\x90\xa3\x41\ -\x77\xec\x64\xd0\x60\x64\x28\x22\x5e\x45\x04\x53\x47\x9b\xfe\x01\ -\x93\xb4\x4c\x9c\x47\x70\xa4\x5d\x67\xf1\xb6\x29\xd7\x90\xb3\x24\ -\xc9\xe3\xba\xce\x96\x59\x02\x8b\xb2\xd8\xe4\xdb\x55\x56\x7c\xaa\ -\x37\x36\x69\xaa\x38\xff\x94\x66\x0e\x6f\x89\x45\x7d\x08\x87\x1b\ -\xed\x7e\x53\x56\x4d\xb8\x4f\x37\x10\x48\xa9\x2e\x2a\x0f\x63\xe5\ -\x7d\x66\x77\xbf\x94\x7b\x70\xd1\xc3\x1e\xa3\xf0\xcf\x9f\x83\x7c\ -\x9a\xda\x65\xed\xf4\xc7\xe7\xba\x15\xbc\x57\xf9\x5e\xd4\x6a\x07\ -\xef\x9d\xeb\xa9\x3b\xe3\x64\xbb\x88\xeb\x63\x40\x3d\x6f\x13\xaf\ -\x00\x7c\x79\x59\xcd\xfc\xdb\x65\xfb\xeb\x14\x8b\xb2\x4a\x6d\xd5\ -\xab\x64\xfb\x3b\x53\x95\x90\xa0\xac\x39\x1c\xcb\xad\x3b\xbb\x7f\ -\x86\x3b\x75\xd0\xe3\xcb\xfa\xfa\x2e\x4e\xcb\xdd\xcc\xa7\x0f\x95\ -\x5f\xca\x72\x3d\xf3\x05\x12\x46\x1b\x8c\xcd\x43\x75\x02\x91\x08\ -\x35\x43\x02\x4b\x4a\xf8\x23\x2d\x5c\x28\x11\xc6\x4a\x1b\x4a\x1e\ -\x29\xb7\x55\x05\x05\x19\xe6\xf1\xc1\xc2\xab\xda\x3f\xbd\x51\x7d\ -\x57\xee\x56\x95\x8b\x4e\x53\x6d\xed\xc3\x9d\x4e\x13\x2e\x16\x2e\ -\x0b\x97\xd4\x80\x90\xad\x2b\xf5\x70\x5b\x64\x0d\x94\xd3\x66\x3f\ -\x3e\x75\x9b\xa5\xb6\xbe\xbc\x71\x97\x15\x10\x84\xb0\x03\x36\x61\ -\x43\x8c\x1f\x5a\xf4\x30\x57\x58\x3f\x61\xe1\x00\xf2\x84\xea\xf0\ -\xb4\x6a\x1d\xef\xb3\x75\xf6\xc5\xc2\xbb\x1f\x85\xab\x2e\xe2\x4d\ -\xb8\xca\xcb\x45\x9c\x77\xde\xcf\x5b\x8b\xe9\x59\x58\x8e\x9b\x3c\ -\xaf\x39\xb8\x92\xde\x1f\x9c\xcc\xef\x85\x2e\x9e\x4e\xc0\x94\x14\ -\x83\xb0\xac\x32\xa8\x95\x91\xbf\xbd\xe8\x30\x16\xb9\x06\x00\xfd\ -\x7b\xdf\x02\xac\x85\x9f\x7a\xa8\x3b\x8c\x75\x1d\xee\xa3\xc7\xc0\ -\x6f\xe5\x6b\xdb\xc4\x69\xdc\xc4\xa7\x2a\xe8\x25\xd4\x18\xdc\xbf\ -\x0c\x7a\xe9\xe4\x8f\x77\xef\xe7\xdd\x45\xd3\x24\x99\xfc\x5d\x56\ -\x9f\xfb\x7b\x3d\xcf\x19\xc4\x8b\x72\x0b\xa9\xf0\xe7\x83\x78\x9a\ -\x26\x13\xe8\x7e\xd0\x17\xe6\xd9\x1a\xb0\xed\x1a\xe7\xcf\xd0\xed\ -\xa6\xd1\x49\x71\x66\xec\x82\x75\x3a\xf4\x78\x6c\x65\x8f\x6d\xf4\ -\xe2\x2c\x49\x93\x75\xe6\x36\x45\x7f\x36\x59\x9e\x7f\x70\x97\x74\ -\x2f\x1e\x1d\x9a\x35\xb9\x3d\x09\xa7\x51\xe7\x7d\xf7\xb6\x68\xf4\ -\xb8\x69\xd4\xbf\xbe\x5d\xad\x4e\x51\x39\x2b\x8a\x21\xd1\x79\xbc\ -\xb0\x00\x82\xdf\x9c\xd2\x7b\xa4\x5d\x55\xe5\x76\xb3\x2e\x53\xdb\ -\x6d\xef\xa3\xb9\x89\x9b\xbb\x21\x65\xcd\x21\x07\xfd\x12\xbc\x9f\ -\x14\x30\x84\xdf\xd4\x4d\x55\x7e\xb6\x93\x5b\x6a\x53\x18\x35\xdd\ -\xf2\x58\x09\x13\x8a\xb0\xd0\x52\x43\x89\xf7\xf2\x3c\x2b\x2c\xdc\ -\x35\x59\x6c\x9b\x66\x2c\xfb\xa7\xcc\x8a\x09\x84\xc6\x56\xbd\xb4\ -\x5d\xe4\x00\xea\x66\xc2\x7b\x59\x1a\x43\xb7\xa9\xaa\xf8\x30\xbe\ -\x3a\xec\x3a\xd4\x84\x0c\xb8\x72\xa8\xf0\x18\x47\x8a\x6a\xc2\x59\ -\x10\x32\xc4\x8c\xd2\x5c\x70\x2f\x24\x88\x61\x4c\xa8\x08\x18\xc2\ -\x94\x73\x89\x89\xf4\x18\xa2\x58\x08\x4a\x03\x83\x94\xd1\x58\x2b\ -\x05\x86\x14\x69\x42\x8c\x30\x01\x47\x92\x72\x62\xa8\x80\xcd\x14\ -\x71\xad\x29\x57\x01\x9c\x03\x52\x4e\x94\x17\x0a\xa4\x08\x87\xc3\ -\x03\x8a\x14\x37\x92\x50\x2f\x34\x88\x48\x62\x60\x00\xb9\x5b\x8c\ -\x81\x06\xe7\x85\x1a\x19\x81\x29\x55\x1a\x0e\x14\x94\x33\x71\x56\ -\x5c\x2e\xc4\x1c\xb3\x53\x69\x9c\x9a\x5d\x59\x40\xc8\x9a\xb2\x0a\ -\xa1\xed\xdd\xc7\xcd\xb6\xb2\xae\xbc\x7a\x7c\x4c\x2b\x50\x5e\x4a\ -\xce\x2d\x86\x37\xa5\xfc\x8d\x5b\x9c\x42\x74\x5c\x56\xdb\x1c\x66\ -\xd4\xbd\x2d\xca\x34\x1d\x12\x88\xdb\xdf\x79\x02\x31\x52\xca\x08\ -\x41\xa4\x7e\x89\xb4\xb8\x87\x3a\x77\xa1\x52\xd9\x20\xec\x7a\xa6\ -\x42\x52\x4b\xce\xb4\x1c\x14\x7d\xab\x94\x88\x01\x89\x91\xe4\x14\ -\x9b\xbd\xeb\x9f\x48\x68\x3e\x48\xa0\x83\x08\x86\x14\x66\x00\xb5\ -\x41\x58\xed\x5b\x3a\x00\xa9\x00\xff\x4f\x17\x56\xed\x2c\x33\x42\ -\x52\x6a\xa4\x19\xc4\x30\xee\x8b\xda\xd5\x38\x60\x27\x6e\xaa\x6c\ -\xff\x8a\x04\x38\x00\xd6\xa3\x25\x56\x5c\x60\x1d\xc0\x95\xd8\x60\ -\x26\xa9\x04\x05\x7e\xfd\x38\x55\x97\x28\xc1\x25\x83\x81\x16\x5c\ -\x4c\xe2\xd3\x8e\x10\xcc\x05\xd5\xc2\x39\xa2\x85\xc6\x4c\xab\x73\ -\x47\xaa\x63\x23\x25\x42\x48\xfd\x5c\x14\xc0\x94\x03\x9a\x15\xe6\ -\x67\x71\x15\x1a\x69\x8e\x05\xe6\x17\xd2\xa0\x08\xa5\xfc\x9a\xcc\ -\xf5\x79\x86\x69\x31\xea\xf5\xe7\xd8\x8c\x63\xc0\xda\xb7\x62\x93\ -\xc2\xc0\x30\xe6\x9b\xb0\xf9\x7c\x1d\x2d\x97\xed\xdd\xdf\xe8\xab\ -\x34\xd0\x75\xb0\x7a\xc9\x32\x82\xf0\x9a\xeb\xcb\x48\x21\x22\x38\ -\x74\x39\x71\x96\x6e\x8c\x88\x51\x1c\xab\x31\x2e\x18\x43\xe0\xac\ -\x32\xe4\x9a\x4a\x02\xbc\x41\x43\xd4\x5a\x3f\x5f\x48\x4a\x62\xc6\ -\x0d\x60\x16\x49\x6e\x04\x61\x86\x1d\xe1\x3b\xa4\xe0\xaa\x39\xb3\ -\x5c\x9a\x98\xa4\x3f\xcc\x9c\xf9\xdd\xcd\x19\xc6\xe0\x8b\x45\x07\ -\xa1\x42\x98\xc1\xbb\xa4\xf1\x20\x86\xae\x3e\x15\x0c\x1f\x0e\x34\ -\x56\x1a\x26\x60\xce\x48\x04\x33\x83\x05\x30\x31\x0c\x21\xc2\x19\ -\x71\x46\x19\xa7\x01\xc1\x88\xc3\x17\x0b\x67\x1e\x85\x38\x73\x8e\ -\x0d\x0f\x34\x58\x61\x43\xb5\x47\x04\x82\x56\x05\xa5\x17\x10\x82\ -\x04\x54\x27\xf7\x80\x1a\x4b\xc5\xe0\x8c\x80\xc0\x78\xe2\x50\xf2\ -\xa6\x9d\x58\x9a\x1a\xc8\x72\x40\xdc\x00\x72\x3d\xeb\xe2\x8c\x09\ -\xd9\xd7\x4f\x99\xab\x52\x83\x21\xbf\xda\xfe\x30\xa9\x01\x0a\x20\ -\x20\x0e\x86\x2a\x03\x98\xe3\xae\x65\x0a\x29\x07\x0a\xc0\x7a\x0a\ -\x40\x38\xef\x29\x80\xec\x29\x00\x31\x8f\x19\x00\xbf\x44\x00\x78\ -\x4f\x00\x04\xe9\x09\x00\x19\x08\x80\xd0\x3d\x01\xe0\x03\x01\x80\ -\xa6\x7d\x24\x00\xa3\xc6\x7b\x96\x1d\xf1\xa3\x72\x00\xf6\xd2\x1c\ -\x20\x7c\x6a\x96\x98\xeb\x48\x00\x75\x3d\x45\x1b\x71\xd6\xbd\xa0\ -\x20\xb8\x56\xec\xbb\xf1\x00\xf5\x9f\xe3\x01\x1a\xd8\x31\xe3\xd0\ -\x30\xc6\xb1\x25\xae\x74\xa8\x92\xe4\xab\x89\x80\xb9\xc8\x03\x42\ -\xf9\x3f\x13\xf8\xae\x4c\x20\x54\x57\x17\xd3\x45\x2a\x40\xda\x62\ -\x12\xa3\xef\x7b\x47\x05\x00\x04\x30\x67\xf4\xb3\x30\x7a\x51\x2a\ -\x30\x8d\x56\xf3\x9b\xa9\xfb\xf8\x9e\xdf\xfc\x0b\x55\x91\x2b\xcd\ -\ -\x00\x00\x0c\x02\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ -\x6f\x61\x64\x5f\x6f\x70\x74\x69\x6f\x6e\x73\x2e\x73\x76\x67\x22\ -\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\ -\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\ -\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x66\x69\x6c\x74\x65\x72\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x2d\ -\x69\x6e\x74\x65\x72\x70\x6f\x6c\x61\x74\x69\x6f\x6e\x2d\x66\x69\ -\x6c\x74\x65\x72\x73\x3a\x73\x52\x47\x42\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x66\x69\x6c\x74\x65\x72\x34\x35\x30\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x30\x2e\ -\x30\x32\x33\x37\x34\x38\x36\x32\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x2e\x30\x34\x37\x34\x39\ -\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x30\ -\x2e\x30\x32\x34\x32\x35\x36\x37\x35\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x2e\x30\x34\x38\ -\x35\x31\x33\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x66\x65\ -\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\x72\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x64\x44\x65\x76\x69\ -\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2e\x32\x37\x39\x32\x33\x37\x32\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\x72\x34\x35\ -\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x66\x69\x6c\ -\x74\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ -\x35\x31\x2e\x31\x36\x39\x34\x34\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\x36\x2e\ -\x35\x33\x38\x34\x34\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ -\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ -\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ -\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ -\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ -\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ -\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ -\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ -\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ -\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ -\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x33\x33\x33\x33\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x31\x2e\x30\x33\x31\x32\x35\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x74\x65\x72\x3a\x75\x72\x6c\x28\x23\x66\x69\ -\x6c\x74\x65\x72\x34\x35\x30\x35\x29\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x37\ -\x2e\x35\x38\x37\x33\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x2e\x31\x37\x39\x33\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x30\ -\x2e\x30\x36\x39\x36\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x31\x2e\x39\x33\x30\x30\x32\x30\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x72\x6f\x74\x61\x74\x65\x28\x2d\x39\x30\x2e\x30\x38\x33\x30\x39\ -\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x31\x32\x66\x66\x32\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x39\x39\x39\x39\x39\x39\x37\x36\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ -\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x34\x2e\x37\x39\x32\x32\x32\x36\x32\x2c\x31\x34\x2e\x31\ -\x39\x37\x30\x34\x33\x20\x63\x20\x30\x2c\x30\x20\x38\x2e\x36\x38\ -\x39\x38\x39\x33\x38\x2c\x31\x36\x2e\x33\x36\x33\x30\x30\x38\x20\ -\x39\x2e\x33\x37\x31\x38\x32\x38\x38\x2c\x31\x32\x2e\x35\x33\x36\ -\x38\x37\x33\x20\x43\x20\x31\x37\x2e\x39\x37\x32\x39\x38\x34\x2c\ -\x35\x2e\x33\x36\x33\x31\x37\x38\x33\x20\x32\x38\x2e\x38\x31\x32\ -\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\x36\x32\x20\x32\x38\ -\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\x36\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x34\x35\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x63\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x07\x4c\ -\x00\ -\x00\x1f\xb7\x78\x9c\xdd\x59\x5b\x6f\xeb\xb8\x11\x7e\xcf\xaf\x60\ -\x9d\x97\x5d\xd4\xa4\x2e\xd4\x85\x52\x9c\xec\x43\x0f\x16\x3d\xc0\ -\x29\x0a\xec\x6e\x51\x60\x5f\x16\xb4\x44\xdb\x6c\x64\xc9\xa0\xe8\ -\xdb\xfe\xfa\x0e\x25\x51\x17\xdb\x49\x4f\x80\x14\x38\x27\x04\x02\ -\x8b\x33\x43\x72\xf8\xcd\x37\x43\x12\x59\xfc\x74\xda\x16\xe8\x20\ -\x54\x2d\xab\xf2\x71\xe6\x11\x77\x86\x44\x99\x55\xb9\x2c\xd7\x8f\ -\xb3\x7f\xfd\xf6\x33\x66\x33\x54\x6b\x5e\xe6\xbc\xa8\x4a\xf1\x38\ -\x2b\xab\xd9\x4f\x4f\x77\x8b\xbf\x60\x8c\xfe\xa6\x04\xd7\x22\x47\ -\x47\xa9\x37\xe8\x73\xf9\x5c\x67\x7c\x27\xd0\x0f\x1b\xad\x77\xa9\ -\xe3\x1c\x8f\x47\x22\x3b\x21\xa9\xd4\xda\xf9\x11\x61\xfc\x74\x77\ -\xb7\xa8\x0f\xeb\x3b\x84\x10\xac\x5b\xd6\x69\x9e\x3d\xce\xba\x01\ -\xbb\xbd\x2a\x1a\xc3\x3c\x73\x44\x21\xb6\xa2\xd4\xb5\xe3\x11\xcf\ -\x99\x0d\xe6\xd9\x60\x9e\x99\xd5\xe5\x41\x64\xd5\x76\x5b\x95\x75\ -\x33\xb2\xac\xef\x47\xc6\x2a\x5f\xf5\xd6\xc6\x9b\x23\x6d\x8c\xbc\ -\x24\x49\x1c\xd7\x77\x7c\x1f\x83\x05\xae\xcf\xa5\xe6\x27\x3c\x1d\ -\x0a\x3e\xde\x1a\xea\xbb\xae\xeb\x80\x6e\xb0\xfc\x3a\xab\xb4\x06\ -\x40\x77\xf0\xd7\x9b\x5b\x01\xa9\xab\xbd\xca\xc4\x0a\xc6\x09\x52\ -\x0a\xed\x7c\xfa\xed\x53\xaf\xc4\x2e\xc9\x75\x3e\x9a\xc6\xe2\x39\ -\x59\x75\x02\x72\xc9\xb7\xa2\xde\xf1\x4c\xd4\x8e\x95\x37\xe3\x8f\ -\x32\xd7\x9b\xc7\x19\x0d\x88\x47\xa1\x85\x8d\x70\x23\xe4\x7a\xa3\ -\x2f\xa5\x32\x7f\x9c\x81\xf7\x7e\xc2\xda\xfe\x88\x1c\x5e\x6b\xd0\ -\x4d\x9c\xf6\x1a\x97\x24\x3e\xf1\x90\xf2\x42\x1a\xb7\x36\x76\x0b\ -\x69\x5e\x65\xc6\x27\x98\x52\x6c\x25\xdf\xeb\x6a\x0b\x51\xcb\xb2\ -\x82\xd7\xb5\x5c\xc9\x0c\x3a\x55\xb9\x2b\xf6\x6b\x59\xfe\xb1\xe5\ -\xe5\x9e\x17\x7f\xfc\xf2\xcf\xcf\xc4\xa2\xd7\x2f\x25\x4e\xbb\x4a\ -\x69\x7c\xca\x77\x80\x61\x14\xdf\x54\x9e\xad\xf2\x09\xb4\x8b\x5c\ -\xac\x6a\x63\xd5\x6e\xc8\xf4\x60\x47\xf1\x0c\x39\x8d\xb6\xf7\xcf\ -\x38\x97\x1f\xa4\x38\x0e\xb6\x4b\x5e\xb7\xa0\x21\xb4\xe3\x6b\x20\ -\x58\x51\xa9\xc7\xd9\xfd\xaa\x69\x9d\x62\x59\xa9\x5c\x28\xab\x8a\ -\x9a\x36\x51\x55\x10\x04\xa9\xcf\x6d\x4a\x75\x73\x5b\x7f\xcd\xac\ -\xbd\xde\xbd\xad\xaf\x37\x3c\xaf\x8e\x8f\x33\xff\x52\xf9\x67\x55\ -\x6d\x61\x56\x08\x46\x12\x33\xf7\x4a\x9d\x9d\x1e\x67\x38\x20\x49\ -\x12\x53\xca\xa2\x2b\xad\x71\x28\x82\x68\x47\x7e\xe4\x5d\x29\xf7\ -\x4a\x41\xd2\xe1\x82\x9f\x05\xec\xaa\xf9\xb1\x46\xf5\xa6\x3a\xae\ -\x95\x41\x47\xab\xbd\xb8\x1c\x69\x34\x78\xb9\xac\x4e\xb7\xd5\xc0\ -\x81\xbd\x49\x67\xbc\x2f\xa5\x86\x94\xd9\x9d\xc6\xb3\xee\x65\x2e\ -\xea\xdb\x03\xeb\x92\xef\xf0\xba\xa8\x96\xbc\xb8\x6d\x70\x94\x25\ -\xa0\x84\x3b\x76\xc3\xb6\xae\x76\xdc\x59\x58\xaa\xc7\x2e\x7b\xc1\ -\x02\x7c\xbf\x0a\x44\xa7\x3a\xbf\xac\xda\xf2\x93\xdc\xca\x3f\x05\ -\x00\xe3\x35\xbc\x03\x6e\x4d\x60\x69\x87\x21\xa4\xcf\x26\x6d\x4f\ -\x67\x23\x9b\x59\xa1\xc1\xd3\x08\x7c\x08\x57\x2f\xac\x94\x84\x6c\ -\x18\xb9\x63\x45\xe7\xb1\xc8\x24\x39\xd4\xe8\x53\x43\xb0\x86\x7e\ -\xf1\xa5\xee\x3c\xd6\x75\xbc\x77\xae\x89\xdf\xc8\xb7\x42\xf3\x9c\ -\x6b\x3e\x64\x81\x95\x80\x6f\xae\xdd\x19\xd4\xcb\xf4\x97\x4f\x3f\ -\x3f\x75\x0b\x2d\xb2\x2c\xfd\x77\xa5\x9e\xed\xba\x08\x19\x03\xbe\ -\xac\xf6\x80\xf4\xec\xa9\x17\x2f\xf2\x2c\x85\x0a\x07\x99\xff\x24\ -\xb7\xc0\x6d\x53\x1c\xff\x0a\x15\x6d\xe1\x0c\x8a\x89\xb1\x01\x6b\ -\x98\xb4\x9d\x56\x89\xb6\x54\xde\x3c\x2f\xf2\x6c\x2b\xcd\x20\xe7\ -\x57\x2d\x8b\xe2\xb3\x59\xa4\xdb\xf1\x68\x52\xa9\x0b\x31\x08\x17\ -\x4e\xe7\x7d\xb7\x37\x67\xb4\xb9\x85\x63\x77\xdf\xf4\xd6\x03\x2a\ -\x93\xa4\xe8\x03\x5d\xf0\xa5\x00\x86\x7e\x31\x4a\x74\xa5\x5d\xab\ -\x6a\xbf\xdb\x56\xb9\xe8\x86\xf7\x68\x8a\x4c\xf7\x21\xd3\xe7\x02\ -\xf4\x2b\xf0\x3e\xbd\x17\x09\x5f\x7a\xd1\x83\xe9\xe0\xae\x4e\xa4\ -\x5e\xdb\x55\xfb\x02\xea\xdd\x41\x94\x55\x9e\x3f\xd4\x5a\x55\xcf\ -\x22\xbd\xf7\x58\x1e\xad\x56\x5d\xb7\x4d\x86\xd4\xb5\x5d\x00\x46\ -\xa8\x02\x48\xaa\xd3\xc0\xca\x72\x0e\xe5\x45\x29\x7e\x4e\x4b\x38\ -\xd4\xad\xb4\x5f\x6a\xc2\x4f\xe3\x25\x70\x20\xc1\x0c\xd3\x5e\x61\ -\x13\x2e\x20\x11\x8b\x59\x14\xf6\x0a\x9b\x67\x8c\xb0\x30\x71\x43\ -\x16\xf4\x1a\x60\xaa\x1f\x11\xe6\x07\x34\x1e\xe6\x69\xea\x5f\x4c\ -\x59\x12\x85\xf1\x30\x89\x32\xb6\x24\x08\xa2\xc8\x8b\x07\x67\x54\ -\xcb\xe7\x90\xd2\x88\x26\xbd\x54\x2b\x5e\xd6\x86\x43\xc0\x58\xae\ -\x95\x3c\xfd\x00\x13\x86\x2c\x49\x58\xe4\xcf\x5d\x12\x85\x9e\x9b\ -\xf8\x3e\x9d\xc3\x59\x1a\xc7\x31\x75\xa9\xe7\x19\xb1\x9f\x78\x7e\ -\xe4\xb3\xb9\x3b\x77\x7f\xec\x99\xf2\xfd\x45\x24\xbe\x0e\x89\x47\ -\x42\x3f\x09\x99\x77\x15\x12\x2f\x24\xae\x17\xc5\x21\x1d\x87\x04\ -\x84\x01\x83\x36\x8e\x08\x66\x84\x26\xd4\xf5\xc2\x64\x12\x11\x0f\ -\x0e\x79\x37\xf4\x59\x72\x11\x91\x98\x85\x20\x65\xaf\x46\x24\xf1\ -\x03\x2f\x8c\x92\x18\xa0\xa7\xcc\x77\x3d\xf0\xb0\x89\x88\x89\x8d\ -\xc7\x20\x0c\xf0\x19\xc0\x85\x83\x06\xdf\x7d\x44\x30\xbb\x0c\x89\ -\x1f\x03\xc5\xa1\x05\x57\x21\x09\x88\xdf\x94\xe7\x64\x1c\x92\x6b\ -\x21\xc0\xec\x33\x12\x27\xa6\x4d\x42\x02\xe9\xe7\x41\xea\x50\x7f\ -\x12\x12\x97\x84\x6e\x4c\x21\x75\x92\xef\x19\xc7\xff\x07\x8a\xd7\ -\x47\xe5\xc7\x46\xf1\x0a\x43\x8f\xd0\xdb\x18\x8e\x36\x7f\xf3\x4a\ -\xf1\x22\x78\x94\x84\x21\x0d\xe3\x24\x9a\x80\x47\x09\x73\x03\x38\ -\x19\xc2\x01\xbb\x1d\xd7\x9b\x0b\xec\x9a\xeb\x73\x7a\xef\x36\xed\ -\x61\x55\xc1\x0d\xb1\xd1\xc0\x1e\xe1\x4e\x50\xb4\x92\x03\x57\x92\ -\x97\x7a\x22\x3b\x36\x5e\x4f\x44\x80\x88\xd0\xd9\x66\x2a\x83\x8b\ -\x59\x0a\xb7\x1c\xb9\xdf\x3e\x14\xb2\x14\xdd\x2d\x70\x62\xb3\xe2\ -\x5b\x59\x9c\xd3\x5f\xa1\x66\x3d\x60\x7b\x64\xe3\x76\xf8\x4e\x64\ -\xfd\x1b\xa5\xb5\xd0\xe2\xa4\xc1\x2a\x87\xcb\x2c\xc4\xab\xe9\xf1\ -\x42\xae\xcb\x14\x9e\xc8\x4a\xb7\x82\x1c\x5e\x0c\xaa\x1d\xd3\xc4\ -\xea\x42\x88\x8d\x27\xad\xa6\x10\x1a\x22\x8d\xbb\xeb\x9a\x75\xeb\ -\x08\xef\x87\x4b\x59\x33\x47\x5f\x58\xdb\xd1\x47\x25\x35\x98\x60\ -\x73\xb3\x48\x0b\x85\xf5\xf2\x21\x97\x26\xf6\x66\xe5\x42\xab\x07\ -\xf3\x8e\x69\xb6\x5d\x6f\xe4\x4a\xa7\xb6\xdb\xb9\x5d\x66\x1b\x00\ -\xbf\xf5\x3b\x97\xf5\x0e\xae\x26\xf0\xbe\x6c\x0c\x2a\x78\xd8\xad\ -\x8a\xea\x98\x1e\x64\x2d\x97\x85\x78\x68\x7e\x65\x61\xa8\x66\x45\ -\x2d\xef\x3b\x1e\x7f\x2d\xef\xc7\xdc\x6d\x49\x0f\xcf\xc6\x38\x84\ -\xf3\x80\xd1\x87\x2d\x57\xcf\x42\xb5\x36\xa2\xe4\xb0\x08\x5e\xf2\ -\xec\xd9\xdc\x9e\xca\x3c\xe5\x19\xbc\x21\xf6\x05\xd7\xa2\x27\x9a\ -\xb9\xa4\x22\x38\x45\x5c\xda\xb6\xf9\xe8\x1b\x1d\x10\xbc\x90\x5a\ -\x66\x51\x44\x7d\x62\x3f\x41\x8a\x36\xaf\xe8\x0e\x08\x9b\x9f\x2f\ -\xc8\x3e\x8a\xe9\x9c\xc2\xf9\xd5\x4e\xea\x53\x12\x34\x29\x30\xf7\ -\x12\xe2\x1b\xdb\x88\x04\xa8\x40\x1e\xdc\x28\x9a\x36\xc7\x09\x89\ -\x50\xe7\xc6\x1c\xfb\xdd\x14\xb4\x9b\xd6\x2e\xb4\x69\x17\xf9\x3b\ -\xea\x73\x0a\xfd\x8e\xfe\x81\xc0\xbc\xed\xcd\xfb\x2f\xb0\xa1\x70\ -\xf0\xb6\xdf\x5f\x90\x4d\x60\x3a\x87\x73\x3e\xb6\x53\x33\x12\x36\ -\x59\xdd\x79\xd2\x7c\x37\x06\x30\x7a\x98\xe9\xf7\x9b\x45\x62\x10\ -\xf6\xcf\xc0\xaa\x2c\x41\x59\x29\x0c\x0f\xc2\x03\xd7\x7b\x25\x26\ -\x0f\x8f\xfe\x01\x01\xbc\x33\x77\x6e\x78\xbb\x65\x2f\xb4\x57\xb3\ -\xbf\x65\x10\x03\x40\x98\x7b\xc9\x20\x5b\x27\x57\x6d\x69\x98\x50\ -\xc6\x23\x2c\x88\x43\xdf\x65\x74\x77\xb2\x1a\x43\x5b\x70\x3e\x5d\ -\xee\xb5\x1e\xcb\xfe\x53\xc9\x32\x6d\xea\xe9\xcb\x25\xb3\xa1\x91\ -\xef\xb6\xe7\x05\x44\x96\x75\x41\x43\x19\x82\xe8\xce\x4d\x84\x2f\ -\x7e\x27\x40\x9a\x9d\xd1\xc4\x0d\xbe\x1a\xc8\xff\x8d\x89\xeb\x46\ -\xd4\xbb\xca\xaa\xd7\x30\xb1\x44\x0b\x82\xf7\xc4\x24\x22\xd1\x35\ -\x26\xd8\x82\x71\xf5\x71\x0b\x96\xe8\x1d\x61\xf9\xe6\xa8\x12\xb7\ -\xd5\x00\x72\xab\xa7\x4a\x97\xe0\xaf\xf4\x6e\x92\x07\xfb\x1f\x99\ -\x3e\x63\x9c\xf0\x14\x9a\x57\xbb\x37\x09\x85\xbd\x0f\x48\xa9\x84\ -\xb0\x16\x2a\x3c\x9c\x08\x6f\x2b\x3f\xd8\x7f\x57\x60\xbe\x11\x0e\ -\xd1\xc8\xe6\xda\x04\x98\x37\xd6\x20\xec\x7d\x44\xd2\x0c\xb7\x8b\ -\xf1\x45\xe3\xcd\xac\x89\x3f\x1e\x6b\xec\xdb\x2f\x9e\x02\xf3\x76\ -\xd6\x7c\xfd\xed\xe8\xfb\x61\x4d\x9f\x47\xf3\xbe\xea\xbc\x9d\x34\ -\xef\x09\xcc\x37\x42\x9a\x90\xd8\x67\xc4\x18\x97\xb7\x73\xe6\x3d\ -\x2f\x82\xdf\x08\x67\x86\xe3\xc9\x67\x84\xbd\x9d\x2d\x1f\xf0\x72\ -\x33\x1c\x4c\x1d\x24\x6f\x27\xca\x5b\xaf\xc6\x0b\x67\xfd\x74\xb7\ -\x30\xff\x3b\x79\xba\xfb\x2f\x49\x7d\x2d\x30\ -\x00\x00\x0d\x7d\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x73\x65\x74\ -\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ -\x36\x35\x2e\x31\x37\x35\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x2e\x31\ -\x38\x33\x33\x38\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ -\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ -\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ -\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ -\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ -\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ -\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ -\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\ -\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x37\x34\x2e\x36\x36\x36\x36\x36\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x2e\x36\x36\ -\x36\x36\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x2d\x32\x31\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x2d\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\x32\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x66\x32\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x32\x65\x32\x65\x32\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\x35\x31\x38\x32\x35\x38\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\x48\ -\x20\x33\x32\x20\x56\x20\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\ -\x48\x20\x30\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x38\x2d\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x65\x39\x63\x36\x61\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x30\x30\x31\x33\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\ -\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\ -\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ -\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x35\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x37\ -\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x31\x39\x2e\x34\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x79\x3d\x22\x37\x2e\x31\x36\x38\x38\x33\x30\x39\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ -\x66\x30\x30\x31\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x2e\x38\x33\x39\x39\x39\x39\x39\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ -\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x2c\x32\x33\x2e\x34\x36\x36\ -\x36\x36\x37\x20\x38\x2c\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x66\x66\x30\x30\x31\x33\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x38\x33\x39\x39\x39\x39\x39\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x32\x39\x2e\x33\x33\x33\x33\x33\x33\x2c\x32\x33\ -\x2e\x34\x36\x36\x36\x36\x37\x20\x2d\x38\x2c\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x14\x49\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\ -\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ -\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ -\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ -\xdd\x08\x11\x15\x26\x08\x6d\x49\xb4\xe7\x00\x00\x00\x19\x74\x45\ -\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ -\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ -\x00\x13\xb1\x49\x44\x41\x54\x68\xde\xed\x9b\x69\xac\x5d\xd5\x75\ -\xc7\x7f\x6b\x9f\xe1\x0e\xef\x79\x7c\x1e\x62\x0c\xc6\x53\x08\x83\ -\x6d\x0c\x24\x81\xb4\x0c\xcd\xd0\xd0\x14\xda\x8c\x2d\x49\x54\x94\ -\x34\x52\xa4\x56\x8d\x54\x94\xa0\x14\x45\x95\x9a\x2f\x19\xd4\x08\ -\x21\x94\x34\x49\x45\x5b\x29\x80\x4a\x49\x49\x43\xa2\x26\xa4\x19\ -\x4a\x08\x04\xcc\x10\x1c\x08\x60\x0c\xd8\xc6\xf6\xf3\xf3\xb3\xdf\ -\x3c\xdc\x7b\xcf\xb0\xf7\x5e\xfd\x70\xce\xbd\xef\xde\xf7\x3c\x12\ -\x42\x3f\x24\x47\xba\xda\xf7\xbc\x7b\xd6\xde\x67\xed\x35\xfe\xd7\ -\x5e\x0f\x7e\xcb\x2e\xb9\xe4\x9e\x45\xd5\xd7\x64\x25\x9d\xfb\x28\ -\x80\x2f\x46\xe9\xba\x6f\x3f\xa7\x5a\xfe\xde\xa6\xa1\x9b\x56\x41\ -\xa5\xeb\x79\xed\x79\xae\x4d\xdb\x5e\xa7\xb6\x31\x48\x9f\xb8\x76\ -\xaa\x3d\x0b\x21\x70\xcb\xff\xfb\xb6\x6b\xd7\x57\xed\xbd\x7f\x45\ -\x9b\x3a\x77\xd5\xa7\x7f\x61\xff\x11\x78\xb6\x9b\xe1\xbf\x7a\xad\ -\x18\xd2\xf9\x0c\x6a\xef\xfb\xa9\x6f\xff\x28\xc7\xa0\x57\x14\x29\ -\x99\xd2\x79\xf4\x82\xaa\x22\xf3\x18\x16\x81\x7c\xd4\xaf\x5f\xfb\ -\xa1\xca\x7b\x0f\xdd\x95\x8e\xb7\x19\x7e\x6d\x98\xd5\x5e\xb5\xee\ -\x5c\x7e\xde\xbd\xca\x31\x9e\x53\x54\xa5\x98\xa4\x33\x76\x99\x46\ -\xb9\x01\x3a\x6f\x3d\x11\x50\xcf\x5a\x0c\x51\xb7\x84\x5f\x53\xfb\ -\x5d\xb0\x01\x2c\xdc\x10\x9d\x67\xef\xe2\xa5\x6b\x1e\x9d\x23\xf3\ -\x0b\x6d\x7c\xc1\xe6\x82\xeb\x5e\xe9\xb4\x18\x5e\xa9\x55\xd6\x50\ -\x27\x44\x30\x08\x1e\xed\x8c\x85\x62\x49\xa9\x78\xe5\xa8\x82\xd7\ -\xb9\x7b\x04\x0c\x82\xd3\x92\x4e\x8a\xbf\x89\x2f\xe6\xe8\xd0\x99\ -\x39\x69\xab\x2a\x6a\xc0\x28\x9d\xf5\x9c\x2f\xd6\x33\x08\xea\x0b\ -\x13\xf0\xe5\x7a\x28\xe4\xea\xd9\x93\xcd\x30\xab\xf9\x02\x1e\x4e\ -\x8b\xe1\x4b\x59\xcd\xd5\x66\x29\x15\x00\xad\x83\xb4\x40\xab\xc5\ -\x88\x01\x8d\x41\x72\xd0\x10\x24\x29\x7e\xc3\x82\x46\x20\x59\xa9\ -\x7f\x35\x20\x01\x6a\x40\x13\x6d\xd3\x91\x97\xaf\x93\x00\x95\xf2\ -\xd9\xa0\xa0\xc7\x95\xcf\xcf\xd1\x15\x76\x5e\x05\xd2\x92\xbe\x05\ -\xc4\x18\x84\x69\x6f\xf9\x97\xc9\x7d\xec\xcc\x27\x5e\x01\xc3\x5d\ -\x3e\xa4\x26\x86\xf3\x09\xa8\x1a\x43\xd3\x47\xd4\x4d\x4e\xd3\xc7\ -\xd4\x8d\x45\x55\x48\x09\x89\x44\x71\x12\x12\x4b\x4c\xa6\x21\x01\ -\x90\x6b\x48\x45\x3c\x22\xda\x79\xbe\xa0\x8f\x50\x85\x44\x23\x2a\ -\xe2\xc9\x29\x47\x0d\x11\x3c\x8e\x80\x08\x30\xd2\x5e\x6f\x8e\x0e\ -\xa0\xe5\x23\xaa\x62\x49\x35\xa2\x6a\x1c\x56\x43\x14\x98\x71\x42\ -\x9f\x84\xc7\xf4\xf6\x27\x67\x58\xe0\xe3\x9c\xc3\x66\xea\x2c\xa7\ -\x1f\xab\x4a\xe2\x21\xd3\x0a\xc6\xfb\x72\x74\x78\x02\x72\x8d\x70\ -\x84\x38\x02\x14\x21\xd5\x0a\x01\xc5\x8b\x78\x02\x8c\xba\x05\x74\ -\x8a\x21\xd3\x0a\x8a\xc1\x6a\x04\x06\x32\x8d\x31\x28\x0e\x83\xc3\ -\x12\x74\xe8\xb4\x43\xdf\x9e\x1f\x8a\xe7\x45\x95\x5c\x23\x40\x48\ -\xb0\x18\x91\x63\x85\xa9\x53\x53\xe9\xcd\xd4\xb9\xd4\x54\xc9\x34\ -\xa0\x22\x09\x06\x8f\x25\x26\x92\x0c\x4b\x48\x2c\x19\x8e\xa0\x98\ -\x50\x72\x8c\x86\x44\x9a\xd1\x72\x01\x5e\x1d\x56\x05\x63\x2c\x91\ -\xc9\x09\x25\x22\x92\x8c\x96\x8b\x09\x4c\x86\x18\x83\xc7\x60\x34\ -\x23\x77\x06\xe3\x1c\x16\x47\x64\x1c\xa1\x31\x44\x62\x09\xb0\xe4\ -\x44\xe5\x7a\xc5\x08\x52\x68\x80\x64\x78\x0c\x11\x19\x94\x0e\xdc\ -\xe0\xf0\xea\x4f\x4f\xc2\x2b\xb5\xca\xa5\xac\xa6\x26\x86\xe5\xf4\ -\x93\x69\x40\xae\x31\x82\x22\x14\xbb\x19\x50\x21\xd7\x98\x14\x87\ -\xc7\x90\x6b\x84\xc7\x90\xba\x80\xe7\x26\xfa\xf8\xde\xbe\x35\x0c\ -\xcd\xc6\x28\xc2\x9a\xbe\x84\x2b\xd6\x8e\xb3\x65\x75\x4a\x10\x3a\ -\xee\xdc\x75\x26\x97\xac\x1c\x63\xdb\xaa\x19\x12\x1f\xf3\xb3\x03\ -\x2b\xf8\xd9\xe0\x00\x2d\x2b\xf4\xc5\x9e\x6d\x2b\x66\x79\xd7\xc6\ -\x11\xfa\xa2\x80\x80\x90\x5c\x63\x0c\xbe\xb3\xae\x22\x0b\xfe\x96\ -\x13\xa1\x08\x5e\x2d\x81\x9a\x63\xf2\x75\x5c\x86\xd7\x50\xe7\x6a\ -\xb3\x94\xf3\x09\xb0\xaa\x54\x24\x41\x50\x2a\x92\x62\x4a\xfb\xaa\ -\x48\x82\x23\xa0\x2a\x2d\x1c\x01\x82\x12\x92\xf1\xe8\xf0\x4a\xbe\ -\xf0\xd8\x66\xde\x73\xd9\x19\x7c\xe0\x8d\x1b\x31\x62\xd8\xb9\xeb\ -\x65\x9e\x1c\x7c\x99\x95\xfd\x7b\x59\xb9\x74\x9c\xff\x3d\xb4\x96\ -\x15\x4b\xfb\xb8\xd4\xec\xe4\xbe\x7d\xab\xf8\xa7\x9d\xeb\xf9\xcc\ -\x75\x17\xb0\x69\xed\x52\xf6\x0f\x4f\xf0\xfc\x4b\xfb\x68\xda\x49\ -\x96\xc7\xb3\x84\x58\x3c\x86\xaa\xb4\xf0\x18\x2a\x92\x94\xdb\x2e\ -\x54\x24\x05\x28\xdf\xcf\x03\x42\x0b\x8b\xa3\x4b\xc2\x72\x0a\x0c\ -\x5b\x3c\x11\x50\x35\x86\xc4\x83\xc1\x23\x68\x31\x8a\x62\xd4\x63\ -\xca\x51\x84\xe2\x1e\x8f\xf5\xf0\xe5\xa7\xce\xe1\xe3\xef\xbf\x82\ -\xeb\xce\x3d\x82\x3f\xfc\x1d\xac\x1a\xce\xbb\xe8\x0d\x98\xcb\xb7\ -\x33\xbb\x77\x1c\xd3\x38\x4c\x5c\xeb\x27\xec\x8b\x30\x38\x1e\x38\ -\xba\x89\x6b\xaf\xdc\xc2\xdb\x56\x3f\x47\x34\xb5\x87\x0d\x2b\xce\ -\xe6\xed\x1b\x37\x90\xee\xaf\x60\x5a\xc5\xfc\xa2\xda\x59\xcf\x88\ -\x16\x99\x55\xfb\x7d\x98\x7b\x87\x82\x3b\xc5\xfb\xb9\x84\xec\x84\ -\x12\xbe\x52\x57\xf1\x69\xb9\x10\xc4\x22\x6a\x68\xfa\x9c\x4c\x2b\ -\x58\xe2\xd2\x29\x05\x18\xf5\xb4\xb4\x86\x7a\x21\xd5\x2a\x78\x4a\ -\xa7\x15\x32\xd4\xa8\xb0\x7f\x42\xb8\x66\xed\x0b\x4c\x3e\xfb\x43\ -\x04\x47\xc3\xc6\xc8\xd1\x41\x22\xb1\xa8\xa9\xe0\x83\x3e\x50\xf0\ -\x5e\x68\x68\x1f\xdb\xce\xdb\xc4\x7d\x8f\xed\x66\x53\xe3\x45\xd6\ -\xd4\x9b\x2c\xab\x3f\xc3\x9a\xfe\x5f\xe0\x35\x20\x90\x3e\x02\x75\ -\x24\xe5\x7a\x89\x56\xd1\x32\x11\x49\xb5\x5a\x9a\x52\x8c\xfa\xc2\ -\xe9\x29\x14\x3e\x40\x82\x53\xb3\xe1\x1c\x47\x4d\x9a\x04\x52\x78\ -\xd0\x58\x32\x8c\xf7\x44\x92\x11\x50\x29\x9c\x96\x28\xea\x85\x3e\ -\xd3\x00\x0f\x75\xd3\xc4\xa9\x21\x20\x66\xc6\xaf\xa2\x12\x87\xf4\ -\x0f\x7f\x87\xd4\x40\x2b\x83\x1d\x87\x06\xd8\x3b\x59\xa3\x6a\x2c\ -\x57\xad\x9b\x64\xeb\xf2\x46\x91\x38\x88\x23\xd6\x26\x7f\xbe\x35\ -\x61\xb2\xb5\x9e\x7b\x77\xa5\xd4\xc3\x94\x8a\x64\x5c\xbe\xe6\x30\ -\x7f\xb4\x61\x8c\xaa\xc9\x09\xc5\x81\x87\x9a\x34\x01\xe8\x33\x8d\ -\x22\x75\x44\xa9\x4a\x8b\x14\x47\xcd\xb4\xc8\x4b\x86\x13\xef\xc8\ -\xd5\x9d\x9a\x97\x8e\x08\x68\x69\x9d\x00\x47\x23\x0b\x18\x9a\x59\ -\xc2\xa6\xe5\x16\x5b\x3a\x8e\xb6\x84\xdb\x92\x4d\xb5\x8a\x78\xed\ -\x38\xad\xbe\xc5\x03\xe4\xd6\x31\x9d\x06\x78\x89\xc9\xc2\x2a\xcb\ -\xcf\xbc\x80\x3d\x52\xe3\xa7\x2f\x4c\xb3\x7e\xcd\x38\x1b\x7d\xf1\ -\xe2\x5e\x03\x9a\xf4\xc3\xd0\xfd\xdc\x78\xf5\x9f\x71\xf0\xaa\xab\ -\x39\x70\x78\x9c\x27\x5f\x1c\xe1\x8e\x27\x17\xd3\x57\xd9\xcb\xe5\ -\x67\x8e\xcd\x49\x18\xe9\xac\xd7\x0e\x4b\x73\x12\x16\x2c\x45\x5c\ -\xb7\x58\xa2\x32\x6a\x9c\x82\x84\x2d\x75\xd3\x24\xc0\x72\xe7\xee\ -\xb3\x79\xc7\xba\x23\x38\xeb\xcb\x50\xa0\x40\x82\x31\x8a\x7a\x83\ -\xd3\x14\xa7\x82\x37\x29\xd5\xd0\x13\x4a\x85\x8d\xf5\xa3\xac\x5a\ -\x76\x1e\x0f\x1c\x58\xc2\x3b\x37\x8c\xb1\x28\xc8\xb8\x7c\xf5\x38\ -\xaf\x5f\x77\x01\x43\xb3\x55\xe2\x9a\x2d\x34\x03\xc5\x88\xa3\x2e\ -\x4d\x9c\xcd\xe1\xe9\x5b\x58\xd3\xb7\x81\x0d\x8b\x56\xf1\x96\x3f\ -\xd8\xc6\x81\xf1\x33\xd9\xdd\xb2\xbc\x53\x0e\x10\x88\xef\x68\x92\ -\x78\xa5\x6e\x8a\x0d\x13\xef\xa9\x49\x8b\x94\x2a\x55\x93\x90\x6b\ -\x08\x02\x69\xb7\x84\x4f\xc6\xb0\x20\x38\x35\x20\x01\xc3\x8d\x2a\ -\xcd\x2c\xe4\xae\xdd\x67\xb0\x7d\xe5\x24\x0d\x5b\x01\x6f\xa9\x04\ -\x0e\x27\x31\xcf\x1c\xad\x71\xf6\xd2\x8c\x46\x0a\x1f\x3e\x7f\x88\ -\x7a\x6c\x08\xd3\x61\x3e\xf1\xbe\xeb\xf9\xea\x37\x67\x98\xce\xf6\ -\x71\xc9\xea\x09\xcc\xc4\xf3\x3c\x72\x74\x96\xc1\x23\xeb\x30\x1b\ -\xc0\xa9\x21\xb3\x1e\xe7\xc1\x18\xc3\x5d\xbb\x5e\xc7\x40\xa5\xc5\ -\xfa\xa5\x53\xf4\x99\x61\x76\x1c\x39\xcc\xde\x43\x17\x70\xcd\x3b\ -\xd6\xe1\x09\x10\x2d\x34\xc8\xa9\xc1\x13\xe0\xd5\x14\xe1\x87\x00\ -\x57\x7e\x54\x85\xa6\x87\x59\xe7\x19\x77\x96\xcc\xfb\x36\xa8\xea\ -\x01\x9b\x0b\x18\x0e\x28\xe2\xad\xc7\xb1\xb2\xcf\x72\xee\xca\x84\ -\x47\x8e\x5a\x2e\x3f\x73\x86\xef\xef\xab\xb3\x61\x69\x8b\xbd\x93\ -\x55\x36\x2f\xcf\x69\x64\xc2\x95\x67\x37\x78\xf8\x60\x9d\x5c\x63\ -\x72\x35\xa8\xcb\xb9\x62\xe9\x93\xd4\xae\x7f\x07\x0f\x3c\xf4\x10\ -\x4f\x3c\x3b\x89\x02\x03\xcb\x97\xf3\xb1\x6b\x2e\x62\x6b\x65\x07\ -\xd9\x64\xcc\x55\xdb\xd7\x71\xd6\xc0\x41\x32\x1f\xb2\xe8\x8c\x0b\ -\x79\xfc\xe5\x19\x7e\x72\xb8\x89\xa8\xa3\x6f\xf1\x32\x3e\x76\xed\ -\xc5\xbc\x69\xd1\x0e\xb2\x91\x98\x80\x00\xab\x11\x19\x15\x72\x0d\ -\xc9\x28\x62\x7b\xf1\x37\x8f\xd5\x88\x94\x98\x3d\x99\xe5\xbf\xa7\ -\x26\x78\x31\x19\x67\x5f\x3a\xd3\x9b\x2e\x1e\x8f\x61\x8f\x27\x92\ -\x9c\x00\xc7\xb6\x15\x53\x84\xe4\x6c\x59\x31\x43\x2d\x4c\x79\xfd\ -\xb2\x59\x32\xeb\xd8\xbe\x62\x92\x5a\x25\x24\x1c\x68\x51\x0b\x95\ -\xf3\x97\x4f\xd1\x17\xa6\x04\x12\x12\x4a\x8e\x0c\xff\x94\xb7\xad\ -\x99\x62\xdb\xbb\x2f\xa6\xe5\x62\x54\x85\x7a\xd0\x60\x49\x6b\x07\ -\xe9\xc8\x33\x44\x92\xf3\x91\x37\x7b\xaa\x13\x87\x09\x27\x32\xfe\ -\xf0\x1c\xc7\xe5\xdb\xb7\x92\xfa\x1a\xa6\xcc\xb2\x96\xa4\x3b\x71\ -\x87\x1e\x23\x94\x7c\x5e\xa6\x55\xac\x51\x64\x5a\x21\x91\x64\xe4\ -\x0a\x42\xca\x84\x6d\xf2\x78\xe3\x30\x07\xf3\x19\x50\x10\xd1\x53\ -\x53\x69\x4b\x88\x22\x5c\xb2\xa6\x81\x97\x90\x0b\x57\x37\x11\x42\ -\xce\x5b\x91\x50\x91\x14\x11\x4f\xcb\xd7\x59\xb7\xa8\x45\xcb\xd7\ -\xd8\xb2\xaa\x89\xd7\x80\xbc\x54\x3f\xa7\x9e\x6c\xe8\x61\xaa\xf1\ -\x1e\xfa\xc3\x0a\x8e\x80\xc0\xcd\xe0\xb3\x09\xac\xab\xe0\x4c\x88\ -\xd9\xff\x1d\x8c\x4e\xe1\x34\xc4\x1f\xd9\xc1\xe2\x78\x27\x36\xa8\ -\x53\x91\x8c\xcc\x7a\x6c\x3a\x89\x57\x2d\x5e\x51\x0a\x07\xe7\x08\ -\x71\x1a\xe0\x24\x44\x15\x9c\x06\xa4\x04\xbc\x94\xe6\x3c\x38\x3b\ -\xc2\xa8\xcb\x99\x76\x49\x17\x96\x96\x93\x33\xec\x70\x54\x25\x21\ -\x28\xd3\xc5\x48\x72\x14\x21\x26\x2b\x33\xad\x04\x11\x70\x12\x52\ -\x91\x14\x27\x86\x8a\x64\x05\x9a\x55\x4f\x2c\x79\x27\xbf\x26\x3b\ -\x42\x98\x59\x32\x8d\xa8\x48\x86\x88\xe2\x84\x82\xce\x4e\x50\x31\ -\x4d\x54\x0a\x24\x58\x49\x47\x11\x62\x22\x49\x41\xa3\x22\x89\x91\ -\x80\x88\x1c\x23\x8a\x93\x80\x8a\x49\x71\x3e\x28\xb2\x2b\x01\xf5\ -\x86\xaa\xa4\xec\xcd\x66\xf9\xc6\xc4\xcb\xf3\x8a\x07\x65\xc9\xa3\ -\xd0\x67\x39\xa1\x0d\x27\x5a\x25\xc0\x75\xd2\xb7\xb6\xfb\xcf\x34\ -\x2e\xb5\xc0\x93\x69\xdc\x41\x31\x81\xba\x52\xc2\x51\x29\x89\xa0\ -\x4c\x0c\x2a\x58\xc2\x42\x63\xd4\x60\x68\x3f\xdf\xa6\xb7\xa8\x1a\ -\x52\x2d\x73\x63\x22\x04\x2d\xd0\x0f\xa5\xa3\x22\x24\xc4\x76\xa1\ -\xac\x62\xdd\x5c\x95\x9d\xad\x9c\x23\xf9\x0c\xbb\x92\x66\x2f\xb3\ -\x85\x3e\xa3\x99\x82\x47\x4e\x98\x5a\x2a\x4a\x88\xed\x48\xb8\xfd\ -\x3d\x10\x4b\x40\x40\x20\x16\x83\x12\x88\x23\xc0\x12\x88\x23\xc4\ -\xe2\x44\xf1\x6a\x08\xc4\x82\x42\x48\x11\xbb\x03\x29\xb0\x72\x41\ -\xef\xe6\xd1\x39\xbc\x78\x82\xf2\x39\xaf\xc5\x7a\x8e\xa0\x93\xaf\ -\x87\x25\x5a\x32\xe2\xe6\xe6\xc0\xe2\x54\x79\x60\x76\x82\xfb\x67\ -\x0e\x90\xf6\x24\x19\x85\xdd\xfa\x5c\xc9\xc7\x3c\x6a\xf5\x16\x84\ -\xc9\xe3\x32\x6c\xda\xa8\x47\x4c\x47\x4d\xad\x86\x08\x8a\xd5\x10\ -\x43\x81\x50\xac\x86\xe4\x44\xe5\x18\xe3\xdb\x78\x16\x70\x04\x64\ -\x1a\x95\x92\x2d\xbc\x69\x21\xb1\x60\x1e\x5d\x54\xd2\x85\x9d\x39\ -\x33\x0a\x3a\x41\xf1\x1a\x94\xe1\xc7\xe0\xca\x75\x12\x1f\x30\xe1\ -\x95\x54\x95\xc1\x7c\x9a\x71\x97\xcc\xcb\x99\xa5\xcd\xac\xda\x59\ -\xfd\xa4\x4b\xf4\xdf\x86\xee\x4a\x53\x80\x4b\xee\x59\x24\xc7\xb4\ -\xe1\x48\xb2\x22\xb5\xd4\xc2\x3e\x7d\x89\x3b\x15\x21\x2e\xd1\x92\ -\x25\x2a\x71\x70\x48\x2c\xe9\x02\x3c\x5c\x91\x0c\x2d\x25\x2e\x68\ -\x99\x9a\xba\x2e\xfc\x1c\x11\x4b\x8a\xa7\xd8\xd8\x22\xb1\x81\x8a\ -\x64\xa0\x82\x88\xc7\x77\x49\xd8\x96\xeb\x8c\x58\xcb\x67\x0e\xff\ -\x0a\x03\x1c\xce\xd2\x52\x8d\xcb\x6a\x26\x8a\xcf\x69\x33\x7b\xa3\ -\x6b\xe9\xd7\x86\xfe\xa3\x60\xf6\x84\x2a\x1d\x48\x11\xd2\xbd\x68\ -\x89\x8c\x8a\xf0\x6e\xca\x50\x5f\x20\x13\x47\x20\xbe\x83\x5e\x50\ -\x87\x2b\x7f\x57\x91\x82\xae\x4c\x0b\x3c\x41\x41\x5f\xa2\x9d\x82\ -\xae\xb8\x17\x9d\x9b\xd7\xe1\x3a\x74\x06\x0f\x22\x18\x5c\x29\xe3\ -\x82\x0e\x84\xfd\x79\x73\x5e\x25\xb4\x30\x52\xb5\x90\x8f\x7b\x6f\ -\x67\xf4\x26\xd7\xd2\x2f\x0f\xdd\x9d\xf6\x54\xf1\x7e\xf1\x81\x19\ -\x3d\x46\x2e\x1d\xd2\xf4\xf5\x52\xc2\x82\x95\x36\x5a\x8a\x7a\x72\ -\xe9\x64\x01\x5a\x2a\x4c\x21\x27\x2a\x43\x47\x50\x38\x28\x29\x4a\ -\x3c\x96\xf0\x04\x74\xc5\xbc\x56\x23\xbc\x2f\x4a\x45\xd2\xf1\x09\ -\x31\x01\x8e\x07\x1b\x39\xcf\x24\x93\x8c\xe6\x49\x6f\x39\xb7\x9d\ -\x3f\x58\xc8\xc7\xbc\xcd\xa7\xf5\xb3\x76\x5a\x6f\x1e\xfe\xaf\xd4\ -\xb7\xd5\xb8\xcd\xec\xc9\xd1\x92\xcc\x47\x4b\xae\x07\x2d\x55\x69\ -\x60\x15\x62\x69\xe1\x55\x30\xc4\xc4\x92\x77\x42\x56\xa0\x1e\xbc\ -\x45\x7d\x4c\x28\x19\xa1\xf1\x78\x7a\x51\x96\x57\x21\xc5\x11\x4b\ -\x4a\x4e\x4c\xd5\x24\xa5\x97\x9e\x73\x5a\xa1\x38\x9e\x4f\x27\xf9\ -\xe6\xc4\x1e\xb2\xb2\x74\x53\x14\xdf\x8b\xba\x95\x5a\xb0\x13\x2e\ -\xcb\x27\xf5\x8b\x83\xb7\x27\x9f\x3b\x51\xb9\xea\x38\x68\xa9\x8f\ -\x80\x22\x64\x58\x09\xbb\x24\x3c\x87\x87\x9b\xbe\xca\x37\x5f\x78\ -\x1d\xc3\xcd\x1a\xd5\x20\xa7\x1a\x28\xe7\xae\x68\xb2\x7d\xd5\x14\ -\x22\x85\x84\x87\x1a\x75\xee\xdb\x3b\xc0\xaf\x46\xfa\x11\x94\xb5\ -\x8b\x12\xde\xb9\x71\x9a\xad\x03\x90\xf4\xa0\xac\x18\x47\x58\x14\ -\xfb\x7c\x71\x2f\xe2\xc9\xbc\x30\x6c\x9b\x38\xf5\x8c\xe6\x29\x16\ -\xed\x39\x5e\x41\x41\x9d\x92\x4f\xf8\x24\x1b\xd7\x5b\x07\x6f\x4f\ -\xfe\x61\x3e\x3f\x6d\xc9\x1e\x9b\x61\x85\x5c\x2d\xf5\xa0\x51\xda\ -\x70\x5b\xc2\x8e\x58\xb2\x02\x95\x48\x82\x88\x62\xbd\xf0\xe3\xa1\ -\xf5\x2c\x5f\x5c\xe3\x2d\x1b\x2b\xec\x1f\x69\xf1\xa5\xc7\x66\x79\ -\xdf\xa6\x03\x5c\xbf\x65\x08\x75\x96\x2f\x3d\x7e\x01\xd5\xfe\x15\ -\x7c\xf4\xbd\x5b\xa8\xc5\xc2\xa3\xcf\xec\xe7\x85\xd9\xbd\x5c\xb6\ -\x72\xb0\x83\x7a\x54\x85\xa4\xd4\x9c\x8c\x98\xaa\x49\xc9\xd4\x62\ -\xf0\xcc\xaa\xe7\x0b\x47\x9e\xe3\xb9\x74\xa6\xf7\x7c\xaa\xad\xd2\ -\x0e\xf2\x09\x6d\x66\x63\xfa\xf5\xc1\x3b\x92\x9b\xda\x6c\xcc\x57\ -\xe3\x13\x32\x2c\x08\x5e\x0d\x22\x1e\x55\x29\xe7\x36\x1d\x6f\x5a\ -\x54\x18\x3d\x2a\x01\x95\xbe\x65\x5c\xb9\x7d\x15\xd7\x9d\x7b\x04\ -\xfa\xcf\xe1\xae\xa7\xea\xfc\xf0\xc1\x27\xf8\xa0\x1b\xe6\x85\xf1\ -\x65\xb4\xa2\xb5\xdc\xf0\xa7\xe7\xb0\xc9\x3e\x4c\xa8\x0d\xde\xf8\ -\xd6\x0b\x49\xd3\x4d\xf8\xbd\x4f\x14\xf3\xa9\xf4\xcc\xab\x18\x54\ -\x21\xf5\x4a\xae\x9e\x69\xef\xba\xb2\x86\xc2\x13\x4b\x69\xbb\xa5\ -\x64\x9b\xd9\xa8\xde\x36\x78\x47\xf2\xa9\xf9\x52\x6d\x33\x7d\x7c\ -\x86\xcb\xbd\x08\x35\x28\xeb\xc9\x45\x3e\xad\x2a\x64\x5d\x40\xbb\ -\x3c\xab\x23\xf7\x31\xaa\xca\xec\xd8\x41\x1a\x2f\xfd\x98\x96\x0d\ -\x98\x1e\x79\x2b\x95\xbe\xa5\xa4\xd4\xe8\x5f\xb9\x01\xdd\x6d\xd8\ -\xf1\xc8\x03\xc8\xf2\x7d\xf4\x47\x29\x8b\x87\x77\xe3\x4c\x95\xaa\ -\x54\xc9\x35\x26\x29\xb3\xb9\xac\xcc\xb4\xda\xf1\xfa\xd9\x34\xe7\ -\x47\xb3\x13\xec\x4b\x27\xd9\xd7\xf1\xc8\xe5\x71\x0d\x52\x4a\xb6\ -\xc3\xec\x0d\xc7\x92\xec\xb1\xa4\x3b\xc7\x70\x57\x5a\x66\x29\xd4\ -\xb7\xc8\x90\x0c\x95\x32\x56\xb6\xe3\x64\x3b\x0e\x67\x12\xe3\xbd\ -\xb2\x7b\xd8\xf2\x93\xd6\x62\x5e\x9a\x5a\xc2\xc3\x23\x09\x1f\x7c\ -\xdb\xd9\xd4\x83\x9c\x81\x45\x23\x5c\x73\xd9\x15\xdc\x7e\xdf\x24\ -\xdf\x0f\x36\xb3\x6e\x71\x8b\x37\xad\x1a\xe5\xf7\xcf\x9a\x61\x71\ -\x2d\xc5\x11\x52\x91\xa4\x23\xe1\x58\x52\x9c\x3a\x22\x12\x46\x6d\ -\x83\x87\x66\x0f\x71\xd4\x36\x7a\x0f\xd1\x55\x50\xab\xe4\xe3\x3e\ -\x29\xd5\xf8\x94\x25\x3b\xc7\xf0\xbc\x53\xbd\x80\x76\x31\xcc\x60\ -\xb5\x88\xa7\xed\x0c\xca\x96\x49\xbd\x94\x59\x91\x57\x18\x9c\x0e\ -\x79\x4c\xb6\xf0\xf2\x54\xc4\x92\xa5\x4b\xb8\x68\xd9\x20\xf9\x94\ -\xc1\xcc\x0c\xf3\xfe\x73\x86\xb9\xfa\xf7\x3e\xcc\xe3\xcf\xee\xe7\ -\xe9\xe7\xf7\xf1\xb5\x47\x0f\xf1\xcc\xc4\x34\x7f\xff\xe6\x67\xcb\ -\xac\x2a\xee\x9c\x38\x38\x75\xbc\x98\x39\x9e\x4a\x26\x39\x98\x25\ -\xb4\x7c\xd6\x75\x5a\x58\x24\x15\x45\x9c\xd5\x2c\x1b\xd7\x5b\xdb\ -\x36\xbb\xfd\x8e\x7e\xf9\xe5\xf5\xb3\x7a\x3c\x27\xb5\x30\x93\xec\ -\x76\x04\xbe\x90\x70\xd5\xb4\xa8\x48\x8b\x47\x07\xeb\x04\x9a\x61\ -\x5d\x86\xda\x14\xe3\x53\xaa\xd2\xa2\x6a\x52\x62\x49\x89\x42\xe1\ -\xfd\x57\xbd\x81\xcf\xff\xe5\xc5\xfc\xeb\xa7\xaf\x66\xa0\x3f\xe4\ -\x9f\xff\xe7\x20\x91\x16\x30\x52\xf7\x7e\x8b\x25\x4f\xdd\xc4\xdb\ -\x97\xec\xe0\xef\xfe\x78\x31\x9f\xfb\x9b\x6b\xf9\xc1\x9e\x45\x54\ -\x4d\x42\x2c\x29\x55\x53\xcc\x57\x91\x84\x3e\x49\x78\x2a\x19\xe1\ -\x2b\xa3\x2f\x72\xef\xd4\x41\x66\x7c\xde\x03\xde\x35\x17\xb2\x31\ -\x6f\xb3\x71\xff\xc5\xc1\xdb\xe7\x1c\xd4\x2f\xaf\x9f\xd5\x4b\xee\ -\x59\x24\x27\x93\x6c\x47\xc2\x3a\xef\x40\xda\x74\x6c\xd8\x71\xff\ -\xc1\x95\x0c\xd4\x72\x1e\x3c\xb4\x82\xb3\xfa\x9b\x2c\xad\x2b\x97\ -\xaf\x19\xed\x20\x1a\xeb\x3c\xd3\x87\x77\xd1\xd4\x1f\xe2\x4d\x9d\ -\x77\xbf\xf9\x23\xdc\x72\xef\xeb\xf8\xe9\xe0\x11\xde\xb2\x66\x94\ -\x97\x67\x16\xb1\x38\xca\xa8\x4e\x3f\x8e\xd9\xf3\x08\x7b\x46\x2f\ -\x66\xf5\xc0\x32\x32\x8d\xc9\x35\x26\x53\x4b\xea\x0b\x9b\x1d\xb3\ -\x0d\x0e\x66\x49\x6f\x97\x40\xa9\xca\x9a\x2b\xd9\xa8\xf7\xf9\x94\ -\x7e\xf6\x78\x71\xf6\x64\x92\xed\x55\xe9\x2e\x3b\xd6\xc2\x57\x62\ -\xf0\x6c\x5e\xda\x64\x75\x3d\xa1\x16\x7a\x36\x2f\x6b\xb0\x6f\x7a\ -\x11\x22\xa5\x3f\x35\x9e\xb5\x2b\xfa\x59\xda\x3f\x83\xc1\xa3\xbe\ -\xc5\xeb\x79\x92\xcb\xb6\x6e\x61\xdf\x6c\x93\x33\x66\x73\xbe\x7f\ -\x70\x3d\x81\x4f\x59\x14\x67\xe4\x1e\x7e\x39\x51\xe1\xaf\xdf\x73\ -\x11\xd2\xfa\x5e\x39\x8f\x27\x57\xcf\x8f\x66\x27\x78\xa8\x71\xa8\ -\x4b\x8d\x3b\x4e\x19\xcd\x20\x1b\xf5\x6a\xa7\xf5\x26\x3b\xad\x37\ -\x9f\x8e\x83\x3a\x25\xa7\x65\xca\x43\x2a\x50\xb6\xad\x6a\x30\xd2\ -\xaa\x72\xce\x40\x8b\xe9\x2c\xe2\xbc\x81\x26\x4e\x43\x54\x8a\xb3\ -\xdb\xbf\xb8\x62\x05\xfd\xc9\x24\x6e\x3a\xc4\xab\xa1\xd2\xdc\xc3\ -\x87\x2e\xde\xc2\xf0\xf8\x5a\xce\x70\xa3\x5c\xb3\x7e\x3b\xbb\x0f\ -\xcd\x32\x31\xdd\xa4\x3f\x0e\xf9\xd4\xd5\xe7\xb3\xd9\x3c\x85\x3b\ -\x18\x90\x79\x61\xb6\x0c\x3d\x2f\x67\x93\x1c\xb5\xb3\xbd\xed\x0e\ -\xd2\x91\xac\xda\x19\xbd\x11\xe1\x2b\xc3\xdf\x4e\xfd\xe9\x38\xa8\ -\x53\x72\x5a\x1e\x25\x24\x27\x10\xc7\x96\x15\xd3\x54\x24\x21\xd1\ -\x84\x48\x72\x52\xad\x14\x68\x08\x4f\x68\x32\xce\xcb\x7e\x40\x2b\ -\x4b\x08\xc9\xf1\x12\xe0\xed\x34\x2b\xc6\xbe\xcb\xf2\xea\x6a\xa2\ -\xd9\xfd\x2c\x96\x80\x6d\x5b\x37\xe0\xa3\x65\x04\xbe\x81\x8e\xdd\ -\xc3\xec\xf8\x01\x6a\x62\x19\xb6\x4d\xbe\x70\xf4\x39\x8c\x08\x7b\ -\xb3\xe6\x1c\xb3\xa5\xd9\xfa\x1c\xb2\x11\xaf\x76\x46\x3f\xe9\x9a\ -\xfa\xb5\xa1\xbb\xd3\xac\x2d\xd9\xb6\x44\x4f\x47\xb2\x3d\x12\xee\ -\xb6\x1b\x2f\xbe\x03\xb4\x8d\x18\x8c\x28\x81\x96\xa0\xbd\xac\x3e\ -\x88\x40\xa0\x0e\x33\xb5\x0b\xf1\x75\x02\xe3\x11\x55\x02\x02\x4c\ -\x6b\x18\x6d\x8d\x62\x24\x43\x26\x9f\xc3\x4f\x3e\x5d\xa6\x8a\x69\ -\x59\x58\xed\x23\x14\x87\x53\xcf\xae\x6c\xa6\xab\x7b\xa7\xcb\x74\ -\xe7\x98\xbd\x51\x9d\x7e\x7d\xe8\xee\x5e\x88\xd7\xcd\xf4\x69\x33\ -\x3c\xbf\xbb\x26\x22\xa4\xe5\xfb\x08\xc4\xe1\x55\x8a\x94\x52\x8b\ -\xa3\xc8\xa2\x7c\x6b\x10\x55\x12\xad\x81\xa7\x33\xb6\x0b\x00\x9d\ -\x32\x4f\x89\x96\x8c\x38\x5c\x1b\x2d\xe1\x79\xb0\x99\xf3\x7c\x3a\ -\xc9\x98\x4b\x7b\xdb\x96\x7c\x8f\x1a\x7b\x3b\xad\x37\x29\xfa\x95\ -\xc1\xdb\x0b\xc9\x9e\xae\x73\x3a\x65\x95\xce\xd5\x51\x95\x56\x51\ -\x72\x29\x0b\x74\xe2\x0b\x00\x6f\xf0\x54\xa5\xd5\x41\x4b\x35\x69\ -\xa2\x48\xe7\x6c\x29\xa3\x42\x54\x16\x05\x2a\x26\xc5\xf8\x42\x5b\ -\x72\x62\x62\x49\x09\xc4\xf3\x4c\x32\xc9\x7f\x4e\xee\xc1\x96\x79\ -\x53\x8f\xcd\x5a\x25\x1b\xf5\x36\x9f\xd4\xcf\xda\x29\x7f\xf3\xf0\ -\xbd\x99\x3f\x59\x6e\xfc\x8a\x54\xba\xbb\x75\x28\xf5\xca\x7e\x27\ -\x40\xc8\x32\x13\xd3\x3f\x0f\x2d\xb5\x73\xe9\x44\xab\x9d\x13\xbc\ -\x02\xf5\x14\xa7\x87\xb6\x5d\x4a\xf5\x41\x51\x70\xc3\x91\xf8\x80\ -\x11\x67\x01\x61\xd4\x25\x64\xf8\x85\x6d\x4b\x16\xb2\x51\xcd\xf2\ -\x89\x93\x43\xbc\x5f\xab\xd7\xf2\xa2\x3b\x17\x69\x6f\xc5\xaf\x18\ -\x2f\x94\xe5\x7c\xa2\x76\x16\x5b\xa3\x88\xc4\x57\x89\x24\x23\xd3\ -\xb9\xd3\xc3\x86\xef\xa3\xcf\x34\x68\xfa\x7a\x89\x6b\x8b\xaa\x66\ -\x28\x79\x99\x36\xa6\x65\x3c\xb7\x0c\xe5\xca\xdf\x1e\xf9\x15\xfb\ -\xb3\xf9\xd5\xc5\xd2\x6f\x58\x25\x1f\xd3\x24\x1b\xf5\xb7\x76\xa3\ -\x9e\xdf\xc4\x65\xe6\x57\x0e\xba\xef\x33\x2d\x50\x8b\xed\x40\x86\ -\xf2\xd3\xd5\x00\xd6\x2e\x76\xb7\x7f\xa3\xeb\xf7\x5c\x95\x4c\x95\ -\x14\xc5\x1c\xab\x0b\xaf\x0d\xde\xc7\x7c\x33\x1b\xf5\x5f\x9d\x0f\ -\xf1\x5e\x49\xd8\x39\x75\x95\x6e\xe7\xad\x65\x78\x78\xd1\x4d\x73\ -\x5b\x73\x98\x88\x80\x8f\xd6\x37\xf2\x86\xb0\x56\x1c\x4b\x96\xed\ -\x63\xa9\x56\xcb\xb1\x82\x78\x5f\x56\x24\xa3\xce\xe9\x80\x7a\xc3\ -\xce\x24\xe7\x67\x8d\x09\x06\xf3\x69\x0e\xe7\xe9\xdc\xc6\xea\x1c\ -\xb3\xd9\xb8\x6f\x66\x23\x7a\xdb\xe0\x9d\xa7\x0f\x04\x7e\x6d\x2f\ -\xdd\xe9\x67\x44\x68\x78\xcb\x93\x7a\x04\x80\xf7\xf8\x01\xaa\xd2\ -\x87\xaa\xa3\x5a\x3a\xaf\xee\x9e\x8b\x5a\xd9\xe3\x91\x51\x94\x82\ -\x52\x02\xaa\x92\x72\x24\x9f\xe1\xfe\xc6\x01\xc6\xdb\xc7\x1f\xc7\ -\x62\xf6\xa8\xbb\x6d\xf0\xce\xf4\x86\x5f\x37\x83\x3a\x2d\x95\x9e\ -\x83\x5f\xda\x01\x11\xdd\xb1\xf9\xe9\xac\xc1\x77\x5b\x33\x3c\x6f\ -\x3d\x0d\x1f\x91\x68\xd9\xbd\xa3\xd5\xce\xd8\xfe\xde\xf4\x31\xbb\ -\x33\xcf\xb7\xa6\x67\xd9\x95\x35\x49\xbd\x2b\xa6\xed\xee\x85\x74\ -\x90\x8d\xfb\x24\x1b\x71\x5f\x1f\xbc\x33\xbd\xe1\x4f\x74\x40\x5e\ -\xad\xb0\x73\x8a\xb9\xb4\x42\xa7\x81\x53\x7a\xc3\x85\xc2\xbf\xb7\ -\xf6\x02\xf0\xe1\xda\x46\xb6\x45\xcb\xa8\x18\x83\x7a\x43\xcd\xb4\ -\x8a\x62\x9e\x49\xf0\x2a\x64\x54\x10\x12\x1e\x6a\x8e\xf0\x8d\xc9\ -\x97\x3b\xf4\xed\x2a\x45\x11\x67\x21\x1b\x75\x59\x36\xaa\xb7\x0e\ -\xde\x91\xde\x74\x9d\xae\x94\xdd\xb7\xb7\x78\x35\x63\xed\x49\x6c\ -\x58\x3b\x4d\x22\x1d\x4e\x17\x38\x98\x42\xd5\xc7\x5c\xca\xcf\xd3\ -\x84\x8a\x40\xa0\xe0\x68\x61\x00\xa7\x4d\x84\x00\x83\x23\xd1\x94\ -\x51\x9b\x2f\x2c\xa5\xb6\x99\x1d\x71\x36\x1b\xd7\x2f\x0e\xde\x51\ -\x14\xdc\xee\x96\x11\x7d\xb5\x63\xed\x89\x19\x16\x29\xba\x57\x3b\ -\x1e\x77\xde\x99\x79\x79\x2b\x0a\x3f\x4f\x8f\xf0\x62\x3e\x8b\x60\ -\xf0\xea\x31\x5a\x8c\x82\xe9\xb4\xe2\x7b\x55\x46\x5d\xb3\x33\x45\ -\x7b\x26\x9f\x2a\xe9\x88\xfa\x7c\xb2\x80\x78\x6f\x3f\xb0\x4c\x7e\ -\xb2\x6e\x42\x5f\x2b\xc9\x76\x44\x77\xfe\xcd\x7d\x7a\xdc\x3e\xe6\ -\x6e\x09\x9d\xa8\x2f\xb9\xeb\x59\xa1\x97\xa6\xfd\xdd\x4e\x79\xec\ -\xb4\x7e\x3a\x9f\xf2\x37\x0f\x7f\xfb\xd5\xcf\xa0\x4e\x59\xc2\xc9\ -\x21\xff\xf9\xe3\xfd\xff\x01\xf3\x7a\x24\xda\xff\x94\xd1\xd3\xd4\ -\x2d\xf3\x36\x03\x16\x74\xa7\xa3\x84\xae\xa9\xcf\xf9\x54\xef\x6a\ -\x33\xfb\x9b\x0c\x3d\x27\x94\xf0\xaa\x77\xc5\xf5\x9e\x83\x72\xe9\ -\xd5\x68\x99\xff\x45\x7a\xff\xa7\xe0\x18\x6d\x14\x0b\x9e\x17\x83\ -\x1c\xbe\x27\x6b\xf0\xdb\x7a\xfd\xa6\xb2\xa8\xdf\x5d\xbf\xbb\x7e\ -\x0b\xaf\xff\x03\x05\xf2\x7b\x06\xf0\x22\xce\x4f\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x0a\x59\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6f\x73\x74\x5f\ -\x70\x72\x6f\x63\x65\x73\x73\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\ -\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x2d\x31\x30\x32\x2e\x39\x31\x32\x39\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x37\x2e\x31\x36\x35\x36\x38\x33\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ -\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ -\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ -\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\ -\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ -\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ -\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ -\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\ -\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\x32\x32\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x32\x39\ -\x32\x39\x39\x35\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x37\x2e\x30\x36\x36\x36\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x31\ -\x2e\x33\x33\x33\x33\x33\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x32\x64\x30\x66\x36\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x36\x35\x34\x39\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ -\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x31\x32\x2e\x39\x34\x39\x31\x37\x35\x2c\x31\x36\x20\x68\x20\ -\x38\x2e\x33\x38\x34\x31\x35\x38\x20\x76\x20\x2d\x33\x2e\x31\x39\ -\x37\x32\x30\x35\x20\x6c\x20\x37\x2e\x33\x33\x36\x31\x33\x39\x2c\ -\x35\x2e\x31\x31\x35\x35\x33\x20\x2d\x37\x2e\x33\x33\x36\x31\x33\ -\x39\x2c\x35\x2e\x31\x31\x35\x35\x33\x20\x76\x20\x2d\x33\x2e\x31\ -\x39\x37\x32\x30\x36\x20\x68\x20\x2d\x38\x2e\x33\x38\x34\x31\x35\ -\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\ -\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x98\ -\x00\ -\x00\x2c\xab\x78\x9c\xed\x5a\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x50\ -\xe5\x97\x04\x0d\xc9\x73\xbf\x28\x92\x17\x48\x83\x5d\x2c\xd0\xa7\ -\xed\x16\x7d\x0c\x68\xf2\x48\x66\x43\xf1\x08\x24\x65\x49\xfb\xeb\ -\x3b\x87\x14\xaf\xa2\x36\x29\x52\xc0\xae\x12\x39\x86\xc3\x99\x39\ -\x97\xf9\x66\xce\x37\xc3\x63\x2f\x7f\x3a\x6e\xd3\xd9\xb3\xc9\x8b\ -\xc4\x66\xab\x39\xf6\xd1\x7c\x66\xb2\xc8\xc6\x49\xb6\x59\xcd\xff\ -\xf9\xfb\xcf\x9e\x9a\xcf\x8a\x32\xcc\xe2\x30\xb5\x99\x59\xcd\x33\ -\x3b\xff\xe9\xe1\x6e\xf9\x17\xcf\x9b\xfd\x2d\x37\x61\x69\xe2\xd9\ -\x21\x29\x9f\x66\xbf\x66\x9f\x8b\x28\xdc\x99\xd9\x9b\xa7\xb2\xdc\ -\x2d\x82\xe0\x70\x38\xf8\xc9\x59\xe8\xdb\x7c\x13\xbc\x9d\x79\xde\ -\xc3\xdd\xdd\xb2\x78\xde\xdc\xcd\x66\x33\x58\x37\x2b\x16\x71\xb4\ -\x9a\x9f\x07\xec\xf6\x79\x5a\x19\xc6\x51\x60\x52\xb3\x35\x59\x59\ -\x04\xd8\xc7\xc1\xbc\x33\x8f\x3a\xf3\xc8\xad\x9e\x3c\x9b\xc8\x6e\ -\xb7\x36\x2b\xaa\x91\x59\x71\xdf\x33\xce\xe3\x75\x6b\xed\x76\x73\ -\xa0\x95\x11\xd6\x5a\x07\x88\x04\x84\x78\x60\xe1\x15\xa7\xac\x0c\ -\x8f\xde\x70\x28\xec\x71\x6a\x28\x41\x08\x05\xa0\xeb\x2c\xbf\xce\ -\x6a\x51\x00\xa0\x3b\xf8\x6e\xcd\x1b\x81\x5f\xd8\x7d\x1e\x99\x35\ -\x8c\x33\x7e\x66\xca\xe0\xe3\xef\x1f\x5b\xa5\x87\xfc\xb8\x8c\x7b\ -\xd3\x34\x78\x0e\x56\x1d\x80\x9c\x85\x5b\x53\xec\xc2\xc8\x14\x41\ -\x23\xaf\xc6\x1f\x92\xb8\x7c\x5a\xcd\x29\xf3\x31\x85\x0f\xaf\x84\ -\x4f\x26\xd9\x3c\x95\x63\x69\x12\xaf\xe6\xb0\x7b\xa2\x55\xfd\xdc\ -\x4b\x0e\x5c\x1b\x9c\x27\x5e\xb4\x1a\xe4\x6b\xe2\xe3\x59\x8e\x39\ -\x95\xb5\x4d\xe3\xc2\x22\xb6\x91\xdb\x13\x4c\x69\xb6\x49\xb8\x2f\ -\xed\x16\xa2\x16\x45\x69\x58\x14\xc9\x3a\x89\xe0\xc1\x66\xbb\x74\ -\xbf\x49\xb2\x4f\x51\x6a\xf7\xf1\xa7\x6d\x58\x7c\x86\xe4\xfb\x54\ -\x5a\x9b\xfa\x0d\x8a\xed\x92\xe6\xb8\xb3\x79\xe9\x1d\xe3\x1d\x60\ -\x29\xe4\xa4\xf2\xd4\x57\x3e\x27\xe6\xf0\xc1\x1e\x61\x8f\x33\x34\ -\xa3\x04\xfe\xcd\x1f\x40\xbe\x8c\xcd\xba\x70\xfa\xda\x5f\xf7\x04\ -\x0e\xcb\x4a\x07\xda\x75\x92\x96\x26\xaf\xf5\xbd\x05\x22\x9b\xa6\ -\x26\x02\xc4\xc2\xf4\x10\x9e\x8a\x79\x63\x50\x94\xa7\x14\x5c\x04\ -\xb5\xcd\xbd\x24\x83\xa1\x3b\x9b\x56\xae\x79\xf5\x4c\x90\x01\xbf\ -\xfd\xf2\xa1\xb5\x77\x4b\xd6\x0a\x8c\x34\x6b\xc5\xb0\x4b\x08\x39\ -\x26\x9a\x71\x85\x48\x2b\x3e\xc7\x0e\xfb\x84\x2b\x8d\x45\x2b\x3f\ -\x55\xe6\x84\x4a\x46\x99\xa4\xad\xb8\x89\x2a\xf6\x99\x64\x4a\x68\ -\x7e\x76\xca\xb9\x65\x7e\x09\xf7\x00\x7c\x98\x7d\x48\xf7\xad\x7b\ -\x5f\xe1\xa0\x73\x31\xfe\x68\x9e\x93\xca\x29\x17\x70\x8a\x05\xc6\ -\x42\xa8\x9e\x49\xe5\xd5\x60\x05\xf0\x4e\xcc\x67\xc1\x19\xd4\xa0\ -\x76\xf9\x05\x20\x56\x63\x88\xa9\x66\x58\xf0\x09\x84\xa5\x52\x94\ -\x8e\x11\xd6\x48\x0a\xca\xc5\x04\xc2\x5c\x61\x4e\x20\xe5\x5f\x0e\ -\x61\x8c\xd0\xcb\x23\x8c\x7b\xd9\x7a\x46\x98\x29\xce\xd5\x99\x0c\ -\x86\x10\x6b\x89\xb1\x64\x63\x8c\x41\xa4\xdc\x01\x9c\xc8\x62\xca\ -\xb4\xd4\xf2\x45\x31\x66\xaf\x01\x63\x31\xc2\x98\x50\x42\x05\x65\ -\x13\x18\x33\xc1\x24\xe9\x79\x55\x63\x4c\x99\xa0\x84\xf7\x42\xd5\ -\x61\x2c\x34\x11\x2f\xc9\x13\x18\xa9\x57\x80\x30\x46\x37\x4c\xc5\ -\x18\x93\xd7\x00\xf1\x45\xb5\xbb\x21\x2a\xc6\xaf\xa0\xd8\x61\x7c\ -\x51\xec\x6e\x8a\x8a\xc9\x6b\x28\x77\x64\x5c\xee\x6e\x89\x8a\xc9\ -\x6b\x28\x76\x64\x5c\xec\xce\x54\x3c\x95\xc5\xff\x7f\x54\x4c\x5e\ -\x43\xb5\xa3\x17\xd5\xee\x86\xa8\x98\xbe\x86\x62\x47\x2f\x8a\xdd\ -\x4d\x51\x31\x7d\x0d\xe5\x8e\x8e\xcb\xdd\x2d\x51\x31\x9b\x2e\x76\ -\xcb\xc0\xdd\x57\x54\xff\x6b\xef\x59\xdc\x25\x4b\xec\x2e\x3b\xee\ -\xda\xd9\x1e\xc3\xc2\x9c\x17\xd8\x85\x1b\x53\xc1\xbb\x9a\xdf\xaf\ -\xab\xcf\x59\xf1\x68\xf3\xd8\xe4\x8d\x4a\x54\x9f\x81\xca\xee\xc2\ -\x28\x29\x4f\xf5\xd5\xe0\xdd\xd0\x5f\x37\x6b\xab\x47\xd3\xfa\xe2\ -\x29\x8c\xed\x61\x35\x27\x63\xe5\x1f\xd6\x6e\x57\x73\xea\x6b\xae\ -\x11\x41\x7a\xac\x8e\x5c\x34\x31\xc3\xbe\xe2\x8a\xb3\x0b\x2d\x2c\ -\xa8\x7d\x02\xac\xc4\x15\xbd\x50\xee\xf3\xdc\x64\xa5\x97\x86\x27\ -\x03\x5e\x55\x3f\x9a\x74\x28\x9e\xec\x61\x93\x3b\x74\xca\x7c\x6f\ -\xc6\x23\x9d\xc6\x7b\x7c\x74\xd7\x45\x53\xea\xd8\x46\x7b\x77\x2d\ -\xe9\xed\xb3\xa4\x2c\x56\xf3\xdd\xb1\x3f\xeb\x3e\x89\x4d\x31\x3d\ -\xb0\xc8\xc2\x9d\xb7\x49\xed\x63\x98\x4e\x1b\x1c\x92\x0c\x50\xf2\ -\x9a\x54\xa5\x6d\x10\xc6\x16\x4d\x72\x4a\xa4\xae\x58\xb8\xab\xae\ -\x2b\xaa\xd3\x75\xd5\x36\x3c\x26\xdb\xe4\x0f\x03\xc0\xe0\x0b\x54\ -\x9c\x67\x7d\x58\xce\x19\x39\x80\xad\x49\xe4\xf2\xe4\xae\x27\x8f\ -\x27\x27\x1b\x1c\x58\x27\x20\x5a\x77\x5c\x66\xf3\x64\x93\x64\xbd\ -\xed\x36\xa2\x53\x5f\xe4\x2e\x33\x93\x6c\x73\xec\xf6\xd5\xca\x5c\ -\x52\x9e\xcf\xc7\x32\xb8\x3c\x08\x95\x7c\x6b\xca\x30\x0e\xcb\xb0\ -\x3b\x15\x8d\x04\xf6\x82\x1a\x4f\xf2\x78\xbd\xf8\xed\xe3\xcf\xed\ -\x49\x8f\xa2\xc5\xbf\x6c\xfe\xb9\x3b\x9c\xce\x20\x7c\xb4\x7b\x40\ -\xbe\xe5\x03\x77\x89\x18\x2d\xd6\x36\xdf\x86\xe5\x43\xb2\x85\x5c\ -\x77\x97\xbe\x7f\x3d\x6e\x53\x38\x9f\xad\x62\x60\xec\xc0\xe9\x26\ -\xad\xa7\xcd\x4d\x7d\x05\x3c\x79\x0f\x1e\x47\xdb\xc4\x0d\x0a\xfe\ -\x51\x26\x69\xfa\xab\x5b\xa4\x65\x84\x76\xd2\xa4\x4c\x4d\x27\x5c\ -\x06\xe7\xdd\x37\xbc\xd1\x73\x6e\x19\x34\xde\x57\x4f\x9b\x0e\x95\ -\xc1\x21\x69\x03\x9b\x86\x8f\x06\x32\xf6\xef\x4e\x39\xbb\xcc\x8b\ -\xdc\xee\x77\x5b\x1b\x9b\xf3\xf0\x16\x4d\xe0\xc0\x11\xb5\x03\x77\ -\xa5\x8b\x7b\x84\x38\x8f\xd9\x7b\xf7\xe0\x9d\x79\x63\x81\xeb\xc7\ -\x7c\x9f\x9a\x85\x79\x36\x99\x8d\xe3\xf7\x45\x99\xdb\xcf\xc6\xd9\ -\xbb\xcf\xf9\xb1\x3e\x1c\x0b\xec\x63\x2d\xa4\x26\x84\x35\x72\x40\ -\xc8\xe4\x29\x64\x6f\xb9\x68\x65\x71\x08\xbc\x93\xe7\xe1\x69\x91\ -\xd9\xcc\x34\xd2\x76\xcd\x41\x62\xba\xed\x42\x32\x74\xfd\x4d\x73\ -\x0a\xa5\x0f\x0c\xdc\x27\xe9\xb6\x32\x30\x9f\x30\xcd\x45\x37\x0f\ -\xa4\x27\xa7\x3e\x34\x3d\xbc\xd7\x3f\x41\x7e\x32\xe1\x73\x44\x69\ -\xaf\x82\xe7\xc7\xaa\x14\x21\xa5\x04\xea\x66\xce\x4f\x75\x67\x0a\ -\x45\x5d\x75\xd2\x32\x0f\xb3\xc2\xe5\x11\x64\x6d\x58\xe6\xc9\xf1\ -\x0d\x7e\x87\xde\x41\xcd\x52\x1c\x21\x2a\x24\x7d\x87\x60\x4d\x21\ -\x09\x65\x04\x14\xe8\x6d\xe7\xd7\x9f\xdd\x97\x4f\x19\xb4\x77\xe6\ -\x6d\xbd\xe9\x47\xf1\xea\x46\xa0\x03\xc1\xee\x1b\x36\x22\x10\xb4\ -\xdc\x40\xe4\xc3\x8d\xd4\x8e\x71\x21\x61\x93\xfa\x0b\x20\x80\x29\ -\x21\xbe\x46\x40\x7f\xb4\x8f\x2c\x25\xd0\xe3\x33\xa6\x26\x4a\x34\ -\x87\x6c\x60\x54\xaa\x2f\xc7\xae\x89\x34\x95\x3d\x14\x46\xd9\x19\ -\x86\x90\x6d\xdf\x9a\x9d\x58\x2a\x0e\x30\x7c\x4b\x76\x4e\xc6\x60\ -\xb0\xd7\xf5\xba\x5a\xfb\x1b\xf7\x8a\xa0\x7f\x57\x4c\x93\xff\xe5\ -\x49\x02\x7c\xf5\x7f\x71\x92\x04\x84\x16\x4a\xf8\xe0\x24\x41\x54\ -\x89\x26\x8c\x0d\x4e\x12\xf6\x25\x95\x84\xf5\x42\xfd\x67\x27\x49\ -\x48\xc6\xc9\x97\xcf\x11\x58\xc1\x9b\x26\x93\x2e\x7d\x05\x74\x7b\ -\xf4\x7c\x8c\xda\x00\x98\x34\x4d\x76\x85\x19\xc5\x60\x88\xf8\xe2\ -\xde\x08\xf7\xd5\x82\x5d\x37\x58\x43\xb0\x11\x74\x9f\x4a\x32\xad\ -\x55\x23\x4f\x93\xcc\xc0\x09\x5c\x00\x89\x66\x71\x5f\xf8\x6f\x9b\ -\x64\x8b\x2a\x14\x13\x71\x21\x3e\xff\xca\xc8\xbc\xaf\xfb\xc5\x05\ -\x54\x93\x37\xf7\x5d\xb7\xfc\x76\x10\xb1\x5d\x58\x3e\x29\xd5\x01\ -\xed\xba\x2e\x0c\xa0\x62\xe8\xb9\xba\x98\xb8\x6e\x8b\x40\xbb\x85\ -\x14\x62\x64\x84\xbf\x6b\x9e\x89\x1e\xc1\x8f\x34\xa7\x04\x5e\xb1\ -\x6f\x17\x47\x36\x89\xa3\x47\x87\x48\x42\x22\x0b\x2d\x19\x1d\x22\ -\x29\x7d\x4d\x31\x51\x6c\x80\x24\x6c\x88\x53\xe7\xdb\x08\x4a\xc9\ -\x18\x96\xf0\xf2\x7d\xbb\x50\xa2\x69\x28\xc5\x10\x4a\x09\x2f\xc3\ -\x54\x69\x31\x4e\x4a\x0c\x9d\x70\x0f\xe0\x1a\x4a\x09\x04\x8c\xc9\ -\x08\x49\x8a\xe0\x4d\x8f\xdd\x2e\x90\x44\x4c\x03\x29\x07\x40\x12\ -\x68\x19\xb0\x80\xf6\x65\x9c\x93\x88\x72\x4d\xc5\x08\x48\x4d\x11\ -\xc1\x42\x8c\x90\xe4\x5a\x0a\x81\xc8\x0d\x43\x49\xa6\xa1\xbc\x20\ -\x4a\x2d\x15\xe2\x6c\x00\x25\xd6\x3e\x92\x8a\xaa\x71\xa1\xfa\x3e\ -\x89\x12\x4f\x17\x1c\x8f\x5e\x52\xa5\x82\xa2\xcf\xf9\x10\x4b\xe9\ -\x2b\x84\xc5\xf8\x78\x7f\xa7\x4c\x89\xaf\x14\x1d\x31\xce\x4b\xe9\ -\x4b\x78\x93\x40\xfa\x22\x2f\x19\xc4\x43\xff\xe0\x4a\xf7\x9b\xde\ -\x2b\x5c\x39\x2a\x3b\x04\x8e\xa8\xe4\x52\x90\x21\x94\x02\xde\x52\ -\x04\x51\x64\x92\x2d\xe9\xf7\xc6\x96\xe8\x4a\xe1\x21\xc3\xac\x24\ -\x3e\x72\x77\xb3\x6a\x00\xa5\xf0\xa9\xc0\x1c\xe1\xf1\x0b\xf2\xf7\ -\xc9\x96\xe8\x4a\xdd\xa1\x9e\xbe\x60\x4b\xa0\xbb\x61\xe1\xe1\x3e\ -\x74\x42\xd0\x6c\xf2\x1f\x6c\x59\xff\xd1\xd7\x35\xb6\xc4\x63\xb6\ -\x54\xf0\xba\xa3\xc9\x38\x2f\x09\x83\xe3\x2c\x7f\xb0\xa5\xfb\x13\ -\xc5\x6b\x6c\x49\xc6\x6c\x89\x01\x1f\x36\x2c\xe2\xcc\x87\xa2\x43\ -\x35\x1f\x17\x9e\xaf\x61\xcb\x65\xb0\x79\xb8\x5b\xba\x7b\xd5\x87\ -\xbb\xff\x00\x92\xa3\x93\xf5\ -\x00\x00\x0f\x7e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x33\x32\x30\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ -\x6f\x61\x64\x5f\x61\x72\x72\x6f\x77\x2e\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x2e\x35\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x2e\x35\x22\x3e\x0a\x20\x20\ -\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ -\x65\x66\x73\x35\x33\x32\x32\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ -\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\ -\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\ -\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\ -\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ -\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ -\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ -\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x37\ -\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x38\x2e\ -\x38\x36\x37\x33\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x2e\x34\x39\x38\ -\x35\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\ -\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\ -\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ -\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x35\x33\x34\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ -\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x35\x33\x32\x35\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ -\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ -\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ -\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\ -\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ -\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x31\x2e\x32\x39\x32\x39\x39\x35\x33\x33\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ -\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ -\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x33\x2e\x37\x2c\ -\x30\x2e\x31\x36\x36\x36\x36\x36\x36\x37\x20\x63\x20\x2d\x31\x2e\ -\x30\x39\x32\x36\x31\x35\x2c\x30\x20\x2d\x31\x2e\x39\x36\x36\x36\ -\x36\x37\x2c\x30\x2e\x38\x37\x34\x30\x35\x31\x38\x33\x20\x2d\x31\ -\x2e\x39\x36\x36\x36\x36\x37\x2c\x31\x2e\x39\x36\x36\x36\x36\x36\ -\x36\x33\x20\x56\x20\x31\x36\x2e\x34\x33\x33\x33\x33\x33\x20\x48\ -\x20\x34\x2e\x32\x36\x36\x36\x36\x36\x37\x20\x63\x20\x2d\x32\x2e\ -\x31\x33\x33\x33\x33\x33\x37\x2c\x30\x20\x31\x31\x2e\x37\x33\x33\ -\x33\x33\x33\x33\x2c\x31\x36\x20\x31\x31\x2e\x37\x33\x33\x33\x33\ -\x33\x33\x2c\x31\x36\x20\x4c\x20\x31\x37\x2e\x30\x36\x36\x36\x36\ -\x37\x2c\x33\x33\x2e\x35\x20\x31\x38\x2e\x31\x33\x33\x33\x33\x33\ -\x2c\x33\x32\x2e\x34\x33\x33\x33\x33\x33\x20\x63\x20\x30\x2c\x30\ -\x20\x31\x33\x2e\x38\x36\x36\x36\x36\x38\x2c\x2d\x31\x36\x20\x31\ -\x31\x2e\x37\x33\x33\x33\x33\x34\x2c\x2d\x31\x36\x20\x48\x20\x32\ -\x32\x2e\x34\x20\x56\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\ -\x63\x20\x30\x2c\x2d\x31\x2e\x30\x39\x32\x36\x31\x34\x38\x20\x2d\ -\x30\x2e\x38\x37\x34\x30\x35\x31\x2c\x2d\x31\x2e\x39\x36\x36\x36\ -\x36\x36\x36\x33\x20\x2d\x31\x2e\x39\x36\x36\x36\x36\x37\x2c\x2d\ -\x31\x2e\x39\x36\x36\x36\x36\x36\x36\x33\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ -\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ -\x4c\x69\x76\x65\x6c\x6c\x6f\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\ -\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ -\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ -\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x32\x33\ -\x34\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ -\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\ -\x65\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x33\x33\x35\x37\x31\x32\x34\x33\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ -\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ -\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ -\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x39\x38\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x35\ -\x2e\x35\x39\x39\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x37\x2e\x34\x36\x36\x36\ -\x36\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x36\x2e\x36\x36\x36\x36\x36\x36\x35\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\ -\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x32\x30\x32\x30\x31\x38\x37\x38\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x63\x78\x3d\x22\x32\x35\x2e\x32\x38\x38\x38\x38\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x37\x2e\x37\ -\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ -\x3d\x22\x32\x2e\x37\x39\x39\x39\x39\x39\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x33\x37\x36\x38\x31\x31\ -\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\ -\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\x35\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\ -\x31\x31\x35\x31\x38\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x35\ -\x2e\x35\x39\x39\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x32\x32\x32\x32\ -\x32\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x36\x2e\x33\x37\x36\x38\x31\x31\x35\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x30\x2e\x30\x30\x36\x33\x37\x35\x38\x37\x2c\x30\ -\x2e\x39\x39\x39\x39\x37\x39\x36\x37\x2c\x2d\x31\x2c\x30\x2c\x30\ -\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x36\x30\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\x35\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x32\x30\x38\x37\x39\x35\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ -\x37\x2e\x37\x33\x33\x38\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x2d\x32\x35\x2e\x35\x37\x38\x37\x38\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x30\ -\x38\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x37\x2e\x33\x31\x31\x30\x35\x36\x31\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x12\xb2\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x61\x64\x64\x5f\x62\ -\x61\x6e\x64\x73\x65\x74\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\ -\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\ -\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\ -\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ -\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ -\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ -\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x36\x32\x2e\x30\x31\x39\x38\x31\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x39\ -\x2e\x36\x30\x31\x37\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x67\x33\x37\x31\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ -\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ -\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ -\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\ -\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ -\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ -\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\ -\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x32\x2e\x30\x34\x37\x32\x32\x33\x35\x37\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\ -\x39\x38\x34\x36\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x31\x36\x2e\x37\x36\x34\x34\x39\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x38\x2e\x39\ -\x34\x39\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x34\x32\x2e\x36\x31\x30\x34\x35\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x35\x33\ -\x36\x34\x37\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ -\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\x2c\ -\x30\x2e\x35\x33\x36\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ -\x37\x38\x39\x33\x37\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\ -\x33\x39\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x32\x2e\x37\x31\x30\x39\x37\x38\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\ -\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x32\x36\x2e\x30\x36\x32\x32\x38\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x33\x33\x2e\x37\x33\x32\x30\x34\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\ -\x37\x2e\x39\x31\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x39\x38\x34\x36\x35\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ -\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\ -\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ -\x2e\x39\x31\x34\x34\x32\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x38\x32\x33\x34\ -\x33\x35\x34\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x33\x37\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x31\x39\x2e\x39\x38\x34\x36\x35\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\ -\x2e\x32\x31\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x32\x31\x2e\x38\x36\x33\x30\x39\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x31\x2e\x38\x32\x31\x39\x32\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ -\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x32\x2e\x39\x30\x36\x35\x38\x31\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\ -\x33\x36\x32\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\ -\x36\x38\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ -\x2c\x30\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\ -\x2e\x37\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x30\x31\x31\ -\x30\x32\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\ -\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x2d\x33\x2e\x37\x38\x37\x36\x32\x39\x38\ -\x65\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x31\x39\x2e\x39\x30\x30\x39\x36\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x39\ -\x38\x34\x36\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x31\x2e\x37\x38\x38\x33\x39\x38\x33\x39\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x67\x33\x37\x30\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x33\x37\x31\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x67\x33\x37\x31\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x39\ -\x35\x32\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x31\x32\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x31\ -\x2e\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x32\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x35\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\ -\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ -\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x34\x2e\ -\x38\x37\x34\x39\x39\x39\x2c\x32\x32\x2e\x31\x32\x35\x20\x48\x20\ -\x32\x38\x2e\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ -\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x34\x2e\x32\x33\x34\x34\x36\x31\x37\x38\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ -\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\ -\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x32\x31\x2e\x38\x37\x35\x2c\x31\x35\x2e\ -\x31\x32\x35\x20\x76\x20\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ -\x0a\ -\x00\x00\x0b\x27\ -\x00\ -\x00\x5a\x95\x78\x9c\xed\x5c\x59\x8f\xdb\xc8\x11\x7e\xf7\xaf\x60\ -\x64\x04\xbb\x46\xd4\x14\xfb\x60\x1f\x1a\xcd\x2c\x10\x1b\x0b\x2c\ -\xb0\x79\xc9\x6e\x10\x20\x2f\x0b\x0e\x49\x69\x08\x53\xa4\x40\x52\ -\x23\x8d\x7f\x7d\xaa\x78\x89\xd4\xe1\x38\x96\xb4\xd6\x48\xa6\x31\ -\x9e\x51\x55\x1f\xd5\x5f\x57\x55\x7f\x4d\xb1\x39\xf9\x69\x3d\x8f\ -\xad\xe7\x30\xcb\xa3\x34\xb9\x1f\x50\xdb\x19\x58\x61\xe2\xa7\x41\ -\x94\xcc\xee\x07\xff\xfa\xfd\x67\xa2\x07\x56\x5e\x78\x49\xe0\xc5\ -\x69\x12\xde\x0f\x92\x74\xf0\xd3\xc3\x9b\xc9\x5f\x08\xb1\xde\x67\ -\xa1\x57\x84\x81\xb5\x8a\x8a\x27\xeb\x97\xe4\x63\xee\x7b\x8b\xd0\ -\xfa\xf1\xa9\x28\x16\xe3\xd1\x68\xb5\x5a\xd9\x51\x2d\xb4\xd3\x6c\ -\x36\x7a\x67\x11\xf2\xf0\xe6\xcd\x24\x7f\x9e\xbd\xb1\x2c\x0b\xfa\ -\x4d\xf2\x71\xe0\xdf\x0f\xea\x0a\x8b\x65\x16\x97\x05\x03\x7f\x14\ -\xc6\xe1\x3c\x4c\x8a\x7c\x44\x6d\x3a\x1a\x6c\x8a\xfb\x9b\xe2\x3e\ -\xf6\x1e\x3d\x87\x7e\x3a\x9f\xa7\x49\x5e\xd6\x4c\xf2\xb7\x9d\xc2\ -\x59\x30\x6d\x4b\xa3\x35\x2b\x5e\x16\xa2\xc6\x98\x91\xc3\x46\x8c\ -\x11\x28\x41\xf2\x97\xa4\xf0\xd6\xa4\x5f\x15\x6c\xdc\x57\x95\x39\ -\x8e\x33\x02\xdd\xa6\xe4\x97\x95\x1a\xe7\x00\xe8\x02\x7e\xda\xe2\ -\x8d\xc0\xce\xd3\x65\xe6\x87\x53\xa8\x17\xda\x49\x58\x8c\x3e\xfc\ -\xfe\xa1\x55\x12\xc7\x0e\x8a\xa0\xd3\x4c\x83\x67\xaf\xd7\x1e\xc8\ -\x89\x37\x0f\xf3\x85\xe7\x87\xf9\xa8\x91\x97\xf5\x57\x51\x50\x3c\ -\xdd\x0f\xb8\xb0\x29\x87\xcb\x2d\x85\x4f\x61\x34\x7b\x2a\xb6\xa5\ -\x51\x70\x3f\x00\xeb\x99\xd1\xd5\xe7\x8e\x73\xd0\xaa\x40\xdd\xf0\ -\xb8\xd5\x38\xb6\x61\x36\xb5\x32\xea\x72\x55\x95\x69\x86\x30\x0e\ -\x52\x1f\x6d\x82\x26\xc3\x79\xe4\x2d\x8b\x74\x0e\xb3\xe6\xfb\xb1\ -\x97\xe7\xd1\x34\xf2\xe1\x43\x9a\x2c\xe2\xe5\x2c\x4a\xfe\xc8\xc2\ -\xbe\xf8\x8f\x22\x4d\x63\xbb\x01\xb2\xed\x35\x5c\x2f\xd2\xac\x20\ -\xeb\x60\x01\x70\x4a\xb5\x57\xf9\xd2\x28\x1f\x40\x3b\x09\xc2\x69\ -\x8e\xa5\xaa\xb1\xe1\x27\x18\x9c\x1a\x58\xa3\x52\xdb\x9a\x8a\x76\ -\x06\xcf\x51\xb8\xda\x94\x7d\xf4\xf2\x0a\x3f\xcb\x5a\x78\x33\xf0\ -\xb5\x38\xcd\xee\x07\x6f\xa7\xe5\x55\x2b\x1e\xd3\x2c\x08\xb3\x46\ -\x25\xcb\xab\xa7\x4a\x61\x3e\xa2\xe2\xa5\x8a\xae\xba\xed\xc6\x5e\ -\x6c\xb5\xd5\x3b\xfb\xf5\xf9\x93\x17\xa4\xab\xfb\x01\xdb\x56\x7e\ -\x4a\xd3\x39\xb4\x0a\xf3\x62\x94\x76\x76\xd4\xfe\xfa\x7e\x40\xa8\ -\x6b\x1b\x18\xac\x31\x3b\x5a\x34\x48\xd8\x5a\x70\xc1\xc4\x8e\x72\ -\x99\x65\x10\x7f\x24\xf6\x5e\x42\x18\x55\xf9\x8b\xd6\x85\xf2\xa7\ -\x74\x35\xcb\x10\x9d\x22\x5b\x86\xdb\x35\x51\x43\x1e\x1f\xd3\xf5\ -\x7e\x35\xb8\xc3\x12\x23\x9b\x2c\x93\xa8\x80\xe8\x59\xac\xbb\xad\ -\x2e\xa3\x20\xcc\xf7\x57\xcc\x13\x6f\x41\x66\x71\xfa\xe8\xc5\xfb\ -\x0b\xac\xa2\x04\x50\x22\xb5\xa3\x53\xde\x4e\xc2\x76\x89\xc6\xeb\ -\x95\xa3\x0f\x94\x00\xdb\x77\x26\xa2\x56\xbd\x1c\x56\xcd\xbd\x75\ -\x34\x8f\x3e\x85\x00\x0c\x2d\xfd\x0e\x7c\xab\x07\x4b\x55\xcd\xb2\ -\x8a\x17\x8c\xe0\xf5\x0b\xca\x06\x8d\x10\xf1\x44\x01\x33\x46\xb5\ -\xc2\x34\x8b\x20\x30\x3a\xe6\x34\xa2\x97\xae\x08\xe3\x1d\xd2\xf5\ -\xba\x74\xb0\xd2\xfd\xd4\xb6\xee\xa5\xab\xab\xfd\x7e\xb4\xeb\xf8\ -\xa5\x7c\x1e\x16\x5e\xe0\x15\xde\x26\x0a\x1a\x09\xd8\xe6\x34\x23\ -\x83\xd4\x39\xfe\xe7\x87\x9f\x1f\xea\x8e\x26\xbe\x3f\xfe\x77\x9a\ -\x7d\x6c\xfa\xb5\x2c\x2c\xe0\x3d\xa6\x4b\x40\x7a\xf0\xd0\x8a\x27\ -\x81\x3f\x86\x64\x07\x49\xe0\x21\x9a\x83\x6f\x63\x9e\xfc\x1b\x24\ -\xb7\xc9\x68\xa3\xe8\x15\x46\xb0\x36\x8d\x56\xcd\x66\x61\x95\x35\ -\xf7\x2e\x1d\x81\x3f\x8f\xb0\xd2\xe8\xb7\x22\x8a\xe3\x5f\xb0\x93\ -\x7a\xc4\x9d\x46\xa3\x22\x0e\x37\xc2\xc9\xa8\xb6\xbe\x1e\xdb\xa8\ -\x33\xb8\xc9\xa8\x19\x7d\xf9\x69\xb6\x41\xa5\x17\x14\xed\x44\xc7\ -\xde\x63\x08\x1e\xfa\x2b\x2a\xad\x1d\xed\x2c\x4b\x97\x8b\x79\x1a\ -\x84\x75\xf5\x06\xcd\x85\x57\x3c\xb5\x53\x56\xbc\xc4\xa0\x2f\x13\ -\xca\xf8\xad\x53\x5e\x77\xd3\x14\x62\xa6\xd4\x8c\x13\x44\x29\xae\ -\x24\xcf\x5e\x16\x79\x49\xd1\x93\xad\x4a\xff\xee\x89\xf2\x22\x0b\ -\x0b\xff\xa9\x2f\x03\x57\x1d\xc3\xbc\x47\xcb\xf9\x5d\x1c\x25\x61\ -\x1d\x17\xbd\x32\x53\x6f\x1e\xc5\x2f\xe3\xdf\xbc\x24\xbf\x23\xcd\ -\x20\x48\x55\x7d\x11\xfa\x6d\xa6\xae\x4a\x14\xe1\xba\x80\x52\x01\ -\x84\xf7\xd8\xa9\x3e\x79\x71\x34\x4b\xc6\xc0\x1f\xb2\xa2\x12\x04\ -\x90\x43\xb3\xaa\x4e\x02\x7c\x62\x5b\x48\xd0\x92\x4a\x13\x87\x45\ -\x11\x66\xa4\x76\xe0\xc6\xac\x15\x64\xd4\x6d\x59\xd9\x46\x91\x81\ -\x09\xe8\x40\x55\xed\x55\x16\x15\x50\x84\x20\xd6\xe3\x38\x23\xc5\ -\xe3\x5d\x10\xc1\x02\x53\xf6\x1c\x17\xd9\x1d\x66\xf6\x72\xd8\xf9\ -\x53\x34\x2d\xc6\xcd\xc7\xda\xec\xc4\x7f\x02\xf0\x2b\xbb\x83\x28\ -\x5f\xc0\x64\xc1\xe2\x5b\x16\x48\x61\xd5\x9b\xc6\xe9\x6a\xfc\x1c\ -\xe5\xd1\x63\x1c\xde\x95\xbf\xa3\x18\x9c\xae\x15\x4d\xc1\xf3\x36\ -\x53\x07\x1f\x48\x9d\xe3\xc7\xf4\x0e\xe6\x22\xfd\x58\x8f\xb1\xfa\ -\xbb\xca\x59\x63\x6e\x8b\x72\x15\x16\xec\x6e\xee\x65\x1f\xc3\xac\ -\x2a\x13\x26\x1e\x34\x49\x1e\x3d\xff\x23\x7a\x4f\x12\x8c\x3d\x1f\ -\x72\xe8\x32\x06\xee\xd5\x86\x39\xb8\xe3\x3f\x2c\x48\xf5\x9a\x71\ -\x43\xd5\x90\x41\xac\x3b\x86\x31\x65\xbd\xb7\x28\xac\x2a\xda\x50\ -\xa1\x86\x40\x27\xb4\x96\x98\x60\x2c\x69\x6b\xe5\x30\x25\x39\x14\ -\xe5\xda\x28\x25\xb4\xc5\x6d\xaa\x98\x16\x54\x0e\x95\x2d\x38\x33\ -\x8e\xab\xad\x5f\x2d\xa8\x44\x1d\xe1\x2a\x6e\xd4\xd0\x05\x9a\xa0\ -\xa9\x2b\x85\x45\x6d\x25\x05\x93\xda\x1d\x42\xa7\x42\x30\x57\x18\ -\x8b\xd9\x4a\x6b\x6a\x04\x43\x19\xa3\xda\x11\x1c\x3b\x17\x54\x1b\ -\x57\x0d\xe1\x2f\xce\x1d\xa9\x24\xf4\x2d\x86\xda\x76\x79\x79\x59\ -\x3e\xd6\x63\xc6\xe5\xd4\x0c\x09\xb3\x8d\xd6\x5c\x6a\x65\x41\xab\ -\x2e\x13\x4a\x0f\x89\x8b\x32\x41\x0d\xb5\x0c\x66\x30\xb0\x60\x48\ -\x90\xaf\x50\xa6\xa9\x82\xca\x38\x1e\x4e\x87\x8e\xcd\x34\xa7\x94\ -\xa2\x1d\x06\x86\xa6\x0d\x8e\xd7\x35\x52\x51\xe9\x5a\xd0\xb9\xab\ -\x94\x16\xd8\x05\x17\x94\x32\x65\xac\x4f\xbd\xdc\x8b\x11\x08\xac\ -\x40\x13\x45\x36\x99\x75\xb3\x1e\xa6\x49\x02\xce\x93\x66\x04\x56\ -\xc6\x67\xaf\x58\x66\x61\x2f\x03\xb7\x99\x14\xdc\x0d\x93\x0f\x2c\ -\x62\x7e\x73\xb5\xd9\xe7\x7b\x94\x7f\x8f\xf2\x63\xa3\x7c\x6e\x51\ -\x0d\x01\x07\xdc\x5c\x0d\x39\xb5\x99\xe3\x4a\x2a\x21\x88\x5c\x5b\ -\x19\x88\x48\x03\xf1\xac\x99\x70\x18\xb5\xb4\x6d\x84\x70\x65\x15\ -\x06\xb0\x25\x51\xda\xa2\x0c\xc3\x4e\x38\x06\xa3\x4a\x0a\xea\xb8\ -\xca\x8a\x21\xee\x39\x83\x72\x1a\xaa\x32\x26\x98\x05\x21\xe2\x68\ -\x68\x1f\xe2\x0c\x82\x96\x49\x46\xa9\x45\x80\x3d\x50\x0d\x81\x8c\ -\x71\x26\x24\xe7\x20\x52\xd0\xac\x70\x8d\x81\xb4\xe0\x08\xc3\xb4\ -\xb1\x84\x0d\xe6\x08\x41\x87\x90\x1e\x28\x75\x20\x4f\xf8\xd8\x9a\ -\x94\xae\xe3\x9a\x21\x87\x62\x12\xec\xb0\xa0\x73\xce\x38\x83\xe4\ -\x21\x21\xb7\x70\xcc\x1d\x04\xac\x55\x2e\xb0\xd4\xa1\x00\x9d\x80\ -\x84\x83\x15\xb9\xe3\x32\xd7\xc5\x01\x30\x0e\x79\xad\x34\x0d\x8c\ -\xe0\x0a\xcd\x90\xae\x96\x0e\xc5\xfc\xc4\x1d\x25\x15\x26\x3d\x2e\ -\x20\xff\xe9\x43\x81\x7d\xb6\xb0\x9e\xf5\x38\x9c\x70\xa8\xdb\xe9\ -\xab\x8e\xf3\xae\xaf\xb4\xba\xd6\x9b\x91\xd1\xc2\x9f\x38\xd9\x3f\ -\x12\xa6\x6c\x55\xe6\xc6\x21\xcc\x97\x7e\xd7\x92\xa7\x09\x3a\x76\ -\x87\x5f\x95\x9c\x4e\x30\xbc\xf8\xa0\x23\xef\xd1\x45\xcb\x82\x62\ -\x0c\xa7\xb1\xb3\x2d\xc1\x0b\x4a\x31\x69\xcb\x6d\x71\x43\x8e\x45\ -\x5d\xc3\x74\x74\x35\xb5\xde\xa7\xc2\x91\xa3\x79\xae\xe6\x86\x50\ -\x4e\x18\x91\x84\x76\xf4\x7b\x50\xd8\x8e\x98\xf2\x63\xb6\x84\xd4\ -\x17\x3e\x87\x00\x78\xd0\xc4\x50\xbd\xdb\xea\x87\x91\xd3\x7c\x04\ -\xb2\x17\x66\x31\x10\xef\x62\x2c\x1a\x59\xe0\xc1\x96\x29\xcb\x20\ -\x9a\xbb\xf1\xd7\x76\xd5\xa1\x83\x27\xc7\x94\xc3\x56\x18\xe7\x8e\ -\x9d\x1a\x53\x58\x97\x38\x31\x44\xdc\x24\xa8\xc0\x27\x70\x74\xf4\ -\xe4\xa0\x6a\xe2\xc2\x0f\x27\xce\x4d\xc2\x6a\x6c\xd1\xdf\x2d\x9e\ -\x0a\x56\x07\x20\x55\xe0\xad\x97\x0f\xeb\x64\x34\xdb\x9b\xc5\xb9\ -\xd1\x8c\xf0\xcf\x67\x6a\x4c\xcf\x40\x28\x61\x29\x7d\xf7\xd9\x74\ -\x7f\x82\x09\xd4\xb0\xbc\xe3\xd5\x9f\x40\x6a\xce\x15\x17\x4e\x19\ -\x19\xec\xe2\xa7\xef\x28\x50\x45\xbd\x09\xf9\xf3\x40\x55\x44\x60\ -\x5c\x5c\x35\xac\x5c\xd9\x7c\x7b\x05\x3c\x33\xac\x12\xfe\x89\x57\ -\x90\x6c\x8e\x82\x95\xd7\xf7\xef\xfe\x4c\x6f\x35\x90\xc7\x25\x51\ -\x17\x0f\xec\xa1\x2c\x8e\x5c\xfc\x08\x26\xae\xaa\xf5\x51\xaa\xe1\ -\xe6\xcf\x57\xcb\xc7\x2f\x7e\x12\x5f\x1f\x1b\xbf\x49\x48\xcf\xcd\ -\xc5\x6f\x12\xd4\x73\x33\xf1\x8b\x07\xf5\x73\x3c\xfc\x7f\x64\x69\ -\xbc\x9f\x8c\xff\x5d\x27\x09\xbf\xf8\x99\x7b\x8d\x14\xfc\xaa\x41\ -\xfd\x56\x04\xfc\xba\x41\xfd\x66\xf4\xfb\xe2\x61\xdd\xa4\xee\x2e\ -\xba\x3d\x5b\xa7\x53\xe6\x31\xef\x1b\xda\xfa\x66\x2f\xc8\x9b\x39\ -\x3f\x38\x2f\x87\x27\x13\x67\x7f\x33\x39\xe8\x22\xf6\x26\xe2\xfa\ -\x1e\xd4\xf7\xb3\x16\xb7\xd7\x06\x57\x27\x6f\x7e\x1d\x5e\xbb\xec\ -\xe7\x26\x60\xeb\xae\xe2\x5f\x09\xdc\xce\x3a\x79\x13\xc0\x39\xe4\ -\xd8\x08\xdd\xe5\x6c\x27\x06\xce\x18\xd7\xbd\x38\xe0\xba\xab\xc6\ -\x29\x32\x1b\xd9\x7d\xae\xec\x2a\x71\x83\x25\x97\x9d\x23\xc5\xdd\ -\x0c\x7e\xb8\x85\x37\xe7\xc8\x75\x27\x47\x50\x7f\x6b\xf6\x74\x28\ -\x72\x8f\x75\xc0\x7e\xe4\x52\x5a\x3d\x4b\x20\xae\x1b\x36\xbc\x1d\ -\x77\x8e\xc0\xbd\x15\xf8\xca\x5b\x6f\xe7\x88\xdb\x5b\x01\xb0\xbc\ -\xcd\x76\x0e\xae\x72\x6a\x00\x03\x71\x91\x00\xe2\xd7\x4c\xa7\xcd\ -\x7c\xed\x17\x36\xd7\x0d\x1c\x52\x96\xf3\xec\xcb\x6e\x05\xc0\x92\ -\xb3\x74\xbe\x3c\x3e\x61\xf6\xbb\x15\x08\x31\xfb\xb1\xce\xf3\x7e\ -\x27\xcc\x7f\xa7\x86\x50\x08\xd7\xbd\x3c\x08\x9d\x63\xd9\xcb\x1e\ -\x7e\xbc\xf7\xdb\xa6\x6b\x04\x8f\x1e\xbd\xdb\xed\xde\x10\xb8\x21\ -\xd8\xf4\xd1\x0b\xc7\x6e\x74\xde\x10\x7c\xce\xd1\x94\x79\x97\xdc\ -\x9d\x01\x3e\xe6\x73\x75\x79\xf0\x39\x47\xfb\xde\xfe\x94\x47\xaf\ -\x1b\x36\x4a\xc4\xa9\xb3\xdd\xd5\x23\xa6\xe1\xc7\x3d\xf6\x0e\xfc\ -\xde\x4c\x77\xf5\xd0\x95\x5f\x97\x9f\x23\xc9\x9d\x0c\x39\xad\x3d\ -\xef\x12\x91\xd3\xfa\x68\x3e\xbc\xcd\x4a\x76\xe8\xf1\x95\x22\x07\ -\xbb\xb1\xf3\xf0\x92\x1b\x01\xb0\x7c\x1c\xe3\x2c\xcc\xe4\xc4\x00\ -\x4a\xa9\x2f\x70\x3b\xeb\xc0\x12\x7b\x6c\xe8\x1e\xd8\x8e\xed\xdc\ -\x23\xb8\x46\xfc\x90\xa2\x1c\x7f\x4b\x6a\x3b\xf9\xdd\x08\x74\x25\ -\x57\x39\xfa\x66\xd4\xfe\xf4\x77\x23\x10\xd6\x0f\x4e\x9d\x25\x01\ -\x7e\x1d\x84\xdf\x8f\xfd\x5f\xe1\xb1\x7f\xed\xec\x73\xff\xda\xd9\ -\xcf\x71\xec\x5f\xd9\x5c\xe3\x4b\x32\xb8\x83\x6f\xe1\x30\xc2\xec\ -\x39\xf5\xcf\xfe\xef\x53\xff\xa6\x3e\xf5\x8f\x27\xe9\xeb\x73\xff\ -\x66\x73\xee\x7f\x73\xf0\x5f\x34\x07\xff\x59\x7d\xf0\x5f\x36\xc7\ -\xfe\x75\x73\xec\x9f\x35\xc7\xfe\xdd\xcd\xb1\x7f\xd9\x9c\xfa\x97\ -\xed\xa9\x7f\xd9\x9c\xfa\xd7\xf5\xa9\x7f\xdd\x9c\xf9\x17\xed\x99\ -\x7f\x71\xa2\x33\xff\x1b\xe1\x69\x4f\xfc\xbf\x3a\x4e\x88\xdb\x91\ -\xa3\x73\xe2\x01\x56\x73\x62\x56\x78\xd1\xcf\xb6\x1c\xff\x74\xcb\ -\xbe\x2f\x39\xbe\xf6\xe9\x16\x4c\x67\x6d\xdb\xf3\x78\x5c\xbe\xf8\ -\x0f\xbc\x3f\x0b\xf3\x30\x7b\xde\x24\x90\x06\xdf\xfd\xcb\xcc\xbe\ -\x25\x05\x97\x0f\x3c\xde\x5c\xae\x4f\xd4\x2c\xd6\xbd\x55\xc4\xf9\ -\x6b\x6f\x05\xc9\x21\x39\x13\xe8\x31\x9a\x6e\xe7\x75\x07\x2a\xf6\ -\x92\x3a\x0a\x9a\x69\x2e\xa7\xed\x4b\xf3\x67\x8b\x10\xeb\xad\xd2\ -\x3b\x8f\x5f\x23\x50\x60\x77\x6f\x12\x11\x26\x4c\x25\x83\x87\x49\ -\x01\x86\x24\x8d\xae\x13\xee\x59\x8a\x00\xe1\x18\x07\x1b\x6d\x59\ -\x17\x2b\x40\xe5\xee\xd3\xed\x07\x9e\xfb\xde\xee\xba\x8f\x7b\x8d\ -\xf2\x63\x1a\x07\x5d\x8c\x55\x35\x2e\xe5\xca\x2d\x8c\xa9\xcd\xdc\ -\x43\x28\x7f\x76\xb5\xfe\x01\x97\x6b\xeb\xef\xd0\xcf\x0f\x5f\x00\ -\xf5\x2e\xbc\x0f\x74\x32\x2a\x47\xfd\x00\xbf\x01\xb9\xef\xbe\x56\ -\x47\x6e\xf5\x8e\xcc\x3e\x23\xdc\x3d\x60\xd8\x75\x38\xc8\xb8\xc7\ -\xb8\x1c\xd9\x3e\x1f\xba\x63\xc1\x01\x1b\x5e\xab\xe7\xb1\xbd\x9e\ -\xf7\x9d\x3e\x5f\x21\x7d\x46\x9a\xf4\xa7\xbe\x1b\x4f\xd8\x4a\x30\ -\xe9\x68\x60\x91\xda\xb8\x94\xe3\x2b\xa6\xde\xe3\x2b\xe5\x80\x22\ -\xf3\xf2\xd5\x73\x40\x3c\x1d\x43\x0d\x92\x6a\x20\x9c\x12\x78\x30\ -\x44\x02\xc3\x03\x88\xd2\x02\xad\xa1\xc0\xa2\x19\x90\x57\x26\x81\ -\xe5\x72\x89\xef\xc6\xa3\x36\xd5\xae\x06\x02\x0a\x34\xd7\x28\xc6\ -\x81\x8b\x5b\xc0\x52\x35\x33\x40\x53\xe9\x10\x3a\x65\x40\x53\x81\ -\x6f\x03\x33\x76\x24\x90\x6b\x83\x32\xe8\x88\xb9\xf8\x3a\x3b\xce\ -\x95\x14\x86\x0e\x8d\x4d\xa5\xd0\x9a\xe3\x6b\xef\x38\xd5\xd2\x94\ -\xef\xe0\xe3\x50\x53\x00\x05\x7f\x0f\xa4\xde\x01\x96\x0b\xcd\x23\ -\x53\x56\x86\x2a\x26\xf0\xcd\x7a\x0a\xec\x90\x68\x25\xca\x80\xfb\ -\x43\xd3\x5c\x43\x41\x7c\xd5\x16\x14\x66\xae\x81\x62\x12\xcc\x81\ -\x0d\x01\x88\x5c\x0a\x2c\x9a\x72\xdc\x49\x30\xad\x24\xc5\x17\x7e\ -\x49\x6e\x5c\xd8\x3f\x34\xf0\x50\xde\xc0\x43\x5d\x66\xfd\x67\x2f\ -\xa7\xee\xdc\xda\x39\x25\xab\x2e\x4f\x11\x4d\xf0\x75\xa0\x0f\x6f\ -\xfe\x0b\x1d\xb4\x71\xa7\ -\x00\x00\x09\x06\ -\x00\ -\x00\x5f\x8b\x78\x9c\xe5\x5c\x5b\x8f\xa3\x38\x16\x7e\xaf\x5f\x91\ -\x4d\xbd\x74\x6b\x0b\x62\x8c\x09\x76\xba\x52\xf3\xb0\xad\x19\x8d\ -\xb4\xd2\x4a\x3b\xdd\xda\xc7\x96\x03\x26\xc5\x36\x81\x08\x48\x25\ -\x99\x5f\xbf\xc7\x04\x02\x04\x8c\x7a\xb5\xb1\xb4\xe5\x4e\xab\x55\ -\x85\x8f\xaf\x9f\xcf\xe5\xe3\xc4\xe5\xe7\x5f\x4e\xbb\x64\xf6\x26\ -\xf2\x22\xce\xd2\xf5\xdc\xb1\xd1\x7c\x26\xd2\x20\x0b\xe3\x74\xbb\ -\x9e\x7f\xfd\xf2\xab\x45\xe7\xb3\xa2\xe4\x69\xc8\x93\x2c\x15\xeb\ -\x79\x9a\xcd\x7f\x79\x79\x78\xfe\x8b\x65\xcd\xfe\x96\x0b\x5e\x8a\ -\x70\x76\x8c\xcb\xd7\xd9\xef\xe9\xf7\x22\xe0\x7b\x31\xfb\xf0\x5a\ -\x96\xfb\xd5\x62\x71\x3c\x1e\xed\xb8\x2e\xb4\xb3\x7c\xbb\xf8\x38\ -\xb3\xac\x97\x87\x87\xe7\xe2\x6d\xfb\x30\x9b\xcd\x60\xdc\xb4\x58\ -\x85\xc1\x7a\x5e\x37\xd8\x1f\xf2\xa4\xaa\x18\x06\x0b\x91\x88\x9d\ -\x48\xcb\x62\xe1\xd8\xce\x62\xde\x56\x0f\xda\xea\x81\x1c\x3d\x7e\ -\x13\x41\xb6\xdb\x65\x69\x51\xb5\x4c\x8b\xc7\x4e\xe5\x3c\x8c\xae\ -\xb5\xe5\x6c\x8e\x6e\x55\xc9\x61\x8c\x2d\x10\x5e\x60\x6c\x41\x0d\ -\xab\x38\xa7\x25\x3f\x59\xfd\xa6\x30\xc7\xb1\xa6\x18\x21\xb4\x00\ -\x59\x5b\xf3\xc7\x6a\xad\x4e\x09\x40\xa1\x9c\x4c\x25\xed\x8e\x0e\ -\xf0\xef\xe1\xff\xb5\x41\x53\x60\x17\xd9\x21\x0f\x44\x04\x2d\x85\ -\x9d\x8a\x72\xf1\xf9\xcb\xe7\xab\xd0\x42\x76\x58\x86\x9d\x6e\x1a\ -\xf4\x7b\xe3\xf6\xb6\x24\xe5\x3b\x51\xec\x79\x20\x8a\x45\x53\x5e\ -\xb5\x3f\xc6\x61\xf9\xba\x9e\xbb\xc4\x76\x5c\xf8\x78\x55\xe1\xab\ -\x88\xb7\xaf\xe5\x6d\x69\x1c\xae\xe7\xb0\x56\xcc\xe8\xe5\xb9\xa3\ -\x4a\xce\xa5\x42\xdd\xf1\xea\x2a\x41\x36\xc3\xb6\x33\xcb\x1d\xcf\ -\xf5\x2f\x75\x9a\x25\xac\xc2\x2c\x90\x73\x82\x2e\xc5\x2e\xe6\x87\ -\x32\xdb\xc1\x1e\x07\x41\xc2\x8b\x22\x8e\xe2\x00\x1e\xb2\x74\x9f\ -\x1c\xb6\x71\xfa\xed\xcf\x2c\xdb\x7d\x2b\xb3\x6f\xfb\x5c\xbc\xc5\ -\xe2\x68\x37\x80\x5f\xc7\x13\xa7\x7d\x96\x97\xd6\x29\xdc\x03\x90\ -\x4b\x7f\x54\x78\x6e\x84\x2f\x20\x7d\x0e\x45\x54\xc8\x5a\x97\x55\ -\xc9\x27\x58\xd6\x45\x06\x52\xd8\x24\xc1\xf3\xdf\x72\x1e\xc6\xa0\ -\x9a\x97\x7a\x97\x9a\x7d\x89\xeb\xfb\xac\x6e\x03\xad\x8a\x32\xdb\ -\x37\x75\x61\xa1\xe5\x39\x91\xab\x83\x42\x2b\xc8\x92\x2c\x5f\x3d\ -\x46\x28\x12\x51\xf4\xa9\x2a\xca\x60\x2f\xe2\xf2\xbc\x42\x9f\xe6\ -\x6d\x9b\x2c\x8a\x0a\x01\xb8\xa3\x4e\x59\x85\x3a\xb4\x70\x7d\xea\ -\xce\x67\x0b\xc5\x68\x9d\x5a\xfe\x58\x87\x36\x61\xae\xe3\xa1\x25\ -\x9d\x4f\xce\x70\xb3\x89\xf8\x60\x86\x36\xf1\x91\x47\x29\x26\x9f\ -\x7e\x68\x7c\x6f\x64\x7c\x67\x7a\x58\xea\x47\xcb\xe1\xb0\x8c\x22\ -\x97\x61\x67\xd9\x0e\xfb\xbc\xe8\xe3\x5f\x97\xca\x27\x9e\x0c\xb6\ -\xab\x51\x00\x18\x24\x11\x01\xcc\x82\x27\x47\x7e\x2e\xae\x53\xa9\ -\x6c\x71\xf5\x9a\x0b\xf0\x1d\x8f\x23\x1b\xdb\xdd\xf7\xfe\x10\x20\ -\x6e\x57\x19\x9c\xd6\x73\x62\xbb\xbe\x47\x01\xa4\xb6\xf4\xbc\x9e\ -\x7b\xf6\xd2\xf3\x3c\x42\xdc\x6b\x69\x34\x5a\x37\x1a\xad\x9b\x03\ -\x6c\xc4\x86\xf5\x77\x6a\x6e\xeb\x09\x7c\xc9\x79\x5a\x80\x6f\xd8\ -\xad\xe7\x60\x36\x79\x7c\xfa\x00\xee\x1c\x23\x4c\x08\x7b\x42\xf0\ -\x0f\x9e\x1c\x86\x29\x7d\x82\x1e\xd8\xd2\x67\x2e\x7d\xa2\xb6\x4f\ -\x3c\x8a\x96\xe4\xe3\xa0\xb7\xaf\x69\x5c\x82\x7b\x3b\x14\x22\xff\ -\x43\xba\x88\x7f\xa4\x5f\x0b\x51\x83\xfe\xbc\x90\xc6\x51\xfd\x76\ -\x35\x5d\x69\xb7\xa1\xb4\xc4\xd6\x82\x36\xbc\x10\x75\xbf\x7b\xbe\ -\x15\xd5\xbe\x02\xaa\x51\xf5\xa9\x05\x9b\x2c\x0f\x45\xde\x88\x96\ -\xd5\xa7\x27\xaa\xb7\xfe\x12\x9b\x1e\xfa\x9b\x28\x7b\xbd\xca\xd1\ -\xb8\xbc\x78\xe5\x61\x76\x5c\xcf\xf1\xad\x50\x3a\x10\xd9\x2b\xf3\ -\x99\xe7\x20\x72\x2b\x96\x3b\x68\x51\xd7\xc6\xd4\x63\xde\x72\x20\ -\x85\x01\x2d\x8c\x6c\x17\x13\x46\xfc\x81\xf4\x90\xe7\x00\xa1\x95\ -\xf0\xb3\x80\x65\x55\x3f\x1a\x6d\x2f\x5e\xb3\xe3\x36\x97\xf0\x94\ -\xf9\x41\xdc\xb6\x94\x12\x6b\xb3\xc9\x4e\xe3\x62\xf0\x8f\x07\x19\ -\x18\xad\xc3\x65\x77\xf6\xa7\x6e\xaf\x87\x38\x14\x50\x18\xf1\xa4\ -\x18\xb4\x2c\x52\xbe\xb7\xb6\x49\xb6\xe1\x89\xa2\xc6\x31\x4e\x01\ -\x28\xab\xf6\xfd\x8e\xbb\x1c\x2c\xba\xae\xd1\x04\x02\x1f\x51\x45\ -\x8d\x53\xeb\xad\x6e\x45\x67\xb5\x68\xc7\x4f\xf1\x2e\xfe\x53\x84\ -\xd2\x35\xd4\x56\xdc\x03\xa6\x51\xd1\xf2\x2c\x83\xda\xe9\x2c\xcb\ -\x7a\x06\x29\x0b\x30\x63\xad\xb3\xcb\xf2\x18\x62\xc5\xa9\xeb\x3c\ -\x2f\x45\xe7\x6e\x91\x0c\x81\xc0\x77\x4e\x95\x8e\x55\x1a\xe8\xdf\ -\xca\xce\x5d\x59\x63\x04\x43\xdd\xaf\xca\x77\xa2\xe4\x21\x2f\x79\ -\x6b\x08\x4d\x09\xcc\x0d\x35\x2b\x03\xee\xb1\xfa\xe7\xe7\x5f\xaf\ -\xae\x33\x08\x56\xff\xca\xf2\xef\xad\x4b\x94\x15\xf8\x26\x3b\x00\ -\xd2\xd7\x70\x22\x83\x54\xb0\x92\x36\xce\xcb\x97\x78\x07\xea\x2d\ -\x89\xc6\x5f\x21\xde\x83\x49\x5e\x05\xbd\xca\x12\xac\xb6\xd3\x4b\ -\xb7\xb9\xb8\x10\x89\x51\xee\x15\x06\xbb\x58\x36\x5a\xfc\x51\xc6\ -\x49\xf2\xbb\x1c\xa4\xe3\xe2\xeb\x4e\xe3\x32\x11\x1d\xbf\xbf\xa8\ -\x67\xdf\x78\xe4\xce\xe2\x9e\x17\xcd\xea\xab\xa7\x6d\x8b\x4a\xcf\ -\x2c\xae\x1b\x9d\xf0\x8d\x00\x15\xfd\xbb\x14\xce\x06\xd2\x6d\x9e\ -\x1d\xf6\xbb\x2c\x14\x75\xf3\x06\xcd\xed\xc0\xc1\x8f\xf6\xd3\x1d\ -\xd8\x6a\x15\xa0\x1c\x78\x4e\x64\x7b\x3e\xf2\x3d\xec\x56\x9e\xb3\ -\x7d\x62\xf6\x92\xb8\xd4\x43\xf4\x89\xd8\x10\x55\x99\x43\xdc\x8f\ -\x6d\xb0\xcf\x21\xa2\x74\x36\xb0\x52\x1a\x82\xe5\xa7\xf5\xe0\x50\ -\x7e\xea\x07\xf3\xb3\x74\xff\xb8\xd2\x2d\xd6\x29\xbe\xa9\xd5\x58\ -\xdd\x58\xd5\xda\x66\xc7\x44\x55\x9c\x82\x69\x79\xd4\xed\x16\xd7\ -\xf1\x36\x82\x1d\x5e\x3d\x22\x14\x04\x10\x69\xe5\xc3\x35\xd2\x3a\ -\x97\xc7\xfc\x90\x00\x59\x7a\x13\x69\x16\x86\x10\x8a\xf3\xec\xbb\ -\x58\xd5\x0e\xbc\x7e\xbc\x38\x0c\xa0\x2c\xf5\x23\x28\x8f\xc8\x13\ -\x30\xe4\x72\x45\x9a\xb2\x90\x83\x17\xce\x73\x7e\x5e\xa5\xf0\x12\ -\xd1\x94\x5e\x87\xea\x32\x88\x7b\x43\x38\x56\x7c\x07\x28\xad\x11\ -\xf2\xd2\x80\xc9\x79\x48\xcc\x04\x93\xda\x9e\x64\xfe\x2e\xbd\x37\ -\x98\xd6\x08\x05\x6d\xe0\x5c\x2e\x29\x32\x13\x4e\x07\xdb\xf7\x47\ -\x12\xa9\x91\x24\xc4\xf3\x0c\x45\xd2\xbf\x04\xe7\xbb\xc3\xe9\xaa\ -\xd0\x8c\x22\xcc\x31\x37\x13\x4d\xec\xd8\x95\x99\x93\xbb\x2b\xa7\ -\xff\x53\xc2\x09\xaf\x71\xf7\x77\x98\x96\xf7\x53\x62\xc9\x6c\xda\ -\x27\xe8\x77\xf3\x9b\x96\xd9\xb6\x8e\xfa\x40\x6a\xe3\x45\x16\x51\ -\xc1\x68\x04\x33\xba\x81\x51\x23\x23\x9a\xa2\x98\x06\x70\xa2\x1b\ -\x20\xf5\x70\x21\x75\xc0\x31\x82\x0d\xdd\x62\xa8\x8d\x05\x59\x4b\ -\xb5\x6f\x64\xcc\x34\x1c\x35\xf2\x1f\x0b\xff\x54\x40\x6a\x62\x3e\ -\x96\x32\x95\x61\x04\x8a\x37\xbe\xf0\xfe\x89\xa0\xa9\xd7\x6d\x03\ -\x52\x41\x43\xfc\xf4\xb1\x1d\x3a\x01\xa5\x01\x74\x67\x08\xa5\x4e\ -\xc6\x33\x91\xa1\x34\x80\xf1\x0c\xb1\xd4\x44\x7a\x94\xc1\xda\x08\ -\xd2\x33\x02\xa3\x3e\xde\xa3\x0c\xd7\x14\xc9\x8f\x71\x50\xea\xa4\ -\x3e\xca\xf7\x6b\x53\xb1\xd4\xc5\x7e\x94\x21\xc7\x54\x20\x75\x26\ -\x7d\xd4\xaf\x88\x46\xa0\x39\x16\xae\x35\x10\x4a\x34\x95\xf6\x31\ -\x80\x52\x2a\x60\xd4\x98\x45\x53\x87\x1e\x23\x88\xa5\x02\x50\xad\ -\xf9\x34\x75\xca\xdc\x08\x7e\xa9\x80\x54\x57\x66\x6d\x8a\xad\x1b\ -\x40\x33\x55\x68\x6a\xcc\xb1\xa9\x4d\x3e\x24\xe6\x86\x22\xad\xd9\ -\x36\x75\x74\x37\x1a\x52\x6d\x79\x37\xf5\xf1\x02\xa3\xf1\xd4\x4a\ -\x40\xb1\xfa\x9b\x1e\x23\x40\x1d\x33\x70\x1d\x14\x54\xf9\x7e\x29\ -\x63\xbb\xa9\x28\xea\x63\xa0\xca\x2c\x92\xc9\x70\xea\xe4\x9f\xca\ -\x50\x64\x32\xa0\x9a\xd8\xa7\x32\x05\x62\x34\x96\x1a\xf3\x9c\x13\ -\x5f\x94\x83\x35\x18\x0a\xa8\x4e\xea\x39\xf1\xae\x49\x08\x7f\xef\ -\xa7\x89\x54\x80\xea\x22\x9e\xca\xd8\x8e\xb9\x1f\xbd\xfb\xec\x92\ -\x0a\x4d\xbd\x79\x4f\x75\x3e\xde\xe7\x3c\x14\xef\x1c\xd3\x31\x67\ -\xa9\x25\xf1\xa9\xf4\x9c\x32\x09\xf2\xee\x43\x91\x02\x46\x9d\x89\ -\x4f\x25\xf1\x34\x19\x50\xcd\x89\x4f\x65\x34\x32\x19\x53\x6d\x99\ -\x4f\xe5\x77\x1d\x46\xa3\xa9\x33\xf3\x39\xc1\x96\x0c\xa0\x9f\x0a\ -\x44\xf5\x66\x3e\x27\x4f\x81\xbc\x7b\x02\xaa\x82\x54\x5f\xe6\xd3\ -\x6c\x0a\xaa\xc2\x53\x73\xe6\x53\x99\x4e\x36\x82\x83\x8e\xa1\xa7\ -\xf9\x34\xa2\x3a\x97\xbc\x09\x42\xd7\x7b\xef\x6a\xaa\x40\x54\xeb\ -\xa1\x44\x35\xc3\x37\x19\x52\x5d\x67\x13\xd5\x71\xc9\x68\x34\x35\ -\xa6\xee\x0c\x27\x4f\x0a\x44\xb5\x9e\x54\x9c\x3a\xcd\x64\x00\x79\ -\x52\x41\xaa\xed\xc0\xa2\x5a\x45\x8d\x20\x4f\x37\xc0\xe9\x39\x5f\ -\xa7\x8e\xec\x94\x72\xfe\xee\xdf\x3a\x87\x18\x6a\x3d\x5c\x37\x71\ -\xec\xd3\x4c\x34\x35\x27\x98\x26\x98\xbc\x99\x78\xea\x3b\x56\x37\ -\x71\x50\xde\x50\x28\xb5\x9e\xa9\x9b\xba\x11\xc5\x04\x7a\x34\x80\ -\x53\xf3\x81\xba\xe9\xbf\xa9\x7e\xff\xdc\x68\x88\xa7\xc6\xd3\x74\ -\x6a\xe5\x34\x94\x18\x69\x3f\x4a\x37\x41\x93\xfe\x8f\x52\x4a\x7b\ -\x5e\xbe\x76\x56\xd2\xde\x4a\x9a\xa6\xb0\xa2\x2c\xb7\x82\x43\xfe\ -\xc6\xcb\x43\x2e\x86\x17\xbf\xca\xb6\xae\xbf\x64\xbd\x37\x69\x79\ -\xcb\xe0\xac\x71\xa4\xfe\x13\xb5\x19\xf3\x7d\x07\xb1\x59\x30\x43\ -\x4f\x0e\xb3\x71\xf5\xc7\x2c\x8e\xfa\x41\x85\x5a\x7d\xf9\xc9\x14\ -\x28\xae\x8d\x09\x42\xde\x12\x91\xfd\xa9\x91\xc8\xab\x53\x61\x49\ -\xab\xcd\xa1\x2c\xbb\x65\xff\xce\xe2\x74\x55\x81\xa7\x17\x1f\x4a\ -\xfc\x5b\x74\x7c\x9b\x2c\x2f\xe8\x38\xf4\x72\x85\xb1\x0b\xe8\x5c\ -\x11\x70\x9f\x90\xfa\x41\x85\x4e\xfd\x85\xcf\x34\x3a\x1e\x65\x88\ -\x79\x0e\xbe\x1b\x3a\x43\x7b\x74\x6d\x8a\x08\xed\xdf\xb3\x2b\xed\ -\xd1\x83\x50\x80\xdc\x9e\xd9\xf4\xae\xb2\xec\xc7\xe1\x91\xe2\xeb\ -\xad\xcf\x78\x68\x94\xbd\xb2\xc6\x1a\x31\x63\xaa\x3f\x0c\xe8\x58\ -\x85\x0c\x16\xd5\xd1\xd6\x1e\x54\xd8\x76\x7c\x0f\x39\x98\xba\xf7\ -\x30\xb3\xe7\xc5\xb6\xfe\x45\x24\x49\xbc\x2f\xae\xd7\x60\x76\xe7\ -\x74\xc8\x93\x0f\x8f\xc3\x8b\x7c\x3f\xfe\xb8\x9b\x18\x5f\x08\xc2\ -\x4b\x4a\x10\xfb\x9f\x16\xf2\xd0\x81\x56\x2a\x35\x40\xdb\xfa\x5b\ -\x79\x3f\x2d\x68\x28\x71\xb1\x4b\x5b\x47\x20\xef\xa5\x75\x88\x2d\ -\x2f\xb4\x75\x5b\x5d\x90\x9a\xe0\xb8\x36\xa1\xa0\xae\x2d\x2b\xa8\ -\xfc\x78\x5d\xda\xde\x22\xdd\x53\xae\x9e\xae\x7b\x1e\xc6\xff\x0d\ -\xfb\x54\xec\xf0\x85\x9b\x90\x7b\x01\x23\xa7\x0b\xde\xb0\xd5\xd9\ -\xe6\x02\x5b\x66\x23\xcf\x71\xbd\x56\xd0\x86\x19\xe2\xfb\x68\x49\ -\x5b\x35\x3d\xc9\xcb\x7c\x7d\x1b\x7b\x3e\xed\x90\xd0\xcb\xc1\x1c\ -\xec\x53\x8c\x48\x1f\x4a\xdb\x01\x67\xe7\x7a\xac\x07\xa5\x6b\xfb\ -\x18\x75\x48\x57\xe7\x52\xd1\x3c\x2b\x79\x29\x3e\x58\x2e\xb3\x7d\ -\xe6\x53\xdf\xfd\x78\xbd\x43\x16\x54\xf4\x59\xde\xe1\xfa\xf2\xf0\ -\x1f\xe4\x46\xc2\x2a\ -\x00\x00\x09\x8b\ -\x00\ -\x00\x24\xa6\x78\x9c\xdd\x59\xdb\x72\xdb\xc8\x11\x7d\xd7\x57\x4c\ -\xe8\x97\xa4\x42\x0c\xe7\x7e\xa1\x29\xed\x83\xb7\xb6\xb2\x55\x9b\ -\x97\xec\x26\x79\x74\x41\x00\x28\x21\x06\x01\x16\x00\xea\xe2\xaf\ -\xcf\x19\x10\x00\x49\x91\xb4\xe5\x98\x71\x9c\xa5\x4a\x45\xa0\x7b\ -\x7a\xa6\xe7\xf4\xe9\xee\x01\xb8\xf8\xe1\x69\x55\x90\x87\xac\x6e\ -\xf2\xaa\xbc\x9e\x70\xca\x26\x24\x2b\x93\x2a\xcd\xcb\xbb\xeb\xc9\ -\xdf\x7f\xfb\x29\x72\x13\xd2\xb4\x71\x99\xc6\x45\x55\x66\xd7\x93\ -\xb2\x9a\xfc\x70\x73\xb5\xf8\x43\x14\x91\x77\x75\x16\xb7\x59\x4a\ -\x1e\xf3\xf6\x9e\xfc\x5c\x7e\x68\x92\x78\x9d\x91\x3f\xde\xb7\xed\ -\x7a\x3e\x9b\x3d\x3e\x3e\xd2\xbc\x17\xd2\xaa\xbe\x9b\xfd\x89\x44\ -\xd1\xcd\xd5\xd5\xa2\x79\xb8\xbb\x22\x84\x60\xdd\xb2\x99\xa7\xc9\ -\xf5\xa4\x37\x58\x6f\xea\xa2\x1b\x98\x26\xb3\xac\xc8\x56\x59\xd9\ -\x36\x33\x4e\xf9\x6c\xb2\x1b\x9e\xec\x86\x27\x61\xf5\xfc\x21\x4b\ -\xaa\xd5\xaa\x2a\x9b\xce\xb2\x6c\xde\xec\x0d\xae\xd3\xe5\x38\x3a\ -\x78\xf3\x28\xbb\x41\xdc\x7b\x3f\x63\x62\x26\x44\x84\x11\x51\xf3\ -\x5c\xb6\xf1\x53\x74\x68\x0a\x1f\x4f\x99\x0a\xc6\xd8\x0c\xba\xdd\ -\xc8\xd7\x8d\x9a\x37\x00\x74\x8d\xff\x71\xf8\x20\xa0\x4d\xb5\xa9\ -\x93\x6c\x09\xbb\x8c\x96\x59\x3b\xfb\xf1\xb7\x1f\x47\x65\xc4\x68\ -\xda\xa6\x7b\xd3\x0c\x78\x1e\xac\x7a\x00\x72\x19\xaf\xb2\x66\x1d\ -\x27\x59\x33\x1b\xe4\x9d\xfd\x63\x9e\xb6\xf7\xd7\x13\xa9\x28\x97\ -\xf8\xe8\x4e\x78\x9f\xe5\x77\xf7\xed\x4b\x69\x9e\x5e\x4f\xe0\xbd\ -\xf0\x6e\x7b\xbf\x47\x0e\xbe\x1d\xd0\x4f\x3c\x1f\x35\x8c\x7a\x41\ -\x39\xa9\xb9\x96\x76\x3b\x66\xd8\xc2\x3c\xad\x92\xe0\x13\xa6\xcc\ -\x56\x79\xbc\x69\xab\x15\xa2\x96\x24\x45\xdc\x34\xf9\x32\x4f\x70\ -\x53\x95\xeb\x62\x73\x97\x97\xef\x7f\x79\xf7\xeb\xfb\xf6\xbe\xce\ -\x9a\xfb\xaa\x48\xdf\x37\x59\xfb\xbe\xad\xaa\x82\x0e\x48\x8e\xcb\ -\x66\x4f\xeb\xaa\x6e\xa3\xa7\x74\x0d\x3c\x8d\x3d\xa9\x7c\x1e\x94\ -\x37\xd0\x2e\xd2\x6c\xd9\x84\x51\xdb\xcd\x85\x3b\xec\xce\x4e\xc8\ -\xac\xd3\x8e\xbe\x06\x47\xd3\x87\x3c\x7b\xdc\x8d\xbd\x8d\x9b\x2d\ -\x80\x84\xac\xe3\x3b\x90\xad\xa8\xea\xeb\xc9\x9b\x65\xf7\xe9\x15\ -\xb7\x55\x9d\x66\xf5\xa0\x32\xdd\xe7\x40\x55\x21\x20\x79\xfb\xbc\ -\x4d\xaf\x7e\xee\xc1\xdf\x30\xeb\xa8\x67\xa7\xf5\xcd\x7d\x9c\x56\ -\x8f\xd7\x13\xf1\x52\xf9\xb1\xaa\x56\x98\x15\x81\xf1\xd6\xb1\x23\ -\x75\xf2\x74\x3d\x89\x84\xa2\xcc\x7a\xee\xd5\x91\x16\x0b\x1a\x2a\ -\x19\xb3\xda\xe8\x23\xe5\xa6\xae\x91\x80\x51\x11\x3f\x67\xd8\x55\ -\xf7\xc5\xfb\x41\x88\xcf\xe3\x5d\x1d\xd0\x69\xeb\x4d\xf6\xd2\x32\ -\x68\xa2\xdb\xdb\xea\xe9\xb4\x1a\x7c\xd8\x84\xd4\x8e\x36\x65\xde\ -\x22\x7d\xd6\x4f\xfb\xb3\x6e\xf2\x34\x6b\x4e\x1b\x36\x65\xbc\x8e\ -\xee\x8a\xea\x36\x2e\x4e\x0f\x78\xcc\x4b\xa0\x14\xf5\x4c\xe7\x72\ -\x0c\xc2\xcb\x11\x03\xed\x2d\x73\x67\x46\xc0\xf7\xa3\x40\xf4\xaa\ -\xe7\xf3\xaa\x55\xfc\x94\xaf\xf2\x8f\x19\x80\xe1\x47\xa8\x84\x9d\ -\xed\xc3\x72\xd3\x0d\x58\x1c\xc0\xb6\xb5\x21\xa4\x7d\x0e\x29\xfe\ -\xf4\x1c\x64\x93\x41\x18\xf0\x0e\x02\xe1\xbd\x1d\x85\x55\x9d\x23\ -\x73\xf6\xdc\x1d\x44\xcf\xfb\xa2\x50\x10\x50\xcf\x9f\x3a\x02\x76\ -\xf4\xb4\x2f\x75\xcf\xfb\xba\x3e\x2f\x66\xc7\x89\xd1\xc9\x57\x59\ -\x1b\xa7\x71\x1b\xef\xb2\x64\x90\xc0\x37\x36\xec\x0c\xb5\x75\xfe\ -\xb7\x1f\x7f\xba\xe9\x17\x5a\x24\xc9\xfc\x9f\x55\xfd\x61\x58\x97\ -\x90\x30\x20\xbe\xad\x36\x88\xc4\xe4\x66\x14\x2f\xd2\x64\x8e\x6a\ -\x88\x2a\x71\x93\xaf\xc0\xfd\x50\x48\xff\x8c\xea\xb7\x98\xed\x14\ -\x07\x83\x03\x58\xbb\x49\xb7\xd3\xa2\x86\x74\x65\xf5\x64\x6f\x49\ -\x93\x55\x1e\x8c\x66\xbf\xb6\x79\x51\xfc\x1c\x16\xe9\x77\xbc\x37\ -\x69\xde\x16\xd9\x4e\xb8\x98\xf5\xde\xf7\x7b\x9b\xed\x6d\x6e\x31\ -\x1b\x76\xdf\xdd\xdd\xed\x50\x39\x48\x9a\x31\xd0\x45\x7c\x9b\x81\ -\xc1\xbf\x04\x25\x39\xe6\x49\x5d\x6d\xd6\xab\x2a\xcd\x7a\xf3\x11\ -\xcd\x2c\x69\xc7\x90\xb5\xcf\x05\xf4\x5d\xc1\x99\xbf\x61\xdd\xe7\ -\x6d\x9a\x37\x6b\x58\xa0\x45\x14\x79\x99\xbd\xad\x50\x9b\x97\x45\ -\xf5\x38\x7f\xc8\x9b\xfc\xb6\xc8\xde\x76\xdf\x79\x81\x9d\x8f\xa2\ -\x25\xb6\x3f\xef\x4b\x59\x77\x13\xf5\x85\x68\xce\xb7\xb7\xf5\xa6\ -\xc8\xe6\x65\x55\x7e\x44\x09\x7b\xdb\xb4\x75\xf5\x21\x1b\xd7\xdb\ -\xde\x6e\xb3\x6d\x3e\x52\x47\x0c\xf2\xe0\x04\x36\x34\xbf\xdd\xb4\ -\xed\xbe\xec\x5f\x55\x5e\xce\x81\x7f\x56\x0f\xd2\xee\xa6\x40\xe2\ -\xb4\x73\x35\xc8\xd2\x18\x25\xaf\xae\xb1\x1d\xac\x9e\xed\x4b\xab\ -\xe5\x12\x8d\x61\x3e\xae\xbf\xf3\x78\x15\xd7\x1f\xb2\x7a\x6b\x90\ -\x95\x31\x36\x18\xdd\xc6\xc9\x87\x00\x68\x99\xce\xe3\x04\x65\x67\ -\x53\xe0\xbc\x72\x90\x50\x01\x56\xe9\xb8\x1e\x85\x43\x9f\xb4\x34\ -\x34\x44\x29\x46\xc5\xd8\x2b\x8f\x34\x07\xd9\x87\x3c\x8a\x24\xdd\ -\x29\x6b\x08\x24\x95\x68\x8c\xc6\xbb\x91\x66\x8b\x75\xdc\xde\xbf\ -\x08\xe7\x36\x1a\x3d\xba\x2f\xa2\xb1\x8f\x3d\x4f\xce\x61\xbf\x7e\ -\xfa\x72\xf4\xc7\x35\x46\x8f\x81\xca\x5f\x89\xe2\xd4\x28\xc3\xd5\ -\x94\x0b\xea\x0c\xb7\x9a\x93\x77\x04\x5b\x57\x96\x33\x6f\xa7\xdc\ -\xa1\xe3\x08\x29\x14\x11\x96\x5a\xe5\x8d\x75\x53\xae\xa8\x37\x42\ -\x0b\x4d\x04\xdf\x42\x24\x3b\x6b\xc2\x2d\x14\xd2\x07\x33\xcc\x6a\ -\x94\xe2\x9e\x70\x34\x1e\xe3\xb4\xb6\x53\x43\x8d\x74\xcc\x4a\x12\ -\xc6\x0a\xc9\x9d\x98\x06\x9d\x17\xcc\x5a\xe2\x28\x74\x4e\x7a\x0d\ -\x19\x93\x58\x90\x29\xa2\xa8\x73\x5e\x79\xc6\xa7\x5c\x53\xc6\x95\ -\x35\x9a\x74\x18\x58\xef\x7c\x58\xd1\x0a\x63\x8d\x23\x91\xa0\xda\ -\x2b\xc1\x3c\x06\x32\xaa\xa5\xd6\x4a\x92\x88\x53\xcf\x95\x13\x4c\ -\x4e\x05\xf5\x52\xf8\xe0\x0b\xe5\x5c\x32\xcd\xec\x14\xe7\x2d\x78\ -\x02\xbd\x23\x9a\x6a\xe1\x8c\xd7\x7a\x1a\x29\xaa\xb4\x81\xfb\x70\ -\x51\xc2\x7f\x66\x9c\x9a\x62\x1e\x2e\x95\x53\x1a\xe6\x9e\x5a\xeb\ -\x35\x7c\x0c\xe6\x0c\x43\x1d\x97\x44\x4a\xaa\x8d\xe5\x8a\x63\x1d\ -\x2d\x9d\xb6\xd2\x76\x32\xe5\xe0\xdc\x14\x14\xb1\xd6\x00\x21\x4f\ -\xa4\xa3\xaa\x43\x1a\xc6\x01\x68\xa1\x25\x49\x88\xa4\x90\xe1\x0f\ -\xd6\x96\x0b\x27\x1c\xc0\xd0\x70\x9d\x3b\xa9\xa7\x1e\xf0\x5a\xf8\ -\x01\x19\xa8\xd6\x6d\x19\x47\x5a\xef\x94\x25\x1f\x0f\xd8\x1d\x58\ -\x26\x61\x11\xed\xf8\xb9\x6b\xf0\x55\x09\x8e\xb4\x55\x1d\xa1\xd5\ -\x3f\xc4\xed\xa6\xce\x0e\x5a\xc6\x58\xfa\x51\x8b\x42\xb5\x44\x57\ -\x8e\xc3\xa7\x69\xe2\x57\xd0\x58\xeb\x54\x7d\x8a\xc6\x4a\x7e\x1b\ -\x1a\x23\xf0\xd6\x4b\x44\x01\x8c\x15\xc6\x49\x6e\x03\x8f\x0d\x55\ -\x4c\xe1\x04\x38\x15\x88\x88\x07\x9d\x88\x00\x0d\x03\xca\x7e\x2a\ -\x58\x60\x1f\x83\x88\xc1\xc2\x68\xa9\x3a\x5b\x66\xb4\x51\x81\xb6\ -\xce\x5b\x0e\x4b\x90\x9a\x59\x86\x23\x32\x01\x0b\x25\x43\xe0\x5c\ -\x08\x04\x43\x2c\x25\x28\xcf\x29\x0e\x55\x80\x3e\x50\xde\x5a\x6d\ -\x41\x1e\xd4\x0d\x8e\x65\x59\x27\x53\xd2\x39\xd8\x4a\x50\x5e\x18\ -\x1f\xe2\xcc\xa8\x12\x38\x84\x13\xd6\x25\x57\x97\x3e\x24\x0a\x7c\ -\xe3\x8c\xb9\x8e\xeb\x20\x33\x92\x2f\xf0\x1a\x0c\x33\x38\xd0\x4d\ -\x91\x1e\xd2\x2b\x07\x6a\x81\x3c\x0a\xc9\xc7\xad\x9c\xea\x90\x7c\ -\x0a\x03\x90\x29\x20\x91\xf3\xc6\x80\x5b\xc8\x18\xf0\x51\xdb\x90\ -\x66\xda\x63\x75\x3d\x55\x54\x58\x6e\x43\x02\xb8\x40\x32\xeb\x0d\ -\x6c\x11\x35\x87\x5d\x83\x82\x20\xbb\x75\x56\xab\xc0\x41\xad\x14\ -\xc6\x9a\x4e\x06\x70\xe0\x4f\xc7\x60\x66\xa4\x76\xc1\x1c\x71\xd3\ -\x4a\x77\x14\xb6\x4a\x1f\xb3\xd7\x0d\xe4\x35\x23\x79\xf5\xc0\x5d\ -\xd7\x55\x3c\x7d\x86\xba\xdf\x9a\xb8\x9f\xaf\xbf\xe7\x7b\xdf\xc5\ -\x88\xbb\x22\x82\x76\x73\x6a\x40\xa8\xa9\x41\x34\x04\x15\x5c\x3b\ -\x30\x6e\x1a\xe2\x6f\x1d\x38\x48\x4c\xb8\x80\xd0\x86\x68\x18\xc1\ -\x51\x34\x09\x4a\xdd\xd6\x1b\x15\x84\x02\xb8\x1b\x6f\x98\xf2\x88\ -\x8d\xd1\x88\x05\x27\x9e\x0a\xcd\x42\xf9\xc4\x85\x47\x1e\x82\xd5\ -\xa8\xdc\x81\x6f\x81\x50\x7a\xcb\x3c\x48\x9c\x44\x39\x0e\x35\x2d\ -\x4c\x86\x4a\x8f\x08\x5a\x54\x6f\x2c\x86\xa0\x29\x14\x5b\x33\x2e\ -\x86\x82\x36\x5e\x76\x5e\x09\x38\x8b\xe0\x87\xfa\xc9\x82\x44\x80\ -\x9a\x21\x09\xa1\xf3\x8c\x49\x4f\x7a\xd0\xec\x54\x60\x2e\x82\x12\ -\x2b\xc0\x49\x23\xc0\x49\xcd\x64\xd8\x5b\x04\xa7\xb4\x0e\x9d\x01\ -\x32\x13\x12\x32\x14\x6f\xd7\x6f\x6e\xca\x90\x06\x20\x97\x06\xab\ -\x85\x00\x24\x9a\x3a\xb4\x07\xdf\x99\x29\xae\xad\x92\xc1\x0e\x15\ -\xdf\xea\x7d\x3b\x15\x0c\x65\x40\xc2\x4a\xa4\x76\x80\xc8\xa3\xaf\ -\x00\x37\x5c\xa1\xcd\x04\x80\x65\xb7\x41\xcd\xe0\x32\x47\x36\x46\ -\x21\xd3\x3b\xe3\xd3\x0c\x95\x91\xfb\xd6\x1c\x15\x5c\x29\xeb\x3e\ -\xc5\x51\x9c\xe7\xfe\xfb\x1c\x45\x05\x18\xda\x7c\x4f\x20\xb9\x23\ -\x2a\x17\x9f\x24\x2a\xdf\x71\xc7\x7e\x9a\xa8\xc7\x34\x95\x03\x4d\ -\x55\xa8\xe5\x0a\x65\xd5\x72\x24\x0a\xfa\xb0\xf6\x5e\xa0\xc9\xcb\ -\x50\x91\xd1\x0f\xf9\x14\x87\x13\x67\x1c\x43\xe5\x56\x0c\x13\x19\ -\xa2\x7a\x76\x76\x07\x1b\xb1\xa5\xa7\xea\xf9\x39\x45\x13\xd0\x5b\ -\x7a\xaa\x91\x9f\x52\x84\x76\x61\xad\x70\x4c\x4d\x71\xd5\xd3\x33\ -\x0c\x85\x93\x26\x88\x7a\x76\x06\x26\x87\xe1\xc8\x18\x19\x78\xc9\ -\x61\x60\x28\x47\xbb\xe7\xe8\x3a\x38\x03\x39\x25\xf0\xa0\xdd\x4d\ -\x12\x78\xa9\xf6\x00\x84\x59\xb2\x23\xa6\xf4\x27\x88\xc9\xd5\x97\ -\x12\xf3\x5b\xd3\xb2\x7f\x90\xf8\x74\xad\xf4\x08\xb2\xd0\xee\x82\ -\x3d\x7e\xe4\xf6\xb6\x96\xbc\xeb\xfa\x4a\x77\x79\x74\x71\x0c\x13\ -\x02\x1b\xb1\x48\xbc\x1a\xaa\xef\x14\x85\xd5\x1e\x0a\x3b\x5a\x84\ -\x64\xe4\x3d\xc3\xd8\xb9\xeb\x73\x98\xf0\xdf\x15\x26\xbc\x4f\xb5\ -\xaf\xc3\xe4\xf5\x29\xf5\x9d\x62\xb2\x9f\x2d\x66\x4c\x16\xd3\xa7\ -\xc8\xde\xf7\x39\x04\xd4\xff\x3b\x02\x07\xac\x18\xae\xbe\x8e\x15\ -\xfe\xdb\x62\x32\x78\xa4\xd4\x97\x43\xf2\xfa\x77\x2d\x67\xe8\x13\ -\xda\xce\x88\xda\x3f\xc2\x13\x2d\x3b\x7c\x9d\x38\x60\x23\x10\xb8\ -\x8b\x34\xa0\x24\xf9\x3c\x6c\x7b\x8e\x7f\x87\x98\x0d\xbf\xae\xa0\ -\xcd\x0f\x70\x91\xbf\x90\x63\x3a\x01\xb2\xcb\x1c\x25\x5f\x03\xd9\ -\x2b\x99\x86\xe7\x5a\x1c\xa7\xf5\x05\xd3\x4f\xf7\xef\x86\x80\xc6\ -\x80\x0b\xd2\x8f\x85\xd7\x2c\x62\xfb\x00\x71\xe6\xfa\xc4\x19\x47\ -\xbd\xfe\xbd\xc6\x45\x38\x74\x79\x34\xc2\xf3\xef\x45\x80\x88\x5e\ -\x9f\x6d\xdf\x29\x14\xc2\x5d\x0a\x8a\x0b\x1e\xe7\xfe\x47\x50\x8c\ -\x2f\x50\x2f\x82\x87\xfd\x3d\x35\xed\xf0\xc2\xf9\xeb\x8f\x72\x5f\ -\x8e\xc8\x89\x1f\x60\xfa\x57\x9d\xcb\xf0\x77\xf8\x34\x8e\x67\x58\ -\x65\x99\x76\x4e\x8c\x48\xa9\x65\x6a\x96\xf2\x25\x79\x84\xb2\x9a\ -\x4b\x66\xfe\xf3\x66\xc3\xf0\x60\xe9\x84\xd4\xc2\x1f\x6c\x35\xb8\ -\x8b\x86\xb2\x13\x0e\x3f\x6c\xf4\x2d\x68\x47\x95\xf1\x87\x8d\x23\ -\xcd\xc9\xdf\x0b\x9f\x4f\x09\x6b\x0c\xd5\x78\x34\xc5\x43\xb2\xdb\ -\x45\x6e\xfb\xdb\x87\xc7\xf3\x39\xb3\xfe\x15\xdc\xf2\xdd\x67\x44\ -\xec\x80\x6a\x3d\x62\x38\x9e\xaa\xf0\x8e\x9d\xa9\x4b\x92\x6b\x78\ -\x62\x9a\xda\xe0\x2d\x53\x6a\x9b\x6e\xdc\x53\xde\xb9\x64\xcf\xdf\ -\x9c\xe0\x97\xf1\x97\x2c\xc6\x6f\x1c\x0b\x7f\x9f\x41\x45\x3b\xcf\ -\xbc\xe6\x97\x7c\xbd\x63\xa9\x3a\xf1\x44\x89\x9d\x8b\x2e\xe7\x43\ -\x9e\x9d\xbd\x39\x55\x87\xbe\xb4\x0a\x2d\x66\x77\x37\x57\x8b\xf0\ -\xf3\xef\xcd\xd5\xbf\x01\x5a\x78\x2f\x26\ -\x00\x00\x0b\x5c\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x61\x64\x64\x2e\x73\ -\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\ -\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ -\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ -\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ -\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x38\ -\x2e\x36\x33\x38\x31\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\x2e\x35\x33\ -\x38\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\ -\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\ -\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ -\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ -\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ -\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ -\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ -\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\x35\x66\x66\ -\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x34\x35\x34\x35\ -\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ -\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\x32\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ -\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x38\x36\ -\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x35\x2e\x34\x39\x33\x32\x35\x38\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x36\x2e\ -\x39\x33\x31\x39\x35\x33\x2c\x35\x2e\x38\x36\x36\x36\x36\x36\x37\ -\x20\x56\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x34\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ -\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0e\x5b\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x73\ -\x65\x74\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\ -\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\ -\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ -\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ -\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ -\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ -\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x37\ -\x2e\x38\x30\x34\x35\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x2e\x32\x33\x34\ -\x31\x36\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\ -\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\ -\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\ -\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\ -\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\ -\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ -\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ -\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ -\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ -\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ -\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ -\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ -\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ -\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\ -\x31\x63\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x31\x2e\x30\x37\x31\x36\x32\x31\x37\x38\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\ -\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x38\x2e\x34\x32\x33\x33\x38\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x2e\ -\x39\x35\x35\x38\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x35\x32\x2e\x30\x34\x36\x30\x38\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x34\x34\x2e\x32\x34\x39\x31\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\ -\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x32\x2e\x34\x39\x35\x36\x39\x38\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ -\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x37\ -\x31\x38\x32\x31\x37\x33\x2c\x30\x2e\x34\x38\x39\x38\x32\x33\x33\ -\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ -\x2c\x30\x2c\x2d\x30\x2e\x38\x32\x34\x33\x35\x32\x37\x31\x2c\x30\ -\x2e\x35\x36\x36\x30\x37\x36\x35\x2c\x30\x2c\x30\x29\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x36\x35\x39\x39\ -\x38\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ -\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x32\x38\x2e\x34\x30\x32\x33\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x37\x2e\x30\x32\x39\x30\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x31\x35\x2e\x38\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x2e\x34\x32\ -\x33\x33\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x32\ -\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ -\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x39\x39\x36\x38\x33\x35\x38\x39\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ -\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x30\x30\x31\x31\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x39\x34\x34\x38\x30\x31\x37\ -\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x2e\x34\x32\x33\x33\ -\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x31\x36\x2e\x37\x39\x32\x33\x35\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x35\x2e\x34\x30\x33\x30\x32\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x35\x2e\ -\x31\x38\x30\x37\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x34\x37\x34\x39\ -\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ -\x2c\x2d\x30\x2e\x37\x37\x36\x34\x37\x36\x37\x35\x2c\x30\x2e\x36\ -\x33\x30\x31\x34\x35\x39\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x35\x32\x39\x36\x30\ -\x32\x38\x2c\x30\x2e\x36\x35\x38\x30\x36\x35\x39\x36\x2c\x30\x2c\ -\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\ -\x2e\x39\x34\x38\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x2e\x36\x34\x31\x33\x38\x37\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x36\x2e\ -\x39\x36\x33\x35\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x31\x37\x2e\x33\x31\x36\x38\x31\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x38\x2e\x34\x32\x33\x33\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x39\x32\x34\x35\x34\x31\ -\x37\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\xa9\ -\x00\ -\x00\x52\x92\x78\x9c\xe5\x9c\x5b\x8f\xa3\x36\x14\xc7\xdf\xe7\x53\ -\x50\xe6\xa5\x55\x65\x30\x97\x84\xcb\x26\xd9\x87\xae\x56\x5a\xa9\ -\x4f\xed\x56\x7d\xac\x1c\xec\x64\xd0\x02\x8e\x80\x4c\x92\xfd\xf4\ -\xb5\x09\x90\x00\xde\xaa\x92\x1d\xc9\x0a\x48\xa3\x15\xe7\x1c\x1b\ -\xf3\xc3\x97\x3f\x07\x6f\x56\x1f\xcf\x79\x66\xbc\x93\xb2\x4a\x69\ -\xb1\x36\x1d\x0b\x9a\x06\x29\x12\x8a\xd3\x62\xbf\x36\xff\xfa\xfa\ -\x19\x84\xa6\x51\xd5\xa8\xc0\x28\xa3\x05\x59\x9b\x05\x35\x3f\x6e\ -\x5e\x56\x3f\x01\x60\xfc\x56\x12\x54\x13\x6c\x9c\xd2\xfa\xcd\xf8\ -\x52\x7c\xab\x12\x74\x20\xc6\xcf\x6f\x75\x7d\x88\x6d\xfb\x74\x3a\ -\x59\x69\x6b\xb4\x68\xb9\xb7\x7f\x31\x00\xd8\xbc\xbc\xac\xaa\xf7\ -\xfd\x8b\x61\x18\xec\xba\x45\x15\xe3\x64\x6d\xb6\x05\x0e\xc7\x32\ -\x6b\x02\x71\x62\x93\x8c\xe4\xa4\xa8\x2b\xdb\xb1\x1c\xdb\xbc\x85\ -\x27\xb7\xf0\x84\x5f\x3d\x7d\x27\x09\xcd\x73\x5a\x54\x4d\xc9\xa2\ -\x7a\xbd\x0b\x2e\xf1\xae\x8f\xe6\xad\x39\x79\x4d\x90\x13\x45\x91\ -\x0d\x5d\xdb\x75\x01\x8b\x00\xd5\xa5\xa8\xd1\x19\x0c\x8b\xb2\x36\ -\x8a\x8a\xba\x10\x42\x9b\xf9\x6e\x91\xff\x2f\x2a\xae\x18\xd0\x03\ -\xfb\xeb\xc3\x3b\x83\x55\xd1\x63\x99\x90\x1d\x2b\x47\xac\x82\xd4\ -\xf6\xa7\xaf\x9f\x7a\x27\x80\x16\xae\xf1\x5d\x35\x1d\xcf\xc1\x55\ -\x07\x90\x0b\x94\x93\xea\x80\x12\x52\xd9\x9d\xbd\x29\x7f\x4a\x71\ -\xfd\xb6\x36\x3d\xdf\x72\x3c\x76\x2c\x1a\xe3\x1b\x49\xf7\x6f\xf5\ -\xd8\x9a\xe2\xb5\xc9\x5a\xef\x46\xe1\xf5\xfc\xae\x73\x38\xd7\x80\ -\xb6\xe2\xb8\xf7\x40\x2b\x72\x2d\xc7\x28\x9d\x85\x17\x5c\x63\xba\ -\x5b\x88\x31\x4d\x78\x9b\x58\x95\x24\x4f\xd1\xb1\xa6\x39\x7b\x6a\ -\x49\x92\xa1\xaa\x4a\x77\x69\xc2\x4e\x68\x71\xc8\x8e\xfb\xb4\xf8\ -\x67\x68\xb4\x3a\x82\xfd\xe5\xc8\xf9\x40\xcb\x1a\x9c\xf1\x81\x71\ -\x5c\x06\x42\xe7\xa5\x73\x6e\x98\x77\x85\xc9\xae\xe2\x51\xd7\x9b\ -\xe2\x67\xec\xae\x02\xd3\xb0\x1b\x6f\xdf\x46\xde\x40\xfc\x9e\x92\ -\xd3\x2d\x76\x8b\xaa\x2b\x38\xc3\x38\xa0\x3d\xeb\x64\x19\x2d\xd7\ -\xe6\xeb\xae\x39\x5a\xc7\x96\x96\x98\x94\x9d\x6b\xd9\x1c\x03\x17\ -\x65\x0f\x22\xad\x2f\xd7\x61\xd5\xd6\xdd\xb5\x97\xd7\xda\xfb\xa1\ -\xd8\x5f\xbd\x21\x4c\x4f\x6b\xd3\x1d\x3b\xbf\x53\x9a\xaf\xcd\xc0\ -\x8a\x9c\x10\xfa\x4e\x30\x76\x27\xe7\xb5\x09\x3c\xcf\x72\x3d\x18\ -\x2c\xbc\x89\x97\x37\xc8\xb7\xbc\x20\xf4\xdc\x49\xcd\xc9\xb1\x2c\ -\xd9\xc0\x03\x19\xba\x10\x76\x57\xcd\x3f\x4e\x1b\x54\xbd\xd1\xd3\ -\xbe\xe4\x74\xea\xf2\x48\xc6\x25\xb9\x07\x6c\xb7\xf4\x2c\x76\xb3\ -\x7e\x70\xe4\x43\x1a\x1c\x8b\xb4\x66\xc3\xe6\x70\xbe\xaf\xf5\x98\ -\x62\x52\x89\x0b\x56\x05\x3a\x80\x7d\x46\xb7\x28\x13\x07\x9c\xd2\ -\x82\x51\x02\x6d\x0f\x77\xbc\xfe\x21\x8c\x23\xba\xee\x1e\xc0\xf0\ -\x07\x11\xac\xed\x93\x07\xd1\xba\x2e\x3f\x76\xe5\xe8\x9c\xe6\xe9\ -\x77\xc2\xc0\x38\x4d\xbf\x63\x7d\x6b\x80\xe5\x5a\xcc\x30\xea\x0b\ -\x1f\xba\xe7\x0b\xb7\x99\x9d\x91\xf3\xe4\x06\x37\x8a\x82\xde\x48\ -\xcb\x94\x8d\x88\xbb\xe6\x74\xa6\xcb\xbd\x89\x0f\x74\x36\x4f\x9f\ -\x9b\x0e\xd6\x74\xbf\x60\xec\xbb\xdc\xfb\xda\x7e\x6f\x4f\x3b\x7e\ -\x63\xcf\x49\x8d\x30\xaa\xd1\x6d\x14\x74\x16\xd6\x36\xd8\xdd\x19\ -\x9b\x33\xe3\x3f\x3e\x7d\xde\xb4\x17\x5a\x25\x49\xfc\x37\x2d\xbf\ -\x75\xd7\x35\x0c\x1e\x80\xb6\xf4\xc8\x48\x9b\x9b\xde\xbc\xc2\x49\ -\xcc\x66\x39\x36\xfa\x37\x69\xce\xfa\x36\x9f\x20\x7f\x65\xb3\xda\ -\xca\xbe\x39\x06\xc1\x1c\xd6\xad\xd2\x6b\xb5\x25\xb9\x4e\x97\xc2\ -\x35\x03\x27\x79\xca\x0b\xd9\x7f\xd6\x69\x96\x7d\xe1\x17\x69\xef\ -\xf8\xae\xd2\xb4\xce\xc8\xcd\xb8\xb2\xdb\xd6\xb7\xf7\x66\xdf\xdd\ -\xdc\xca\xee\xee\xbe\x39\xdb\xdf\xa8\x0c\x06\x45\xff\xa0\x33\xb4\ -\x25\xac\x87\xfe\xce\x9d\xc6\xc4\xbb\x2f\xe9\xf1\x90\x53\x4c\xda\ -\xe2\x3d\x4d\x92\xd4\xfd\x23\xab\x2f\x19\xf3\xef\x58\xeb\xe3\x57\ -\x08\x93\x64\xb7\xfb\xc0\x4f\x40\x3b\x4f\xc4\xce\xf5\xb4\x3c\x66\ -\x6c\xbe\x7b\x27\x05\xc5\xf8\x43\x55\x97\xf4\x1b\x89\xdb\x99\xa9\ -\x3d\xbd\x0e\x86\x18\x76\xa7\x0c\x0c\x29\x33\xd6\x49\xeb\xd8\xef\ -\x6c\x18\xb1\xe9\xa5\x2c\xd1\x25\x2e\xd8\xc2\xde\x59\xfb\x4b\x0d\ -\xfa\x27\x6f\xe5\x22\xf4\xa2\xde\xd8\x0e\x36\xdf\x72\x9b\xae\x75\ -\x73\x74\x63\x6c\xea\x19\x74\xe6\x8b\x28\xa2\x1c\x84\x94\x4d\xd7\ -\xf5\x5d\x7e\x78\xfd\x83\xfc\x2f\x60\x08\x61\x5f\x33\x60\xc0\x91\ -\x44\x36\x35\x3e\x04\xdd\x72\x19\x42\xed\xd0\x81\x50\x12\x5e\x68\ -\x2d\xb8\xac\xf1\xc2\xc7\xc2\xf3\xfd\xc5\x42\x3f\x78\x50\x12\x9e\ -\xe3\x5a\x0f\xe5\xb6\xdb\xb9\xc8\x45\xda\x71\xf3\x64\xb1\x05\xd7\ -\xe5\x76\x8e\xec\x40\x20\x09\xcf\x75\xac\x66\xc0\xfa\x73\x84\x17\ -\x82\x85\x2c\xbe\x85\xb5\x9c\x23\x39\x08\x64\x47\xad\x1b\x59\xe1\ -\x50\x3f\xcf\x47\xa1\x00\x5f\x12\x9e\x50\xa3\x40\x65\xd0\x34\xd5\ -\x26\xd2\xd2\x4e\xa8\x4e\xd4\x61\xd3\x54\x95\x48\xaf\x11\x63\x5d\ -\xa2\x8a\xd8\x6e\x17\x45\x1a\x12\xf3\xc0\x52\x16\x98\x48\x91\x3c\ -\x39\x35\x10\x00\x57\x12\x9b\x50\x8b\x3c\x3b\x36\xa6\x41\x80\xec\ -\x5b\xfe\x58\x85\xa8\x9b\xd2\x34\xcc\x88\x48\xbf\xa3\x0e\x72\x22\ -\x83\xb9\xed\x39\xc5\x46\x28\x0b\x4c\xa8\x36\x94\x82\xd3\x55\x70\ -\xc8\x0e\x4c\xa1\xe0\x50\x4a\x4e\x57\xcd\x21\xbd\x84\x8e\x34\x87\ -\x42\x68\x21\xe4\x87\x76\xd0\x3c\xe9\xf5\x53\x28\x3b\x9e\x1f\x1c\ -\x53\x1e\xd2\x2f\xa3\x22\xe5\x31\x03\x72\x5c\x7c\xc8\xae\x0e\x63\ -\xf1\x31\x03\x6c\x10\x78\xf2\x89\x37\x51\xfe\x43\xe9\xd2\xa0\xa3\ -\x76\x83\xd2\xa9\x8f\x81\x7a\x9b\xae\xaf\xcf\x29\xe1\x7c\xe9\xb5\ -\x41\xa8\xe1\xd4\xe3\xd3\x55\xc8\x39\xd2\x99\x5e\xa1\x94\x53\x0f\ -\x50\x57\x3d\x17\x48\x6b\xe1\xb1\xa2\x53\xcd\x0e\xfb\x5a\x2e\x16\ -\x1e\x58\x3e\x46\xd8\xcd\x84\x1f\xcf\x2b\x3d\xe6\x2b\xd7\x5c\x00\ -\x36\x19\x26\xe9\x8f\xd3\x63\x99\x37\x17\x7a\x5c\xeb\xb9\xd2\x5f\ -\x1e\x84\x6a\x4f\x35\x42\xbe\xf8\xea\x87\x10\xca\xbe\x9c\x0d\x14\ -\xdf\x74\x24\x3f\x23\x33\x47\x3a\x7f\x22\xd4\x7b\x73\x81\x17\x4a\ -\x2f\x18\x42\xb5\x37\x17\x7c\x50\x3a\x27\x30\xd6\x7a\xaa\xc9\x41\ -\xc8\x1e\x8d\x7e\xe4\xd8\x4a\x21\xfd\xad\x55\x24\xf5\xd4\xe3\xf3\ -\x7d\xa4\xe1\xae\x92\x40\x7e\x3f\x8e\x48\xe8\xa9\xc6\xe7\xa2\x60\ -\xa7\x5f\x6a\xe5\x2a\xf4\xa4\x33\xa1\x23\x99\xa7\x9a\x5d\x18\x20\ -\x84\x89\x7e\xec\x9a\x94\xde\x43\xf6\x34\xa9\x26\xc8\x33\x04\xfa\ -\xad\x1a\xf2\xbb\x4c\x86\x9f\x65\x27\xd3\xe0\x33\x42\xe3\x89\xbd\ -\x87\x08\xbd\xb9\xe0\x6b\x12\x7b\x0f\xc9\xec\xcd\x85\x20\xcf\xec\ -\xc9\xa6\xe4\x27\xdf\x6a\x15\xb3\xd3\x56\xed\x2d\xa5\xf5\x8a\xf8\ -\x93\xad\x72\x7e\xba\xca\x3d\x57\x7a\xfa\x13\x7f\xb9\x55\x0c\x50\ -\x67\xc1\x17\x29\x97\x7c\xaa\xe9\xe9\x2c\xf9\x5c\xf9\xbc\xa8\xf0\ -\x3b\xae\x62\x84\xdb\x04\x7b\x0b\x1d\x3b\xa0\xfc\x9e\x6c\x71\xa2\ -\x6a\x02\xf5\x49\xf9\xb1\xe1\xfb\x98\x54\xd5\x4c\x00\x42\xb6\x06\ -\xab\xde\x6a\xa6\x9a\x9d\xb6\xf2\xc5\x7d\x8c\x7c\x51\xcf\x4f\x57\ -\xf9\xe2\x49\x4b\x67\x71\xbe\x4a\x31\x40\x9d\xe5\x8b\xfa\xff\x82\ -\xa7\x9a\x5e\x18\x22\xa4\xdf\x9b\x1b\x04\xbe\xf4\xd2\x3b\xfc\xb0\ -\x76\x8f\xf1\x19\x89\x35\xbb\xa8\xa4\x57\x5b\xb1\x5c\x79\x7e\x76\ -\x4d\xa6\x45\x5a\x2c\x8b\xb5\xca\xf3\xd3\x6b\xf6\x4f\x49\xbf\xa8\ -\x4d\x84\x8a\x3a\x70\xda\x6a\x94\xa5\x82\x57\x34\xb1\x4a\x51\x09\ -\x4f\x57\x81\xc2\xe6\xbb\xc7\xec\x9d\x52\x48\x4f\x67\x75\xc2\xd7\ -\x59\xd5\x1b\xa7\x54\x4e\x77\x5a\x67\x56\x9c\xc7\xec\x9a\x52\xc7\ -\xef\xee\x9e\xf8\x20\x6e\xf6\x9f\x0d\xd8\xb8\x96\x13\x2c\xa0\xe3\ -\x86\x9e\x4a\x48\x6e\x14\x4d\xf6\xd2\x7a\xee\x84\xc8\x9d\x49\xf8\ -\x73\x63\x17\x91\x91\xf3\x58\xb0\xf1\x0a\xbd\xfb\xdf\x50\x60\xa1\ -\x9e\x15\x42\x3f\x0c\xc2\x45\xff\x93\x64\xfb\xcd\xcb\x8a\xff\x24\ -\xd8\xe6\xe5\x5f\xd1\x32\xdf\x60\ -\x00\x00\x05\xc8\ -\x00\ -\x00\x1d\xbe\x78\x9c\xdd\x58\xdd\x93\x9b\x36\x10\x7f\xbf\xbf\x42\ -\x25\x2f\xed\xd4\x7c\x08\xb0\xf9\x88\xed\x3c\x24\xd3\x49\x66\xda\ -\x97\x36\x6d\x1f\x33\x18\x64\x9b\x06\x10\x15\xe2\x6c\xe7\xaf\xef\ -\x0a\x90\x00\x1b\xcf\x38\xbd\x4b\x72\x17\x66\x6e\x4e\xda\x5d\x49\ -\xbb\x3f\xed\x97\xb5\x7c\x75\xcc\x33\x74\x4f\x58\x95\xd2\x62\xa5\ -\x61\xc3\xd2\x10\x29\x62\x9a\xa4\xc5\x6e\xa5\xfd\xf9\xfe\x17\xdd\ -\xd7\x50\xc5\xa3\x22\x89\x32\x5a\x90\x95\x56\x50\xed\xd5\xfa\x6e\ -\xf9\x83\xae\xa3\xd7\x8c\x44\x9c\x24\xe8\x90\xf2\x3d\x7a\x57\x7c\ -\xac\xe2\xa8\x24\xe8\xc7\x3d\xe7\x65\x68\x9a\x87\xc3\xc1\x48\x3b\ -\xa2\x41\xd9\xce\xfc\x09\xe9\xfa\xfa\xee\x6e\x59\xdd\xef\xee\x10\ -\x42\x70\x6e\x51\x85\x49\xbc\xd2\xba\x05\x65\xcd\xb2\x46\x30\x89\ -\x4d\x92\x91\x9c\x14\xbc\x32\xb1\x81\x4d\xad\x17\x8f\x7b\xf1\x58\ -\x9c\x9e\xde\x93\x98\xe6\x39\x2d\xaa\x66\x65\x51\xbd\x18\x08\xb3\ -\x64\xab\xa4\x85\x36\x07\xa7\x11\xc2\x41\x10\x98\x96\x6d\xda\xb6\ -\x0e\x12\x7a\x75\x2a\x78\x74\xd4\xc7\x4b\x41\xc7\xa9\xa5\xb6\x65\ -\x59\x26\xf0\x7a\xc9\xdb\xa4\xc2\x0a\x00\x2d\xe1\x4f\x89\x4b\x82\ -\x51\xd1\x9a\xc5\x64\x0b\xeb\x88\x51\x10\x6e\xbe\x79\xff\x46\x31\ -\x75\xcb\x48\x78\x32\xd8\x46\xe2\x39\x3a\x75\x04\x72\x11\xe5\xa4\ -\x2a\xa3\x98\x54\xa6\xa4\x37\xeb\x0f\x69\xc2\xf7\x2b\xcd\x71\x0d\ -\xec\xc0\x37\x6f\x88\x7b\x92\xee\xf6\xfc\x9c\x9a\x26\x2b\x0d\xb4\ -\xb7\x03\xbf\x9d\x0f\x9c\x03\xb7\x02\xdd\xc6\xa1\xe2\x58\x46\x60\ -\x1b\x18\x31\x3c\x77\xbc\x56\x46\x9a\x10\x26\x34\x16\x3a\xc1\x96\ -\x24\x4f\xa3\x9a\xd3\x1c\x6e\x2d\x8e\xb3\xa8\xaa\xd2\x6d\x1a\xc3\ -\x84\x16\x65\x56\xef\xd2\xe2\x43\x02\xb7\xce\xc9\x87\x2a\xdd\x15\ -\x11\xaf\x19\x31\x24\x86\xea\x40\x72\x2c\x29\xe3\xfa\x31\x29\x01\ -\xc9\x85\x37\xc9\x3c\x49\xe6\x1a\xb8\xcb\x84\x6c\x2b\x21\xd5\x9a\ -\x25\x66\x60\x97\xa7\x21\xb3\xe1\x2a\x2d\x85\x8a\xc9\x7d\x4a\x0e\ -\xbd\xec\x26\xaa\x5a\xe8\x10\x2a\xa3\x1d\xb8\x59\x46\xd9\x4a\x7b\ -\xb1\x6d\xbe\x8e\xb1\xa1\x2c\x21\x4c\xb2\x16\xcd\x37\x62\x51\xb8\ -\x8a\x94\x9f\xda\xc0\xea\xf6\x96\xfa\x8a\x5d\x15\xdf\x9a\xe6\x57\ -\xfb\x28\xa1\x87\x95\x66\x9f\x33\x3f\x51\x9a\xaf\x34\xcf\x08\xb0\ -\x6f\xb9\xd8\x3b\x67\xc7\x47\xb1\xa5\xeb\x5a\x9e\x6d\x63\x7c\xc1\ -\x85\x03\x6d\xdb\x58\xe0\x85\xe5\x5e\xf0\x6a\xc6\x20\xf2\xf4\x2c\ -\x3a\x11\x30\xaa\xf9\x27\x37\xa8\xf6\xf4\xb0\x63\x02\x1c\xce\x6a\ -\x72\xbe\x52\x70\xf4\xcd\x86\x1e\xa7\xd9\xe0\x08\xb5\x88\x69\xbd\ -\x2e\x52\x0e\x71\x53\x1e\x87\xbb\xd6\x69\x42\xaa\xe9\x85\x87\xb4\ -\x00\x0c\xf4\xce\x83\xb1\xa3\x20\x3e\x97\x90\xee\xec\x59\xfe\x15\ -\x09\x81\xca\x15\xd6\xe9\x3a\x2b\x8f\x8e\x69\x9e\x7e\x22\x60\xf7\ -\x05\x94\x55\x11\x95\xfa\x2e\xa3\x9b\x28\xeb\xb4\x5f\x37\x12\xcb\ -\x11\x2c\xed\x22\x84\xf8\x49\xc4\xee\xf1\x24\x68\x9a\x24\x0a\x3c\ -\x05\xc1\xf1\x16\x73\x45\xa4\x2c\x85\x90\x18\xe8\x2b\x49\xa7\x21\ -\x49\x44\x3a\x24\xea\x63\xe3\x5f\x8d\xf7\x79\xe7\xbc\xd3\x90\xd7\ -\xb9\xbd\x79\xe9\xf7\x0d\x3d\x27\x3c\x4a\x22\x1e\xf5\x41\x20\x29\ -\x76\x10\x58\xd2\x32\x48\x9a\xe1\xef\x6f\x7e\x59\x77\x07\x2d\xe3\ -\x38\xfc\x9b\xb2\x8f\xf2\x5c\x84\x84\x40\xb4\xa1\x35\x5c\x85\xb6\ -\x56\xe4\x65\x12\x87\x90\xe6\x20\xfc\xd7\x69\x0e\xae\x2d\x32\xe4\ -\xcf\x90\xd6\x96\x66\xcf\x18\x09\x0b\xb0\xfa\x4d\xdb\x6d\x19\x69\ -\xf3\xe5\x64\xd1\x48\xe2\x3c\x15\x8b\xcc\x3f\x78\x9a\x65\xef\xc4\ -\x21\x9d\xc5\x83\x4d\x53\x9e\x91\x9e\xb8\x34\x3b\xed\x3b\xdb\xcc\ -\x81\x71\x4b\x53\x5a\xdf\xcc\x76\x3d\x2a\xa3\xa0\x50\x17\x9d\x45\ -\x1b\x02\x4e\xf0\xab\x60\xa2\x0b\xee\x8e\xd1\xba\xcc\x69\x42\xba\ -\xe5\x0a\x4d\x12\x73\x75\x65\xfc\x94\x01\x7f\x0b\xda\x87\x5d\xa2\ -\x79\x29\x26\x7a\x97\x26\x42\xdc\x4e\x59\x9d\x41\xba\xbb\x27\x05\ -\x4d\x92\x97\x15\x67\xf4\x23\x09\x5f\x58\x96\xeb\x5b\x56\x37\x6d\ -\xa3\x25\x54\xd3\x2c\x2d\x08\xa8\x11\x56\xff\xd6\x11\x23\x43\xea\ -\x3f\x34\x2d\x42\xc0\x8d\x30\x49\x6d\x26\x19\x78\x3c\x0f\x5d\x49\ -\x4b\x22\xc8\x44\x8c\x45\xa7\xb0\x80\x2e\x60\x48\xa5\xdb\x6d\x45\ -\x78\x7f\x92\x54\xd5\x32\x9c\xee\x1b\x39\xba\x30\xd7\x09\x02\xac\ -\x88\x93\x85\x49\x7c\xd3\xc5\x49\x7c\xa3\xa8\x00\xff\x0e\x0c\xd7\ -\x73\x02\xcb\x59\x10\x1d\x2f\x14\x83\x8d\xc4\x18\xc8\x39\x86\x03\ -\x05\x6a\x11\xf8\xca\x2b\x96\x65\xc4\xf7\x53\xe8\x0f\xac\x14\xc8\ -\x8a\x6f\x8c\xac\xdd\x2a\xe5\xb8\xee\x39\xc4\x9b\x9a\xf3\xc7\x02\ -\x58\xdd\xbb\xb2\x03\x20\xfc\x0d\x59\x33\x0b\xfd\x85\x24\x30\x63\ -\x80\x85\x45\x10\xad\x3d\x0e\x7d\x66\xa7\x05\x68\xc8\x29\xd3\x21\ -\xc7\xdf\x37\x15\x76\x94\x4b\x54\x4e\x00\x27\x15\x61\x04\xe9\x38\ -\x8e\x9f\x3b\x54\x0a\xa4\x99\x1a\xa1\xb7\xc8\x9a\x82\xcc\x7f\x3a\ -\x90\x61\x03\x6e\xd0\xb2\xe7\x7e\x79\xfc\x7c\xcc\xae\x20\xa1\xaa\ -\xc0\xcc\xf6\x0d\x1f\xbd\x46\x8e\x61\xb7\xc3\x8b\xc1\x05\x3a\x8e\ -\xe7\xd9\xba\x75\x33\x3e\x8f\xe2\x33\xd8\x9b\xbb\x78\x3e\x7f\x34\ -\x04\x72\x34\x97\x29\x69\xe6\xcc\x0d\x1b\xc5\x10\x47\xba\x6b\xd8\ -\x0d\x28\xd7\xc6\x97\x50\xf8\xee\x97\x03\xc2\x27\x97\x9e\xd0\xdd\ -\x9a\xfd\x45\x5c\x01\x3b\x86\xdf\xda\xdc\x19\x2c\x68\x36\xb8\x02\ -\xb6\x8c\x6e\xaa\x18\x08\x2f\x66\xe0\x21\x28\x53\x40\xce\x02\x63\ -\x21\x27\xee\x4c\xc6\x39\xf2\x0c\xb7\x59\x31\x53\x80\xfa\xc6\xbc\ -\x95\x81\xf5\x17\x88\xba\x96\xe3\x7d\x45\x44\xe1\xea\x1b\xad\x02\ -\xe7\x6b\xa4\xa3\x89\x32\xf8\x44\xaf\x40\x77\x3e\x3b\xff\x29\x39\ -\xce\xa2\xa2\x12\x3d\x9c\x1e\x43\x87\x4f\x98\xde\x74\xa4\x13\x35\ -\xe8\x42\x10\xca\xb2\x7e\xde\x9f\x3e\xb9\xc4\xd1\xdf\xc4\x03\x13\ -\x87\x7e\x7b\x8d\x79\xa2\x50\xd8\x58\x3a\xde\x43\xa1\x08\x9e\x3d\ -\x14\x8b\xc7\xf2\x8a\x67\x5f\x59\x1d\xfb\xc1\x18\xdc\x9e\x7d\x9e\ -\x28\x06\x22\x35\x3f\x10\x83\xdb\x9b\xf6\xa7\xd8\x62\xe6\xc3\x16\ -\xd3\x69\x0b\x90\x07\x70\xc8\xa2\xe4\xc0\xaf\x96\x2b\xe3\x2b\x0d\ -\xa7\x6e\x7f\x37\x80\x60\x5f\x96\xe6\x07\x01\x82\x9f\x35\x20\xa3\ -\xb6\xc7\x56\x3f\x42\x9a\xe1\xc5\xe0\x1a\x04\x5f\x33\x51\x7c\x59\ -\x9f\x90\x4d\xda\x03\x83\xc4\xfd\x6e\x00\x51\xc6\x3e\x0c\x90\xff\ -\xd1\x59\x4c\xbc\xc2\x8d\xdf\xdc\xc4\x7b\x5c\x03\xc7\xcd\xef\x71\ -\xdd\xfb\xdd\x19\x7c\x8b\x16\x55\xfb\xdb\x3d\xcc\xe1\x11\x6c\xcd\ -\x7b\x9c\x85\x7b\x2c\xbb\xf7\x38\xd9\xe7\xf5\xce\x25\xdf\xe3\x2e\ -\x39\xa2\xd9\x97\x1d\xf2\xf0\x5d\x6e\x14\xc5\xe2\x01\xce\x85\x9b\ -\x76\xdc\xc0\x76\x3e\xd3\x13\xa7\xa0\x74\x8d\x39\x5e\x78\xf3\xe0\ -\x5b\x3c\x2a\x09\xc3\x06\x25\xee\x2d\xb2\x83\xee\x37\xdc\x84\x4b\ -\xfa\xb7\x17\xb1\x9b\xde\x95\x96\xe6\x6e\x7d\xb7\x14\xaf\xe7\xeb\ -\xbb\xff\x00\x73\x77\xb5\x26\ -\x00\x00\x15\xfd\ -\x00\ -\x02\x17\xe5\x78\x9c\xed\x5d\xdb\x8e\xe3\x48\x72\x7d\x9f\xaf\x90\ -\x35\x30\xb0\x03\x37\x53\x79\xbf\xa8\xab\x7b\x1f\x76\xb1\xf0\x02\ -\xf6\x8b\xbd\xb6\x1f\x17\x2c\x89\x55\x2d\xb7\x24\x96\x29\xd5\x6d\ -\xbe\xc6\xdf\xe2\x2f\x73\x26\xa9\x2b\x45\x35\x66\x46\x8c\x8a\x1a\ -\x75\x68\xd0\x53\x12\x93\x94\xc8\x38\x19\xf7\xc8\xc8\x9b\x3f\xbe\ -\x2c\xe6\x83\xa7\xa2\x5a\xcd\xca\xe5\xa7\xa1\x60\x7c\x38\x28\x96\ -\x93\x72\x3a\x5b\xde\x7f\x1a\xfe\xc7\xdf\xfe\x92\xf9\xe1\x60\xb5\ -\xce\x97\xd3\x7c\x5e\x2e\x8b\x4f\xc3\x65\x39\xfc\xe3\xe7\x1f\x6e\ -\xfe\x21\xcb\x06\x7f\xaa\x8a\x7c\x5d\x4c\x07\xcf\xb3\xf5\x97\xc1\ -\x5f\x97\x5f\x57\x93\xfc\xa1\x18\xfc\xe1\xcb\x7a\xfd\x30\x1e\x8d\ -\x9e\x9f\x9f\xd9\x6c\x73\x90\x95\xd5\xfd\xe8\xa7\x41\x96\x7d\xfe\ -\xe1\x87\x9b\xd5\xd3\xfd\x0f\x83\xc1\x20\xfe\xee\x72\x35\x9e\x4e\ -\x3e\x0d\x37\x17\x3c\x3c\x56\xf3\xfa\xc4\xe9\x64\x54\xcc\x8b\x45\ -\xb1\x5c\xaf\x46\x82\x89\xd1\x70\x7f\xfa\x64\x7f\xfa\x24\xfd\xfa\ -\xec\xa9\x98\x94\x8b\x45\xb9\x5c\xd5\x57\x2e\x57\x3f\x1e\x9c\x5c\ -\x4d\xef\x76\x67\xa7\xbb\x79\x56\xf5\x49\x22\x84\x30\xe2\x72\x24\ -\x65\x16\xcf\xc8\x56\xaf\xcb\x75\xfe\x92\x1d\x5f\x1a\xef\xb1\xeb\ -\x52\xc9\x39\x1f\xc5\xb1\xfd\x99\xbf\xec\xac\xf1\x2a\x12\xf4\x21\ -\xfe\xdb\x9d\xbe\x3d\xc0\x56\xe5\x63\x35\x29\xee\xe2\x75\x05\x5b\ -\x16\xeb\xd1\x9f\xff\xf6\xe7\xdd\x60\xc6\xd9\x74\x3d\x3d\xf8\x9a\ -\x2d\x3d\x8f\x7e\xf5\x88\xc8\xcb\x7c\x51\xac\x1e\xf2\x49\xb1\x1a\ -\x6d\x8f\xd7\xd7\x3f\xcf\xa6\xeb\x2f\x9f\x86\x4a\x33\xa1\xe2\xcb\ -\xd4\x07\xbf\x14\xb3\xfb\x2f\xeb\xf6\xd1\xd9\xf4\xd3\x30\xde\xbd\ -\x0c\xbe\xf9\x7c\x30\x39\x44\x73\xc2\xe6\x8b\xc7\xbb\x11\xce\x82\ -\x64\x62\x50\x09\xa3\x5c\x73\xce\xf6\x11\xc6\xd3\x72\x92\xee\x29\ -\x7e\x65\xb1\x98\xe5\x8f\xeb\x72\x11\x51\x9b\x4c\xe6\xf9\x6a\x35\ -\xbb\x9b\x4d\xe2\x87\x72\xf9\x30\x7f\xbc\x9f\x2d\xff\xfe\x75\x51\ -\xe4\xcb\xd5\xdf\xd7\x65\x39\x67\x5b\xf2\xed\x7e\xab\x78\x79\x28\ -\xab\x75\xf6\x32\x7d\x88\x44\xb4\xae\x73\xf0\x75\x3b\xf8\x39\x8e\ -\xde\x4c\x8b\xbb\x55\x3a\xab\x79\xa2\xf4\x29\x3e\x92\x1b\x0e\x46\ -\xf5\xe8\xee\x06\xd3\xdd\x4d\x9f\x66\xc5\xf3\xfe\xdc\xdb\x7c\xd5\ -\x50\x6d\x30\x78\xc8\xef\xe3\x0c\x9b\x97\xd5\xa7\xe1\x8f\x77\xf5\ -\x6b\x33\x70\x5b\x56\xd3\xa2\xda\x0e\xd9\xfa\x75\x34\x54\x46\x14\ -\x66\xeb\xd7\x86\xa7\x36\xdf\xbd\xbd\xdf\xf4\xad\xbb\x71\xde\x3d\ -\xbe\xfa\x92\x4f\xcb\xe7\x4f\x43\xd9\x1e\xfc\xb9\x2c\x17\x35\xc9\ -\x7d\x70\xc6\xc8\x93\xf1\xc9\xcb\xa7\x61\xa6\x79\x60\x3a\x08\x63\ -\x4e\x46\xd3\x1d\x99\x08\xb8\xf4\xa7\x57\x3e\x56\x55\xe4\xba\x6c\ -\x9e\xbf\x16\xf1\xa9\xea\x3f\x62\x73\xd2\xea\x4b\xf9\x7c\x5f\x25\ -\xea\xac\xab\xc7\xa2\x7d\x65\x1a\xc9\x6e\x6f\xcb\x97\xee\xe1\x38\ -\x09\x1e\x13\x3f\x67\x8f\xcb\xd9\x3a\xf2\xcc\xc3\xcb\xe1\xb7\x3e\ -\xce\xa6\xc5\xaa\xfb\xc2\xe7\xd9\x32\x12\x21\xdb\xcc\x5e\xa1\x76\ -\x34\x6e\x9f\xb1\x9d\xca\x8e\xfb\x33\x67\xc4\x5b\x3b\xa1\xf3\x66\ -\xe8\xf5\xfc\xd0\x22\x7f\x99\x2d\x66\x3f\x17\xf1\xb9\x45\xfb\x94\ -\xd5\x32\x7f\xc8\xee\xe7\xe5\x6d\x3e\xdf\xdc\xfd\xe7\xfa\x8c\x9b\ -\x23\xb2\x34\x17\x0d\x06\xeb\xd7\xc4\xb7\x2f\xaf\xe9\xd8\x70\x7b\ -\x30\xd1\x33\x1d\x50\xce\x9a\xdd\xc1\xb2\x9a\x45\x76\x38\xb8\xdf\ -\xed\xa1\xd7\xc3\x43\x89\xcb\xa3\x90\x7e\xa9\x27\x58\x3d\xfd\x5c\ -\x7b\xec\xf5\x70\x6c\x33\xef\x47\xa7\x13\xbf\x3e\xbe\x28\xd6\xf9\ -\x34\x5f\xe7\x7b\x2e\xd8\x1e\x91\x21\xf0\xed\x93\x45\x81\x39\xfe\ -\xb7\x3f\xff\xe5\xf3\xe6\x87\x6e\x26\x93\xf1\x7f\x95\xd5\xd7\xed\ -\xef\x0e\x06\xe9\x84\xfc\xb6\x7c\x8c\x50\x0c\x3f\xef\x0e\xdf\x4c\ -\x27\xe3\x28\xe2\x22\xeb\x7f\x9e\x2d\xe2\xdc\x4e\xd2\xf1\x9f\xa2\ -\x48\xbb\x19\xed\x07\x8e\x4e\x4e\xc4\xda\x7f\x69\xf3\xb5\x55\xd1\ -\xc8\xca\x4e\x85\x31\x9d\x2c\x66\xe9\xa2\xd1\xbf\xaf\x67\xf3\xf9\ -\x5f\xd3\x8f\x6c\x9e\xf8\xe0\x4b\x67\xeb\x79\xb1\x3f\x78\x33\xda\ -\xdc\xfd\xe6\xd9\x46\x07\x0f\x77\x33\xda\x3e\x7d\xfd\xe9\x7e\x4f\ -\x95\x23\xa6\xd8\x01\x3d\xcf\x6f\x8b\x38\x09\xfe\x25\x0d\x0e\x4e\ -\x46\xef\xab\xf2\xf1\x61\x51\x4e\x8b\xcd\xe5\x3b\x6a\x16\x93\xf5\ -\x0e\xb2\xf5\xeb\x3c\x8e\xdf\xc5\xbb\x1f\x6f\x24\xcd\xc7\xf4\x21\ -\xdb\xc8\x89\xb1\x68\x3e\x56\x8f\xf3\x28\xef\x9e\x8a\x65\x39\x9d\ -\x7e\x5c\xad\xab\xf2\x6b\x31\xfe\x91\x73\xed\x39\xdf\x7c\x6c\xb8\ -\x65\xbc\xfb\x38\x9f\x2d\x8b\x78\x1b\xe3\xd5\xff\x3c\xe6\x55\x71\ -\x78\xf4\xbf\xcb\xd9\x72\x1c\xe9\x56\x54\xdb\xa3\xf5\x87\x79\x9c\ -\xf1\xeb\xb1\xde\x1e\x9b\xe6\x51\x14\x55\x55\xfe\x3a\x5e\x46\x0b\ -\xe0\xf0\x68\x79\x77\xb7\x2a\xd6\xfb\x5f\xda\xde\x2a\x67\x6a\xf3\ -\x3a\x9a\xe8\xe9\x71\x55\x08\x62\x77\xb0\x53\x29\xa5\x57\xb7\x62\ -\x4a\xaf\x23\xae\x88\xf3\x3b\x4a\x39\xa7\x02\x57\xb6\xc8\x84\xdd\ -\x0d\x54\x47\xa7\x55\xf1\x3c\xc5\x54\x54\x4e\x36\xf8\xdd\xac\xd8\ -\x82\xba\x61\x42\x65\xc5\xfe\x8a\x75\x15\x15\x51\x9a\x97\x91\x0b\ -\xf2\x75\x35\x7b\xf9\x03\x67\xd6\x3b\xf3\x81\xa7\xff\xa2\xe4\x35\ -\x4a\x39\xa9\x3e\x48\xa6\x1b\xee\x8a\x07\x95\xd6\xdc\x5b\xa5\x7f\ -\x1a\xb6\x20\xdd\x83\x94\x5e\x6d\x5a\x89\x1d\x9b\xdc\x3c\xe4\xeb\ -\x2f\xfb\x49\xbf\xe7\xd3\x38\x71\xd2\xd4\x8e\x22\x72\x32\x19\xee\ -\x4f\xd8\x8b\xed\x72\x19\x11\x5e\x97\x55\x16\x05\xf8\x53\xbe\x7e\ -\xac\x8a\xc3\xc7\x6f\x1e\x30\x7d\x79\xe4\x64\x7b\x70\x38\x1e\xfd\ -\xd7\x41\x7c\x9e\xc1\x7f\x0e\xb6\x84\x56\x07\xc3\x87\x33\xf2\x00\ -\xf9\xf6\x83\x34\xb3\x4d\x6e\xae\xd7\xba\x3d\xed\x6e\x1f\xd7\xeb\ -\xbe\x26\xdd\x9e\x68\x07\x6c\xfc\x16\x64\xf3\x6d\xb2\xed\x08\xf6\ -\x61\xf7\x6e\xf0\xcf\x03\xfe\xbb\x27\xdf\xaf\xa7\x8e\x72\x4e\x66\ -\xbc\x4d\x9f\x9d\xde\xf9\x20\x3d\xf3\x83\x3f\x0d\x14\x93\xcd\xdb\ -\x93\x37\xbf\x95\x66\x82\xc5\xe9\xcc\xa5\xf1\x0f\x2f\xbf\x9e\x68\ -\x30\xa4\xf0\xba\x45\x88\xc5\xc0\x6c\x65\xe1\x07\x65\x98\x1c\x4c\ -\x22\xc3\x65\x9a\xc9\x9a\x36\xe7\xde\x5f\x30\x8b\x84\x33\x3a\x5a\ -\x7d\xef\x8a\x24\x99\x6f\x13\x45\x44\x71\xda\xcc\x8e\xef\x97\x28\ -\xa1\x4d\x14\x29\xd8\x77\x3f\x53\x4e\xd8\x47\x5a\x9a\x29\xaa\x4d\ -\x14\x25\xbf\x63\x6a\xd8\x13\x61\x62\xbf\x53\x6a\xd4\x8a\x37\x93\ -\x27\xf4\xd8\xab\x5e\xd5\xd8\xa7\x2e\xd2\x66\x6b\x61\xa8\x68\xef\ -\x9d\x79\x7f\x86\x36\xb5\x37\xb2\xa3\xc7\xef\x46\x17\x37\xd4\x11\ -\xe7\xa9\x23\xfc\xd6\x70\xfb\x6e\xa9\xa3\xce\x9b\x6d\x42\xee\xcc\ -\xb6\xfa\xed\xc9\x9b\x2b\x32\xdb\x1a\x62\xe8\xf3\x53\xc5\x6d\xfd\ -\xbc\x8b\xa6\xca\xef\x97\x34\x27\xb6\xca\x81\x8c\xd9\x3e\xf6\xef\ -\x8a\x34\x37\xa3\xfb\xee\x28\x80\xb4\x7b\xfd\x72\xc4\xe6\xf6\x2e\ -\x08\x9f\x7f\x33\x42\x60\x82\x55\x81\x07\x5d\x47\x09\x04\x13\x5a\ -\x2b\xe3\xcc\x87\x4c\x09\xe6\xb9\xf1\xc1\x7c\xb0\x8c\xbb\x60\xac\ -\x54\x3f\xed\xbd\xfe\xc3\x20\x50\x1d\xd2\xd0\xcc\x4a\xc9\xa5\x3e\ -\x14\x5d\x2f\x9f\x86\xd6\x30\x27\x8d\xd5\x87\x2a\x6c\x1b\x27\xe1\ -\x71\x48\x79\xc9\x85\x39\x18\xdc\x06\x4d\x99\x8e\xaa\x2b\x58\xd3\ -\x82\xb7\x8e\xc6\x78\x2e\x4f\x11\xa9\x83\xda\x3b\x18\xa6\xb3\xd5\ -\xc3\x3c\x3a\x92\xb3\x65\x22\xee\xc7\xf2\xa9\xa8\xee\xe6\xe5\xf3\ -\xf8\x69\xb6\x9a\xdd\xce\x8b\x8f\xf5\xdf\xd9\x3c\xd1\x77\x7b\xe8\ -\x90\x62\xe7\x83\x58\x11\xf3\x9f\x8b\xaa\xfc\x26\xec\x27\x41\xac\ -\x3e\xdd\xe1\x6f\x85\xb0\xc4\xc7\x45\x5e\x7d\x2d\xaa\xe6\x82\x62\ -\x99\xc7\xe7\xca\x6e\xf3\xc9\xd7\x14\xcb\x5b\x4e\xc7\xf9\x64\xf2\ -\xb8\x78\x9c\xe7\xeb\xc3\x30\xe3\x2f\xc7\xd2\x33\xa3\x83\xd4\x3d\ -\x43\x79\x24\xc2\x08\xcc\xbe\xc1\x74\xcc\x08\xa7\xb8\x0a\x2d\x30\ -\x5d\x14\x6f\x4e\xeb\xde\xd1\x0c\x84\x26\x02\x9a\x81\x05\x2b\x78\ -\xff\x68\xea\xac\xc3\x64\x22\x3c\x7b\xc3\x53\x31\xe1\xb4\xf2\x6f\ -\xc6\x9d\xa4\x38\x31\xd0\x84\xe3\x4e\x4b\x78\x02\xe2\x19\x2d\x5f\ -\x1b\xec\x11\xfd\x01\xed\xa0\x90\x75\x24\xb2\x08\x4d\x60\x34\x9d\ -\x60\xca\x49\x2f\x2d\x80\xea\x24\x63\x08\x14\x50\x11\xe1\xb1\x51\ -\xe0\xbe\x11\x7f\x4a\x62\x4f\x04\x34\x01\xf9\x93\xb8\x13\x21\x8a\ -\xe0\x34\x13\xc1\xea\xfe\xf1\x0c\x64\xdc\xa2\xe0\x09\xaa\x3f\x05\ -\x41\xfa\xf6\xf6\x2d\x50\xcc\x96\x9c\x15\x0c\xf3\x16\x4a\xdc\x6a\ -\xf2\x56\x30\x62\x09\x4e\x32\xe7\xb5\x55\xfd\x6b\x4f\x12\xb5\x18\ -\x70\x1a\x66\xb9\x97\x4a\x40\x68\x4f\x92\xb7\xb0\x88\x3a\xe7\xcc\ -\x71\x75\x4e\x23\x70\x83\xe7\xce\x74\x23\xea\xb5\xd6\xc6\xba\xd0\ -\x85\xa8\x8c\x5e\xab\xe2\xe2\x2c\x87\x92\xbc\xc5\x80\xd3\x31\x1d\ -\xb8\x95\xdd\x02\xf7\x02\x38\xa3\xfe\x24\x40\x61\x53\x65\xc2\x18\ -\x15\x4e\xfc\x15\xcb\xa4\x32\xd6\x77\x5b\xb7\x97\xf0\x27\xc9\x5b\ -\x14\x3c\x3d\x73\xda\x18\x23\xfb\x67\x50\x9f\x19\x42\x14\x10\x51\ -\xc9\xb8\xf7\xd6\x48\xff\x46\x1c\x2a\xc9\x65\x41\xc1\x13\x8e\x43\ -\x2d\x79\x2d\xa0\x88\x9a\x54\x42\xaa\x5d\x68\x23\x0a\x65\x14\x85\ -\x4c\x91\xcc\xc5\x40\xd4\x73\xc6\xd3\x7a\xdc\xde\xbd\x96\x3a\x8a\ -\x4b\x99\x16\x50\x4c\x39\x53\x21\x38\x75\x9c\xf2\x84\x64\x53\xa9\ -\x08\x51\x14\x44\x01\xd9\x94\xdc\x17\x94\xf8\x82\x97\xcc\x08\xae\ -\x94\xef\x5f\x95\x52\xc2\x05\x07\x51\x50\x55\x2a\xc8\xe2\x45\xb1\ -\x78\xa1\xa2\xba\x96\x7c\x52\x14\x7b\x17\x4a\xec\xea\xe8\xc1\x74\ -\xac\xd7\x25\x44\xa1\xa3\x0c\x3e\x41\x63\x34\x0f\xfd\x2b\x52\x41\ -\xd6\x2e\x0a\xa2\x51\xc1\xc6\xa3\xb6\xbb\x74\xe1\x42\x45\x6a\x29\ -\xce\x00\x5b\xcd\xc9\x99\x51\x4a\xca\xf6\x1a\x42\xc9\xb4\x12\xda\ -\xf4\x2e\x77\x49\x8b\x62\xa0\x19\xad\x22\x2d\xd4\x51\x81\x42\x5f\ -\x5a\x94\x56\x85\x82\x02\xaa\x58\x10\x82\xb7\x2b\xff\x14\xb3\xde\ -\x2a\xdf\xbb\xc4\x0d\x64\x13\x61\xc0\x69\x53\xed\x9f\xec\xdf\x69\ -\xa9\x15\x28\xe9\x4f\x48\x44\x7d\xc2\x47\x71\xd7\x5e\x4a\x08\xc5\ -\xa1\xb4\x34\x14\x07\x4f\x38\x16\xb5\x24\x73\x61\x65\xae\x64\x32\ -\x5a\x44\x27\xab\xcf\xa0\x6c\xa2\x94\x1b\xa5\x80\x2e\x06\xa2\x8e\ -\x69\x23\x04\x40\xa8\x28\xa5\x46\x3b\x9a\x0b\x11\xa4\xd0\x45\x63\ -\x60\x4c\x2a\x15\x01\x8a\x02\x28\x18\x8f\x12\x87\xe2\x84\x16\xbe\ -\xd9\x33\xe3\xc2\xbc\x28\x19\x46\x18\x88\x42\xaa\x51\x41\xee\x0b\ -\x8a\x69\x04\x15\xce\xb5\x99\x22\xb1\x8b\x01\x28\x94\xd8\xd5\x54\ -\xd9\x89\x14\x61\xf0\xcc\x71\xdb\xff\x6a\xb4\x94\x15\x25\x40\x11\ -\x00\x75\x11\x1b\x61\x8e\x97\x7e\xf6\x98\x16\x25\xb1\x0b\xeb\xbe\ -\x84\x10\xbc\xe1\xea\x8d\x30\x0d\xb4\x44\x02\x09\x51\x95\x9a\x68\ -\x78\x80\x65\xa3\x3e\x33\x64\xec\x02\x77\xd2\x50\x82\x07\x65\x4f\ -\x5b\x2f\x68\xc7\x03\x07\xd0\xa5\xd1\x36\xa2\x1a\x23\x14\x4c\xa1\ -\xea\x3a\x37\xeb\x5e\x88\x53\x31\x50\x05\xf3\x62\xa2\x5b\x4a\x7c\ -\x8a\xc2\xa7\x80\x6d\x18\x32\x47\x01\x41\x8c\x1a\x6c\x30\xcf\x94\ -\x6a\xea\x71\xd6\x48\x40\x3a\xa6\xd1\xe6\xa5\x68\x03\x46\xff\x1b\ -\x28\xa3\x77\x6b\x20\x91\x3a\x85\x44\x35\xe3\x2c\x42\xe4\x44\x44\ -\xf6\x18\x57\xb0\xe2\xfa\x64\x22\x51\x0c\xe9\x9a\x1a\x8f\x6d\x4c\ -\x24\x12\xbf\xb0\x61\x24\x2f\xa4\x08\xaa\xbd\x84\x5f\x33\x23\xb5\ -\x16\x5d\x9e\x8c\x60\x5c\x49\x21\x54\x27\xa6\x4e\x08\x69\x8f\xc2\ -\x4f\xad\x66\x72\xb4\xb1\x0b\x0a\x9e\x8e\x05\x6d\x83\xee\xb2\x91\ -\x2e\xc1\x33\x75\x93\xa3\xea\x40\xd8\x8c\xa9\x88\xd0\x71\xab\xdb\ -\x9e\xe9\x37\xba\x55\x5d\xc4\xa1\x51\x93\xd2\x1a\x18\x0c\x40\x03\ -\xb3\xc6\xcb\xce\x42\x95\xcb\x58\xd4\x53\x94\x17\xdc\x33\x75\xd1\ -\x2f\xb5\xb6\x9d\x8c\x01\xe2\x51\x49\x45\x0d\x48\x80\x82\xf1\xa8\ -\xcd\xa8\xc3\x06\x2c\xa4\x81\x79\x67\x75\xbb\x3a\x10\xca\x30\xda\ -\xe4\xd6\x28\x20\xf8\xf6\x90\x7a\xc1\x54\x44\x34\x74\xf5\x7d\xbc\ -\x54\x91\x06\x6a\x58\x0f\x1e\x65\x88\x10\x38\xe5\x4e\x5b\x3f\x82\ -\xf0\x69\x6a\x29\x47\x61\x7b\x0c\x44\xe1\xd8\x34\xb9\x30\x14\x65\ -\x40\x88\x32\x80\x4a\x5e\x41\x16\x12\x8e\x85\x04\x14\x0a\xb4\xe4\ -\xc4\xc0\x2f\x88\x09\xdc\x1b\xd5\x4a\xc1\x58\xcd\x64\x74\x4a\x79\ -\xff\xb1\xc0\x90\x71\xd2\xa5\x18\xb1\x23\x1b\x98\x0a\xdc\x0a\x88\ -\x60\xa0\xa0\xb4\x1a\x4a\x38\x50\x46\x1d\xab\x84\xe9\x4a\x94\x5e\ -\x1e\x0e\xa4\xb5\x88\x28\xaa\x54\x30\xc1\x85\x0f\x5d\xa9\xd2\x1e\ -\x82\x0d\x24\x7b\x31\xd4\x29\x94\x7d\xb4\xab\xe4\xa5\xfc\x1a\x02\ -\xab\x5a\xc7\xac\x0b\xaa\x73\xf3\x90\x4b\xad\x5e\x0a\x21\xe1\x30\ -\x2a\x5c\x0e\x3c\xd5\xa9\x50\x8a\x0d\x65\x99\xa9\x61\x21\xfa\x32\ -\xae\x7f\x95\x4a\x35\xf7\x58\x90\x02\x39\x33\xdb\x72\x5e\xf2\x67\ -\x80\x57\x52\x38\xcf\xb9\x6f\x2f\x4c\x84\x52\xa8\x8d\xed\x2b\xa9\ -\x66\x05\x03\x54\x28\x87\x66\x57\xa4\x4d\x71\xfc\x6b\xaa\xfe\xdc\ -\x56\xf4\x12\xb3\x5e\xd7\xbe\x5c\xa9\xaa\x97\x9c\xd4\x2b\xdb\x98\ -\x4b\x29\x5a\x44\x0c\xbb\x46\x26\x82\x10\x55\xa7\xd3\x6d\x36\x85\ -\xda\xb7\xb4\x2e\x1b\x24\x85\x8a\x81\x29\xd8\x2e\x31\x4d\xe5\x20\ -\xe5\x51\x31\xf6\x89\x81\x92\xbd\x8d\x4b\x43\x8c\x8a\x81\x29\xdc\ -\xfe\x5c\x9e\xfc\x19\x78\xf1\x2b\x59\x88\x8e\xaa\xf7\xed\x92\x50\ -\x28\x56\x95\x14\xcd\x47\xc3\x14\x8e\x55\x53\xf0\x97\xfc\x19\x14\ -\x7f\xc6\x30\x2e\xb9\x08\x00\x0d\xe9\x68\xcf\x4b\x34\x50\x41\x95\ -\xaa\xa0\x0a\x25\x1c\x5b\x09\x2c\x9c\x64\x69\x2f\x53\x24\xeb\x17\ -\x4a\xfa\x36\x81\x5f\x52\xa9\x28\xa1\x07\xa8\x8e\x2b\x75\x2b\x66\ -\x62\x54\x1c\x50\x2d\x93\xce\x08\x05\xb3\xc5\x1e\x75\x7a\xc5\xca\ -\xd0\x40\xb7\x05\x0d\x94\x7a\x83\xe5\x57\xcd\xa2\xa4\x8d\xaf\x56\ -\x4d\x8b\xd7\xcc\x05\xef\x3a\x3b\x83\x26\x16\xf7\xc6\x79\xd3\x85\ -\xab\xf0\xce\x4b\x11\xbe\x65\x2a\x71\x52\xac\xd7\x95\x4e\xdd\xa5\ -\xc9\x29\xac\x8f\xd0\xcf\x0c\x2e\xac\x4f\xeb\xdd\x70\x00\x85\x0b\ -\x3f\x28\x2a\x11\xc5\x71\x54\xa1\xd2\xa9\x75\x8a\x9c\x20\xc5\x80\ -\x14\xca\x4d\x6d\x32\xe4\x84\x29\x42\x67\x66\x30\xc9\xdb\x64\xc8\ -\xc9\x95\xc1\xc0\x14\x2e\x46\xd8\xb8\xa8\x64\x23\x5d\x55\x8e\xa6\ -\xc9\x90\x13\xab\x5e\x55\x36\x75\xd3\x63\x87\xe2\x0e\x18\xee\x8c\ -\x63\x46\x71\x0e\x10\xce\x97\x54\xf6\x80\x04\x29\xa8\x4e\x4d\x09\ -\x72\x2a\x3b\xc3\x30\x95\xa0\x22\x49\x29\xea\x4b\x09\x1a\x0c\x44\ -\x81\x64\x6f\x13\xf1\xa5\x2a\x16\x8c\xb8\x03\x54\x26\xb5\x49\x8f\ -\x93\x3e\xc5\xc0\xd4\x33\xe7\x75\xf0\x20\x05\x67\x75\x76\x9c\x60\ -\xc5\xd8\x69\x06\x2e\xe1\xb6\xcd\x8e\x13\xae\x38\xbb\x42\x41\x31\ -\x6c\x93\x1f\xa7\x02\xfd\x6b\xca\xa3\xee\xd2\xe3\x14\xd3\x07\xee\ -\xa2\x64\x94\x92\x27\x8d\xb1\x04\x13\x29\x51\xd3\x7b\xea\x2d\x50\ -\x2e\x15\x07\xd0\xd4\x9f\xdb\x2a\x0f\xe1\xd4\x50\xc5\x03\x4e\x07\ -\x25\xc9\xb4\x12\xda\xf4\x1f\xcc\x8f\xa2\x97\xd6\xd0\x60\x20\xaa\ -\x59\xd0\xa9\x1d\x2c\x4c\x76\x9c\xc2\x83\xa0\x82\x57\x32\x19\xc5\ -\xae\x32\x6f\x24\x78\x37\xeb\xc7\x89\x51\x31\x40\xb5\x4c\x04\x2b\ -\xe1\x2a\xb8\x29\x48\x08\xdb\x10\x4b\x18\xa3\xa2\xa8\x7d\x23\x56\ -\xad\xb3\xe3\x94\x1c\xc7\x80\x14\x8e\x51\x53\x6e\x9c\xec\x5e\x0c\ -\x57\xc6\x33\xc7\x2d\x40\x24\x3f\x05\x92\x28\xe1\x86\x81\x28\xa8\ -\x3a\xad\xb7\x14\x22\xe9\x8b\x61\x26\x41\x45\x91\x52\xc0\x97\xbc\ -\x19\x0c\x44\x61\x64\x6f\x13\xec\x25\xd9\x8b\x11\x73\x70\x4c\x1b\ -\xd1\xb9\xd7\x6d\x0f\x89\x71\xca\xc9\xe0\xb4\x56\x0f\x56\xf0\xce\ -\x65\xa8\xbd\x24\xc6\x29\x82\x0f\xbc\x55\x94\x72\xce\xb6\x51\x35\ -\x11\x55\x29\x4c\x00\xcc\x8b\x13\xae\xb0\xdd\xd5\x95\xe0\x41\xb5\ -\x17\x8d\x83\x71\x6b\x93\x15\x27\x4c\xaf\x29\xe8\xbb\xcb\x8a\x53\ -\x43\x96\x2b\xda\x08\x21\x75\x56\xa7\xa2\x24\x14\x44\xe1\xf6\x40\ -\x50\xb4\x3f\x35\xd2\x0e\x60\x40\x7b\x6a\xa6\x80\xaf\x26\x27\x15\ -\x05\x52\xcb\xa4\x32\xd6\xc3\x6c\x16\x45\x86\x2f\x2c\xa8\x3a\xc2\ -\x60\xbc\x91\x6d\xd9\x0b\xc4\xa7\x75\x77\x07\xca\xa0\xa2\x40\x0a\ -\xc6\xa7\xa9\x7e\x85\xfa\x3b\xa0\x84\x93\xa0\x6c\xa4\xcd\x7e\xc6\ -\xb4\xc8\x0d\x07\x55\xb0\x7d\x52\x9b\x68\x12\x31\x2b\xf4\xa2\x28\ -\x6b\x84\x95\x5a\xbe\x0d\xb3\xd6\x25\x2c\x8a\x9c\x54\x14\x4c\xc1\ -\x58\xb5\xee\xef\x40\xa0\xa2\x44\x1e\x20\xe5\x6f\x5d\xf2\x40\xc9\ -\x37\x14\xbd\x0a\x14\x23\xb4\xd4\x0c\x0b\x2b\xfa\x00\xb9\xfb\xb8\ -\xc8\x38\xc5\xf2\x51\x40\x85\xdd\x7f\x3c\x73\x14\xfc\x45\x2a\x67\ -\x01\xdc\x80\x3c\xfd\x9f\xdc\x1a\x48\x58\x03\xf3\xce\xea\x76\x81\ -\x28\xf4\x0e\xe4\x92\x6a\xb9\xd1\x56\xbc\x49\x13\x75\x6b\xdf\x56\ -\x70\xb2\x96\x52\x0c\x82\x5c\x1b\x04\x66\x85\xdd\x57\x3e\xb1\x2b\ -\xa1\x0a\xba\x94\xc6\x0b\x29\x82\xd2\x6f\x63\x05\x6f\x0c\x26\x13\ -\x0d\x61\xb2\x98\x60\xbb\x9d\x39\xed\x82\xb5\xea\x6d\x44\x70\x63\ -\x31\xd5\x6c\x4b\xb0\x22\xc0\x0a\x64\x08\xef\xab\x45\x3d\x99\xc2\ -\xd7\x54\x84\xb6\x2b\x2d\xd4\x94\x3b\x07\x66\x58\xa5\x8d\xd7\xca\ -\x9f\x30\xac\x50\x4e\x9f\xa9\x03\x76\x52\x79\xc9\x45\xe7\xee\x51\ -\x5a\x88\x28\x00\xcc\x59\x60\x49\xfe\x62\xc0\xf9\xcd\xb2\xee\x4b\ -\xe0\xcc\x3c\x05\x0c\x61\x3b\x9d\xf9\x10\xc1\x39\x09\x18\x7a\x66\ -\xf4\x71\xf3\xf5\x5e\xf0\x94\xe4\xa4\x62\xc0\xe9\xd2\x2a\x1b\xe9\ -\x65\x77\x89\xfe\x45\xfc\x69\xc9\x30\xc2\x90\xb8\xce\x30\xcb\xbd\ -\x3c\xd3\xe3\xf7\x02\x44\x53\x7c\x90\x5c\x53\x0c\x44\x65\x6a\x18\ -\x7a\xe4\xd9\xf4\xa5\x42\x53\x8e\x9c\xd4\x28\x86\xdc\xd5\xa9\xd7\ -\x83\xee\x5f\xee\x52\xb8\x17\x0b\x51\x97\xf6\xb5\xe0\x5d\x81\x86\ -\x8b\xb9\xd4\x52\xc5\x03\x70\x04\xdf\x58\x2f\xa4\x69\x75\xf5\x05\ -\xf3\x45\x25\xc9\x5c\x0c\x38\x01\x7d\x51\x12\xb9\xc0\xeb\x8b\xa3\ -\xfd\xa3\x79\x3b\xb8\x00\xe4\x8b\x86\xcc\x11\x83\x22\xe0\x09\xe8\ -\x8c\x7a\xca\x96\x02\x17\x36\x08\xc9\xb5\x77\xf2\x6d\x38\x94\x3c\ -\x51\x14\x38\x41\xa3\x45\x64\xe2\x02\xb7\xd3\x89\xd0\xb8\xf6\xc6\ -\x15\x60\x36\x51\xbd\x4c\x86\x02\x80\x08\x90\x82\x86\x8b\x28\x5a\ -\x04\x9c\xec\xb6\x51\xbe\xea\x93\x2a\x06\x28\x2e\x95\xb4\xec\x14\ -\x05\x50\x38\x1e\xa5\x2e\x0e\x28\xb1\x05\xd0\xac\x0b\xad\x60\xc3\ -\x40\x14\x36\xeb\x42\x01\x23\x0c\x6b\x17\x2a\xa0\x6b\xc9\x2e\x42\ -\x31\x75\xa1\xa4\xae\xa6\xce\xda\x48\x11\x06\xc8\xbc\x28\x99\xba\ -\x18\x88\x82\xe6\x45\x39\x55\x75\x02\xaf\x1a\x96\x41\x04\xdd\xd6\ -\xa3\x40\x61\x5d\xad\x48\x8f\x62\xe0\x09\x99\x78\x71\xb4\xa4\xf4\ -\x2d\x96\x94\x9e\xae\xeb\x07\x8a\x18\x51\x5d\x27\x0a\xa0\x70\xee\ -\xa8\xa5\xad\xe0\x91\xa4\x2e\x90\x65\x54\x17\xea\x92\x22\x45\x81\ -\x14\xca\x7d\xd9\xd6\xea\x92\x0f\x83\x21\x7b\xe1\x82\xbb\x22\xf5\ -\x68\x20\x48\xdf\x1e\x52\x9f\x76\x0d\xf7\xbc\x7b\xc3\xa7\xcb\xcb\ -\x75\x49\xfc\xa2\xec\x73\x0a\xb7\x73\x78\xb3\xdc\x9b\xec\x24\xd8\ -\xc6\x9f\xdc\x7b\x6b\x64\xbb\xcc\x13\x0e\xd5\x7a\xf7\x5a\x5a\xe7\ -\x0d\xbb\xa8\x49\x5b\xab\x5d\x38\x5d\xe7\x0d\xb4\xe1\x9e\xa4\x5a\ -\x32\x24\x48\x41\xa5\x6f\x6a\xe5\x4a\x96\x12\x86\x52\x05\xe2\xd4\ -\xa6\xd3\x06\x65\xd9\x60\xd7\xaa\x39\xe7\x8c\x3d\xc9\x83\x43\xed\ -\x34\xbd\xd9\xee\x94\xf8\x14\x03\x54\xa8\x4d\x89\x9b\xdd\x4e\xc9\ -\x4a\x02\x8d\x27\xb1\xd4\x2b\x30\xd8\xb6\xec\x85\xc1\xb4\xd9\x13\ -\x93\x42\x49\xb0\xda\x54\x2b\xeb\xfd\x49\x62\x46\x33\x13\x02\xb7\ -\x5d\xea\xb4\x97\xbd\x81\x28\xf0\x00\xdc\xa2\xc1\x49\x1b\xcd\xa1\ -\x13\x85\xaa\x04\x57\xaa\x2b\x3d\xd3\xc7\xde\x14\x54\x01\x7a\x5d\ -\x71\x07\xa5\xa2\x9b\x4a\x69\x54\x48\x50\x39\x53\x21\x38\x75\x5c\ -\xa5\x02\x69\xfb\x36\x12\xd8\x10\xaf\xa2\x18\xbf\x50\xbc\xda\xf4\ -\x6f\xa5\xe5\xc3\x38\xa8\x82\x85\x1e\xfc\xa6\x77\x2b\x79\x35\x90\ -\xb0\x66\x9c\x45\x90\x9c\x70\xa6\x9d\x7e\x8b\x80\x4b\xe3\xbb\xab\ -\x59\x2e\x00\x56\x2a\xda\x73\x0f\x11\x55\xc9\xb4\xe3\x81\x03\xa8\ -\xd6\x64\x06\x5b\xe2\x56\x14\x33\xf8\x9b\xa5\x84\x17\xa7\x6a\x68\ -\xa1\x05\x0e\xaa\x90\xaa\x55\xd4\x1b\x7a\x91\x21\x8c\x61\x32\x41\ -\x71\x6b\x93\xae\xb1\x64\x08\xe3\x78\xad\x30\x81\xe0\x26\x5f\xe3\ -\x28\xb1\x8a\x02\xaa\x8b\xf8\x08\x73\x5c\x4c\xd6\x6b\xce\x46\x92\ -\xc5\x04\x6b\x09\x4b\x26\x94\xb2\xc7\x61\x87\x04\xac\x65\x52\x19\ -\xeb\xbb\x76\x55\xec\x21\x71\x43\x2b\x30\xae\xab\xbe\x25\xd4\x5b\ -\x04\x11\xa4\xd7\x53\x85\x56\x47\xf8\xa9\x5c\xf4\xba\x8a\x5b\x64\ -\x0a\x05\x07\x72\x57\xaf\xaa\xb8\xc5\xd6\x16\x30\x31\xea\x15\x15\ -\x16\x36\x29\x1b\x4d\xf1\x07\x14\x50\xe1\xe2\x0f\x4d\xce\xc6\x10\ -\xb3\x5e\x53\xbc\xb0\xc9\xd8\xd0\xee\x98\xd7\x15\xda\xdf\xd4\x2d\ -\x59\xe2\x55\x0c\xaf\x06\x2c\x0f\xd7\x64\x6c\x2c\x99\xc0\x28\xbe\ -\x2a\xa8\x66\x4d\x29\x1b\x6a\x1a\x70\x5d\xab\x56\x53\xb4\x50\x52\ -\x60\x09\x03\x53\xc0\x52\x88\x94\x86\xe3\xa4\x58\x31\xa2\x10\x60\ -\x09\x9b\x26\x0f\x47\x05\x2e\x38\xa8\x02\x15\xa3\xed\xb2\x70\xd4\ -\x1d\x16\x65\xf1\x14\x14\xae\x4d\x12\x4e\x90\x15\x7c\x55\x49\xb8\ -\x46\xb1\x3a\x93\x9c\x1c\x02\x16\x92\x5b\x15\x0b\x42\xf0\x56\xca\ -\xdc\x44\xef\x26\xe9\xd6\xde\xb9\x55\x51\x1c\x18\x01\x4e\x2b\x53\ -\x7f\x25\x6d\x20\x32\xab\x9a\xcc\x24\x58\x44\x1d\x93\xde\x7b\xd7\ -\x5e\xb9\x2a\x98\x70\xd6\xc8\xd0\xbf\xf1\x4b\x05\x68\x38\x88\x2a\ -\x66\xbd\x55\xbe\xbb\x5b\xe1\xa5\x96\xaf\xa1\xc6\xbf\xb0\xa0\x9a\ -\xb4\x92\x3c\xd8\xf6\x96\x8b\x50\x92\xb7\xde\xd1\x8d\x8c\x5e\x14\ -\x4c\x61\xfb\xda\x71\xea\x97\x85\x61\x22\x01\x76\x40\xa3\x3e\xb1\ -\x28\x88\x02\x37\x40\x93\x14\xf5\xc5\x90\xbe\x60\xae\xa9\xcd\x14\ -\x27\x85\x8a\xa2\x50\x01\x7b\xda\x51\xab\x2c\x70\x48\x95\xf0\xda\ -\xb5\x8b\x1e\xce\x47\x7b\x2f\xe9\xc0\x13\xea\x6e\xce\x24\x77\x31\ -\x10\x75\x4c\x68\xaf\x3a\xab\x7e\x2f\x6b\xaa\xe4\x33\x43\x45\xbf\ -\xd0\xa0\x6a\x26\xbd\x55\x27\x5b\x19\x47\x78\xb4\x0d\xba\xff\xfe\ -\x67\xc9\x8f\x51\x04\x2a\x06\xa7\x5a\xcb\xbc\xe7\xce\x40\x08\x5f\ -\x41\xc5\x0e\x48\xe2\x97\x33\x15\xa1\x0b\x30\xe2\x37\xf9\xa8\x94\ -\x15\x47\x10\xc0\x4e\x32\x2e\x74\x34\x63\x01\x60\x0d\xdb\x9e\x1e\ -\x04\x2c\x02\xb0\x86\x69\xe5\x78\xe8\x8a\xe6\x5f\x06\x6c\x9d\x18\ -\xcf\x68\xe5\x1b\x4a\x5e\xdc\x33\x9b\x5e\xfd\x87\x09\xd3\xc2\x0b\ -\x5a\x47\x8e\x90\x76\x03\x83\xb4\x5e\x75\x4c\x0d\x28\x71\x22\x4a\ -\x70\xd9\xf1\xba\x01\xa5\xa2\xa8\x12\x0a\xac\x90\x29\xf2\x50\xfb\ -\xac\xe4\xdc\x20\x64\x6a\xe0\x36\xc0\x48\xf6\xaf\x24\x19\x8c\x01\ -\x2a\x28\xaf\xa6\x05\x52\xb4\x4e\x15\x29\x03\x07\x65\x31\xd5\xed\ -\x27\x89\x59\x51\x34\x2b\x5c\x1f\xf6\xe4\xaf\x4a\xaa\x69\xb9\x2a\ -\x33\x78\x57\x9e\xef\xc8\x60\x42\x89\x2e\x01\x45\x83\x9b\xfc\xaa\ -\xa4\x5a\x51\x14\x50\x61\x72\xe6\xdb\x04\x2b\xa5\x58\x71\x52\xac\ -\x8a\x69\xe3\x65\x67\x75\x4b\x1f\xd9\x38\x47\xa1\x08\x14\x58\x81\ -\x92\xac\xfb\x7c\x1c\xf5\x7f\x00\xb7\x99\xbc\x16\x52\x9d\xee\x48\ -\xc4\x55\x50\xae\xbb\x6c\xf4\x82\xbd\xe8\x43\xe6\xa8\x10\x18\x07\ -\x52\xcf\xbc\x95\xe1\x8c\xc3\x7a\x01\xa4\x89\x59\x25\x05\x21\xa0\ -\xe5\x6f\x64\x47\x13\xda\xab\xa5\xbe\x55\x33\x7a\x11\x97\xaa\xcc\ -\x06\x12\xbd\x18\x98\x46\xaf\x46\x3a\xed\x5c\x77\x69\xf7\x85\x7c\ -\x1a\xc8\x57\x45\xe2\x54\xcd\xac\x74\xe6\x4c\x20\xf8\x02\x54\x2d\ -\xd9\xbe\x48\x7c\xaa\x18\x0f\x5e\x9d\x59\xd4\x78\x11\x9f\xa6\x00\ -\x30\x05\x1f\xfa\xc2\xf4\x66\x74\xbf\x79\x73\x08\xed\x86\xa6\x0d\ -\x49\x38\x9f\x4c\xee\xee\xce\x93\xa4\x78\x2a\x96\xe5\x74\xba\x23\ -\xc9\x5d\xfd\x3a\x43\x92\x5f\xfe\xa0\xbb\x9f\xda\x61\xbd\x9d\x08\ -\xc6\x1f\xf8\x4d\x9b\x89\x13\x5d\xb0\x3a\xe3\xb0\x1f\xd8\x4e\xb7\ -\xd3\x91\x38\x3f\xa5\x60\x2a\xbd\xf6\x66\xe0\x6b\xd7\x99\x55\x3c\ -\x75\x2f\x3f\xaa\xba\x75\x8d\x96\xe9\xa5\xf6\x14\xfc\x06\xe1\xf2\ -\x7c\xaa\xdf\x19\xe1\x0e\x92\x27\xbf\x91\x74\x86\x59\x58\xaa\x59\ -\xeb\xf9\xbb\xa3\xda\x41\x31\xdd\x6f\xa4\x5b\x88\x2e\x86\x3d\x6c\ -\x66\xf5\xfd\x4c\xb9\x83\xdc\x4e\x3f\x93\x8e\x5f\xfb\x64\xbb\x9c\ -\x4d\xbb\xa6\x5b\x7f\x64\x7b\x87\x2a\xe1\x72\x0e\xed\x52\x0a\x42\ -\x32\xdf\x13\xd5\xee\xa6\x77\x96\xbf\xc7\xc9\x76\x31\xe1\x5a\xdc\ -\xd9\x23\xcd\xf2\xbb\x3c\xbc\x4b\x9a\x65\x17\x9b\x20\x5d\x0c\xda\ -\x23\xe5\xde\x27\x8f\xf2\xcb\x55\x41\x17\x97\x7a\x66\xea\x83\xd7\ -\xce\xaa\xfa\x20\x3c\xdc\x0f\xaf\x7e\x2f\x94\x8b\x1a\xf5\xc0\x6d\ -\xec\x91\x65\xfb\x26\x60\x32\x48\xde\x1f\x01\xb9\x82\x60\xdb\xd3\ -\x83\xd7\x48\x3b\x71\x10\x55\xec\x87\x69\xbf\x17\xba\x1d\x26\x38\ -\x7b\x64\xd9\xbe\xc9\xa7\xb5\x31\xef\x8f\x7c\xfc\x72\xe2\x75\x1a\ -\xc4\x8e\xf1\xe3\xda\xce\x6b\x24\x9e\x38\x6a\x22\xd1\x93\x59\xfc\ -\x9d\x50\xae\x56\xb5\x20\xba\xb6\x6f\x0a\xde\x4e\xa6\xca\xbc\x3b\ -\x1b\x39\x79\x64\xbd\x87\xe9\x4e\xe9\x79\xa5\xa4\xcb\x02\x90\xd2\ -\xe8\x99\x80\xde\xe7\xf9\xfb\xe3\x5e\x7e\xb4\x0f\x5f\x9f\xa6\xde\ -\xe1\x7c\xbc\x46\xca\xd5\xce\xd9\xe5\x53\xaf\xcd\xb6\xd7\x4f\xb6\ -\x5a\x5d\x1c\xa4\x69\xfb\xe4\xd9\xfe\xa8\x97\xa4\xdd\xbb\x94\x77\ -\x89\x7c\x30\xce\x59\xcf\x02\xef\xee\x8e\xbf\x43\x27\xe3\x62\x23\ -\xaf\x8b\x74\xbf\x32\xce\xbe\x2e\x5e\x76\x24\x7b\x59\xcc\xc7\xab\ -\x78\xcb\x91\x6c\x0f\x55\xb1\x2a\xaa\xa7\x62\xd8\x26\x67\xb9\x5c\ -\x67\xf5\xfb\xf8\xa0\xd5\x22\x9f\x7f\xac\x8f\x3c\xd7\xb7\x79\x74\ -\x68\x35\xfb\xb9\x18\xa7\x98\x62\x9d\xa5\x16\xe1\xe1\xe5\x63\xca\ -\x3f\x67\xcd\x13\x8d\xf9\x3f\x36\xa7\xdd\xe5\x8b\xd9\xfc\x75\xbc\ -\xca\x97\xab\x2c\xfe\xe2\xec\xee\xe3\xbc\x58\x47\xfa\x66\xe9\x46\ -\x66\xcb\xfb\x31\x8f\x17\x3e\x97\xd5\xf4\xe8\xc0\x36\xcc\xd8\x85\ -\xea\x06\xc3\x43\x1c\x1a\x00\x45\x63\xc0\x59\x27\x0f\x89\x28\x38\ -\x33\xdc\xd9\x83\x26\x53\x4d\xa9\x9e\x74\x4a\x1b\x79\x04\x5c\xa2\ -\x95\x16\xca\x0e\x3f\xdf\xac\xe3\xdd\x2c\xb7\x63\x91\x3a\xe5\x74\ -\xf6\x10\xff\x8d\xab\x32\x51\x29\x3d\xe8\x70\x3f\x5a\x5f\x9b\x2e\ -\x88\x17\xb7\x1a\xe7\x9c\xfe\xfa\x99\xdf\x6f\x21\x90\x88\xab\x65\ -\xb3\xd2\xcd\x05\xdd\x22\x6e\x5a\x21\x73\x8e\xbc\xe7\x48\xf2\xf9\ -\xff\xfe\xf7\x66\x54\xdf\xe5\xe7\xf8\x37\x3e\x69\x9a\x20\x75\x8a\ -\xfe\x66\xb4\x7a\x8a\x7f\xfe\x1f\x17\xb6\xc9\x26\ -\x00\x00\x0e\x79\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x73\x6d\x5f\x61\ -\x64\x64\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ -\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ -\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ -\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x2d\x37\x32\x2e\x39\x38\x31\x36\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x34\ -\x37\x2e\x30\x36\x32\x39\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ -\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ -\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ -\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ -\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ -\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ -\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ -\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x36\x30\x30\ -\x38\x39\x32\x34\x31\x2c\x30\x2e\x37\x39\x39\x33\x32\x39\x39\x31\ -\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x39\x2e\x38\x39\x33\x32\x36\x35\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x36\x31\x36\x38\x33\x38\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x31\x34\ -\x2e\x36\x37\x38\x39\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x31\x2e\x38\x34\x36\x31\x39\x30\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x35\x2e\ -\x33\x38\x38\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x35\x35\x2e\x35\x31\x36\x38\x34\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x36\x65\x36\x65\x36\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ -\x34\x30\x33\x30\x37\x30\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x63\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x36\ -\x39\x35\x32\x36\x35\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x32\x37\x2e\x31\x37\x34\x30\x34\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x33\x35\x2e\x34\x31\x31\x33\x37\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x31\x33\x2e\x36\x37\x32\x34\x38\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x35\x34\x30\x36\ -\x39\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ -\x33\x2e\x32\x33\x38\x37\x36\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x79\x3d\x22\x35\x2e\x33\x35\x37\x37\x36\x34\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\ -\x2e\x35\x34\x33\x31\x30\x33\x31\x33\x2c\x30\x2e\x38\x33\x39\x36\ -\x36\x36\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ -\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ -\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\ -\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\ -\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\ -\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\ -\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\ -\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\ -\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\x74\ -\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\ -\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\ -\x31\x2e\x34\x33\x30\x32\x31\x38\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x32\x33\x2e\x34\x38\x31\x39\x39\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\ -\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\ -\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\x39\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\ -\x2e\x34\x33\x30\x32\x31\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x32\x33\x2e\x34\x38\x31\x39\x39\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\ -\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\ -\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x73\x69\x7a\x65\x3a\x31\x34\x2e\x36\x36\x36\x36\x36\x36\x39\ -\x38\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ -\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ -\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\ -\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x27\x73\x61\x6e\x73\x2d\x73\ -\x65\x72\x69\x66\x2c\x20\x42\x6f\x6c\x64\x27\x3b\x66\x6f\x6e\x74\ -\x2d\x76\x61\x72\x69\x61\x6e\x74\x2d\x6c\x69\x67\x61\x74\x75\x72\ -\x65\x73\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\ -\x61\x72\x69\x61\x6e\x74\x2d\x63\x61\x70\x73\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x2d\ -\x6e\x75\x6d\x65\x72\x69\x63\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ -\x6f\x6e\x74\x2d\x66\x65\x61\x74\x75\x72\x65\x2d\x73\x65\x74\x74\ -\x69\x6e\x67\x73\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\ -\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x77\x72\x69\ -\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\ -\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x32\x22\x3e\x4f\x53\x4d\x3c\x2f\x74\x73\x70\x61\ -\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ -\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x07\x3b\ -\x00\ -\x00\x21\x2e\x78\x9c\xdd\x59\x5b\x8f\xdb\xb8\x15\x7e\x9f\x5f\xc1\ -\x3a\x2f\x09\x6a\x49\xbc\xe8\x46\xc5\x9e\x7d\xd8\x60\xbb\x0b\xb4\ -\x28\xd0\x4d\xda\xc7\x40\x96\x38\xb6\x1a\x5d\x5c\x4a\x1a\xdb\xf9\ -\xf5\x3d\xa4\x24\x4a\xf2\xa5\x98\x60\x92\x74\xb2\x02\x06\x43\x9e\ -\x73\x78\x39\x1f\xcf\x8d\xe6\xea\xa7\x63\x91\xa3\x47\x21\xeb\xac\ -\x2a\xd7\x0b\x62\xe3\x05\x12\x65\x52\xa5\x59\xb9\x5d\x2f\x3e\xbc\ -\xff\xc5\x0a\x17\xa8\x6e\xe2\x32\x8d\xf3\xaa\x14\xeb\x45\x59\x2d\ -\x7e\xba\xbf\x5b\xfd\xc9\xb2\xd0\xcf\x52\xc4\x8d\x48\xd1\x21\x6b\ -\x76\xe8\xb7\xf2\x53\x9d\xc4\x7b\x81\x5e\xef\x9a\x66\x1f\x39\xce\ -\xe1\x70\xb0\xb3\x9e\x68\x57\x72\xeb\xbc\x41\x96\x75\x7f\x77\xb7\ -\xaa\x1f\xb7\x77\x08\x21\x58\xb7\xac\xa3\x34\x59\x2f\xfa\x01\xfb\ -\x56\xe6\x5a\x30\x4d\x1c\x91\x8b\x42\x94\x4d\xed\x10\x9b\x38\x8b\ -\x51\x3c\x19\xc5\x13\xb5\x7a\xf6\x28\x92\xaa\x28\xaa\xb2\xd6\x23\ -\xcb\xfa\xd5\x44\x58\xa6\x0f\x46\x5a\xed\xe6\xc0\xb4\x10\xe1\x9c\ -\x3b\x98\x3a\x94\x5a\x20\x61\xd5\xa7\xb2\x89\x8f\xd6\x7c\x28\xec\ -\xf1\xda\x50\x8a\x31\x76\x80\x37\x4a\x3e\x4d\x2a\x3a\xe6\x00\xc5\ -\xcd\xcd\x68\xee\x74\x75\x80\x7f\x0f\x7f\x66\xc0\x40\xb0\xeb\xaa\ -\x95\x89\x78\x80\x91\xc2\x2e\x45\xe3\xbc\x7b\xff\xce\x30\x2d\x6c\ -\xa7\x4d\x3a\x99\x66\x40\x7f\xb6\xee\xec\x48\xca\xb8\x10\xf5\x3e\ -\x4e\x44\xed\x0c\x74\x3d\xfe\x90\xa5\xcd\x6e\xbd\x60\xae\x4d\x18\ -\x7c\x9e\x26\xee\x44\xb6\xdd\x35\xe7\xd4\x2c\x5d\x2f\x40\x57\xca\ -\xc3\xae\x3f\x31\x25\xd2\x09\xf4\x13\x47\x86\x83\x6d\x4e\x6d\x82\ -\x24\xf1\x58\xd0\xc9\x0c\x2a\x44\x69\x95\xa8\x3d\xc1\x94\xa2\xc8\ -\xe2\xb6\xa9\x0a\x38\xe3\x24\xc9\xe3\xba\xce\x1e\xb2\x04\x3a\x55\ -\xb9\xcf\xdb\x6d\x56\x7e\x14\xc7\x7d\x25\x9b\x8f\xf5\x5e\x24\x8d\ -\x8c\xf3\x8f\x79\xb6\x91\xb1\x3c\xd9\x03\xf0\x66\xdd\x4e\xd0\x3a\ -\xa6\x7b\x00\xd4\x0f\xae\x32\x4f\x03\xf3\x1e\xb8\xab\x54\x3c\xd4\ -\x4a\xaa\xd3\x4e\xf5\x40\xbd\x8e\x07\x5c\x38\x2c\x11\xcb\xbf\xc8\ -\x38\xcd\xc0\x44\x3b\xb9\x4e\x72\xce\xf1\x38\x68\x77\xdf\xf3\x57\ -\x75\x53\xed\x07\x59\x50\xb8\x39\xe5\x4a\x4b\x20\x5a\x49\x95\x57\ -\x32\x7a\x95\x10\x30\x1b\xfc\x56\x93\x2a\x38\x93\xac\x39\x45\xe4\ -\xed\x62\x1c\x53\x3d\x3c\xd4\x02\xf0\xc7\x13\x9a\x46\x1f\x46\xc0\ -\x5a\x6c\x81\x9c\xa7\xaf\x16\xe2\xcb\xd5\xf0\xb5\xd5\xc8\xf5\xd5\ -\x3c\xb3\xda\xca\x99\xab\xfd\xbf\x51\x1a\x70\x87\x6d\xe4\x70\x70\ -\xeb\x45\x9c\x1f\xe2\x53\x6d\x16\xd1\xae\x10\xed\xa4\x00\xd7\x7d\ -\x75\x05\xcf\xdb\x70\x33\x4c\x03\xc3\xde\xf6\xc4\x0f\x65\xd6\x80\ -\x8f\xb6\xb5\x90\xbf\x2b\x3b\xff\x7b\xf9\xa1\x16\x17\x52\xef\x65\ -\x5c\xd6\xe0\x54\xc5\x7a\x01\xf6\x26\xb3\xe3\x6b\xf0\x25\x1e\xb2\ -\xd0\xc3\xc4\x5d\x42\x1b\x63\xe2\x61\xea\xd1\xe5\xa4\x39\x15\x61\ -\xcc\x06\x47\xf6\x30\x5f\x52\x6e\xb3\xd0\x67\x94\xbe\x19\x55\x22\ -\x80\xa2\x67\xba\x27\xe8\x52\x3a\x72\xe9\x7a\xe1\x8e\x4c\xe8\x31\ -\xdc\x63\xbb\x72\x94\xe9\xe9\x96\x71\x10\xe5\x1d\xe9\x63\x26\x0e\ -\xa3\x7d\x6e\x62\xa3\xd2\x3e\xde\x0a\x7d\xc0\x00\xde\x83\xfe\x7a\ -\xc6\xa6\x92\xa9\x90\x03\xcb\xd7\xdf\x8c\xd5\xdb\x40\x97\x01\xee\ -\xe6\x67\xa5\x66\x35\x7c\x7c\x9d\x5f\xef\xe2\xb4\x3a\x80\x66\xe7\ -\xcc\xcf\x55\x55\x28\xfd\xed\x90\xf9\x38\x64\xe7\xec\xe4\xb8\x5e\ -\x58\xbe\x4d\x3d\x9f\x53\xc2\x2f\xb8\x6a\x43\xbe\x1d\x50\x46\x82\ -\x0b\x5e\x2b\x25\x9c\x9d\x95\xc7\x27\x01\x4a\xe9\x7f\x83\x7d\xd4\ -\xbb\xea\xb0\x95\x0a\x9c\x46\xb6\xe2\x7c\xa4\xe2\x58\x9b\x4d\x75\ -\xbc\xce\x86\x18\xd4\xaa\xe4\x63\xb5\x9d\xf1\xec\x8f\xd3\x59\xdb\ -\x2c\x15\xf5\xf5\x81\x87\xac\x04\x0c\xac\x3e\x78\x12\x66\x20\x3e\ -\x97\x18\x22\x69\x80\xc3\x1b\x12\xc7\xd1\xcd\xcf\x59\xa7\xdb\xac\ -\x22\x3e\x66\x45\xf6\x59\xa4\xa3\xdb\x1a\x91\xba\x8c\xf7\xd6\x36\ -\xaf\x36\x71\xde\xef\xbe\x77\xd4\x19\x2c\x83\x1d\x36\x27\x95\x36\ -\x8e\x27\x45\x9b\xf9\x9c\x22\xb0\xc0\x1f\xcd\xb9\x92\x19\x44\xe3\ -\xe3\x34\x2c\x75\xa4\xd3\x94\xa4\x92\x0c\x54\x14\x47\x6d\x5f\xda\ -\xfa\x82\x73\xde\x69\xca\x1b\x1c\xe0\xd2\xee\x35\xbd\x10\x4d\x9c\ -\xc6\x4d\x3c\x3a\xc1\x40\xa1\x9c\xe3\x41\x33\xc8\xee\xd1\x3f\xde\ -\xfd\x62\x82\x62\x92\x44\xff\xaa\xe4\xa7\x31\x9e\x29\x81\x78\x53\ -\xb5\x70\x14\x26\x50\xab\xf0\x9f\x44\x2a\x18\xc4\xcd\x7d\x56\x80\ -\x69\xab\x54\xfe\x67\xc8\xa8\xe0\x8e\x86\x31\x13\x56\x60\x8d\x93\ -\x76\xd3\x4a\xd1\xa5\xea\xab\xd5\x4d\x9a\x14\x99\x1a\xe4\xfc\xde\ -\x64\x79\xfe\x9b\x5a\x64\x12\xbc\xfb\x49\xb3\x26\x17\x93\x88\xee\ -\xf4\xbb\x1f\x82\xee\x44\xb9\x95\x33\x68\xaf\x7b\xdb\x11\x95\x99\ -\x53\x98\x83\xce\xe3\x8d\x00\x23\xf8\xab\x62\xa2\x0b\xee\x56\x56\ -\xed\xbe\xa8\x52\xd1\x0f\x37\x68\x42\xb8\x36\x47\xd6\x25\x94\x07\ -\xd8\x7d\xd4\x07\x9a\xb7\xaa\x33\x49\x5c\xba\x2b\xdb\x1c\x52\xec\ -\xa3\x28\xab\x34\x85\x5c\x23\xab\x4f\x22\x7a\x85\xb1\x1b\xea\xd4\ -\xa3\xba\x9d\xb7\x44\xa6\xab\x62\x3a\x6c\x23\xaa\xff\xd3\xc6\x52\ -\x4c\xa9\xff\xae\xb2\x32\x02\xdc\x84\x1c\xa8\xba\x93\x83\xc5\x37\ -\x91\x3b\xd0\xd2\x18\x22\x91\x94\xf1\x29\x2a\xa1\x5c\x9d\x52\xbb\ -\x84\x36\xae\x64\xb2\x9e\xcd\xfa\x6f\x66\xe8\x4a\x5d\xc6\xf9\x98\ -\x71\xae\xd6\x44\xea\xbb\x5e\x17\xa9\x6f\xe6\x15\x60\xdf\xdc\x76\ -\x03\xc6\x31\xf3\x85\x45\x7c\xc3\x90\x33\x31\x09\x72\xcc\x66\x50\ -\x1b\xf9\x3c\x1c\x93\xec\x3e\x6e\x76\xd7\xd0\x9f\x68\xa9\x90\xed\ -\x93\xfa\x04\x59\xda\x6d\x8a\xb9\xee\x39\xc4\x9b\xb6\x69\xbe\x16\ -\xc0\xe6\xdc\x8d\x1e\x00\xe1\xdf\x10\x5e\x62\xf4\x4f\x34\x00\x33\ -\x07\x58\x69\x04\xde\x3a\xe2\x30\xa9\x0d\x4a\xd8\x61\x53\x49\x0b\ -\x62\xfc\x63\xdc\xb4\x52\xcc\x62\x89\x89\x09\x60\xa4\xca\x8d\x20\ -\x1c\x27\xc9\x8f\x0e\x95\x01\x69\x69\x5a\xe8\x57\x84\xaf\x41\x16\ -\xbe\x1c\xc8\x88\x0d\x27\x08\xe5\x50\xb8\x3f\x7e\x39\x66\x37\x90\ -\x30\x59\x60\x49\x43\x3b\x44\x3f\x23\x66\xd3\xae\x79\xd1\xb8\x40\ -\x87\x05\x01\xb5\xf0\x93\xf1\xf9\x2a\x36\x43\x02\xcf\x25\x9e\xf7\ -\xd5\x10\x28\x90\x37\x84\xa4\x25\xf3\x6c\x8a\x12\xf0\x23\xcb\xb5\ -\xa9\x06\xe5\x56\xfb\x12\x8a\xd0\xfd\x76\x40\x84\xe2\xd2\x12\xfa\ -\x53\xa3\xdf\xc4\x14\x08\xb3\xc3\x4e\xe7\x5e\x61\x45\xa3\x60\x0a\ -\x04\xdb\x7d\xd7\x30\x10\xf1\x97\x60\x21\x28\x37\x40\x2e\xb9\xed\ -\x0f\x1d\x77\x39\xf8\x39\x0a\x6c\x57\x8f\x58\x1a\x40\x43\xdb\xeb\ -\x64\x60\xfc\x05\xa2\x2e\x66\xc1\x77\x44\x14\x8e\x5e\xef\x8a\xb3\ -\xef\x11\x8e\xae\xa4\xc1\x17\x7a\x04\x16\xfb\xe2\xf8\x67\xe4\x9a\ -\xe1\xa6\x67\x25\x50\xe1\x0b\x69\xe9\x8a\xf4\x4a\x0e\xba\x10\x84\ -\xb4\x6c\x9d\xd7\xa7\x2f\x2e\x70\x8c\x27\xf1\xcc\xc0\x61\x3d\x3d\ -\xc7\xbc\x50\x28\x28\x19\x0c\xef\xb9\x50\xf0\x1f\x1e\x0a\xff\x6b\ -\x59\xc5\x0f\x9f\x59\x19\x7d\x36\x06\x4f\x8f\x3e\x2f\x14\x03\x15\ -\x9a\x9f\x89\xc1\xd3\x8b\xf6\x97\x58\x62\x16\xd3\x12\x93\x75\x09\ -\x28\x00\x38\x86\xa4\xc4\xe0\xd6\x72\xa3\x7d\xa3\xe0\xb4\xe8\x1f\ -\x06\x10\x12\x0e\xa9\xf9\x59\x80\x90\x1f\x1a\x90\x59\xd9\x43\xcd\ -\x25\x44\x37\x2f\x1a\xb7\x20\xf8\x9e\x81\xe2\xdb\xda\xc4\x50\xa4\ -\x3d\xd3\x49\xdc\x3f\x0c\x20\x46\xd9\xe7\x01\xf2\xad\x2a\x8b\xfe\ -\x17\xb9\x19\x20\xae\xed\x11\x3f\xf0\xf8\xff\xe3\xb7\x0d\xe5\x25\ -\x93\x48\xfb\x2b\xa2\xbc\xbf\x4a\x5c\x41\x26\x7c\x7a\x2c\x7d\xee\ -\xcf\x1b\xad\xcc\x5f\x9f\x3d\x32\xa9\x57\xa4\x37\x4f\xfd\x2d\xf3\ -\xe2\xea\x7b\x56\x77\x61\xdb\xf3\x69\x88\x03\xf5\x2a\xe4\x13\xca\ -\x43\x1f\xec\x05\xa4\x71\x10\x84\x5e\xff\x96\x04\xfd\x90\x78\x14\ -\xfb\xea\x41\x29\xc4\xcc\x25\x5c\x93\xfc\xc0\x05\x92\x6a\x11\x8a\ -\x19\x5c\xa4\x40\x9c\xea\xe7\x28\xb8\x87\x91\x90\x07\x2e\x45\xbe\ -\x1d\x86\x3e\xf7\x88\x9a\x8a\x60\xaf\x9b\x9d\xfb\x41\x80\x5d\x3d\ -\x3b\x43\x16\xdc\x08\x02\xce\x61\x12\x18\xe7\xda\x41\xe0\x32\xaa\ -\x04\x6f\xd1\x73\xa4\x9f\xb5\x28\x73\x79\xf7\xc0\xe5\x31\x8f\x61\ -\x17\x0d\x6d\xb5\x94\x66\x87\xba\x7c\xc0\x30\x11\x9c\x2d\xa1\x1e\ -\xc7\x10\x0c\x61\x22\x16\x52\x12\x74\xf3\x87\xae\x1b\x86\x01\xd7\ -\x64\x97\x50\xb8\xcc\xc2\xf4\xdd\x96\x5d\xce\xcd\x9e\xad\x41\xb1\ -\x41\x2f\xe5\x54\xfd\x9b\xdb\xb2\x07\xcb\x45\x1d\x36\xb0\x46\x87\ -\x16\x43\x03\x32\xcb\x1e\x2c\x57\x4f\x4e\x61\x4a\xaf\x53\x9e\x7b\ -\xe8\xf3\xc5\x2f\xba\x1e\xec\xfc\x0b\x9d\x6e\xe5\x6c\xef\xef\x56\ -\xea\x11\xe0\xfe\xee\xbf\x97\xfe\x80\x42\ -\x00\x00\x06\xfc\ -\x00\ -\x00\x23\x8c\x78\x9c\xdd\x99\xdd\x73\xe3\xb6\x11\xc0\xdf\xfd\x57\ -\xa0\xbc\x97\x76\x2a\x92\x00\xbf\x49\x4b\xca\x43\x6e\x32\xc9\x4c\ -\xfa\xd2\x26\xe9\xe3\x0d\x45\x42\x12\x6a\x92\x50\x41\xc8\x92\xee\ -\xaf\xcf\x82\x1f\x20\x29\xd1\x53\x5f\x6d\x5f\x7c\xe1\x8c\xc7\xc4\ -\xee\x02\x04\x7e\xd8\x5d\x00\xc2\xf2\xbb\x73\x59\xa0\x47\x2a\x6a\ -\xc6\xab\x95\x41\x2c\x6c\x20\x5a\x65\x3c\x67\xd5\x6e\x65\xfc\xfa\ -\xcb\x0f\x66\x64\xa0\x5a\xa6\x55\x9e\x16\xbc\xa2\x2b\xa3\xe2\xc6\ -\x77\xeb\xbb\xe5\x5f\x4c\x13\x7d\x2f\x68\x2a\x69\x8e\x4e\x4c\xee\ -\xd1\x4f\xd5\x43\x9d\xa5\x07\x8a\xfe\xba\x97\xf2\x90\xd8\xf6\xe9\ -\x74\xb2\x58\x27\xb4\xb8\xd8\xd9\x7f\x43\xa6\xb9\xbe\xbb\x5b\xd6\ -\x8f\xbb\x3b\x84\x10\x7c\xb7\xaa\x93\x3c\x5b\x19\x5d\x85\xc3\x51\ -\x14\x8d\x61\x9e\xd9\xb4\xa0\x25\xad\x64\x6d\x13\x8b\xd8\xc6\x60\ -\x9e\x0d\xe6\x99\xfa\x3a\x7b\xa4\x19\x2f\x4b\x5e\xd5\x4d\xcd\xaa\ -\xfe\x30\x32\x16\xf9\x56\x5b\xab\xde\x9c\xdc\xc6\x88\xc4\x71\x6c\ -\x63\xc7\x76\x1c\x13\x2c\xcc\xfa\x52\xc9\xf4\x6c\x4e\xab\x42\x1f\ -\xe7\xaa\x3a\x18\x63\x1b\x74\x83\xe5\xf3\xac\x92\x1a\x80\x1e\xe0\ -\x4f\x9b\xf7\x02\xab\xe6\x47\x91\xd1\x2d\xd4\xa3\x56\x45\xa5\xfd\ -\xf1\x97\x8f\x5a\x69\x62\x2b\x97\xf9\xa8\x99\x9e\xe7\xe4\xab\x13\ -\xc8\x55\x5a\xd2\xfa\x90\x66\xb4\xb6\x7b\x79\x53\xff\xc4\x72\xb9\ -\x5f\x19\xae\x67\x11\x17\x1e\xbf\x11\xee\x29\xdb\xed\xe5\xb5\x94\ -\xe5\x2b\x03\x7a\xef\xc4\x51\x5b\x1e\x39\x07\x69\x0d\xba\x86\x13\ -\xad\xc1\x56\xec\x58\x04\x09\xe2\xbb\x61\x6b\xd3\x0f\x21\xc9\x79\ -\xa6\xfa\x04\x4d\xd2\x92\xa5\x47\xc9\x4b\x98\xb5\x2c\x2b\xd2\xba\ -\x66\x5b\x96\x41\x81\x57\x87\xe2\xb8\x63\xd5\xa7\x9a\xed\xaa\x4f\ -\x34\x67\xf2\x93\x48\x2b\xc0\xd1\x23\xd4\xdf\xa3\xe7\x03\x17\xd2\ -\x3c\xe7\x07\x00\x19\x84\xb3\xca\x4b\xaf\x5c\x83\x76\x99\xd3\x6d\ -\xad\xac\xda\x51\xa9\x12\x0c\x2b\x34\x90\xdd\x68\x75\x27\x55\x0f\ -\xf3\x47\x46\x4f\x83\xed\x26\xad\x5b\x72\x08\x1d\xd2\x1d\x78\x59\ -\xc1\xc5\xca\xf8\xb0\x6d\x9e\x4e\xb1\xe1\x22\xa7\xa2\x57\x05\xcd\ -\x33\x51\x71\x98\x09\x26\x2f\x6d\x5c\x75\x6d\xf7\xfd\x55\xad\x6a\ -\x3d\x9e\xd7\xd7\xfb\x34\xe7\xa7\x95\xe1\x5c\x2b\x3f\x73\x5e\x42\ -\xab\x30\x23\x71\x18\xe1\x1b\x75\x76\x5e\x19\xa6\xe3\x5a\x71\x48\ -\x9c\xd8\xbf\xd1\xc2\x07\x23\xa8\xe9\x04\x0e\x89\x6e\x94\x47\x21\ -\x20\xf2\xcc\x22\xbd\x50\x18\x55\xf3\x8f\x74\x46\xf5\x9e\x9f\x76\ -\x42\xd1\x91\xe2\x48\xaf\x6b\x2a\x8d\xb9\xd9\xf0\xf3\xbc\x1a\x1c\ -\xe1\xa8\x62\xda\x3c\x56\x4c\x42\xdc\x1c\xce\xe3\x56\x8f\x2c\xa7\ -\xf5\x7c\xc5\x13\xab\x00\x82\xd9\x79\x30\x71\x35\xe3\x6b\x8b\xde\ -\x9d\x43\x7c\x33\xaa\xce\x02\xba\x76\xc3\xb9\x53\x5d\x9e\x56\x95\ -\xe9\x99\x95\xec\x33\x85\x71\x93\x6b\x93\xba\x4a\x0f\xe6\xae\xe0\ -\x9b\xb4\xe8\x7a\xbf\x6e\x2c\x96\x13\x2c\x6d\x25\x84\xe4\x45\xc5\ -\xee\xf9\xa2\x64\x46\x2f\x54\x3c\x95\xc0\x0d\x03\x5f\x0b\xb9\x60\ -\x10\x12\xa3\xfe\xf6\xa2\xcb\x58\xa4\x22\x1d\x12\xf5\xb9\x71\xb0\ -\xc6\xfd\xc2\x6b\xdd\x65\xac\xeb\xfc\xde\xbe\x75\xfc\x46\x5e\x52\ -\x99\xe6\xa9\x4c\x87\x28\xe8\x25\x4e\x1c\xe3\x7e\x64\x90\x34\x93\ -\x7f\x7e\xfc\x61\xdd\x7d\x68\x99\x65\xc9\xbf\xb9\x78\xe8\xbf\x8b\ -\x90\x32\x48\x37\xfc\x08\x53\x61\xac\xb5\x78\x99\x67\x09\xa4\x39\ -\x08\xff\x35\x2b\xc1\xb7\x55\x86\xfc\x3b\xa4\xb5\xa5\x3d\x28\x26\ -\xc6\x0a\xd6\xd0\x68\xdb\xac\xa0\x6d\xbe\x9c\x5d\x34\xf2\xac\x64\ -\xaa\x92\xfd\x2f\xc9\x8a\xe2\x27\xf5\x91\x6e\xc4\xa3\x46\x99\x2c\ -\xe8\x20\x5c\xda\x5d\xef\xbb\xb1\xd9\xa3\xc1\x2d\xed\x7e\xf4\x4d\ -\x69\x37\x50\x99\x04\x85\x9e\xe8\x22\xdd\x50\x70\x82\x9f\x95\x12\ -\xdd\x68\x77\x82\x1f\x0f\x25\xcf\x69\x57\x5d\xd3\xa4\x99\xd4\x53\ -\x26\x2f\x05\xe8\xb7\xd0\xfb\xa4\xcb\x34\xf7\xaa\x60\x76\x79\x22\ -\x21\x6d\x51\x1c\x0b\xc8\x77\x8f\xb4\xe2\x79\x7e\x5f\x4b\xc1\x1f\ -\x68\xf2\x01\x63\x2f\xc2\xb8\x2b\xb6\xd1\x92\xe8\x62\xc1\x2a\x0a\ -\xdd\x48\xea\xff\x1e\x53\x41\xc7\xd2\xff\x70\x56\x25\xc0\x8d\x8a\ -\x5e\xda\x14\x0a\xf0\x78\x99\x78\xbd\x2c\x4f\x21\x15\x09\x91\x5e\ -\x92\x0a\x76\x01\x63\x29\xdf\x6e\x6b\x2a\x87\x2f\xf5\x5d\xc5\x96\ -\xdb\x3d\x13\x47\x57\xc3\x75\xe3\x98\x68\xe1\xec\xc2\xa4\x9e\xf9\ -\xc5\x49\x3d\x93\xa8\x00\xff\x8e\x2d\x2f\x74\x63\xec\x06\xd4\x24\ -\x81\x56\x88\x89\x99\x00\x3b\xd7\x72\x61\x81\x0a\xe2\x48\x7b\xc5\ -\xf2\x90\xca\xfd\x1c\xfd\xd1\x28\x15\x59\xf5\x4c\xc9\x3a\x6d\xa7\ -\x5c\xcf\xbb\x46\xbc\x39\x4a\xf9\x5a\x80\xf5\xbc\xeb\x71\x00\xc2\ -\x7f\x20\xbc\xc0\xe8\x37\xd4\x83\x99\x02\x56\x23\x82\x68\x1d\x38\ -\x0c\x99\x9d\x57\xd0\x43\xc9\x85\x09\x39\xfe\x31\x95\x47\x41\x27\ -\xb9\x44\xe7\x04\x70\x52\x15\x46\x90\x8e\xb3\xec\x5b\x47\xa5\x21\ -\x2d\xf4\x1b\xfa\x11\xe1\x39\x64\xd1\xfb\x41\x46\x2c\x98\x41\xec\ -\xf8\xd1\xe1\xfc\xe5\xcc\x9e\x20\xa1\x57\x81\x85\x13\x59\x11\xfa\ -\x1e\xb9\x96\xd3\xbe\xde\xbc\xdc\xd0\x71\xc3\xd0\x31\xf1\xb3\xf9\ -\xbc\x8a\xcf\x90\xd0\xf7\x88\xef\xbf\x1a\x81\x12\xf9\x7d\x4a\x5a\ -\xb8\xbe\xe5\xa0\x0c\xe2\xc8\xf4\x2c\xa7\x81\xf2\xd4\xfb\x2d\x8a\ -\xc8\x7b\x3b\x10\x01\x81\x8c\x7f\xe5\x09\xdd\xac\x39\xaf\x08\x62\ -\xe4\x0a\xa4\x63\xd2\xcc\x3d\xfc\xa1\x9f\x51\x6c\x05\x0b\x27\xb0\ -\x5a\x0b\x44\xa0\x10\x5a\x61\x6b\xb4\xd7\x0c\xc1\x4e\xdb\x74\xce\ -\xe3\x8c\x0c\x3d\x6c\xf9\x2d\xea\x59\x7f\xf2\x30\x09\xbf\x22\x44\ -\xdf\xf2\xbc\xc6\xc9\x82\xaf\x91\x81\x66\x56\xbe\xf7\x43\xdd\x8c\ -\xdf\x8c\x7b\x44\x6f\xd3\xd8\xab\x3b\xef\x38\x8f\x11\xd7\x8a\x5a\ -\x5c\x5d\xb4\x2a\x99\x03\x50\x08\xee\x19\x69\x85\x22\xaa\x40\x17\ -\x9a\xe5\x02\x88\xf7\x05\x6f\xd1\x2f\x52\x28\xb4\xbc\xa6\xc6\x42\ -\x67\x83\xa8\x85\xea\xa9\xfa\x33\x4c\xdd\xb7\xf3\xe4\x5b\xa2\x90\ -\xb7\x9a\x5e\xc5\xee\x1f\xe7\xc9\xef\x71\x0a\x4c\xf7\x8b\x17\x6f\ -\x6d\x27\x45\x5a\xd5\xea\x00\x62\x66\x70\x3c\xa5\xc2\x6c\x8e\x53\ -\x33\x1b\xa8\x1b\x43\xd8\x53\x9a\xd7\x87\xab\xe7\xce\xee\x76\x3b\ -\xb7\xec\xbf\x69\xbc\x38\x5e\x97\x1e\x34\x61\x90\x39\x96\x37\x9a\ -\x2c\x07\xf7\xc8\x49\xd8\xd6\x83\xf9\x0c\x90\xb2\x5a\x68\xab\x51\ -\x0e\xea\x26\x46\x65\x32\xb7\xb7\x0f\xa0\xc5\x1f\x91\x37\x41\xa8\ -\xa7\x2a\x7c\xab\xfc\x33\xc7\xd3\x6f\x9d\x33\x08\xe3\x3f\x32\x5a\ -\xf0\xc2\xf1\xc1\xcf\x01\xcb\xc2\x71\x5b\xf0\x61\x9b\xee\xf5\x32\ -\x00\x91\xa1\x79\x23\x2d\x5e\x10\xd2\x67\x76\xd5\x42\x13\x2d\x90\ -\xef\xf5\xe4\xc1\xc2\xd0\xf3\x9f\x25\xfd\x05\x41\xf1\x4e\x77\x6c\ -\x83\x63\xbe\x70\xc7\x66\x3e\x7f\x73\xff\x4e\x51\x0c\x5e\xf1\x52\ -\x14\x6f\xb7\x03\xf8\x5a\x28\x82\xd7\xf2\x8a\x6f\xfe\x48\x03\xe9\ -\xe0\xa5\x0c\xbe\xfd\x24\x11\xbc\x98\xc1\xf3\x7f\x2d\x79\x8f\x67\ -\xfb\xc9\xd1\x42\xaf\x30\x19\xea\x37\x54\xee\x02\x3f\xf5\xfe\xc4\ -\x49\xdf\x74\xfe\x34\x40\x48\xd4\x6f\x2b\x5f\x04\x84\x7c\xd3\x40\ -\x26\x5b\x76\x47\xff\xfa\xd3\xbc\xde\xbc\x3c\x85\xe0\x6b\x26\x8a\ -\xb7\xf5\x89\x61\x07\xf5\x22\x9f\xf0\xfe\x34\x40\xf4\x60\x5f\x06\ -\xe4\xff\xd8\x59\x3c\x79\xfd\x41\x02\x37\x4b\xe9\xf4\xfa\x03\x5b\ -\xbe\xe7\xe3\x38\xc2\xde\xff\x5a\x65\x42\x1f\x13\x27\xd2\x87\xe4\ -\x97\xfc\x8c\xdc\xdf\x5a\x38\x71\x3c\x8c\xaf\xbf\xb5\x18\xf2\xa4\ -\xbe\xae\x18\x44\xb3\xd7\x72\x97\x39\xa1\xba\xab\x50\xe7\x60\xec\ -\x06\xc3\x37\xda\x2b\x0b\x18\x6c\x14\x46\xfe\x40\x2c\x63\x22\x2b\ -\xe8\x15\xb3\xe6\x0e\x5a\xd3\xc8\x59\x7d\x28\x60\x60\xac\x52\xfe\ -\x70\xcf\x1f\xa9\xd8\x16\xfc\x94\x3c\xb2\x9a\x6d\x0a\x7a\xdf\xfc\ -\x67\x85\x1a\x67\x2f\x1a\x10\xc7\x51\xdc\x3c\xf7\xed\x3c\x60\xac\ -\x4e\x56\x4f\xce\xc3\x70\x1f\x05\x14\x3f\x53\xc1\x27\x33\xe3\x85\ -\xd3\x99\xf1\x2c\x12\x04\x2e\x34\xfe\xa6\x3f\xc4\x8d\xae\xa5\x20\ -\x9d\xb9\x4e\x84\x89\x1f\xdd\x4c\xf0\x7d\x99\x8a\x07\x2a\xda\x9a\ -\xb4\x4a\x81\x82\xb9\x49\xb3\x07\x75\x51\x57\xe5\x49\x9a\x65\xc7\ -\xf2\x58\xa4\x92\xce\x6d\x19\x86\xd0\x57\x57\xed\xfd\xd9\x6d\x48\ -\x9d\xea\x8a\xfd\x56\x2a\x56\x86\xbe\x0c\xd1\x77\xb1\xbb\xf5\xdd\ -\x52\xdd\x85\xae\xef\x7e\x07\x68\x96\x4a\xd0\ -\x00\x00\x0c\xd5\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6f\x69\x6e\x74\ -\x65\x72\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ -\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x2d\x33\x36\x2e\x32\x32\x31\x31\x30\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x31\x30\x2e\x38\x33\x32\x31\x39\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ -\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ -\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ -\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\ -\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ -\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ -\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ -\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\ -\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ -\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\ -\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ -\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ -\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\ -\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\ -\x38\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x33\x35\x2e\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x31\x33\x33\x33\x33\x33\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ -\x38\x34\x31\x37\x34\x35\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x62\x30\x35\x37\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\ -\x36\x34\x37\x30\x35\x38\x38\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x66\x66\x35\x65\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x32\x34\x37\x34\x36\x36\x38\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x33\ -\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\x34\x38\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ -\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x39\x39\x39\x39\x39\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\x33\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\ -\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ -\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x2c\x37\x2e\x39\x33\ -\x31\x30\x34\x34\x33\x20\x63\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\ -\x39\x39\x39\x37\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\x39\x39\x39\ -\x37\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\x39\x39\x39\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x39\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\ -\x33\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x33\x2e\x35\x38\x39\x30\x39\x35\x31\x32\x70\x78\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ -\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\x36\x36\x36\x36\x36\ -\x37\x2c\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x63\x20\x31\x39\ -\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\ -\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\x30\x30\x30\ -\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x18\xa1\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x35\x33\x32\x30\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\x6f\x61\ -\x64\x5f\x69\x6d\x61\x67\x65\x5f\x70\x72\x65\x76\x69\x65\x77\x2e\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x2e\x35\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x2e\ -\x35\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x35\x33\x32\x32\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\ -\x32\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\x66\x66\ -\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ -\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\x30\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x35\x39\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x30\x30\x30\x30\x38\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ -\x39\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x35\x39\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x78\x31\x3d\x22\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x31\x3d\x22\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x32\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x35\x33\ -\x37\x37\x34\x31\x30\x35\x2c\x30\x2c\x30\x2c\x30\x2e\x35\x33\x37\ -\x37\x34\x31\x30\x35\x2c\x31\x36\x2e\x33\x39\x36\x37\x30\x34\x2c\ -\x31\x37\x2e\x32\x37\x36\x33\x30\x38\x29\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ -\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ -\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\x32\x37\x32\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x2e\ -\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x32\x3d\x22\x33\x2e\x31\x38\x31\x38\x31\x38\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\x36\x33\x36\x33\ -\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ -\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ -\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x33\x32\x32\ -\x36\x34\x34\x36\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x33\x30\x39\x32\ -\x30\x31\x31\x2c\x33\x31\x2e\x34\x35\x33\x34\x35\x33\x2c\x32\x39\ -\x2e\x34\x35\x32\x37\x38\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\ -\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\ -\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\ -\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\ -\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\ -\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x78\x3d\x22\x2d\x34\x32\x2e\x33\x31\x30\x35\x36\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x79\x3d\x22\x31\x39\x2e\x38\x33\x35\x36\x37\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\ -\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\ -\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\ -\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\ -\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ -\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x72\x69\x64\x35\x33\x34\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x35\x33\x32\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ -\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ -\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ -\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ -\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ -\x62\x65\x6c\x3d\x22\x4c\x69\x76\x65\x6c\x6c\x6f\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ -\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ -\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x62\x33\ -\x62\x33\x62\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\ -\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x35\ -\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x32\x2e\x32\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ -\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ -\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x30\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x34\x2e\x37\ -\x39\x39\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x33\x37\x2e\x33\x33\x33\x33\x33\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x36\x2e\x34\x30\ -\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ -\x22\x2d\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x39\x2e\x33\x37\x31\x30\x32\x30\ -\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x62\x33\x66\x66\x38\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\x33\x37\x37\x37\x37\x36\ -\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x31\x2e\x33\ -\x37\x37\x37\x37\x38\x2c\x30\x20\x33\x34\x2e\x31\x33\x33\x33\x33\ -\x33\x2c\x31\x31\x2e\x33\x37\x37\x37\x37\x38\x20\x32\x32\x2e\x37\ -\x35\x35\x35\x35\x35\x2c\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\ -\x30\x2c\x32\x32\x2e\x37\x35\x35\x35\x35\x35\x20\x5a\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\ -\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ -\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x67\x33\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x31\x2e\x32\x39\x33\x34\x34\x32\x33\x2c\x30\x2c\x30\x2c\x31\ -\x2e\x32\x37\x38\x31\x32\x39\x36\x2c\x2d\x37\x2e\x35\x32\x35\x37\ -\x36\x32\x35\x2c\x2d\x31\x30\x2e\x33\x37\x36\x37\x35\x31\x29\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x33\x2e\ -\x33\x30\x33\x33\x31\x34\x2c\x31\x37\x2e\x31\x34\x31\x38\x37\x33\ -\x20\x63\x20\x2d\x30\x2e\x35\x35\x30\x38\x32\x32\x2c\x30\x20\x2d\ -\x30\x2e\x39\x39\x31\x34\x36\x2c\x30\x2e\x34\x34\x30\x36\x33\x38\ -\x20\x2d\x30\x2e\x39\x39\x31\x34\x36\x2c\x30\x2e\x39\x39\x31\x34\ -\x36\x20\x76\x20\x37\x2e\x32\x30\x39\x30\x39\x32\x20\x68\x20\x2d\ -\x33\x2e\x37\x36\x34\x31\x38\x36\x20\x63\x20\x2d\x31\x2e\x30\x37\ -\x35\x34\x38\x33\x2c\x30\x20\x35\x2e\x39\x31\x35\x31\x35\x2c\x38\ -\x2e\x30\x36\x36\x31\x31\x35\x20\x35\x2e\x39\x31\x35\x31\x35\x2c\ -\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x6c\x20\x30\x2e\x35\x33\x37\ -\x37\x34\x31\x2c\x30\x2e\x35\x33\x37\x37\x34\x31\x20\x30\x2e\x35\ -\x33\x37\x37\x34\x32\x2c\x2d\x30\x2e\x35\x33\x37\x37\x34\x31\x20\ -\x63\x20\x30\x2c\x30\x20\x36\x2e\x39\x39\x30\x36\x33\x33\x2c\x2d\ -\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x35\x2e\x39\x31\x35\x31\x35\ -\x32\x2c\x2d\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x68\x20\x2d\x33\ -\x2e\x37\x36\x34\x31\x38\x38\x20\x76\x20\x2d\x37\x2e\x32\x30\x39\ -\x30\x39\x32\x20\x63\x20\x30\x2c\x2d\x30\x2e\x35\x35\x30\x38\x32\ -\x32\x20\x2d\x30\x2e\x34\x34\x30\x36\x33\x38\x2c\x2d\x30\x2e\x39\ -\x39\x31\x34\x36\x20\x2d\x30\x2e\x39\x39\x31\x34\x36\x2c\x2d\x30\ -\x2e\x39\x39\x31\x34\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ -\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x35\x39\x37\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\ -\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x35\x39\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x36\x30\x32\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x31\x35\x38\x35\x31\x33\x36\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ -\x32\x39\x2e\x38\x34\x30\x32\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x31\x2e\x33\x30\x37\x39\x38\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ -\x33\x2e\x32\x32\x36\x34\x34\x36\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x30\x39\x32\x30\x31\x31\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\ -\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x30\x2e\x30\x39\x30\x34\x33\x39\x32\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x63\x78\x3d\x22\x32\x39\x2e\x37\x30\x35\x37\x39\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x31\x2e\ -\x33\x30\x37\x39\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x78\x3d\x22\x31\x2e\x32\x30\x39\x39\x31\x37\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x39\ -\x35\x37\x35\x37\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x30\x2e\x31\x33\x34\x38\x31\x38\x38\x32\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x39\x2e\x38\x34\ -\x30\x32\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x33\x31\x2e\x33\x30\x37\x39\x38\x39\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x38\x38\ -\x37\x30\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x32\x2e\x39\x35\x37\x35\x37\x35\x38\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x30\x2e\x30\x39\x33\x34\x37\x32\x37\x33\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\ -\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ -\x2e\x30\x30\x35\x39\x34\x30\x32\x38\x2c\x30\x2e\x39\x39\x39\x39\ -\x38\x32\x33\x36\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x31\x2e\ -\x33\x30\x38\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x2d\x32\x39\x2e\x37\x32\x31\x34\x38\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x32\ -\x30\x39\x39\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x33\x2e\x31\x35\x39\x32\x30\x35\x34\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x36\x36\x66\x66\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x2c\x35\x2e\x38\x36\x36\ -\x36\x36\x36\x37\x20\x2d\x34\x2e\x31\x30\x32\x35\x36\x34\x2c\x34\ -\x2e\x35\x39\x34\x38\x37\x31\x33\x20\x2d\x32\x2e\x32\x39\x37\x34\ -\x33\x36\x2c\x34\x2e\x34\x37\x31\x37\x39\x35\x20\x2d\x31\x2e\x31\ -\x34\x38\x37\x31\x38\x2c\x34\x2e\x34\x33\x30\x37\x36\x39\x20\x76\ -\x20\x36\x2e\x36\x34\x36\x31\x35\x34\x20\x33\x2e\x33\x32\x33\x30\ -\x37\x37\x20\x4c\x20\x30\x2c\x32\x32\x2e\x36\x38\x37\x31\x38\x20\ -\x31\x31\x2e\x34\x38\x37\x31\x38\x2c\x30\x2e\x35\x33\x33\x33\x33\ -\x33\x33\x33\x20\x31\x38\x2e\x31\x33\x33\x33\x33\x33\x2c\x33\x2e\ -\x37\x33\x33\x33\x33\x33\x33\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x30\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ -\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\ -\x00\x00\x0a\x23\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x6d\x6f\x76\ -\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x35\x38\x2e\x36\x33\x38\x31\x36\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\ -\x2e\x35\x33\x38\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ -\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ -\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ -\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ -\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ -\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ -\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ -\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ -\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ -\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ -\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ -\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ -\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ -\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ -\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ -\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\ -\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x34\ -\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\ -\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ -\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\ -\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\ -\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x4d\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\ -\x2e\x38\x36\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\ -\x3e\x0a\ -\x00\x00\x05\x90\ -\x00\ -\x00\x1b\xc7\x78\x9c\xed\x58\xdb\x8e\x9b\x48\x10\x7d\x9f\xaf\x60\ -\xc9\x4b\xa2\x1d\xa0\xaf\xd0\xed\xd8\x8e\xb4\x1b\x45\x8a\xb4\x4f\ -\xbb\x59\xed\x63\x84\xa1\x6d\xa3\x00\x6d\x01\x1e\xdb\xf9\xfa\xad\ -\xe6\x66\x98\x61\x2e\x89\x93\x87\x48\x46\x33\xca\x74\x55\x75\x77\ -\xf5\xa9\x73\xaa\x21\xf3\x77\xc7\x2c\xb5\xee\x54\x51\x26\x3a\x5f\ -\xd8\xd8\x45\xb6\xa5\xf2\x48\xc7\x49\xbe\x59\xd8\xff\x7e\xfa\xe0\ -\x08\xdb\x2a\xab\x30\x8f\xc3\x54\xe7\x6a\x61\xe7\xda\x7e\xb7\xbc\ -\x99\xff\xe6\x38\xd6\x9f\x85\x0a\x2b\x15\x5b\x87\xa4\xda\x5a\x1f\ -\xf3\x2f\x65\x14\xee\x94\xf5\x7a\x5b\x55\xbb\x99\xe7\x1d\x0e\x07\ -\x37\x69\x8d\xae\x2e\x36\xde\x1b\xcb\x71\x96\x37\x37\xf3\xf2\x6e\ -\x73\x63\x59\x16\xec\x9b\x97\xb3\x38\x5a\xd8\xed\x84\xdd\xbe\x48\ -\xeb\xc0\x38\xf2\x54\xaa\x32\x95\x57\xa5\x87\x5d\xec\xd9\xe7\xf0\ -\xe8\x1c\x1e\x99\xdd\x93\x3b\x15\xe9\x2c\xd3\x79\x59\xcf\xcc\xcb\ -\x57\x83\xe0\x22\x5e\xf7\xd1\x26\x9b\x03\xad\x83\xb0\x94\xd2\x43\ -\xc4\x23\xc4\x81\x08\xa7\x3c\xe5\x55\x78\x74\xc6\x53\x21\xc7\xa9\ -\xa9\x04\x21\xe4\x81\xef\x1c\xf9\xb2\xa8\x59\x09\x80\xee\xe0\xb7\ -\x0f\xef\x0c\x6e\xa9\xf7\x45\xa4\xd6\x30\x4f\xb9\xb9\xaa\xbc\xf7\ -\x9f\xde\xf7\x4e\x07\xb9\x71\x15\x0f\x96\xe9\xf0\x1c\xed\x3a\x02\ -\x39\x0f\x33\x55\xee\xc2\x48\x95\x5e\x67\xaf\xe7\x1f\x92\xb8\xda\ -\x2e\x6c\xca\x5c\x4c\xe1\xe1\xb5\x71\xab\x92\xcd\xb6\xba\x6f\x4d\ -\xe2\x85\x0d\xd9\x13\x29\x9a\xf1\x80\x1c\xb8\x09\x68\x17\x9e\xf5\ -\x1e\xe4\x4a\xe2\x62\xab\xc0\x9c\x06\x4d\x4c\x77\x84\x59\xac\x23\ -\x93\x13\x2c\xa9\xb2\x24\xdc\x57\x3a\x83\xaa\x45\x51\x1a\x96\x65\ -\xb2\x4e\x22\x18\xe8\x7c\x97\xee\x37\x49\xfe\x39\xd3\x65\x98\x44\ -\x9f\x2b\xad\x53\xb7\x83\xaf\xdf\x4b\x1d\x77\xba\xa8\x9c\x63\xbc\ -\x03\x10\xfd\x60\xd2\x79\x1a\x3a\xef\x12\x75\xf8\x43\x1f\x21\x39\ -\x0b\x59\x94\xc0\x8f\xbd\x04\xfb\x3c\x56\xeb\xd2\xf8\x9b\x83\x9a\ -\x11\x9c\x34\xb0\x2d\xaf\xf6\xf6\x79\x9b\xa4\x63\xb3\xc6\x39\x76\ -\x15\x96\x0d\x98\x96\xb5\x0b\x37\x40\xbc\x54\x17\x0b\xfb\xd5\xba\ -\x7e\x5a\xc7\x4a\x17\xb1\x2a\x3a\x97\x5f\x3f\x23\x97\x86\xe2\x24\ -\xd5\xa9\x91\x5a\xbb\x76\x77\x0c\xb3\x6a\xef\x47\xd3\xfe\x72\x1b\ -\xc6\xfa\xb0\xb0\xc9\x7d\xe7\x57\xad\x33\x58\x15\x8a\x24\x03\x81\ -\x1e\xb8\x23\x40\xc2\xc1\xc8\xc5\x08\xf9\x3e\x7b\xe0\x35\x09\xf9\ -\x6e\x40\x19\x97\xfc\x81\x73\x5f\x14\x20\x46\x27\x0d\x4f\x0a\x4e\ -\x55\xff\x83\xdb\xa0\x72\xab\x0f\x9b\xc2\xa0\x53\x15\x7b\x75\x7f\ -\xa6\xf1\x38\xab\x95\xa9\xc2\x94\x1b\xb8\xb1\x37\x32\x77\xf6\x79\ -\x52\x81\x94\x76\xc7\xe1\xaa\xfb\x24\x56\xe5\xf4\xc4\x32\x0f\x77\ -\xce\x26\xd5\xab\x30\x9d\x0e\x38\x24\x39\xa0\xe4\xb4\xac\xc7\xb4\ -\x2f\xc2\xfd\x88\x4e\x02\x01\x12\x8f\x44\x18\x06\x3d\xe2\x3a\x3d\ -\xee\xca\xc2\x63\x92\x25\x5f\x15\x00\x83\x1f\xa0\x62\x4e\x36\x84\ -\x65\x59\x07\xcc\x47\xb0\x35\x73\x2c\xab\x3a\x19\xb9\x1f\x4f\xc6\ -\x66\x77\x46\x83\xb7\x31\x10\x29\x83\xde\xa8\x8b\x04\x54\x34\x48\ -\xb7\x33\x9d\x86\x26\xd3\x1c\xa0\xb7\x1f\xcf\x79\xf5\x36\xc3\x81\ -\x4e\x07\xde\x43\x21\xd4\xf6\x4c\x55\x61\x1c\x56\xe1\x59\x15\x9d\ -\x05\x72\x41\xdd\x49\xa0\xaf\xce\xfe\x7e\xff\x61\xd9\x6e\x30\x8f\ -\xa2\xd9\x7f\xba\xf8\xd2\xed\x67\x59\x26\x20\x5c\xe9\x3d\x20\x6f\ -\x2f\x7b\xf3\x3c\x8e\x66\xd0\x09\xa1\x43\x2c\x93\x0c\xb8\x6e\x9a\ -\xe8\xef\xd0\xf9\xe6\xde\xd9\x31\x0a\x36\xe0\x9c\x17\x6d\x96\x2d\ -\x54\xd3\x52\x27\xef\x95\x38\xca\x12\x33\xc9\xfb\xa7\x4a\xd2\xf4\ -\xa3\xd9\xa4\x3d\xf1\x60\xd1\xa4\x4a\xd5\xd9\x38\xf7\xda\xec\xdb\ -\xb3\x79\x83\xc3\xcd\xbd\xee\xf4\xf5\x68\x73\x46\x65\x24\x92\xbe\ -\xb0\x69\xb8\x52\xc0\xd8\xbf\x8c\xd3\x7a\xc8\x8b\x42\xef\x77\x99\ -\x8e\x55\x3b\xbd\x47\x53\x45\x55\x5f\xaa\xea\x94\x82\x7f\x0d\xd9\ -\xcf\x5e\x21\xc4\x79\xcc\xde\x9a\x81\xd3\xf6\x8d\x19\x6e\x86\xc5\ -\x3e\x85\xb6\x78\xa7\x72\x1d\xc7\x6f\xcb\xaa\xd0\x5f\x94\x89\x37\ -\x4f\x3b\x6c\xc4\x31\x83\x7e\x41\x7c\xe9\x0b\xcc\x3b\x3b\x20\xa4\ -\x8a\x14\xd8\x5b\xcd\x58\x67\x8b\x43\xe8\x3b\x45\x11\x9e\x66\x39\ -\xbc\x05\x74\xd6\x7e\xcf\x11\x31\x4d\xba\x40\x06\xda\x1b\x3b\x15\ -\x42\xc7\x13\x34\x90\xa2\x77\x74\xe2\x93\x2e\xe6\x52\x62\x4c\x7a\ -\xcf\xb1\xbe\x94\x90\xa4\x18\x9f\x09\x0e\xfc\xe4\xd0\x15\xb9\x4f\ -\xb8\xec\x8d\x85\x61\xb2\x4b\x09\x46\x94\x9f\xf3\x28\xea\x06\x4b\ -\x05\x97\xe8\x6c\xac\x8a\x30\x2f\x0d\x8d\x80\xb4\x61\x55\x24\xc7\ -\xd7\xb0\x1a\x65\x02\x21\x2a\x6f\xe1\xae\x85\xf7\x02\x2a\x19\x11\ -\xb7\xc8\x65\xc2\x27\x84\x0b\x1f\xfe\x14\x01\x15\x94\xe2\xe0\x16\ -\xdd\xa2\x37\xe7\x83\x3e\x75\x2f\x4d\x05\xf4\x77\x53\xc7\xac\x51\ -\x59\xbf\x21\x35\xee\x43\x72\x70\x32\x93\x1a\xe1\x58\x30\x4c\xc6\ -\xa9\x35\x67\x67\x01\xa3\x98\x06\xcf\xe0\x04\xa1\x24\x70\x03\x22\ -\x98\xc4\x43\xf0\x31\x71\x05\x27\x80\xc1\x44\xad\x02\xc6\xc0\x13\ -\x3c\x5f\xde\x8e\x0c\x34\x18\xe0\x72\x8f\xc0\x61\x08\x84\xbc\x90\ -\xc0\x88\x63\x2a\x69\x70\x11\x81\x27\xab\xf2\x0b\x89\xcd\xb9\x54\ -\x6e\x98\xbb\x12\xc2\x7d\x3a\xe4\x06\x93\xf0\x62\x27\xc5\xb4\xda\ -\xae\x62\x7b\x91\xd8\xee\x69\x4d\x0a\x41\x30\x1b\x22\xef\x70\x60\ -\x30\x1c\x9b\xb3\x1f\x25\x36\xc7\xbf\xca\xed\x27\xcb\x8d\x5f\x28\ -\x37\x60\x02\x61\xe6\xbb\x63\xa8\x36\xec\x06\x82\x8b\xa1\xb2\xae\ -\x72\xbb\x48\x6e\x60\xe4\xe6\x19\x22\x2f\x00\x00\x22\xc8\xe0\xbe\ -\xbb\x54\x6d\xf4\xaa\xb6\x9f\x7d\xb9\x0d\x3a\xda\xf7\xe9\x4d\xba\ -\x94\x49\x8e\xe5\x58\x70\xc4\xc5\x82\xa2\x60\x52\x70\x4c\x5e\x15\ -\xf7\x12\xc5\x0d\x70\x6a\x24\x47\x18\xe7\xfe\xf8\x86\x93\x00\x01\ -\x16\x1c\xf9\x3f\x4c\x73\xbe\x43\x7e\x7d\xd5\xad\xd7\xf5\xde\x17\ -\xe5\x5a\x57\x93\xf8\x98\xfc\x48\xd1\x01\xc4\xf2\xe5\x82\xc3\xc0\ -\x70\x44\x08\x1b\x09\xce\x01\x6d\x31\xe0\x1c\x1b\x7d\x6c\x48\xd7\ -\x27\x82\x0a\xc9\x26\x7b\xf7\xfd\xef\x37\x0e\x62\xf1\x7d\xfe\x3d\ -\x92\xf3\x29\xc2\x18\x9b\xbf\x82\xc0\xe7\x88\x31\xda\xd0\xfa\x17\ -\x2f\x8a\xf3\x02\x9d\x3c\x5d\x16\x2c\xe1\xb3\x9a\x71\x46\xc7\x65\ -\xe1\x44\x42\x01\xfc\xc9\xb2\x5c\xab\xf2\x5c\x55\xbe\xe1\x6d\x70\ -\xba\x2a\xf0\x0d\x4e\x7d\x86\x25\x19\x56\x85\xba\x9c\x06\x02\x07\ -\xcf\xbc\xe8\x5c\xab\xf2\x98\x56\x9c\xcb\x9b\x18\x75\x7d\x11\xc0\ -\xe5\x35\xae\x0b\xa3\x82\xf9\x83\xd0\xa7\x5e\x1b\x7e\x5a\x61\xe6\ -\xde\x66\x79\x33\x37\xff\x47\xba\xbc\xf9\x1f\xda\xce\x98\x81\ -\x00\x00\x0a\xd8\ -\x00\ -\x00\x73\x2b\x78\x9c\xed\x5d\x5b\x93\xa3\xb8\x15\x7e\x9f\x5f\x41\ -\x3c\x2f\x33\x15\x4b\xd6\x8d\x8b\xdc\xee\xde\x87\xdd\xda\xda\xad\ -\xda\xbc\x64\x37\x95\xc7\x29\x1a\x64\x37\x19\x0c\x0e\xe0\xb6\x3d\ -\xbf\x3e\x47\xdc\x8c\x2f\x90\x4c\xb5\x71\xb6\xa0\x99\x9a\xea\xe6\ -\x1c\x49\x48\x9f\xbe\x73\x74\x24\xd4\x68\xf1\xc3\x7e\x1d\x1a\xaf\ -\x2a\x49\x83\x38\x7a\x9c\x50\x4c\x26\x86\x8a\xbc\xd8\x0f\xa2\xd5\ -\xe3\xe4\x1f\x7f\xfc\x8c\x9c\x89\x91\x66\x6e\xe4\xbb\x61\x1c\xa9\ -\xc7\x49\x14\x4f\x7e\x78\xfa\xb0\xf8\x0b\x42\xc6\x8f\x89\x72\x33\ -\xe5\x1b\xbb\x20\x7b\x31\x7e\x8d\xbe\xa6\x9e\xbb\x51\xc6\xa7\x97\ -\x2c\xdb\xcc\x67\xb3\xdd\x6e\x87\x83\x52\x88\xe3\x64\x35\xfb\x6c\ -\x20\xf4\xf4\xe1\xc3\x22\x7d\x5d\x7d\x30\x0c\x03\x9e\x1b\xa5\x73\ -\xdf\x7b\x9c\x94\x19\x36\xdb\x24\xcc\x13\xfa\xde\x4c\x85\x6a\xad\ -\xa2\x2c\x9d\x51\x4c\x67\x93\x63\x72\xef\x98\xdc\xd3\x4f\x0f\x5e\ -\x95\x17\xaf\xd7\x71\x94\xe6\x39\xa3\xf4\x63\x23\x71\xe2\x2f\xeb\ -\xd4\xba\x36\x3b\x9e\x27\xa2\x52\xca\x19\x61\x33\xc6\x10\xa4\x40\ -\xe9\x21\xca\xdc\x3d\x3a\xcd\x0a\x75\xbc\x96\x95\x11\x42\x66\xa0\ -\x3b\xa6\xfc\xdf\x52\xcd\x53\x00\x74\x03\xff\xeb\xe4\x95\x00\xa7\ -\xf1\x36\xf1\xd4\x12\xf2\x29\x1c\xa9\x6c\xf6\xd3\x1f\x3f\xd5\x4a\ -\x44\xb0\x9f\xf9\x8d\x62\x2a\x3c\x4f\x9e\x7a\x02\x72\xe4\xae\x55\ -\xba\x71\x3d\x95\xce\x2a\x79\x9e\x7f\x17\xf8\xd9\xcb\xe3\x84\x0b\ -\x4c\x39\x5c\x66\x2e\x7c\x51\xc1\xea\x25\x3b\x97\x06\xfe\xe3\x04\ -\x6a\xcf\xa4\x53\xdc\x37\xc8\x41\x8b\x04\x65\xc1\xf3\x5a\x43\xb0\ -\x64\x98\x1a\x09\x35\xb9\x5d\xa4\xa9\x9a\x30\xf7\x63\x4f\xd7\x09\ -\x8a\x54\xeb\xc0\xdd\x66\xf1\x1a\x7a\xcd\xf3\x42\x37\x4d\x83\x65\ -\xe0\xc1\x4d\x1c\x6d\xc2\xed\x2a\x88\xbe\x6c\x23\x3f\xfe\xa2\xfc\ -\x20\xfb\x92\xb8\x69\xa6\x12\x5c\x61\x58\x3f\x50\xed\x37\x71\x92\ -\xa1\xbd\xbf\x01\x24\x2d\xfb\xaa\xf2\x50\x29\x9f\x40\xbb\xf0\xd5\ -\x32\xd5\xa9\x8a\x66\xe9\x3b\x68\x97\x3d\x31\x66\xb9\xb6\xae\xa5\ -\xae\xa2\xff\x1a\xa8\xdd\x31\xed\xb3\x9b\x16\xd0\x19\xc6\xc6\x5d\ -\x01\xcd\xc2\x38\x79\x9c\x7c\x5c\xe6\x57\xa9\x78\x8e\x13\x5f\x25\ -\x95\xca\xca\xaf\x13\x55\x0c\x5d\x11\x64\x87\xc2\xb0\xca\xb2\xab\ -\xfa\xea\x52\x6b\x3d\xb9\xae\x4f\x5f\x5c\x3f\xde\x3d\x4e\xd8\xb9\ -\xf2\x5b\x1c\xaf\x1f\x27\x26\x36\xa5\x23\x09\x3d\xd7\x7a\xfb\xc7\ -\x09\x12\x12\xdb\x84\x3b\xf2\x42\x09\x8f\xb3\x31\xb3\xa5\x60\xa6\ -\x7d\xa1\xdc\x26\x09\x18\x1e\x0a\xdd\x83\x82\x36\xe5\x3f\xaa\xe2\ -\xd3\x97\x78\xb7\x4a\x34\x36\x59\xb2\x55\xe7\x39\xb5\x06\x3d\x3f\ -\xc7\xfb\xeb\x6a\xe0\xc1\x56\x9b\x34\xda\x46\x41\x06\x66\xb3\xd9\ -\x37\x4b\xdd\x06\xbe\x4a\xaf\x67\x4c\x23\x77\x83\x56\x61\xfc\xec\ -\x86\xd7\x13\xec\x02\xe0\xcd\x0e\x95\x0c\xa7\xbc\xee\x82\xf3\x14\ -\x15\xdd\x6d\xe2\xb4\xa4\x80\xba\x5f\x74\x43\xa9\x3a\xb4\xab\xd6\ -\xee\x3e\x58\x07\xdf\x14\x00\x43\x73\xd6\x01\xb3\x4e\x60\x29\xb2\ -\x19\x46\x76\xd0\xa6\xbb\x3f\x68\xd9\xa4\x12\x6a\x3c\xb5\x80\x49\ -\x69\xd7\xc2\x38\x09\xc0\x22\x1a\xd5\xa9\x44\x87\xa6\x48\x1b\x3a\ -\xf8\xe9\x7d\x4e\xaf\x9c\x7c\xf6\xb9\xee\xd0\xd4\x95\xac\x9f\x5d\ -\xd2\x3e\x97\xaf\x55\xe6\xfa\x6e\xe6\x1e\x6d\xa0\x92\x40\xdd\x48\ -\xd5\x32\xf0\x99\xf3\xbf\xff\xf4\xf3\x53\xf9\xa0\x85\xe7\xcd\xff\ -\x19\x27\x5f\xab\xe7\x1a\x86\x4e\xe0\x3e\xc7\x5b\x40\x7a\xf2\x54\ -\x8b\x17\xbe\x37\x07\x2f\x07\xd6\xff\x14\xac\x81\xd9\xda\x41\xfe\ -\x15\xbc\xda\x62\x76\x54\x9c\x24\xd6\x60\x1d\x0b\x2d\x8a\x4d\x54\ -\xe1\x2e\xaf\x8e\x19\xbe\xb7\x0e\x74\xa6\xd9\xef\x59\x10\x86\xbf\ -\xea\x87\x94\x2d\x6e\x14\x1a\x64\xa1\x3a\x0a\x17\xb3\xb2\xf6\x65\ -\xdb\x66\x8d\xc6\x2d\x66\x55\xeb\xf3\xbb\xd5\x11\x95\x13\xa3\xa8\ -\x3b\x3a\x74\x9f\x15\x30\xf4\x37\xad\x34\x2e\xb4\xab\x24\xde\x6e\ -\xd6\xb1\xaf\xca\xec\x15\x9a\xab\x13\x1a\x70\xca\x69\xdd\x83\x59\ -\xe2\x46\xa9\x46\x06\xfa\xc1\xcd\x92\x60\xff\x89\x62\x41\x84\x6d\ -\x51\x39\x25\xf0\x8f\x62\x2e\x1c\xf0\xb7\x53\x9b\x63\xa9\xe5\x02\ -\x44\xd2\x14\x8c\x11\xf6\xb9\x46\x7e\x91\x28\x2f\x6b\x74\x4e\x4e\ -\x08\x4b\xe8\xcb\x9a\x34\xe4\x27\x5c\x33\x0c\x48\x86\x2c\xec\x10\ -\x7d\xb1\x86\x5c\x3b\x16\x93\x63\x3d\x5a\xf0\xa6\xbc\xb2\x2d\x81\ -\x65\xae\x13\x0d\x5d\x69\x99\x66\x91\xab\x1c\x65\x8e\xad\xd6\x15\ -\x34\x1d\x2e\x11\x45\x4e\x43\x95\x66\x87\x10\xd0\x5a\x42\x5f\xce\ -\x3f\x12\xe2\xba\x8e\xf3\xa0\x6f\x50\xe9\x33\xe7\xb4\xb8\x4d\xb6\ -\x21\xf8\xfe\x57\x15\xc5\xbe\xff\x90\x66\x49\xfc\x55\xcd\xc1\x4b\ -\x5b\x2e\x21\xe5\x6d\xe1\x1a\xe6\x04\x73\x56\xb4\xa7\x92\x03\x5f\ -\x54\x12\x82\xed\x66\x73\x51\xc9\x7c\x17\x7c\x6e\x92\xb8\x87\x79\ -\x04\xf1\x4e\x25\xad\x9f\xd9\x60\xd4\x1b\x90\xa5\x14\xdb\xe7\x28\ -\xf5\x8c\x2c\xa2\xe3\xc0\x96\x97\xde\x8e\xde\x11\x5a\x39\x0e\x68\ -\x11\xc5\xce\xe9\x20\x73\x07\xd6\x22\x73\x1c\xe0\x52\x56\x22\x75\ -\x47\x70\xed\x71\x40\x6b\x63\x99\x5f\xe6\x7d\x79\x3b\x12\xe2\x32\ -\x56\x84\x09\x77\x75\xb8\x63\xa1\x2e\xb5\xff\x2f\x2e\x17\x91\x71\ -\xc0\xdb\x1a\xe2\x5a\xe2\xb6\xc0\xb6\xc3\xb9\x5c\x7a\xde\xe0\xe1\ -\x34\x1d\x9c\x07\x65\xce\xad\xe9\xda\x8e\xab\x2f\x5c\x77\x30\xb8\ -\xb6\xce\x17\xfa\xc2\x15\x89\x71\x20\xdb\x36\x5b\xb8\xb5\xfd\x77\ -\xcd\x6c\x87\xe4\x01\x5a\x67\x5f\xbd\x11\xd5\xe9\x40\x76\x48\x4c\ -\x6d\x9b\x7c\xdd\x9c\xa9\xa4\xcb\xf6\x87\xc4\xd5\xd6\xe9\x6c\x7f\ -\x4e\x15\xb1\x71\x90\xb5\x6d\x32\x7b\x7b\xb2\xf2\x71\x70\xb5\x75\ -\x75\xa0\x37\xae\x5a\xe3\x60\x6a\xdb\xda\x40\x0f\x6e\xb5\x63\xca\ -\x3a\x24\xaa\xb6\xae\xb6\xf4\xe8\x56\x47\x42\xd6\xd6\xa5\x96\x1e\ -\xa3\xab\xb1\xcc\xb1\xda\x56\x5a\xfa\x88\xaf\xba\x30\x1d\x92\x2b\ -\x68\x5d\xbd\xea\x33\xc2\xea\xf2\xb3\x43\x22\x6c\x9b\x33\xe8\x87\ -\xb0\xe3\x99\x14\xb4\x2c\xb5\xf4\x04\x6b\xc7\x84\x60\x50\xb0\x5a\ -\x57\x90\xd2\xb0\x72\xbb\xbf\x85\x6c\xd1\xc1\x59\x87\x58\xd6\x60\ -\xc0\xa5\x2d\x33\xd9\x3e\xc1\xa5\x5d\x7e\x76\x48\xe8\x96\x33\x2f\ -\x26\xef\x08\xae\xec\x7a\x01\x33\x24\x70\x11\xc3\x79\x45\xc8\xf9\ -\x6c\xa1\x5f\xea\x9a\x5d\xbb\x0a\x86\x84\x2f\x85\x20\xe1\x8e\xc8\ -\xda\x5d\xe3\xd9\x90\x70\x2d\x03\x5b\xeb\x7c\x3d\xa6\x67\xda\x9a\ -\x88\x74\x4c\x75\x87\x04\x30\x44\xb7\x17\x53\x84\xfe\xbd\xee\x68\ -\xf8\x0b\x33\xb3\xab\x51\x6e\xdf\x6e\xb7\xf3\xe5\xc2\x90\x00\x6e\ -\x0d\x78\xc5\xad\x27\xbd\x23\x09\xc3\xda\x01\xbd\xe2\x29\x6e\x43\ -\xd9\x0e\x5f\x60\x9a\x42\x0c\x06\xd9\xb6\xe9\x43\x7f\xc8\x0a\xc4\ -\x3a\x5e\xdb\x0e\x09\xdc\xb6\xd9\xc3\xcd\xdd\x80\x83\x3a\x5e\x85\ -\x0d\xc9\x11\xb4\x22\xda\x1b\x5b\x9d\x4e\x6c\x87\xc4\xd6\xd6\xe9\ -\xd8\xcd\xe9\x9a\xaf\x7e\x89\x0e\x27\x30\x24\xca\xb6\xc3\xda\xa7\ -\x87\xed\xda\x73\x34\x24\xd2\x5e\x99\xe3\xde\x9e\xae\x7c\x2c\x71\ -\xd6\x35\x34\x7b\x63\xa9\xd5\xb5\x0e\x33\x24\x8e\xb6\xad\x17\xf4\ -\xe0\x57\xed\x2e\xbb\x1f\x12\x53\x5b\x31\xed\xd1\xa9\x5a\x88\x77\ -\xbc\xbb\x1d\x12\x63\xdb\x16\x60\x7a\x0d\xb3\x28\x92\x1d\x0b\xdf\ -\x43\x82\xb7\x6d\x01\xa6\x9f\x40\x0b\x39\x23\x99\x1c\xb4\xc2\xda\ -\x6b\xa0\x65\x77\x6d\xe8\x18\x12\x6b\x5b\x9d\x42\x3f\xac\x15\x63\ -\x79\x4d\xd3\xbe\x04\xd3\x0f\xb0\x0c\xc9\x91\xbc\x47\x68\xdf\x78\ -\xd0\xcf\x8e\x83\xae\x45\xc3\x41\xfd\xe5\x5c\xeb\x9e\x83\x9e\x36\ -\x1b\x74\xed\xf1\x1c\x12\xb0\xad\xdb\x0d\x7a\xda\x67\x30\x9a\x6f\ -\x6e\xb4\xee\x34\xe8\x6d\x8b\xc1\x58\x3e\xb9\x71\x6d\x93\x41\x4f\ -\xbb\x0b\xc6\xf2\x77\xdf\xad\xfb\x0b\x7a\xdc\x58\x30\x96\xa1\xab\ -\x75\x6b\x41\x6f\x7b\x0a\xba\x5e\x1f\x0c\x09\xd9\xd6\x5d\x05\x3d\ -\x6e\x27\xe8\xda\x50\xf0\x27\xc4\x76\xd5\x52\x59\x78\xb8\x55\x3f\ -\x7c\x5e\x7e\x65\xf0\xb2\xa4\x63\xee\xc6\xd7\xc1\xf2\x5f\x43\x37\ -\x53\x9f\x10\x27\x25\xaa\x53\x24\x4b\x10\xf9\xe7\x33\x14\x57\x9c\ -\x51\xd9\xfc\x32\xdb\x69\x7f\x5f\xaf\xd8\x77\xa0\xd8\xac\x79\x85\ -\xa2\x63\x16\x1d\xfa\x16\x14\x9b\x55\xbc\x32\x36\x88\x93\x04\x1d\ -\x4c\xea\xa6\x60\xc1\xd8\x6b\xbb\xc0\x0b\x8a\x5f\x09\x7b\x2f\x6d\ -\xa1\xdd\x6a\xfe\xcb\xc7\x2c\xdb\x12\xd5\x1f\xb5\x3c\xf9\xa0\xdd\ -\x10\x3a\xae\x18\x7c\xee\xd2\x77\xd7\xa6\x82\xef\x7d\xf7\x86\xbe\ -\x93\x77\x33\x3b\x76\x55\xf1\xde\x75\x6f\x31\x3b\x18\x3d\xe5\x7d\ -\x7c\xa6\x85\xed\xfc\x4f\x42\xdf\x3b\xef\xed\x9d\x47\xf8\xc9\x8c\ -\xfd\xcd\xbd\x06\xd1\xf0\xfb\x20\xd7\xaf\xb5\x59\xc8\xba\xa9\x9d\ -\xd9\xc5\x47\x56\x9c\xf7\x6e\xeb\xd3\xce\xce\x36\x83\xf7\x62\x68\ -\xef\x11\xc9\x4d\x0d\x2d\x7f\x3f\x7f\x17\x53\x7b\xef\xb8\xdb\xc6\ -\x23\xf9\xab\xff\xbb\xf4\xdc\x7b\x24\x79\x53\x27\x29\xce\xbe\xda\ -\xdd\x4f\x3c\xf2\x1e\x40\xde\xd6\x4d\xea\x2d\x0b\xf6\x5d\xcc\xed\ -\xbd\xeb\x6e\x6e\x6e\xa2\x7f\x83\xfb\xf3\x38\xc9\xc5\x6c\x55\x9d\ -\xcd\x50\xfd\xb2\x71\xb3\x97\xaa\x94\xb2\x07\xf3\x13\x58\xf4\x8a\ -\xaf\xbe\x1e\x96\x71\x94\xa1\x5c\x03\x00\x27\x6b\x37\x2c\x24\xaf\ -\x6e\x12\xb8\x51\x76\x22\xdb\xe5\xf0\x9c\x88\xa0\x3b\x54\xe6\xbd\ -\x9c\xca\x82\x6f\x6a\xbe\x56\x7e\xb0\x5d\x3f\x84\x41\xa4\xca\xa3\ -\x44\x4e\xd2\x2c\xdd\x75\x10\x1e\xe6\xbf\xbb\x51\xfa\x80\xaa\x96\ -\xa1\x22\xfb\x46\x79\xf5\x61\x37\x45\x8a\x4c\xed\x33\x48\xe5\x2b\ -\xa8\x10\x29\xee\xdc\x30\x58\x45\xf3\x34\x73\x93\xac\x10\xf8\xca\ -\x8b\x93\x22\x4f\x4e\x94\x33\x21\xd2\x35\x29\x34\xa1\xca\x80\x66\ -\xa8\x3c\xf3\xa3\xaa\xd6\x2e\x4e\xfc\x73\x59\x5e\x46\xbd\x76\x5c\ -\xe4\xde\x25\x41\x06\x49\x90\x3e\x9e\x62\x1e\x26\x28\x7b\x7e\xf0\ -\x03\x4d\x3a\xfd\xe4\x30\x4b\x1e\xf4\x51\x38\x79\xb3\xd3\x97\x60\ -\x99\xcd\xab\xdb\xb2\xda\x91\xf7\x02\xe0\x17\xf5\xf6\x83\x74\x13\ -\x02\xb1\x83\x28\x4f\x10\xbf\xaa\x64\x19\xc6\xbb\xf9\x6b\x90\x06\ -\xcf\xa1\x7a\xc8\x7f\x06\xa1\xe6\x79\x25\xaa\x16\xeb\x8b\xae\x3b\ -\xb5\xbe\xd2\xd6\x9a\x66\x52\x18\x1a\xc7\x22\x3f\xb1\x48\xb0\x87\ -\xb5\x9b\x7c\x55\x49\x91\x46\x45\x2e\x14\x89\x9e\x5d\xef\xab\x3e\ -\x70\x23\xf2\xe7\xae\xe7\x6d\xd7\x5b\xbd\x38\x5e\x33\x0f\x2c\xea\ -\x6f\x06\x27\x58\x10\x4b\x9a\x62\x0a\xb3\x26\xf8\x49\x89\x63\xfc\ -\x68\x30\x0b\x13\x22\xa8\x74\xa6\x1c\x73\x4a\x88\x6d\x3a\x06\x95\ -\x98\x5b\x92\x9a\xce\x54\x60\x93\x39\x96\x4d\xa8\x41\x49\xf1\x0a\ -\xc9\x9e\xda\x58\x14\xbf\x19\xbf\x19\xf9\x57\x6d\x08\x25\xb6\x3e\ -\x87\x43\x50\x62\x31\x61\x30\xcc\x88\x34\x89\x6d\x4d\xa9\x89\x25\ -\x61\xb6\xc1\xb1\xc5\xa4\x45\x2d\x3a\x05\xdf\x28\xa4\x6d\x71\xd3\ -\x80\xdf\x24\xb3\x85\xc9\xa6\xb9\x23\x75\x2c\x13\x9e\x01\x09\xa9\ -\x69\x5a\x52\xd7\xd0\xa4\xc2\x14\x8e\xe1\x19\x26\x76\x08\x07\x77\ -\x3a\x45\x14\x43\x65\x28\x81\xcc\xd0\x00\x22\xa5\x70\xa6\x88\x61\ -\x53\x52\x87\x38\x50\x6b\x81\xb9\x23\x98\x25\xa6\x0c\x9a\x47\x61\ -\x5e\x08\x55\x31\x99\xb0\x28\x07\x09\x73\x98\x60\x0e\x54\x45\x4a\ -\x06\xc9\xa6\xda\xdc\x05\x97\x0c\xd2\x08\x62\x53\x66\xe5\x45\x51\ -\xca\x8d\x6f\x35\x6c\xda\x13\x69\xd3\x63\xd2\xd1\xcb\xed\x47\x47\ -\x70\x3c\x3b\x28\x8e\x22\x60\x4d\x9c\x20\x6f\x9b\xbc\xba\xd9\x36\ -\x51\x27\xa7\xd5\xd4\xa7\xce\x00\xcf\xf4\x41\x2d\x29\x18\x6e\x75\ -\xd5\x26\xff\x6e\xde\x43\x35\x6f\x18\x2c\xef\x69\xde\x44\x32\xc2\ -\xad\x29\x58\xaf\x43\x24\x15\x54\x9b\xb7\x89\x2d\x47\x02\xf9\xa7\ -\x04\x98\x6f\x3a\x0e\xd8\xaa\xb6\x6f\x62\x0a\x26\xa8\xb6\x0b\x2a\ -\x84\x6d\x5a\xda\xbe\xb9\x49\x6d\x21\xa7\x26\xa6\x60\x35\x36\x63\ -\xb9\x7d\x83\x90\x48\xfd\x72\x0d\xf4\x36\xa7\x9c\x59\xd2\xa0\xd8\ -\x91\xc2\x04\xd3\x9e\x82\xc5\x42\x99\x26\x98\xa4\xf6\x1e\x02\x1c\ -\x05\xd8\xb8\xc0\xd4\xe1\x42\x30\x6d\xe3\x16\x65\x26\x17\x5a\x66\ -\x9b\x42\x68\xdf\x02\x09\x09\xb1\xc0\xee\x25\xf8\x09\xc2\x4d\xa8\ -\xe6\x15\x1b\x17\x47\x23\xb7\x6b\x23\x97\x56\x6d\xe4\xbc\x32\x72\ -\x2e\x2b\x2b\x67\x17\x56\xce\x2f\xac\xdc\x2e\xad\x9c\x49\x28\xab\ -\xcd\xd0\xfb\x32\xf3\x66\x2c\x76\x16\x87\x5d\x1b\x09\xbe\x2f\x0e\ -\xa3\x98\xd6\x2f\x6c\x35\x53\xa1\xde\xf3\xf4\xdf\x5b\x37\x51\x4d\ -\xe9\xbf\xe2\x20\x9a\xe7\x01\xda\xf7\x47\x6b\x5a\x1a\x2f\x97\xa9\ -\xd2\xf6\xdd\x1a\xc1\x55\xd1\x1b\x87\x51\xa1\x16\x96\xf1\x1a\xad\ -\x42\xb2\x5a\x51\xc5\x6a\x97\x1a\x08\xbc\xa8\x53\x9c\xd1\x77\x14\ -\xea\xd8\x2b\xa7\x4d\xf3\x1b\x60\x49\xbe\x85\xcc\xc9\x23\x32\xb3\ -\xd3\xa9\xe6\x68\x37\x9a\x74\x1d\x49\x8e\x61\xa4\x02\xaa\x0b\xe7\ -\x1c\xcf\xe7\x6d\x96\xdd\x0a\xcd\x4b\xe4\x72\x2b\x86\xe6\x59\x2c\ -\x1f\x66\x61\x60\x2e\x87\xd9\x5f\x0c\x0e\xc3\xa1\x7d\x82\x44\xc5\ -\x58\x6e\x3b\xec\x46\x7c\xad\xcf\x4a\x83\xa8\x73\xa1\xcf\x2a\x7b\ -\xfa\xf0\x1f\xf2\x7c\xe6\x3d\ -\x00\x00\x0a\xd8\ -\x00\ -\x00\x73\x2b\x78\x9c\xed\x5d\x5b\x93\xa3\xb8\x15\x7e\x9f\x5f\x41\ -\x3c\x2f\x33\x15\x4b\xd6\x8d\x8b\xdc\xee\xde\x87\xdd\xda\xda\xad\ -\xda\xbc\x64\x37\x95\xc7\x29\x1a\x64\x37\x19\x0c\x0e\xe0\xb6\x3d\ -\xbf\x3e\x47\xdc\x8c\x2f\x90\x4c\xb5\x71\xb6\xa0\x99\x9a\xea\xe6\ -\x1c\x49\x48\x9f\xbe\x73\x74\x24\xd4\x68\xf1\xc3\x7e\x1d\x1a\xaf\ -\x2a\x49\x83\x38\x7a\x9c\x50\x4c\x26\x86\x8a\xbc\xd8\x0f\xa2\xd5\ -\xe3\xe4\x1f\x7f\xfc\x8c\x9c\x89\x91\x66\x6e\xe4\xbb\x61\x1c\xa9\ -\xc7\x49\x14\x4f\x7e\x78\xfa\xb0\xf8\x0b\x42\xc6\x8f\x89\x72\x33\ -\xe5\x1b\xbb\x20\x7b\x31\x7e\x8d\xbe\xa6\x9e\xbb\x51\xc6\xa7\x97\ -\x2c\xdb\xcc\x67\xb3\xdd\x6e\x87\x83\x52\x88\xe3\x64\x35\xfb\x6c\ -\x20\xf4\xf4\xe1\xc3\x22\x7d\x5d\x7d\x30\x0c\x03\x9e\x1b\xa5\x73\ -\xdf\x7b\x9c\x94\x19\x36\xdb\x24\xcc\x13\xfa\xde\x4c\x85\x6a\xad\ -\xa2\x2c\x9d\x51\x4c\x67\x93\x63\x72\xef\x98\xdc\xd3\x4f\x0f\x5e\ -\x95\x17\xaf\xd7\x71\x94\xe6\x39\xa3\xf4\x63\x23\x71\xe2\x2f\xeb\ -\xd4\xba\x36\x3b\x9e\x27\xa2\x52\xca\x19\x61\x33\xc6\x10\xa4\x40\ -\xe9\x21\xca\xdc\x3d\x3a\xcd\x0a\x75\xbc\x96\x95\x11\x42\x66\xa0\ -\x3b\xa6\xfc\xdf\x52\xcd\x53\x00\x74\x03\xff\xeb\xe4\x95\x00\xa7\ -\xf1\x36\xf1\xd4\x12\xf2\x29\x1c\xa9\x6c\xf6\xd3\x1f\x3f\xd5\x4a\ -\x44\xb0\x9f\xf9\x8d\x62\x2a\x3c\x4f\x9e\x7a\x02\x72\xe4\xae\x55\ -\xba\x71\x3d\x95\xce\x2a\x79\x9e\x7f\x17\xf8\xd9\xcb\xe3\x84\x0b\ -\x4c\x39\x5c\x66\x2e\x7c\x51\xc1\xea\x25\x3b\x97\x06\xfe\xe3\x04\ -\x6a\xcf\xa4\x53\xdc\x37\xc8\x41\x8b\x04\x65\xc1\xf3\x5a\x43\xb0\ -\x64\x98\x1a\x09\x35\xb9\x5d\xa4\xa9\x9a\x30\xf7\x63\x4f\xd7\x09\ -\x8a\x54\xeb\xc0\xdd\x66\xf1\x1a\x7a\xcd\xf3\x42\x37\x4d\x83\x65\ -\xe0\xc1\x4d\x1c\x6d\xc2\xed\x2a\x88\xbe\x6c\x23\x3f\xfe\xa2\xfc\ -\x20\xfb\x92\xb8\x69\xa6\x12\x5c\x61\x58\x3f\x50\xed\x37\x71\x92\ -\xa1\xbd\xbf\x01\x24\x2d\xfb\xaa\xf2\x50\x29\x9f\x40\xbb\xf0\xd5\ -\x32\xd5\xa9\x8a\x66\xe9\x3b\x68\x97\x3d\x31\x66\xb9\xb6\xae\xa5\ -\xae\xa2\xff\x1a\xa8\xdd\x31\xed\xb3\x9b\x16\xd0\x19\xc6\xc6\x5d\ -\x01\xcd\xc2\x38\x79\x9c\x7c\x5c\xe6\x57\xa9\x78\x8e\x13\x5f\x25\ -\x95\xca\xca\xaf\x13\x55\x0c\x5d\x11\x64\x87\xc2\xb0\xca\xb2\xab\ -\xfa\xea\x52\x6b\x3d\xb9\xae\x4f\x5f\x5c\x3f\xde\x3d\x4e\xd8\xb9\ -\xf2\x5b\x1c\xaf\x1f\x27\x26\x36\xa5\x23\x09\x3d\xd7\x7a\xfb\xc7\ -\x09\x12\x12\xdb\x84\x3b\xf2\x42\x09\x8f\xb3\x31\xb3\xa5\x60\xa6\ -\x7d\xa1\xdc\x26\x09\x18\x1e\x0a\xdd\x83\x82\x36\xe5\x3f\xaa\xe2\ -\xd3\x97\x78\xb7\x4a\x34\x36\x59\xb2\x55\xe7\x39\xb5\x06\x3d\x3f\ -\xc7\xfb\xeb\x6a\xe0\xc1\x56\x9b\x34\xda\x46\x41\x06\x66\xb3\xd9\ -\x37\x4b\xdd\x06\xbe\x4a\xaf\x67\x4c\x23\x77\x83\x56\x61\xfc\xec\ -\x86\xd7\x13\xec\x02\xe0\xcd\x0e\x95\x0c\xa7\xbc\xee\x82\xf3\x14\ -\x15\xdd\x6d\xe2\xb4\xa4\x80\xba\x5f\x74\x43\xa9\x3a\xb4\xab\xd6\ -\xee\x3e\x58\x07\xdf\x14\x00\x43\x73\xd6\x01\xb3\x4e\x60\x29\xb2\ -\x19\x46\x76\xd0\xa6\xbb\x3f\x68\xd9\xa4\x12\x6a\x3c\xb5\x80\x49\ -\x69\xd7\xc2\x38\x09\xc0\x22\x1a\xd5\xa9\x44\x87\xa6\x48\x1b\x3a\ -\xf8\xe9\x7d\x4e\xaf\x9c\x7c\xf6\xb9\xee\xd0\xd4\x95\xac\x9f\x5d\ -\xd2\x3e\x97\xaf\x55\xe6\xfa\x6e\xe6\x1e\x6d\xa0\x92\x40\xdd\x48\ -\xd5\x32\xf0\x99\xf3\xbf\xff\xf4\xf3\x53\xf9\xa0\x85\xe7\xcd\xff\ -\x19\x27\x5f\xab\xe7\x1a\x86\x4e\xe0\x3e\xc7\x5b\x40\x7a\xf2\x54\ -\x8b\x17\xbe\x37\x07\x2f\x07\xd6\xff\x14\xac\x81\xd9\xda\x41\xfe\ -\x15\xbc\xda\x62\x76\x54\x9c\x24\xd6\x60\x1d\x0b\x2d\x8a\x4d\x54\ -\xe1\x2e\xaf\x8e\x19\xbe\xb7\x0e\x74\xa6\xd9\xef\x59\x10\x86\xbf\ -\xea\x87\x94\x2d\x6e\x14\x1a\x64\xa1\x3a\x0a\x17\xb3\xb2\xf6\x65\ -\xdb\x66\x8d\xc6\x2d\x66\x55\xeb\xf3\xbb\xd5\x11\x95\x13\xa3\xa8\ -\x3b\x3a\x74\x9f\x15\x30\xf4\x37\xad\x34\x2e\xb4\xab\x24\xde\x6e\ -\xd6\xb1\xaf\xca\xec\x15\x9a\xab\x13\x1a\x70\xca\x69\xdd\x83\x59\ -\xe2\x46\xa9\x46\x06\xfa\xc1\xcd\x92\x60\xff\x89\x62\x41\x84\x6d\ -\x51\x39\x25\xf0\x8f\x62\x2e\x1c\xf0\xb7\x53\x9b\x63\xa9\xe5\x02\ -\x44\xd2\x14\x8c\x11\xf6\xb9\x46\x7e\x91\x28\x2f\x6b\x74\x4e\x4e\ -\x08\x4b\xe8\xcb\x9a\x34\xe4\x27\x5c\x33\x0c\x48\x86\x2c\xec\x10\ -\x7d\xb1\x86\x5c\x3b\x16\x93\x63\x3d\x5a\xf0\xa6\xbc\xb2\x2d\x81\ -\x65\xae\x13\x0d\x5d\x69\x99\x66\x91\xab\x1c\x65\x8e\xad\xd6\x15\ -\x34\x1d\x2e\x11\x45\x4e\x43\x95\x66\x87\x10\xd0\x5a\x42\x5f\xce\ -\x3f\x12\xe2\xba\x8e\xf3\xa0\x6f\x50\xe9\x33\xe7\xb4\xb8\x4d\xb6\ -\x21\xf8\xfe\x57\x15\xc5\xbe\xff\x90\x66\x49\xfc\x55\xcd\xc1\x4b\ -\x5b\x2e\x21\xe5\x6d\xe1\x1a\xe6\x04\x73\x56\xb4\xa7\x92\x03\x5f\ -\x54\x12\x82\xed\x66\x73\x51\xc9\x7c\x17\x7c\x6e\x92\xb8\x87\x79\ -\x04\xf1\x4e\x25\xad\x9f\xd9\x60\xd4\x1b\x90\xa5\x14\xdb\xe7\x28\ -\xf5\x8c\x2c\xa2\xe3\xc0\x96\x97\xde\x8e\xde\x11\x5a\x39\x0e\x68\ -\x11\xc5\xce\xe9\x20\x73\x07\xd6\x22\x73\x1c\xe0\x52\x56\x22\x75\ -\x47\x70\xed\x71\x40\x6b\x63\x99\x5f\xe6\x7d\x79\x3b\x12\xe2\x32\ -\x56\x84\x09\x77\x75\xb8\x63\xa1\x2e\xb5\xff\x2f\x2e\x17\x91\x71\ -\xc0\xdb\x1a\xe2\x5a\xe2\xb6\xc0\xb6\xc3\xb9\x5c\x7a\xde\xe0\xe1\ -\x34\x1d\x9c\x07\x65\xce\xad\xe9\xda\x8e\xab\x2f\x5c\x77\x30\xb8\ -\xb6\xce\x17\xfa\xc2\x15\x89\x71\x20\xdb\x36\x5b\xb8\xb5\xfd\x77\ -\xcd\x6c\x87\xe4\x01\x5a\x67\x5f\xbd\x11\xd5\xe9\x40\x76\x48\x4c\ -\x6d\x9b\x7c\xdd\x9c\xa9\xa4\xcb\xf6\x87\xc4\xd5\xd6\xe9\x6c\x7f\ -\x4e\x15\xb1\x71\x90\xb5\x6d\x32\x7b\x7b\xb2\xf2\x71\x70\xb5\x75\ -\x75\xa0\x37\xae\x5a\xe3\x60\x6a\xdb\xda\x40\x0f\x6e\xb5\x63\xca\ -\x3a\x24\xaa\xb6\xae\xb6\xf4\xe8\x56\x47\x42\xd6\xd6\xa5\x96\x1e\ -\xa3\xab\xb1\xcc\xb1\xda\x56\x5a\xfa\x88\xaf\xba\x30\x1d\x92\x2b\ -\x68\x5d\xbd\xea\x33\xc2\xea\xf2\xb3\x43\x22\x6c\x9b\x33\xe8\x87\ -\xb0\xe3\x99\x14\xb4\x2c\xb5\xf4\x04\x6b\xc7\x84\x60\x50\xb0\x5a\ -\x57\x90\xd2\xb0\x72\xbb\xbf\x85\x6c\xd1\xc1\x59\x87\x58\xd6\x60\ -\xc0\xa5\x2d\x33\xd9\x3e\xc1\xa5\x5d\x7e\x76\x48\xe8\x96\x33\x2f\ -\x26\xef\x08\xae\xec\x7a\x01\x33\x24\x70\x11\xc3\x79\x45\xc8\xf9\ -\x6c\xa1\x5f\xea\x9a\x5d\xbb\x0a\x86\x84\x2f\x85\x20\xe1\x8e\xc8\ -\xda\x5d\xe3\xd9\x90\x70\x2d\x03\x5b\xeb\x7c\x3d\xa6\x67\xda\x9a\ -\x88\x74\x4c\x75\x87\x04\x30\x44\xb7\x17\x53\x84\xfe\xbd\xee\x68\ -\xf8\x0b\x33\xb3\xab\x51\x6e\xdf\x6e\xb7\xf3\xe5\xc2\x90\x00\x6e\ -\x0d\x78\xc5\xad\x27\xbd\x23\x09\xc3\xda\x01\xbd\xe2\x29\x6e\x43\ -\xd9\x0e\x5f\x60\x9a\x42\x0c\x06\xd9\xb6\xe9\x43\x7f\xc8\x0a\xc4\ -\x3a\x5e\xdb\x0e\x09\xdc\xb6\xd9\xc3\xcd\xdd\x80\x83\x3a\x5e\x85\ -\x0d\xc9\x11\xb4\x22\xda\x1b\x5b\x9d\x4e\x6c\x87\xc4\xd6\xd6\xe9\ -\xd8\xcd\xe9\x9a\xaf\x7e\x89\x0e\x27\x30\x24\xca\xb6\xc3\xda\xa7\ -\x87\xed\xda\x73\x34\x24\xd2\x5e\x99\xe3\xde\x9e\xae\x7c\x2c\x71\ -\xd6\x35\x34\x7b\x63\xa9\xd5\xb5\x0e\x33\x24\x8e\xb6\xad\x17\xf4\ -\xe0\x57\xed\x2e\xbb\x1f\x12\x53\x5b\x31\xed\xd1\xa9\x5a\x88\x77\ -\xbc\xbb\x1d\x12\x63\xdb\x16\x60\x7a\x0d\xb3\x28\x92\x1d\x0b\xdf\ -\x43\x82\xb7\x6d\x01\xa6\x9f\x40\x0b\x39\x23\x99\x1c\xb4\xc2\xda\ -\x6b\xa0\x65\x77\x6d\xe8\x18\x12\x6b\x5b\x9d\x42\x3f\xac\x15\x63\ -\x79\x4d\xd3\xbe\x04\xd3\x0f\xb0\x0c\xc9\x91\xbc\x47\x68\xdf\x78\ -\xd0\xcf\x8e\x83\xae\x45\xc3\x41\xfd\xe5\x5c\xeb\x9e\x83\x9e\x36\ -\x1b\x74\xed\xf1\x1c\x12\xb0\xad\xdb\x0d\x7a\xda\x67\x30\x9a\x6f\ -\x6e\xb4\xee\x34\xe8\x6d\x8b\xc1\x58\x3e\xb9\x71\x6d\x93\x41\x4f\ -\xbb\x0b\xc6\xf2\x77\xdf\xad\xfb\x0b\x7a\xdc\x58\x30\x96\xa1\xab\ -\x75\x6b\x41\x6f\x7b\x0a\xba\x5e\x1f\x0c\x09\xd9\xd6\x5d\x05\x3d\ -\x6e\x27\xe8\xda\x50\xf0\x27\xc4\x76\xd5\x52\x59\x78\xb8\x55\x3f\ -\x7c\x5e\x7e\x65\xf0\xb2\xa4\x63\xee\xc6\xd7\xc1\xf2\x5f\x43\x37\ -\x53\x9f\x10\x27\x25\xaa\x53\x24\x4b\x10\xf9\xe7\x33\x14\x57\x9c\ -\x51\xd9\xfc\x32\xdb\x69\x7f\x5f\xaf\xd8\x77\xa0\xd8\xac\x79\x85\ -\xa2\x63\x16\x1d\xfa\x16\x14\x9b\x55\xbc\x32\x36\x88\x93\x04\x1d\ -\x4c\xea\xa6\x60\xc1\xd8\x6b\xbb\xc0\x0b\x8a\x5f\x09\x7b\x2f\x6d\ -\xa1\xdd\x6a\xfe\xcb\xc7\x2c\xdb\x12\xd5\x1f\xb5\x3c\xf9\xa0\xdd\ -\x10\x3a\xae\x18\x7c\xee\xd2\x77\xd7\xa6\x82\xef\x7d\xf7\x86\xbe\ -\x93\x77\x33\x3b\x76\x55\xf1\xde\x75\x6f\x31\x3b\x18\x3d\xe5\x7d\ -\x7c\xa6\x85\xed\xfc\x4f\x42\xdf\x3b\xef\xed\x9d\x47\xf8\xc9\x8c\ -\xfd\xcd\xbd\x06\xd1\xf0\xfb\x20\xd7\xaf\xb5\x59\xc8\xba\xa9\x9d\ -\xd9\xc5\x47\x56\x9c\xf7\x6e\xeb\xd3\xce\xce\x36\x83\xf7\x62\x68\ -\xef\x11\xc9\x4d\x0d\x2d\x7f\x3f\x7f\x17\x53\x7b\xef\xb8\xdb\xc6\ -\x23\xf9\xab\xff\xbb\xf4\xdc\x7b\x24\x79\x53\x27\x29\xce\xbe\xda\ -\xdd\x4f\x3c\xf2\x1e\x40\xde\xd6\x4d\xea\x2d\x0b\xf6\x5d\xcc\xed\ -\xbd\xeb\x6e\x6e\x6e\xa2\x7f\x83\xfb\xf3\x38\xc9\xc5\x6c\x55\x9d\ -\xcd\x50\xfd\xb2\x71\xb3\x97\xaa\x94\xb2\x07\xf3\x13\x58\xf4\x8a\ -\xaf\xbe\x1e\x96\x71\x94\xa1\x5c\x03\x00\x27\x6b\x37\x2c\x24\xaf\ -\x6e\x12\xb8\x51\x76\x22\xdb\xe5\xf0\x9c\x88\xa0\x3b\x54\xe6\xbd\ -\x9c\xca\x82\x6f\x6a\xbe\x56\x7e\xb0\x5d\x3f\x84\x41\xa4\xca\xa3\ -\x44\x4e\xd2\x2c\xdd\x75\x10\x1e\xe6\xbf\xbb\x51\xfa\x80\xaa\x96\ -\xa1\x22\xfb\x46\x79\xf5\x61\x37\x45\x8a\x4c\xed\x33\x48\xe5\x2b\ -\xa8\x10\x29\xee\xdc\x30\x58\x45\xf3\x34\x73\x93\xac\x10\xf8\xca\ -\x8b\x93\x22\x4f\x4e\x94\x33\x21\xd2\x35\x29\x34\xa1\xca\x80\x66\ -\xa8\x3c\xf3\xa3\xaa\xd6\x2e\x4e\xfc\x73\x59\x5e\x46\xbd\x76\x5c\ -\xe4\xde\x25\x41\x06\x49\x90\x3e\x9e\x62\x1e\x26\x28\x7b\x7e\xf0\ -\x03\x4d\x3a\xfd\xe4\x30\x4b\x1e\xf4\x51\x38\x79\xb3\xd3\x97\x60\ -\x99\xcd\xab\xdb\xb2\xda\x91\xf7\x02\xe0\x17\xf5\xf6\x83\x74\x13\ -\x02\xb1\x83\x28\x4f\x10\xbf\xaa\x64\x19\xc6\xbb\xf9\x6b\x90\x06\ -\xcf\xa1\x7a\xc8\x7f\x06\xa1\xe6\x79\x25\xaa\x16\xeb\x8b\xae\x3b\ -\xb5\xbe\xd2\xd6\x9a\x66\x52\x18\x1a\xc7\x22\x3f\xb1\x48\xb0\x87\ -\xb5\x9b\x7c\x55\x49\x91\x46\x45\x2e\x14\x89\x9e\x5d\xef\xab\x3e\ -\x70\x23\xf2\xe7\xae\xe7\x6d\xd7\x5b\xbd\x38\x5e\x33\x0f\x2c\xea\ -\x6f\x06\x27\x58\x10\x4b\x9a\x62\x0a\xb3\x26\xf8\x49\x89\x63\xfc\ -\x68\x30\x0b\x13\x22\xa8\x74\xa6\x1c\x73\x4a\x88\x6d\x3a\x06\x95\ -\x98\x5b\x92\x9a\xce\x54\x60\x93\x39\x96\x4d\xa8\x41\x49\xf1\x0a\ -\xc9\x9e\xda\x58\x14\xbf\x19\xbf\x19\xf9\x57\x6d\x08\x25\xb6\x3e\ -\x87\x43\x50\x62\x31\x61\x30\xcc\x88\x34\x89\x6d\x4d\xa9\x89\x25\ -\x61\xb6\xc1\xb1\xc5\xa4\x45\x2d\x3a\x05\xdf\x28\xa4\x6d\x71\xd3\ -\x80\xdf\x24\xb3\x85\xc9\xa6\xb9\x23\x75\x2c\x13\x9e\x01\x09\xa9\ -\x69\x5a\x52\xd7\xd0\xa4\xc2\x14\x8e\xe1\x19\x26\x76\x08\x07\x77\ -\x3a\x45\x14\x43\x65\x28\x81\xcc\xd0\x00\x22\xa5\x70\xa6\x88\x61\ -\x53\x52\x87\x38\x50\x6b\x81\xb9\x23\x98\x25\xa6\x0c\x9a\x47\x61\ -\x5e\x08\x55\x31\x99\xb0\x28\x07\x09\x73\x98\x60\x0e\x54\x45\x4a\ -\x06\xc9\xa6\xda\xdc\x05\x97\x0c\xd2\x08\x62\x53\x66\xe5\x45\x51\ -\xca\x8d\x6f\x35\x6c\xda\x13\x69\xd3\x63\xd2\xd1\xcb\xed\x47\x47\ -\x70\x3c\x3b\x28\x8e\x22\x60\x4d\x9c\x20\x6f\x9b\xbc\xba\xd9\x36\ -\x51\x27\xa7\xd5\xd4\xa7\xce\x00\xcf\xf4\x41\x2d\x29\x18\x6e\x75\ -\xd5\x26\xff\x6e\xde\x43\x35\x6f\x18\x2c\xef\x69\xde\x44\x32\xc2\ -\xad\x29\x58\xaf\x43\x24\x15\x54\x9b\xb7\x89\x2d\x47\x02\xf9\xa7\ -\x04\x98\x6f\x3a\x0e\xd8\xaa\xb6\x6f\x62\x0a\x26\xa8\xb6\x0b\x2a\ -\x84\x6d\x5a\xda\xbe\xb9\x49\x6d\x21\xa7\x26\xa6\x60\x35\x36\x63\ -\xb9\x7d\x83\x90\x48\xfd\x72\x0d\xf4\x36\xa7\x9c\x59\xd2\xa0\xd8\ -\x91\xc2\x04\xd3\x9e\x82\xc5\x42\x99\x26\x98\xa4\xf6\x1e\x02\x1c\ -\x05\xd8\xb8\xc0\xd4\xe1\x42\x30\x6d\xe3\x16\x65\x26\x17\x5a\x66\ -\x9b\x42\x68\xdf\x02\x09\x09\xb1\xc0\xee\x25\xf8\x09\xc2\x4d\xa8\ -\xe6\x15\x1b\x17\x47\x23\xb7\x6b\x23\x97\x56\x6d\xe4\xbc\x32\x72\ -\x2e\x2b\x2b\x67\x17\x56\xce\x2f\xac\xdc\x2e\xad\x9c\x49\x28\xab\ -\xcd\xd0\xfb\x32\xf3\x66\x2c\x76\x16\x87\x5d\x1b\x09\xbe\x2f\x0e\ -\xa3\x98\xd6\x2f\x6c\x35\x53\xa1\xde\xf3\xf4\xdf\x5b\x37\x51\x4d\ -\xe9\xbf\xe2\x20\x9a\xe7\x01\xda\xf7\x47\x6b\x5a\x1a\x2f\x97\xa9\ -\xd2\xf6\xdd\x1a\xc1\x55\xd1\x1b\x87\x51\xa1\x16\x96\xf1\x1a\xad\ -\x42\xb2\x5a\x51\xc5\x6a\x97\x1a\x08\xbc\xa8\x53\x9c\xd1\x77\x14\ -\xea\xd8\x2b\xa7\x4d\xf3\x1b\x60\x49\xbe\x85\xcc\xc9\x23\x32\xb3\ -\xd3\xa9\xe6\x68\x37\x9a\x74\x1d\x49\x8e\x61\xa4\x02\xaa\x0b\xe7\ -\x1c\xcf\xe7\x6d\x96\xdd\x0a\xcd\x4b\xe4\x72\x2b\x86\xe6\x59\x2c\ -\x1f\x66\x61\x60\x2e\x87\xd9\x5f\x0c\x0e\xc3\xa1\x7d\x82\x44\xc5\ -\x58\x6e\x3b\xec\x46\x7c\xad\xcf\x4a\x83\xa8\x73\xa1\xcf\x2a\x7b\ -\xfa\xf0\x1f\xf2\x7c\xe6\x3d\ -\x00\x00\x0b\xb1\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x65\x6e\x74\x65\x72\ -\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ -\x36\x36\x2e\x32\x37\x39\x39\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x35\x2e\ -\x39\x38\x32\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ -\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ -\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ -\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ -\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ -\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ -\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ -\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ -\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ -\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ -\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ -\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\ -\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ -\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x32\ -\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x32\x65\x32\ -\x65\x32\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x33\x2e\x37\x31\x37\x38\x39\x30\x30\x32\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\ -\x33\x2e\x37\x30\x31\x39\x36\x30\x37\x20\x48\x20\x33\x32\x20\x56\ -\x20\x33\x31\x2e\x35\x38\x38\x36\x37\x32\x20\x48\x20\x30\x20\x5a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x30\x32\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\ -\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ -\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ -\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x63\x37\x65\x39\x61\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x31\x35\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\ -\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\ -\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ -\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ -\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x65\x63\x74\x33\x38\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x39\x31\ -\x35\x30\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x37\x2e\ -\x38\x38\x34\x39\x36\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x39\x2e\x33\x37\x31\x30\x32\x30\x33\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x37\x36\x30\x32\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\ -\x35\x36\x31\x30\x34\x35\x36\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x31\x2e\x30\x36\ -\x36\x36\x36\x37\x2c\x32\x35\x2e\x36\x36\x32\x37\x34\x36\x20\x32\ -\x36\x2e\x34\x2c\x31\x38\x2e\x36\x39\x31\x30\x36\x38\x20\x32\x31\ -\x2e\x30\x36\x36\x36\x36\x37\x2c\x31\x31\x2e\x37\x31\x39\x33\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\ -\x00\x00\x06\xf7\ -\x00\ -\x00\x18\xf1\x78\x9c\xed\x58\x5b\x8f\xeb\x36\x0e\x7e\x9f\x5f\xa1\ -\xcd\x79\xe9\x62\x23\x5b\x92\xaf\x72\x2e\x7d\xd8\x83\x02\x05\xce\ -\xbe\x6c\xbb\x2d\xb0\x2f\x85\x62\x2b\x89\x3a\xb6\x95\x95\x95\x49\ -\xd2\x5f\x5f\xca\xb7\xc4\x99\x4c\x31\xc5\xb6\x40\x1f\x46\xc0\x4c\ -\x22\x92\xa2\x28\x92\x9f\x48\x65\xf9\xf5\xb9\x2a\xd1\x8b\x34\x8d\ -\xd2\xf5\x6a\x46\x3d\x32\x43\xb2\xce\x75\xa1\xea\xdd\x6a\xf6\x9f\ -\xef\xbf\xc1\xe9\x0c\x35\x56\xd4\x85\x28\x75\x2d\x57\xb3\x5a\xcf\ -\xbe\x5e\x3f\x2d\xff\x86\x31\xfa\xa7\x91\xc2\xca\x02\x9d\x94\xdd\ -\xa3\x6f\xeb\xe7\x26\x17\x07\x89\xbe\xda\x5b\x7b\xc8\x7c\xff\x74\ -\x3a\x79\xaa\x27\x7a\xda\xec\xfc\xbf\x23\x8c\xd7\x4f\x4f\xcb\xe6\ -\x65\xf7\x84\x10\x82\x7d\xeb\x26\x2b\xf2\xd5\xac\x5f\x70\x38\x9a\ -\xb2\x15\x2c\x72\x5f\x96\xb2\x92\xb5\x6d\x7c\xea\x51\x7f\x76\x15\ -\xcf\xaf\xe2\xb9\xdb\x5d\xbd\xc8\x5c\x57\x95\xae\x9b\x76\x65\xdd\ -\x7c\xba\x11\x36\xc5\x76\x94\x76\xd6\x9c\x82\x56\x88\x72\xce\x7d\ -\xc2\x7c\xc6\x30\x48\xe0\xe6\x52\x5b\x71\xc6\xd3\xa5\x60\xe3\xa3\ -\xa5\x8c\x10\xe2\x03\xef\x2a\xf9\x3e\xa9\xac\x01\x87\x1e\xe0\x6f\ -\x14\x1f\x08\x5e\xa3\x8f\x26\x97\x5b\x58\x27\xbd\x5a\x5a\xff\xf3\ -\xf7\x9f\x47\x26\x26\x5e\x61\x8b\x1b\x35\x83\x3f\x27\xbb\x4e\x9c\ -\x5c\x8b\x4a\x36\x07\x91\xcb\xc6\x1f\xe8\xed\xfa\x93\x2a\xec\x7e\ -\x35\x0b\x42\x8f\x06\x30\xa2\x96\xb8\x97\x6a\xb7\xb7\xf7\x54\x55\ -\xac\x66\x60\x3d\xe3\x69\x37\xbf\x49\x0e\xda\x09\xf4\x8a\xb3\x91\ -\x43\x3c\xce\x3c\x8a\x0c\x8d\x82\xa4\x93\x19\x8e\x90\x15\x3a\x77\ -\x36\x81\x4a\x59\x29\x71\xb4\xba\x82\xa8\xe5\x79\x29\x9a\x46\x6d\ -\x55\x0e\x13\x5d\x1f\xca\xe3\x4e\xd5\x3f\x6d\x95\xfd\xe9\x50\x6a\ -\xeb\x0d\xbe\x1b\x37\x92\xe7\x83\x36\x16\x9f\x8b\x03\x78\x30\x4e\ -\x1e\x32\x2f\x03\x73\x0d\xdc\x65\x21\xb7\x8d\x93\xea\x8e\xe3\x66\ -\x70\x9e\x64\x86\xfc\x96\x3b\x5a\xe7\x4c\x2b\x5e\x94\x3c\x5d\x65\ -\x37\xa2\xe9\x5c\x86\xd0\x41\xec\x20\xbd\x4a\x6d\x56\xb3\x4f\xdb\ -\x76\xf4\x8c\x8d\x36\x85\x34\x03\x2b\x6e\xc7\x84\xa5\x21\x04\xca\ -\x5e\x3a\x40\xf5\xba\x07\x7b\x9d\xd6\x91\x4f\x1e\xf3\x9b\xbd\x28\ -\xf4\x69\x35\x63\xf7\xcc\x5f\xb4\xae\x56\xb3\xc4\xe3\x34\x25\x21\ -\x4d\xee\xd9\xf9\x79\x35\xc3\x34\xf1\xa2\x30\x0c\x5e\x33\x61\x3f\ -\x96\x7a\x94\x90\x90\x44\xaf\x98\x47\x63\x00\x71\xb8\x14\x17\x09\ -\x87\x6a\x3f\x68\x2f\xd4\xec\xf5\x69\x67\x9c\x73\xac\x39\xca\xfb\ -\x95\x8e\x83\x37\x1b\x7d\x7e\xcc\x86\x04\x38\x3a\x2c\xe3\x63\xad\ -\x2c\xe0\xe5\x70\xbe\xd5\x7a\x54\x85\x6c\x1e\x2f\x3c\xa9\x1a\x7c\ -\x80\xfb\xcc\xa5\xc1\xe8\xe2\x7b\x89\x21\x8d\x13\x92\xbe\x21\x01\ -\xa6\xbd\x72\x73\xcf\xba\xbc\xcd\xaa\xc4\x59\x55\xea\x17\x09\xe7\ -\xa6\xf7\x22\x4d\x2d\x0e\x78\x57\xea\x8d\x28\x7b\xeb\xd7\xad\xc4\ -\x72\xe2\x96\x6e\x11\x42\xf6\xe2\x30\x7b\xbe\x38\xda\x6c\x20\x3a\ -\x7f\x3a\x42\x90\xc4\xd1\x48\xd4\x46\x01\x14\x6e\xec\x1d\x48\x97\ -\x5b\x92\x43\x38\x5c\xd0\xe7\x36\xbf\xda\xec\x4b\xee\x79\x97\x5b\ -\x5e\x9f\xf6\xfe\xeb\xbc\x6f\xe9\x95\xb4\xa2\x10\x56\x5c\x41\x30\ -\x50\x18\xe7\x64\x38\x19\x5c\x96\xd9\xbf\x3f\x7f\xb3\xee\x37\x5a\ -\xe6\x79\xf6\xa3\x36\xcf\xc3\xbe\x08\x39\x01\xb1\xd1\x47\x08\xc5\ -\x6c\x3d\x92\x97\x45\x9e\xc1\xf5\x06\xb0\x5f\xab\x0a\x52\xdb\xdd\ -\x8c\xff\x80\xeb\x6c\xe9\x5f\x19\x13\x61\xe7\xac\xab\xd2\x4e\xad\ -\x91\xdd\x3d\xf9\xb0\x58\x14\x79\xa5\xdc\x22\xff\x3b\xab\xca\xf2\ -\x5b\xb7\x49\x7f\xe2\x1b\xa5\xca\x96\xf2\x4a\x5c\xfa\xbd\xf5\xfd\ -\xd9\xfc\x9b\xc3\x2d\xfd\xe1\xf4\xed\x6c\x77\xf5\xca\x04\x14\x63\ -\xa0\x4b\xb1\x91\x90\x04\x5f\x1c\x13\xbd\xe2\xee\x8c\x3e\x1e\x2a\ -\x5d\xc8\x7e\xf9\xe8\x4d\x99\xdb\x31\x64\xf6\x52\x02\x7f\x0b\xd6\ -\x67\xfd\x45\xb3\x70\x13\xdc\x5f\x13\x19\xed\xa6\xe6\x58\xc2\x75\ -\xf7\x22\x6b\x5d\x14\x8b\xc6\x1a\xfd\x2c\xb3\x4f\x80\xe6\x94\x90\ -\x7e\xda\xa1\x25\x1b\xa7\xa5\xaa\x25\x98\x91\x35\xff\x3b\x0a\x23\ -\x6f\xa9\x3f\x6b\x55\x67\xe0\x37\x69\x06\x6a\x3b\x29\x21\xe3\x6d\ -\x16\x0e\xb4\x42\xc0\x4d\x64\x8c\xb8\x64\x35\x54\xff\x5b\xaa\xde\ -\x6e\x1b\x69\xaf\x3b\x0d\xa6\x12\x2f\xe8\xc7\x24\xd1\xdd\x71\x03\ -\xce\xe9\x48\x7c\x58\x90\xdc\x78\x5c\x94\xdc\x98\xa0\x02\xf2\x9b\ -\x7b\x61\x12\x70\x12\xc4\x12\xd3\x78\x64\x98\x89\x98\x01\xb9\xc0\ -\x0b\xa0\x30\xc5\x3c\x1d\xb3\x62\x79\x10\x76\xff\xc8\xfb\x37\xa7\ -\x74\x9e\x4d\xe5\xbd\x67\x47\x4c\xb1\xc3\xf9\xde\xc9\x9b\xa3\xb5\ -\xbf\xed\xe2\x31\x9e\xa3\x7d\x0e\x6b\x08\x8f\x5a\xe7\x8c\x79\x21\ -\x0a\x3c\x36\x1f\x68\x09\x8a\xbd\x70\x8e\x53\x2f\x6a\x9d\x8a\xa2\ -\xde\xbf\xc9\x8d\xc4\x40\x9b\x73\x2f\xbe\x4e\x58\xe7\xbf\x10\x7d\ -\x41\x01\x9b\xb3\xc4\x4b\x3a\x0d\x25\x1a\x94\xcd\x61\xa3\x49\x94\ -\x9c\x5b\x42\x12\x5c\x2f\x93\x6b\x79\xd0\x35\x1c\xd2\x6a\x83\xa1\ -\x50\xbc\x08\x7b\x34\xd2\xb9\xf9\xff\x77\x68\xe4\x31\xe6\x4e\xc1\ -\x83\xdf\xef\xce\xf7\x67\xec\x6f\x64\xe7\xab\x08\xd0\x5e\x66\x12\ -\x86\x78\x12\x86\xf0\x41\x18\xe2\x69\x18\xbe\x20\x16\x0e\x6e\xee\ -\x82\x0a\x31\x88\xbd\x6e\x93\xf7\xc4\x00\x07\xef\x8e\xc2\x2b\x39\ -\x6b\x44\xdd\xb8\xbb\x15\xe7\x50\x79\xa5\xc1\x6d\xa5\x88\xdf\x21\ -\x78\x71\xfd\xc3\x5d\xdd\x78\x1c\xde\xb6\xfb\x71\x31\x75\x63\xb1\ -\xd5\x50\xe1\x5b\x0e\xf8\x1d\xee\xf4\xb2\xa3\xbc\x08\xa3\x44\x6d\ -\x27\xb4\x53\x0b\xf0\x09\x09\xa2\x24\x6d\xbe\x9f\xd2\xa0\xf2\x66\ -\x50\xa5\xd4\xb1\x5a\xb8\xf0\xf7\x65\x7e\x22\xb3\x15\x95\x2a\x2f\ -\xd9\x77\x70\x88\x05\x1e\x0e\x85\xbb\xe5\x07\x99\x8f\x0d\x66\x27\ -\x61\xe5\xd9\x82\x54\x01\x27\x85\x7b\xab\x9d\x89\x52\xed\xea\x0c\ -\xde\x37\xc6\x76\x84\x02\x1a\x3e\xd3\xad\x69\xf3\xe7\x8e\xd8\x26\ -\x62\xc7\x29\xa5\x75\x0e\xeb\xcb\xed\x60\xd6\x09\xda\xbf\x7b\x5a\ -\xab\x63\xf4\x74\xb7\xfa\x64\x94\x05\x11\xec\x2a\x43\x56\x1a\x6c\ -\x37\x8b\x42\xb9\x4b\xd2\xed\x5c\x5a\xb3\x70\x6d\x68\x7b\xec\x66\ -\xaf\xb6\x36\x1b\xa6\xbd\xd9\x75\xbe\x07\xe7\x77\x76\x17\xaa\x39\ -\x40\x69\x81\xc7\x41\x2b\xa0\xa1\x2b\xdf\x96\xfa\x94\xbd\xa8\x46\ -\x6d\x4a\xb9\x68\x3f\x55\xe9\xd2\x7f\x20\x75\x95\x86\xe6\x74\xcb\ -\xc2\xfb\x4a\xd3\x83\xf5\x16\x3d\x1d\x52\x03\x8f\x87\x90\x15\x51\ -\x14\x2c\x2a\x61\x9e\xa5\xe9\x64\x64\x2d\x40\x25\xde\x88\xfc\xd9\ -\xd5\xba\xba\xc8\x44\x0e\x1d\xdf\xb1\x84\xb7\xe1\x14\x64\x00\x88\ -\xb4\x4d\xfa\x39\xc0\x90\x01\xbc\x48\x38\x77\xff\x1c\x56\x18\x74\ -\xb4\x51\x12\xcd\xdd\x2d\x15\xb3\x38\x48\x11\x80\x85\xb3\x30\x0a\ -\xd9\x9c\x12\x2f\x24\x69\xc2\x29\x0a\xe0\xa1\xd1\xa1\x06\xd0\x08\ -\x20\xba\xaa\xf8\x01\xb5\x3a\xff\xfb\x0a\x4a\x01\x21\xfc\x77\x03\ -\xe9\xda\x27\x41\x78\x5c\x6b\x01\x2d\x6a\xde\x8f\x0f\x50\x7c\x80\ -\xe2\x0f\x03\xc5\xbf\xa0\x0e\x30\x92\xa6\x1c\x0a\x49\x10\x79\x94\ -\x47\x3c\xe5\x63\x21\x81\xe2\xc0\x10\x64\x7f\x14\x84\x80\x08\x57\ -\xc2\x53\xce\x68\xe8\x5a\x02\x68\x40\x58\x1c\x42\xb5\x8a\x3c\x42\ -\x19\x89\x19\x82\x1a\x13\x25\x49\xc2\xe2\x39\xbc\xf1\xe0\x71\x48\ -\x28\xc2\x00\x1c\x9a\x24\x69\x4a\x63\x27\x18\x93\x94\x30\x47\x4c\ -\x79\x1a\x06\x34\x4e\xe7\xd0\x63\x25\xd4\x69\x7f\x03\x38\x98\x7e\ -\x40\xe7\x03\x3a\x7f\x55\xe8\xb8\x46\x25\x60\x00\x13\x0e\x1d\x17\ -\xa5\x9c\x07\x51\x84\xa8\xc7\x79\xec\x7e\xe2\x83\x12\x41\xe2\x34\ -\xa2\x8c\x03\x5c\x02\x4e\x69\x42\xe9\x9c\xc2\x12\xc6\xa3\x34\x45\ -\x1c\xaa\x46\x0a\x5f\x38\x94\x1c\x42\x49\x02\x08\x02\x28\x31\x78\ -\x51\x84\xa9\x2b\x29\x34\x21\x1c\xd0\x92\x7a\x24\x0a\x18\x74\x79\ -\x04\xf6\x0a\x03\xd8\xee\xb6\x57\x24\x6f\xe2\x06\xb3\x0f\xe4\x7c\ -\x20\xe7\xaf\x89\x9c\x0a\xc1\xbd\x0f\xa9\xce\x79\xea\x9e\x24\x50\ -\x15\xe2\x10\xd2\x1a\x92\x1e\xde\xd2\x89\x7b\x91\x90\x24\x82\x1a\ -\x81\x70\xe8\x85\x41\x44\xd2\x60\x0e\xdf\x38\x8b\x00\x1d\x08\x33\ -\x2f\x86\x4f\x36\x07\x15\x21\x61\x80\x38\xf8\x12\xc5\x00\x33\x58\ -\xc7\xa1\xc4\x00\xb6\x1e\xa8\xfa\x82\x86\xf7\x7c\xe0\x0a\xdd\x5b\ -\x9d\x1a\x0e\xff\x0c\xd8\x2c\xfd\xdd\xfa\x69\xe9\x7e\x78\x5a\x3f\ -\xfd\x0a\x4c\x29\xd2\x0a\ -\x00\x00\x0f\xa5\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x67\x62\x5f\x74\ -\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x2d\x31\x31\x2e\x35\x31\x30\x33\x33\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x37\ -\x2e\x30\x35\x35\x33\x31\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\ -\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ -\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\ -\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x67\x75\x69\x64\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3d\x22\x33\x32\x2e\ -\x30\x30\x30\x30\x30\x31\x2c\x2d\x32\x2e\x31\x33\x33\x33\x33\x33\ -\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\ -\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2c\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x67\x75\x69\x64\x65\x34\x34\x39\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x6f\x63\x6b\x65\x64\x3d\x22\x66\x61\x6c\x73\x65\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\ -\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ -\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ -\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ -\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ -\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ -\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ -\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ -\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\ -\x64\x34\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x2e\x31\x38\x33\x37\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\ -\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x34\x2e\x35\x37\x31\x35\ -\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x31\ -\x2e\x32\x36\x39\x31\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\ -\x37\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\ -\x2e\x30\x33\x34\x31\x36\x31\x36\x38\x2c\x2d\x30\x2e\x39\x39\x39\ -\x34\x31\x36\x33\x32\x2c\x30\x2e\x35\x36\x35\x33\x35\x36\x39\x31\ -\x2c\x30\x2e\x38\x32\x34\x38\x34\x36\x33\x39\x2c\x30\x2c\x30\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x30\x33\x34\ -\x31\x36\x31\x36\x38\x2c\x2d\x30\x2e\x39\x39\x39\x34\x31\x36\x33\ -\x32\x2c\x30\x2e\x36\x34\x30\x35\x32\x31\x39\x35\x2c\x30\x2e\x37\ -\x36\x37\x39\x33\x39\x38\x36\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x39\x31\x37\x31\ -\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ -\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x31\x38\x2e\x37\x32\x31\x38\x34\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x35\x2e\x31\x37\x36\x33\ -\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\ -\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\x31\x37\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\ -\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ -\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\x39\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\ -\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x39\x2e\x38\x34\ -\x30\x35\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x2d\x30\x2e\x34\x36\x31\x32\x31\x35\x34\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ -\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x2d\x30\x2e\x30\x33\x34\x31\x36\x31\x36\x38\x2c\x2d\x30\ -\x2e\x39\x39\x39\x34\x31\x36\x33\x32\x2c\x30\x2e\x37\x30\x31\x34\ -\x36\x35\x32\x36\x2c\x30\x2e\x37\x31\x32\x37\x30\x33\x36\x35\x2c\ -\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\ -\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\ -\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\ -\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ -\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\ -\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\ -\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\ -\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\ -\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\ -\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\ -\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\ -\x73\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\ -\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\ -\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x30\x2e\x32\x31\x35\x35\x37\x30\x32\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x32\x31\x2e\x34\x35\x36\x35\x32\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\ -\x74\x33\x37\x36\x31\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\ -\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x30\x2e\x32\x31\x35\x35\x37\x30\x32\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x31\x2e\x34\x35\x36\x35\x32\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x62\ -\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x33\ -\x2e\x38\x36\x36\x36\x36\x36\x37\x39\x70\x78\x3b\x6c\x69\x6e\x65\ -\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\ -\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\ -\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ -\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ -\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x66\x69\x6c\ -\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x32\x22\x3e\x52\x47\x42\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ -\x74\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x04\xe3\ -\x00\ -\x00\x1a\x61\x78\x9c\xed\x58\x59\x6f\xe3\x36\x10\x7e\xf7\xaf\x50\ -\x95\x97\x16\x0d\x75\x5a\xd6\x11\xd9\xfb\xd0\x60\x81\x05\xfa\xd4\ -\x6e\xd1\x67\x5a\xa2\x65\x36\x12\x29\x50\x54\x6c\xef\xaf\xdf\xa1\ -\x6e\x1f\x59\x64\x93\x06\x5d\xd4\x51\x10\x38\x9c\x6f\x86\x9c\xf9\ -\xe6\x10\x9d\xf8\xc3\xbe\xc8\xb5\x47\x22\x2a\xca\xd9\x52\xb7\x0d\ -\x4b\xd7\x08\x4b\x78\x4a\x59\xb6\xd4\xff\xfa\xfc\x11\x05\xba\x56\ -\x49\xcc\x52\x9c\x73\x46\x96\x3a\xe3\xfa\x87\xd5\x2c\xfe\x09\x21\ -\xed\x37\x41\xb0\x24\xa9\xb6\xa3\x72\xab\x7d\x62\x0f\x55\x82\x4b\ -\xa2\xfd\xbc\x95\xb2\x8c\x4c\x73\xb7\xdb\x19\xb4\x13\x1a\x5c\x64\ -\xe6\x2f\x1a\x42\xab\xd9\x2c\xae\x1e\xb3\x99\xa6\x69\x70\x2e\xab\ -\xa2\x34\x59\xea\x9d\x41\x59\x8b\xbc\x51\x4c\x13\x93\xe4\xa4\x20\ -\x4c\x56\xa6\x6d\xd8\xa6\x3e\xaa\x27\xa3\x7a\xa2\x4e\xa7\x8f\x24\ -\xe1\x45\xc1\x59\xd5\x58\xb2\xea\x66\xa2\x2c\xd2\xcd\xa0\xad\xbc\ -\xd9\xb9\x8d\x92\x1d\x86\xa1\x69\x39\xa6\xe3\x20\xd0\x40\xd5\x81\ -\x49\xbc\x47\xc7\xa6\xe0\xe3\x25\x53\xc7\xb2\x2c\x13\xb0\x51\xf3\ -\x79\x5a\x51\x05\x84\x96\xf0\x3b\xa8\xf7\x02\xa3\xe2\xb5\x48\xc8\ -\x06\xec\x88\xc1\x88\x34\xef\x3f\xdf\x0f\x20\xb2\x8c\x54\xa6\x93\ -\x6d\x7a\x3e\x8f\x4e\x3d\x22\x99\xe1\x82\x54\x25\x4e\x48\x65\xf6\ -\xf2\xc6\x7e\x47\x53\xb9\x5d\xea\xee\xdc\xb0\x5d\x78\xbc\x46\xb8\ -\x25\x34\xdb\xca\x53\x29\x4d\x97\x3a\x78\xef\x84\x41\xbb\x9e\x14\ -\x87\xdd\x2a\x74\x1b\x47\x03\x62\x19\xa1\x63\xd8\x9a\xb0\x3d\xd7\ -\x6f\x75\xfa\x10\xa2\x94\x27\xca\xa7\xa5\x9e\xd5\x34\x25\x46\x4f\ -\xcb\xb0\x07\xd9\x97\x5c\x48\xb4\x4f\x4b\x20\x67\xe1\x5f\x04\x0f\ -\x3d\xb8\x02\x34\x4e\xc9\xa6\x52\x5a\xad\xa7\x6a\x05\xae\xfa\xba\ -\x66\x36\xe8\x70\xb0\x3a\x35\x7d\xa4\x64\x37\xea\xae\x71\xd5\xb2\ -\xa1\x69\x25\xce\xa0\x72\x72\x2e\x96\xfa\xcd\xa6\x79\x3a\x60\xcd\ -\x45\x4a\x44\x0f\x2d\x9a\xe7\x08\xe2\xc0\x2e\x95\x87\xb6\x57\xba\ -\xbd\x7b\x7f\xd5\xae\x03\x6e\x5d\xc6\xab\x2d\x4e\xf9\x6e\xa9\x3b\ -\xa7\xe0\x17\xce\x8b\xa5\xee\x19\x5e\x18\x84\x96\x7d\x8a\x26\xfb\ -\xa5\x8e\x7c\xcf\x00\x77\x02\xcb\x3b\x43\xe1\x3c\xe4\x18\x0b\xdb\ -\xb6\x5c\xcf\x3f\x43\x6b\x21\xa0\x9b\x50\x8e\x0f\x04\xa2\x6a\x3e\ -\xfa\x03\xaa\x2d\xdf\x65\x42\xb1\x23\x45\x4d\x4e\x2d\x15\x82\xd6\ -\x6b\xbe\xbf\x0c\x43\x72\x6b\xd5\xa7\xa8\x66\x54\x42\x2f\x94\xfb\ -\xe9\xae\x2a\xe1\xd5\x65\xc3\x1d\x65\x40\x02\xea\xaa\xd2\x76\x07\ -\x8e\x4f\x35\xfa\x12\xf5\xad\xe0\x09\x0d\x70\xed\x8c\xe7\x0e\x3a\ -\x3c\x0d\x15\x78\x4f\x0b\xfa\x85\x40\xdc\x67\x54\x57\x0c\x97\x28\ -\xcb\xf9\x1a\xe7\x9d\xf7\xab\x46\x23\x3e\xa2\xa5\x35\xd2\x34\x79\ -\x50\xfd\xb8\x3f\x28\x99\xde\x0b\x15\x9f\x4a\xe0\xfa\x0b\x6f\x10\ -\x72\x41\x33\xca\x26\xfe\xf6\xa2\xc3\x54\xa4\xba\x17\x86\xef\xbe\ -\x29\xb0\xa6\xfc\xfc\x53\xec\x30\xc5\xba\xba\x37\xcf\x0b\xbf\x91\ -\x17\x44\xe2\x14\x4b\x3c\x76\x41\x2f\x71\xc2\xd0\xea\x23\x83\x41\ -\x18\xfd\x71\xff\x71\xd5\x1d\x14\x27\x49\xf4\x37\x17\x0f\xfd\xb9\ -\x9a\xa6\x14\xf0\x9a\xd7\x90\x0a\x7d\x35\x88\xe3\x34\x89\x60\x74\ -\x15\x58\xae\x68\x01\xb5\xad\xa6\xde\xaf\x30\xaa\x62\x73\x04\x8e\ -\x94\x15\x59\xe3\xa6\xed\xb6\x82\xb4\x33\xf0\xe2\x8b\x20\x4d\x0a\ -\xaa\x8c\xcc\x3f\x25\xcd\xf3\x4f\xea\x90\x2e\xe2\xc9\xa6\x54\xe6\ -\x64\x14\xc6\x66\xe7\x7d\x17\x9b\x39\x09\x2e\x36\xfb\xe8\x9b\x55\ -\x36\xb2\x72\xd4\x14\x43\xa2\x73\xbc\x26\x50\x04\xbf\x2b\x50\x3b\ -\x43\x33\xc1\xeb\xb2\xe0\x29\xe9\xcc\x07\x36\x49\x22\x87\x94\xc9\ -\x43\x0e\x78\x33\x50\xa2\x1b\xab\x79\xee\x52\x5a\x95\x60\x01\xf3\ -\x3c\xa7\x8c\xdc\x71\x18\xa4\x9b\x9c\xef\xa2\x47\x5a\xd1\x75\x4e\ -\xee\x9a\x4f\x9a\x43\xe4\x83\x68\x03\xe1\x37\xf6\x1b\xc7\x69\x16\ -\xa8\x1b\x34\x91\xdd\x2e\x45\x9d\x93\x88\x71\xf6\x05\x46\xd4\x5d\ -\x25\x05\x7f\x20\x83\x7e\xbb\x6c\xdb\x2d\xb2\xfa\xa5\x3a\x1b\xe2\ -\x88\xd6\xb5\x94\x53\xd9\x3f\x9c\xb2\x08\x68\x27\xa2\x97\x36\x8b\ -\x1c\x1a\x46\x46\xf3\x5e\x96\x62\x98\x64\x42\x40\x14\x70\x28\x99\ -\x4a\xf9\x66\x53\x11\x19\x39\x46\xe0\x3a\x81\x65\x7b\x41\x0f\x8e\ -\x1e\x17\x58\x3c\x10\xd1\x5a\x12\x86\x21\x40\xb4\xc6\xc9\x83\x22\ -\x94\xa5\x11\x4e\x60\xac\xd4\x39\x5c\x2e\x8e\x1a\x4a\xd1\xea\x42\ -\x44\x28\x18\xc4\xfd\x6b\xcd\x19\x24\xfd\xc0\x98\x8f\x4a\xaa\x95\ -\x16\xc3\xea\xa8\xd9\x84\xc2\xe6\x86\x1b\xb8\x73\x77\x6c\x33\x01\ -\x3a\xbe\x61\x2f\x82\xc0\xb5\xc2\xa1\xdc\xde\xd3\xfa\xc6\x69\xb5\ -\xd1\xe2\xbb\x13\x8b\x7e\xf0\xcc\x92\x40\xfd\x3c\x3f\xb3\x8b\xd0\ -\xc6\x36\xfe\x9f\x65\xf6\xfb\xdb\xd5\x6f\x5f\x6f\xc1\x34\xb7\x4e\ -\x7b\x49\x75\xe7\xef\x39\xfe\x01\x73\x8c\xec\x17\xf4\xee\xdc\x08\ -\x9b\x94\xfe\x8b\x69\x2e\xb1\xdc\x9e\xa4\xf9\x5b\x33\xf6\x5b\x13\ -\xd5\x35\xdc\xf6\x92\x65\xbf\x65\x72\x06\x5f\x86\xc8\xd4\x1d\x4d\ -\xeb\x5b\xc0\xbf\xf5\x8d\x79\x7b\xd5\xd3\x12\xcd\xba\x75\x7d\xc3\ -\x6d\x9f\xa7\x17\x47\x09\x52\x84\xb8\x96\x33\x36\xe1\xf8\xb5\x80\ -\x33\x08\x47\x72\x81\xe0\x0b\xc2\x23\x96\xb5\x20\x6a\x82\xbe\x05\ -\x95\xb6\x31\x6f\x33\x3d\xff\x0f\xa8\x74\x1c\x63\x7e\x6b\x43\xe5\ -\x03\x81\xb6\x65\xb4\x64\xde\x5a\x4f\xfd\x7d\xce\x9e\x1f\x5e\x3d\ -\x7b\x41\xd7\x95\xaf\xa0\x10\x79\x57\x4e\xa2\xe3\xb6\x9d\xec\xbf\ -\x86\xc4\xc5\xb5\x93\x18\xbc\xaa\x8f\x91\x87\xdc\xeb\x65\x70\xf8\ -\xaf\xc1\xe9\x38\x5c\xb8\x13\xee\xce\x16\x97\x99\xf4\xdf\x79\xf4\ -\x2f\x0e\xc6\x97\x90\xe9\xa1\x2b\x7e\xc5\x8c\x74\x5e\x1a\x91\x2f\ -\xa1\x73\x71\xcd\x2f\x9b\x09\x9d\xc1\xab\xbb\x1c\xe6\xe5\xe4\x6a\ -\xff\x3c\x2e\x63\x33\x5b\xcd\x62\xf5\xcf\xc0\xd5\xec\x2b\xe2\xa2\ -\xf8\x66\ -\x00\x00\x0a\xad\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x70\x65\x6e\x5f\ -\x66\x69\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ -\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ -\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x2d\x38\x31\x2e\x31\x30\x30\x32\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x2d\x32\x2e\x36\x31\x31\x30\x33\x35\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ -\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ -\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\ -\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ -\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ -\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ -\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\ -\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ -\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ -\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ -\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ -\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ -\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ -\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ -\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ -\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ -\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ -\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x38\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\x39\x32\x35\x36\x39\x36\x31\ -\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\x39\x2e\x32\ -\x34\x34\x34\x34\x34\x38\x20\x48\x20\x32\x36\x2e\x36\x36\x36\x36\ -\x36\x37\x20\x56\x20\x33\x35\x2e\x39\x31\x31\x31\x31\x31\x20\x48\ -\x20\x30\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x30\x32\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x33\x37\x63\x38\x37\x31\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x30\x2e\x36\ -\x36\x36\x36\x36\x37\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\ -\x48\x20\x33\x32\x20\x56\x20\x32\x38\x2e\x38\x20\x48\x20\x31\x30\ -\x2e\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x38\x2d\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x35\x30\x32\x38\x33\x31\x35\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ -\x22\x4d\x20\x30\x2c\x39\x2e\x32\x34\x34\x34\x34\x34\x38\x20\x35\ -\x2e\x33\x33\x33\x33\x33\x33\x33\x2c\x31\x36\x2e\x33\x35\x35\x35\ -\x35\x36\x20\x56\x20\x34\x31\x2e\x32\x34\x34\x34\x34\x35\x20\x4c\ -\x20\x30\x2c\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x76\x20\x2d\ -\x32\x34\x2e\x38\x38\x38\x38\x38\x38\x32\x20\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ -\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\xf2\ -\x00\ -\x00\x32\x55\x78\x9c\xe5\x5a\x4b\x8f\xdb\x38\x12\xbe\xf7\xaf\xe0\ -\xba\x2f\x09\xd6\x92\xf9\xd0\x83\x52\xbb\x7b\x0e\x13\x0c\x32\xc0\ -\xe4\xb2\x33\x3b\x0b\xec\x25\x90\x25\xda\xd6\x46\x96\xbc\x14\xdd\ -\xb6\xf3\xeb\xa7\x48\xbd\x65\x3b\xe8\x74\x67\x83\x78\x5b\x41\x60\ -\xa9\xaa\xf8\xfa\xf8\x55\xb1\xc8\xe6\xfc\xa7\xc3\x26\x43\x8f\x42\ -\x96\x69\x91\xdf\x4f\x88\x8d\x27\x48\xe4\x71\x91\xa4\xf9\xea\x7e\ -\xf2\xcf\x3f\x7e\xb1\xf8\x04\x95\x2a\xca\x93\x28\x2b\x72\x71\x3f\ -\xc9\x8b\xc9\x4f\x0f\x37\xf3\xbf\x59\x16\xfa\x59\x8a\x48\x89\x04\ -\xed\x53\xb5\x46\xbf\xe6\x9f\xca\x38\xda\x0a\xf4\x66\xad\xd4\x36\ -\x9c\xcd\xf6\xfb\xbd\x9d\xd6\x42\xbb\x90\xab\xd9\x5b\x64\x59\x0f\ -\x37\x37\xf3\xf2\x71\x75\x83\x10\x82\x76\xf3\x32\x4c\xe2\xfb\x49\ -\x5d\x60\xbb\x93\x99\x31\x4c\xe2\x99\xc8\xc4\x46\xe4\xaa\x9c\x11\ -\x9b\xcc\x26\x9d\x79\xdc\x99\xc7\xba\xf5\xf4\x51\xc4\xc5\x66\x53\ -\xe4\xa5\x29\x99\x97\xb7\x3d\x63\x99\x2c\x5b\x6b\xdd\x9b\x3d\x33\ -\x46\x24\x08\x82\x19\xa6\x33\x4a\x2d\xb0\xb0\xca\x63\xae\xa2\x83\ -\x35\x2c\x0a\x7d\x3c\x57\x94\x62\x8c\x67\xa0\xeb\x2c\x9f\x66\x15\ -\x96\x00\xe8\x16\xfe\xb7\xe6\x8d\xc0\x2e\x8b\x9d\x8c\xc5\x12\xca\ -\x09\x3b\x17\x6a\xf6\xee\x8f\x77\xad\xd2\xc2\x76\xa2\x92\x5e\x35\ -\x0d\x9e\x83\x56\x07\x20\xe7\xd1\x46\x94\xdb\x28\x16\xe5\xac\x91\ -\x9b\xf2\xfb\x34\x51\xeb\xfb\x09\x73\x6c\xc2\xe0\x71\x8d\x70\x2d\ -\xd2\xd5\x5a\x8d\xa5\x69\x72\x3f\x81\xde\xd3\x80\x57\xdf\x3d\x72\ -\x90\xca\xa0\xae\x38\x6c\x35\xd8\x0e\xa8\x4d\x90\x24\x2e\xf3\x2b\ -\x9b\x66\x08\x61\x52\xc4\xba\x4f\x50\xa5\xd8\xa4\xd1\x4e\x15\x1b\ -\x98\xb5\x38\xce\xa2\xb2\x4c\x97\x69\x0c\x1f\x45\xbe\xcd\x76\xab\ -\x34\xff\x08\x95\x2a\x25\xe4\x47\x29\x4a\xa1\x3e\x6e\x8b\xec\xb8\ -\x2a\x72\xbb\x01\xb2\x6d\x55\x1c\xb6\x85\x54\xd6\x21\xd9\x02\x9c\ -\x9e\x7f\x56\x79\x6c\x94\x0f\xa0\x9d\x27\x62\x59\x6a\xab\x6a\x6c\ -\xfa\x0b\x06\xe7\x4f\xd0\xcc\x68\xdb\xae\xea\x7e\x26\x8f\xa9\xd8\ -\x77\xb6\x8b\xa8\xac\xf0\x43\x68\x1b\xad\x80\x6b\x59\x21\xef\x27\ -\xb7\x4b\xf3\xd4\x8a\x45\x21\x13\x21\x1b\x95\x67\x9e\x81\xaa\x80\ -\xf9\x48\xd5\xb1\xf2\xae\xba\xee\xa6\xbf\xba\xd6\x56\x8f\xcf\xeb\ -\xcb\x75\x94\x14\xfb\xfb\x09\x1d\x2b\x3f\x17\xc5\x46\xd7\x1a\xf8\ -\x81\x4b\xb0\x3b\x56\xc7\x87\xfb\x89\xc5\x88\x67\xd3\x80\x38\xa7\ -\x5a\x68\xd0\x0d\x6c\xee\xbb\xbe\x4b\x4e\x94\x3b\x29\xc1\xff\xac\ -\x2c\x3a\x0a\x18\x95\xf9\x69\x8c\xca\x75\xb1\x5f\x49\x8d\x8e\x92\ -\x3b\x31\x2e\xa9\x35\xd6\x62\x51\x1c\xce\xab\x81\x0e\x3b\xed\xd9\ -\xd6\x2e\x4f\x15\x78\xcf\xf6\xd0\xaf\x75\x97\x26\xa2\x3c\x5f\x70\ -\x9f\xe6\x00\x82\x55\xf3\x98\xb0\x16\xe3\xb1\x45\x43\x6a\x1f\xf3\ -\x0b\x16\xd0\xb5\x13\x9c\x6b\xd5\xf1\xb2\x6a\x13\x1d\xd2\x4d\xfa\ -\x59\xc0\xb8\x4f\xe0\x2a\xf3\x68\x6b\xad\xb2\x62\x11\x65\x75\xef\ -\x1f\x8c\xc5\x7c\x00\x4b\x55\x08\x21\x75\xd4\x1e\x7c\x38\x6a\xd9\ -\xa4\x11\x6a\x3c\xb5\x80\xf9\x9e\xdb\x0a\x0b\x99\x82\x63\xf4\xfa\ -\xdb\x88\x8e\x7d\x91\xf6\x77\x08\xd7\x07\x43\x30\x43\x3f\x7f\xac\ -\x3b\xf6\x75\x35\xef\x67\xa7\xc4\x37\xf2\x8d\x50\x51\x12\xa9\xa8\ -\xf3\x82\x46\x42\x83\x00\x37\x23\x83\xd0\x19\xfe\xe3\xdd\x2f\x0f\ -\x75\x43\xf3\x38\x0e\xff\x55\xc8\x4f\x4d\xbb\x08\x69\x83\x68\x51\ -\xec\x60\x2a\x26\x0f\xad\x78\x9e\xc4\x21\x04\x3b\x08\x02\x0f\xe9\ -\x06\xb8\xad\xe3\xe4\xdf\x21\xb8\xcd\x67\x9d\x62\x60\xac\xc1\xea\ -\x2a\xad\xaa\x85\x00\x61\xa2\xe6\xd9\xa5\x23\x89\x37\xa9\x2e\x34\ -\xfb\x5d\xa5\x59\xf6\xab\x6e\xa4\x1e\x71\xaf\xd2\x54\x65\xa2\x13\ -\xce\x67\x75\xef\xeb\xb1\xcd\x7a\x83\x9b\xcf\x9a\xd1\x9b\xaf\x55\ -\x87\xca\xc0\x29\xda\x89\xce\xa2\x85\x00\x12\xfc\xa6\x95\xe8\x44\ -\xbb\x92\xc5\x6e\xbb\x29\x12\x51\x17\x6f\xd0\x5c\x0d\x68\xc0\xb0\ -\xcb\xda\x19\x54\x32\xca\x4b\x8d\x0c\xcc\x43\xa4\x64\x7a\x78\x83\ -\x6d\xee\x11\xf3\x4c\xb1\xfe\xd7\x7d\x42\x28\xe0\x2e\xe1\x2e\x9d\ -\x52\xdb\x77\xcd\xf3\xb6\x05\x7f\x2e\x45\xac\x3a\x28\xcf\xd5\xeb\ -\xbb\x3c\x08\xb8\x47\xa1\x4e\x0f\x22\x4a\x40\x29\x9b\xc2\x22\xe4\ -\xfb\x3e\xc3\x4c\x37\x67\x7b\x10\x4b\xa8\x47\xb9\x6e\xf7\xed\xa4\ -\x37\xdb\x15\xc3\x5c\xc6\x3c\x16\xf4\xe5\xc0\x4a\x6a\x3b\x8e\xe7\ -\x11\x9f\xf4\xe4\x60\xae\x2b\x0e\x30\xc5\x1e\xf6\x7b\x0a\x6d\xef\ -\xd9\x9e\xc7\x3c\xee\xf6\xc4\x8d\x57\x73\x9b\xbb\x01\x76\xb9\xd3\ -\xd3\x35\x31\xc1\xb1\x3d\xee\x73\xaf\x5f\x4c\xc3\xa9\x87\x0d\xcc\ -\x0d\x2c\x6e\xb1\x9e\xaa\x54\xc7\x0c\xa6\x61\x09\x24\x09\x6f\x45\ -\x10\x2d\x88\x77\xa7\x3f\xac\x3a\x1c\x87\xa4\xfa\x94\xbb\x0c\x96\ -\x95\x47\x91\x17\x49\x72\x57\x2a\x59\x7c\x12\xe1\x2d\xe1\x89\xb7\ -\x5c\xd6\x9f\x55\x50\x0a\x71\xf3\x09\xfc\x13\x32\x83\x60\xa1\x42\ -\xa7\x91\x25\x11\x44\x71\x29\xa3\x63\x98\x43\x1a\xd5\x48\xdb\xa6\ -\x7a\x0c\x7d\xc2\x34\x05\xd4\x21\xae\x17\xf8\x30\x1f\x8c\x53\x4c\ -\x68\xe0\x9a\x69\xd2\x13\x46\x38\xcc\x0d\xbc\x3a\xc0\x04\xe6\x9c\ -\x9f\x26\x9f\xbb\x2e\xe5\x7c\x34\x4d\x40\x1e\x8a\x41\x1e\x8c\xa6\ -\x29\xb0\x03\xcc\x58\xe0\x8c\x66\x89\xb8\xb6\xc3\x59\xc0\xcf\x4c\ -\x12\xa8\x30\xf1\x7c\x97\x9d\x99\x24\x62\xbb\xd0\x5d\x4e\x2e\x4f\ -\x92\x7f\x85\xb3\x24\xcd\xea\xed\x62\x9f\x01\xcd\xc7\xfc\x07\x5e\ -\x92\xc0\x73\x19\x1d\x02\x4b\x7d\xdb\xd7\x59\x97\x33\xc4\xd5\xb5\ -\x19\xeb\x92\xb1\x21\xb0\x8e\x4d\x4d\x0c\x0f\x4e\x81\x3d\x57\xdb\ -\x18\x58\x8b\xbf\x0e\x64\xf1\x77\x43\xf4\x3a\xf1\x64\x36\xc7\x0e\ -\x84\x4a\x77\x04\x27\xb3\x5d\x97\xb9\x7e\xe0\x7d\x11\x4e\x5a\x6d\ -\x16\x06\xb8\xb4\x3b\x09\x7a\x06\x47\x62\x9f\xd8\x0f\x71\xbc\x06\ -\x14\xb7\x91\x5a\xf7\xba\xd9\xa6\x4e\xb0\x96\xeb\x6c\x03\xb2\xd6\ -\xf8\xc2\xd3\x1f\x76\x9b\x5f\x17\x79\x0e\xc3\x2f\xa4\x05\x99\xf6\ -\x63\xa4\x76\x52\x0c\x71\x1e\x00\xd4\x27\x27\xc8\x3f\x20\x58\x69\ -\x2b\x4a\x4f\x2d\xd8\x94\xa1\x3f\x11\x46\x8c\x22\xc6\xe0\x7d\x8d\ -\xb4\x84\x41\x30\x37\x8f\x8f\x2a\x03\x50\xff\x86\x98\x6b\x43\x66\ -\x00\x39\xbf\xc9\x03\x11\x75\x6c\xb7\xaa\x85\xf0\x7a\x4e\xd1\x23\ -\xb2\x3c\xdb\x69\x6d\x6b\x31\x33\x9f\x95\x2d\xd6\x36\xc4\xb4\x64\ -\x7e\xac\x5e\x5b\x9f\xd1\x06\x51\x53\x8e\xa2\xf7\xba\x3f\x55\x37\ -\xa1\x3a\x0a\x49\xc0\x94\x40\xfe\x50\x35\xfd\x27\x22\x81\x6d\xba\ -\xd4\xd8\x4c\x19\xac\x6b\xba\x50\xdd\x0e\x43\xff\x3e\xa5\x85\xd9\ -\x64\x85\xb7\xd8\x3c\x77\xcb\x02\xf6\x11\x46\x03\xd3\x00\x99\x63\ -\x56\x49\x1e\x23\x99\x46\xb9\x1a\xc8\xf6\x86\x9f\x03\x11\x4c\xb6\ -\x50\xf1\x7a\x28\x83\xfc\x3e\x84\x5c\x38\xdd\x6d\xee\xb2\x34\x17\ -\xf5\x66\x62\x60\xb3\x8c\x36\x69\x76\x0c\x7f\x87\x65\xf9\xce\x6a\ -\x26\xd4\xaa\x8a\x6f\x45\xdc\x6e\x6a\x2b\x0b\x25\x0e\x0a\xac\x12\ -\xd8\xf2\x00\x15\xcd\x57\x94\xa5\xab\x3c\x2c\x55\x24\x55\x25\x48\ -\x60\x5f\x29\xab\x32\x86\x86\x23\xa1\xa5\x7b\x52\x69\x32\xa1\x37\ -\xc8\x56\x9d\xd4\x37\xdd\xda\xc3\x2e\x73\x2c\x33\x75\xb4\xb9\x43\ -\x55\x7a\x2f\x53\x05\x26\x96\xce\x3f\xc3\x4c\x5a\x6a\x71\x97\xa4\ -\x9a\x64\xba\xe5\x4c\xc9\x3b\xbd\xdb\x35\xc3\x2e\xd7\xe9\x52\x85\ -\xcd\x67\xdd\xed\x3c\x5e\x03\xf8\x55\xbf\x93\xb4\xdc\x42\x02\x1b\ -\xa6\xb9\x31\x28\x1e\x85\x5c\x66\xc5\x3e\x7c\x4c\xcb\x74\x91\x89\ -\x3b\xf3\x9b\x66\xda\x8b\x1a\x51\xe5\xd2\xb5\x8b\x3e\xd5\xa5\xfb\ -\x6e\x59\xf9\x33\x50\xd2\x77\x21\xe5\xe1\xec\x6e\x13\xc9\x4f\x42\ -\x56\x36\x22\x8f\xa0\x11\x6b\x11\xc5\x9f\x74\x8e\x9d\x27\x61\x14\ -\xc3\x4e\x73\x97\x45\x4a\x5c\x76\xe3\xaf\xf3\x47\x5d\x96\x05\xd8\ -\x19\x7a\x23\x30\xbe\x0e\x70\xe0\x47\x7e\xb5\xc9\xf2\x51\x8c\xc0\ -\x8d\xa6\xda\x95\x46\xbf\x97\x62\x1d\x07\x46\x73\x3c\x06\xa6\x89\ -\x6c\xcb\x8a\xf1\x03\x24\x88\xcd\x1d\xdf\xa5\x98\xb3\xed\xa1\xd1\ -\xe8\xd9\x80\x01\x85\x8b\x9d\x52\x7d\xd9\x7f\x8a\x34\x0f\x4d\x04\ -\xfc\x8a\x20\xf7\x2c\x74\xbc\x13\x74\xea\x65\x74\x88\x8e\xd5\xc0\ -\x72\xf2\x72\x09\x20\x8c\x3d\x46\x4e\x98\xf3\x25\x80\xda\x85\xca\ -\xf9\x91\x00\x72\x2c\x7a\x99\x40\x1a\x88\xd7\x4b\x1d\x8b\x5c\x26\ -\x4f\x85\xcc\xab\xa6\xcd\x29\x3c\x7a\xcd\xac\xf3\x80\x6e\xa9\x7e\ -\xcd\xfc\x39\x03\x91\xdf\xf8\xd6\x00\xa2\xd7\x4d\x24\x7f\x8c\x92\ -\xd5\x9e\x0e\x4e\x2d\xc8\xc0\x5e\x37\x87\x82\x31\x3a\xcd\x06\x92\ -\x35\xe0\xbc\x6e\xf6\x9c\xe0\x83\xa7\x94\xdb\xfc\x75\x93\xc6\x19\ -\xef\xd1\xf4\xd8\x0d\x2c\x3f\x03\x3e\x7a\xfb\x34\xfc\x79\x0d\x44\ -\x39\x49\x74\xba\xf5\xaa\x5d\xd8\x5f\x37\x6b\x4e\xb2\xe5\x6e\xb9\ -\xea\x23\x74\x8d\xf1\x66\x3e\x5b\xd5\x2f\x7d\xac\xfa\x9d\xec\x6d\ -\xee\xda\x3d\xfd\x85\x2e\x7d\x7d\x87\x9e\x73\xdc\x73\xd3\xcd\xc4\ -\x07\x70\x53\xac\xcf\x4d\xea\x3f\x8d\x77\x67\xd2\xcd\x0c\xd2\xa0\ -\x77\x4e\xf6\x54\x02\x9c\x3f\x37\xea\x30\xbb\x4e\xa8\x5a\x90\xa6\ -\xed\x1b\x7a\x8f\xf0\x39\xc8\xf8\x8f\x03\x99\x3e\xb6\xf2\x30\x75\ -\xf9\xcb\xf8\x3e\x40\xa2\x4b\xa3\xea\xd0\xcf\xf4\x69\x98\x7e\x3d\ -\x79\x39\x41\x87\xf9\x3e\xb5\xf0\x93\xf1\xf9\x26\x9c\x21\xbe\xeb\ -\x10\xd7\xfd\x66\x08\xf4\x73\x25\xb3\xd8\xc5\xe0\x47\x56\x7d\xc8\ -\xee\x5f\x7a\x3f\x85\x82\x3b\x57\x0f\x44\x7b\xd8\xf9\x52\x20\xac\ -\xa7\xfb\xcc\x0f\x0a\x45\x77\xbe\xf1\x52\x28\x82\xab\x87\xc2\xfb\ -\x56\xac\xb8\x7a\x07\x61\xf4\xc5\x18\xb0\x6b\xc7\x80\x78\x2f\xc6\ -\xe0\xe9\x49\xc8\x8f\xb8\x64\x6e\xfa\x4b\x26\xb3\x9d\xe6\x7c\xb8\ -\x3d\xab\x81\x2c\xec\xc2\xfb\x85\x05\xb4\xb7\xeb\xb8\x76\x40\xba\ -\x3f\xcb\xbd\x08\x10\x72\xd5\x80\xf4\x93\x2a\x42\xdb\xa4\xca\xbc\ -\x9e\xbc\x5c\x82\xe0\x7b\x06\x8a\xff\x2d\x27\xfc\xca\x47\x5e\xea\ -\x24\xce\xff\x0d\x20\xfd\x53\xdd\x17\x00\xf2\x8c\xcc\x62\x7c\x69\ -\x8f\x9d\xbd\xb4\x67\x5e\xf5\x9f\x21\xdf\x70\x88\xe5\x6d\x2a\x74\ -\xf1\x5e\x9e\xbe\xa0\xe1\xc0\xe8\x98\x13\xd0\xfe\x4d\xa8\xe3\xf8\ -\x9e\x76\xf5\xe8\x3b\xbe\x9e\x6f\x13\xf3\x07\xf8\x33\x37\x32\xce\ -\xdd\xbe\x78\xc2\xc5\x0c\x86\x49\xff\xd8\x62\x70\xb6\xb0\x5c\x56\ -\x7f\x7e\x7f\xea\xb5\x8c\xea\xb6\xf4\x98\x13\x5e\x45\x15\x3a\xa6\ -\x44\xf9\xdf\x5d\x24\xc5\x97\x49\xf1\xf4\x1d\xab\x96\x16\xcb\x65\ -\x29\x54\x77\x13\xe4\xd9\xf7\x3b\x9e\x7d\x93\xa3\xe2\x19\x1f\x9d\ -\x87\x7d\x40\x96\xe7\xd6\x7f\x12\x9d\x3a\x0e\x84\xb1\xf7\xc8\x72\ -\x2e\xdd\x86\x19\xb8\xd9\x39\x48\x1d\xdb\xd5\x97\xee\x82\xef\x74\ -\x02\x30\x3a\xe7\x31\x3f\x73\x7d\x9d\xf7\xe1\xe6\x2f\x67\xa7\x75\ -\x87\ -\x00\x00\x10\x81\ -\x00\ -\x01\x72\x36\x78\x9c\xed\x9d\x4b\x93\xe3\xb6\x11\x80\xef\xfb\x2b\ -\x14\xed\xc5\xae\x2c\x21\x3c\xf8\x82\x76\x66\x7d\xb0\x2b\x15\x57\ -\x25\x97\xc4\x49\x8e\x2e\x8e\xc4\xd1\x28\x2b\x89\x13\x8a\x9a\x87\ -\x7f\x7d\x00\xbe\x44\x52\xe4\xec\x7a\x85\x26\x66\xe4\xd6\xd8\xb5\ -\x12\x41\x89\x24\x3e\x74\xa3\xbb\xd1\x00\xae\x7e\x78\xda\x6e\x26\ -\x0f\x71\xba\x5f\x27\xbb\xeb\x29\x23\x74\x3a\x89\x77\x8b\x64\xb9\ -\xde\xad\xae\xa7\xff\xfa\xe5\x2f\x4e\x38\x9d\xec\xb3\x68\xb7\x8c\ -\x36\xc9\x2e\xbe\x9e\xee\x92\xe9\x0f\x9f\xde\x5d\xfd\xc9\x71\x26\ -\x3f\xa6\x71\x94\xc5\xcb\xc9\xe3\x3a\xbb\x9b\xfc\xbc\xfb\xbc\x5f\ -\x44\xf7\xf1\xe4\xbb\xbb\x2c\xbb\x9f\xcf\x66\x8f\x8f\x8f\x64\x5d\ -\x1e\x24\x49\xba\x9a\x7d\x3f\x71\x9c\x4f\xef\xde\x5d\xed\x1f\x56\ -\xef\x26\x93\x89\xba\xee\x6e\x3f\x5f\x2e\xae\xa7\xe5\x17\xee\x0f\ -\xe9\x26\x3f\x71\xb9\x98\xc5\x9b\x78\x1b\xef\xb2\xfd\x8c\x11\x36\ -\x9b\x1e\x4f\x5f\x1c\x4f\x5f\xe8\xab\xaf\x1f\xe2\x45\xb2\xdd\x26\ -\xbb\x7d\xfe\xcd\xdd\xfe\x7d\xe3\xe4\x74\x79\x5b\x9f\xad\xef\xe6\ -\x51\xe4\x27\x31\x29\xe5\x8c\xf2\x19\xe7\x8e\x3a\xc3\xd9\x3f\xef\ -\xb2\xe8\xc9\x69\x7f\x55\xdd\x63\xdf\x57\x39\xa5\x74\xa6\xca\x8e\ -\x67\x7e\xdd\x59\xf3\xbd\xaa\xd0\x7b\xf5\x7f\x7d\x7a\x75\x80\xec\ -\x93\x43\xba\x88\x6f\xd5\xf7\x62\xb2\x8b\xb3\xd9\x4f\xbf\xfc\x54\ -\x17\x3a\x94\x2c\xb3\x65\xe3\x67\xaa\xfa\x6c\x5d\xb5\x55\xc9\xbb\ -\x68\x1b\xef\xef\xa3\x45\xbc\x9f\x55\xc7\xf3\xef\x3f\xae\x97\xd9\ -\xdd\xf5\x54\xb8\x84\x09\xf5\xf2\xf2\x83\x77\xf1\x7a\x75\x97\x75\ -\x8f\xae\x97\xd7\x53\x75\xf7\x5c\x86\xc5\xe7\x46\xe3\x60\xc5\x09\ -\xe5\x0f\xcf\xeb\x12\x4a\x24\x27\x6c\x92\x32\x4f\x04\xc5\x39\xd5\ -\x23\xcc\x97\xc9\x42\xdf\x93\xfa\xc9\x78\xbb\x8e\x0e\x59\xb2\x55\ -\xd4\x16\x8b\x4d\xb4\xdf\xaf\x6f\xd7\x0b\xf5\x21\xd9\xdd\x6f\x0e\ -\xab\xf5\xee\x57\xf5\xa3\x59\x16\xa7\xbf\x66\x49\xb2\x21\x55\xfd\ -\xd5\x17\x8b\x9f\xee\x93\x34\x73\x9e\x96\xf7\xaa\x16\xfd\xa0\xb7\ -\xf0\xb9\x2a\xfc\xa4\x4a\xaf\x96\xf1\xed\x5e\x9f\x55\x3c\x92\xfe\ -\xa4\x9e\x29\x98\x4e\x66\x79\x69\x7d\x87\xfa\xf6\x96\x0f\xeb\xf8\ -\xf1\x78\xee\x4d\xb4\x2f\xaa\x6d\x32\xb9\x8f\x56\xaa\x89\x6d\x92\ -\xf4\x7a\xfa\xfe\x36\x7f\x95\x05\x37\x49\xba\x8c\xd3\xaa\xc8\xcf\ -\x5f\xad\xa2\x44\x61\x58\x67\xcf\x85\x50\x95\xbf\x5d\xdd\xaf\xfe\ -\xd5\xba\x9c\xf6\x97\xef\xef\xa2\x65\xf2\x78\x3d\xe5\xdd\xc2\xdf\ -\x92\x64\xab\xa0\x11\xe9\x49\xca\xa9\xec\x16\x2f\x9e\xae\xa7\x8e\ -\x2b\x09\x0b\x28\x2b\x11\x36\x4b\xd5\x05\x43\x97\x78\x4c\x06\x9e\ -\x38\x29\x3c\xa4\xa9\x12\x3b\x67\x13\x3d\xc7\xea\xa9\xf2\x7f\x58\ -\x79\xd2\xfe\x2e\x79\x5c\xa5\xba\x76\xb2\xf4\x10\x77\xbf\xa9\x4b\ -\x9c\x9b\x9b\xe4\xa9\xbf\x58\xb5\x82\x83\x16\x68\xe7\xb0\x5b\x67\ -\x4a\x68\xee\x9f\x9a\xbf\x7a\x58\x2f\xe3\x7d\xff\x17\x1f\xd7\x3b\ -\x55\x09\x4e\xd9\x7c\x99\xa8\xeb\xb8\x7b\x46\xd5\x96\x03\x1a\x0e\ -\x9c\xa1\x6e\xed\xa4\x9e\xcb\xa2\xe7\xe1\xa2\x6d\xf4\xb4\xde\xae\ -\x7f\x8b\xd5\x73\xb3\xee\x29\xfb\x5d\x74\xef\xac\x36\xc9\x4d\xb4\ -\x29\xef\xfe\x53\x7e\xc6\x55\xab\x5a\x8a\x2f\x4d\x26\xd9\xb3\x16\ -\xdc\xa7\x67\x7d\x6c\x5a\x1d\xd4\xf5\xa9\x0f\x88\xc0\xf7\xea\x83\ -\x49\xba\x56\xf2\xd0\xb8\xdf\xea\xd0\x73\xf3\x90\x16\x73\xa5\xa5\ -\x9f\xf2\x06\x96\x37\xbf\xa0\x5b\xf6\xdc\x2c\x2b\xdb\xfd\xec\xb4\ -\xe1\xe7\xc7\xb7\x71\x16\x2d\xa3\x2c\x3a\x4a\x41\x75\x84\x4b\x49\ -\xab\x27\x53\x1a\x73\xfe\x8f\x9f\xfe\xf2\xa9\xbc\xd0\xd5\x62\x31\ -\xff\x4f\x92\x7e\xae\xae\x3b\x99\xe8\x13\xa2\x9b\xe4\xa0\x50\x4c\ -\x3f\xd5\x87\xaf\x96\x8b\xb9\xd2\x71\x4a\xf6\x3f\xad\xb7\xaa\x6d\ -\x6b\xf5\xf8\x67\xa5\xd3\xae\x66\xc7\x82\xd6\xc9\xba\xb2\x8e\x3f\ -\x5a\xfc\x6c\x1a\x17\xca\xb2\xb7\xc7\x58\x2e\xb6\x6b\xfd\xa5\xd9\ -\x3f\xb3\xf5\x66\xf3\xb3\xbe\x48\xf9\xc4\x8d\x1f\x5d\x67\x9b\xf8\ -\x78\xf0\x6a\x56\xde\x7d\xf9\x6c\xb3\xc6\xc3\x5d\xcd\xaa\xa7\xcf\ -\x3f\xad\x8e\xb5\xd2\x12\x8a\x1a\xf4\x26\xba\x89\x55\x23\xf8\x9b\ -\x2e\x9c\x9c\x94\xae\xd2\xe4\x70\xbf\x4d\x96\x71\xf9\xf5\xba\x36\ -\xe3\x45\x56\x23\xcb\x9e\x37\xaa\xfc\x56\xdd\xfd\xfc\xfd\x2d\xd5\ -\x7f\x1f\xf5\x07\xa7\xd4\x13\x73\x56\x7c\x4c\x0f\x1b\xa5\xef\x1e\ -\xe2\x5d\xb2\x5c\x7e\xdc\x67\x69\xf2\x39\x9e\xbf\xa7\xd4\x0d\x29\ -\x2d\x3f\x16\xd2\x32\xaf\x3f\x6e\xd6\xbb\x58\xdd\xc6\x7c\xff\xbf\ -\x43\x94\xc6\xcd\xa3\xff\x4d\xd6\xbb\xb9\xaa\xb7\x38\xad\x8e\xe6\ -\x1f\x36\xaa\xc5\x67\x73\xb7\x3a\xb6\x8c\x94\x2a\x4a\xd3\xe8\x79\ -\xbe\x53\x26\x40\xf3\x68\x72\x7b\xbb\x8f\xb3\xe3\x95\xaa\x5b\xa5\ -\x44\x94\xaf\x56\x43\xd7\x8f\x2b\xa4\x64\xf5\xc1\xde\x5e\x49\xbf\ -\xfa\x7b\x26\xfd\x6a\x49\x85\x6a\xdf\x92\xb8\x81\x90\x54\xf8\xb1\ -\xc3\xfc\xba\x20\x6d\x9d\x96\x3e\x6b\x75\x29\x54\xef\xe4\xcb\xb0\ -\x6e\x15\x57\xf7\x51\x76\xd7\x57\xfb\x8d\xa7\xd4\x35\x4b\x6f\x39\ -\x6f\xd7\x2c\x2f\x6e\x4a\xb8\x6e\xb7\x8a\x6f\x0e\x59\x66\xaa\x82\ -\x6b\xee\xf5\x73\xa8\x2a\xfc\xfb\x84\x7e\xa0\x93\x7f\x4f\xaa\x8a\ -\x69\x57\xb0\x7e\x22\x25\xad\xc7\x7a\x38\x6a\xf6\x64\xa7\xee\x30\ -\x4b\x52\x47\xe9\xf8\x87\x28\x3b\xa4\x71\x4b\x97\xd4\x3a\x41\x35\ -\x52\x2d\x46\x4a\x1d\x2f\x16\x6f\xbd\xaa\xea\x4a\xfa\x50\xbf\x9b\ -\xfc\x75\x42\xfb\xaa\x2c\x7c\x3d\x55\xc6\x88\x22\x48\xb9\x17\xde\ -\x3f\xfd\xfe\x3a\x1b\xa8\x89\xba\x17\xf8\xc0\x43\x12\x4e\x7e\x9c\ -\x08\xc2\x8b\xb7\x27\x6f\x4e\x6a\x47\x04\x01\x77\xe8\x57\xd7\x8f\ -\x91\x36\xc3\x02\xcf\x65\x9e\x67\xac\x06\xb6\x13\xaf\x52\x49\x1f\ -\x84\x47\xf8\x64\xa1\xe4\xc8\x71\x09\xcf\x2b\x65\xe8\xfd\x69\x55\ -\x84\xee\x9b\xaf\x08\x46\x49\xd9\x14\xce\xac\x08\xe7\xeb\x65\xe6\ -\x8b\x55\xf1\x7e\xc1\x97\xf4\xd6\xef\x76\x78\xa3\x57\x0e\x67\xc4\ -\x4c\x2b\x71\xe4\x5b\x6f\x27\xdc\x37\xd5\x4e\xde\xbc\xc8\x08\x7e\ -\x76\x1d\x88\xb7\x5e\x07\xcc\x3f\xbb\x0e\xbe\xde\x2c\xf9\xb2\xbe\ -\xd0\x8e\x78\x6d\xf0\x8e\xd5\x8f\x6e\x9b\xfd\xa8\x20\x6e\xf1\xdc\ -\x8b\x49\x65\xe4\x08\x65\x9a\x0d\xbc\x1f\xe8\x55\x1d\x7e\x49\x75\ -\xc2\xc2\xca\xca\x3a\xab\x4e\xd8\x88\xb2\x02\x6b\x6c\x31\x5e\x1b\ -\x5b\xf9\xdb\x93\x37\x43\x55\x30\xa6\xba\x80\x6d\x13\x41\x21\x26\ -\xe7\xca\x89\x7b\x31\x15\x52\x3f\xec\x79\x15\xf2\x0d\xf6\xc5\xaa\ -\x15\x74\x72\x79\x78\x6c\x7e\x2d\x3d\xe2\x7a\xfa\xaf\x63\x8b\xd5\ -\xa7\x66\x69\xb4\xdb\xeb\x90\x8d\x0e\x79\xa9\xb7\x9b\x28\x8b\xbf\ -\x73\x24\x91\x61\xa0\xfe\xdc\x0f\x9e\x20\x21\x0d\x5c\x1a\x7e\x5f\ -\xc7\x7f\x8e\x57\xae\xae\x4d\xe5\x11\xe8\x57\x5d\xbd\x11\xc8\x69\ -\x06\x4d\x1a\xdf\xce\x23\xb1\x39\x50\xf5\xfa\xb8\x5c\xef\xef\x37\ -\xca\x4b\x5c\xef\x34\xa6\x8f\xc9\x43\x9c\xde\x6e\x92\xc7\xf9\xc3\ -\x7a\xbf\xbe\xd9\xc4\x1f\xf3\x7f\xd7\x1b\xfd\xe3\xd5\xa1\x17\x2e\ -\xdf\x88\xbc\xa8\xd6\xf3\x5b\x9c\x26\xc7\x06\x14\xd0\xc0\xbb\xfd\ -\x42\xe4\xc5\xa4\xaf\xfb\x52\xdc\x85\x7d\xdc\x46\xe9\xe7\x38\x2d\ -\xbe\x10\xef\x22\xf5\x5c\xce\x4d\xb4\xf8\xac\x03\x50\xbb\xe5\x3c\ -\x5a\x2c\x0e\xdb\x83\x26\x36\x6d\xd6\x60\x1d\x9b\x09\x29\x77\xb8\ -\x68\x95\x55\x91\x57\xc2\x5b\x87\xab\x00\x0d\x25\x92\xa9\x96\xe4\ -\x05\xed\xe2\xa7\xeb\xa9\xea\x20\x03\xce\xd4\x5f\xab\xe0\xf9\x7a\ -\xea\x70\x49\x02\xa1\x4a\xc2\x76\x80\x0e\xb9\x82\x72\x75\x1b\x2a\ -\xe3\x3c\xb0\x3e\x61\x08\xf6\xf5\x80\xe5\x62\x88\x6c\x77\x54\xa0\ -\xc9\xb7\xbf\x54\xe1\x15\xca\x05\xd6\x78\xd9\x09\x5e\x55\xe2\xe6\ -\x9a\x1d\xf1\x8e\x2b\xb7\x0d\xcf\xc9\x00\x5f\xe5\xb8\xe8\x3a\x75\ -\x91\xef\xab\xe0\xeb\x3b\xa2\x11\x21\x31\xc0\xd7\x27\x7e\x5e\xa7\ -\xa7\x7c\x39\x71\x15\xde\xc0\x43\xbe\x23\xf2\x95\xc2\x09\x8d\xca\ -\x2f\xea\xe7\x57\xc5\xd7\x75\x84\x70\x38\x2a\xe8\x8b\x05\xcc\x95\ -\x82\xf6\x42\x93\x80\x39\x11\xb9\xb3\x7c\x0a\x58\x10\x4f\x13\x66\ -\x08\x78\x54\x09\xf6\x1d\xe6\x78\x26\x09\xbb\xc4\xd3\x3a\xba\x47\ -\x84\x91\xb0\x25\x17\xc9\x61\xe3\xe8\x68\x8f\xf8\xda\xc8\xe2\x08\ -\x78\x6c\x27\xc9\xac\x9b\xe4\x11\x4f\x2b\x69\xf9\x46\x09\x17\xd7\ -\xbb\x1c\xc2\xd2\xc9\x5d\x25\x93\x84\x83\x22\x40\x89\x66\xd6\xab\ -\x00\xec\x3a\xa1\x23\x99\xea\x88\x8d\x3a\xc3\xc3\x52\x8c\x90\xad\ -\x48\x31\x53\xff\x07\x26\x09\x0f\x87\x3b\xde\x84\xa9\x75\x69\x7a\ -\x5a\x8b\xb1\xef\x78\x66\x3d\xe2\x90\x68\x77\x09\xfd\xa5\xd7\x83\ -\x58\xe6\x7f\xae\x41\xc8\x5c\x12\x36\xe0\x15\xbf\x09\x55\x7d\x69\ -\x82\x9c\xc7\xa5\xcd\x9a\xd4\x83\x62\xec\x13\x6d\x50\x8b\xd7\x0d\ -\xf8\xf2\xc4\x58\x38\x81\x13\x78\x66\x23\x1f\x18\x9d\x7e\x55\x90\ -\x8b\xc8\x87\x49\x3d\xfd\xd6\x4d\xea\x4b\xd3\xd3\x45\xe8\xc3\xec\ -\x10\xd3\xdb\xf6\x8c\x2f\x8d\x70\xd1\x13\x9b\x0c\x5f\xba\x7a\xc2\ -\x76\xbf\x96\xc6\x31\x62\x6b\x32\xec\x99\x8c\x7c\x70\x3a\xe4\x17\ -\x2b\x43\x9b\x23\x62\x3b\x91\x0f\x66\x32\x80\xc9\xd9\x60\x86\x65\ -\x40\x18\xfa\xc5\x76\xf4\xb4\xc9\xc0\x07\x17\x24\xd4\xb5\xea\x9f\ -\xea\x69\x4a\x84\x26\x8c\x80\x47\x4f\xf5\x30\x9a\x6d\x89\x6a\xfa\ -\xb5\x21\xce\x73\x01\x8c\x5a\x5b\xc3\x7a\xfa\x6d\xd8\xd3\x97\xc6\ -\x58\xea\x84\x1e\x27\x34\xab\xa9\x87\xe5\x18\xfb\x62\x6b\x71\x0f\ -\xb3\xaa\x3a\x1c\x9a\xf7\x80\x4e\x93\xc5\x9c\x0f\xa3\xe3\xc5\x4a\ -\x58\xe9\x40\x5e\x0f\x32\xb6\x97\xf5\xe1\x98\x4c\xbf\xe4\xee\x50\ -\xf0\x03\x4d\x2e\xbb\x89\x1f\x66\xad\x2e\x9e\x8f\x36\xf5\x8c\x27\ -\x22\x66\x8b\xa9\x1f\x46\x53\xb8\x5e\xf0\x8f\xd1\xb2\xb6\x99\xfc\ -\x61\xb6\x53\xf6\x8a\xc9\xe5\x6f\x75\xc4\xe9\xd2\x28\x97\x99\x01\ -\x66\x67\x9d\x52\xc2\x07\xd2\xb8\x5c\xe2\x6b\xc6\x01\x32\x1e\x7b\ -\xd2\x8b\x34\x6b\x77\x61\xb8\xfa\x75\x21\x2e\x52\x03\xcc\x76\xc8\ -\x68\x74\xbd\x2a\xc6\x55\x72\x80\xd1\x3c\x2e\x74\xa0\x5e\x17\xe4\ -\x32\x3f\xc0\xac\xb2\x1e\x0e\x76\x9d\x8e\x3c\x5d\xcd\x56\xd5\x12\ -\xca\xd5\x9b\xee\x5a\x43\xec\xd8\xb1\xf7\x2e\x20\xa4\xba\x80\xa0\ -\x5c\x78\x91\x12\x99\xbf\x6b\xac\x1f\xd4\x6e\x40\x65\x97\xc1\x03\ -\x9f\x35\x4d\x10\xbd\xec\x39\x57\xf6\xa0\x7e\x35\x9b\xe6\x8b\x2b\ -\x9a\xf4\xae\x82\xd2\xf6\x5b\x1a\x05\x66\x1b\x2e\x8b\xd8\x8d\x1b\ -\x5d\x7e\xc3\x6d\x34\x94\xaf\x05\x49\xcd\xf1\x73\x5b\x72\x81\x04\ -\xcd\x13\xac\x56\x42\xec\xc8\xa2\xff\x82\x2c\xf6\xe9\x9d\x17\x14\ -\x56\x0b\xa8\x40\x9c\x36\x70\x96\x6b\x7b\xfa\xd2\x30\x4e\x65\x80\ -\xf6\xac\x05\x87\x44\xcd\x11\x65\xca\x2a\xeb\x0a\xa2\x26\x5a\x2d\ -\x89\xed\x19\x26\xda\x9e\xe0\x85\x40\x47\x03\x2a\x5a\xbd\xa0\x19\ -\xe1\x0c\x1d\xdf\x43\x9a\xa0\x0a\xd7\x23\xfe\x48\x92\xc9\x5b\x39\ -\x0f\xc8\x72\x0c\x96\x10\x42\xe9\xa3\x86\x05\xe6\x58\xee\x03\xe0\ -\x8e\x64\x04\xe9\x94\x24\x1f\x91\xda\x40\x5a\xef\x50\x03\xd0\x75\ -\xca\xd6\x38\x18\x42\x85\x88\x1e\x04\x63\xca\x29\x17\x48\xd4\x0e\ -\x51\x38\x31\x45\x21\xb5\x13\x51\xe8\x8b\xf1\x9d\xd7\x87\x72\x34\ -\x8b\xec\xc4\x86\x40\xfb\x50\x86\x4e\x8b\x1d\xcb\x08\x2a\x80\xeb\ -\x3b\x02\x35\xae\x0d\xa2\xa6\x35\xae\x5e\x41\x02\x83\x43\x63\x07\ -\x14\xfa\xb0\x98\xe9\x3f\x99\x23\x11\x27\x2c\xce\x90\x04\x52\xbf\ -\x60\x05\x53\x67\x04\xe0\xb8\x35\x2c\x49\x4e\xa4\xe4\x9e\xe4\x1d\ -\xe9\x74\x49\xe8\xea\xbf\xfe\xd0\xad\xa0\x22\x50\xff\xf5\x21\x2d\ -\xd2\x58\xbc\x61\x5d\x2b\x5b\xfb\x82\x21\x54\x98\x7e\xd3\x0f\xd5\ -\xab\x6b\xdf\x52\x92\x33\x0d\x06\x4c\xa1\x6f\xa7\x2a\xf3\xe9\xa6\ -\x68\x0d\xc1\x52\x75\x09\x97\x3e\x97\x5d\xaa\x8c\x48\xa1\xfe\x5c\ -\xd3\x50\x73\xed\xdb\x9a\xcb\x82\x50\xc7\x19\x69\x11\x39\x50\x01\ -\x20\xa4\xd8\x9f\x8e\xcf\x13\x4c\xeb\xea\xb0\x82\xa7\xae\x88\x8a\ -\x17\xdc\xda\xe5\xc5\xd4\x8d\x71\x14\x6f\x31\xb1\x9f\x3b\x98\x4f\ -\x64\x25\x0a\x58\x6f\xf5\x6a\xda\x31\x45\xe5\x6b\x89\x28\x54\x1e\ -\x4a\xbe\x90\x0e\x86\x1a\xc6\xee\x50\xa1\x02\xba\x7a\xb2\x18\x7a\ -\xa6\x63\xd3\x84\x4b\xc8\xf5\x3b\x93\x49\x90\xe7\x68\x63\x2e\x70\ -\x39\xb9\xf9\x9a\x47\x28\xa5\x56\xa8\xc2\x24\xe6\x4a\x4c\x5d\xb0\ -\x95\x8d\x02\x96\xa0\x2b\x3a\xbb\x2a\x20\xd3\xd1\x98\x42\x08\x69\ -\xbe\xac\x2f\xe2\xb4\xe1\xbb\xc0\x0d\x93\xea\x08\x2f\xa6\xa4\x58\ -\xe9\x48\xa1\x42\x0c\xdd\x35\xc6\x10\xe9\x68\x48\xa1\xe4\xb4\xd8\ -\xde\x04\xe5\x74\x64\xb7\xd4\x7c\x8e\x51\xb1\xa4\x14\x46\x00\xa1\ -\xd3\x19\xba\x82\x19\x12\x2f\x17\xd8\x10\x80\x68\xb1\x7d\x18\x32\ -\xbd\x94\x64\x23\x8a\x2c\xed\xa4\x1b\x41\x8f\x91\xaa\x2e\x14\xed\ -\x22\xe8\xec\x14\x3f\xf4\x02\xf6\x15\xb3\x23\xbe\x7d\x05\x14\x9c\ -\x5b\x08\x6d\xdb\xd2\x2e\x97\xc2\xb6\xed\x0b\x29\x7c\xeb\x42\x44\ -\x4e\x80\xd3\x5b\x60\x31\xfa\xc4\xd3\x64\x4e\x33\xae\x0d\x62\xe4\ -\xa8\x50\xc1\xbb\x4a\xad\x4f\x5d\x01\xa6\x50\xf3\xd9\xda\x68\xf0\ -\x40\x1b\xaf\x22\x47\x03\x46\x91\x0b\x8c\x0e\xc0\x47\x07\x74\x35\ -\x72\x38\x86\x9d\x65\x88\x11\xe2\x9b\x9f\x62\x5f\x85\x07\xd0\x64\ -\xbd\xb0\x79\xf6\x02\x7d\xc9\x4b\x83\x5a\x64\x95\xb8\x38\xd7\xc1\ -\x0a\x56\x88\x50\xbb\xd6\xbc\x1e\xea\x5e\x3b\xeb\xf7\x41\x45\xdc\ -\x05\x0a\xa8\x1d\xa0\x50\x09\xb7\x7a\xcd\x54\x4c\xfd\x02\x66\xea\ -\x96\xeb\x90\x8f\x94\x82\xd0\xdd\x1b\xc9\x32\xd2\xe2\x7a\x7f\x0c\ -\xa4\x70\xd3\x1c\xf4\xea\xa9\xaf\x29\x01\xec\x22\xa9\x06\x05\x87\ -\x70\x24\xe5\x9b\x47\xff\xd0\x93\xb1\x03\x15\x36\xea\x40\x31\xf7\ -\xd6\x8e\xa1\x04\xe7\xa0\x72\x4c\x02\xb3\x05\x15\x54\x56\x99\x8e\ -\xfd\x22\x57\x1b\x3a\x18\xca\x4d\xd5\xeb\xc2\x61\xbf\x6a\x87\x29\ -\x64\xd8\x17\xd7\x59\x80\x86\x1a\x92\x40\xe7\x86\x79\x27\x16\xb0\ -\x0c\x59\xc8\x82\x7e\x57\xf5\xec\xb5\xa8\x50\xff\x82\xcb\xaa\xcb\ -\xd5\xeb\x44\x54\x7d\x05\x35\xa4\x10\xcb\xdc\xe8\x4d\xb8\x91\xaa\ -\x15\x6b\x49\x16\x63\xe5\xd4\xb8\x09\x2c\x30\xd3\xda\x56\x60\x09\ -\x8a\x69\xb1\x7e\xc6\x6b\x8a\xea\x53\x7a\xcb\xf9\xa5\x51\x1d\xb0\ -\x95\xe0\x22\xc0\xc5\x1c\x7d\x34\x97\xec\x70\x85\x0c\x03\xe7\x73\ -\xf5\xb1\x6b\xbd\x94\x7d\xd1\xca\x49\xc0\xaf\x49\x03\xff\x91\x80\ -\x82\x4a\x2a\x53\x56\x70\x67\x5b\x74\x44\x3b\x9a\x12\x86\x32\x99\ -\xf2\x19\xde\x28\xaf\x76\x02\x11\x50\x2e\x6b\x63\x92\x1a\x6e\xfd\ -\x02\x8c\xd6\x27\x7a\x9b\x6e\x7a\xba\x48\x6b\xe1\xf9\xf4\x46\x0e\ -\xbf\x7d\xc2\x9a\x83\xfb\x3c\xc3\xcb\xaa\x27\xa9\xdb\x0a\x0e\x7e\ -\x29\x12\x7c\xd6\x7c\x19\x94\x50\x63\x40\xaf\x66\xab\xf2\xcd\xea\ -\x5d\xa3\xc2\x57\x2e\x6b\x60\xcb\xd2\x68\xb7\xbf\x4d\xd2\xed\xf5\ -\x34\x7f\xab\x7f\xe1\x3b\xc7\x0d\x49\xd1\x51\x7e\x70\x05\x09\xf3\ -\x89\x52\xdf\x4f\x5f\x68\x26\xc2\x25\x1a\x38\xed\x4c\x22\xf7\xca\ -\x9f\xe9\x1b\x03\xfa\xe6\x56\x02\x37\x4e\xeb\x2e\x7c\x7f\xc9\xfe\ -\x38\x0d\xa4\x1f\x25\x57\xfd\xa9\xe2\xcd\xc1\x51\x42\x5a\xcf\x88\ -\x52\xa3\xf4\x09\xd3\x60\x3a\x8e\x91\x27\x49\xa8\x51\xf6\xf9\x45\ -\x67\xf4\xc5\x70\x61\x0b\x84\xa9\x61\x2a\x77\xd6\xe3\x22\xe8\xaa\ -\x58\x59\x78\xb9\xc6\x63\x17\x28\x9b\x36\x70\xfa\xec\x74\x9d\x3a\ -\x53\x63\x01\x08\x14\x14\xa8\x62\x90\x1b\x4a\x1d\xa0\xb4\x48\x30\ -\x35\x1f\x5b\x44\x7d\x6b\x85\x27\x2f\xf3\x9a\x00\x82\x8a\x70\x29\ -\xe0\x48\x54\x13\x15\x84\x33\xe5\xcc\x86\xe3\xa8\x5c\x09\xba\xef\ -\x25\x12\x7d\x81\xa8\x20\x9e\x5e\xd1\x0c\x68\x4d\x3a\x64\x6a\xc3\ -\x30\x82\x64\xca\x00\x43\xfe\x08\x75\x58\x50\xa1\x9c\x17\x1f\x23\ -\x0b\xe0\xeb\xee\x48\x25\xa4\x27\x91\x05\xbf\x08\x0b\x83\x4c\x91\ -\x03\x4c\x78\x41\xa6\x5a\x46\x29\xa1\x5a\x46\x83\x71\x98\xe6\x89\ -\xa4\x48\xd4\x06\xd1\xb0\x9c\x72\x03\xe1\xc2\x60\x78\x1e\x3c\x3c\ -\xcf\xb4\xe6\xed\x86\xe7\x81\x7a\xd2\x2a\x2b\x0d\xa9\xda\xa0\x0a\ -\x18\x0d\x74\x02\xc0\x91\x56\x64\x3a\x7e\xc0\xbe\x64\x8a\x11\x07\ -\xe8\x2e\x95\x7b\x3e\x0d\xdd\x93\x2e\x55\xe6\x59\x48\x86\x53\x97\ -\x24\xe4\x86\x23\x08\x74\x18\xa8\xd2\xbc\xa1\x46\xd3\x6f\x23\x9d\ -\x93\x8b\x26\x20\x67\xc4\x21\xd2\x62\x41\x51\xea\x32\xde\xdd\xeb\ -\xe9\xe5\x91\x98\xf3\x66\xc4\xc1\x2d\x08\x81\x44\x5f\x20\x2a\x14\ -\x36\x49\xfb\x57\x0e\x38\x37\x5f\x14\xc3\xbc\xd0\x16\x6f\xe8\x0b\ -\x57\xb2\x71\x84\x94\xe3\x60\x8c\x2d\xa2\x50\x42\xaa\xe7\x21\x63\ -\x00\x09\x7a\x49\x51\xdf\x0d\xfd\xe0\x74\xc4\x14\xc4\x38\x2a\xa6\ -\x36\x62\xe6\x91\x1d\xa8\x2e\x09\x7c\xe1\x0f\xac\xed\x71\x5e\x6f\ -\xaa\x23\x48\x28\xaa\xd0\xd1\x06\x37\xa0\xa1\x1c\x49\x54\xf3\x2d\ -\x88\x51\x50\xad\x20\x05\x13\x54\x09\xba\x62\x21\x32\x7d\x21\xdc\ -\x00\xa9\x7c\x19\x1a\x4a\x96\xfa\x54\xa8\xb0\xa0\x8f\xde\x8c\xa5\ -\x90\x83\x17\x10\x57\x39\x33\x60\xfb\x28\x22\x54\x1b\x62\xea\x13\ -\xaa\x94\xef\xc0\x80\xf8\xd9\xfe\x0c\xda\x49\xe0\x1b\xf2\x09\xd7\ -\x95\x81\x18\x47\xf9\xd6\x43\xe2\x18\xc7\xb7\xc2\x15\x70\x68\x46\ -\x0f\xa0\x62\xe0\x17\x7c\x5e\x85\xe7\xc9\x20\x1c\x49\x07\x1f\xf7\ -\x11\x47\xcf\xe6\x92\x46\xc6\xab\x74\x07\x1c\x7a\xbb\xa8\x74\x7c\ -\x89\x8e\xcd\x65\xcd\x99\xd1\xae\x2a\x26\x0f\x5e\xd6\x54\xe2\xaa\ -\x47\x45\xfb\xf7\x92\x54\x6f\xdd\xa3\xa2\x01\x7c\x49\x06\xb0\x4e\ -\x21\x44\x49\xb5\x83\x14\xce\xf6\x85\xdd\x5c\x0a\xa1\xbe\x10\x56\ -\x82\x89\x00\xe7\x59\x84\x68\x29\xd9\x89\x28\x01\x25\x9d\x95\x89\ -\x84\xd8\xa1\x02\x6b\x5f\x97\x30\x3f\x60\xf2\x77\xad\xbc\x72\x76\ -\xe6\x19\x52\xb5\x33\xc5\x18\x6a\xa6\x45\x99\x7b\x86\x2a\xd8\x0a\ -\x56\xb8\xa0\x7e\x99\x7d\x86\xe2\x0a\xbe\xd6\x60\x10\xb8\x7e\x77\ -\x11\x76\x28\x71\x2d\xf2\xcf\xd0\xaf\xb1\x02\x15\x4e\x58\xf3\x0c\ -\x34\xa4\x6a\xc5\x5b\x05\x55\xc1\x79\x0e\x1a\x66\xa1\xd9\x5a\x95\ -\x05\x24\xb2\x94\x67\xa1\xe1\xf8\xdb\x45\xa5\x2c\x35\x92\x5b\x70\ -\x20\xee\xa2\x72\x46\xeb\xf4\x16\xf4\x70\x2e\x2a\xbe\x7f\x4c\x84\ -\xc0\x05\xb2\xc0\x47\xce\x85\x5e\x18\xbf\xb3\xb9\x09\xc0\x72\xea\ -\x5a\xff\x62\x74\x1f\x7a\x70\xb5\x6f\xd3\x30\x90\x1d\x2b\x18\x7a\ -\x34\x56\x60\xfa\xd5\x98\xb7\x39\x98\xc5\x4a\x84\x68\xf3\xc2\x5a\ -\x46\x2e\x51\x95\x2d\xbd\xee\xc8\x9b\x3f\xbc\x6e\xdd\x39\x7b\x48\ -\x21\x4c\x50\x98\x65\xf7\x78\xba\xac\xa4\x79\x98\x28\x99\xf0\x03\ -\xa8\x5c\x09\x26\xef\x26\xf9\x06\xc3\xa9\x66\x67\x48\x26\xe4\x66\ -\x60\x88\xb3\x70\x55\xfc\x3c\x62\x34\x02\x4e\x1c\x06\x87\x8f\xfe\ -\xd1\xbc\xdb\x1c\xc5\x3d\xc1\x50\xae\x15\x98\x40\x8a\x16\x3d\x14\ -\x4b\x1d\x27\xc4\x56\x6c\xb8\x66\xa4\x25\x93\x16\x26\x76\x80\xfe\ -\x89\x0d\x98\x60\xb1\x03\x8a\xb3\xc1\xa1\x87\x55\x58\xef\x18\x28\ -\x40\xec\x20\xc0\x31\xb2\x71\x46\xb4\x7b\x72\xb0\x8d\x9b\x41\x3e\ -\xce\x68\xb2\x23\x9b\x00\xaa\x36\x1f\x40\xc1\xe8\x81\x15\x4d\x0b\ -\xb1\x51\x74\xee\xa2\x04\x68\x0a\xd9\xd1\xb6\x10\x11\x04\x86\x9b\ -\x74\x59\xc2\xe9\x73\x90\x61\x14\x3d\x7d\x09\x15\xae\x8d\x2d\x69\ -\x95\x35\x74\x32\xfa\x69\x6e\x42\x30\x45\xa3\xc8\xce\x3e\x31\x80\ -\xbb\x74\xf9\x7a\xb1\x39\x1f\xc5\x15\x58\xff\xd2\xa1\x29\x11\x2f\ -\x80\x3d\x77\x06\x29\x0a\xab\x0d\xa6\xca\x85\x61\x81\x17\x78\xfd\ -\x6b\x32\x9c\x3f\x83\x14\xa9\xc2\x52\xe5\x84\x06\xa1\xa0\xdd\xcc\ -\x3e\x9f\x84\x8c\x33\x0e\x31\x2f\xb8\x4a\xb2\x46\x1b\xd8\x0a\x59\ -\x49\x02\x05\xd6\xfc\x32\xae\x55\x8e\x35\x8e\xc0\x58\xc1\x0a\xd4\ -\xb5\xd6\x13\xf9\x51\x11\x03\x73\x65\x44\x6a\xff\xf3\x34\x21\x25\ -\xd0\x7b\x26\xf6\xcd\x89\x38\x67\x98\x14\xc3\xf7\xc6\x70\x5e\xcd\ -\x56\xfa\x4d\xfe\xcf\xd5\x6c\xff\xa0\xfe\xf9\x3f\xa7\x5f\x0b\x56\ -\ -\x00\x00\x0a\x16\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x69\x6e\x75\x73\ -\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x34\x34\x2e\x37\x39\x31\x32\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\ -\x37\x2e\x37\x39\x33\x31\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\x2e\x32\ -\x34\x32\x30\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ -\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ -\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ -\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ -\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ -\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ -\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ -\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ -\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ -\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ -\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ -\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\ -\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ -\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\ -\x30\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x37\x2e\x30\x30\x33\x36\x30\x39\x36\x36\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ -\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x33\ -\x33\x33\x33\x33\x33\x33\x2c\x31\x36\x2e\x38\x35\x32\x33\x33\x39\ -\x20\x48\x20\x32\x38\x2e\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x38\x32\x2d\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ -\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ -\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\x64\x30\x64\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\ -\x39\x38\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\ -\x2c\x31\x36\x2e\x38\x36\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\ -\x32\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ -\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\ -\x73\x76\x67\x3e\x0a\ -\x00\x00\x0b\xfc\ -\x00\ -\x00\x36\x02\x78\x9c\xed\x5a\x4b\x73\xe3\xc6\x11\xbe\xef\xaf\x40\ -\xb8\x17\xbb\x42\x80\xf3\x7e\x50\xd2\xfa\x60\x97\x2b\xae\x72\x2e\ -\xb1\x53\x39\xba\x20\x00\x94\x90\x25\x01\x06\x00\x45\x69\x7f\x7d\ -\xbe\xc6\x8b\xa0\x48\xd1\x5a\x3b\x2e\xa7\x6c\x51\xa5\x22\xd1\x3d\ -\x8f\x9e\xee\xaf\xbb\x67\x30\x7d\xfd\xd5\xe3\x66\x1d\x3c\x64\x55\ -\x9d\x97\xc5\xcd\x8c\x47\x6c\x16\x64\x45\x52\xa6\x79\x71\x77\x33\ -\xfb\xe7\x8f\xdf\x86\x6e\x16\xd4\x4d\x5c\xa4\xf1\xba\x2c\xb2\x9b\ -\x59\x51\xce\xbe\xfa\xf0\xee\xfa\x2f\x61\x18\x7c\x5d\x65\x71\x93\ -\xa5\xc1\x3e\x6f\xee\x83\xef\x8a\x8f\x75\x12\x6f\xb3\xe0\x8b\xfb\ -\xa6\xd9\x2e\x17\x8b\xfd\x7e\x1f\xe5\x3d\x31\x2a\xab\xbb\xc5\x97\ -\x41\x18\x7e\x78\xf7\xee\xba\x7e\xb8\x7b\x17\x04\x01\xe6\x2d\xea\ -\x65\x9a\xdc\xcc\xfa\x0e\xdb\x5d\xb5\x6e\x1b\xa6\xc9\x22\x5b\x67\ -\x9b\xac\x68\xea\x05\x8f\xf8\x62\x76\x68\x9e\x1c\x9a\x27\x34\x7b\ -\xfe\x90\x25\xe5\x66\x53\x16\x75\xdb\xb3\xa8\xdf\x4f\x1a\x57\xe9\ -\x6a\x6c\x4d\xd2\xec\x65\xdb\x88\x7b\xef\x17\x4c\x2c\x84\x08\xd1\ -\x22\xac\x9f\x8a\x26\x7e\x0c\x8f\xbb\x42\xc6\x73\x5d\x05\x63\x6c\ -\x01\xde\xa1\xe5\xeb\x5a\x2d\x6b\x28\x74\x8b\xff\xb1\xf9\x40\x88\ -\xea\x72\x57\x25\xd9\x0a\xfd\xb2\xa8\xc8\x9a\xc5\x37\x3f\x7e\x33\ -\x32\x43\x16\xa5\x4d\x3a\x19\x66\xd0\xe7\xd1\xac\x47\x4a\x2e\xe2\ -\x4d\x56\x6f\xe3\x24\xab\x17\x03\xbd\xed\xbf\xcf\xd3\xe6\xfe\x66\ -\x26\x55\xc4\x25\x3e\xba\x25\xde\x67\xf9\xdd\x7d\xf3\x9c\x9a\xa7\ -\x37\x33\x48\x2f\xbc\xeb\x9e\x27\xe0\xe0\x5d\x83\x7e\xe0\xe5\xc8\ -\x61\x91\x17\x11\x0f\x2a\xae\xa5\xed\xda\x0c\x4b\x58\xa6\x65\x42\ -\x32\x61\xc8\x6c\x93\xc7\xbb\xa6\xdc\xc0\x6a\x49\xb2\x8e\xeb\x3a\ -\x5f\xe5\x09\x1e\xca\x62\xbb\xde\xdd\xe5\xc5\x4f\xbb\x22\x2d\x7f\ -\x5a\x27\xf5\x4f\xcd\x7d\x95\xd5\xf7\xe5\x3a\x8d\x06\x2d\x8e\x53\ -\x66\x8f\xdb\xb2\x6a\xc2\xc7\x74\x0b\x5d\x1a\x7b\x96\xf9\x34\x30\ -\x3f\x80\x7b\x9d\x66\xab\x9a\x5a\x75\x0b\xa3\x27\xac\xcc\xce\x82\ -\x45\xcb\x1d\xe5\x24\x21\xd3\x87\x3c\xdb\x1f\xda\xde\xc6\x75\xa7\ -\xbc\x20\xd8\xc6\x77\x00\xda\xba\xac\x6e\x66\xef\x57\xed\xa7\x67\ -\xdc\x96\x55\x9a\x55\x03\xcb\xb4\x9f\x23\x56\x09\x63\xe4\xcd\x53\ -\xe7\x5a\xfd\xd8\x83\xbc\x34\xea\xc8\x67\xe7\xf9\xf5\x7d\x9c\x96\ -\xfb\x9b\x99\x78\xce\xfc\x54\x96\x1b\x8c\x0a\xa3\x78\xeb\xd8\x09\ -\x3b\x79\xbc\x99\x85\x82\x45\xc6\x4b\xd3\x1b\x72\xca\x25\x81\x4c\ -\xc4\x99\xf2\xce\x9f\x30\x77\x55\x05\xe7\x0b\xd7\xf1\x53\x86\x55\ -\xb5\x5f\xbc\x6f\x04\xb3\xec\xef\x2a\xd2\x4e\x53\xed\xb2\xe7\x3d\ -\x89\x13\xde\xde\x96\x8f\xe7\xd9\xc0\xc2\x8e\xdc\x3a\xdc\x15\x79\ -\x03\xd7\xd9\x3e\x4e\x47\xdd\xe5\x69\x56\x9f\xef\x58\x17\xf1\x36\ -\xbc\x5b\x97\xb7\xf1\xfa\x7c\x83\x7d\x0e\xec\xec\xc3\x1e\xe5\x5c\ -\x8e\x46\x78\xde\x62\x80\xbc\x65\xee\x85\x16\x90\xfd\xc4\x10\x3d\ -\xeb\xe9\x65\xd6\x26\x7e\xcc\x37\xf9\xa7\x0c\x8a\xe1\x2d\xee\x80\ -\xad\x23\xb5\x74\xdd\x82\xa0\x79\x22\xf7\x7d\x7c\x22\xda\x6c\x20\ -\x92\x3e\x89\x20\xbc\xb7\x23\xb1\xac\x72\x78\xc5\x44\x9c\x81\xf4\ -\x34\x25\x91\xb3\x23\x56\x3f\xb6\x00\x6b\xe1\x67\x9f\xf3\x9e\xa6\ -\xbc\x1e\xf7\x8b\x53\xe0\xb7\xf4\x4d\xd6\xc4\x69\xdc\xc4\x07\x2f\ -\x18\x28\x90\x8d\x0d\x2b\x43\xdc\x5c\xfe\xe3\x9b\x6f\x3f\xf4\x13\ -\x5d\x27\xc9\xf2\x5f\x65\xf5\x71\x98\x37\x08\xa8\x41\x7c\x5b\xee\ -\xa0\xe9\xd9\x87\x91\x7c\x9d\x26\x4b\x44\x3a\x44\x80\x0f\xf9\x06\ -\xd8\xa6\x20\xf9\x57\x44\xb6\xeb\xc5\x81\x71\xd4\x98\x94\x75\x18\ -\xb4\x1b\x16\xa1\xa1\x0d\x99\x67\xf3\x46\x9a\x6c\x72\xea\xb4\xf8\ -\xa1\xc9\xd7\xeb\xef\x68\x92\x7e\xc5\x93\x41\xf3\x66\x9d\x1d\x88\ -\xd7\x8b\x5e\xfa\x7e\x6d\x8b\xc9\xe2\xae\x17\xc3\xea\xdb\xa7\xbb\ -\x83\x56\x8e\x9c\x62\x34\xf4\x3a\xbe\xcd\x80\xd0\xef\x89\x19\x9c\ -\x70\xef\xaa\x72\xb7\xdd\x94\x69\xd6\x77\x1f\xb4\x79\x77\x04\x03\ -\xc9\xa4\x1e\x2d\xd8\x54\x71\x51\x93\x66\x08\xf6\xf8\xb9\x46\xc2\ -\xfd\x82\xc2\xb5\x36\x5a\xaa\xb9\xc4\x0f\x6b\x94\xb4\x5f\x8e\x5a\ -\xbe\xae\xb2\xa4\x99\x18\x02\xc6\x97\x91\x44\x60\x36\xde\xcd\x0e\ -\x74\x90\x43\x13\x09\xa3\x39\x93\x72\x42\xa7\xa8\x21\x89\x61\x3c\ -\xe7\x13\xfa\x98\x2a\x6c\x44\x99\x42\x8a\x09\x6f\xc8\x2d\x67\x58\ -\xb4\x22\x12\x48\x3a\xae\x27\xe4\xba\x79\x5a\x43\x0b\x6d\xd8\x5c\ -\xbe\x67\xed\xe7\x2a\xcd\xeb\x2d\xf4\x82\x24\xb7\xce\x8b\xec\xaa\ -\x44\x76\x59\xad\xcb\xfd\xf2\x21\xaf\xf3\xdb\x75\x76\xd5\x7e\xe7\ -\x6b\xd8\x77\x24\xad\x60\xe4\x65\x1f\x90\xdb\x87\xb0\x0f\xa7\x4b\ -\xde\x3d\x56\xbb\x75\xb6\x2c\xca\xe2\x13\x02\xf1\x55\xdd\x54\xe5\ -\xc7\x6c\xf9\x3e\xbd\x25\x57\xe8\x1f\xbb\x98\xb1\x1c\x1d\x44\x0c\ -\x74\x12\x02\x66\x5b\xde\xee\x9a\x66\x4a\xfb\x77\x99\x17\x4b\xa0\ -\x2c\xab\x06\x6a\xfb\xb0\x86\xfb\x37\x4b\x35\xd0\xd2\x18\x81\xbb\ -\xaa\xb0\x1c\xcc\x9e\x4d\xa9\xe5\x6a\x55\x67\xcd\x92\x0d\xb4\x83\ -\xc4\x9b\xb8\xfa\x98\x55\x5d\x87\xac\x88\xb1\xc0\xf0\x36\x4e\x3e\ -\x12\x6c\x8a\x74\x19\x27\x08\x9e\x3b\x02\xc0\x04\xd1\xd7\xdb\xb8\ -\xb9\x9f\xe8\x75\x74\x6a\xa0\x8c\xfc\x00\xf1\x34\xa6\x4f\x5d\xc7\ -\x53\xab\x8c\x91\xbe\x2c\xb0\xc8\xa6\xac\x42\xc4\xfc\x87\xb8\xd9\ -\x55\xd9\x34\xb6\x74\xf6\xa3\x29\xa4\x93\x3a\x9c\x32\x40\xff\x7b\ -\xa0\x23\x69\xbd\x40\x60\x98\x23\x0d\x79\x7c\x3b\x11\x7c\x1d\xf0\ -\x48\x30\xc5\x9d\xb1\x73\x6e\x01\x24\xa6\xb5\x0e\x42\x17\x69\x6e\ -\x85\x14\x73\xae\x22\x26\x99\x25\x1a\x7e\x7a\x6c\x3a\xac\xa5\xee\ -\xce\x38\xb0\x41\x74\x91\x64\xc2\x73\x39\xe7\x2c\xb2\x92\x10\x0a\ -\xa2\x8f\x9c\x87\x08\x72\xae\x23\xcb\x8c\x64\x44\x14\x32\x52\x80\ -\xbe\x70\x20\xe2\x5b\x29\x46\x44\x1b\x39\x67\x98\x05\x8d\x33\x4c\ -\x2d\x4c\x10\x4a\x0e\x39\xad\xea\xe6\x76\x10\x93\x68\x1a\x52\x32\ -\xce\x39\xcd\x6d\xbd\x0e\x12\xd0\x22\x63\xd0\xc9\xcd\x43\x6c\x66\ -\x3c\x17\x02\x32\x8a\xc8\x3b\x6e\xb8\x9f\x87\x1e\xcd\xa4\x53\x3e\ -\x40\xa2\x56\x46\xe8\x79\xc8\x05\x48\xde\x73\x2b\x03\x15\x29\xb8\ -\xa4\x02\x51\x45\xd0\x95\x53\x4e\x07\x60\x6b\x65\x8d\x94\x68\x09\ -\x74\x71\xe3\x6d\x80\xd5\x01\x64\x5a\xa9\x39\x46\x31\x56\x69\x13\ -\x70\x19\x59\x67\xb5\x32\x6a\x4e\x1d\x94\xb0\xa2\xa5\x19\xcf\x1c\ -\xb4\x00\xa9\x2c\x2d\x59\x4f\x3a\xbb\xbe\xb7\xd2\x32\x80\x12\x30\ -\x34\x37\xe8\x6c\xb9\x70\xc2\x39\x98\x05\xbe\x0b\x6d\xd9\xb9\x87\ -\x47\x5a\xc3\x8c\x42\x33\x2c\xbf\x93\xd7\xfb\xe0\xd3\xa9\x2f\x76\ -\xae\x24\xe2\xd5\x4a\xc4\xcf\x5d\x69\x70\x1c\x72\x53\x9e\x1c\x3b\ -\x0e\xfb\x2d\xfd\x65\x14\xe1\x77\x82\xfc\x73\xc0\x2b\x0a\x8c\x4a\ -\x48\x3d\x37\x11\xe2\xaf\xf3\x96\x03\xf0\x30\x06\xf0\x8a\x3d\x58\ -\x0f\x64\x58\x3d\x00\x5c\x00\x53\x06\x24\xcc\x61\x35\xa9\x8d\x65\ -\x0a\x38\x36\x84\x1d\x8c\x8c\xfe\xca\x4a\xae\xac\x6d\xc1\x0d\xf0\ -\x58\x60\x4c\x93\xb9\xb4\x71\x80\x1d\x10\x03\x70\x6a\x0f\x4b\x4b\ -\x0e\x28\x62\x7f\x0e\xaa\x8a\x74\x17\xf8\x09\x83\x10\xc3\x08\xf4\ -\x17\x2e\x82\xe7\x39\xb8\x11\xce\x0b\xc2\x03\x14\x1c\x7e\x24\x45\ -\xa4\x3c\x13\xc2\xd0\xfc\xce\x42\x40\x42\xbd\xc1\x68\x70\x2e\x8b\ -\xf9\x25\x41\x97\xe6\x92\x3e\xf2\x56\x7a\x20\x1a\xcb\x63\xce\x78\ -\x21\x5b\x62\x3b\x94\x25\x00\x4a\x8f\x3f\x6e\x83\x3e\x33\x20\x4a\ -\xce\x91\x3c\x14\x7c\xe6\x04\xf7\xfe\x1c\xec\xf9\x09\xee\x95\x1e\ -\x71\xef\xf8\x80\x7b\x75\x00\xfe\x01\xf7\x72\xec\x6b\xf4\xe0\x34\ -\xe2\x55\xa8\xb7\x23\xea\x5d\x9b\x60\xf8\x05\xd8\x27\x31\x13\xc9\ -\xcb\xb0\x57\xf2\xcf\x04\x7b\x19\xba\x63\xe0\x6f\x60\x79\x04\x47\ -\xc6\x04\x0c\xc8\x35\x8c\x80\x58\x0d\xeb\x8b\x48\x70\xed\x2c\xa7\ -\x80\x89\x43\x08\xf7\x2e\x30\xf4\x03\x34\xb2\x9f\x11\x30\x3e\x6c\ -\xcf\x22\xd3\x83\x06\xf6\x80\x9d\x8c\x47\x52\x80\x2d\x11\xda\x85\ -\xe3\x01\x90\xa6\x99\x67\x7c\xde\x42\x0e\x4e\x11\x74\x89\x01\x1f\ -\x07\xf0\x6a\xfa\xa1\xe0\x66\xe8\xcd\x38\xbc\x8f\x21\x35\x20\x18\ -\x4b\x85\x96\x98\x98\xc1\x0f\x3c\xac\x6e\x91\x81\xb8\xc5\xe6\x09\ -\x62\x99\xde\x4b\xdb\x66\xad\x97\x92\x3b\x3a\x83\x74\x45\x78\x50\ -\x92\x29\x26\x03\x87\xa4\x02\xf4\x02\xe3\xc2\x44\x56\x28\x2f\x2d\ -\x10\x63\xa5\x6c\xa5\x81\x03\xf1\xb6\x33\xa5\x06\x78\x06\x82\xbf\ -\x11\x68\x0b\x1f\x64\x92\x96\x4a\xf9\x4b\x6b\xf8\x3d\x14\xa0\x30\ -\xa5\x67\x5e\xb6\xf9\xab\x5b\x2d\x9f\x33\x88\x07\x7c\x6a\xe5\xb5\ -\x80\x8a\x74\xe4\xa4\x90\xae\x6d\xd4\xfa\x0d\xdc\x80\x46\x43\xee\ -\xd2\x6a\xd2\x91\xfa\x49\x52\x8e\xed\xbc\xcf\x33\x29\x3c\x79\x34\ -\xfc\xb0\xd3\x36\xb9\x18\x13\x9a\xf3\x80\xe1\xc1\x76\x5b\x17\x7b\ -\x09\xde\xce\xc7\xec\x52\x54\x67\xec\x4f\x04\xef\x53\x70\xb7\x9b\ -\x01\xa1\xe4\x1c\x71\x57\xfd\x2c\xb8\xdd\x19\x70\x9b\x5f\x05\x6e\ -\x90\x10\x3c\xb1\x93\xa2\x10\x0e\x53\x2a\xa1\x28\x9e\x59\xc0\xd8\ -\x76\x1b\x0d\x65\xbd\x33\x93\xe9\x80\x8c\xd1\xaf\x5a\xb9\x90\x22\ -\x14\xed\x20\x8c\xd7\x9a\x19\x90\xb0\x7d\xe1\x8a\x21\xfe\x81\xeb\ -\x11\xc2\x82\x61\x8b\x8b\xa0\x89\xf1\x0e\x98\x56\xbf\x0c\xd2\xfc\ -\x00\x69\x77\x19\xd1\xe6\x67\x10\x2d\x3e\x1f\xd1\x0c\x0d\xdc\x45\ -\x44\xe3\x40\xf0\x7f\x85\xe8\x5f\x00\x55\x6b\x45\xc8\x42\x71\x01\ -\xae\x9c\x52\x5d\x1f\xa3\x44\xf7\x0e\x4f\x42\xd9\x67\x7f\xbe\xa4\ -\x4a\x9e\x08\x25\xc4\x41\x77\x29\xfd\x1d\xeb\x4e\x62\x4f\x4d\x79\ -\xdf\xc9\x5f\xa7\xc4\x88\xb7\xdb\x4f\xc7\x7f\x3f\x6d\xf2\x4b\xda\ -\xc4\xf1\x80\xd1\x76\xe6\x4d\x9b\xaf\xd4\xe6\xa5\x50\x4a\xce\x8f\ -\x48\xca\xde\xb4\xf9\x5a\x6d\xaa\x0b\xda\x94\xbd\xa3\xf3\x37\x6d\ -\xbe\x52\x9b\xfe\x82\x36\x71\x32\x81\x70\x4a\x1a\xf9\xa6\xce\x9f\ -\xdf\x31\x29\x76\xaa\x4a\x36\xbc\xba\x91\x7c\x3c\x0e\x30\x3a\x05\ -\xb6\xe7\x43\xf3\xd2\xef\xd7\xea\xf2\xcc\x96\xf4\x8f\xa2\xcb\xd0\ -\x9c\x68\x93\xde\x64\xd1\x0b\xd7\x37\x65\x7e\xb6\x32\x4f\x77\x47\ -\xb6\xd5\x25\xf3\xfe\x4d\x9b\x9f\xad\x4d\x7b\xa2\xcd\xc3\x3b\xda\ -\x37\x6d\x7e\x76\x0e\xba\x74\xd0\x54\xdd\xf6\xe8\x2d\xff\xbc\xf6\ -\x18\x74\x6e\xb3\xd9\xde\x38\xb5\x17\x08\xa7\x07\x21\x75\x50\xe2\ -\xf1\xcf\x37\x68\xb6\x07\xa1\x73\x1b\xa4\x83\x3e\x4f\x8f\x42\x6f\ -\xfa\xbc\x7c\x14\x3a\x77\xb4\x1c\xf5\x79\xe6\x30\xf4\xa6\xcf\xcb\ -\x87\xa1\x73\xc7\xa1\x51\x9f\xfd\x71\xc8\xf1\x37\x7d\xbe\xf6\x38\ -\x74\x11\x9f\xc3\x81\x48\x8b\x37\x85\xbe\x36\x80\xea\x0b\xfa\x3c\ -\x4d\xef\x7f\x48\x6d\x5e\x2f\xee\x86\x8a\xa0\x49\xd5\xc9\xb3\x37\ -\xb5\x09\xf7\xcf\x6e\x94\x59\xa4\x85\xa6\xdb\xc9\x49\x91\x46\xf6\ -\x90\x15\x65\x9a\x8e\xeb\xe5\x2e\x35\xcf\xdf\xe1\x8a\x48\x28\xab\ -\xb9\x64\xe6\xdc\x2a\x5e\x2b\xfc\xb4\xda\x86\xc4\x16\x58\xfa\x48\ -\x1c\x6a\x59\x64\xff\xb2\x7c\x64\x8c\x05\x30\x27\x9c\xa3\x0a\xad\ -\xa3\xda\xac\x0a\x2c\x1d\x69\xe6\x98\x72\x87\x79\xbb\x92\x1c\xba\ -\x50\x65\xd6\x1f\x54\x39\x85\xe5\xd9\xfa\x98\x55\x59\x34\x61\xcb\ -\xc1\xc2\xaa\x4d\xbc\xee\x28\x0f\x71\x95\xc7\x45\x73\x44\xdb\xb7\ -\xc2\x1e\x91\xa0\x86\xac\x49\xee\x8f\x69\xf9\xa7\x6c\xb9\xc9\xd2\ -\x7c\xb7\xb9\x22\x94\xf4\xd5\x71\x47\x6d\x56\xf1\x26\x5f\x3f\x2d\ -\x7f\x88\x8b\xfa\x2a\x1c\x9c\x25\xec\xba\x6f\xb3\x64\xac\xe1\xec\ -\x5a\x34\xd9\x63\x83\x56\x69\x56\x50\x85\x4b\xfb\x14\xaf\xf3\xbb\ -\x62\x59\x37\x71\xd5\x74\x84\x34\x4b\xca\xaa\xeb\xd3\x1a\xe8\x19\ -\xb1\xc5\x6b\xc7\x59\x67\x0d\xcc\x1b\xf6\x65\x6c\x83\x58\xfb\xb2\ -\x4a\x9f\xd3\xda\x31\xc6\x62\xa9\xae\xf7\xbe\xca\x1b\x34\x09\xa9\ -\xe2\x6a\xb9\xae\xc2\xe6\xf6\x2a\xcd\xc9\xe0\x34\xf3\xba\xa9\xae\ -\xa8\xbe\xb3\x5d\x76\x7d\x9f\xaf\x9a\xe5\xf0\xd8\x8b\x5d\x24\xf7\ -\x50\x7e\x27\xf7\x2f\x2e\x4d\x1a\x4c\x77\xf6\x9e\x62\x0a\xcf\xc1\ -\xa1\x55\x17\x16\xc4\xeb\x8b\x81\x06\xcc\xb4\x05\x0a\x92\x45\x8a\ -\x19\xaf\x15\x55\x22\xe0\x9b\x33\x17\x7c\x1d\x08\x83\xdd\x9c\xe2\ -\xde\x51\xde\xe4\x8c\x59\xed\x02\xda\x31\x1b\xcf\xb5\xa3\x0b\x1b\ -\xe1\x8c\x65\xd3\x9b\xda\xf6\x10\xdd\x5e\xc1\x7c\x1f\xb4\xb7\x38\ -\x8c\x33\xec\x0a\x23\xaf\x38\x33\x42\xd1\xe5\x18\xf3\x9a\x59\x43\ -\xd7\xc1\x70\x64\xba\x38\x35\xc2\xd3\x9d\x3c\x5d\x38\x29\x6f\x8d\ -\xd4\x01\x5d\x3d\x09\xba\xaf\x9f\xb7\x57\x3a\x8e\x6a\x79\x38\x1a\ -\x72\xad\x4d\x5b\x33\xa4\xb9\xd2\xca\x21\x48\xea\xc8\x31\x2a\x48\ -\xa0\x44\x04\x61\x38\x43\x67\x2c\x00\xa7\x78\xd5\x96\xe3\x68\xcf\ -\x1d\x73\x8e\x2e\xcf\x70\x50\x15\xa6\xbb\xe9\xe2\x0e\x87\x4e\x30\ -\x85\x32\x1c\x47\x2a\xf4\x44\xc8\x74\x10\xc5\x7b\x41\x95\x17\x9c\ -\xae\x7f\xa5\x17\x68\xa3\x98\xe5\xc2\xb4\x43\x71\x2e\x27\x17\x4b\ -\x43\x54\x17\xde\xb9\xd0\x4e\xce\x6c\xaf\x4d\x0c\xe7\xae\x2a\x93\ -\xe1\xf3\xe6\xde\x7f\x78\xf7\x3e\xad\x3c\xfc\x4d\xdd\x9b\x79\xc1\ -\xa4\xa1\x1a\x17\xc7\x3c\x57\x54\x7f\x24\x74\x64\x9c\x07\xf8\xe7\ -\x0c\xc8\xd7\xce\xc1\x57\xc9\xbf\x99\x56\x42\x51\x75\x0d\x5d\x0d\ -\x5b\x2a\x35\x63\x91\xd4\xdc\x2a\xaa\x34\xe2\xf0\x1a\x2b\x44\xeb\ -\xdf\x20\x32\x4f\x05\x3b\xe0\x5b\xc9\xa5\x30\x3e\xe0\x91\xf3\x4a\ -\x7b\xba\x40\x96\x11\xc6\xd4\x70\x49\x8a\x1e\x0a\x81\x82\xd3\xf9\ -\x90\x3b\xa9\xa8\x62\xc7\xc0\x9f\x05\xd5\x24\x81\x66\xb5\x52\x14\ -\x5b\xd0\x90\x31\x03\xbf\xf7\xf4\xbe\x43\x6a\xc5\xcf\xf9\xb8\x3a\ -\x38\xb9\x1d\x9d\xdc\x9b\xd1\xc9\xe5\xe0\xe4\xd2\x0f\x5e\x2e\x4e\ -\xbc\x5c\x9e\x78\xb9\xed\xbd\xbc\x2d\xf4\x7b\xc9\xd1\x7f\x2b\x37\ -\x7f\x71\x1f\xb4\x5a\x9d\xcb\x04\x2f\xef\x7f\xfa\xa2\xd6\x23\xfc\ -\xf0\x88\x9f\x94\xa7\xd6\xff\xd9\xc5\x55\xf6\xfa\xbd\xde\xe5\x5d\ -\xd2\xc5\x02\xd5\x93\x9d\x93\x44\x56\x78\xbe\x73\x1a\xcb\x1b\x4e\ -\x76\x4e\xa7\x1c\x2a\x5a\x77\xfd\x7b\xae\xe9\x0e\x8a\xb7\xb0\x61\ -\xec\x78\xcf\x24\x22\xa7\xe8\xa3\x2f\x06\xd5\x56\xdb\x93\x25\x9d\ -\xd7\xa4\x8c\x90\xa9\xa8\x00\xcf\xfd\xba\x9d\xf3\xe7\xee\x39\x5b\ -\x2f\xc6\xf2\x8c\x68\xd3\x2c\x12\x73\x9f\x66\xff\x16\x48\xa4\x43\ -\x7b\xa4\x89\xc3\x81\xc3\x89\xff\x11\x5e\xc7\xf2\x7f\xec\xdb\xaf\ -\xa9\xfc\xfe\xc3\xbb\xff\x02\x4e\xaa\x5a\x58\ -\x00\x00\x06\xb7\ -\x00\ -\x00\x26\x68\x78\x9c\xed\x59\x49\x8f\xe3\x44\x14\xbe\xf7\xaf\x28\ -\xdc\x17\x10\x71\xb9\x16\x6f\xe5\x4e\x32\x87\x19\x21\x90\xe0\x02\ -\x03\x1c\x47\x8e\x5d\x49\x4c\xdb\xae\x60\x3b\x9d\x84\x5f\xcf\x2b\ -\x6f\x71\x36\xe8\xa1\x33\x91\x90\xe2\x56\xab\xed\xf7\x5e\x6d\xdf\ -\xf7\x36\xbb\xc7\xef\xb6\x59\x8a\x5e\x64\x51\x26\x2a\x9f\x18\x14\ -\x13\x03\xc9\x3c\x52\x71\x92\x2f\x26\xc6\xaf\x1f\xbf\x33\x7d\x03\ -\x95\x55\x98\xc7\x61\xaa\x72\x39\x31\x72\x65\xbc\x9b\x3e\x8c\xbf\ -\x32\x4d\xf4\xbe\x90\x61\x25\x63\xb4\x49\xaa\x25\xfa\x21\x7f\x2e\ -\xa3\x70\x25\xd1\xd7\xcb\xaa\x5a\x05\x96\xb5\xd9\x6c\x70\xd2\x0a\ -\xb1\x2a\x16\xd6\x37\xc8\x34\xa7\x0f\x0f\xe3\xf2\x65\xf1\x80\x10\ -\x82\x75\xf3\x32\x88\xa3\x89\xd1\x0e\x58\xad\x8b\xb4\x36\x8c\x23\ -\x4b\xa6\x32\x93\x79\x55\x5a\x14\x53\xcb\xd8\x9b\x47\x7b\xf3\x48\ -\xaf\x9e\xbc\xc8\x48\x65\x99\xca\xcb\x7a\x64\x5e\x3e\x0e\x8c\x8b\ -\x78\xde\x5b\xeb\xdd\x6c\x78\x6d\x44\x85\x10\x16\x61\x16\x63\x26\ -\x58\x98\xe5\x2e\xaf\xc2\xad\x79\x38\x14\xf6\x78\x6e\x28\x23\x84\ -\x58\xa0\xdb\x5b\xbe\xce\x2a\x28\x01\xd0\x15\xfc\xf6\xe6\x9d\x00\ -\x97\x6a\x5d\x44\x72\x0e\xe3\x24\xce\x65\x65\x7d\xf8\xf8\xa1\x57\ -\x9a\x04\xc7\x55\x3c\x98\xa6\xc3\xf3\x60\xd5\x03\x90\xf3\x30\x93\ -\xe5\x2a\x8c\x64\x69\x75\xf2\x7a\xfc\x26\x89\xab\xe5\xc4\xe0\x36\ -\xa6\x1c\x2e\xa7\x16\x2e\x65\xb2\x58\x56\xc7\xd2\x24\x9e\x18\xb0\ -\x7b\x26\xfc\xe6\x79\xe0\x1c\xb4\x31\x68\x27\x0e\x7a\x0d\xc1\x82\ -\x61\x8a\x0a\xea\x70\xaf\xb1\xe9\x8e\x10\xc4\x2a\xd2\x7b\x82\x29\ -\x65\x96\x84\xeb\x4a\x65\xc0\x5a\x14\xa5\x61\x59\x26\xf3\x24\x82\ -\x07\x95\xaf\xd2\xf5\x22\xc9\x3f\x95\xc9\x22\xff\x54\x29\x95\xe2\ -\x0e\xbc\x7e\x25\xb9\x5d\xa9\xa2\x32\xb7\xf1\x0a\x20\x74\xbd\xb3\ -\xca\x5d\xa7\x9c\x82\x76\x1c\xcb\x79\xa9\xad\x9a\xf3\xe8\x27\x38\ -\x90\x67\x20\xab\xd6\xf6\xdb\xd3\x7b\x8b\x5f\x12\xb9\xd9\xdb\xce\ -\xc2\xb2\xc1\x0c\xa1\x55\xb8\x00\xff\x4a\x55\x31\x31\x1e\xe7\xf5\ -\xd5\x2a\x66\xaa\x88\x65\xd1\xa9\xdc\xfa\x3a\x50\x29\xe0\x20\xa9\ -\x76\x4d\x44\xb5\x73\x77\xfb\xd5\xb3\xf6\x7a\x72\x5e\x5f\x2e\xc3\ -\x58\x6d\x26\x06\x3b\x56\xfe\xa5\x54\x36\x31\x1c\xec\x08\x5f\x10\ -\x7a\xac\x8d\xb6\x13\xc3\x64\x2e\xa6\x94\xfb\xcc\x39\xd1\xc2\x7a\ -\x1c\x36\x24\x84\x2d\xfc\x13\xe5\xba\x28\x20\xe4\xcc\x34\xdc\x49\ -\x38\x54\xfd\xa7\x9b\xbf\x5c\xaa\xcd\xa2\xd0\xe0\x54\xc5\x5a\x1e\ -\x8f\xd4\x1a\x73\x36\x53\xdb\xf3\x6a\xf0\x80\xb5\x0e\x66\x73\x9d\ -\x27\x15\x04\xcc\x6a\x3b\x9c\x75\x9d\xc4\xb2\x3c\x3f\x70\x93\xe4\ -\x80\x81\xd9\xba\x2e\xe5\x3d\xc4\xc7\x16\x9d\x1f\x7b\xe4\xe4\x54\ -\xad\x05\x6c\xed\x04\xe6\x56\xb5\xbb\xac\xca\xc2\x6d\x92\x25\x7f\ -\x49\x38\xf7\x09\xd2\x65\x1e\xae\xcc\x45\xaa\x66\x61\xda\xee\x7e\ -\x5a\x5b\x8c\x0f\x60\x69\x06\x21\x54\xed\x74\xd0\x6e\x77\x5a\x66\ -\x74\x42\x8d\xa7\x16\x70\xcf\x75\x7a\xa1\x2a\x12\x88\x85\xc1\x7e\ -\x3b\xd1\x6e\x28\xd2\x21\x0e\x19\x7a\x5b\xfb\x57\xed\x7d\xde\xb1\ -\x6e\x37\xd4\xb5\x6e\x6f\x9d\xfa\x7d\x2d\xcf\x64\x15\xc6\x61\x15\ -\xee\x83\xa0\x93\x30\x21\x48\x77\x32\xc8\x96\xc1\xcf\x1f\xbe\x9b\ -\xb6\x0b\x8d\xa3\x28\xf8\x5d\x15\xcf\xdd\xba\x08\x69\x83\x70\xa6\ -\xd6\x40\x85\x31\xed\xc5\xe3\x38\x0a\x20\xbf\x41\xdc\x4f\x93\x0c\ -\x5c\x5b\xa7\xc6\x6f\x21\x9f\x8d\xad\xbd\xe2\xc0\x58\x83\xb5\x9f\ -\xb4\x99\xb6\x90\x4d\xa2\x3c\x5b\x2d\xe2\x28\x4b\xf4\x20\xeb\x97\ -\x2a\x49\xd3\x1f\xf4\x22\xed\x89\x07\x93\x26\x55\x2a\xf7\xc2\xb1\ -\xd5\xee\xbe\x3d\x9b\x35\x38\xdc\xd8\xea\x4e\x5f\x3f\x2d\xf6\xa8\ -\x1c\x04\x45\x4f\x74\x1a\xce\x24\x38\xc1\x8f\x5a\x89\x4e\xb4\x8b\ -\x42\xad\x57\x99\x8a\x65\x3b\xbc\x47\x53\x46\x55\x4f\x59\xb5\x4b\ -\x41\x3f\x87\xdd\x07\x8f\x73\xa2\x7f\x9e\xf4\x83\xd9\xa6\x89\x80\ -\x36\x8f\xc5\x3a\x85\x74\xf7\x22\x73\x15\xc7\x4f\x65\x55\xa8\x67\ -\x19\x3c\x12\x62\xfb\x84\xb4\x8f\x4d\xb4\x04\xfd\x63\x9a\xe4\x12\ -\xb6\x11\x94\x7f\xae\xc3\x42\x0e\xa5\x7f\xa8\x24\x0f\x00\x37\x59\ -\x74\xd2\xfa\x21\x05\x8f\xaf\x02\xbb\x93\xc5\x21\x64\xa2\xa2\x08\ -\x77\x41\x0e\xe5\x7f\x28\x55\xf3\x79\x29\xab\xfd\x4a\xdd\x56\x09\ -\xe6\xed\x75\xe0\xe8\xfa\xb8\x5c\x08\xda\x0b\xcf\x56\x24\x7d\x9d\ -\xaf\x4a\xfa\x3a\x88\x0a\xf0\x6f\x81\x6d\x8f\x0b\xc2\x5d\x69\x52\ -\xb7\x57\x14\x07\x66\x85\xce\x79\x98\x43\x65\x72\x21\xe7\x75\x0e\ -\x30\x5e\x85\xd5\xf2\x1c\xfa\x83\x53\x06\x8f\x94\x02\xb6\xd1\x21\ -\xb2\x0e\xf6\x9b\x98\x12\xc7\x10\xcf\xd6\x55\x75\x2d\x80\x7b\xde\ -\xfb\x73\xe8\x98\x44\xac\x41\x84\xf3\x51\x07\x0e\x47\x2e\xb6\x47\ -\x66\xa7\x40\x1c\xeb\xf6\x46\x08\x6f\x20\xab\x2d\x6c\xcc\xea\x6d\ -\x23\xa7\xe1\x07\x44\xed\x1d\x47\xad\xce\xed\xc7\xd8\x47\xb3\x2e\ -\x91\x8f\x9d\x5a\x71\xc0\xa9\x06\xd1\x26\x9e\x30\xb9\x39\x50\xf4\ -\x05\x45\xe5\x00\x4c\xa5\x0a\x13\x4a\xcb\x4b\x58\xad\x0b\xa9\x89\ -\xf9\x3c\x0a\x88\xcf\x63\x2f\x3e\xa4\x00\xf6\x66\x43\x35\x20\xc2\ -\xb9\x39\x05\x3f\x21\x0d\x8a\x70\x39\x25\x74\x04\xa5\xd4\x71\x1c\ -\x0a\x68\x71\x6c\xfb\x1e\x75\xa9\x18\x41\xed\xf5\x19\x75\xb9\x00\ -\x9c\x05\xe5\x9e\x4d\x47\x0c\xdc\xcf\x01\x80\x11\x25\xd8\x73\x5d\ -\x5f\x88\x11\x85\x23\x50\xdb\x23\x0e\xa2\xc0\x23\x15\xcc\x15\x23\ -\x1f\x7b\xc2\x25\x8c\x50\x44\x3d\x0c\x0b\xd8\x9e\x3f\xb2\xb1\x20\ -\x0e\x78\x2e\x47\x7a\x12\x6a\x0b\x67\x44\x30\xf5\x18\xb1\xa9\x80\ -\x55\xd9\xc8\xe4\x98\x5d\xa0\xe4\x0b\x11\x22\x49\x1c\xcd\x8f\x62\ -\xa2\xaf\x33\x6c\xb5\xfd\x7c\x4a\x2e\x00\x0d\x27\x1b\x78\xb9\xc0\ -\xee\x88\x33\x44\x19\xf6\x47\x4c\x34\x31\xe8\x21\x2a\xc0\x88\x39\ -\xd8\x45\xcc\x6e\x1c\x94\x8f\x18\xe9\x3c\x9d\xf9\x60\x4c\xfd\x3e\ -\x34\x1c\x30\xa6\xee\xde\x99\xf9\x59\xe4\xfe\xdf\xb8\x65\x08\x1a\ -\x4a\xdf\x13\xbe\x0b\xbe\xc2\xc0\x91\xc0\x8f\x3c\x0e\xce\xc8\x3c\ -\xc6\x6d\xe2\x3a\x75\x26\x00\x0b\xdb\x81\x6c\xc2\x5c\xdf\xf6\x1c\ -\x5f\xbb\x11\x25\x0e\xb8\xa8\x46\x11\x46\x52\x48\x05\x2e\x66\xd0\ -\x45\xb2\x3a\xa5\x40\xb6\x73\x3d\x2d\xf2\x6d\x5b\x50\x18\x0a\xe4\ -\xb8\xc2\x73\x6d\x3d\x12\x72\x30\x77\x1c\xaf\x5b\x83\xee\x57\x00\ -\xb0\x7d\x4c\x28\xe1\xa4\x4e\x2d\xc2\xa6\x60\x27\x2e\xe4\x10\xff\ -\x2a\xc0\xd7\x2d\xb9\xae\x89\xfa\x7a\x8a\x93\x72\x05\x45\x17\xde\ -\x9b\x34\x84\x4f\x0a\x5e\x58\xe6\xa9\xda\x04\x2f\x49\x99\xcc\x52\ -\xf9\x54\xff\x4d\x52\x8d\x62\x27\x3a\x93\x82\x08\x99\x33\x76\xc8\ -\x5c\x97\x19\x6d\xfb\x4b\xa6\xa0\x7f\x2a\xb3\xf4\x29\x0b\x8b\x67\ -\x59\x34\x03\x64\x1e\xc2\xe6\xcd\x59\x18\x3d\xeb\x7e\x23\x8f\x83\ -\x30\x82\xae\x7b\x9d\xc2\x0b\xfa\x61\x58\x91\x11\x41\xbf\xa1\x3e\ -\xb0\x4e\xb8\x80\x86\xcf\x7d\x35\x13\x3d\xf8\x7d\x5b\x09\x7d\x8e\ -\xee\xc4\xa0\xa3\x8f\xa2\x3b\x51\xff\x9d\xa8\x0c\xf5\xc9\x41\x17\ -\x10\xbb\xc9\x68\xd1\xa0\x03\x20\x97\xee\x4f\x28\xe5\x9e\xc7\x4c\ -\x62\xb2\x7b\x80\xdd\x96\xb7\x7d\xe9\x79\x13\x6f\xf4\xce\xdb\x2d\ -\x12\xe3\x80\x37\x68\x32\xd0\xfb\xba\x01\xa9\x6f\x4f\x6e\x2e\x31\ -\x75\x9d\x9e\xeb\xce\xd4\xab\x23\xcc\x6b\x12\xe3\x5b\x33\xe3\x75\ -\x5e\x5e\xee\xbc\xbd\xbe\xa2\x75\x9c\xbc\x8d\xb7\xeb\xf4\xea\x77\ -\xde\xfe\x25\x33\xf6\xcd\xe2\xe0\x7d\xec\x7b\x74\xca\x0a\xb4\x8e\ -\xaf\x6f\xe2\xef\xad\xe3\x97\x0b\xb4\xee\xc3\x0e\x10\x06\x2f\x65\ -\x10\x63\x64\xf0\xfd\xe7\xc2\xfd\x69\x8c\xf9\x36\xb9\xc7\xd7\x4d\ -\xf2\x22\xc1\x6d\x5e\x7c\x23\x5d\xf7\x77\xe8\xdb\x10\xc6\x28\xbe\ -\x4e\x7c\xdd\x2b\xd8\x8d\x08\x73\xaf\x15\x61\xf7\x94\x78\x13\xc2\ -\x38\x7b\x33\x53\xf7\x97\xb1\xdb\x14\x2f\xf7\xcd\x4c\xbd\xfe\x7b\ -\xe3\x9d\xa9\xab\x7c\xe0\xd0\xff\x18\x69\x3f\x70\xd4\xb7\x27\x37\ -\x17\x5e\xb8\x3e\x93\xa7\xb1\xb5\x98\x3e\x8c\xf5\xbf\xfb\xa7\x0f\ -\x7f\x03\xa5\x38\xeb\x75\ -\x00\x00\x07\x68\ -\x00\ -\x00\x1f\xe4\x78\x9c\xed\x59\xdb\x6e\xe3\x46\x12\x7d\xf7\x57\x70\ -\x39\x58\x24\x41\x44\xb2\xef\x17\x8e\xac\x00\xc9\x20\x40\x80\xcd\ -\xcb\x26\x8b\x7d\x0c\x28\xb2\x25\x33\x43\x91\x02\xd9\xb2\xa4\xf9\ -\xfa\xad\xe6\x55\xb2\xa4\xc0\x1b\x4c\x3c\x36\x10\xc1\x03\x9b\xa7\ -\xaa\x2f\xe7\xd4\x61\xa9\xc9\x99\x7f\x77\xd8\x14\xde\xa3\xa9\x9b\ -\xbc\x2a\xef\x7d\x1c\x22\xdf\x33\x65\x5a\x65\x79\xb9\xbe\xf7\xff\ -\xf3\xeb\x8f\x81\xf2\xbd\xc6\x26\x65\x96\x14\x55\x69\xee\xfd\xb2\ -\xf2\xbf\x5b\xdc\xcd\xff\x11\x04\xde\x0f\xb5\x49\xac\xc9\xbc\x7d\ -\x6e\x1f\xbc\x9f\xca\x8f\x4d\x9a\x6c\x8d\xf7\xf5\x83\xb5\xdb\x38\ -\x8a\xf6\xfb\x7d\x98\xf7\x60\x58\xd5\xeb\xe8\x1b\x2f\x08\x16\x77\ -\x77\xf3\xe6\x71\x7d\xe7\x79\x1e\xac\x5b\x36\x71\x96\xde\xfb\xfd\ -\x80\xed\xae\x2e\xda\xc4\x2c\x8d\x4c\x61\x36\xa6\xb4\x4d\x84\x43\ -\x1c\xf9\x53\x7a\x3a\xa5\xa7\x6e\xf5\xfc\xd1\xa4\xd5\x66\x53\x95\ -\x4d\x3b\xb2\x6c\xde\x9d\x24\xd7\xd9\x6a\xcc\x76\xbb\xd9\xd3\x36\ -\x09\x6b\xad\x23\x44\x22\x42\x02\xc8\x08\x9a\x63\x69\x93\x43\x70\ -\x3e\x14\xf6\x78\x6d\x28\x41\x08\x45\x10\x9b\x32\x9f\x97\x15\x37\ -\x20\xe8\x16\xfe\x8d\xe9\x03\x10\x36\xd5\xae\x4e\xcd\x0a\xc6\x99\ -\xb0\x34\x36\xfa\xf0\xeb\x87\x31\x18\xa0\x30\xb3\xd9\xc9\x34\x83\ -\x9e\x67\xab\x9e\x89\x5c\x26\x1b\xd3\x6c\x93\xd4\x34\xd1\x80\xb7\ -\xe3\xf7\x79\x66\x1f\xee\x7d\xca\x42\x4c\xe1\xc3\x5b\xf0\xc1\xe4\ -\xeb\x07\xfb\x14\xcd\xb3\x7b\x1f\x76\x4f\xb4\xea\xae\x4f\xcc\x81\ -\xbb\x84\x7e\xe2\x78\x8c\xa0\x50\x93\x10\x7b\x35\xe6\x54\x76\x39\ -\x03\x85\x38\xab\x52\xb7\x27\x98\xd2\x6c\xf2\x64\x67\xab\x0d\x54\ -\x2d\x4d\x8b\xa4\x69\xf2\x55\x9e\xc2\x45\x55\x6e\x8b\xdd\x3a\x2f\ -\x7f\x5b\x82\xcb\xd2\xa4\x48\x7f\xab\x77\x85\x69\xc2\x41\xc1\x71\ -\x39\x73\xd8\x56\xb5\x0d\x0e\xd9\x16\x74\x14\xf2\x6a\xf0\x78\x1a\ -\x7c\xcc\xcd\xfe\xfb\xea\x00\xfb\xf3\x90\x47\x09\xfc\xf8\x0b\xc0\ -\xe7\x99\x59\x35\x2e\xde\x71\x75\x57\x40\x56\xfa\x5e\xd4\x46\xc7\ -\xad\xbb\x7d\x67\x6e\x8e\x29\x77\x99\x34\x9d\x9e\x9e\xb7\x4d\xd6\ -\xe0\xbd\xa2\xaa\xef\xfd\x77\xab\xf6\xd3\x07\x96\x55\x9d\x99\x7a\ -\x08\x89\xf6\x73\x16\xaa\xa0\x3e\xb9\x3d\x76\x77\x5b\x3f\xf7\x40\ -\xc3\xcd\x3a\xc6\xd1\xf5\x78\xf3\x90\x64\xd5\xfe\xde\x27\x4f\x83\ -\x9f\xaa\x6a\x73\xef\xf3\x90\x6b\xa5\x11\x7e\x1a\x4d\x41\x88\x80\ -\x41\x11\x25\xa1\xe3\x8e\xa6\x28\xac\x47\x42\x8a\xb4\x26\x9c\x5e\ -\x04\x77\x75\x0d\xb7\x63\x50\x24\x47\x03\xa4\xda\x5f\xc3\xfc\xcd\ -\x43\xb5\x5f\xd7\x4e\x9c\x55\x52\x8c\xea\x8c\x43\x5d\x28\x58\x2e\ -\x5d\x15\x6c\xbd\xbb\x08\x83\x3d\x76\xee\x4e\x0f\x76\x65\x6e\xe1\ -\x6e\xda\x1e\x4e\xa7\xdd\xe5\x99\x69\xae\x0f\xdc\xe7\x25\x88\x10\ -\xf4\xbe\xc6\x57\x18\xf5\x19\x83\xc9\x25\x52\x37\x32\x9c\x41\x6e\ -\x84\x8e\xb7\x43\x9b\xe4\x90\x6f\xf2\x4f\x06\x88\x5f\x48\xdd\x94\ -\xc9\x36\x58\x17\xd5\x32\x29\xfa\xdd\x2f\xda\x8c\xf9\x99\x2c\xdd\ -\x20\xcf\xb3\x47\x77\x47\x1f\x8e\x0e\xf3\x07\xd0\x09\xea\x00\x2a\ -\x05\x1f\xc1\xaa\xce\xe1\x46\x39\xd9\xef\x00\x1d\x4f\x21\x77\xff\ -\x43\xfb\x3e\x4c\x1b\x1b\x31\x67\xba\xc1\xe7\xd1\xa5\xd1\x5b\x7c\ -\x63\x6c\x92\x25\x36\x99\x5c\x3f\x20\x44\x6b\x34\x30\x81\xd6\x19\ -\xff\xfb\xc3\x8f\x8b\x7e\x81\x79\x9a\xc6\xff\xad\xea\x8f\xc3\x7a\ -\x9e\xe7\x12\x92\x65\xb5\x03\xe9\xfd\xc5\x08\xcf\xb3\x34\x86\x66\ -\x07\x4d\x60\x91\x6f\xc0\xcb\xae\x4f\x7e\x0b\xcd\x6d\x1e\x4d\x81\ -\xb3\x64\x27\xce\x34\x69\x37\x6d\x6d\xba\xae\x79\xf5\xab\x23\x4b\ -\x37\xb9\x1b\x14\xfd\x62\xf3\xa2\xf8\xc9\x2d\xd2\x33\x3e\x99\x34\ -\xb7\x85\x99\xc0\x79\xd4\xef\xbe\xe7\x16\x9d\x90\x9b\x47\x03\xfb\ -\xf6\x6a\x3d\xa9\x72\x76\x17\x8c\x85\x2d\x92\xa5\x81\xa2\xff\xcb\ -\x05\xbd\x8b\xe8\xba\xae\x76\xdb\x4d\x95\x99\x7e\xf8\xa0\xe6\x36\ -\xb1\x0f\x63\xa9\xec\xb1\x80\xf8\x0a\x76\x1f\x97\xf0\x9d\xfb\xbe\ -\xb1\x75\xf5\xd1\xc4\xef\x0c\x5a\xad\x10\xea\x2f\x3b\xe7\xc7\x98\ -\x84\x42\x49\x24\x08\x11\x43\xa0\xc8\x4b\x03\x8b\xc5\xcb\x9d\xb5\ -\xa7\xd8\xef\x55\x5e\xc6\xa0\x8d\xa9\x07\xb4\xbd\x28\xc0\xc5\x36\ -\x66\x03\x96\x25\xd0\x5e\xea\x3a\x39\x9e\xae\x1d\xf4\x2d\x29\x9e\ -\x0c\x05\x02\xfc\xec\x05\x38\xd4\x0c\x13\x84\xf5\x4c\x85\x84\x30\ -\x21\x89\xeb\xb2\x21\xc1\x8a\x4a\x80\x38\x62\x8c\x4a\x7a\x66\x6a\ -\x47\x95\x4a\xad\x27\x70\xec\x32\x55\x09\x3b\xb7\x55\x1d\x40\xbf\ -\x79\x4c\xec\xae\x36\xce\xd6\x43\x9d\x9e\x27\x12\x6a\x3f\xe7\x22\ -\xa1\x50\x50\x46\x39\xc5\x5f\x46\x22\x41\x31\xe6\x8c\xce\x40\x17\ -\x28\x94\x68\x15\xe2\x44\x31\x2c\x00\x62\x4a\x20\xc6\xf5\xa5\x44\ -\x0a\xbf\xac\x44\x9a\x4a\x06\x27\x23\xb6\x3d\xfc\xff\x2a\x5d\xe5\ -\xbe\xf1\x30\x0f\x29\xc7\x04\x93\x59\x20\x41\x05\xce\x19\x63\x5e\ -\xea\xc1\xd7\x1a\x91\x12\xcf\x90\xd3\x83\x32\xac\x1d\x22\x31\x63\ -\x80\x30\x0c\x5a\x29\x07\x28\xea\x32\x04\xd6\x88\x50\xe9\x00\xcc\ -\x10\x75\x63\x38\x92\xce\x66\x70\x38\x42\x88\x11\x40\x38\x64\xe0\ -\x1e\x10\x0e\x90\x9c\x32\x89\x70\x87\xb4\x0b\x29\xc1\x91\x16\x5d\ -\x0e\x66\x30\x33\x0e\x25\x05\xdb\x22\xd5\x42\x04\x33\x0e\xb5\xe0\ -\x1a\xca\x22\x78\x97\xa5\x15\x03\x88\x3a\x49\xba\x71\x54\x0b\x35\ -\x63\x21\x58\x57\xa9\x2e\x07\xf2\xf1\x4c\x86\x70\xa0\x54\x44\xf6\ -\xeb\xbb\xe5\x09\xe7\x82\x75\xcb\x63\x08\xc2\x62\x8c\x63\x0c\x15\ -\xef\x20\x05\xf3\x62\x29\x84\xc6\xa2\x1b\x04\x08\xf0\x22\x94\xc0\ -\xf2\x1d\x02\x77\x0f\x68\xc1\x60\xd7\xa4\x1b\x84\x38\x77\x6a\x08\ -\x2d\xdb\x1c\xd8\x86\x09\x9c\x5e\x80\x83\x51\xbc\x40\x43\xac\x43\ -\x40\x40\x31\x0c\xc2\x2d\x20\x24\xa3\x9a\xb4\x83\xf0\xd9\x28\xc7\ -\x9c\xb4\x8a\x11\x2c\x15\x61\xf4\xe9\x28\xd5\x91\xe0\x98\xcb\x19\ -\xfc\x81\x91\x82\x4d\x76\x5b\xe4\x42\x29\x87\x01\x00\xce\xe9\x14\ -\x52\x9c\x12\x87\x51\xa6\x19\x0c\xba\xf0\xb4\x62\x6f\xdc\xd2\x3f\ -\x7b\x12\xea\x04\x93\x82\x13\xe1\x2f\x2d\x15\x26\xdc\x23\x1c\x40\ -\xe8\xc2\x02\x30\xa8\x99\x00\x13\x5e\x52\xe7\xf4\x6d\x53\xdf\x00\ -\x75\x2c\xe0\x1e\x02\x23\x62\xe6\xb8\x73\x49\x9d\x83\xb8\x54\x60\ -\x0e\x11\xc2\x6a\x12\x5a\xd9\x15\xe6\xf2\xad\x33\x87\x02\x03\x75\ -\x04\x7d\x0c\x98\x43\x85\xa9\x90\x3d\x73\x31\x31\xbf\x6c\xe1\x4a\ -\xe0\x17\x65\xae\x34\x55\x12\x63\xfa\x19\x99\x53\x47\x5c\x0a\xa2\ -\xda\x9a\x0b\x06\x5d\xd4\xd3\x8e\xb0\xe0\xca\xf5\x0d\x68\x08\xe3\ -\xc1\xfb\x94\xf8\xcb\x9a\xfd\x2f\x20\x8e\xb5\x63\x4e\xe0\x2b\x1a\ -\x88\x43\xe7\x97\x72\xe4\xfd\x07\xb4\xf9\x5b\x77\xfa\xb5\x7a\x07\ -\xbd\xd5\xd9\xac\xb7\xfa\x15\xe2\x5f\xe2\x16\x57\xea\x73\xd6\xbb\ -\x65\xce\x08\x6e\xeb\xcd\x24\x96\x78\x20\x2e\x07\xde\x57\xba\xba\ -\x90\xc1\x97\xe8\xeb\x9f\x97\xfa\xa5\xd5\x87\x92\xff\x51\xc5\x03\ -\xf1\xd6\x89\x13\x47\x5c\x29\xc9\xda\xb6\x2e\x35\xa3\xf4\x79\xcc\ -\xff\x84\xdb\xad\x39\xd8\x61\x10\x3c\xee\xc6\xed\x3b\x3a\x98\x11\ -\x1e\x65\x4d\xfd\x68\xfc\xa7\xaa\x54\xa5\x0d\xda\xbf\x41\x1b\x78\ -\x28\x2e\xde\xb7\xc8\xbe\x7d\x97\x71\x06\x35\xf9\x27\x13\x63\x1c\ -\x12\xd7\x0a\x34\xe2\xa0\x8f\x13\xa1\x7f\xed\x11\xa3\x7f\x76\x69\ -\xab\x64\x93\x17\xc7\xb8\x49\xca\x26\x80\x15\xf3\xd5\xfb\xc2\x58\ -\x90\x28\xe8\x5f\x0c\xc4\x08\x06\xee\xab\x3a\x3b\x03\xda\xe2\x0c\ -\x05\x71\x17\x93\x94\x43\xb9\x4e\x1f\x81\xfa\x47\xd2\x90\xb9\xa3\ -\x35\x9d\xbe\x10\xdd\x0b\x0b\xf7\x24\x20\xb0\xa4\xd3\x01\xc1\xbd\ -\x70\x82\x63\x2b\x87\xc3\xf3\xf9\x51\xd1\x69\x45\x35\x9e\x5e\x68\ -\xd8\x1a\xb6\xed\x5e\x0e\x40\xd5\x12\x5b\xe7\x87\xaf\xc1\x0f\x70\ -\xc6\xa7\xa8\x7d\x22\x80\x33\xbe\x52\x18\xfa\x53\x7b\x7a\x55\x70\ -\x48\x56\xee\x80\x8f\x98\x92\x12\xe2\x33\xf4\x8d\xbf\x98\x5b\xe0\ -\x55\x4e\x2f\x12\xc6\x77\x1f\x75\xe5\xf4\x76\x92\xf9\x53\xb4\xdd\ -\x85\x1b\x00\xdb\x20\x27\xf8\x75\x22\x37\xa8\x9c\x17\xb3\x2f\xdd\ -\xb2\x2a\xb2\x67\x15\x0e\x02\xfc\x56\xe9\x82\xc1\x76\x41\x37\xd3\ -\xd6\xa4\xe3\xbb\xd4\xf8\xab\x5f\x20\xd1\xfb\x1e\xd6\xf9\xea\x56\ -\x5d\x16\x78\x1e\xb5\xf4\x16\xf0\x1b\xc4\x7e\x31\x8f\xbe\x56\x77\ -\x6a\x57\x05\xaa\x10\xbe\x30\x27\xd2\x94\x5c\x35\x67\xc0\x5f\x89\ -\x3d\x4f\xbe\x80\x6e\x70\xb9\xc1\xe6\xb9\xfe\x7c\x51\x67\x92\xbf\ -\x9d\x79\xe6\x4c\x2c\x43\x4a\xe1\x19\xfd\xcc\x99\x14\x8c\xc4\x30\ -\x96\xb7\x9c\x29\x5e\x8b\x35\x9f\xf4\xce\x4b\x32\x37\xe8\xbc\x4a\ -\x6b\xd2\xbf\xad\x79\x66\x4d\x22\xe0\xf8\x44\x30\x51\x4f\x9a\xa6\ -\xc2\x1c\x11\x7d\xdd\x9a\xfa\xb5\x38\x13\x9f\x3b\xf3\x92\xcb\x0d\ -\x36\xaf\xd2\x99\xec\xd2\x99\xf3\x68\xbd\xb8\x9b\xbb\xff\x5d\x59\ -\xdc\xfd\x0f\x21\xad\x40\x64\ -\x00\x00\x06\xc9\ -\x00\ -\x00\x4c\x0c\x78\x9c\xed\x5c\x5b\x93\x9b\x36\x14\x7e\xdf\x5f\xa1\ -\xb2\x2f\xed\x74\x25\x10\x17\x73\x89\xed\x3c\x34\x93\x69\x66\xd2\ -\x97\x36\x4d\x67\xfa\x92\x61\x41\xb6\x69\x30\x72\x05\xac\xed\xfc\ -\xfa\x4a\xdc\x8c\x6d\xb6\xe3\x5d\x20\xa3\x4d\x4c\x66\x67\xc3\x39\ -\x47\x42\x7c\xdf\xb9\x48\x02\x76\xfa\x7a\xb7\x8e\xc1\x03\x61\x69\ -\x44\x93\x99\x82\x91\xa6\x00\x92\x04\x34\x8c\x92\xe5\x4c\xf9\xf3\ -\xc3\x5b\xe8\x28\x20\xcd\xfc\x24\xf4\x63\x9a\x90\x99\x92\x50\xe5\ -\xf5\xfc\x66\xfa\x03\x84\xe0\x17\x46\xfc\x8c\x84\x60\x1b\x65\x2b\ -\xf0\x2e\xf9\x9c\x06\xfe\x86\x80\x1f\x57\x59\xb6\xf1\x54\x75\xbb\ -\xdd\xa2\xa8\x12\x22\xca\x96\xea\x4f\x00\xc2\xf9\xcd\xcd\x34\x7d\ -\x58\xde\x00\x00\xf8\x75\x93\xd4\x0b\x83\x99\x52\x35\xd8\xe4\x2c\ -\x2e\x0c\xc3\x40\x25\x31\x59\x93\x24\x4b\x55\x8c\xb0\xaa\x1c\xcc\ -\x83\x83\x79\x20\xae\x1e\x3d\x90\x80\xae\xd7\x34\x49\x8b\x96\x49\ -\x7a\xdb\x32\x66\xe1\xa2\xb1\x16\xa3\xd9\x1a\x85\x11\x76\x5d\x57\ -\xd5\x74\x55\xd7\x21\xb7\x80\xe9\x3e\xc9\xfc\x1d\x3c\x6e\xca\xc7\ -\xd8\xd5\x54\xd7\x34\x4d\xe5\xba\x83\xe5\x65\x56\x5e\xca\x01\xdd\ -\xf0\x9f\xc6\xbc\x16\xa0\x94\xe6\x2c\x20\x0b\xde\x8e\xa0\x84\x64\ -\xea\x9b\x0f\x6f\x1a\x25\xd4\x50\x98\x85\xad\x6e\x6a\x3c\x8f\xae\ -\x7a\x04\x72\xe2\xaf\x49\xba\xf1\x03\x92\xaa\xb5\xbc\x68\xbf\x8d\ -\xc2\x6c\x35\x53\x0c\x13\x61\x83\x1f\x56\x21\x5c\x91\x68\xb9\xca\ -\x4e\xa5\x51\x38\x53\xf8\xe8\x75\xd7\x29\xcf\x5b\xce\x81\x4b\x83\ -\xaa\x63\xaf\xd1\x68\xc8\xd5\x11\x06\x0c\x5b\x86\x5d\xda\xd4\xb7\ -\xe0\x85\x34\x10\x63\xe2\x5d\x92\x75\xe4\xe7\x19\x5d\x73\xd6\x82\ -\x20\xf6\xd3\x34\x5a\x44\x01\x3f\xa1\xc9\x26\xce\x97\x51\xf2\xa9\ -\x10\x7e\xca\xe8\x27\x4e\x6a\x46\x19\xff\x1f\x8d\x51\x8d\x63\x73\ -\x51\xb2\xdb\x50\x96\xc1\x5d\xb8\xe1\x68\x4e\xec\x4e\xe5\xbe\x56\ -\xce\xb9\x76\x1a\x92\x45\x2a\xac\xca\x5b\x13\x67\xfc\xde\x6c\x05\ -\xa8\x85\xb6\x19\xa9\x18\x66\xf8\x10\x91\xed\xc1\xf6\xde\x4f\x4b\ -\xf8\x00\xd8\xf8\x4b\xee\x6a\x31\x65\x33\xe5\x76\x51\x1c\x95\xe2\ -\x9e\xb2\x90\xb0\x5a\x35\x29\x8e\x23\x15\xe5\x74\x44\xd9\xbe\x0c\ -\xae\xaa\xef\x7a\xbc\xa2\xd7\x46\xaf\x75\xeb\xd3\x95\x1f\xd2\xed\ -\x4c\xd1\x4f\x95\x5f\x28\x5d\xf3\x5e\x39\x2d\xae\xed\x68\x67\xea\ -\x60\x37\x53\x20\x76\x90\x63\x1b\x66\xc5\x4a\x5b\x2b\x06\x64\x71\ -\xa5\xee\xd8\xd6\x99\x32\x67\x8c\x87\x1f\x8c\xfd\x3d\xe1\x77\x55\ -\xfc\xaa\x7b\x48\x57\x74\xbb\x64\x02\x9d\x8c\xe5\xe4\xb4\xa5\xd0\ -\xc0\xfb\x7b\xba\xeb\x56\x73\x6f\xc8\x45\x60\xc3\x3c\x89\x32\x1e\ -\x3c\x9b\x5d\xbb\xd7\x3c\x0a\x49\xda\xdd\x30\x4d\xfc\x0d\x5c\xc6\ -\xf4\xde\x8f\xbb\x0d\xb6\x51\xc2\x51\x82\x95\x9f\x63\xa3\x21\xe1\ -\xd4\xa2\x76\x7a\x5b\x73\x1e\xb1\xe0\x63\x3f\x23\xa2\x52\xed\x1f\ -\x57\xad\xfd\x5d\xb4\x8e\xbe\x10\x0e\x0c\x2e\xfc\x8e\xfb\xd6\x11\ -\x2c\x65\x33\x00\xb2\xbd\x08\xe0\xdd\x5e\xc8\x94\x5a\x28\xf0\x14\ -\x02\xdd\x75\xed\x46\x48\x59\xc4\xe3\xa2\x35\x9c\x5a\xb4\x6f\x8b\ -\x44\xb8\xf3\x6c\xbd\x2b\x1c\xac\x70\x3f\xfb\x54\xb7\x6f\xeb\x2a\ -\xbf\x57\xcf\x1d\xbf\x90\xaf\x49\xe6\x87\x7e\xe6\x1f\xa2\xa0\x96\ -\xf0\xb1\x69\xf5\x9d\xf1\xcc\xe9\xfd\xfe\xe6\xed\xbc\xba\xd0\x34\ -\x08\xbc\xbf\x28\xfb\x5c\x5f\x17\x00\x61\xe0\xdf\xd3\x9c\x23\xad\ -\xcc\x1b\xf1\x34\x0c\x3c\x9e\xeb\x78\x0e\x98\x47\x6b\xee\xdb\x22\ -\x4d\xfe\xcc\x73\xdb\x54\x3d\x28\x8e\x8c\x05\x58\x87\x4e\xcb\x6e\ -\x19\x29\x93\x66\x67\xe5\x08\x83\x75\x24\x1a\xa9\x7f\x64\x51\x1c\ -\xbf\x13\x17\xa9\xee\xb8\xd5\x69\x94\xc5\xe4\x20\x9c\xaa\xd5\xe8\ -\xab\x7b\x53\x5b\x37\x37\x55\xeb\xbb\x2f\xce\x96\x07\x54\x8e\x82\ -\xa2\x21\x3a\xf6\xef\x09\xf7\xd0\xf7\x42\x09\xce\xb4\x4b\x46\xf3\ -\xcd\x9a\x86\xa4\x6a\xde\xa0\xc9\x13\x5e\x43\x59\xb6\x8f\xb9\x7e\ -\xc1\x47\xef\xdd\xea\xba\x65\x69\xda\x2b\x71\x02\xab\x3c\xe1\xe1\ -\xf2\x94\xe5\x31\xcf\x77\x0f\x24\xa1\x61\xf8\x2a\xcd\x18\xfd\x4c\ -\xbc\x5b\x8d\xe7\xa5\x60\x51\x9d\x96\xc1\xe0\x69\xc8\xb1\x8c\x22\ -\xbd\xd7\x72\x8e\x10\x61\x31\xf7\xd6\xcc\x33\x6b\x59\xe8\xf3\x3c\ -\xc3\x98\xbf\xf7\x12\x5e\xe7\x6b\x69\x73\xcd\x23\x47\x15\xc3\xb5\ -\x1c\xc3\x85\x18\x3a\xd0\x6c\x54\x55\xec\x59\xc8\x30\x0e\xd5\x44\ -\x1c\x75\xc8\x99\xc8\x2d\x34\x87\x26\xdc\x69\x0d\xad\x94\xea\x8d\ -\x70\x2f\x2c\x8b\x82\xd4\x12\xb2\xa3\x30\x60\x85\x47\x4f\x4c\x71\ -\x4c\x0e\x63\xfb\xbf\x1a\xd1\x65\xd0\xd4\x89\xda\x19\x5e\x34\x13\ -\x18\xba\x63\x70\xc1\x67\x21\x8e\x56\x1c\xf8\xca\xc6\xe5\x6c\xb8\ -\x50\x1f\x83\x0d\x6c\x5e\x49\x78\x4a\x48\x58\xd0\x1e\x83\x06\xb7\ -\x2a\xa7\x93\x2b\x1b\x97\xb3\x61\x8f\x53\x2c\x74\x03\x39\xc7\xd3\ -\x9e\x2b\x17\x97\x44\x86\x05\xb5\x51\x32\x94\x73\x2a\xbc\xd2\x71\ -\x41\xb5\x18\x29\x38\x0c\x03\xd9\xc7\x96\x57\x36\x2e\x2a\x1b\xda\ -\x38\xb3\x29\xdd\x41\xb6\x2b\x0e\x69\xf8\xb0\xac\xd0\x94\x98\x8f\ -\xbe\x2c\xe8\x1a\xd2\x8f\x2b\xb5\x94\xeb\x0b\xd3\xf4\x7d\x89\x59\ -\xc0\xd0\xec\x9b\x9e\x74\x0b\x5d\x39\xe8\xc9\x01\x74\x06\x26\x41\ -\xc6\xc5\x9d\xe4\x09\xa9\xff\x96\x47\x67\x4a\x92\x68\x61\x27\x7d\ -\x1c\x38\x0e\x9c\x0c\x1c\x08\x12\xc1\x2f\xb9\xff\x6b\x3c\x0d\xe1\ -\x51\x42\x40\xbe\x45\xb5\xf4\x91\x60\x42\x1d\x1a\x03\x87\x82\x7c\ -\x34\xc8\x1e\x11\x46\xff\xba\xdc\x15\x0f\xf2\x6d\x6c\x48\x1f\x0f\ -\x93\xc1\x0b\x83\x7c\x24\xc8\x1e\x0d\xd0\xee\xbd\xf5\xdd\x3d\x43\ -\x92\x6e\x63\x49\xfa\x70\x30\x79\x40\x0c\x5d\x1e\xae\x34\x3c\x67\ -\xbe\xda\xff\xe1\xdc\x29\x0f\xf2\xed\xec\x49\x9f\x98\x4c\xc1\xc5\ -\x28\x95\x5a\xba\x5d\x3d\xe9\x63\x42\xcc\x5c\xed\xde\x0f\xe7\xce\ -\xaa\xb5\x74\x44\xbc\x88\xa0\x18\x60\x63\xa9\x2b\x2c\xae\x29\xea\ -\x59\x6c\xe8\xe3\x6c\x7a\xcb\xb8\xd7\xf7\xd4\x87\x41\xe5\xab\x97\ -\x27\x7c\x8c\x51\xb1\x7b\x12\xe0\xa2\x49\x81\xb4\xd9\x26\xc0\x44\ -\xa5\xdf\x18\x17\xc1\xff\x82\xc1\x83\x78\x0c\xf8\xb8\xff\x9a\x4f\ -\xf1\xdf\x97\x0c\x60\xdf\x04\xd0\x09\x20\x36\xd1\x65\x99\xf8\x25\ -\x23\x87\xa1\x35\x06\x76\x2e\x32\x8b\x84\x7a\xd9\xaa\xe7\x25\x03\ -\xd8\x77\x4a\xd6\x09\x9f\x6e\x9e\x16\xa4\x6f\x15\x3e\xf1\x62\xcd\ -\x28\xc1\xeb\xa2\x13\xcb\x6f\x15\x41\x77\x1c\x17\x3c\xfe\xca\xe5\ -\x5b\x06\xb0\x78\x7d\x65\x94\x28\x76\x91\xfe\x8c\xfa\xbb\xf1\xb3\ -\x55\x27\x84\x65\x35\xef\x07\x21\x46\xba\x6b\x68\xb6\xed\x36\xb3\ -\xf1\x38\x4a\x08\x9f\x8e\x7a\xe9\xbf\xb9\xcf\x48\x5b\xfa\x0f\x8d\ -\x12\xaf\x80\xfa\xe9\xb8\x0b\x29\x5d\x2c\x52\x92\x1d\x58\x3b\xe7\ -\x82\x53\xf1\x1b\x10\x13\x15\x1d\xbb\x3a\x9f\xed\xdd\x61\x03\x4d\ -\xdc\x89\x6b\x83\x5f\x01\x9e\x80\x8f\xc0\x2e\x69\xd0\x2d\xf0\x1e\ -\x18\x1a\x32\x26\x2e\x76\xac\x3b\x6c\x23\x0b\x8b\x7f\xdc\xe8\x4e\ -\xb7\xab\x26\x1f\x81\x8e\x2b\xd6\x78\xf3\x56\xaf\xe0\xef\x33\xf2\ -\x0d\x07\xb7\x3c\xa2\xf9\x90\x87\x26\x49\xf1\x31\x15\x0c\x72\xf6\ -\xe0\x67\x39\x23\x47\x9f\x8e\x34\x9f\x80\xd0\x90\x88\xaf\x26\xd2\ -\x99\x12\x54\xc7\x08\x8b\xa9\xaf\x12\x01\x3d\xfd\x1e\x9e\x7f\x44\ -\x33\xc2\xcc\xfd\xa9\xbb\x33\x5f\x29\x77\xf4\xc4\xae\xae\xf1\xee\ -\x77\x08\x5d\xef\x97\x42\x3a\xc1\x1b\x7e\xc9\x23\x65\xcc\xf6\x5e\ -\x6e\x77\x47\xed\x80\xeb\x1d\x59\xbd\xce\xe9\x8b\x5c\xa7\xdb\x0d\ -\x08\x9c\x9c\xfe\xa6\xf5\x0e\xd7\x6e\x8f\x1b\x7a\x95\x28\xab\xdb\ -\x99\xbd\x9f\xf0\x76\xfa\xdd\xd0\xf0\x49\xea\x7c\x7d\x9f\xc8\x76\ -\xfb\xde\xd0\x4b\x6c\x59\x7d\xaf\xef\x0b\x1e\x9d\x9e\x37\x34\x78\ -\x92\x7a\x5e\xef\x95\xf5\x23\x85\x76\xe0\xbd\x09\x59\x5d\xcf\x1c\ -\xc7\xf9\xbe\x17\xf8\x9c\xfe\x0f\x06\x3a\xf1\x1b\x7a\x67\x47\xd6\ -\xe0\x35\x7b\xc3\xf7\x48\xe5\x78\xde\xb6\xce\x8b\xf3\xbf\xe2\x95\ -\x83\x51\xaa\xc7\xc0\x00\x4a\xec\x80\x23\x4d\x9c\xbf\xa3\x10\xee\ -\x3d\x75\xee\x46\xf0\x79\x5b\x05\x53\x75\x39\xbf\x99\x8a\x3f\xc3\ -\x32\xbf\xf9\x0f\xb1\xb1\x20\x51\ -\x00\x00\x12\x2a\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x34\x20\x28\x35\x64\x61\ -\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\x31\x39\x2d\x30\x31\ -\x2d\x31\x34\x29\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\ -\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\ -\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x64\ -\x6f\x5f\x73\x61\x76\x65\x5f\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ -\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ -\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ -\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x36\x2e\x33\x38\x30\x33\ -\x31\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x79\x3d\x22\x31\x36\x2e\x31\x30\x34\x39\x38\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ -\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ -\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ -\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x37\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\ -\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ -\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ -\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ -\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ -\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ -\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\ -\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ -\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\ -\x34\x37\x35\x31\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x33\x32\x35\x36\x36\x65\ -\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\ -\x35\x2e\x32\x31\x30\x36\x34\x36\x38\x65\x2d\x31\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\ -\x34\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x33\x2e\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\ -\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\ -\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ -\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\ -\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\ -\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ -\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\ -\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\ -\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\ -\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ -\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\ -\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\ -\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ -\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\ -\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\ -\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\ -\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\ -\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\ -\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\ -\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\ -\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x2e\x35\x35\x32\x32\x36\x39\ -\x35\x2c\x31\x31\x2e\x36\x39\x35\x31\x30\x38\x20\x43\x20\x36\x2e\ -\x39\x35\x35\x30\x32\x35\x35\x2c\x33\x2e\x33\x31\x30\x30\x37\x35\ -\x38\x20\x31\x33\x2e\x35\x39\x30\x30\x36\x35\x2c\x34\x2e\x35\x32\ -\x38\x36\x37\x30\x31\x20\x32\x32\x2e\x32\x39\x32\x35\x35\x36\x2c\ -\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x4c\x20\x32\x34\x2e\x32\ -\x39\x33\x32\x31\x33\x2c\x31\x2e\x39\x34\x31\x30\x36\x32\x34\x20\ -\x33\x30\x2e\x37\x34\x39\x37\x31\x36\x2c\x31\x35\x2e\x39\x30\x32\ -\x37\x20\x32\x39\x2e\x33\x32\x39\x36\x30\x37\x2c\x31\x36\x2e\x34\ -\x39\x37\x36\x33\x35\x20\x31\x36\x2e\x30\x33\x31\x37\x37\x31\x2c\ -\x31\x37\x2e\x30\x36\x38\x36\x35\x31\x20\x31\x39\x2e\x33\x34\x33\ -\x36\x35\x34\x2c\x31\x31\x2e\x35\x31\x34\x35\x34\x38\x20\x43\x20\ -\x31\x33\x2e\x35\x33\x39\x36\x35\x35\x2c\x31\x30\x2e\x32\x32\x38\ -\x34\x34\x33\x20\x37\x2e\x37\x33\x33\x37\x30\x36\x35\x2c\x38\x2e\ -\x39\x32\x32\x37\x33\x39\x32\x20\x34\x2e\x39\x35\x39\x33\x39\x30\ -\x35\x2c\x31\x34\x2e\x32\x30\x36\x34\x31\x34\x20\x63\x20\x2d\x32\ -\x2e\x35\x32\x34\x36\x31\x33\x2c\x32\x2e\x32\x38\x32\x34\x32\x38\ -\x20\x2d\x33\x2e\x39\x39\x32\x33\x38\x34\x30\x33\x2c\x31\x2e\x37\ -\x33\x34\x33\x39\x32\x20\x2d\x32\x2e\x34\x30\x37\x31\x32\x36\x2c\ -\x2d\x32\x2e\x35\x31\x31\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\ -\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ -\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ -\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\ -\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\ -\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\ -\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\ -\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\ -\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\ -\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\ -\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\ -\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\ -\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\ -\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\ -\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\ -\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\ -\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\ -\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\ -\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\ -\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ -\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ -\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\ -\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\ -\x34\x31\x33\x33\x33\x33\x34\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ -\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ -\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ -\x2e\x38\x36\x37\x31\x38\x37\x35\x2c\x39\x2e\x33\x38\x30\x39\x31\ -\x34\x31\x20\x43\x20\x37\x2e\x32\x36\x39\x39\x34\x31\x35\x2c\x30\ -\x2e\x39\x39\x35\x38\x38\x31\x30\x37\x20\x31\x33\x2e\x39\x30\x34\ -\x39\x38\x32\x2c\x32\x2e\x32\x31\x34\x34\x37\x35\x36\x20\x32\x32\ -\x2e\x36\x30\x37\x34\x37\x34\x2c\x35\x2e\x31\x35\x32\x34\x37\x32\ -\x32\x20\x4c\x20\x32\x34\x2e\x36\x30\x38\x31\x33\x2c\x2d\x30\x2e\ -\x33\x37\x33\x31\x33\x32\x36\x39\x20\x33\x31\x2e\x30\x36\x34\x36\ -\x33\x33\x2c\x31\x33\x2e\x35\x38\x38\x35\x30\x35\x20\x32\x39\x2e\ -\x36\x34\x34\x35\x32\x32\x2c\x31\x34\x2e\x31\x38\x33\x34\x34\x32\ -\x20\x31\x36\x2e\x33\x34\x36\x36\x38\x39\x2c\x31\x34\x2e\x37\x35\ -\x34\x34\x35\x38\x20\x31\x39\x2e\x36\x35\x38\x35\x37\x31\x2c\x39\ -\x2e\x32\x30\x30\x33\x35\x34\x31\x20\x43\x20\x31\x33\x2e\x38\x35\ -\x34\x35\x37\x32\x2c\x37\x2e\x39\x31\x34\x32\x34\x39\x36\x20\x38\ -\x2e\x30\x34\x38\x36\x32\x34\x35\x2c\x36\x2e\x36\x30\x38\x35\x34\ -\x34\x35\x20\x35\x2e\x32\x37\x34\x33\x30\x38\x35\x2c\x31\x31\x2e\ -\x38\x39\x32\x32\x31\x38\x20\x32\x2e\x37\x34\x39\x36\x39\x36\x35\ -\x2c\x31\x34\x2e\x31\x37\x34\x36\x34\x36\x20\x31\x2e\x32\x38\x31\ -\x39\x32\x35\x35\x2c\x31\x33\x2e\x36\x32\x36\x36\x31\x20\x32\x2e\ -\x38\x36\x37\x31\x38\x31\x35\x2c\x39\x2e\x33\x38\x30\x39\x31\x38\ -\x34\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ -\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x38\x30\x30\ -\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ -\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ -\x2e\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\ -\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x2e\ -\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x31\x38\x2e\x31\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\x32\x30\x30\x30\x30\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\ -\x34\x34\x34\x34\x34\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ -\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x12\xc2\ -\x00\ -\x00\xe7\x3e\x78\x9c\xd5\x5d\x5b\x73\xdb\xba\x11\x7e\xcf\xaf\x60\ -\x95\x97\x64\x6a\x52\xc4\x8d\x20\x5c\x3b\x9d\x69\xcf\x9c\xb6\x33\ -\x27\x2f\xbd\x9c\xce\x9c\x37\x5a\xa2\x6d\xcd\x91\x25\x8f\x24\xc7\ -\x76\x7e\x7d\x01\x12\x04\x01\x12\x50\xe4\x98\x48\xbd\xf6\x64\x62\ -\x2e\xb0\xb8\x7c\x58\x2c\x76\x17\x00\x79\xf1\xe7\xa7\xbb\x75\xf2\ -\xa5\xde\xed\x57\xdb\xcd\xe5\x0c\x65\xf9\x2c\xa9\x37\x8b\xed\x72\ -\xb5\xb9\xb9\x9c\xfd\xe7\xdf\x3f\xa7\xe5\x2c\xd9\x1f\xaa\xcd\xb2\ -\x5a\x6f\x37\xf5\xe5\x6c\xb3\x9d\xfd\xf9\xd3\xbb\x8b\x3f\xa4\x69\ -\xf2\xd7\x5d\x5d\x1d\xea\x65\xf2\xb8\x3a\xdc\x26\xff\xd8\xfc\xbe\ -\x5f\x54\xf7\x75\xf2\xe1\xf6\x70\xb8\x3f\x9f\xcf\x1f\x1f\x1f\xb3\ -\x95\x26\x66\xdb\xdd\xcd\xfc\x63\x92\xa6\x9f\xde\xbd\xbb\xd8\x7f\ -\xb9\x79\x97\x24\x89\xac\x77\xb3\x3f\x5f\x2e\x2e\x67\x9a\xe1\xfe\ -\x61\xb7\x6e\x32\x2e\x17\xf3\x7a\x5d\xdf\xd5\x9b\xc3\x7e\x8e\x32\ -\x34\x9f\xf5\xd9\x17\x7d\xf6\x85\xaa\x7d\xf5\xa5\x5e\x6c\xef\xee\ -\xb6\x9b\x7d\xc3\xb9\xd9\xbf\xb7\x32\xef\x96\xd7\x26\xb7\x6a\xcd\ -\x23\x69\x32\x21\x21\xc4\x3c\xc7\x73\x8c\x53\x99\x23\xdd\x3f\x6f\ -\x0e\xd5\x53\xea\xb2\xca\x36\xfa\x58\x71\x9e\xe7\x73\x99\xd6\xe7\ -\x3c\x2d\xd7\xf9\x5e\x02\x7a\x2f\xff\x99\xec\x1d\x21\xdb\x6f\x1f\ -\x76\x8b\xfa\x5a\xf2\xd5\xd9\xa6\x3e\xcc\x7f\xfa\xf7\x4f\x26\x31\ -\xcd\xb3\xe5\x61\x69\x15\xd3\xe1\xe9\xd4\xea\x80\xbc\xa9\xee\xea\ -\xfd\x7d\xb5\xa8\xf7\xf3\x8e\xde\xf0\x3f\xae\x96\x87\xdb\xcb\x19\ -\xa1\x19\x22\xf2\x87\x35\xc4\xdb\x7a\x75\x73\x7b\x18\x52\x57\xcb\ -\xcb\x99\x6c\x3d\x16\x65\xfb\x6c\x09\x07\x6a\x33\xe8\x82\xcf\x4d\ -\x4a\x9e\x09\x9c\xa1\x64\x87\x18\xe1\x6d\x9e\xae\x0b\xe7\xcb\xed\ -\x42\xb5\x49\x16\x59\xdf\xad\xaa\x87\xc3\xf6\x4e\x8e\xda\x62\xb1\ -\xae\xf6\xfb\xd5\xf5\x6a\x21\x1f\xb6\x9b\xfb\xf5\xc3\xcd\x6a\x93\ -\x75\x90\x99\xf2\xeb\xa7\xfb\xed\xee\x90\x3e\x2d\xef\x25\x70\x8c\ -\xe6\xde\xd4\x67\x93\xfa\x49\x26\x5f\x2c\xeb\xeb\xbd\xca\xd6\xf6\ -\x43\x3d\xc9\x8e\xf0\x26\x4d\xa6\x5e\xaf\xd6\x87\x7a\xd7\xa6\x5b\ -\x45\x2d\xb6\xeb\x75\xbd\x90\x48\x54\xeb\xc7\xea\x79\x3f\xeb\x32\ -\xec\x0f\xcf\x6b\xd9\x74\x99\xbc\xdd\xa5\xab\x8d\x64\xbd\xdf\xae\ -\x9b\x26\xa7\x6d\x49\x72\x64\xff\xf9\xb7\xbf\x98\xfc\xaa\xca\x36\ -\xa1\x60\x25\x32\xe4\xa7\xcb\x99\x1c\xca\x9c\x14\x86\xa2\x87\x43\ -\x4e\x37\x8e\x0d\xf1\x79\x94\xad\x1b\xa0\x36\xdf\x27\x4d\xbe\xb8\ -\xae\xff\x56\x3d\x48\xfc\xaa\xcd\x5f\xd6\x0f\xa6\x37\x27\xf4\x47\ -\xf5\x68\xf9\x53\xfd\x65\xd5\xf4\x41\x8d\x1b\x62\xa2\xf9\xb1\xb2\ -\x34\x9d\x70\x6a\x90\x9d\x21\xb3\x64\xae\x31\x9c\xb7\x3d\xfc\xe1\ -\x88\x16\xf9\x08\x51\x2c\x05\x2e\xcf\x29\xf6\xe0\x4a\x49\x6e\x33\ -\x68\x6c\x71\x21\x10\x66\x05\xf2\x21\xcc\x48\x89\x19\x8a\x82\x32\ -\x2e\x79\x5e\x70\x42\x8f\xa3\x5c\xe4\x7e\x94\x2f\xe6\x4a\x8c\x9b\ -\xbf\xcc\xb4\x52\x73\x6a\xf9\x65\x55\x3f\xf6\xb2\x7e\x55\xed\x6b\ -\x5d\xc1\x7d\x75\x53\x37\x10\x5f\xce\xde\x5f\x37\x3f\x3a\xe1\x6a\ -\xbb\x5b\xd6\xbb\x2e\xa9\x68\x7e\x9c\xa4\xad\xd4\x1d\xab\xc3\x73\ -\xbb\x12\xbc\x73\xfb\xab\x4a\x35\xe9\xb9\x3f\x7d\x7f\x5b\x2d\xb7\ -\x8f\x97\x33\x3c\x4c\xfc\xba\xdd\xde\x5d\xce\x78\x26\x50\x99\x53\ -\xc4\x87\xc9\x0b\x39\xa2\x65\x56\x10\x21\x0a\x24\x46\x89\xb2\x3e\ -\x8c\xb2\x12\x97\x0c\x15\xa3\xc4\x87\xdd\x4e\x2e\x15\xe9\xba\x7a\ -\xae\x65\xa7\x9a\xff\xba\xf1\xdd\xdf\x6e\x1f\x6f\x76\x0a\x9c\xc3\ -\xee\xa1\x1e\x72\xaa\x94\xf4\xea\x6a\xfb\xe4\x4f\x96\x9a\xeb\x41\ -\x2d\x42\xe9\xc3\x66\x75\x90\x8a\xfe\xfe\xc9\x2e\xf5\x61\xb5\xac\ -\x25\xf1\xba\x5a\xef\x47\x9c\xfb\x4d\x75\x9f\xde\xac\xb7\x57\xd5\ -\xda\x5f\xf4\xe3\x6a\x23\x51\x4a\x3b\x69\x25\xc5\xa8\x57\x3a\x47\ -\x27\x9e\x3c\x2f\x03\x39\x64\xe3\x47\x03\xa1\x93\x9e\xc3\x49\x77\ -\xd5\xd3\xea\x6e\xf5\xb5\x96\xc8\xa0\x11\x2c\xaa\x6b\x36\x2e\x5a\ -\x22\x1d\xdc\x3a\x41\x3e\x3c\xab\xd5\xe8\xe9\x59\xd1\x9c\x49\xab\ -\x08\x58\x08\x6e\x88\xdb\xdd\x4a\x2a\x79\xab\xb9\x1d\xe9\xd9\x26\ -\xa9\xb5\x4b\x9a\x1e\x4f\x8d\x00\x36\xe2\xc9\x87\x69\xcf\x76\x5a\ -\x3b\x5f\x2e\xe6\xe3\x89\xd1\xd0\xef\xea\x43\xb5\xac\x0e\x55\x3f\ -\x4b\x3a\x8a\x6c\x5b\xde\xf5\x4c\x9a\x01\xe7\xff\xfc\xe9\x67\x33\ -\xf3\x17\x8b\xf3\xff\x6e\x77\xbf\xf7\x93\x55\x65\xa8\xae\xb6\x0f\ -\x72\x24\x8c\x7e\x50\x6b\xcd\xe2\x5c\x2e\xdc\x72\x41\xfb\xb4\xba\ -\x93\xb2\xaf\xd6\xfc\x3f\xca\x85\x5a\xce\x57\x93\xe0\x64\x56\x60\ -\xf5\x85\xb6\xc5\xee\xea\xd6\x02\xf0\x9a\x41\xcb\xc5\xdd\x4a\x31\ -\xcd\xff\x75\x58\xad\xd7\xff\x50\x95\x18\x0d\x61\x0a\x5d\x1d\xd6\ -\x75\x4f\xbc\x98\xeb\xd6\x77\x7a\xc4\xea\xdc\xc5\xbc\xeb\x7d\xf3\ -\x74\xd3\xa3\xe2\xcc\x1a\x33\xd0\xeb\xea\xaa\x96\x12\xfc\x8b\x4a\ -\x4c\xc6\x72\xb2\xdb\x3e\xdc\xdf\x6d\x97\xb5\x66\xef\xd0\xbc\xaf\ -\x0e\xb7\x9e\xf5\x60\xb3\x91\xba\x52\x2a\x7d\x39\x5f\xbf\x54\x87\ -\x87\x5d\x6d\x0f\xbb\x1a\x98\x84\xe0\x2c\x57\x3f\xf8\x4c\x5a\x1a\ -\x54\x4e\xf6\x92\x24\xb7\x89\x1e\x6b\x9e\x7c\x49\x34\x99\x63\x49\ -\x4e\x0d\xfd\x6b\x72\x97\xa4\x44\x9a\x20\xca\x84\x21\xc5\x59\x9e\ -\xfc\x3d\xc1\xda\xa0\x41\xc9\xaf\xf2\x6f\xc5\x83\x18\x93\x74\xcd\ -\x54\xd2\xe4\x37\xc9\x95\x9f\x9c\xf7\x73\x42\xb2\x12\x15\x14\x73\ -\x5e\xa7\xc5\x99\xce\x46\x59\xcf\x2e\x1b\xf5\x6b\x42\x33\x45\xc5\ -\x42\x92\xed\xfc\xba\xb2\xa2\x4e\x79\x80\xa1\x18\x73\x7c\xee\x1b\ -\x70\xd6\x21\x43\x2d\xf6\x52\xb2\x13\xd2\x20\x52\x8c\x5a\xcb\x33\ -\x54\x88\xb2\x40\xb2\xc6\x33\x2c\x32\x55\x47\x59\xf6\xcc\x14\x49\ -\x34\xbb\xbe\x4a\xb2\x95\xbd\x69\x2b\xce\xe4\x43\x8e\x89\xea\x6b\ -\xaa\xf3\x61\xab\x6e\x85\x54\x5b\x6a\xdb\x55\xc6\xcb\x3c\x17\xa8\ -\xef\x6a\xc7\x54\xd8\x4c\xa6\x4a\x7a\x9c\x89\x78\x99\xd8\xf7\xd4\ -\xe4\x61\xfa\x2c\x99\x50\xd9\x26\x73\x29\x48\x9a\x89\x50\x97\x2b\ -\xd7\xa3\x8e\x72\x84\x38\x56\x40\xa0\xa2\x1d\x04\xab\x79\x05\x1b\ -\x76\xca\x64\x6f\xd8\x45\xc6\xa4\x61\x4a\x0b\xa6\xc6\x01\x91\x76\ -\x1c\x84\x35\x0e\xd4\xe5\xb7\xf3\x8f\xa5\x0e\xa1\xac\x11\x7f\xea\ -\x08\xd1\xa0\x01\x03\x19\xa2\x19\x16\x04\x17\x54\xa8\x02\x84\x91\ -\x96\x8e\x7d\x00\x95\x9d\x5b\xb3\xe7\x8c\x96\xb4\x68\x24\xa1\xc8\ -\x9a\x6a\x88\x2d\x09\x4c\x8a\x82\xd0\xd3\x92\x37\x25\xf4\x0c\xba\ -\x07\x3d\xfa\x67\xd6\xfc\xb0\x44\xa9\x2b\xd7\x3b\x58\x9d\xe8\x9b\ -\x49\x57\xd8\x83\x66\xf5\x9e\x2a\xa5\x60\xe8\x8d\x52\xe8\xea\x90\ -\xd3\xfc\x85\x2c\xe4\xe5\x2c\xf4\x4c\xaa\xa4\xa6\xd9\x86\x91\x9a\ -\x19\x4e\x2c\x36\x1a\xae\xe9\x14\x06\xf6\x52\x86\x41\x5f\x7c\x0c\ -\x47\x3b\xff\x6d\x06\xfa\xd2\x26\x05\x19\xa4\x1e\x93\xba\xa7\x99\ -\xda\xdf\x0d\x90\x1a\x09\xd6\xaa\x5a\x94\x67\xad\x9d\x30\x50\xb5\ -\x65\xc6\xda\xc5\xc2\xad\x89\x37\xeb\x41\x97\x48\x06\x4c\x45\x46\ -\x5a\x5f\xc9\x65\xc2\x0d\x53\x91\xd1\x46\x4c\xd1\x80\x49\xce\x28\ -\xdd\x82\x61\x9f\x4c\xda\x68\x21\x30\xcd\x69\x26\x80\x54\xb4\xa5\ -\xca\x26\xd4\x04\xa0\x94\x17\xd8\x91\x31\xd2\xaf\x5a\x45\x79\xfa\ -\x90\x7e\x9b\x45\xa2\x28\xb2\xa2\x59\x86\x15\x98\xce\x10\x74\x2a\ -\x83\x9f\x2e\xd6\xdf\x66\x19\x09\xf6\x0b\x6b\x21\x01\x96\xd3\x90\ -\x38\xc2\x32\x92\xd6\x6f\x37\xec\x08\xcb\x29\x22\xee\xe4\x36\x32\ -\xac\xa4\xc1\x48\xee\x19\xcf\x94\x30\x20\x81\xc7\xa2\xde\xb1\xe3\ -\xa0\xa8\xe3\xd2\x16\x75\x4a\x06\x4c\x9d\x34\xbb\xcd\xa4\x68\x24\ -\xea\x36\xd3\xa9\xa2\x6e\xf3\xb8\xa2\xde\xeb\x7a\x3d\xc7\x11\x02\ -\xa4\xeb\x7b\x46\x76\xea\xb4\x38\x85\x85\xbd\x9c\x25\xd8\x23\xf6\ -\x72\x10\xc2\x2c\xf4\xe5\x0d\x1b\x4d\x0b\xbd\xf4\x37\x86\xf4\xb7\ -\xa6\xc5\x49\x3d\x97\x23\x43\xc7\x13\xa2\xab\x26\xac\xfa\xb1\xa3\ -\xfa\x4b\x97\xa7\x93\x78\xea\x5b\x2e\xec\xe9\x60\xf1\x04\x66\x03\ -\xb6\xa7\x43\x21\x5c\x9e\x2e\x13\x4b\x7e\x1b\x06\xcc\xae\xa5\xff\ -\x77\xfe\x1e\x33\xbe\xcc\xc5\x9f\xd4\x43\xaa\x23\x31\xe7\xe8\x4f\ -\xfb\xc3\x6e\xfb\x7b\x7d\xbe\xd9\x6e\x6a\xfd\x77\x1b\x59\x38\x97\ -\xd3\x09\x95\x94\x4a\x1d\xd1\xd1\xa5\x3b\x59\xef\xd6\xd2\xf5\x3f\ -\x9c\xd3\x8e\xb6\xac\xf6\xb7\xd5\x6e\x57\x3d\x3b\x25\x98\xe2\x1d\ -\xaf\x7e\x27\x7d\xb8\xb2\x2c\x53\xc1\x53\x94\xd2\x94\xc9\x7f\x42\ -\xed\x10\x74\x51\xab\x1b\x27\x04\x20\x58\x4e\x0c\xfb\x61\x57\x6d\ -\xf6\xca\x2b\x96\xae\x5e\x75\xd8\xad\x9e\x3e\x48\x75\x22\x7f\x55\ -\x6c\xb3\x31\x4b\xcf\x48\x56\x30\xc4\xa5\xfd\xd7\xb8\x1d\x34\x13\ -\x82\x94\xa8\x94\xa6\x6c\xf9\xd1\x0f\x07\x5b\xa8\xdf\x21\x1c\x6d\ -\xe0\xec\x5c\xba\xd1\x1f\xde\xf7\xa1\xc3\x8f\x7d\x60\xcf\x76\x50\ -\x4f\x2a\x31\x08\x30\x55\xd1\xda\xb2\x24\x25\x99\x02\xe0\xc6\x0d\ -\x56\x5a\xb0\x95\x09\x8a\x91\x48\x7e\x51\x8f\x8d\x81\x2d\x71\x41\ -\xed\x63\xe3\x07\x70\x2e\x45\xbf\x7d\x6c\xfc\x0a\x39\xce\xfa\xb1\ -\xd0\xff\x37\x3e\x0e\x62\xea\xb1\xb1\x21\x38\x92\x2e\xa0\x43\xe5\ -\x19\x27\x98\xe2\x41\x5e\x96\x31\x21\x8a\x5c\x04\xa8\x38\x97\xba\ -\x19\x4b\xf9\x75\xa9\xb8\x6d\x32\x76\xa9\x4c\xb7\x5c\x51\x49\x46\ -\xe5\x74\x10\xdc\xa5\xa2\x4c\x0a\xbc\x90\x6e\xab\x4d\x45\xb2\xc7\ -\x42\xa8\xfe\x07\xa8\xbc\x47\xc0\xa2\x8a\x1e\x88\x9e\x4a\x54\x93\ -\x10\x57\xee\x31\xcd\x0b\xfd\x48\x55\xb4\x80\x09\xaa\x1f\x65\xe3\ -\xf3\x5c\xe1\xdb\x3e\x36\x9a\x23\x47\x3a\x73\xa3\x14\x70\x4e\x74\ -\x6a\x33\xdf\x89\xe8\x8a\x52\x53\x99\x33\xc3\xab\xa6\x30\x2e\x11\ -\x66\xa3\x47\xda\x83\x69\xf1\x58\x54\xab\x60\x8b\x6a\xd5\x6e\x51\ -\xad\x26\xda\xd4\xbe\x1f\x36\xb5\xef\xac\x4d\xed\x11\xb1\xa9\x3d\ -\x6c\x16\xb5\x1f\xa4\x00\x15\xbb\x23\x69\x8d\x83\x45\xb5\xc6\xcc\ -\x92\x05\x9b\xda\xcb\x8d\x4d\x35\x52\x1a\xa0\xda\xd2\xd4\x53\x6d\ -\x79\xec\xa9\xb6\xec\x9a\x39\x61\x53\x89\x9b\xa9\xd9\x19\x53\x03\ -\x18\xa0\xda\x53\xc4\xa2\x0e\x1e\xed\x09\xda\x53\xed\x59\x6c\xa8\ -\xce\x54\x37\xd4\x81\x3e\xe8\x1f\xbf\x26\x96\xf6\x08\x69\xd8\x2e\ -\x34\x46\xd0\x59\xea\xe8\x58\x2a\x85\x28\x2f\x05\x27\x8e\x8a\x75\ -\x35\x7d\x91\x96\x4c\xea\x78\x91\x32\x6b\x6f\xe2\xc6\xaf\xee\x89\ -\xb5\xe1\xe2\xa8\xd5\xba\xba\xca\x69\x35\x50\xab\x27\xac\x0c\x48\ -\x29\x57\x44\xe4\x5f\x4c\x2e\x63\x65\x29\x97\xf6\x52\x99\x5e\xbc\ -\x28\x30\xa1\xcc\xd2\xe9\xaa\xb9\x7d\x07\x9e\x2f\x67\xdd\xb2\x5c\ -\x58\xfd\x7a\xba\x9c\x75\x4b\xac\xbd\xe1\xd5\x05\xd9\x8d\x0d\x61\ -\xa5\xe9\x10\xbd\x2f\xc9\x5d\x0f\x67\x81\x15\xc5\xdb\xf5\xf0\x8a\ -\x42\x32\xd1\x5a\x13\xaf\x59\x50\xac\x68\xf0\xa9\xb8\x18\x8b\x64\ -\x5a\x5c\x8a\x14\x3a\x30\xc6\xbc\x9b\x16\x18\x94\x16\xc0\x81\x31\ -\xb6\xf2\xd4\x12\x93\xa7\x9c\x00\xc3\x06\xb9\xd0\x18\xd7\x63\x62\ -\x68\xe0\x09\xcd\x10\x18\xb9\x2a\x4f\x2d\x2e\x2c\x65\xc0\x41\xa1\ -\xed\xfa\x4c\xa7\xd6\x30\x02\xbc\xb8\x70\xbd\xa9\x35\xbd\x8a\xa1\ -\x29\x74\x1d\x23\x32\x1c\x61\x5d\x92\x96\x1e\x6c\x5c\x5a\x87\x63\ -\xf2\xd9\x24\x65\x46\xa4\x14\x38\x34\x8d\xd7\x35\xb9\x8d\x87\xe4\ -\x6f\x09\x1c\x19\x96\x15\xcd\xc9\x83\x08\xb6\x4c\x8a\x80\x61\x83\ -\x07\xd8\x28\xef\x99\x74\x87\x43\xa7\xc3\x06\x49\x68\x30\x70\x68\ -\xba\xad\xb9\xe9\x6d\x1a\x04\x47\x0f\xfb\x1c\x81\xde\xd3\xa6\x13\ -\xcf\x29\x91\x03\xc7\xa5\xdb\x0a\x9b\x7c\x81\x02\xa3\x83\x03\xc0\ -\x74\xaa\x79\x62\x45\x03\x68\x71\x0a\x00\xd3\xed\xd2\x4e\xed\x4e\ -\xca\xd5\x09\x8c\xeb\xe4\xc3\xc0\xf2\xb4\xa7\xf6\x10\x50\x0a\x4d\ -\xcd\x8c\x90\x69\xf6\x02\x26\xf7\x0f\xd4\xda\x04\x6d\x65\x1a\x41\ -\xa3\x1d\xee\xc9\x15\x8d\x74\xb8\xc1\x78\x95\x21\x6c\xb4\xcb\x3d\ -\xb9\x49\xa3\x5c\x6e\x68\x8a\x78\x04\x4e\x2c\x9f\x1b\xba\x1a\x8e\ -\xe9\x74\x83\x89\x61\x85\xb0\x89\xe7\x75\x83\xf1\x2c\x43\xd0\x44\ -\x75\xbb\xa1\x4d\x2a\x36\x44\x27\xa2\xe3\x0d\x6d\x09\x1f\x61\x13\ -\xd3\xf3\x06\xb3\x4c\xf9\xf6\x99\xac\x3d\xee\x89\xfd\x05\xe8\xb0\ -\x44\xdb\xe2\x06\xa3\x86\x03\xc0\xf8\x36\x78\x27\x59\xa1\xc0\xf8\ -\x50\x01\x60\x22\x6e\x71\x83\xf1\x13\x7c\x1e\x76\xd4\x2d\xee\x1c\ -\xcc\x2e\x4b\x08\x9a\x28\x9b\xdc\xe0\x51\x89\xb7\xcb\x0d\x1e\x9a\ -\x98\xdb\xdc\xe0\xc1\x89\xe5\x73\x83\x39\x98\x16\x00\x26\xaa\xcf\ -\x0d\x7d\x79\x8a\xe9\x74\x83\x17\x9c\x98\x5e\x37\x18\xa7\xbb\x03\ -\x47\x0c\xc0\x89\xe9\x74\x83\x09\x65\x85\xc0\x69\xbd\x6e\x1e\x61\ -\x4f\x01\xc1\x39\x0b\xe0\xdb\x59\xe9\xbd\xee\x7c\xe2\x55\x1c\x8e\ -\xb6\xf1\xc3\xa2\xbd\xee\xe9\x77\xbb\xe1\x68\x1a\x3f\x30\xfa\x3a\ -\x79\x39\xb1\x1a\x46\xe0\x25\x46\x7b\xdd\x79\x8c\x2d\x28\x38\xa1\ -\x1a\x3f\x36\x9d\x62\x9e\x7a\x3a\x41\x0a\x7a\x06\x90\xc1\x19\x57\ -\xf3\x69\xf2\x43\x12\x2c\x65\x60\xa2\xe5\x21\x6c\xb4\xef\x3d\xf9\ -\x1d\x16\x48\x5e\x54\x00\x1a\xed\x7b\x4f\xef\x45\xa9\xeb\xd1\xd0\ -\xc1\x69\x6e\x83\x4e\x3e\xa7\x04\xa0\xe8\x67\xc0\xd6\xd3\xbe\x77\ -\x04\xd7\x1b\xba\x1e\xee\x3c\xef\xc9\x0f\xd7\xc8\x25\x0a\xbc\xd8\ -\x48\xcf\x3b\x86\xd3\x8d\xc0\x09\x0d\x19\x00\xa3\xbd\xee\xa9\x43\ -\x12\xad\xd7\x0d\x27\x04\x1a\x40\x47\x6f\x76\x47\x30\x6d\x10\x20\ -\x55\xec\xd9\x40\xb0\x36\xbb\xa7\xc5\xa6\x84\x13\xaa\xf1\xc3\xa2\ -\xdd\x6e\x36\xbd\x13\x05\x67\x36\xf9\x91\x89\x76\xa1\xbb\x84\xa3\ -\x85\xfd\xc8\x44\xdc\xee\x86\x0e\x4d\xbc\xed\x6e\x38\xbe\x65\x00\ -\x99\x28\xbb\xdd\x70\xdc\xca\x00\x2a\xf1\x8e\x98\x73\xe8\x4b\x53\ -\xdc\xed\x6e\xe8\xf6\x4c\xb4\xfd\x6e\x38\x87\xb1\x02\x86\x9e\xf6\ -\xb9\xa7\xdf\xb6\x84\x14\x8f\x08\x60\xa3\x9d\xee\x89\x97\x27\x04\ -\xea\x0c\x5f\x00\x9a\x98\xbb\xdd\xd0\x17\xef\xce\xef\x9e\x7e\x3b\ -\x81\xa7\x18\x4e\xf4\x33\x00\x4e\xcc\x33\xe6\x70\xbc\x28\xcf\x6a\ -\x6d\xdc\x6e\x2c\x26\x06\x07\x8e\xcc\xf8\x61\xd1\x6e\xf7\xd4\x3b\ -\x2d\x05\x20\x4d\xe3\x07\x26\xda\x6e\x37\xf4\x89\x14\x71\xb7\x1b\ -\x8e\xa3\xe0\x87\x26\xde\x66\xb7\x80\x73\xd8\x28\x00\x4d\xbc\xdd\ -\x6e\xf0\xd0\xc4\xdb\xec\xa6\x70\xc2\x12\x01\x6c\x62\xee\x76\x83\ -\x07\x27\xd6\x6e\x37\x83\xbe\x46\xc5\xdc\xee\x86\x73\x22\x2b\x80\ -\x4d\xbc\xfd\x6e\x38\x9a\xd8\x13\xb3\x7a\xf2\xf7\x71\x02\x68\xe0\ -\x44\x24\xfc\xb0\x74\xf7\x50\x27\x57\xc2\xd0\xe5\xa5\xfb\xc0\xd2\ -\xe4\xf7\x50\x11\x74\x91\xd1\x4e\x02\x8e\x10\x32\x67\x70\x14\xb0\ -\x1f\x9b\x78\x5b\x73\xe0\x91\x89\xb2\x35\x07\x7d\x2e\x75\xfe\xc1\ -\xc4\xd6\x0c\x4a\x21\x9d\xdd\x0b\x40\x13\x73\x67\x8e\x81\x17\x1c\ -\xed\x1f\x4c\xfd\xe9\x08\x40\x71\x9a\x80\x9d\x17\xf3\x95\xcb\xe0\ -\xc1\x89\x77\x13\x15\xce\x0e\x8b\x4f\x42\xe2\x39\x08\x82\xc3\x89\ -\x0a\x07\x90\x89\xe6\x23\x70\x38\xeb\x77\x00\x9a\x68\x5e\x42\x01\ -\x47\x11\x07\xa0\x89\xe8\x26\x70\x02\xc7\xbd\x0c\xa0\x13\xf1\xab\ -\x2c\x70\xb6\xe7\x42\xd8\xc4\xf9\x30\x0b\x7c\x5c\xe2\x39\x0b\x05\ -\x78\x4d\x1c\xf7\xf3\x2c\x70\xbc\xa9\x10\x3c\xb1\xfc\x05\x01\x27\ -\x32\x11\x32\xfc\x62\x7a\x0c\x70\x4e\xf3\x85\xd0\x89\xf8\x9d\x16\ -\x40\xa2\xe3\x39\xd3\x18\xd1\x67\xc8\x01\xa9\x63\x3f\x32\xd1\x7c\ -\x86\x12\xd0\x8c\xf2\x43\x13\xed\x0d\x97\x25\x20\x0b\xc7\x0f\x4d\ -\xc4\x4b\x3f\x0c\xbc\xb2\x89\xf8\x96\x4b\xf0\x82\x13\xc7\x65\x00\ -\x14\x0d\x0d\xe1\x12\xf3\xeb\x12\xf0\xa5\x26\xea\xf7\x25\x00\x2d\ -\x54\xee\xab\x00\xe2\x19\x36\x80\xce\x4b\x8c\x31\x89\x66\xd2\x00\ -\xba\xd7\x32\x46\x25\x5a\x04\x34\x07\x14\x37\x1f\xa1\x12\x31\xf8\ -\x49\x00\x2d\x4a\x23\x5c\x62\xbe\xa9\x1b\x50\x4c\x78\x8c\x4b\x9c\ -\xd7\x74\x83\x16\x95\x78\xd1\x4e\x40\xc7\x83\x3d\xb8\x44\xbd\xb1\ -\x0c\xe7\xd2\x93\xef\xba\xa0\xf5\xe6\xd3\x89\xd7\x23\x40\xd7\x2b\ -\x03\xc0\x74\xb7\xc1\x26\x7f\xe9\x53\x09\x69\x67\xc5\x8f\x8d\x36\ -\x62\xf8\xe4\x57\x96\x39\x20\x0d\xec\x87\x46\x5b\x32\x11\x94\x0d\ -\x24\xb3\xd7\x8f\x4d\x67\xcd\x4c\x8d\x8e\x0a\xe5\xc1\x31\x66\x02\ -\xd8\xe8\x4b\x61\x93\xab\x1b\xf5\x0a\x54\x40\xeb\x77\x00\x1d\x6d\ -\xdc\x4c\x6f\xdb\xc0\xd7\x38\x71\xdf\x82\xfa\x36\xc3\xc0\x17\xf3\ -\x1b\xfd\xc7\xcd\x3b\xab\xed\x37\x2c\x17\x6c\x16\x46\x90\x65\x1c\ -\x51\x5c\x0e\xaf\x01\x91\x63\x6f\x6d\xa1\x82\xb0\xdc\x71\xc0\x4e\ -\x3f\xc9\x16\x9c\x76\x14\x13\x8c\x8a\x93\xb1\x93\xb6\x08\x2a\x48\ -\xc9\x31\x8f\x25\x5b\x01\x64\x58\xbb\xc7\x19\x88\x87\x7e\x37\x34\ -\xc5\xb1\x69\x07\x05\x1b\xd1\xbe\x9b\x24\xf7\xcf\xbb\x57\x60\xd3\ -\x1c\xd8\x0a\x9a\x88\x50\xe0\x41\xe8\xd8\xeb\x49\xbe\x1f\x1e\x74\ -\xec\xf0\x0d\x18\x70\x8a\xac\x91\x1d\xff\x1b\x15\xbe\x1b\x9c\xf6\ -\x68\x52\xf0\xec\x0d\x18\x74\xca\xb6\x9f\x93\x6b\x9d\xf6\x6c\x12\ -\x78\xad\x8c\x71\xbb\x25\x3e\xb1\xf4\xe8\x13\x38\xe0\x27\x17\xa6\ -\xad\x0f\xe6\xf7\x4e\x5f\x31\xb9\xd0\xb1\x4d\xaa\xb7\x8a\x8e\xf3\ -\xba\x0c\x85\x4e\x39\x7e\x4f\xf1\x34\x7a\x99\xa7\x18\x3e\x3c\x24\ -\x6f\x3d\x0d\xbf\x1f\xf6\x8a\xb9\xc5\x8e\x7f\x72\xe1\xcd\xe1\x53\ -\x4a\xa3\x98\x73\x41\x87\xf8\xc4\xb1\x95\xf3\x14\xc3\x31\x08\x43\ -\xd0\xe4\xc7\xbe\x92\xf9\x3a\x6c\x00\x09\x0e\x22\x19\x12\xb4\xcc\ -\xf9\x0f\x11\x1c\x7e\xec\x56\xcc\xdb\xc3\x86\x65\x45\x59\x12\x44\ -\x7f\xd8\xa4\x02\x64\x0d\xe2\x3c\x2b\x38\x23\xce\xcd\xb8\xb8\x82\ -\x03\x47\xe5\x60\x39\xa9\x94\xe4\xfc\x18\x6c\x1a\xc1\x09\x46\x54\ -\xdf\x1e\x38\xd2\x5f\x60\xac\xa4\x3f\x2c\xac\x13\x3e\x6a\xf1\xe6\ -\xb0\x91\x8b\x52\xa1\xfa\x4a\x7e\x9c\xe0\x70\x38\xb1\x8b\x00\x3a\ -\x3a\xec\x45\x27\x0f\xed\x48\x95\x03\xc8\x44\x0e\xa0\x23\x32\xd6\ -\x1c\x61\x8a\x14\xf8\x02\x14\xfa\x0a\x00\x14\x35\xf4\x05\x48\x2f\ -\x87\xe0\x99\xd8\xb7\xd2\x51\x2f\x40\x96\x4e\x08\x98\xc8\x71\x2f\ -\x40\xaa\x27\xb0\xa4\xc7\x43\xa8\x89\x7c\x01\xf4\x24\x86\x9f\x9b\ -\x2a\xc7\x1f\x2f\x9b\x30\xba\x13\xde\x0d\x7c\x7b\x00\x69\x37\x74\ -\x68\x14\x6a\x27\xdd\x7f\x1c\xec\xf5\xf1\x9d\xf0\x81\xb0\xb7\x87\ -\x90\x5f\x84\x22\x45\xc0\xb4\x6d\x08\xc8\x74\x0e\xf8\xa3\x5d\x78\ -\x39\x52\x00\x35\x3d\xf2\x59\xa1\xb7\x07\x91\x76\x4b\x87\x5a\x28\ -\xd6\x06\x85\x99\x64\x80\xac\xa0\x10\x46\x5a\x8c\xa2\x2d\x65\xc7\ -\x0e\xa7\xbe\x39\x90\x42\xcb\x59\xd1\x9e\x18\x8b\xa7\xad\xe5\x94\ -\x3b\xf2\x09\x99\x37\x87\x53\x48\x98\xf2\xf6\xb4\x6a\x64\x9c\xde\ -\x66\x10\x3a\x7c\x18\x08\xf7\x0d\x3e\xec\xaa\xcd\xfe\x7a\xbb\xbb\ -\xbb\x9c\x35\x7f\xae\xab\x43\xfd\x21\x45\x59\x81\x05\x11\xac\x4e\ -\xf9\x59\x2e\x75\x16\xe2\x24\x17\xe5\x47\xc3\xa5\x3b\xd9\x1f\x29\ -\xba\xaf\x0e\xb7\x01\x0c\xd8\x55\xbd\xbc\xbe\xfe\xc1\x18\xf4\x6d\ -\x91\x3d\xfe\x9c\xa8\x01\xc5\x25\xc2\x2c\xa1\x99\xe0\xb8\x60\x05\ -\x4e\x7e\xb1\xa8\x5c\xdd\xeb\xe3\xa2\x10\x0e\x55\x64\xa2\xc8\x05\ -\xe1\x4c\x52\xd5\xb1\x67\xce\x78\x89\x02\x54\xbb\x84\xe6\x66\x36\ -\x11\x79\x11\xa0\xda\x6d\xe8\x4b\xf0\xb7\xac\xa7\x7e\x4d\x3e\x27\ -\xcd\x29\x5a\x9c\x13\x37\x77\x4f\xb5\xeb\x6b\x4f\x95\xe6\xc8\x6d\ -\x45\xfb\x39\xd6\x61\x8b\x7b\xaa\x5d\x6e\x5f\x82\xbf\x36\xb7\x6d\ -\xed\x59\x44\x26\xa8\x5b\x86\xa1\x3a\xf5\x35\x67\xf3\xe8\x00\xa1\ -\xf6\xe5\x22\x18\x89\x00\xd5\x29\xd7\x94\xe0\xaf\xcd\x6d\x5b\xfb\ -\x52\x0a\x51\xba\x6d\xeb\xa9\xce\xf8\x93\xf6\x81\xbb\x54\xa6\xa2\ -\x3b\x72\xe0\x03\x54\xa7\x5c\x53\x82\xbf\xb6\x41\xdb\xd4\xf1\x45\ -\x4c\x31\x76\x73\x1b\xaa\x53\x9f\xfa\x7c\x0f\x47\x65\x19\xa0\xda\ -\xb2\x49\xf0\xf0\xd1\xe6\x21\x83\xea\x4c\x11\xfe\x46\x0c\x9a\x6c\ -\xc4\x53\x0a\x0e\x65\x44\xfd\x65\x0b\xad\x1a\x06\x2a\xf3\x17\x2e\ -\x55\xd6\x4f\x91\x1a\x32\x5b\xec\x03\x54\xab\x04\x8b\xea\xaf\xcd\ -\x50\x9b\xb6\x99\x9e\x38\xb9\x7b\xaa\xdd\x36\xd3\x3f\x87\x6a\x06\ -\x35\x40\xb5\x5a\x6c\x95\x60\x53\xfb\xda\x2c\x2a\xc1\xa3\x47\xab\ -\x7c\xf5\xe8\x6f\xb0\xdb\xbd\xbe\xdb\xa2\x93\x75\x1b\x0c\x65\x62\ -\x62\xce\xc9\x80\x2a\x2b\xc2\xa8\x1c\xe8\xac\x00\xd5\x2a\xc1\x82\ -\xde\x5b\x5b\x4f\x6d\xda\x66\xe4\xde\xc9\x6d\xa8\x4e\xdb\xcc\x6c\ -\xb0\xa9\xfd\x5c\x0f\x50\xad\x16\x5b\x25\xd8\xd4\xbe\x36\x9b\x6a\ -\x06\x2f\x40\xb5\x5b\xd6\x0f\xb4\xb7\x17\x83\x3e\xf7\x18\xcb\xb1\ -\x55\x43\xeb\xea\x6f\x39\x8e\x22\x2f\xa5\xba\x74\xa8\x44\x39\x02\ -\x98\x50\x17\x63\x9b\xda\xaf\x16\x7e\xaa\x5d\xae\x35\x76\x7e\xaa\ -\xbf\x65\x86\xda\x68\x6f\xa3\x4f\xed\xdc\x16\xd5\x2a\xb9\xd7\xb2\ -\x7e\xaa\xdd\xe2\xbe\x04\x87\x6a\x46\xd4\x4f\x75\xca\xed\xa9\xfe\ -\x96\x39\xfd\xe8\x57\x27\xbb\x8c\x9e\xea\xd4\x67\xd6\x37\x87\x6a\ -\xd6\x42\x3f\xd5\x69\x9b\x29\xc1\x5f\x5b\x4f\xfd\x9a\x58\x36\x89\ -\xd7\xe8\xb2\x6d\xae\xd4\x67\x74\x7d\xc3\x06\x4d\xe9\x37\x2d\x3f\ -\x94\xa3\x12\x5b\x6e\xb4\xb7\x1d\x84\xb6\xd6\x2f\x3d\x4b\x8d\xbf\ -\x3a\xb2\xfc\x8e\x99\xb7\xf2\x51\x1a\x6c\xe7\x0f\xbb\xf5\x87\xf7\ -\xed\xdf\x05\x2b\xd1\xc7\x23\xe7\xcf\x69\x3e\x3e\x99\x26\xad\xf7\ -\xa6\x7e\xaf\xe5\xfe\x9a\x3b\x31\x02\x1f\x7b\xd9\xd8\x0b\x2d\xf6\ -\xe8\x97\x1b\x48\xd1\x78\x30\x3e\x64\xc2\x91\x84\xd7\x5d\x19\x9a\ -\xee\x24\x68\x7c\x74\xca\x31\x0c\xf1\x04\xe7\xd8\x7b\x27\xde\x1a\ -\x32\xc1\x29\x75\x34\x72\xf0\x8a\x2b\x43\x74\xc2\x73\x23\xff\x3f\ -\x74\x8e\x06\x9f\x5e\x75\x67\xa8\x38\xf6\xb9\x62\x30\xf8\x1c\x8d\ -\xa7\xbc\xea\x36\x1e\x3e\xf6\x76\x4c\x28\xf8\x1c\xdf\x87\x7b\xdd\ -\xcb\x06\x54\x14\x7c\xaa\xc0\x65\x7c\x80\xf0\x58\xcd\x44\x53\xcc\ -\xea\x77\xaa\x50\x65\x7c\x64\xe8\xf8\x9c\x79\x34\x64\x8a\xc6\x30\ -\x9c\x6a\xdf\xe4\x87\x5c\x55\xa4\xea\xae\xaf\x81\xef\x26\xd0\xf2\ -\x6b\xa2\x7e\x87\x2d\xff\x96\x89\xdd\x22\x86\x05\x3b\xeb\xde\xe4\ -\x85\x86\xe6\xb5\xb4\x91\xa5\xb3\x6d\x1a\x30\x0a\x6d\x9e\xd4\x8e\ -\xb8\x08\xda\x8d\x69\xa2\x9b\xbd\x17\xd2\x7b\x29\xb6\x6f\xd2\x7b\ -\x66\x0e\xd5\x78\x50\xb6\xc7\x62\x53\x7b\x6f\x33\x40\x35\x9e\x99\ -\x53\x82\x45\xb5\x6a\xf3\x52\x7b\x1f\xde\xa1\x1a\x5f\xdb\xf1\xbb\ -\xfc\x54\xbb\x04\x43\x75\x6a\x33\xbd\x77\xa8\xa6\x47\x01\xaa\xd5\ -\x63\xab\x04\x9b\xda\xd7\xe6\xa7\xda\xa8\xf7\x54\xff\x08\x19\xaa\ -\xe3\x27\x86\xc2\xf3\xbd\x1c\xa7\x5e\x41\xf6\xeb\x01\x5b\x2d\x99\ -\xc9\xd7\xfe\xd1\xfc\x77\x31\xdf\x7f\x91\xff\xfd\x0f\xc9\x3d\x8a\ -\x57\ -\x00\x00\x05\xfe\ -\x00\ -\x00\x1c\x9e\x78\x9c\xdd\x58\x49\x8f\xdb\x36\x14\xbe\xcf\xaf\x60\ -\x95\x4b\x8b\x9a\x5a\x28\x5b\xdb\xd8\xce\x21\x41\xd1\x00\xc9\xa5\ -\x4d\xdb\x63\x20\x4b\xb4\xcd\x8e\x24\x0a\x14\x35\xb6\xf3\xeb\xfb\ -\x28\x89\xb2\xe4\x05\x98\x20\x9e\x41\xa6\x02\x12\x4b\x6f\x21\xdf\ -\xfb\xde\x46\xce\xfc\xed\x3e\xcf\xd0\x23\x15\x15\xe3\xc5\xc2\x70\ -\x4c\xdb\x40\xb4\x48\x78\xca\x8a\xcd\xc2\xf8\xeb\xf3\x6f\x38\x30\ -\x50\x25\xe3\x22\x8d\x33\x5e\xd0\x85\x51\x70\xe3\xed\xf2\x6e\xfe\ -\x13\xc6\xe8\x9d\xa0\xb1\xa4\x29\xda\x31\xb9\x45\x1f\x8a\x87\x2a\ -\x89\x4b\x8a\x7e\xde\x4a\x59\x46\x96\xb5\xdb\xed\x4c\xd6\x11\x4d\ -\x2e\x36\xd6\x2f\x08\xe3\xe5\xdd\xdd\xbc\x7a\xdc\xdc\x21\x84\x60\ -\xdf\xa2\x8a\xd2\x64\x61\x74\x0a\x65\x2d\xb2\x46\x30\x4d\x2c\x9a\ -\xd1\x9c\x16\xb2\xb2\x1c\xd3\xb1\x8c\xa3\x78\x72\x14\x4f\xd4\xee\ -\xec\x91\x26\x3c\xcf\x79\x51\x35\x9a\x45\xf5\x66\x20\x2c\xd2\x75\ -\x2f\xad\xac\xd9\xb9\x8d\x90\x13\x86\xa1\x65\x13\x8b\x10\x0c\x12\ -\xb8\x3a\x14\x32\xde\xe3\xb1\x2a\xd8\x78\x49\x95\xd8\xb6\x6d\x01\ -\xef\x28\xf9\x34\xa9\xa8\x02\x40\x4b\xf8\xd7\x8b\x6b\x82\x59\xf1\ -\x5a\x24\x74\x0d\x7a\xd4\x2c\xa8\xb4\xde\x7f\x7e\xdf\x33\xb1\x6d\ -\xa6\x32\x1d\x2c\xa3\xf1\x1c\xed\x3a\x02\xb9\x88\x73\x5a\x95\x71\ -\x42\x2b\x4b\xd3\x1b\xfd\x1d\x4b\xe5\x76\x61\xb8\x53\xd3\x71\xe1\ -\x99\x35\xc4\x2d\x65\x9b\xad\x3c\xa5\xb2\x74\x61\x80\xf5\x24\x0c\ -\xda\xef\x41\x72\x38\xad\x40\xb7\x70\xd4\x73\x6c\x33\x24\xa6\x83\ -\x84\x33\x73\xfd\x56\x46\xbb\x10\xa5\x3c\x51\x36\xc1\x92\x34\x67\ -\x71\x2d\x79\x0e\x51\x4b\x92\x2c\xae\x2a\xb6\x66\x09\x7c\xf0\xa2\ -\xcc\xea\x0d\x2b\xbe\xc8\xad\xa0\xd5\x96\x67\xe9\x17\xc9\x79\x66\ -\x6a\x04\xfb\xed\xe8\xbe\xe4\x42\xe2\x7d\x5a\x02\x8e\x9e\x7f\x91\ -\x79\xd0\xcc\x25\x70\xe7\x29\x5d\x57\x4a\xaa\x75\x4a\x7d\x81\x57\ -\xbe\x81\xac\x86\xdb\xdb\xa8\x0c\x4c\x1f\x19\xdd\x1d\x65\x57\x71\ -\xd5\x02\x87\x50\x19\x6f\x20\xc9\x32\x2e\x16\xc6\x9b\x75\xf3\x74\ -\x8c\x15\x17\x29\x15\x9a\xe5\x35\xcf\x88\xc5\x21\x10\x4c\x1e\xda\ -\xb2\xea\xd6\xd6\xf6\xaa\x55\x7b\xbe\x7d\x99\x5f\x6d\xe3\x94\xef\ -\x16\x06\x39\x65\x7e\xe5\x3c\x87\x55\x67\x66\xe0\x7a\x76\xe0\x9e\ -\xb2\x93\xfd\xc2\xc0\x33\xd7\xf4\x66\xd3\x20\x38\x63\x36\xf6\x38\ -\x8e\xef\x10\x7f\x76\xc6\xac\x85\x80\xba\xc3\x59\x7c\xa0\xe0\x54\ -\xf3\xe3\x74\x42\x10\x9a\xdd\x46\x28\x70\xa4\xa8\xe9\xa9\xa6\xe2\ -\xe0\xd5\x8a\xef\x2f\xb3\x21\x0d\x6a\x55\xd1\xb8\x2e\x98\x84\xaa\ -\x29\xf7\xc3\x55\x6b\x96\xd2\xea\xb2\x62\x55\xc4\x25\xde\x64\x7c\ -\x15\x67\x97\x05\x76\xac\x00\x90\x70\x97\xe0\x8e\xdb\xc7\xe0\x54\ -\x42\x67\xbb\x6f\x9f\x61\xd2\x49\x80\xed\x67\x71\xe8\x58\x87\xeb\ -\xac\x3c\xde\xb3\x9c\x7d\xa5\x00\x8c\x73\x86\x8a\xf2\x6c\x08\xcb\ -\xb2\x11\x98\x8f\x60\x6b\x75\x10\x92\x07\x55\xd9\xfb\x83\xa2\x19\ -\x9a\xa8\xf0\x56\x04\x12\x86\x7e\x4f\xe4\x82\x41\xc1\x0c\xcc\xd5\ -\xa4\xc3\x90\xa4\xfa\x00\xb4\xf1\x7d\x93\x7f\x4d\x76\xfa\xa7\xbc\ -\xc3\x90\xd7\x95\x85\x75\x5e\x17\x0d\x3d\xa7\x32\x4e\x63\x19\x1f\ -\x8b\x44\x53\xc0\x36\x5b\x7b\x06\x2d\x35\xfa\xe3\xfd\x6f\xcb\x6e\ -\xa3\x79\x92\x44\xff\x70\xf1\xa0\xf7\x45\x48\x09\xc4\x2b\x5e\x43\ -\x24\x8c\x65\x4f\x9e\xa7\x49\x04\x4d\x10\x9a\xc3\x92\xe5\x90\xfa\ -\xaa\x7f\xfe\x0a\x4d\x6f\x6e\x1d\x19\x23\x61\x05\xd6\x71\xd1\x76\ -\x59\x68\x1f\x4d\x37\xbd\x38\x52\xd2\x24\x67\x4a\xc9\xfa\x53\xb2\ -\x2c\xfb\xa0\x36\xe9\x3c\x1e\x2c\xca\x64\x46\x8f\xc4\xb9\xd5\x59\ -\xdf\xf9\x66\x0d\x9c\x9b\x5b\xda\xfb\xe6\x6b\x73\x44\x65\x54\x34\ -\x7d\xa0\xb3\x78\x45\x21\x83\x3f\x2a\x26\x3a\xcf\x13\xc1\xeb\x32\ -\xe7\x29\xed\xd4\x35\x9a\x34\xcb\x58\x59\xf5\x8e\x56\xf2\x90\x81\ -\x48\xd3\x72\xa2\x37\x76\xf3\xdc\xa7\xac\x2a\x41\x09\x86\x43\xc6\ -\x0a\x7a\xcf\xa1\x2b\xaf\x33\xbe\x8b\x1e\x59\xc5\x56\x19\xbd\x6f\ -\x7e\x59\x06\xce\xf7\xa4\x35\x20\x10\x15\x30\xcf\xef\x2b\x29\xf8\ -\x03\x8d\xba\xc6\xd6\x7d\xb6\xc5\x14\x11\xe8\xe9\xbe\x4d\xa6\x61\ -\x38\xd5\x0c\xb5\x03\x18\x1c\xad\x6a\x29\x87\xb4\x7f\x39\x2b\x22\ -\xc0\x97\x0a\x4d\x6d\x3e\x32\x28\x0c\x19\xf5\xda\x69\x0c\x1d\x4d\ -\x08\xb0\x75\xb0\x77\x43\xe5\xeb\x75\x45\x65\x64\x6b\x5a\xd7\x19\ -\x23\xe7\x3e\x8f\xc5\x03\x15\xad\x02\x2d\x62\xb0\x1e\xaf\xe2\xe4\ -\x41\x01\x56\xa4\x51\x9c\x40\x5b\xa9\x33\x38\x86\x8c\x0a\xa6\x8c\ -\xe5\xd6\xb5\x9d\x00\x07\xf8\x98\xf2\xc9\xa8\x5e\x54\x1b\x74\x61\ -\x6e\xa9\xb9\x47\x7a\xaa\x00\x19\x12\x98\x7e\xa8\x9e\x23\x55\x95\ -\x89\xdf\xd6\x49\xd0\x27\xcd\x3c\x61\x22\xc9\x9e\x31\x36\xea\x6d\ -\x80\x44\xf3\x29\xea\x8c\x2a\xee\x57\x98\x2e\x7d\xf0\xba\xcd\x46\ -\xc1\x73\x4c\x37\x68\x47\xd2\x6b\x8d\x9d\x8f\xbd\x51\xec\x3c\xd3\ -\x0e\x3d\xd7\x0d\xc9\x38\x86\xa3\xb3\x4b\x13\x2d\x20\x92\x57\x13\ -\x25\xd2\xe6\x9a\xff\x5a\xa3\x14\x8c\x62\x34\x33\x5d\x77\x1c\x8d\ -\xab\x31\x72\x6c\x73\x34\x77\x20\x54\x6a\xd1\x93\x40\x9d\x77\xaa\ -\x4b\x30\x92\x76\x7d\x77\xfa\xac\x8d\xaa\x87\xac\x77\x03\x80\xf8\ -\x84\xb4\x77\xee\xc4\x75\xdb\x1e\xe1\xa3\xdf\x91\x7d\x06\x17\x4c\ -\xc9\x23\x58\xc7\x13\x17\x2f\xc0\x52\xc9\x05\x86\xb3\xd7\x63\x2c\ -\x6b\x41\x47\x33\xbc\x9f\xc5\x30\x1c\xd4\xf8\x82\x63\x52\x92\xdc\ -\x00\x32\xc7\x0c\x43\xcf\x26\xb3\xa0\xdc\x7f\x3b\x66\x17\x91\xc8\ -\x51\x7f\x94\x98\x10\xdf\xf4\x1b\x4c\x50\x82\x74\x70\xdc\x89\x7d\ -\xed\xfd\x3c\xb5\x7c\x9f\x60\xfb\xc9\x68\xdd\x24\x83\x1c\x7f\x36\ -\x75\x66\xb3\x1b\xe2\xa1\xab\x01\x32\x43\xe7\x08\xe0\x61\x4f\xf0\ -\xd4\x24\x0d\x50\xd7\xde\xcf\xf1\x08\xa6\xcf\x87\x46\x40\xcf\x93\ -\xa3\x0b\x24\xb9\x21\x1a\x78\x90\x1e\x76\xeb\xa8\x8f\x5c\x93\x4c\ -\x34\xc3\x47\x9e\x39\x9d\xe0\xc0\x9c\xb5\x50\x7d\x44\x8e\x6b\x06\ -\xad\x46\x68\x7a\xc8\x09\x41\x58\xfd\x87\xc8\xb4\x93\x99\x10\xa7\ -\xc3\x18\xb9\x64\x42\x66\x20\x95\x21\xbd\xc0\x04\x16\x3f\x43\x72\ -\x6a\xbb\xfe\x0b\x22\xa9\x53\x60\x1a\xbe\x44\x67\xb2\x75\xc2\xb9\ -\xd7\xa1\x3f\x02\x36\x80\xde\x1b\x41\x3f\xed\x33\xd7\x1f\x48\x68\ -\x5a\x13\x8b\x8f\xc3\x18\x10\x73\xda\xc0\xef\x75\x1d\xfd\x29\x31\ -\xc0\xee\x37\xf7\xc2\x5e\x4e\x8a\xb8\xa8\xd4\xa5\x00\x27\x70\xa5\ -\xa4\x02\x37\x57\x1c\xef\x09\x82\x30\x8c\xf0\xe9\x85\xe7\xc7\xea\ -\xa2\x9f\x86\x5d\x54\x01\xfb\xae\x09\x54\x8b\xf1\xe9\xcb\x95\xbe\ -\x89\xc9\x0b\x76\xce\xe7\x1d\x24\xfa\xd8\xed\x7f\xd7\x20\xc1\xce\ -\xff\x07\x10\xe7\x16\x93\xf5\x1b\xaa\xef\x47\x04\x64\x58\x24\x5e\ -\x5f\x23\x5e\x57\x19\x83\xdf\x6b\xee\x4f\x5f\xb5\xfb\xa3\x7c\xd0\ -\x6f\xdf\x97\x0f\xe1\x6b\x3f\x6b\x39\xc4\x0c\x6e\x72\xcc\xc2\x17\ -\xe6\xc8\xeb\x82\x82\x04\xb7\x82\xe2\x25\xe7\xc8\xf3\x40\xa1\x4f\ -\x3b\xb7\xc1\xe3\xf9\x4e\x8e\x3f\xd8\x9d\xd6\x3e\x9e\xfb\x7c\xf4\ -\x37\xea\x2f\xb6\x97\x2e\xb5\x4f\xaf\x97\x27\x5d\x6a\xe7\xd6\x66\ -\x79\x37\x57\x7f\xff\x5d\xde\xfd\x07\x5c\xd5\x81\xeb\ -\x00\x00\x05\xfe\ -\x00\ -\x00\x1c\x9e\x78\x9c\xdd\x58\x49\x8f\xdb\x36\x14\xbe\xcf\xaf\x60\ -\x95\x4b\x8b\x9a\x5a\x28\x5b\xdb\xd8\xce\x21\x41\xd1\x00\xc9\xa5\ -\x4d\xdb\x63\x20\x4b\xb4\xcd\x8e\x24\x0a\x14\x35\xb6\xf3\xeb\xfb\ -\x28\x89\xb2\xe4\x05\x98\x20\x9e\x41\xa6\x02\x12\x4b\x6f\x21\xdf\ -\xfb\xde\x46\xce\xfc\xed\x3e\xcf\xd0\x23\x15\x15\xe3\xc5\xc2\x70\ -\x4c\xdb\x40\xb4\x48\x78\xca\x8a\xcd\xc2\xf8\xeb\xf3\x6f\x38\x30\ -\x50\x25\xe3\x22\x8d\x33\x5e\xd0\x85\x51\x70\xe3\xed\xf2\x6e\xfe\ -\x13\xc6\xe8\x9d\xa0\xb1\xa4\x29\xda\x31\xb9\x45\x1f\x8a\x87\x2a\ -\x89\x4b\x8a\x7e\xde\x4a\x59\x46\x96\xb5\xdb\xed\x4c\xd6\x11\x4d\ -\x2e\x36\xd6\x2f\x08\xe3\xe5\xdd\xdd\xbc\x7a\xdc\xdc\x21\x84\x60\ -\xdf\xa2\x8a\xd2\x64\x61\x74\x0a\x65\x2d\xb2\x46\x30\x4d\x2c\x9a\ -\xd1\x9c\x16\xb2\xb2\x1c\xd3\xb1\x8c\xa3\x78\x72\x14\x4f\xd4\xee\ -\xec\x91\x26\x3c\xcf\x79\x51\x35\x9a\x45\xf5\x66\x20\x2c\xd2\x75\ -\x2f\xad\xac\xd9\xb9\x8d\x90\x13\x86\xa1\x65\x13\x8b\x10\x0c\x12\ -\xb8\x3a\x14\x32\xde\xe3\xb1\x2a\xd8\x78\x49\x95\xd8\xb6\x6d\x01\ -\xef\x28\xf9\x34\xa9\xa8\x02\x40\x4b\xf8\xd7\x8b\x6b\x82\x59\xf1\ -\x5a\x24\x74\x0d\x7a\xd4\x2c\xa8\xb4\xde\x7f\x7e\xdf\x33\xb1\x6d\ -\xa6\x32\x1d\x2c\xa3\xf1\x1c\xed\x3a\x02\xb9\x88\x73\x5a\x95\x71\ -\x42\x2b\x4b\xd3\x1b\xfd\x1d\x4b\xe5\x76\x61\xb8\x53\xd3\x71\xe1\ -\x99\x35\xc4\x2d\x65\x9b\xad\x3c\xa5\xb2\x74\x61\x80\xf5\x24\x0c\ -\xda\xef\x41\x72\x38\xad\x40\xb7\x70\xd4\x73\x6c\x33\x24\xa6\x83\ -\x84\x33\x73\xfd\x56\x46\xbb\x10\xa5\x3c\x51\x36\xc1\x92\x34\x67\ -\x71\x2d\x79\x0e\x51\x4b\x92\x2c\xae\x2a\xb6\x66\x09\x7c\xf0\xa2\ -\xcc\xea\x0d\x2b\xbe\xc8\xad\xa0\xd5\x96\x67\xe9\x17\xc9\x79\x66\ -\x6a\x04\xfb\xed\xe8\xbe\xe4\x42\xe2\x7d\x5a\x02\x8e\x9e\x7f\x91\ -\x79\xd0\xcc\x25\x70\xe7\x29\x5d\x57\x4a\xaa\x75\x4a\x7d\x81\x57\ -\xbe\x81\xac\x86\xdb\xdb\xa8\x0c\x4c\x1f\x19\xdd\x1d\x65\x57\x71\ -\xd5\x02\x87\x50\x19\x6f\x20\xc9\x32\x2e\x16\xc6\x9b\x75\xf3\x74\ -\x8c\x15\x17\x29\x15\x9a\xe5\x35\xcf\x88\xc5\x21\x10\x4c\x1e\xda\ -\xb2\xea\xd6\xd6\xf6\xaa\x55\x7b\xbe\x7d\x99\x5f\x6d\xe3\x94\xef\ -\x16\x06\x39\x65\x7e\xe5\x3c\x87\x55\x67\x66\xe0\x7a\x76\xe0\x9e\ -\xb2\x93\xfd\xc2\xc0\x33\xd7\xf4\x66\xd3\x20\x38\x63\x36\xf6\x38\ -\x8e\xef\x10\x7f\x76\xc6\xac\x85\x80\xba\xc3\x59\x7c\xa0\xe0\x54\ -\xf3\xe3\x74\x42\x10\x9a\xdd\x46\x28\x70\xa4\xa8\xe9\xa9\xa6\xe2\ -\xe0\xd5\x8a\xef\x2f\xb3\x21\x0d\x6a\x55\xd1\xb8\x2e\x98\x84\xaa\ -\x29\xf7\xc3\x55\x6b\x96\xd2\xea\xb2\x62\x55\xc4\x25\xde\x64\x7c\ -\x15\x67\x97\x05\x76\xac\x00\x90\x70\x97\xe0\x8e\xdb\xc7\xe0\x54\ -\x42\x67\xbb\x6f\x9f\x61\xd2\x49\x80\xed\x67\x71\xe8\x58\x87\xeb\ -\xac\x3c\xde\xb3\x9c\x7d\xa5\x00\x8c\x73\x86\x8a\xf2\x6c\x08\xcb\ -\xb2\x11\x98\x8f\x60\x6b\x75\x10\x92\x07\x55\xd9\xfb\x83\xa2\x19\ -\x9a\xa8\xf0\x56\x04\x12\x86\x7e\x4f\xe4\x82\x41\xc1\x0c\xcc\xd5\ -\xa4\xc3\x90\xa4\xfa\x00\xb4\xf1\x7d\x93\x7f\x4d\x76\xfa\xa7\xbc\ -\xc3\x90\xd7\x95\x85\x75\x5e\x17\x0d\x3d\xa7\x32\x4e\x63\x19\x1f\ -\x8b\x44\x53\xc0\x36\x5b\x7b\x06\x2d\x35\xfa\xe3\xfd\x6f\xcb\x6e\ -\xa3\x79\x92\x44\xff\x70\xf1\xa0\xf7\x45\x48\x09\xc4\x2b\x5e\x43\ -\x24\x8c\x65\x4f\x9e\xa7\x49\x04\x4d\x10\x9a\xc3\x92\xe5\x90\xfa\ -\xaa\x7f\xfe\x0a\x4d\x6f\x6e\x1d\x19\x23\x61\x05\xd6\x71\xd1\x76\ -\x59\x68\x1f\x4d\x37\xbd\x38\x52\xd2\x24\x67\x4a\xc9\xfa\x53\xb2\ -\x2c\xfb\xa0\x36\xe9\x3c\x1e\x2c\xca\x64\x46\x8f\xc4\xb9\xd5\x59\ -\xdf\xf9\x66\x0d\x9c\x9b\x5b\xda\xfb\xe6\x6b\x73\x44\x65\x54\x34\ -\x7d\xa0\xb3\x78\x45\x21\x83\x3f\x2a\x26\x3a\xcf\x13\xc1\xeb\x32\ -\xe7\x29\xed\xd4\x35\x9a\x34\xcb\x58\x59\xf5\x8e\x56\xf2\x90\x81\ -\x48\xd3\x72\xa2\x37\x76\xf3\xdc\xa7\xac\x2a\x41\x09\x86\x43\xc6\ -\x0a\x7a\xcf\xa1\x2b\xaf\x33\xbe\x8b\x1e\x59\xc5\x56\x19\xbd\x6f\ -\x7e\x59\x06\xce\xf7\xa4\x35\x20\x10\x15\x30\xcf\xef\x2b\x29\xf8\ -\x03\x8d\xba\xc6\xd6\x7d\xb6\xc5\x14\x11\xe8\xe9\xbe\x4d\xa6\x61\ -\x38\xd5\x0c\xb5\x03\x18\x1c\xad\x6a\x29\x87\xb4\x7f\x39\x2b\x22\ -\xc0\x97\x0a\x4d\x6d\x3e\x32\x28\x0c\x19\xf5\xda\x69\x0c\x1d\x4d\ -\x08\xb0\x75\xb0\x77\x43\xe5\xeb\x75\x45\x65\x64\x6b\x5a\xd7\x19\ -\x23\xe7\x3e\x8f\xc5\x03\x15\xad\x02\x2d\x62\xb0\x1e\xaf\xe2\xe4\ -\x41\x01\x56\xa4\x51\x9c\x40\x5b\xa9\x33\x38\x86\x8c\x0a\xa6\x8c\ -\xe5\xd6\xb5\x9d\x00\x07\xf8\x98\xf2\xc9\xa8\x5e\x54\x1b\x74\x61\ -\x6e\xa9\xb9\x47\x7a\xaa\x00\x19\x12\x98\x7e\xa8\x9e\x23\x55\x95\ -\x89\xdf\xd6\x49\xd0\x27\xcd\x3c\x61\x22\xc9\x9e\x31\x36\xea\x6d\ -\x80\x44\xf3\x29\xea\x8c\x2a\xee\x57\x98\x2e\x7d\xf0\xba\xcd\x46\ -\xc1\x73\x4c\x37\x68\x47\xd2\x6b\x8d\x9d\x8f\xbd\x51\xec\x3c\xd3\ -\x0e\x3d\xd7\x0d\xc9\x38\x86\xa3\xb3\x4b\x13\x2d\x20\x92\x57\x13\ -\x25\xd2\xe6\x9a\xff\x5a\xa3\x14\x8c\x62\x34\x33\x5d\x77\x1c\x8d\ -\xab\x31\x72\x6c\x73\x34\x77\x20\x54\x6a\xd1\x93\x40\x9d\x77\xaa\ -\x4b\x30\x92\x76\x7d\x77\xfa\xac\x8d\xaa\x87\xac\x77\x03\x80\xf8\ -\x84\xb4\x77\xee\xc4\x75\xdb\x1e\xe1\xa3\xdf\x91\x7d\x06\x17\x4c\ -\xc9\x23\x58\xc7\x13\x17\x2f\xc0\x52\xc9\x05\x86\xb3\xd7\x63\x2c\ -\x6b\x41\x47\x33\xbc\x9f\xc5\x30\x1c\xd4\xf8\x82\x63\x52\x92\xdc\ -\x00\x32\xc7\x0c\x43\xcf\x26\xb3\xa0\xdc\x7f\x3b\x66\x17\x91\xc8\ -\x51\x7f\x94\x98\x10\xdf\xf4\x1b\x4c\x50\x82\x74\x70\xdc\x89\x7d\ -\xed\xfd\x3c\xb5\x7c\x9f\x60\xfb\xc9\x68\xdd\x24\x83\x1c\x7f\x36\ -\x75\x66\xb3\x1b\xe2\xa1\xab\x01\x32\x43\xe7\x08\xe0\x61\x4f\xf0\ -\xd4\x24\x0d\x50\xd7\xde\xcf\xf1\x08\xa6\xcf\x87\x46\x40\xcf\x93\ -\xa3\x0b\x24\xb9\x21\x1a\x78\x90\x1e\x76\xeb\xa8\x8f\x5c\x93\x4c\ -\x34\xc3\x47\x9e\x39\x9d\xe0\xc0\x9c\xb5\x50\x7d\x44\x8e\x6b\x06\ -\xad\x46\x68\x7a\xc8\x09\x41\x58\xfd\x87\xc8\xb4\x93\x99\x10\xa7\ -\xc3\x18\xb9\x64\x42\x66\x20\x95\x21\xbd\xc0\x04\x16\x3f\x43\x72\ -\x6a\xbb\xfe\x0b\x22\xa9\x53\x60\x1a\xbe\x44\x67\xb2\x75\xc2\xb9\ -\xd7\xa1\x3f\x02\x36\x80\xde\x1b\x41\x3f\xed\x33\xd7\x1f\x48\x68\ -\x5a\x13\x8b\x8f\xc3\x18\x10\x73\xda\xc0\xef\x75\x1d\xfd\x29\x31\ -\xc0\xee\x37\xf7\xc2\x5e\x4e\x8a\xb8\xa8\xd4\xa5\x00\x27\x70\xa5\ -\xa4\x02\x37\x57\x1c\xef\x09\x82\x30\x8c\xf0\xe9\x85\xe7\xc7\xea\ -\xa2\x9f\x86\x5d\x54\x01\xfb\xae\x09\x54\x8b\xf1\xe9\xcb\x95\xbe\ -\x89\xc9\x0b\x76\xce\xe7\x1d\x24\xfa\xd8\xed\x7f\xd7\x20\xc1\xce\ -\xff\x07\x10\xe7\x16\x93\xf5\x1b\xaa\xef\x47\x04\x64\x58\x24\x5e\ -\x5f\x23\x5e\x57\x19\x83\xdf\x6b\xee\x4f\x5f\xb5\xfb\xa3\x7c\xd0\ -\x6f\xdf\x97\x0f\xe1\x6b\x3f\x6b\x39\xc4\x0c\x6e\x72\xcc\xc2\x17\ -\xe6\xc8\xeb\x82\x82\x04\xb7\x82\xe2\x25\xe7\xc8\xf3\x40\xa1\x4f\ -\x3b\xb7\xc1\xe3\xf9\x4e\x8e\x3f\xd8\x9d\xd6\x3e\x9e\xfb\x7c\xf4\ -\x37\xea\x2f\xb6\x97\x2e\xb5\x4f\xaf\x97\x27\x5d\x6a\xe7\xd6\x66\ -\x79\x37\x57\x7f\xff\x5d\xde\xfd\x07\x5c\xd5\x81\xeb\ -\x00\x00\x09\x49\ -\x00\ -\x00\x1f\x4f\x78\x9c\xed\x59\x5b\x6f\xdb\xc8\x15\x7e\xf7\xaf\x98\ -\x2a\x2f\x09\x4a\x52\x73\xbf\xc8\x97\x45\x91\x60\x17\x0b\x6c\x5e\ -\xda\x6d\xfb\xb8\xa0\x48\xda\x66\x4d\x91\x02\x49\x59\x56\x7e\x7d\ -\xbf\xa1\xc4\x8b\x6c\xd9\x49\xba\xce\xa6\x40\x2b\x21\xb0\x38\xe7\ -\xcc\xf0\x5c\xbe\x73\x9b\x5c\xfc\xf0\xb0\x2a\xc8\x7d\x56\x37\x79\ -\x55\x5e\xce\x58\x44\x67\x24\x2b\x93\x2a\xcd\xcb\x9b\xcb\xd9\xdf\ -\x7f\xfd\x31\xb4\x33\xd2\xb4\x71\x99\xc6\x45\x55\x66\x97\xb3\xb2\ -\x9a\xfd\x70\x75\x76\xf1\xa7\x30\x24\xef\xeb\x2c\x6e\xb3\x94\x6c\ -\xf3\xf6\x96\xfc\x5c\xde\x35\x49\xbc\xce\xc8\xdb\xdb\xb6\x5d\x2f\ -\xe6\xf3\xed\x76\x1b\xe5\x87\xc5\xa8\xaa\x6f\xe6\xef\x48\x18\x5e\ -\x9d\x9d\x5d\x34\xf7\x37\x67\x84\x10\xbc\xb7\x6c\x16\x55\xb3\xbc\ -\x9c\x4d\x76\x54\xeb\xac\x6c\xb6\x71\x9b\xdc\x2e\xab\xea\xae\xdb\ -\xb7\xa9\xf3\x39\xa7\xd4\xcd\xc1\x3b\x1b\x77\xa6\xc9\xb0\x71\xbd\ -\xa9\x8b\x8e\x35\x4d\xe6\x59\x91\xad\xb2\xb2\x6d\xe6\x2c\x62\xf3\ -\x09\x7b\x32\xb2\x27\x5e\xee\xfc\x3e\x4b\xaa\xd5\xaa\x2a\x9b\x6e\ -\x67\xd9\xbc\x99\x30\xd7\xe9\xf5\x91\x54\x5b\xd1\x31\x31\xe7\xdc\ -\x9c\xf2\x39\xe7\x21\x38\xc2\x66\x57\xb6\xf1\x43\x78\xbc\x15\xda\ -\x9d\xda\x0a\x05\xe8\x1c\xb4\x91\xf3\xcb\xb8\x16\x0d\x5c\xb1\xc6\ -\xbf\x81\xbd\x5f\x88\x9a\x6a\x53\x27\xd9\x35\xf6\x65\x51\x99\xb5\ -\xf3\x0f\xbf\x7e\x18\x88\x21\x8d\xd2\x36\x9d\x1c\xd3\x7b\xe2\xe8\ -\xad\x47\xee\x29\xe3\x55\xd6\xac\xe3\x24\x6b\xe6\xfd\x7a\xb7\x7f\ -\x9b\xa7\xed\xed\xe5\x4c\xc8\x88\x09\x7c\x54\xb7\x78\x9b\xe5\x37\ -\xb7\xed\xe3\xd5\x3c\xbd\x9c\x41\x7a\xee\x9c\xe9\x9e\x27\xb0\x62\ -\x7b\x86\xc3\xc1\x8b\x81\x42\x23\xc7\x23\x46\x6a\xa6\x84\xd9\xf3\ -\xf4\x2a\x2c\xd2\x2a\xf1\x32\xe1\xc8\x6c\x95\xc7\x9b\xb6\x5a\xc1\ -\x6b\x49\x52\xc4\x4d\x93\x5f\xe7\x09\x1e\xaa\x72\x5d\x6c\x6e\xf2\ -\xf2\xb7\x26\x6b\x5b\x00\xb6\xf9\xad\xad\xaa\x22\xea\x0d\x38\xbc\ -\x2d\x7b\x58\x57\x75\x1b\x3e\xa4\x6b\x98\x51\x9b\x93\xc4\x5d\x4f\ -\xbc\x02\xf5\x62\x10\xc2\x4b\x90\xde\xe7\xd9\xd6\xef\xd9\x6b\xb8\ -\x8c\x9b\xbd\x65\x08\x59\xc7\x37\x40\x51\x51\xd5\x97\xb3\x37\xd7\ -\xdd\xe7\x40\x58\x56\x75\x9a\xd5\x3d\x49\x77\x9f\x23\x52\x05\x4b\ -\xe7\xed\x6e\x1f\x71\x87\xb3\x7b\x89\xfc\xa9\x03\x9d\x9e\xa6\x37\ -\xb7\x71\x5a\x6d\x2f\x67\xfc\x31\xf1\x53\x55\xad\x2e\x67\x26\x72\ -\xcc\x52\xc9\xec\x63\x72\xf2\x70\x39\x0b\x99\x8c\x28\xb7\xe2\x04\ -\xd5\x0b\x24\x22\x29\x94\x79\x4a\xdb\xd4\x35\x02\x2b\x2c\xe2\x5d\ -\x06\xa5\xba\x3f\xec\xc0\xd4\xdc\x56\xdb\x9b\xda\x1b\xa7\xad\x37\ -\xd9\xe3\x9d\x9e\x12\x2e\x97\xd5\xc3\x69\x32\xfc\xbc\xf1\x21\x1b\ -\x6e\xca\xbc\x45\x58\xac\x1f\xa6\xa7\x6e\xf2\x34\x6b\x4e\x6f\x6c\ -\xca\x78\x1d\xde\x14\xd5\x32\x2e\x4e\x33\x6c\xf3\x12\x46\x0a\x0f\ -\x08\x66\x62\xf0\xc1\x63\x8e\x1e\xce\x86\x3e\x51\xfb\xc0\x01\xd9\ -\x9f\xf8\xe1\x40\xda\x3d\x4f\x5a\xc5\x0f\xf9\x2a\xff\x94\xc1\x30\ -\xac\x03\x16\xa0\x75\x64\x96\xfd\xb6\x3d\xae\xfc\xb3\xa0\x54\xcd\ -\xfa\xc5\x76\xe7\xe3\xf5\x61\xe7\x09\xc3\x62\x55\xe7\x40\xfc\x44\ -\x9c\x7e\x69\x37\x5d\xf2\x81\x8c\x80\x78\xe8\xf0\xd5\xa1\xcf\x3c\ -\xa6\xed\xa6\x34\x32\xef\x60\x3f\x7f\x8a\xfb\x6e\x3d\xcd\xae\x9b\ -\x31\x00\xfc\x13\x62\xdc\xf5\x1a\x15\x79\x99\xc5\xf5\x4f\x75\x9c\ -\xe6\x70\xe3\x54\xa5\x63\x8a\xb2\x9c\x8d\x42\x37\x4b\x00\x39\x2f\ -\x61\xf5\xa6\x2a\xa0\xe0\xd5\x81\x72\xd1\xb4\xd5\xba\xe7\x82\xb4\ -\xed\xae\xf0\x39\x00\x8b\x61\x17\x4f\x8b\x37\xd7\x1a\x69\x92\x9e\ -\x77\x4b\x87\x38\x59\xd0\xc8\x58\xcb\x85\x12\xec\x7c\x36\x6e\xae\ -\xae\xaf\x91\x1a\xa6\x86\x39\x24\x29\x6c\x85\x34\xe2\xa0\xb7\xd7\ -\xfc\x58\xd4\xaf\xd6\x8c\xa9\x57\xd1\xec\x7a\x69\x96\xe6\x58\xb3\ -\xaf\x50\x88\x99\x17\x15\xba\x98\x7b\xcf\x75\xbf\x56\x59\x1b\xa7\ -\x71\x1b\x8f\x4e\xed\x57\x80\x40\xde\x3b\x16\x45\x6e\xf1\xd7\x0f\ -\x3f\x0e\xf2\x27\xc9\xe2\x9f\x55\x7d\x37\xbe\xda\x33\xc4\xcb\x6a\ -\x03\x89\x06\x2d\x3d\x5c\x92\x05\xca\x12\xd2\xf5\x55\xbe\x42\xae\ -\xf2\x15\xed\xcf\x28\x43\x78\xff\x40\x38\x62\xf6\x40\x1f\x0f\xdd\ -\x1f\x5b\x67\xfb\xfa\x76\xb2\xc8\xa7\xc9\x2a\xf7\x9b\xe6\x7f\x6b\ -\xf3\xa2\xf8\xd9\xbf\x64\xd0\x7c\x38\x34\x6f\x8b\x6c\x5c\xbc\x98\ -\x1f\xa4\xef\xed\x33\x51\xee\x62\xde\x6b\xdf\x3d\xdd\x3c\xc9\x5f\ -\xd5\x66\xbd\xaa\xd2\xec\x90\xf5\x1e\x07\x7b\x11\x2f\x33\x64\xa0\ -\x5f\x3c\x8d\xf4\x08\xef\x40\xb2\xcf\x91\x87\x37\xae\xe3\xf6\x76\ -\x88\xc1\xbd\xef\xaf\x21\xfd\xe2\x8d\xb4\xc2\x08\xef\xf5\xba\xba\ -\xcb\x16\x6f\xb8\xf4\xdf\xc3\xe3\x3e\x79\x2d\x64\x24\xad\x07\x3d\ -\xe5\xfd\xba\x77\x2f\xde\xbe\x58\x6e\xda\x76\xba\xf6\xaf\x2a\x2f\ -\x17\xb0\x4e\x56\xf7\xab\xdd\x43\x81\x3c\xd4\x2e\x86\x53\xd3\x18\ -\x05\xa4\xae\xe3\xdd\xa2\x44\x57\xd7\xaf\x0e\x90\x1b\xd0\xe5\x81\ -\x41\x50\x2e\x1c\x75\xd4\xba\x80\xd9\x48\x52\x67\x9c\x24\x4c\x07\ -\x21\x53\x91\xdb\x7f\x66\xd3\xd0\xf0\x7a\x0a\x6a\x47\x88\x8e\x25\ -\xa4\x2a\x21\x74\x5b\xd5\x21\x8a\xc9\x7d\xdc\x6e\xea\xcc\x43\x79\ -\xc0\xec\xb3\x16\x82\xe2\xd7\x9c\x9f\xfb\x87\x49\x5c\x74\x8f\xf5\ -\xa6\x40\x0d\xbf\xcf\xca\x2a\x4d\x5f\x34\x21\x0a\xa9\x51\x5c\x4a\ -\xae\x5f\x32\xcc\x49\x13\x7c\x24\x50\x55\xa2\x7e\xf0\x80\xab\x48\ -\x73\x41\x9d\x25\x3a\x62\x4a\x5a\x4b\x55\x20\x44\xe4\x10\x7c\x82\ -\x91\xf7\x44\x45\x42\x1a\x29\x8d\x08\xd0\x1a\x69\xab\x90\xcf\x09\ -\x0a\x2a\xe3\xdc\x1a\x16\x08\x16\x29\x2d\x94\x96\x84\x47\xda\x29\ -\xca\x1c\x76\x23\x75\x69\xae\x95\x26\x05\x09\x59\x84\x74\xcc\xb5\ -\x80\x71\x23\xab\xa9\x32\x38\x92\x46\x82\x31\x89\x7a\xae\x02\x6e\ -\x23\x46\x19\x33\x06\x8b\x54\x70\x6a\xa5\x36\x01\x87\x24\x4c\xe1\ -\x05\x58\xb4\xc2\x29\xa6\xe1\x29\xc8\x29\xac\x15\x8a\xfc\x42\x18\ -\x78\x9d\xe5\x4a\x07\xcc\x44\x54\x09\xc1\x0c\x49\x08\xf3\x2d\x80\ -\x51\x2c\x08\x7d\x0b\xa6\x19\xd3\x90\xc9\x2a\x34\x0d\xce\xbf\x9c\ -\x52\xc3\x0c\x87\xe8\xd6\x08\xcb\xb8\xe7\x62\x86\x69\x45\x68\x40\ -\xb1\xd7\x09\xed\xa8\xf6\xab\x14\x7b\x3c\x1f\x75\x52\x39\x17\x08\ -\xbc\x56\x81\x81\x29\xa3\x9d\xc4\xa3\x44\x4d\xe5\x92\x80\xd3\x70\ -\x7f\x64\x20\x23\xc8\xea\x20\xad\x57\x56\x09\x2a\x4d\x00\x59\x61\ -\x13\xd8\xef\xd3\x11\x90\x6a\x60\x05\x6e\x54\x5f\x0c\xa4\x01\x3b\ -\x43\x15\x43\xd0\xfa\x3c\x81\x06\xa2\xe9\x3e\xc9\xa7\x66\x84\x5b\ -\x56\x14\xf9\xba\xc9\x4e\x22\xee\x80\xa0\x2f\x46\xdc\xbe\xfb\x7b\ -\x8c\x38\xed\x1c\xe2\x56\xab\xd7\x08\xc5\x21\xb4\x1c\x17\xa1\x18\ -\x9b\x84\x3a\x2e\x1b\x9f\x54\x11\xa9\x71\x5b\xe7\x0f\x6f\xbd\x53\ -\xd0\x4d\x1b\xc7\x4c\xe7\x5c\x67\x95\xe2\x00\x8f\xff\x6d\xa4\x95\ -\x07\xc7\x71\x20\x46\x6b\x26\x02\x78\xf4\xdd\x70\x5c\xd7\x1f\x02\ -\x66\x96\x31\xc4\xf9\xb8\xbc\xf3\xcb\x70\xa6\x96\x46\x8d\xad\x44\ -\x0d\x6e\x09\xc7\x5a\xe5\x98\x1c\x57\x77\x7e\x15\xf8\xb4\x4e\xb2\ -\xcf\x47\xf7\x44\xed\x2e\xd2\xf7\xb5\xfd\xc8\x8e\xdc\x18\x2a\x80\ -\xc3\x3f\x3c\xf9\x7d\xf4\xd1\x03\x28\x73\x89\xe8\xd1\x91\xb5\x0c\ -\xdd\x12\xe0\x8d\x18\x52\x14\x61\x8a\x30\xe3\x4c\x1b\xfa\xd4\x4d\ -\xca\x3a\x1d\x4e\x1d\xf5\x7b\xb2\xe0\xa1\x3d\x38\x18\x27\xcd\x9b\ -\x35\x4a\x0b\x66\x3a\xaf\xf3\x79\x85\x61\xea\xba\xa8\xb6\x8b\xfb\ -\xbc\xc9\x97\x45\x76\xde\xfd\xcd\x0b\xaf\x4c\xbf\xf4\xd4\xd0\xcb\ -\xcc\x7f\x8f\x0d\x8d\xb0\x47\xfa\x60\x86\xba\x6f\x69\x68\xbf\xba\ -\xef\x63\x16\xf4\x89\xf1\xcf\x57\x71\x7d\x97\xd5\xfb\x0d\x59\x19\ -\x43\xf8\x70\x19\x27\x77\xbe\x06\x97\xe9\x22\x4e\x30\x2b\x6c\x8a\ -\xb8\xcd\x1e\x95\x28\xa4\x65\x04\x9b\x41\xe2\xe3\x91\x07\xa3\x45\ -\x7e\xd1\x11\x62\x00\x79\x45\x23\xc1\x18\x9f\x02\x9f\x73\x12\x7b\ -\xc5\x52\x85\x54\x6a\x95\x7e\x9c\x38\x7a\xab\x27\xc6\x7f\xbf\x87\ -\xd5\x9f\x83\xb7\x88\x18\x47\x7d\x11\xbe\xb6\x2b\x86\x74\x2c\x51\ -\xd9\x50\x23\xa4\x76\x2c\xe0\x72\x9f\x26\xd4\xb3\x96\x0b\xdd\xeb\ -\xd9\xee\xb3\x89\x00\x96\xb2\xdc\x0f\x2c\xf2\x3b\x58\x0a\x75\xfa\ -\xd0\x05\x01\x6b\x5d\x13\xc4\x08\x47\x6a\xf2\x85\x82\xfb\xe4\xc0\ -\x91\x1c\xf5\xb3\x89\xe0\x15\xed\xf4\x4c\x3b\x34\xb1\x9c\xa7\xfe\ -\xb7\xf4\x8f\x1f\x09\x1a\x14\xc3\x95\x13\xc2\xe3\x09\x89\x13\xbf\ -\x89\x43\x6d\x94\x52\x19\x19\x38\x9f\xdd\xdd\x74\x80\x9a\x36\x91\ -\xa1\xf9\x5f\xc1\x17\x43\xfb\x85\x66\x4b\x70\x58\x84\x6a\xa9\x34\ -\x73\xc4\xc7\x9f\x44\x0a\xeb\x3a\x6f\xe7\xf4\x70\x3d\xf1\x14\x5e\ -\xa1\xfe\x46\x86\x3a\xd5\xd9\x30\x8c\x01\x9d\xa1\xfe\xf8\x94\xb5\ -\x02\x74\x10\x7c\x14\xcd\x0d\x72\x97\x12\x0a\xad\x31\x61\xa8\xc8\ -\x0a\x0d\xa4\x86\xed\x9c\x60\x8a\xbd\x60\x27\x17\xf2\xdf\x69\xa9\ -\xbe\xbb\xdc\xdf\xcf\xc4\x75\x32\xfb\x26\xe5\xfa\xb3\x53\x0f\x6c\ -\xf5\x29\xab\xab\x71\xea\x41\xeb\x6d\xf5\xb1\xa7\xe8\xb7\x74\xd0\ -\x2b\x57\xf2\xb1\xc3\x9d\x4c\x94\x83\xb5\xbb\xce\xd4\x37\xa6\xdc\ -\x99\xc9\x3d\xd2\x48\x47\xd7\x69\x23\x63\x8c\x16\x93\x30\x19\xc8\ -\xbe\x55\xc5\x9c\x21\xc6\xdb\xea\x63\xf2\xee\x14\xb9\x0b\xcc\xd0\ -\x0f\x31\x4e\x0b\xab\x83\xe1\x7c\xf2\x17\x32\x70\x07\xc3\x2f\x42\ -\xf1\x65\x04\x52\x1a\xe0\x52\x70\x19\x60\x74\x66\x8c\x0a\xa7\x5f\ -\x62\xf7\x4c\x52\xa2\xc1\xc5\xf9\xc8\x92\x1c\xc3\xd5\x4b\xec\x48\ -\x0f\x52\xa3\xea\x58\x3f\x5d\x49\x87\x81\x9c\x63\x74\x44\x25\x12\ -\x42\x2a\xde\x4d\x53\xdc\x72\xb4\xa5\x93\x71\x6a\xd0\xb3\x69\xe3\ -\xba\x3d\x39\x2b\x65\x65\xea\xdb\x76\xad\x31\x77\xf2\x31\x99\x4c\ -\xe6\x8b\xba\x6a\xe1\xae\xb7\xa1\xc3\x54\x88\xb4\x44\xc5\xbb\xff\ -\x07\xc8\x77\x0b\x90\xf0\x99\x10\xe1\xfe\x52\xc6\x50\x2a\x4f\x47\ -\x48\x37\xdb\x19\x0c\x77\x27\x22\xe8\x3f\x0d\x91\x15\x11\xc8\xbf\ -\x02\x00\xc6\xc0\x39\x9c\x4f\xe2\x97\x40\x8c\xb9\x49\x29\x80\xb7\ -\xa3\xa0\x73\x52\x2f\x33\x4b\xf4\x5d\x94\x05\xf8\xc5\x8c\x61\x94\ -\xbf\xc0\xad\xd0\x4e\x1b\x34\x68\x9e\x59\x5a\x61\xad\x1a\xa3\x43\ -\xf4\xc1\xc1\xbf\x51\x6c\x38\x8a\xf3\xfd\x6d\xca\x73\xa1\xf1\xa5\ -\x6d\xdc\xd8\x91\xec\x6f\xe8\xf9\xb1\xc1\x15\x8f\x44\xb7\x1e\x84\ -\xe8\x0c\xba\xff\x82\x13\x24\xf1\xb7\x2c\x4e\x51\x63\x31\xd4\xfb\ -\xeb\x15\x13\x60\x78\x55\x52\x2b\xb9\x7f\x62\xde\x0a\x9e\xf3\x9e\ -\x28\x1a\xd9\xee\x00\xec\xa2\x60\xd3\xc6\x6a\xe3\x60\x27\x23\x1d\ -\x67\x13\xd6\xa3\x7d\xb7\x44\xa0\x5d\xeb\x24\xf2\xfb\xc6\x97\x79\ -\xae\x70\x78\x59\xf7\x34\x6c\xfa\x87\x87\x87\x23\xef\x89\x85\x43\ -\xfc\xf5\x21\xf3\xf7\x58\x92\x2a\x67\x89\xa5\x01\x67\x11\xd3\x0e\ -\x53\x93\x7f\xf0\x4d\x90\xff\x8b\x7e\x15\x78\xb2\x68\x81\xc6\x4d\ -\x21\x68\xd8\x64\xac\x21\xc8\x40\x7b\xa7\x07\x18\xf2\xbc\x3a\x21\ -\xc6\xf4\x4e\x24\x2f\xc5\x41\x97\x70\x50\x66\x94\x25\x3c\x16\xed\ -\xe9\x7d\x93\x30\xee\x6b\xdb\x83\x8b\xf9\xcd\xd5\xd9\x85\xbf\xe4\ -\xbe\x3a\xfb\x37\x6c\xd0\x04\x1c\ -\x00\x00\x0a\x5a\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6e\x65\x77\x5f\x66\ -\x69\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x2d\x34\x36\x2e\x36\x38\x35\x31\x38\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x36\x2e\x31\x38\x33\x33\x38\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ -\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ -\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x66\x32\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x33\x30\x36\x33\x39\x34\x35\x38\x70\ -\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ -\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x33\x33\x33\x33\ -\x33\x33\x33\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\x48\x20\ -\x33\x32\x20\x56\x20\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x48\ -\x20\x35\x2e\x33\x33\x33\x33\x33\x33\x33\x20\x5a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\ -\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\ -\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ -\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ -\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\ -\x3a\x23\x66\x66\x66\x66\x31\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x63\x36\x62\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x30\x39\x30\x39\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ -\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\ -\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ -\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x36\x2e\x36\x36\ -\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x31\x31\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x39\x38\x31\x38\x31\x38\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x34\ -\x30\x30\x30\x30\x30\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ -\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x11\x80\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6f\x6d\x5f\x74\x6f\ -\x5f\x52\x4f\x49\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\ -\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\ -\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\ -\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\ -\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\ -\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\x2e\x36\ -\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\ -\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\ -\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x34\ -\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\x32\x34\ -\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\x38\x2c\ -\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\x35\x38\ -\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\ -\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\ -\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ -\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ -\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\ -\x39\x30\x32\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x38\x2e\x33\x32\x38\ -\x32\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x79\x3d\x22\x31\x39\x2e\x31\x31\x38\x33\x31\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ -\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ -\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ -\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\ -\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\ -\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ -\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ -\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ -\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ -\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ -\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ -\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ -\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ -\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ -\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ -\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x30\x2e\x35\x37\x30\x37\x35\x32\x33\x2c\x30\x2c\x30\x2c\ -\x30\x2e\x35\x37\x30\x37\x35\x32\x33\x2c\x39\x2e\x36\x38\x35\x37\ -\x32\x32\x36\x2c\x34\x2e\x37\x33\x30\x33\x34\x31\x35\x29\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\ -\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\ -\x3d\x22\x35\x2e\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\x38\x33\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x37\x2e\x30\x36\ -\x36\x36\x36\x37\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x63\ -\x20\x30\x2c\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\ -\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\ -\x32\x30\x30\x30\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\ -\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ -\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x33\x2e\x32\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\x36\x36\x36\x36\ -\x36\x37\x2c\x31\x36\x2e\x36\x30\x32\x32\x38\x39\x20\x63\x20\x31\ -\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\ -\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\x30\x30\ -\x30\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\x30\x38\ -\x30\x38\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x33\x2e\x35\x38\x39\x30\x39\x35\x31\x32\x70\x78\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\ -\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\ -\x38\x34\x30\x39\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x31\x39\x2e\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\ -\x2e\x34\x38\x34\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x31\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x35\x35\x32\x32\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\ -\x2e\x30\x35\x31\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\ -\x2e\x32\x35\x37\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x32\x31\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\ -\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ -\x2e\x37\x32\x30\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\ -\x28\x2d\x33\x39\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0d\x25\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x6f\x69\x5f\x72\ -\x65\x64\x6f\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ -\x3d\x22\x33\x2e\x36\x33\x30\x32\x37\x32\x34\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\ -\x38\x2e\x39\x37\x31\x31\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ -\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ -\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ -\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ -\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ -\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ -\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ -\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ -\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\x38\x33\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x33\x33\x30\ -\x33\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x33\x2e\x38\x30\x34\x38\x37\x38\x35\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\ -\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\ -\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ -\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\ -\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\ -\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ -\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\ -\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\ -\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\ -\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ -\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\ -\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\ -\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ -\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\ -\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\ -\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\ -\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\ -\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\ -\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\ -\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\ -\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\ -\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ -\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2c\x39\x2e\x36\x36\x36\x36\ -\x36\x36\x37\x20\x43\x20\x33\x2e\x38\x31\x34\x30\x31\x30\x37\x2c\ -\x31\x34\x2e\x38\x37\x36\x37\x39\x35\x20\x34\x2e\x34\x33\x32\x38\ -\x39\x30\x37\x2c\x32\x32\x2e\x36\x34\x34\x37\x39\x34\x20\x39\x2e\ -\x34\x2c\x32\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x31\x34\x2e\x33\ -\x36\x37\x31\x30\x39\x2c\x33\x31\x2e\x34\x38\x38\x35\x34\x20\x32\ -\x31\x2e\x39\x34\x37\x33\x34\x34\x2c\x33\x30\x2e\x38\x31\x30\x31\ -\x32\x38\x20\x32\x36\x2e\x31\x33\x33\x33\x33\x33\x2c\x32\x35\x2e\ -\x36\x20\x63\x20\x34\x2e\x31\x38\x35\x39\x39\x2c\x2d\x35\x2e\x32\ -\x31\x30\x31\x32\x38\x20\x33\x2e\x35\x36\x37\x31\x31\x2c\x2d\x31\ -\x32\x2e\x39\x37\x38\x31\x32\x37\x20\x2d\x31\x2e\x34\x2c\x2d\x31\ -\x37\x2e\x34\x20\x6c\x20\x33\x2c\x2d\x32\x2e\x38\x36\x36\x36\x36\ -\x36\x37\x20\x48\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x56\ -\x20\x36\x2e\x34\x20\x6c\x20\x33\x2e\x32\x2c\x38\x2e\x35\x33\x33\ -\x33\x33\x33\x20\x32\x2e\x36\x36\x36\x36\x36\x36\x2c\x2d\x33\x2e\ -\x37\x20\x63\x20\x32\x2e\x33\x37\x39\x33\x30\x32\x2c\x33\x2e\x32\ -\x37\x37\x37\x32\x39\x20\x33\x2e\x31\x37\x31\x30\x35\x38\x2c\x38\ -\x2e\x39\x35\x30\x32\x36\x36\x20\x30\x2e\x35\x33\x33\x33\x33\x34\ -\x2c\x31\x32\x2e\x32\x33\x33\x33\x33\x34\x20\x2d\x33\x2e\x30\x34\ -\x31\x38\x35\x38\x2c\x33\x2e\x37\x38\x36\x30\x37\x34\x20\x2d\x38\ -\x2e\x32\x32\x30\x37\x31\x37\x2c\x34\x2e\x32\x31\x39\x37\x32\x20\ -\x2d\x31\x31\x2e\x38\x2c\x31\x2e\x30\x33\x33\x33\x33\x33\x20\x2d\ -\x33\x2e\x35\x37\x39\x32\x38\x33\x35\x2c\x2d\x33\x2e\x31\x38\x36\ -\x33\x38\x37\x20\x2d\x34\x2e\x30\x34\x31\x38\x35\x38\x35\x2c\x2d\ -\x38\x2e\x39\x31\x33\x39\x32\x35\x20\x2d\x31\x2c\x2d\x31\x32\x2e\ -\x37\x20\x43\x20\x31\x31\x2e\x32\x2c\x31\x32\x2e\x33\x20\x31\x31\ -\x2e\x32\x2c\x36\x2e\x39\x36\x36\x36\x36\x36\x37\x20\x38\x2c\x39\ -\x2e\x36\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ -\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ -\x65\x73\x3d\x22\x63\x73\x73\x63\x63\x63\x63\x63\x63\x73\x73\x63\ -\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x0a\x36\ -\x00\ -\x00\x25\xab\x78\x9c\xd5\x59\x5b\x6f\xdb\x46\x16\x7e\xf7\xaf\xe0\ -\x2a\x2f\x0d\x56\xa4\xe6\x7e\x51\xec\x14\x68\x83\x16\x05\xba\x58\ -\xa0\x6d\xb0\x8f\x05\x45\x8e\x64\x6e\x28\x52\x20\x29\x5b\xca\xaf\ -\xdf\x6f\xa8\x0b\x49\x59\x4a\xec\x44\xdb\xec\x52\x30\x2c\xce\x39\ -\x73\x39\xf7\xef\x8c\x6e\xbf\xdf\x2c\xf3\xe0\xc1\x55\x75\x56\x16\ -\x77\x23\x1a\x91\x51\xe0\x8a\xa4\x4c\xb3\x62\x71\x37\x7a\xff\xc7\ -\x4f\xa1\x19\x05\x75\x13\x17\x69\x9c\x97\x85\xbb\x1b\x15\xe5\xe8\ -\xfb\xb7\x37\xb7\x7f\x0b\xc3\xe0\xc7\xca\xc5\x8d\x4b\x83\xc7\xac\ -\xb9\x0f\x7e\x29\x3e\xd4\x49\xbc\x72\xc1\x77\xf7\x4d\xb3\x9a\x4e\ -\x26\x8f\x8f\x8f\x51\xb6\x1f\x8c\xca\x6a\x31\x79\x1d\x84\xe1\xdb\ -\x9b\x9b\xdb\xfa\x61\x71\x13\x04\x01\xf6\x2d\xea\x69\x59\xcf\xee\ -\x46\xbd\x19\xe5\xca\x15\xf5\x63\xdc\x24\xf7\xb3\xb2\xfc\xd0\xce\ -\x5b\x57\xd9\x84\x11\x62\x27\xe0\x1d\x75\x33\xd3\xe4\x38\x71\xb5\ -\xae\xf2\x96\x35\x4d\x26\x2e\x77\x4b\x57\x34\xf5\x84\x46\x74\xd2\ -\x63\x4f\x3a\xf6\xc4\x9f\x3b\x7b\x70\x49\xb9\x5c\x96\x45\xdd\xce\ -\x2c\xea\x57\x3d\xe6\x2a\x9d\x0f\x4e\xf5\xc8\x5b\x26\x6a\xad\x9d\ -\x10\x36\x61\x2c\x04\x47\x58\x6f\x8b\x26\xde\x84\xc3\xa9\x90\xee\ -\xdc\x54\x08\x40\x26\xa0\x75\x9c\xcf\xe3\x9a\x6e\x72\x28\xf1\xe2\ -\x61\x5a\x6a\x7f\x77\x18\x6e\x85\xbf\xe3\x84\xc3\x40\x54\x97\xeb\ -\x2a\x71\x73\xcc\x74\x51\xe1\x9a\xc9\xbb\x3f\xde\x1d\x89\x21\x89\ -\xd2\x26\xed\x2d\x73\xb0\xdb\x60\xdf\x81\x31\x8b\x78\xe9\xea\x55\ -\x9c\xb8\x7a\x72\x18\x6f\xe7\x3f\x66\x69\x73\x7f\x37\xe2\x22\xa2\ -\x1c\x8f\x6c\x07\xef\x5d\xb6\xb8\x6f\x4e\x47\xb3\xf4\x6e\x04\x59\ -\x99\xb5\xba\x7d\xef\x39\x21\xdd\x31\xec\x17\x9e\x1e\x29\x24\xb2\ -\x2c\xa2\x41\x45\x25\xd7\x3b\x9e\x83\x08\xd3\xb4\x4c\xfc\x99\xb0\ -\xa4\x5b\x66\xf1\xba\x29\x97\xb0\x71\x92\xe4\x71\x5d\x67\xf3\x2c\ -\xc1\x4b\x59\xac\xf2\xf5\x22\x2b\xfe\xac\xe1\x1f\x59\xe1\x72\xfa\ -\x67\x53\x96\x79\x74\xd0\xf7\x71\x3b\xb7\x59\x95\x55\x13\x6e\xd2\ -\x15\xf4\xa8\xf4\x59\xe2\xf6\x40\x7c\x0b\xea\xed\xf1\x14\xfe\x08\ -\xe9\x43\xe6\x1e\xfd\x9c\x9d\x88\xb3\xb8\xde\xa9\x26\x08\x56\xf1\ -\x02\x4e\x97\x97\xd5\xdd\xe8\xd5\xbc\x7d\xf6\x84\x59\x59\xa5\xae\ -\x3a\x90\x54\xfb\x0c\x48\x25\x54\x9d\x35\xdb\x5d\x80\xee\xd7\x3e\ -\x9c\xc8\xaf\x7a\xa4\x93\xf3\xf4\xfa\x3e\x4e\xcb\xc7\xbb\x11\x3b\ -\x25\x7e\x2c\xcb\xe5\xdd\x48\x47\x96\x1a\x22\xa8\x3e\x25\x27\x9b\ -\xbb\x51\x68\x22\xc5\x89\x36\xc2\x3e\xa1\x62\x43\xa6\x23\x4e\x08\ -\xd3\xfc\x09\x71\x5d\x55\x50\x74\x98\xc7\x5b\x07\xa9\xda\x7f\x74\ -\xcf\x54\xdf\x97\x8f\x8b\xca\x6b\xa7\xa9\xd6\xee\x74\xa6\xa7\x84\ -\xb3\x59\xb9\x39\x4f\x86\xa5\xd7\x3e\xc4\xc3\x75\x91\x35\x08\xa3\ -\xd5\xa6\xbf\xea\x3a\x4b\x5d\x7d\x7e\x62\x5d\xc4\xab\x70\x91\x97\ -\xb3\x38\x3f\xcf\xf0\x98\x15\xd0\x52\xb8\xf7\x61\xca\x8f\x46\x38\ -\xe5\x38\x38\xb4\x26\xe6\x02\x07\xce\xfe\xc4\x10\x7b\xd2\xf6\x32\ -\x69\x19\x6f\xb2\x65\xf6\xd1\x41\x31\xb4\xf5\x2c\xf8\xd6\x40\x2d\ -\xbb\x69\x3b\xc7\xf2\xef\x50\xbd\x1c\x1d\x06\x9b\xad\x8f\xd8\xcd\ -\xd6\x13\x8e\x83\x65\x95\xc1\xe7\x7b\xc7\x39\x0c\x6d\xfb\x43\x3e\ -\x94\x91\xf1\x37\xad\x83\xb5\xee\xa7\x4f\x69\xdb\x3e\x2d\x98\xb4\ -\x7e\x3f\x79\xea\xf8\xed\x78\xea\xe6\x75\x17\x01\xfe\x0d\x51\x6e\ -\x0f\x12\x21\x67\xb9\xb8\xfa\xb9\x8a\xd3\x0c\x66\xec\x8b\x34\xa4\ -\x48\x23\x0f\x73\x7c\x8c\x35\xe5\xea\xc0\x8b\x43\x35\xdb\xdc\x07\ -\x3b\x06\xc3\x36\x6e\xa6\xaf\x6c\x12\xc7\x84\xbc\x69\x87\xf6\xf1\ -\x30\xa5\x6f\x46\xdd\x9c\x72\x3e\xaf\x5d\xd3\x17\x7b\x9f\x84\x30\ -\x43\x1a\x45\xf7\x52\x3d\x73\x37\xca\x53\x3a\x7b\xc6\x6e\xf4\xfc\ -\x6e\xfc\xb8\xdb\xed\x64\x28\xf6\x8b\xb5\xc4\xba\x2d\x50\x22\x11\ -\xef\x59\x81\x7d\xeb\x32\x87\x1b\x3c\x5f\xa0\xb9\x42\xf1\x39\x51\ -\x1f\x89\xb4\x31\x8c\x4b\xfe\x02\x3d\xb2\x2b\x4a\x46\xe5\x55\x24\ -\x9b\xcf\xf4\x4c\x7f\xb1\x63\x50\x7d\x35\x81\x34\x55\x2f\x38\x37\ -\xa1\x94\x09\xfa\xa5\xe7\xd6\xd4\x5c\x76\xe8\x8e\x8b\x99\x73\x0b\ -\x46\xca\xc2\x45\x49\x4f\xff\x67\x4f\x48\x67\x89\x4a\xd4\x93\x13\ -\xbe\x24\x8e\xa4\x12\x26\x36\x5f\x1a\x47\x9a\x91\x2b\xc6\x91\x0e\ -\x49\x78\x31\xe3\xf4\x3c\xdc\x86\x3a\xa4\x9f\xb1\xc3\x39\x7b\x92\ -\x44\xdb\xf9\xf3\xb5\xd5\xed\xc8\x29\x4e\x76\xce\x50\xf4\xd3\x3b\ -\xce\xd5\x7c\xfe\x24\xa6\xdf\x7c\x4e\x63\xfe\x2d\xce\x9f\x68\xec\ -\x58\xd8\xcb\x3c\x77\x09\x36\x8f\xf3\xc7\x78\x5b\x1f\x4f\xd0\x62\ -\xd1\xe9\x7d\xe5\x80\x9d\x5f\x5d\xd0\x6d\x5f\xfd\xc3\x6d\xb8\x91\ -\x5d\xc9\x59\xec\x07\xdf\xef\x2a\xfc\xba\x76\xd5\xef\x1e\x6c\xfe\ -\xb3\x78\x7f\x04\x53\x1d\xd7\x1f\x55\x5c\xd4\x40\xb6\x00\x32\x00\ -\x7d\x55\xb6\xf9\x2e\xe4\x11\xe3\xed\x67\xcc\x22\x41\xb9\x50\x66\ -\x0c\x90\x6b\x28\x51\x96\x31\xff\xd5\x0a\x69\x88\x96\x76\xac\x45\ -\xa4\x14\x91\x4c\x8d\x81\x73\x8c\x10\x46\x73\xf1\xfa\xb8\x85\xc7\ -\x3f\x54\x46\x5d\x18\x78\xc8\x43\x75\xa4\xad\x30\xb6\x3b\xef\xfc\ -\x94\x6d\x7e\x96\x0d\x30\x88\x9a\x48\x2a\x26\x3b\x13\x5c\x70\xcf\ -\xaf\x51\xb6\xcf\x32\x97\xfd\x9c\x1b\xc1\x5e\xa8\xe8\x7a\x85\x8e\ -\x29\xfd\x87\x6b\xee\x4b\x2c\xb7\x8a\x3b\x74\xb1\xa1\x77\x23\x13\ -\x31\x66\x8c\x22\x9d\x75\xb7\x18\xa5\x36\xb2\xca\xea\x4e\xf8\x0d\ -\x03\x58\x14\x11\x8a\x89\x2f\xb5\x47\x56\x76\x86\xf5\xb2\x61\x69\ -\x04\x5b\x4a\x61\xc5\x98\xe0\x43\x23\x26\x90\x24\x39\x1f\x53\x16\ -\x71\x66\x0d\x17\xe3\x90\xd9\x48\x31\xa8\x40\xbe\xfe\xaf\x2a\xd9\ -\x63\x93\x4f\x2a\x59\x5c\xcd\x9b\xe1\xb8\x9c\x09\xad\xac\x77\x5c\ -\xa6\xb4\xef\x12\x65\xeb\xcf\x8c\x2a\x66\x65\x3b\x0e\x54\x66\x8c\ -\xd6\x16\x4a\x91\x5c\x0a\xf4\x47\x63\xe8\x95\x58\x2d\xb8\x7d\x3d\ -\xb0\x17\xa5\x91\xa6\x42\xf5\x80\xa3\xb7\x17\x1a\x07\x2a\x29\x21\ -\xc2\xaa\x81\xc9\x38\x8d\x0c\xf0\x3d\xe1\x03\x93\xf5\xb9\x3f\xa7\ -\xe5\xb3\x65\x30\x94\x7f\x65\x21\x0c\xc9\xf3\x4a\x61\x28\xce\x2d\ -\xfa\x7f\x54\x0c\x43\xf9\x65\xe5\xf0\x6c\x18\x5e\x88\xd8\xb3\xc1\ -\x7d\x36\x0f\x5c\xce\x1b\x2f\x8f\xf0\x10\x21\x2e\x85\xe2\x14\xe9\ -\x9b\xa1\x23\xf5\x89\x9a\xbf\x7e\x61\x8c\x9d\x0b\x54\x4b\x9f\x9b\ -\x54\xc3\xce\x01\x2e\xa6\x8e\xa3\xf6\xe7\x59\xde\xb8\xea\xd9\xa9\ -\x66\xef\x0c\xad\x1f\x84\x40\xb9\xae\x5a\x95\x79\x7b\x69\x11\xee\ -\x56\xaa\xa7\xf5\x6f\x3f\xff\x30\x90\x64\x47\x90\x44\x74\xc8\xc0\ -\xb7\xeb\x3e\x36\x35\xcc\xa3\x44\x27\xd9\xa1\xa5\x8d\x08\x97\x96\ -\xdb\x5e\x30\xef\x26\x70\x45\x19\x23\xb2\x1b\x3f\x74\xb8\x98\xa1\ -\x19\x13\x82\x76\xe1\x3a\x77\x3f\xc7\xeb\xba\xce\xe2\xe2\x87\x7c\ -\x5d\xf5\xfc\xf0\x73\x32\x7a\x29\xd3\x77\xee\x21\x6b\xe5\xf2\x81\ -\x45\x95\x21\x4a\xf6\xfc\x68\x2f\xd8\x60\x07\x49\x64\x1f\xe4\xed\ -\xa4\xde\xb5\x9f\xbe\xb3\x6c\xbf\x2d\x5d\x13\xa7\x71\x13\x77\x4d\ -\xe7\x61\xc4\x5f\x4e\x1c\x1a\xcf\x2a\x9d\x4f\x7f\x7b\xf7\xd3\x51\ -\x92\x24\x99\xfe\xab\xac\x3e\x74\x9b\x7b\x86\x78\x56\xae\x71\xf6\ -\xa3\xbc\xbe\x9d\x4d\xa6\xde\x47\xe3\xe6\x6d\xb6\x8c\x17\xce\xdf\ -\xd0\xfd\x7d\xb3\xcc\xb1\xff\x91\x30\x60\xf6\x8d\x78\xb7\xe8\x6e\ -\xd9\xca\xed\x6e\xe0\xce\x5e\x5a\xa6\xc9\x32\xf3\x93\x26\xbf\x37\ -\x59\x9e\xff\xe2\x37\xe9\xe5\x8d\xfd\xa2\x59\x93\xbb\x5e\x32\x99\ -\xec\x4f\x7f\xd0\x4b\x4f\xb8\xdb\xc9\x41\xfa\xf6\x6d\x71\x33\xb4\ -\xcf\xa2\x2a\xd7\xab\x65\x99\xba\xfd\xad\xcc\xe9\x65\x44\x1e\xcf\ -\x5c\x7e\x37\xfa\xd5\xd3\x82\x83\x0f\xb5\xa1\xb3\xbb\xc3\xd9\xef\ -\xe8\xf2\x3c\x5b\xd5\xee\xc4\x83\x61\x9e\x7c\x0a\xd1\xbe\x7b\xf5\ -\x14\xdf\xbd\x7e\xe3\xa9\xbd\xcc\xd6\xbe\x56\xeb\xdc\x4d\xdd\x83\ -\x2b\xca\x34\x45\xea\xab\xca\x0f\xce\x63\xe5\x7d\x37\xea\x5f\x77\ -\x37\x32\xd3\xe3\x2b\x94\xe5\xaa\x3c\xc3\xbf\xa9\x38\x8c\xa5\x71\ -\x7d\x1f\x57\x55\xbc\x9d\x16\x65\xe1\x0e\xa3\xc7\xad\x06\x81\xb3\ -\x8a\x9b\x7b\xa5\x78\x07\x83\x5a\x98\x47\x76\x97\x93\x5d\x0c\xb4\ -\x58\x0f\xc5\xd2\x0f\x76\x85\xa1\xda\xf8\xac\xd8\xbd\xfa\x3b\x30\ -\x80\xcc\xce\x43\x2b\xf8\xfe\x45\xa5\x3c\xcd\x3e\x5f\xab\x94\x88\ -\x32\x60\x5a\xae\xae\xa5\x1c\x7f\x7c\xc1\x24\x09\xd9\x69\xf6\x60\ -\x80\x16\x42\x68\xfb\x24\x49\x20\x1d\x03\x4c\x5b\x36\xcc\x43\xc8\ -\xe4\x68\xe0\x4d\x4f\xcd\xdb\xf6\x32\x11\xe9\x84\xcb\x5e\x95\xf0\ -\x1a\xe4\x11\x8a\xd7\x89\x92\x8f\x95\xa0\xbb\xe0\x3a\x03\x8d\x14\ -\xe0\x34\xa4\x1f\x93\x48\x4b\x21\x95\x12\x2d\x1a\xd2\xd2\x68\xaa\ -\x35\x1b\x7b\x06\x2a\xa8\x95\x6d\x3d\xe9\x41\x42\xef\x03\xcf\xb6\ -\x92\x10\x5f\x6d\x25\xa4\x51\x4e\x01\xcc\x3e\x65\xa6\xc1\xea\x20\ -\xef\x0e\xd3\xa5\xf9\xae\xdc\xf9\x04\x17\x30\x8f\x06\xfd\x75\xdc\ -\x18\x5d\xc5\xee\x62\x3d\x80\xbf\x02\x21\x52\x06\x7c\xc8\x23\xc9\ -\x38\xa7\x34\x48\x02\xf4\x3b\x86\x49\x2d\xbc\x6a\x38\x4e\xa2\x68\ -\x10\xa2\x9c\x5a\x40\x23\x34\x46\x2c\x32\xda\x52\xc3\x02\x4c\x41\ -\xbf\x22\xa5\xf2\x93\x01\x7a\x88\xd1\xc1\xaf\x01\x93\x11\x18\x19\ -\xa1\x63\xe0\x49\x02\x32\x46\x7f\xf4\xa3\xc4\x5f\x0e\xd9\x31\xf6\ -\xb6\xc8\xe2\x5c\x04\x88\x03\x65\x10\xe7\x7a\xac\xd1\x7f\x59\x83\ -\x12\x14\xc0\x69\x34\x91\xd6\xa2\xd3\x82\xf7\x68\x0a\x0f\xc2\x9a\ -\x08\x36\xc1\x81\x57\x81\xdc\x7d\x85\x21\x42\x69\x1c\x13\x2e\xc3\ -\x24\x16\xe3\x30\x1b\xb7\x54\x68\xe3\x87\xa4\xd2\x82\x29\x0f\x6c\ -\x01\x71\x25\xe5\x41\x8b\x76\x0d\x6a\x87\x40\x77\xa7\x99\x04\x14\ -\x08\x60\x5c\x3f\x8e\x40\x25\x46\x60\xd5\x88\xa3\x09\x10\x3c\x80\ -\x63\x29\x41\xb4\x10\x63\xa8\x03\xa7\x64\x81\x00\x28\x86\x5f\x5a\ -\xcc\xa5\x80\xc9\x5a\x06\x32\x02\x18\xa6\x5a\x61\x16\x45\xab\x6d\ -\x69\xa0\x10\xf4\x50\x8d\x19\x7b\xe8\x4d\x80\x7e\x82\x8f\x67\x62\ -\x44\x9c\xc5\x03\x45\x01\x22\x8a\x78\xb2\xae\x1e\xe2\x66\x5d\xb9\ -\xc1\x3d\xeb\xf1\xbe\x14\xe9\xd7\x67\x7c\x60\x95\xba\x7d\x92\x8f\ -\xf5\xe7\x9d\xb3\x17\xbd\x97\xfc\x4c\x48\x1f\x04\xe6\xe8\x53\xde\ -\x95\x71\xb2\xe9\x6c\xdd\x34\xfd\xb1\x7f\x97\x59\x31\x6d\x9d\xf0\ -\x1a\x89\xa3\xf5\x47\x8b\xce\x83\x29\x60\x05\x38\x4a\x7b\x99\xb8\ -\xf3\x3d\x18\xde\xee\x1e\x7c\x97\x51\x9b\x63\xd9\xe0\xfb\x93\xe4\ -\x8c\x88\x53\xcf\xd6\xed\x35\xb4\x26\x99\xb6\x9a\x13\xf5\x0d\xb4\ -\x46\x45\x64\xdb\x0a\xe3\x9b\x58\xd3\xaa\xad\xd5\x9a\xe9\x34\xc4\ -\x7b\x5f\xcf\xea\x2a\xfc\x6b\xb5\xa5\xc5\xee\x67\x80\x6f\xa0\x2d\ -\x5f\x6a\x5b\x1d\xc1\xab\xda\x53\x20\x47\x78\x6d\x51\xb9\x77\x32\ -\xe6\x5f\x7c\x82\xf0\xcf\xf0\xe5\xbc\xea\xc4\xcb\x55\xf7\xa2\x0a\ -\x2f\xd8\xff\x6a\x85\xff\xba\xfa\xce\x50\x2c\x2c\x2a\xee\xa0\xba\ -\xdb\x88\x11\xa6\x0d\x57\xdf\xb8\xba\x5f\xb2\xd0\x2b\x97\xf8\xcf\ -\x57\x17\x73\xd4\x1e\x94\x17\x7a\x4d\x8b\x70\xa3\xf9\xa9\x45\xfc\ -\x05\x0e\x53\x4c\xe8\x27\x26\x41\xf5\xd6\xa8\x8f\x92\x0d\x20\x97\ -\x46\xad\xe5\x4a\xdb\xa1\x51\xd0\xad\xa3\xde\xb1\xde\xe8\xce\x00\ -\xbe\xc0\x8a\x21\x92\xf5\xb1\x82\x0a\x4f\x85\xfd\x84\x59\xfc\xf5\ -\x29\x87\xa3\x68\xd9\x16\x6a\xa9\x08\x63\x94\xb6\x86\x31\x16\xfd\ -\x96\x69\x6f\x58\x15\x45\xa0\x02\x9b\x0c\x0d\xf3\x89\xa6\x61\x90\ -\x78\xfc\xbd\xf5\xa9\xde\x71\x62\x6b\x85\x62\x4a\x5e\xb3\x11\xd0\ -\x5d\x1c\xf8\x36\x00\x09\x06\xa5\x40\x93\x4e\xe5\xbe\x0d\x50\x28\ -\x68\x10\x98\xd2\xa1\x0a\x2d\x60\x0a\x40\x0e\x1f\xe8\xb0\xbd\xf7\ -\x35\x86\xd2\x6b\x49\x8d\x72\xce\xd1\xb7\x5f\xcd\xdb\x76\x52\x87\ -\x27\x72\xf3\xc8\x0a\xab\x0c\x1b\xc8\x2d\x23\x2f\x88\xe2\x43\xd7\ -\x61\x0a\x29\x89\x72\x33\x8c\x72\x86\x42\xa6\x98\xc4\x0a\x57\x91\ -\x9b\x45\x04\x49\x4a\x48\x62\xae\x2d\x77\xef\x77\x88\xbd\xc5\xa9\ -\x17\x46\x9e\x48\xae\x24\xcc\x38\x90\x9b\x23\xe5\x71\x8d\x50\x1a\ -\xca\x6d\xa1\x39\x00\x58\xfd\xc9\x4c\x86\xd2\xa4\x29\xdf\xfd\x0e\ -\x41\x00\x8e\x99\xa1\x1e\x5e\x22\x5b\x32\x61\x81\x64\x5b\x0e\xc5\ -\x70\x8c\x7e\xc4\xdc\x4e\x16\x6f\x6f\x6e\xfd\x85\xc3\xdb\x9b\xff\ -\x00\x66\xa4\x62\x3a\ -\x00\x00\x0b\xb0\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x63\x6b\x73\ -\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ -\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ -\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ -\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ -\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ -\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ -\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\ -\x31\x2e\x37\x33\x36\x36\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x34\x2e\x32\ -\x35\x36\x35\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ -\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ -\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ -\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ -\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ -\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ -\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ -\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ -\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ -\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ -\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ -\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ -\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ -\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ -\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\ -\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ -\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ -\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ -\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\ -\x23\x62\x66\x61\x64\x61\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ -\x62\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x31\x33\x33\ -\x33\x33\x34\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\ -\x23\x36\x36\x36\x36\x36\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ -\x62\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x34\x35\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x78\x3d\x22\x33\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x38\x30\x30\ -\x30\x30\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x23\ -\x62\x66\x61\x64\x61\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x62\ -\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x32\x2d\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x39\ -\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x32\x2e\x31\x33\x33\x33\x33\x36\x35\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x66\x62\x66\x62\x66\x62\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x31\x39\x2d\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x2e\x33\x33\x33\x33\ -\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\ -\x2e\x33\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0d\x2a\ -\x00\ -\x00\x49\x75\x78\x9c\xed\x5c\x59\x6f\xdb\x56\x1a\x7d\xcf\xaf\xe0\ -\x28\x2f\x2d\x46\xa4\xee\xbe\x28\xb6\xfb\xd0\x62\x80\x02\x1d\x0c\ -\xd0\x76\x3a\x8f\x01\x4d\x52\x36\x27\x14\x29\x50\xf4\x96\x5f\x3f\ -\xe7\x5e\x2e\xa2\x36\x8f\xe3\xc4\x69\x12\x55\x6e\x20\xf2\xbb\xfb\ -\xf9\xce\xb7\x5c\xf2\xaa\x67\x3f\xdc\x2f\x8b\xe0\x36\xab\xd7\x79\ -\x55\x9e\x4f\x68\x44\x26\x41\x56\x26\x55\x9a\x97\x57\xe7\x93\x7f\ -\xff\xfe\x8f\xd0\x4c\x82\x75\x13\x97\x69\x5c\x54\x65\x76\x3e\x29\ -\xab\xc9\x0f\x17\xaf\xce\xfe\x16\x86\xc1\x8f\x75\x16\x37\x59\x1a\ -\xdc\xe5\xcd\x75\xf0\x73\xf9\x6e\x9d\xc4\xab\x2c\xf8\xee\xba\x69\ -\x56\xf3\xd9\xec\xee\xee\x2e\xca\x3b\x61\x54\xd5\x57\xb3\xef\x83\ -\x30\xbc\x78\xf5\xea\x6c\x7d\x7b\xf5\x2a\x08\x02\x8c\x5b\xae\xe7\ -\x69\x72\x3e\xe9\x1a\xac\x6e\xea\xc2\x57\x4c\x93\x59\x56\x64\xcb\ -\xac\x6c\xd6\x33\x1a\xd1\xd9\x64\x53\x3d\xd9\x54\x4f\xdc\xe8\xf9\ -\x6d\x96\x54\xcb\x65\x55\xae\x7d\xcb\x72\xfd\x7a\x54\xb9\x4e\x17\ -\x43\x6d\x37\x9b\x3b\xee\x2b\x51\x6b\xed\x8c\xb0\x19\x63\x21\x6a\ -\x84\xeb\x87\xb2\x89\xef\xc3\xed\xa6\x98\xe3\xa1\xa6\x8c\x10\x32\ -\x43\xd9\xa6\xe6\xd3\x6a\xcd\xd7\x00\x74\x85\x7f\x43\xf5\x5e\x10\ -\xad\xab\x9b\x3a\xc9\x16\x68\x97\x45\x65\xd6\xcc\x7e\xfa\xfd\xa7\ -\xa1\x30\x24\x51\xda\xa4\xa3\x6e\x7a\x3c\xb7\x46\xdd\x02\xb9\x8c\ -\x97\xd9\x7a\x15\x27\xd9\x7a\xd6\xcb\x7d\xfb\xbb\x3c\x6d\xae\xcf\ -\x27\x5c\x44\x94\xe3\x23\xbd\xf0\x3a\xcb\xaf\xae\x9b\x5d\x69\x9e\ -\x9e\x4f\x30\x7b\x66\x4d\x7b\x3f\x22\x07\x6d\x2b\x74\x1d\xcf\x87\ -\x12\x12\x59\x16\xd1\xa0\xa6\x92\xeb\xb6\x4e\xbf\x84\x79\x5a\x25\ -\x6e\x4e\xe8\x32\x5b\xe6\xf1\x4d\x53\x2d\xa1\xb5\x24\x29\xe2\xf5\ -\x3a\x5f\xe4\x09\x6e\xaa\x72\x55\xdc\x5c\xe5\xe5\xdb\x5f\x7e\xfc\ -\xed\x6d\x73\x5d\x67\xeb\xeb\xaa\x48\xdf\xfe\xfa\xaf\x9f\xdf\x36\ -\x55\x55\x44\x3d\x92\xc3\xb0\xd9\xfd\xaa\xaa\x9b\xf0\x3e\x5d\x01\ -\x4f\xa5\x0f\x16\x3e\xf4\x85\x17\x28\x3d\x4b\xb3\xc5\xda\xd5\x6a\ -\x17\xe7\xee\xb0\x3a\x3d\x09\x66\xbe\x74\x98\xab\x9b\x68\x7a\x9b\ -\x67\x77\x9b\xba\x97\xf1\xba\x05\x30\x08\x56\xf1\x15\xc8\x56\x54\ -\xf5\xf9\xe4\xf5\xc2\x7f\xba\x82\xcb\xaa\x4e\xb3\xba\x2f\x52\xfe\ -\xb3\x55\x54\x41\x21\x79\xf3\xd0\x9a\x57\xd7\x77\x3f\x5f\xd7\xeb\ -\x50\x4e\x0e\x97\xaf\xaf\xe3\xb4\xba\x3b\x9f\xb0\xdd\xc2\xf7\x55\ -\xb5\x3c\x9f\xc8\x48\x5a\x63\x09\xdd\x2d\x4d\xee\xcf\x27\xa1\x95\ -\x11\x55\x96\x48\xbd\x57\x8a\xf1\x98\x8c\x84\x35\x8c\xee\x17\xde\ -\xd4\x35\xec\x2f\x2c\xe2\x87\x0c\x8b\xf2\x5f\x7d\xff\x50\xcf\xdd\ -\x55\xed\xc0\x69\xea\x9b\x6c\xb7\xa5\x2b\x09\x2f\x2f\xab\xfb\xc3\ -\xc5\xa0\xc3\x8d\xb3\xec\xf0\xa6\xcc\x1b\x58\xcf\xea\x7e\xdc\xeb\ -\x4d\x9e\x66\xeb\xc3\x0d\xd7\x65\xbc\x0a\xaf\x8a\xea\x32\x2e\x0e\ -\x57\xb8\xcb\x4b\x80\x14\x76\x44\xa7\x7c\xd0\xc1\x6e\x8d\x9e\xf5\ -\x9a\x98\x23\x35\x30\xf7\x3d\x3d\x74\x45\x0f\xc7\x8b\x96\xf1\x7d\ -\xbe\xcc\xdf\x67\x00\x66\x4f\x15\x7e\x65\x63\x58\x2e\x7c\x85\xb3\ -\x2d\xd8\xda\x36\x41\xd0\x3c\x38\x0b\xbf\x7f\x70\xb2\x49\x2f\x74\ -\x78\x3b\x01\xb3\x56\x0f\xc2\xaa\xce\x61\x38\xa3\xe9\xf6\xa2\x87\ -\xb1\xc8\xf9\x03\xb8\xf3\x7b\xcf\x3f\xcf\x4e\xbd\x5b\xf6\x30\x2e\ -\xeb\xcc\x62\xb6\x6f\x17\x5e\xbe\xcc\x9a\x38\x8d\x9b\x78\x63\x24\ -\xbd\x04\x73\x23\xfd\xca\xe0\x5a\xe7\xbf\xfe\xf4\x8f\x8b\x6e\xa0\ -\xb3\x24\x99\xff\xa7\xaa\xdf\xf5\xe3\x06\x81\xab\x10\x5f\x56\x37\ -\xd0\xc4\xe4\x62\x10\x9f\xa5\xc9\x1c\xce\x10\x4e\xe2\x22\x5f\x82\ -\xfa\xce\x8f\xfe\x1d\xce\xef\x6c\xb6\x29\xd8\xaa\xec\xc0\xda\x74\ -\xda\x76\x0b\x17\xe2\xbd\xea\xc1\xd0\x92\x26\xcb\xdc\x35\x9a\xfd\ -\xd6\xe4\x45\xf1\xb3\x1b\xa4\x5b\xf1\xa8\xd3\xbc\x29\xb2\x8d\xf0\ -\x6c\xd6\xcd\xbe\x5b\xdb\x6c\xb4\xb8\xb3\x59\xbf\x7a\x7f\x77\xb5\ -\x41\x65\xcb\x68\x06\x45\x17\xf1\x65\x06\x06\xff\xe2\x0a\x83\x7d\ -\x9e\xd4\xd5\xcd\x6a\x59\xa5\x59\xd7\x7c\x40\x33\x4b\x9a\x41\x65\ -\xcd\x43\x81\x72\xef\x6f\xe6\xaf\x89\xff\xbc\x49\xf3\xf5\x0a\x2d\ -\x10\x21\x8a\xbc\xcc\xde\x54\x70\xcd\x8b\xa2\xba\x9b\xdf\xe6\xeb\ -\xfc\xb2\xc8\xde\xf8\xef\xbc\xc0\xca\x07\xd1\x02\xcb\x9f\x77\x9e\ -\xcc\xdf\x84\x9d\x1f\x9a\xd3\xf6\xb6\xbe\x29\xb2\x79\x59\x95\xef\ -\xe1\xc1\xde\xac\x9b\xba\x7a\x97\xcd\x5f\xa7\x97\x8e\x24\xdd\x6d\ -\x6b\x6d\xf3\x81\x3a\xac\x97\xbb\x49\x60\x41\xf3\xcb\x9b\xa6\x19\ -\xcb\xfe\x5b\xe5\xe5\x1c\xf8\x67\x75\x2f\xf5\x37\x05\x0c\xa7\x99\ -\x8b\x5e\x96\xc6\xf0\x78\x75\x8d\xe5\x60\xf4\x6c\x2c\xad\x16\x8b\ -\x75\xd6\xcc\x49\x2f\xdb\xcc\x78\x19\xd7\xef\xb2\xba\x6d\x90\x95\ -\x31\x16\x18\x5e\xc6\xc9\x3b\x07\x68\x99\xce\xe3\x04\x6e\xe7\xa6\ -\x40\xba\xb2\x65\x50\x0e\x56\x6e\xa8\x1c\x84\x7d\x98\xd4\x91\x8b\ -\x87\x9c\x0d\x05\x43\xa8\xdc\x2b\xd9\xb2\x3e\xd8\x51\xc8\xa3\x4d\ -\x61\x0d\x01\x8f\x38\xe2\xa2\xb2\x66\xa0\xd9\xd9\x2a\x6e\xae\x77\ -\xd4\xd9\x6a\x83\xc5\x8b\x05\x8b\x77\xb5\xd1\x63\xef\x34\x4d\x93\ -\x6d\xec\xc9\x4b\x42\x3e\x4c\x61\x58\x10\x40\xfb\x67\x20\x68\xa4\ -\x84\xa2\x62\x4a\x45\x64\xad\x24\x46\x06\x3f\x06\x40\x46\x68\x4a\ -\xac\x9e\x32\x12\x71\x26\x95\x34\x01\xd3\x91\x16\x56\x69\x33\xa5\ -\x3a\x22\x56\x1a\x27\xa3\x2d\x82\xdc\xb7\xf6\x57\x01\x4a\xad\xe2\ -\xf0\x6c\x53\xca\x23\x6d\xb5\x96\x90\xa9\x88\x2b\x23\xa5\x9e\x9a\ -\x48\x6b\x2a\x88\x82\x8c\x45\x86\x71\x6a\x18\x64\x92\x30\x29\x68\ -\x60\x22\x6e\x88\xe1\x56\x42\x44\x15\x46\xe5\x26\x10\x91\x31\x56\ -\x20\x22\xba\x61\xa9\x30\xc4\x9a\xc0\x73\x54\x23\x4e\xba\x61\x8d\ -\x22\x94\xd0\x20\x64\x88\x9c\x82\x11\x8b\x8a\x2c\x52\xca\x18\xad\ -\x83\x90\x46\x16\x6d\x18\xe1\x53\xe9\xda\x30\xc9\x04\x5a\x53\xca\ -\x89\x24\x58\x1c\x64\x84\x1a\x21\x03\x84\x5d\x66\x94\x95\x72\x8a\ -\x7e\x38\x43\xc0\x41\x3d\x8e\x6e\x88\x32\x62\x8a\x94\xc8\x1a\x61\ -\xb4\xd0\x01\xb5\x58\x80\x95\x98\x22\x92\x24\xa6\x15\x97\x2c\xe0\ -\x3c\x92\x0a\xab\xa2\x53\x11\xe1\xdb\x12\xed\x45\xc2\x28\xad\xa6\ -\xa1\xc3\x97\x43\xd9\x32\xe0\x26\x12\x1e\x6a\x34\xf5\x48\xdb\x20\ -\x09\x78\x04\x11\xfe\x20\xd4\x94\x19\x66\x0c\x26\x63\x29\x35\x5c\ -\x4e\x2d\xd0\xd5\x98\x02\x45\x2d\xe6\x96\xa5\xad\xfb\xd0\xe0\xfd\ -\x16\xf3\x1d\x03\x39\xea\x87\x1b\xee\x6e\x82\x7f\x55\x82\x4a\x4d\ -\x55\x87\x48\x03\x6e\xe3\xe6\xa6\xce\xb6\xc2\xc9\x10\x16\xe0\xa7\ -\x9c\x27\x45\xc4\x8e\xdd\x67\xbd\x8e\x9f\x42\xf1\x24\x26\x2c\x39\ -\x4e\x71\xc1\xbf\x08\x8a\x93\x48\xb6\x2c\xb5\x91\x72\xec\x06\x1b\ -\xa5\x61\xb6\x25\x2d\xd2\x29\x1e\x30\x15\x29\x30\x54\x83\x3c\x34\ -\xd2\x84\x68\x27\x23\x11\x63\x44\x32\x8d\x66\x60\x22\x13\x5a\x3a\ -\x22\x1b\x49\xa9\x05\x41\x05\x61\x20\x21\x68\x22\x23\x06\x66\xcb\ -\x29\x7c\x03\xf8\xc0\x28\x0d\x5c\x1f\x94\x70\x2f\xa3\x44\x0b\x09\ -\x53\xd1\x11\x53\x86\x70\xe6\x15\xad\x89\x84\x39\x40\xab\x5a\x83\ -\xa9\xdc\xfa\x51\x25\x27\x94\x07\xd8\x27\x10\xa1\xdc\x0c\x30\xac\ -\x50\x92\xc0\x10\x02\xf8\x21\x4d\x34\xa1\xd2\x4c\xd1\x8f\xe6\xda\ -\x52\xe3\x84\x04\x0c\x64\x98\x74\xe8\xac\xd4\x18\xfc\x93\x01\x03\ -\xc9\x60\x11\x4a\x67\xa1\x98\xa2\x0e\xe7\xb0\x1e\x50\x52\x44\x02\ -\xed\x61\x33\x21\x0c\x99\x82\xcc\x96\x39\x1b\x94\x42\xc3\x52\xa6\ -\xa1\x88\xb8\x55\xd2\x6a\x58\x97\x89\x9c\xff\x37\xc6\xb5\x66\x58\ -\xa2\x24\x3c\xe0\xe8\x56\x0a\x6c\x2b\xdc\x58\x1a\x76\xab\x8d\x54\ -\x5e\x0a\x28\xb5\xeb\x93\x38\xdb\x75\x54\xd5\xbd\x4f\x70\xcd\x0f\ -\x31\x5c\xd9\x9e\xe2\x6a\xa0\xb8\xe9\x29\x6e\x8e\x90\xfb\xf3\x53\ -\xdb\xd8\x98\x3c\xe6\xbd\x09\xf9\xb3\xa9\xbd\x0c\x9c\xa7\xc3\x47\ -\xaa\x29\xb4\x46\x5b\x07\x9c\x40\xca\xa0\x6a\x4d\xac\xf3\x66\x50\ -\x29\x85\xcf\x54\xee\x42\x7a\x55\xc3\xaf\x31\xec\x23\xc0\x53\xd2\ -\x36\xd7\xa2\xd5\x95\x8c\x94\x55\x44\x58\x38\x3c\x25\xa1\x2a\x1a\ -\x58\x70\x9b\x38\xe7\x8b\x0b\x0b\x6b\x06\xdd\x3b\x47\x2f\x9c\xdb\ -\xf6\x17\xce\xa2\xb8\xab\x87\x86\xcc\xfb\x28\x26\x40\x18\x11\xe1\ -\x8b\xbb\xc0\x02\xf7\x69\xc0\x7d\xe5\x1c\xa0\xed\xc2\x85\x53\xb4\ -\x00\x0b\x88\x84\x9f\x9c\x52\xb7\x77\x91\x12\x55\x20\xc3\xd4\x05\ -\x66\xc4\xe0\x69\x41\x5c\x6e\x61\xbf\x53\x2e\x3d\x95\xc0\x52\x66\ -\xb9\x51\x0c\x9e\x16\xac\x74\xeb\x0a\x31\x21\x09\xf3\x84\x3b\x87\ -\xf7\xc5\xee\xc8\xc2\x86\x5a\x0a\x63\x61\x53\x82\xc0\x80\x39\x49\ -\x74\xcf\x18\xe0\x90\x11\xac\x84\x1b\x5f\xc9\x5b\x84\x16\xdc\xb5\ -\x04\xb7\x51\x69\xd4\x52\xb8\xa6\xdc\xe1\xa0\x39\x02\x91\x03\xc8\ -\xc2\x7c\x61\x34\xce\xa6\xac\x87\x17\x52\x67\x41\x08\x5e\x30\x7a\ -\x82\x1b\xdd\x26\x4f\xfa\x30\x87\x79\x68\x3e\x37\x8b\x09\xe6\x63\ -\x1e\x65\x31\xf2\xc5\x3f\x9d\xc5\x43\xce\x39\x65\xa2\x73\xd5\x1b\ -\x16\x53\x7a\x80\xc5\xfc\x00\x8b\x15\xff\x58\x16\x23\x54\xb7\x2c\ -\xb6\x08\xd0\x2d\x8b\x99\x8b\xde\x9e\xc5\x70\x6b\x1d\x8b\x07\x07\ -\x87\x64\x80\x05\x02\x9e\xb3\x65\x31\xb2\x21\xd3\xb1\x18\xe1\xbf\ -\x65\x31\x62\x0d\x6d\x59\xec\xa2\xff\xd4\x65\x5b\x1f\xcb\x63\xd4\ -\x18\x78\x6c\x46\x34\xa6\x07\x68\x0c\x4c\xc6\x34\x3e\xc0\x62\x2a\ -\x3f\x90\xc4\x9f\x9b\xc2\x34\x61\x82\xb1\x0d\x67\x53\xf7\xb7\xcd\ -\x59\x8e\x1c\x11\xc1\x18\x91\xf4\xe3\xc8\xeb\xb4\x8e\x8f\xa1\xcf\ -\x4a\x33\x46\x2c\x46\x58\x74\x7c\x42\x44\xf3\x97\x7b\x17\xfb\xc0\ -\x6a\xcd\x42\x12\xb2\x27\x83\xfb\xcd\xe0\x36\xb6\xfe\x0d\xf5\x9c\ -\xf5\xd3\xce\xca\xc8\xb1\xeb\x63\x28\xd2\x13\x47\x11\xb9\xe4\xc6\ -\x87\x3e\x1b\xc5\xa7\x1b\xfa\x37\x83\xe2\xd8\x86\xd5\x60\xc2\xaa\ -\x33\xdc\xd1\xf7\x31\xcc\xc4\xe9\x61\xb6\xc5\xbc\xfe\xea\xe3\x98\ -\x67\x5f\x10\xc5\x03\x79\xfb\x97\x81\xa2\xec\x92\x0a\x3e\xed\xdf\ -\xe0\x38\xfb\x25\x6e\x63\xc6\x3c\xa8\xc7\xae\x0f\x04\x69\xf1\xf4\ -\x07\x01\xdf\x10\x82\x6e\x4f\xf1\x49\xc0\x0b\xd5\x29\xc2\xc7\xcc\ -\xa7\x82\xef\x25\xb3\x98\x2f\x17\xbe\xe1\x51\xe8\x27\xc1\x50\x9f\ -\x76\x24\x71\x0f\x9b\x3f\x3e\x87\x39\x45\x1e\x86\x3b\xdb\x90\x0d\ -\x7e\x62\x84\xd9\xce\xf5\xd1\xfd\xc8\x8b\x66\x81\x5f\x03\x86\x87\ -\xb6\x24\xcf\x00\x92\x9e\x66\x52\x13\x3e\xbe\x2b\x79\x06\x90\xfc\ -\x45\x77\x77\x5f\x03\x90\xd8\x7e\xf8\x69\xd2\x8f\x03\x52\xbc\xe8\ -\x66\xe5\x6b\x00\xb2\xbf\x32\x1f\x07\xa4\x3d\x79\x46\x1e\x0a\xd6\ -\xcf\xf1\x91\x4f\x7f\xc7\x33\xe0\xf8\x72\x67\x29\xdc\x93\xf1\x0f\ -\x39\x4b\xf1\xd9\xdf\x08\xbd\xd8\x11\x0a\xc2\xc0\x69\x05\x07\xb1\ -\x49\x4d\xfb\x83\x58\xee\x1d\x20\xfe\x36\x8a\xea\x8f\x52\x20\xf9\ -\x25\x5c\xe3\xbf\xf1\x51\x0a\xf7\xb2\x54\x51\x63\x36\xcc\x71\xc7\ -\xd4\xdc\xcb\x54\x2a\x99\xfe\x4b\x89\x2f\xac\x44\x11\x1a\x28\xd2\ -\x22\x89\x53\xa3\x34\xee\x99\xaa\x94\x88\x3a\x30\x72\xb5\xa5\x4a\ -\x13\x31\xe6\xde\xcb\xfc\xa5\xca\xcf\xa0\x4a\xe9\x95\xf9\x32\x36\ -\xf9\x79\x14\xb9\xad\xb6\xf9\x6b\xa9\x94\xdc\x55\x29\x89\xa4\x55\ -\x44\x1b\xc1\x1f\xd1\xed\x62\x61\xe4\xae\x6e\x25\xc2\x19\x15\x88\ -\x8a\xf4\x33\x29\x99\xb9\x37\x70\xc6\x9d\xc9\xf8\x94\xda\x86\xc2\ -\x76\x35\xac\x6c\xfb\x64\x41\xed\x69\x58\x76\x6f\xf9\xcc\x58\xc3\ -\xa1\x3b\xcb\xb2\xfd\x64\xc1\x9d\x64\xeb\xde\x73\xf2\xd1\xc9\xb5\ -\xab\xf1\xe8\x57\x9c\xcb\xcd\xd0\x4d\x1d\x97\x6b\x77\x44\x13\xa1\ -\x3e\x6e\xea\xfc\xfe\x3b\x28\xc6\x68\x39\x25\xee\x2f\xd2\x42\x68\ -\x4b\x11\xfa\x25\xb2\x51\xaa\x90\x45\xf8\x37\xfa\x50\x9d\xa0\xdf\ -\x0f\x27\x40\xb7\x48\x74\xb8\x4f\x2d\x0d\x32\x10\xc5\xda\x77\xb5\ -\xc4\x32\xc6\xfd\x01\x13\xad\xc1\x5d\x4a\x9d\x98\x59\xca\x14\x33\ -\x6e\xdc\xef\x27\x9b\xde\xea\xf6\x98\x2b\x16\xa5\xb8\x1d\xcb\x01\ -\x81\x3b\x02\xa3\x14\xd5\x74\x24\x77\x87\xf7\xfc\xa1\x1d\x6b\xd9\ -\x48\xec\x01\x93\x91\x95\x54\x13\x31\x92\xf7\x10\x1b\xb7\x2a\x22\ -\xcd\xb8\xac\xb7\x3c\x11\x29\xa3\x8d\x92\xa3\xa2\x5e\x8f\x18\xc5\ -\xc2\x66\xf9\xa8\x68\x2b\xcd\xcb\x6c\x7c\x49\xd5\x71\x6f\x96\xdd\ -\x66\x65\x95\xa6\x03\xe3\xa9\x49\xd5\xd1\x37\xf5\xcf\x79\xff\x3e\ -\x3a\x10\xfb\xff\xb5\x64\x99\xa0\x52\x59\x0d\x75\x70\xc3\x08\x65\ -\xb6\x3d\x06\xe4\xf4\x05\x5f\xe2\x08\x41\x84\x35\xd2\x65\x77\x87\ -\xb4\xa4\x8d\x94\xcc\x98\x1d\x2d\x51\xf4\x4b\x20\xb7\xdb\x5a\xb2\ -\x91\x02\x15\xa9\x14\x3b\x5a\x12\xd2\x1d\xcc\x12\xcc\x1c\xd0\x12\ -\xc2\x13\x01\x1d\x25\x3f\xa0\x25\x1a\x49\xcc\xd7\xd0\xe3\x5a\xd2\ -\x5f\xa1\x9a\x6a\xff\x0b\x03\x89\x98\x0c\x9a\xef\xf2\x1f\xc4\xa4\ -\x56\x49\xce\xb6\x91\x1d\x8e\x08\xed\x20\xab\x64\x97\xca\x1f\x40\ -\xb6\x7f\x4a\x69\xf7\x91\xed\xd3\x7e\xf1\x08\xb2\xa1\x39\x0d\x68\ -\x43\xb0\xd6\xc7\xc5\x5d\xd6\xbe\x20\xb6\x5f\x27\xb2\xd8\xbd\x12\ -\x01\xb7\x29\x77\x80\x75\x27\x66\xb8\xd4\x56\x3d\x15\x58\xe3\xd1\ -\xd3\x07\x70\xdd\x52\x4e\x0f\x68\xf7\x78\xfe\x38\xa0\x5f\x03\x9c\ -\xe3\xc7\x06\x87\x0f\xd6\x24\x47\x3e\xe3\x65\x3f\xf1\xdc\xce\x36\ -\x40\x23\x71\xbb\xff\x77\x69\x49\xbb\xff\x0f\x29\x02\x40\x70\xeb\ -\x0e\x56\x07\x9c\xf9\xaf\xeb\xf1\xcd\x1f\x81\x7f\x12\xfd\x4b\x10\ -\xba\x63\x7c\xee\x48\x39\x6b\x1f\xa9\x3a\x9f\x6e\xda\x3e\xfa\xf4\ -\x84\xa3\x9f\x50\x8d\x6a\x87\x3a\x12\xdd\x4b\x65\x27\xa0\xdd\x90\ -\xee\x24\xef\xad\x7b\x08\xe1\xc6\xf2\x5f\x21\x46\x7b\x1f\xb8\x23\ -\x91\x18\x22\x62\x10\x63\xab\x69\x5c\x3f\xee\x80\xe1\xf0\x66\xfa\ -\x8f\xc0\x35\x2d\xfc\xa9\xb1\xf6\xed\x81\x7b\x32\xe9\x3a\xf1\xd5\ -\xdf\xef\xd3\x60\x3b\xef\x5d\x54\x65\x13\xfa\x12\xc0\x5e\x2f\xe3\ -\xa2\x95\xdc\xc6\x75\x1e\x97\xcd\x96\xec\xce\xf3\x71\x4b\x04\xe5\ -\x66\x4d\x72\xbd\x2d\xcb\xdf\x67\xf3\x65\x96\xe6\x37\xcb\x37\x2e\ -\x3f\xed\x7e\xd4\xb4\x55\x67\x11\x2f\xf3\xe2\x61\xfe\x1b\x62\xf3\ -\x9b\xb0\x57\x60\xd8\x36\x5f\x65\xc9\xf0\xeb\xbb\xb6\x46\x93\xdd\ -\x37\xa8\x95\x66\xa5\xdb\x8b\xf8\xbb\xb8\xc8\xaf\xca\xf9\xba\x89\ -\xeb\xa6\x15\xa4\x59\x52\xd5\x6d\x1b\x4f\xbb\x1d\xa1\xcf\x94\xdb\ -\x92\x22\x6b\x40\xda\xb0\xfb\x75\x51\x3f\xad\xbb\xaa\x4e\x77\x65\ -\xbe\x8f\x21\x81\x68\x5b\xdf\xd5\x79\x83\x2a\xa1\xfb\x21\xcc\xbc\ -\xa8\xc3\xe6\x12\x5b\x07\x47\x2a\x37\x72\xd1\xd4\x6f\xdc\xaf\xf2\ -\xfc\xb2\xd7\xd7\xf9\xa2\x99\xf7\xb7\xdd\xb4\xcb\xe4\x1a\xe0\xb7\ -\xf3\x7e\xf6\xde\xb1\x33\xc9\xa7\x9a\xf0\xd8\x0c\x5b\xfb\x65\x11\ -\xd5\x12\x79\x8f\xe1\x4f\x4f\xed\x8f\x9a\xed\x87\xd9\x9f\x7f\x40\ -\x66\xb7\xdc\x5f\x6b\x7f\xc2\x76\x6f\x26\xa6\x1b\x0b\x49\x02\x98\ -\xce\xf0\x84\x98\x3f\x76\x77\xcc\xdd\x19\x14\x1e\x3f\x31\xba\x38\ -\xb0\xab\xa6\x91\x11\x5a\x32\x62\xf8\xea\xfe\xc3\xf7\x5e\x4f\xf0\ -\x73\xcf\x02\x4c\xed\x03\xc6\xfa\xc3\x94\x63\xc0\xc2\x6d\x8c\x1e\ -\xbd\x3d\x86\x19\x21\x8a\xd3\x3d\x7e\x3d\x86\xd9\xf0\x38\x54\x7c\ -\x49\x98\x89\x90\x3d\x42\xb3\xee\x38\x7f\x87\xc8\xee\xf7\x37\xcf\ -\xa7\x90\x3e\xc2\xa8\x0e\x9b\x9e\x2e\xfb\x17\x27\x40\x9d\x03\x00\ -\x71\xdb\x5a\x9a\xcb\x11\x46\xef\xff\x5a\x4c\xb8\x7f\xfd\xa0\x1f\ -\xbb\x3b\x01\x52\x1d\x42\x8d\x0f\x26\x37\x46\x2d\xdc\x06\xea\xd1\ -\xdb\x53\xa0\x9b\xde\x03\x4e\xd3\x0d\xdd\xdc\x0f\x4c\x4e\xd9\x59\ -\x85\x07\x32\x76\xb9\xe1\x55\x0b\xcf\x69\xfb\xab\x7d\x84\x34\xc1\ -\xea\xfd\xaf\x3a\x4e\x9a\x3a\xfb\xc9\xa6\x1a\x60\x39\x6d\xca\xec\ -\xe7\x47\x9b\x10\x37\xfe\x05\xde\x09\x93\x67\x3f\xf1\xde\xc4\xb3\ -\x31\x44\x5f\x23\x91\xce\x66\x57\xed\xff\x27\x02\x5f\x67\xee\x7f\ -\x67\x71\xf1\xea\x7f\xea\x44\xfa\xd7\ -\x00\x00\x17\xc8\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x65\x61\x72\x63\x68\x5f\ -\x69\x6d\x61\x67\x65\x73\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x33\x37\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ -\x30\x66\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\ -\x30\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ -\x23\x62\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ -\x6f\x70\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\ -\x30\x33\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ -\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\ -\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\ -\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x66\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\ -\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ -\x31\x34\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\ -\x32\x34\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\ -\x38\x2c\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\ -\x35\x38\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\x36\x33\x36\x33\x36\x33\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x2e\x31\x38\ -\x31\x38\x31\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ -\x3d\x22\x31\x31\x2e\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\x32\x37\ -\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ -\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x36\ -\x34\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x31\x33\x33\x33\x33\x33\x33\ -\x2c\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x2c\x32\x2e\x37\x32\x29\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ -\x22\x61\x6c\x77\x61\x79\x73\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ -\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\x66\x66\ -\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ -\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x3c\x2f\ -\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ -\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x2d\x31\x39\x2e\x35\x37\x35\x38\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x79\x3d\x22\x31\x39\x2e\x32\x38\x36\x34\x39\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ -\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ -\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ -\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\ -\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\ -\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ -\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ -\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ -\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ -\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ -\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ -\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ -\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ -\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ -\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ -\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ -\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ -\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x62\x33\x66\x66\x38\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x38\x35\x38\x31\ -\x35\x32\x39\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\ -\x35\x2e\x32\x38\x34\x35\x30\x36\x2c\x31\x2e\x36\x38\x35\x37\x36\ -\x38\x32\x20\x33\x32\x2e\x34\x34\x37\x35\x36\x35\x2c\x31\x30\x2e\ -\x32\x36\x37\x32\x39\x38\x20\x32\x33\x2e\x38\x36\x36\x30\x33\x35\ -\x2c\x32\x37\x2e\x34\x33\x30\x33\x35\x37\x20\x36\x2e\x37\x30\x32\ -\x39\x37\x35\x34\x2c\x31\x38\x2e\x38\x34\x38\x38\x32\x38\x20\x5a\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ -\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x36\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ -\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x32\x32\x2e\x37\x39\x33\x33\x34\x34\ -\x2c\x36\x2e\x31\x31\x30\x36\x31\x39\x36\x20\x2d\x33\x2e\x30\x39\ -\x34\x33\x30\x32\x2c\x33\x2e\x34\x36\x35\x36\x31\x37\x32\x20\x2d\ -\x31\x2e\x37\x33\x32\x38\x30\x38\x2c\x33\x2e\x33\x37\x32\x37\x38\ -\x39\x32\x20\x2d\x30\x2e\x38\x36\x36\x34\x30\x36\x2c\x33\x2e\x33\ -\x34\x31\x38\x34\x35\x20\x76\x20\x35\x2e\x30\x31\x32\x37\x36\x38\ -\x20\x32\x2e\x35\x30\x36\x33\x38\x36\x20\x4c\x20\x36\x2e\x37\x30\ -\x32\x39\x37\x35\x34\x2c\x31\x38\x2e\x37\x39\x37\x32\x35\x37\x20\ -\x31\x35\x2e\x33\x36\x37\x30\x32\x2c\x32\x2e\x30\x38\x38\x30\x32\ -\x37\x34\x20\x32\x30\x2e\x33\x37\x39\x37\x38\x39\x2c\x34\x2e\x35\ -\x30\x31\x35\x38\x32\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x30\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ -\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ -\x69\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\x38\x34\x30\x39\ -\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x39\ -\x2e\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x34\x38\x34\ -\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x31\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x32\x32\ -\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ -\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ -\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x30\x35\x31\ -\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\x2e\x32\x35\x37\ -\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\ -\x31\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\x35\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x32\x30\ -\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\x39\ -\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x69\x76\x65\x6c\ -\x6c\x6f\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ -\x31\x2e\x30\x32\x32\x33\x33\x34\x32\x2c\x30\x2c\x30\x2c\x30\x2e\ -\x39\x37\x36\x33\x34\x38\x33\x36\x2c\x2d\x31\x2e\x32\x30\x34\x35\ -\x35\x30\x32\x2c\x32\x31\x2e\x34\x30\x37\x32\x34\x32\x29\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x35\x39\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ -\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\ -\x30\x32\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ -\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x30\x2e\x36\x32\x36\x35\x32\x34\x38\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x2e\x37\ -\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x79\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x34\x30\ -\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x36\x2e\x31\x33\x33\x33\x33\x33\x32\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x31\x37\x39\x33\x39\x35\x38\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\ -\x3d\x22\x32\x37\x2e\x34\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x2e\x34\x30\x30\x30\ -\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\ -\x3d\x22\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x35\x2e\x38\x36\x36\x36\ -\x36\x36\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\ -\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x32\ -\x36\x37\x34\x32\x37\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ -\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x33\x33\x33\x33\x33\x33\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x35\ -\x2e\x38\x36\x36\x36\x36\x36\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x30\x2e\x31\x38\x35\x34\x31\x33\x31\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x30\x30\x35\ -\x39\x34\x30\x32\x37\x2c\x30\x2e\x39\x39\x39\x39\x38\x32\x33\x36\ -\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x34\x30\x30\x31\x31\ -\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x2d\x32\x37\x2e\x38\x32\x38\x36\x39\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x34\x30\x30\x30\ -\x37\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x36\x2e\x32\x36\x36\x36\x32\x30\x36\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0b\xbd\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x63\ -\x61\x6c\x63\x5f\x65\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\x2e\x73\ -\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ -\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\ -\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\x39\x37\x39\x35\x31\x30\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x78\x3d\x22\x2d\x32\x33\x35\x2e\x37\x30\x38\x33\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x2d\x31\x36\x2e\x38\x33\x32\x37\x35\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ -\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ -\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\ -\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\ -\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ -\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ -\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ -\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ -\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ -\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ -\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x39\x39\x39\x39\x39\ -\x39\x3b\x66\x69\x6c\x6c\x3a\x23\x38\x30\x62\x33\x66\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x64\x33\x64\x33\x64\x33\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x32\x37\ -\x37\x35\x35\x39\x32\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x33\x37\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x34\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x2e\x37\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x79\x3d\x22\x31\x32\x2e\x31\x39\x30\x34\x37\x38\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ -\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\ -\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ -\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x73\x69\x7a\x65\x3a\x31\x37\x2e\x31\x36\x32\x33\x32\x36\ -\x38\x31\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ -\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ -\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\x65\x74\x74\x65\ -\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\ -\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x39\x39\x39\x39\x39\ -\x39\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x30\x31\x39\x33\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x2e\x32\x30\ -\x34\x38\x38\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ -\x22\x32\x31\x2e\x30\x39\x35\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\x39\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\x39\x35\x33\x34\x36\x32\ -\x36\x33\x2c\x31\x2e\x30\x34\x38\x38\x30\x38\x38\x29\x22\x3e\x3c\ -\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\ -\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x74\x73\x70\x61\x6e\x33\x39\x31\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x2e\x32\x30\x34\x38\x38\x31\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\ -\x31\x2e\x30\x39\x35\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x77\x65\ -\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\ -\x69\x7a\x65\x3a\x31\x34\x2e\x33\x30\x31\x39\x33\x39\x30\x31\x70\ -\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\ -\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\ -\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\ -\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\ -\x64\x27\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x34\x33\x30\x31\x39\x33\x39\x22\x3e\x31\x2a\x32\x3c\x2f\ -\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\ -\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x0a\x2a\ -\x00\ -\x00\x2f\xfb\x78\x9c\xed\x5a\x59\x8f\xdb\xc8\x11\x7e\x9f\x5f\xc1\ -\xc8\x2f\x36\xa2\xa6\xfa\x66\x37\x67\xc6\xfb\xb0\x8b\x0d\x16\xd8\ -\x20\x40\x6c\x23\x8f\x0b\x8a\x6c\x49\x8c\x29\x52\x20\xa9\x91\xe4\ -\x5f\x9f\x6a\x52\xbc\x24\xce\xa1\x19\x7b\xb2\x71\x2c\xc3\xb0\xba\ -\xaa\xfa\xaa\xaa\xaf\x8e\x96\x6f\x7e\xda\xaf\x13\xe7\xce\xe4\x45\ -\x9c\xa5\xb7\x13\xe2\xe2\x89\x63\xd2\x30\x8b\xe2\x74\x79\x3b\xf9\ -\xf4\xf1\x57\xa4\x26\x4e\x51\x06\x69\x14\x24\x59\x6a\x6e\x27\x69\ -\x36\xf9\xe9\xfd\xd5\xcd\x5f\x10\x72\x7e\xce\x4d\x50\x9a\xc8\xd9\ -\xc5\xe5\xca\xf9\x2d\xfd\x5c\x84\xc1\xc6\x38\x6f\x57\x65\xb9\xf1\ -\x67\xb3\xdd\x6e\xe7\xc6\x47\xa2\x9b\xe5\xcb\xd9\x3b\x07\xa1\xf7\ -\x57\x57\x37\xc5\xdd\xf2\xca\x71\x1c\xd8\x37\x2d\xfc\x28\xbc\x9d\ -\x1c\x27\x6c\xb6\x79\x52\x09\x46\xe1\xcc\x24\x66\x6d\xd2\xb2\x98\ -\x11\x97\xcc\x26\x9d\x78\xd8\x89\x87\x76\xf7\xf8\xce\x84\xd9\x7a\ -\x9d\xa5\x45\x35\x33\x2d\xde\xf4\x84\xf3\x68\xd1\x4a\xdb\xd3\xec\ -\x58\x25\x44\xb4\xd6\x33\x4c\x67\x94\x22\x90\x40\xc5\x21\x2d\x83\ -\x3d\x1a\x4e\x85\x33\x8e\x4d\xa5\x18\xe3\x19\xf0\x3a\xc9\xa7\x49\ -\xf9\xfb\x04\x54\x71\xef\x61\x2a\x6e\x7f\x77\x50\xff\x06\xfe\xb6\ -\x13\x1a\x82\x5b\x64\xdb\x3c\x34\x0b\x98\x69\xdc\xd4\x94\xb3\x5f\ -\x3e\xfe\xd2\x32\x11\x76\xa3\x32\xea\x2d\xd3\x68\x7f\xb0\xef\xc0\ -\x24\x69\xb0\x36\xc5\x26\x08\x4d\x31\x6b\xe8\xd5\xfc\x5d\x1c\x95\ -\xab\xdb\x09\xe3\x2e\x61\xf0\x11\x15\x71\x65\xe2\xe5\xaa\x3c\xa5\ -\xc6\xd1\xed\x04\xee\x4a\xb5\xaa\xc7\x3d\x57\x22\xb5\xc0\x71\x61\ -\xbf\xe5\x60\x57\x53\x97\x38\x39\x11\xcc\xab\x65\x9a\x2b\xf8\x51\ -\x16\xda\x33\xc1\x92\x66\x1d\x07\xdb\x32\x5b\x83\x8d\xc3\x30\x09\ -\x8a\x22\x5e\xc4\x21\x0c\xb2\x74\x93\x6c\x97\x71\xfa\x47\x98\xc4\ -\x9b\x3f\xca\x2c\x4b\xdc\x46\xd5\xed\x4e\x66\xbf\xc9\xf2\x12\xed\ -\xa3\x0d\xa8\x50\x7a\xa3\xcc\x43\xc3\x7c\x0f\xdc\x9b\xc8\x2c\x0a\ -\x2b\x55\xdf\xc7\x8e\xe0\x42\x35\x0f\xb8\x60\x1e\x13\xe4\x7f\xcb\ -\x83\x28\x06\xa7\xac\xe5\x7a\x2b\x86\x59\x92\x98\x10\x34\x13\x24\ -\xbb\xe0\x50\x4c\x5a\x01\x58\x6a\x38\x95\x63\x26\x8f\x8b\xc2\xb2\ -\x45\x99\x6d\x1a\x59\xd0\x41\x79\x48\xec\xc5\x81\x88\x60\xc5\x2c\ -\xf7\xdf\xe0\xea\x73\x5d\x91\x32\x30\x53\x5c\x1e\x7c\x72\x3d\xe9\ -\xe6\x64\x8b\x45\x61\x60\x63\xdc\xa3\x55\x06\x81\x19\xb0\x17\x40\ -\x77\xf6\xb2\xdd\xf0\xd8\x6e\x64\x74\x37\x8e\xdb\xdd\x6e\x66\xc3\ -\x6b\x7f\x7d\x35\x52\x75\x91\x1a\xf9\x5c\x93\xe7\xab\x11\x5f\xa8\ -\xc6\xf3\xdd\x2e\x50\x23\xa3\xcf\x54\xe3\x99\x96\x98\x52\xfa\xb5\ -\xb4\xc4\x94\x26\xf7\x6b\xa9\x27\xe5\x8d\x2d\xe8\xca\xda\xf7\xe8\ -\xe4\x39\x27\x7c\x35\xe3\xc0\xf1\xd9\x37\xf2\xf1\x2a\x03\xf8\xab\ -\xdc\x40\xc6\x7a\x33\x62\xc6\x87\xac\xac\x45\xb7\x0c\xb9\x9d\x50\ -\xd9\x0e\x0f\x30\x24\xdd\x70\x4f\x81\xdb\x09\x1f\x60\x48\x3a\x63\ -\x2e\x8f\x0b\x7e\x4a\xe3\x12\xd2\xda\xb6\x30\xf9\x07\x9b\x1a\xfe\ -\x91\x7e\x2a\xcc\x99\xd4\xc7\x3c\x48\x0b\xc8\x43\x6b\x50\x4d\x18\ -\x24\xe6\x2d\x54\x0e\xd2\x7e\xbc\x77\x9d\x8a\x2e\xf1\x54\x74\x59\ -\x60\x7c\xa1\xaf\x22\xfd\x34\x6f\x45\xe4\x7f\xdc\x5f\x7b\x17\xbd\ -\xc8\x63\x4f\x9c\xe3\xd4\x75\x4e\x1c\x6b\xe8\x76\x4f\xf3\xa4\x11\ -\x37\x80\x5a\xe8\xa9\x88\x40\xdd\x76\x8f\x82\x6b\xc4\x67\xa1\xac\ -\xc8\xe3\xfd\x5b\xec\x52\x25\x09\x15\x1e\x9b\x82\xff\x52\x4f\x78\ -\xdc\x9b\xa2\xee\x6b\x8f\x4f\x3d\x17\x2c\xce\x89\x9a\x22\xe1\x2a\ -\xc1\x24\xa6\xe2\x71\x57\x7f\x01\xee\xab\x24\xf7\x60\x29\xc1\x07\ -\x06\x60\xd2\x25\x12\x72\xbe\x1e\x58\x89\xc1\x0d\x3c\x4d\xc4\xc0\ -\x92\x8c\xb9\x4a\x32\xae\x87\xb1\x00\xee\x25\x19\x15\x98\x89\x97\ -\xc7\x84\x4e\xbf\xda\x83\x7b\x50\x50\xa5\xfd\xe3\x0a\xcc\xa9\x04\ -\xb7\x04\x75\x7b\x9e\x56\x58\x8a\x29\xd2\x2e\x25\x1a\x10\xf5\xad\ -\xd5\xc9\xe4\x83\xea\xe4\x74\xa8\x4e\xea\x32\x46\x29\x63\x03\x75\ -\x22\x42\x5c\xe1\x69\xfe\x7f\xa2\xcf\xf1\x0a\x16\xe1\xd7\xac\x61\ -\x91\x78\xdd\x2a\x16\x91\x57\xad\x63\x11\x7f\xcd\x4a\x16\xb1\xd7\ -\xad\x65\xd1\x33\x0b\xa6\x7b\xf0\x73\x0f\xd8\xc6\x81\x39\x0a\xe2\ -\xe7\xe6\x26\x8e\x25\x7b\x6a\x98\x41\x9d\xf6\x5f\x96\x9b\x46\xb1\ -\x4e\xa7\xd0\xe8\x2b\xce\x20\xff\x78\x6a\x0a\xd7\xe6\x9a\x33\xf6\ -\x28\xd6\x2f\xd6\xe8\x79\xe6\x18\x4d\x32\x2f\x50\xa8\x78\x9a\x42\ -\x2b\x8c\xfc\xd7\x14\x7a\x33\xb3\xaf\x01\xd5\xb7\xf6\x95\xc2\x3e\ -\x51\x44\x77\xb1\xd9\x5d\xb5\x97\x9b\x07\xed\x6d\x37\xc1\xd2\x54\ -\xf8\x81\xbb\x2c\xaa\xcf\x91\x31\xcf\xf2\xc8\xe4\x0d\xab\xaa\x96\ -\xe5\x80\x75\x84\x58\xfd\x0c\x77\x35\xbc\xaf\x5d\xb5\xe5\xe3\x71\ -\x7e\xb1\x0a\xa2\x6c\x07\xb5\xd8\x29\xf3\x4b\x96\x81\x1e\xe0\x6a\ -\x44\x7b\x0a\x9f\xb1\xc3\xbd\x05\x10\x73\x99\xf4\x08\x3b\x63\xc2\ -\x7e\x14\xc0\x45\x31\x21\xe4\x8c\xb9\xcd\x73\x50\x36\x4a\x82\x83\ -\x81\x4b\x55\xff\x34\x42\xc5\x2a\xdb\x2d\x73\xab\x9c\x32\xdf\x9a\ -\xd3\x99\x96\x83\xe6\xf3\x6c\x3f\xce\x8e\xb2\x70\x6b\x5f\x00\xd1\ -\xb6\xf6\xab\xcd\xbe\xbf\xea\x36\x8e\x4c\x31\x3e\xb1\x48\x83\x0d\ -\x5a\x26\xd9\x3c\x48\xc6\x05\x76\x71\x0a\x4a\x42\xc7\x27\x2e\xc2\ -\x5a\x1b\x9c\x4a\x34\xef\x5d\x1e\x56\xf7\x48\xec\xbb\x40\x7b\xca\ -\x3a\xdc\xcf\x5a\x07\xfb\x78\x1d\x7f\x31\x51\x17\x36\x3b\xad\xd8\ -\x9b\xf5\xd5\x72\xc4\xf4\x40\x6d\x8d\xab\x97\x07\xfb\xb6\xb7\x3f\ -\x58\xda\x00\x69\x96\x40\x75\xaf\xd7\xce\xf2\x78\x19\xa7\xfb\x7e\ -\x5e\xa8\x49\x87\x3e\xc9\xbe\x04\xc6\xe9\x72\x5f\xf9\x5f\xdd\xcc\ -\x9d\xf2\x0e\x7d\x5e\x03\x90\x73\x5c\x54\xf4\xb5\x29\x83\x28\x28\ -\x83\x0e\x24\x0d\x05\xce\xd6\x94\x10\x37\x79\xb4\xf0\xff\xf9\xcb\ -\xaf\x6d\x4e\x0a\x43\xff\x5f\x59\xfe\xb9\x4b\x27\x56\x20\x98\x67\ -\x5b\xb0\x44\x9b\x29\xed\x8b\x5d\xe8\x5b\x74\x07\xe5\xfb\x78\x0d\ -\xae\x6f\xdf\x5b\xff\xba\x5f\x27\x00\xd7\x96\x31\x10\xb6\xca\xea\ -\x16\xad\x97\xcd\x4d\xfd\x9e\x3a\xfa\x04\x1d\x85\xeb\xd8\x4e\x9a\ -\x7d\x28\xe3\x24\xf9\xcd\x6e\xd2\xcb\x9d\xc7\x45\xe3\x32\x31\xbd\ -\x84\x3a\x3b\x9e\xbe\xc9\x78\xbd\xcb\xdd\xcc\x9a\xdb\x57\xa3\x65\ -\xa7\x95\x01\x68\x5a\x43\x27\xc1\xdc\x80\x07\xff\x6e\x99\xce\xb9\ -\x9f\xe4\xd9\x76\xb3\xce\x22\x73\x9c\xde\x68\xd3\x24\x49\xbc\x29\ -\xda\x8b\x1e\x53\xfa\xb0\x34\x8a\xe2\x62\x03\x93\xfc\x38\xb5\x91\ -\xf6\x3a\xbb\x33\xf9\x22\xc9\x76\xfe\x5d\x5c\xc4\xf3\xc4\x5c\x57\ -\xff\xc6\x89\xcd\xf5\x0d\x69\x01\x1a\xf0\xd3\x0c\xa4\x8b\x32\xcf\ -\x3e\x1b\xff\x8d\x16\x86\x2d\x16\xc7\x61\x0d\x26\x9f\xba\x92\x08\ -\xca\x09\x16\x0d\xdd\x6e\x00\xe7\xf5\xe7\xdb\xb2\xec\xd3\xfe\x9d\ -\xc5\xa9\x0f\xea\x35\x79\x43\xad\x06\x09\xe0\xa2\xf4\x79\x43\x8b\ -\x02\x08\x68\x79\x0e\x47\xed\x6d\x5d\x51\xeb\xb2\xc3\xc7\x0d\xad\ -\xab\x85\xd6\x41\xfe\xd9\xe4\xf5\x04\x93\x06\x70\x78\x34\x0f\xc2\ -\xcf\x56\x5f\x69\xe4\x07\x21\x44\x95\x6d\x12\x94\xc3\xcc\xb4\x09\ -\xca\x15\xc3\x5c\x22\x81\xb8\x2d\x59\x5a\x80\x8d\xe4\x10\xad\xa4\ -\x82\x48\xc8\x20\x7f\x10\x49\x34\x93\xca\xa6\x0f\x88\xab\x94\x30\ -\x41\xa7\x56\x00\x4a\x00\x2c\xa4\x4d\x31\xef\xda\xa5\x6c\x88\xd5\ -\xae\xe4\x98\x68\xd1\xb5\x75\x36\xb6\x42\xdc\x05\xaa\xa4\x5d\x8e\ -\xcb\x41\x96\xbb\x0c\x4b\xdd\x95\x55\xf9\xc1\x66\x64\x48\x51\x12\ -\xb6\xe9\x72\xbd\x3d\xf9\x83\xc6\x5e\x64\x10\x43\x2b\x0e\xe8\x04\ -\x50\x91\xd4\x94\xbb\x20\x8f\x83\xb4\x1c\xd0\x76\x55\xbc\x1b\x90\ -\x40\xbd\xa6\x0c\x57\x43\x1a\x84\x2e\x1f\x70\x1e\x6f\xd7\xd7\xd6\ -\x96\xc7\x38\x39\x90\x59\x04\xeb\x38\x39\xf8\x1f\x40\x7d\xd7\xa8\ -\x71\x5a\x54\x4f\xdf\x98\xb0\x7d\xca\xaf\x25\x4a\xb3\x2f\x41\x2a\ -\x82\x70\x0f\x26\xad\x46\x41\x12\x2f\x53\xbf\x28\x83\xbc\xac\x09\ -\x11\xa4\xd4\xbc\x9e\x53\xd9\xf6\x84\x58\x79\x55\xcd\x49\x4c\x09\ -\xae\x84\x8e\x01\xab\x39\xd6\x0e\x12\xec\x29\xad\x5a\xa3\xb5\x71\ -\x3d\x7b\x97\xc7\x25\x88\x20\x8b\x2d\x3f\xc9\x51\x39\x07\xbc\xe4\ -\x50\x68\xd8\x9d\x93\x32\xbf\xb6\x89\xbe\xba\x76\xb1\x8a\x17\xa5\ -\xdf\x0c\x8f\xc7\x4e\xc3\x15\x28\xbf\x3e\xf7\x73\x71\xd6\x60\xcb\ -\x0e\x7a\x9e\x7d\x44\x5e\x1f\x0a\x35\xec\xc0\x7f\xa4\xe7\x31\x46\ -\xf8\xe5\xde\x0f\xce\xff\x77\x87\x81\xd3\xda\x1f\x74\xa0\x8b\xc4\ -\x6e\x1d\xdb\x9d\x9f\x1d\x42\xa7\xd6\x35\x2b\x86\x03\x8c\x2a\xea\ -\x7b\x96\xa6\x4f\x87\xbf\x5b\x82\x9c\x12\xcf\x65\xb5\x78\xe8\x80\ -\xf3\x3b\x84\xbb\x50\x5b\x51\x57\xd5\x44\x0a\x55\x56\x3d\x09\x41\ -\x6d\x59\xed\xe3\xd0\x66\x67\x04\x0d\xac\xc3\xad\xb4\x57\x1f\x00\ -\x40\x25\x2c\x87\x5b\x69\xee\x7c\x39\x07\xac\x92\x14\x75\x25\x64\ -\xaf\x30\x4c\x21\xe8\x94\x59\x8e\xa0\x38\xb9\x0b\xca\x6d\x6e\x06\ -\x49\xae\x4d\x56\x60\x61\x1b\xdf\xa1\x8e\x08\xed\xe7\x07\xa8\xbe\ -\x67\x50\x41\x62\x7f\x7b\xfa\x8c\xa8\xb5\x7e\xf7\x7a\x28\xa3\xbc\ -\x76\x68\x36\xa5\xb2\x87\x32\xe9\x7a\x0a\x30\x30\xd5\x90\x4e\x34\ -\x13\x0c\xc0\x25\x5c\x45\x09\x91\x6c\xea\x01\xfc\x28\x16\xdc\x1b\ -\xa5\x01\xea\x20\xe3\x0a\xe9\xd1\xa9\xb2\xc8\x52\x58\x37\xc8\x93\ -\xb0\x95\x12\x9c\x4f\x41\x42\x43\xc6\x81\x93\x3b\xca\xf5\x38\x87\ -\xee\x67\x4a\xb4\x4b\x21\x8f\x78\xd8\x03\xf8\x71\xca\x05\x87\x23\ -\x41\xed\xaf\x15\x51\x0e\x73\x3d\xa6\x28\x50\x98\x0b\xe5\x3e\x85\ -\x33\xc2\x17\x06\x1d\x34\xb1\x10\xe5\x54\x28\xc2\xee\x03\xa3\xf7\ -\x2d\xc0\x68\xdd\xe4\x04\x8c\x75\x94\xc4\x58\x88\x88\x9f\xda\xaf\ -\x1a\xe6\x5b\x40\xa6\xb9\x33\xb0\x6a\xd4\x56\x2c\xed\xc3\x50\xcf\ -\xa8\x04\x7a\x5c\xa6\x15\x97\xf2\xf2\x3a\xa4\xdd\x73\xa0\x0c\x7b\ -\x5c\x28\x6f\xbb\x1a\xa2\xe9\x33\xc0\x54\x58\x41\x91\xd0\x32\x9a\ -\xf6\x02\x42\x27\x17\x94\xf4\x1e\x73\x6f\x27\x12\xbc\x42\x50\xd1\ -\x7f\x71\xbf\x9d\x08\xb0\x84\x86\x76\x55\x0c\x0a\x05\xe8\xcc\x30\ -\xf5\x14\xf7\x06\xa5\x02\x50\x15\xe1\xbd\x27\xfa\xf3\x52\x86\x40\ -\x81\x62\x1b\x5f\xc1\x3c\x09\xa2\xb6\x1f\xa6\x10\xd4\x39\x78\xcd\ -\xa0\x72\x79\xf0\x57\xf5\x31\x81\xf6\x97\xf5\x87\x02\xea\x79\x45\ -\x39\x66\x1f\x48\x4c\x84\x60\x70\x78\xb6\xd9\x5f\x5e\x53\x9e\x5b\ -\xc8\xf6\x20\x0e\x34\xb3\xec\x08\x44\x0f\xbc\xbd\xca\x4d\x50\x9a\ -\x01\x06\xaa\xff\xd6\xc0\xcf\x9c\x9b\x63\x2d\x91\xba\xc0\xbd\x47\ -\x9d\xf7\x7e\x0b\x60\xe2\x81\x01\x95\xb5\x80\xf6\x24\xd4\x91\x27\ -\x16\xa8\x0d\x2a\xc1\x53\xb9\x7c\xcc\xf8\xb6\x4c\xd4\x2e\xd3\x44\ -\xf5\x7f\x4b\xa9\x9c\x07\xb6\x61\xbd\x47\xee\xd6\xff\x88\x4b\xa8\ -\x56\x8f\x3b\x6c\xe3\xde\xe0\x2f\xbd\xbe\x70\x08\xc9\x20\xb0\xe9\ -\xf1\x65\x90\x24\x15\x20\xf1\x8b\x20\xf9\xe7\x77\x3d\x9b\x4f\xaa\ -\x1c\xd0\x73\x3d\x76\x8f\xeb\xbd\xcc\xf1\x06\x26\x5a\x2c\xea\x0a\ -\xe6\x85\x26\x62\x5a\x08\x45\xbf\x66\xd0\x04\xaf\xd2\x17\x04\x4d\ -\xe2\x42\x24\x24\xbd\x58\x68\x7b\x26\x6a\xf3\xaa\x92\xb2\x8f\x06\ -\xaa\x5c\xaa\x25\xeb\x39\xf8\x43\x51\xd3\xd3\x9a\x42\x83\xf7\x78\ -\xd8\xf4\x04\x66\x0a\x00\x35\xb5\x15\x33\xc1\x98\xdb\xaf\x16\xb4\ -\xad\x09\xbe\x65\x2b\x3e\x52\xcd\xd8\x1f\xb0\xee\xab\x66\x46\xc5\ -\x19\x7f\xf7\xdd\xb5\xef\x0f\x76\xee\x10\x59\xa1\x66\xf0\x34\x98\ -\xcc\x53\x4c\x61\x08\xb6\x75\xf8\x15\x50\x0c\xc9\x2a\xfa\xda\xb7\ -\x71\xe5\x9d\x77\xee\xf6\x51\xd8\xfe\x90\xd0\x79\x96\xed\xdc\x11\ -\xd4\x71\x5a\x41\x29\xf5\xa3\x73\xff\xd1\x64\xdc\xd7\x64\x28\x2d\ -\x5e\xb1\xc9\x60\x4d\x03\x6f\x7f\xc7\x20\xb6\xbf\x20\xc7\x12\xc7\ -\x76\xea\xaa\xc9\x38\x6a\x0a\xbd\x39\x6b\x4a\x9f\xfe\x28\x71\x70\ -\xd3\xa6\x1c\x9b\x7f\x3e\xd6\xcd\xf3\x91\x6e\xde\x7b\x42\x37\xcf\ -\x1e\xea\xe6\xbf\x45\xfb\xf0\xea\x51\x58\xb2\x8b\xa2\xb0\x14\xdf\ -\x5f\x14\x46\xbd\x2a\xf3\x2b\x3f\xa1\x42\xa3\x4b\x30\xd3\xbd\x4a\ -\xa9\x7a\x42\xe5\x50\xdc\x42\x10\x17\x5f\x29\x10\xff\x29\x2a\x44\ -\xdb\xa6\x3f\x5e\x1c\x5e\x58\x1a\xde\xcc\x96\xef\xaf\x6e\xec\x8f\ -\x25\xef\xaf\xfe\x03\xc5\x8d\xf3\xce\ -\x00\x00\x0e\x9e\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x65\x6c\x65\x63\ -\x74\x5f\x61\x6c\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ -\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x78\x3d\x22\x32\x2e\x36\x34\x36\x39\x32\x38\x38\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ -\x31\x36\x2e\x37\x30\x39\x34\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ -\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ -\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ -\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ -\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ -\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ -\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ -\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ -\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ -\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ -\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ -\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ -\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ -\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ -\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ -\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ -\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ -\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ -\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\ -\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\ -\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\ -\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ -\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ -\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x64\x34\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x38\ -\x35\x31\x33\x39\x32\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ -\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\ -\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ -\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ -\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x32\x39\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x35\x2e\x33\ -\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x32\x2e\x32\x38\x32\x39\x32\x37\x33\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ -\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ -\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\ -\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\ -\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ -\x66\x64\x34\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x32\x2e\x33\x38\x35\x31\x33\x39\x32\x33\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ -\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\ -\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ -\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ -\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x35\x2d\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x32\x38\x32\x39\x32\ -\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\ -\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ -\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\ -\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x64\x34\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x38\x35\x31\ -\x33\x39\x32\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\ -\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\ -\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ -\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x32\x39\x39\x35\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x34\x2e\ -\x35\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x32\x2e\x32\x38\x32\x39\x32\x37\x33\x22\x20\x2f\x3e\x0a\x20\ -\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x08\xc4\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x74\x72\x61\x69\x6e\ -\x69\x6e\x67\x5f\x69\x6e\x70\x75\x74\x2e\x73\x76\x67\x22\x0a\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\ -\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\ -\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\ -\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ -\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\ -\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\ -\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\ -\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\ -\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\ -\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x34\x2e\x39\x31\x38\x38\ -\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x79\x3d\x22\x32\x31\x2e\x39\x38\x36\x31\x39\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\ -\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ -\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ -\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ -\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\ -\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ -\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ -\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ -\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ -\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ -\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ -\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ -\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ -\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ -\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ -\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ -\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ -\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ -\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ -\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\ -\x35\x30\x31\x32\x38\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ -\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\ -\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ -\x3d\x22\x35\x2e\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\x37\x38\x35\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x10\xf7\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x74\x63\x68\ -\x5f\x63\x68\x65\x63\x6b\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ -\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\x78\ -\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\ -\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ -\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x38\x39\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ -\x6f\x6c\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\x74\x6f\ -\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ -\x74\x6f\x70\x33\x37\x39\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x39\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ -\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x34\ -\x31\x31\x37\x36\x34\x37\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ -\x70\x33\x37\x39\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\ -\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\x65\ -\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ -\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\ -\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ -\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ -\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\x70\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\x39\ -\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ -\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ -\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x36\x39\ -\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x61\x31\x61\ -\x39\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x37\x31\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ -\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x2e\x36\x34\x33\x38\x33\x35\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x37\x36\x63\x36\ -\x63\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x30\x2e\x34\x39\x38\x30\x33\x39\x32\x32\x3b\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\x63\x65\x63\x65\x63\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ -\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x73\x74\x6f\x70\x33\x37\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ -\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x66\x69\x6c\x74\x65\x72\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\ -\x6f\x6c\x6f\x72\x2d\x69\x6e\x74\x65\x72\x70\x6f\x6c\x61\x74\x69\ -\x6f\x6e\x2d\x66\x69\x6c\x74\x65\x72\x73\x3a\x73\x52\x47\x42\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x66\x69\x6c\x74\ -\x65\x72\x34\x35\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x2d\x30\x2e\x30\x32\x33\x37\x34\x38\x36\x32\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x2e\ -\x30\x34\x37\x34\x39\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x2d\x30\x2e\x30\x32\x34\x32\x35\x36\x37\x35\x37\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x31\x2e\x30\x34\x38\x35\x31\x33\x35\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\ -\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x64\x44\x65\x76\x69\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2e\x32\x37\ -\x39\x32\x33\x37\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\ -\x6c\x75\x72\x34\x35\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x2f\x66\x69\x6c\x74\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ -\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ -\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ -\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ -\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x78\x3d\x22\x2d\x39\x34\x2e\x30\x33\x34\x39\x39\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ -\x3d\x22\x2d\x36\x2e\x35\x33\x38\x34\x34\x37\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ -\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ -\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\ -\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ -\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ -\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ -\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ -\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x65\x33\x64\x62\x64\x62\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x33\x31\x32\x35\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ -\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x74\x65\x72\x3a\x75\x72\ -\x6c\x28\x23\x66\x69\x6c\x74\x65\x72\x34\x35\x30\x35\x29\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\ -\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x32\x37\x2e\x35\x38\x37\x33\x31\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x2e\ -\x31\x37\x39\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x3d\x22\x2d\x33\x30\x2e\x30\x36\x39\x36\x34\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x39\x33\x30\x30\x32\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x39\x30\x2e\ -\x30\x38\x33\x30\x39\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x31\x32\x66\x66\x32\x32\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x39\x39\x39\ -\x39\x39\x37\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x64\x3d\x22\x6d\x20\x34\x2e\x37\x39\x32\x32\x32\x36\x32\ -\x2c\x31\x34\x2e\x31\x39\x37\x30\x34\x33\x20\x63\x20\x30\x2c\x30\ -\x20\x38\x2e\x36\x38\x39\x38\x39\x33\x38\x2c\x31\x36\x2e\x33\x36\ -\x33\x30\x30\x38\x20\x39\x2e\x33\x37\x31\x38\x32\x38\x38\x2c\x31\ -\x32\x2e\x35\x33\x36\x38\x37\x33\x20\x43\x20\x31\x37\x2e\x39\x37\ -\x32\x39\x38\x34\x2c\x35\x2e\x33\x36\x33\x31\x37\x38\x33\x20\x32\ -\x38\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\ -\x36\x32\x20\x32\x38\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\ -\x39\x38\x31\x35\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x34\x35\x30\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ -\x63\x73\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ -\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\x9e\ -\x00\ -\x00\x24\x4e\x78\x9c\xe5\x59\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x60\ -\xe5\x97\x04\x15\xa9\x73\xbf\x28\xb6\xf7\xa1\x8b\x2d\x16\x68\x51\ -\xa0\x9b\xa0\x8f\x0b\x8a\xa4\x6c\x36\x14\x29\x90\x94\x25\xe5\xd7\ -\xf7\x3b\x94\x48\x91\x92\x6c\xcb\xb1\x5b\x6c\x50\x05\x41\xc8\x33\ -\x73\x6e\x33\xdf\xcc\x7c\xc3\xdc\xfc\xb4\x59\x64\xde\x63\x52\x56\ -\x69\x91\xdf\x8e\x68\x40\x46\x5e\x92\x47\x45\x9c\xe6\xf7\xb7\xa3\ -\x2f\x9f\x7f\xf1\xcd\xc8\xab\xea\x30\x8f\xc3\xac\xc8\x93\xdb\x51\ -\x5e\x8c\x7e\xba\xbb\xba\xf9\x93\xef\x7b\x7f\x29\x93\xb0\x4e\x62\ -\x6f\x9d\xd6\x0f\xde\xaf\xf9\xd7\x2a\x0a\x97\x89\xf7\xe1\xa1\xae\ -\x97\xd3\xc9\x64\xbd\x5e\x07\xe9\x7e\x30\x28\xca\xfb\xc9\x47\xcf\ -\xf7\xef\xae\xae\x6e\xaa\xc7\xfb\x2b\xcf\xf3\xb0\x6f\x5e\x4d\x8b\ -\x6a\x76\x3b\xea\xcd\x28\x96\x49\x5e\xad\xc3\x3a\x7a\x98\x15\xc5\ -\xd7\x66\xde\xaa\x4c\x27\x8c\x10\x3b\x81\xee\xe8\x30\x33\x8e\xba\ -\x89\xcb\x55\x99\x35\xaa\x71\x34\x49\xb2\x64\x91\xe4\x75\x35\xa1\ -\x01\x9d\xf4\xd4\xa3\x83\x7a\xe4\xce\x9d\x3e\x26\x51\xb1\x58\x14\ -\x79\xd5\xcc\xcc\xab\xeb\x9e\x72\x19\xcf\x07\xa7\x5a\xf3\x46\x89\ -\x5a\x6b\x27\x84\x4d\x18\xf3\xa1\xe1\x57\xdb\xbc\x0e\x37\xfe\x70\ -\x2a\x6e\x77\x6e\x2a\x2e\x40\x26\x90\x1d\x34\x2f\xd3\x9a\x6e\x32\ -\x18\xf1\xc9\xc3\x34\xd2\xfe\xee\x70\xdc\x12\x7f\xbb\x09\xed\x40\ -\x50\x15\xab\x32\x4a\xe6\x98\x99\x04\x79\x52\x4f\x7e\xfe\xfc\x73\ -\x27\xf4\x49\x10\xd7\x71\x6f\x99\xd6\x6f\x83\x7d\x07\xce\xcc\xc3\ -\x45\x52\x2d\xc3\x28\xa9\x26\xed\x78\x33\x7f\x9d\xc6\xf5\xc3\xed\ -\x88\x8b\x80\x72\xfc\x64\x33\xf8\x90\xa4\xf7\x0f\xf5\xf1\x68\x1a\ -\xdf\x8e\x70\x57\x66\xad\x6e\xde\x7b\x20\xa4\x3b\x85\xfd\xc2\xd3\ -\x4e\x42\x02\xcb\x02\xea\x95\x54\x72\xbd\xd3\x69\xaf\x30\x8d\x8b\ -\xc8\x9d\x09\x4b\x26\x8b\x34\x5c\xd5\xc5\x02\x3e\x8e\xa2\x2c\xac\ -\xaa\x74\x9e\x46\x78\x29\xf2\x65\xb6\xba\x4f\xf3\xdf\x17\xd0\xaf\ -\x7e\xaf\x8b\x22\x0b\x5a\x5b\x77\x5b\x25\x9b\x65\x51\xd6\xfe\x26\ -\x5e\xc2\x86\x4a\x9f\x15\x6e\x5b\xe1\x1d\xa4\x37\xdd\x09\xdc\xf6\ -\xf1\x63\x9a\xac\xdd\x9c\xdd\xf5\x66\x61\xb5\x33\x8b\xe7\x2d\xc3\ -\x7b\x00\x2e\x2b\xca\xdb\xd1\xf5\xbc\xf9\xed\x05\xb3\xa2\x8c\x93\ -\xb2\x15\xa9\xe6\x37\x10\x15\x30\x73\x5a\x6f\x77\xc1\xb9\x5f\xbb\ -\x3d\x91\x5b\xb5\x93\x93\xf3\xf2\xea\x21\x8c\x8b\xf5\xed\x88\x1d\ -\x0b\xbf\x15\xc5\xe2\x76\x64\x8e\x87\xa3\xcd\xed\xc8\x17\x32\xa0\ -\x52\x68\x23\x4e\xa4\xee\x20\x2a\x10\x84\x13\xab\x4e\x84\xab\xb2\ -\x44\xf0\xf9\x59\xb8\x4d\x70\x9b\xe6\x1f\xba\x57\xaa\x1e\x8a\xf5\ -\x7d\xe9\xac\x52\x97\xab\xe4\x78\xa6\x93\xf8\xb3\x59\xb1\x39\x2f\ -\x86\x77\x57\x2e\xac\xfd\x55\x9e\xd6\x08\x9d\xe5\xa6\xbf\xea\x2a\ -\x8d\x93\xea\xfc\xc4\x2a\x0f\x97\xfe\x7d\x56\xcc\xc2\xec\xbc\xc2\ -\x3a\xcd\x61\x1d\x7f\x8f\x5b\xca\xd5\xc9\xa5\xf6\x1a\x2d\x88\x35\ -\x39\xb1\xd8\x5e\x03\x67\x3f\x71\xc0\x5e\xb4\x7d\x5a\xb4\x08\x37\ -\xe9\x22\xfd\x96\xc0\x30\xb4\x41\x14\x30\x35\x30\xcb\x6e\xda\x0e\ -\x50\xee\x9d\x13\x22\x47\xed\x60\xbd\x75\x51\xba\xd9\x3a\x41\x37\ -\x58\x94\x29\x70\xde\x3b\x4e\x3b\xb4\xed\x0f\xb9\xf0\x45\x96\xdf\ -\x34\xc0\x6a\x60\xa7\x8f\x65\xdb\xbe\xcc\x9b\x34\x78\x9f\x9c\x02\ -\xbe\x19\x8f\x93\x79\x75\x40\xbe\x7b\x43\x64\xdb\xf6\x46\xc8\x53\ -\x49\x58\xfe\xb5\x0c\xe3\x14\x6e\xec\x5f\x69\x28\x91\x46\xb6\x73\ -\x5c\x6c\xd5\xc5\xb2\xd5\xc5\xa1\xea\x6d\xe6\x02\x1c\x83\x7e\x13\ -\x2f\xd3\x6b\x1b\x85\x21\x21\x9f\x9a\xa1\x7d\x1c\x4c\xe9\xa7\xd1\ -\x61\x4e\x31\x9f\x57\x49\xdd\xbf\xf6\x3e\xf1\x60\x86\x34\x8a\xee\ -\x6f\x75\xe1\x6e\x94\xc7\x74\x76\xc1\x6e\xf4\xfc\x6e\xbc\xdb\xed\ -\x66\x32\xbc\xf6\xab\xad\xc4\x0e\x5b\xa0\x2c\x22\xce\xd3\x1c\xfb\ -\x56\x45\x06\x18\x5c\x7e\xa1\xb9\x42\xc1\x39\x32\x1f\x09\xb4\x31\ -\x8c\x4b\xfe\x0a\x3b\xb2\x77\xbc\x19\x95\xef\x72\xb3\xf9\x4c\xcf\ -\xf4\x77\x03\x83\xea\xef\xbc\x50\x97\x09\x8b\x2c\x4b\x22\xac\x1f\ -\x66\xeb\x70\x5b\x75\x9b\x34\x05\x7b\xfa\x50\x26\x20\x18\xd7\x67\ -\xa0\xff\x9c\x65\xd4\xc1\x32\x1b\x0a\x90\xd1\x40\x53\xa1\x7a\xc9\ -\x60\x4b\x9b\x22\x40\x25\x25\x44\x74\xd9\x19\xda\x0c\xb5\x97\x06\ -\x86\x10\x46\xf8\x41\x9b\x9d\xd7\xbe\xdf\x6f\xf8\x65\x97\x6a\x57\ -\x55\x52\xfe\xe6\x2a\xfd\x3f\xf2\x2f\x5d\x35\x3b\x68\x7d\x2e\xc3\ -\xbc\x02\xad\x40\x25\x41\xc5\x2d\xd3\xcd\x07\x12\x18\x21\x19\xa5\ -\xd2\x8e\x41\x2c\x94\x24\x0a\x78\xa2\x63\x12\x08\xcb\x99\x62\x42\ -\xe1\xd1\x0a\xa9\x95\xa0\xd0\x90\x01\xd3\x52\x50\xae\xc7\x38\x21\ -\x93\x12\x73\x3f\x1e\x6c\xff\x8a\x80\xd0\x3e\xf1\x9f\x4c\x1d\x3d\ -\xa8\x5a\x5f\xfb\xf4\x05\x20\x9c\x01\x14\x21\xf3\x30\x0e\x4f\x00\ -\xf5\x64\xfa\x38\xec\xc8\x29\x4e\x66\x5e\xc8\x12\x67\x83\x73\x3e\ -\x3f\x09\xce\x4f\x2f\xe1\xd2\xbd\x85\xd9\xfb\xe2\x72\x6f\xdb\xbe\ -\xf9\x87\xdb\x70\x23\xf5\xbb\xe1\xc7\xe7\x01\xe3\xcd\x9f\x31\x0b\ -\x80\x0c\xa1\x8c\x03\x92\xa1\x44\x59\xc6\xdc\x23\xd0\x63\x88\x06\ -\xbe\xb4\x08\x14\x02\x80\xa9\xb1\x6f\x80\x3a\x61\x34\x17\x1f\xbb\ -\x2d\x1c\x91\xa1\x32\x38\xc4\x47\xc3\x5d\x74\xa0\xad\x30\xf6\x70\ -\xde\xf9\xb1\xda\xfc\xac\x1a\xf8\x0c\x35\x81\x54\x4c\x76\x95\xd0\ -\x15\xb9\xe6\x69\x91\xd4\x00\x47\x1d\x1e\xea\x5f\x3b\x82\x62\xcd\ -\xda\x1a\x88\x9e\x61\xfa\xcf\x9f\x7f\xe9\x00\x13\x45\xd3\x7f\x15\ -\xe5\xd7\x03\x08\x9c\x42\x38\x2b\x56\x70\x4f\x07\x64\x57\x59\xa3\ -\xa9\x33\x50\x58\xdf\xa5\x0b\xf0\x39\xd7\x20\xfc\x19\x3c\x1d\xfb\ -\x77\x82\x81\xb2\xe3\x04\x87\x45\x77\xcb\x96\xc9\xae\x01\x38\xdb\ -\x33\xc5\xd1\x22\x75\x93\x26\xbf\xd5\x69\x96\xfd\xea\x36\xe9\x01\ -\x7b\xbf\x68\x5a\x67\x49\x0f\xed\x93\xfd\xe9\x5b\x30\xf6\x2e\x77\ -\x33\x69\x6f\xdf\xbc\xdd\x9f\x50\xbd\x62\xb5\x04\x07\x4f\xf6\x04\ -\xf1\x98\x17\x65\xe1\x2c\x01\x59\xfb\x9b\x93\x79\x6d\x8c\x34\x21\ -\xbf\xa3\x93\xfb\x1d\x93\x2c\x4b\x97\x55\x77\xd1\x7d\x00\xcd\x71\ -\x81\x29\xae\xf6\xe1\xfa\x14\xa1\x1f\x3f\x39\x69\x2f\x7a\x9b\xd7\ -\x72\x95\x81\xd9\x3f\x26\x79\x11\xc7\x08\xb6\xb2\xf8\x9a\xb8\x68\ -\xdf\x17\x46\xf7\xba\x23\x87\xd3\xee\x15\xc6\x4a\xca\x0c\xa4\xad\ -\x9e\x8a\x76\x2c\x0e\x41\xb3\xcb\x32\xdc\x4e\x73\xb4\xc9\xed\x68\ -\xb7\xd5\x20\x76\x96\x61\xfd\xa0\x14\x67\x43\xa0\x92\x5d\x6f\xc4\ -\x87\x68\x45\x8e\x77\x83\xe2\x00\x43\xe8\xb2\xde\x2b\x94\x18\xc2\ -\xe4\x90\x16\x4a\x84\xf7\x39\xa3\x5c\x73\xcd\x75\x64\xde\x68\x83\ -\x80\x52\x63\x95\xe0\xea\xbd\x8c\xe1\x8e\x2b\x98\x24\xfe\xa1\x00\ -\xb5\x5c\x1c\x5d\x86\x65\x42\x1c\xf4\x5b\x0a\x6e\x03\x45\x49\xbf\ -\xbe\xa1\x61\xe1\x26\x20\x1a\xf1\xdf\xab\x86\x18\x85\x55\x8d\xb2\ -\xaa\x37\xea\x0c\x26\x9a\x5b\x18\x66\x06\x56\x05\xd3\xe5\x44\x6b\ -\x7d\x58\xb7\x3e\xcd\x4d\x6e\x3d\xa9\x2d\xb4\x5c\x22\x92\x84\x70\ -\x2b\x88\x41\x45\x63\x42\xa3\x9e\x59\xda\xe4\x27\x65\x2c\x31\x5c\ -\x8e\xc9\x98\x1c\xd2\x51\x07\xf0\x6e\x59\x3f\x02\x32\x93\xd2\x35\ -\x0e\x8c\x06\x92\x19\xc2\xf8\x05\xea\xcd\xc5\x68\xc0\x51\x59\x65\ -\x8f\x78\x39\x58\x3d\x19\x0d\xa7\x5c\xe2\xad\xd1\x10\x10\x58\x96\ -\x0a\xaa\x9f\x43\xc2\xa9\xcf\xe1\xf2\xbf\x7b\x2a\x90\x70\xad\x95\ -\x72\x4c\x45\x60\x35\xa1\x94\x7a\xc8\xb8\x46\x2a\x8a\x0c\xaf\x5c\ -\x24\x10\x3c\x7a\x91\x07\x63\x1a\x45\x84\xb3\xaa\xd6\xee\xbe\xc6\ -\x63\xe0\x14\x5c\x52\x3a\x76\x75\xc2\x82\xaa\x29\x8f\x07\x9c\x31\ -\x61\xe5\x58\x04\xcc\x6a\x61\x88\xf1\x32\x0f\x16\x95\x82\x58\xe1\ -\xaa\x88\xd4\x30\x6d\xb3\x9c\x82\x6f\x0c\x1f\xc3\xd9\x60\x20\x8a\ -\xbb\x11\x4b\x80\x26\xac\x26\x90\x23\x38\xf7\xb0\x15\x8e\x66\x39\ -\x75\xab\x49\xc5\x2d\xd6\x6a\xec\x0d\x22\xc3\xf4\x18\x85\x86\x6b\ -\x22\xb1\x98\x4f\x1b\x39\xc5\xf1\xdc\x31\xa9\xf5\x5c\xe9\x52\x8a\ -\x81\xda\x8c\x1d\x0b\x62\x54\x60\x6c\xbf\x0a\x69\xe8\x50\xb3\x32\ -\xf3\x00\x0c\xcf\x67\x01\x65\x98\x25\xdd\x38\x15\xda\x2a\xed\xc6\ -\x10\x5e\x5c\x11\x3e\xc6\x3c\xf4\xdf\x5c\xb8\xf3\x68\x65\xa8\xc2\ -\xa2\x18\x83\x65\x38\x6e\x4c\x03\x04\x86\xa0\x84\x3a\x06\xc5\x25\ -\xb3\x54\xc1\x30\x52\x33\x62\x41\xa5\x7c\x05\xd3\xe0\x20\xcc\xfb\ -\x76\x26\xd8\x84\x3c\x05\x59\x54\xe4\x39\x84\x45\xe9\xa3\x87\x7f\ -\x0c\xeb\x55\x99\x0c\x7a\xc5\xae\xe7\x43\xde\x76\xa5\x02\x85\xbd\ -\x6a\x7e\xd1\xb7\xea\x65\x08\xf6\xd2\xc0\x53\x68\xe2\xac\x19\x66\ -\xed\xb8\x03\x2c\x4e\x36\x9d\xad\xea\xba\x3f\xf6\xef\x22\xcd\xa7\ -\x0d\xd4\xde\x23\x03\xed\xd1\xe8\xf2\x86\x02\x47\x65\x32\x50\x46\ -\x12\xcd\x3d\x94\x7a\x6a\x08\x37\x66\x8c\x34\x64\xc4\x30\x32\xf7\ -\x39\x5c\x9a\x5e\x0e\x7a\xc9\x92\x3f\xb8\x8d\x00\x62\xcd\x11\x96\ -\xd2\xd9\xc3\x4a\xc2\x05\x22\x16\xa4\x49\x5b\x00\x1a\x31\x41\x29\ -\x67\x96\xa8\xb3\x36\xf2\xcf\x24\xb5\x97\xac\xf4\x64\x15\x4b\x94\ -\xfb\xf3\xe6\xdc\x85\x04\xae\x91\xc6\xdf\xb3\x8a\x49\xc4\xa0\x2f\ -\x8e\xab\x98\x0c\xac\x45\x9b\x46\xc4\x49\x15\x43\xae\x40\xf0\x5b\ -\xcd\x07\x75\xcc\x01\x4f\x2b\xab\x69\xbf\x8e\x21\xfb\x48\xae\xe8\ -\x90\x05\x20\x2d\xa0\x6d\x43\xed\x1c\x16\x37\xc7\x99\x85\x42\x3a\ -\x7a\xa6\x8c\x11\xf7\xfd\x4e\x12\x21\x9b\xc4\x8a\x2c\xee\x0a\x5a\ -\x93\xc5\x28\xa7\x9a\x59\xf7\x28\xc0\xb0\x35\x43\x16\xbc\xbc\x88\ -\x21\xfd\x09\x8e\x73\xea\x0b\x8b\x18\x72\x24\x11\x42\xd1\x7e\x15\ -\xfb\x61\x1d\xdf\x6b\x90\xbe\xd7\xf5\xe8\x66\xc0\x77\xf4\x80\xc2\ -\x60\x50\x48\xe7\xab\x77\xf4\x3d\xa5\x0c\x81\xcb\x77\xbe\x47\xff\ -\x8f\x02\xe8\x7c\x0f\x4a\xa5\xad\x69\x7c\x0f\x97\x50\xa4\xbc\x57\ -\xfa\x1e\xa0\x62\xfc\x72\xe7\x6b\x0d\xca\xc3\xc9\x25\xdc\x55\x45\ -\xb0\x01\x7f\xb3\xf3\x71\x3f\x06\xee\xf3\x9e\xce\x57\x84\x9c\x38\ -\x9e\x07\x14\xe4\x88\xf6\x04\xad\xe3\x59\xc0\x18\xd8\xa8\x15\x03\ -\xc7\x83\xc0\x1b\x89\x9f\xea\x3b\x9e\x83\x14\x80\x0a\x50\x73\xe4\ -\x78\x34\x03\x00\x1c\x65\x03\xc7\xbb\x48\x32\xdc\x72\x29\x9e\xf5\ -\xbc\x01\x94\x14\xb3\x4d\x3f\x2d\x91\xc2\xad\x6b\xb2\x9d\xe7\x15\ -\xd7\x42\x73\xe7\x79\xe6\x88\x2c\x3a\xee\xcb\x3d\x0f\x06\x25\xe0\ -\x46\x45\x2e\xe4\xae\xd8\x8f\x23\xe3\x10\x2b\x7f\x78\xc7\xfb\xec\ -\xad\xae\xa7\x16\x24\x50\xe0\x68\x47\xae\x17\x84\x22\x42\x7f\x10\ -\xd7\x4b\x72\x86\x51\x3e\xe7\x7a\x4e\xff\x67\x09\x9f\x0a\x81\x04\ -\xa7\xd9\x7f\x21\xe1\xf3\x63\xe7\xa3\x4c\x13\x42\xb9\x3e\xed\x58\ -\x15\x0a\x8f\xa4\xb2\xf7\x95\x6c\xf7\xd1\x09\xad\x08\xd7\xac\xef\ -\x7b\xd7\xb2\x52\x10\x4f\x45\x07\xce\x47\xfb\x81\x05\x34\x1d\x76\ -\xfe\x02\x2d\x0e\xba\x05\xf5\xbc\xeb\x35\x55\x28\x14\xd2\xf9\x18\ -\xc4\xc2\x70\xd3\x34\xa9\x02\x5e\x83\x23\x9a\x4e\xc5\x32\x8d\xae\ -\x49\xbc\x26\xdd\x3b\x88\xa2\x85\x23\x97\xba\x5e\xa3\x9b\xd1\x48\ -\x67\x97\x04\xfd\x1f\xbf\xd4\x9f\x7e\xad\x78\x75\xb1\xa7\xe0\x79\ -\x5c\x4a\xd3\x77\x3e\xc8\x1f\x1a\x45\x34\x73\xff\xd7\xc5\xde\x39\ -\xd3\x90\x3f\x6c\xce\xa7\x6f\xce\xf9\x70\x3d\x4e\x46\x79\xdf\xf5\ -\x0c\x6d\x95\x72\xec\xfb\x1d\x73\xbe\x54\x9a\x51\xc1\x9b\x70\x77\ -\xff\xa5\xa7\x1b\x2f\x03\xa8\x56\x18\x25\x34\x1e\xe1\x43\x22\xd0\ -\xfb\x5e\xea\x7b\x57\x9c\x02\x1c\xd3\x7d\x8c\xef\x3e\x83\xdf\xdf\ -\x5d\xdd\xb8\x8f\xd2\x77\x57\xff\x01\x40\xf9\x03\x4b\ -\x00\x00\x12\x74\ -\x3c\ -\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ -\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ -\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ -\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ -\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ -\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ -\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ -\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ -\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ -\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ -\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ -\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ -\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6e\x61\x6c\ -\x5f\x73\x74\x61\x74\x5f\x72\x61\x73\x74\x65\x72\x5f\x74\x6f\x6f\ -\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ -\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ -\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ -\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ -\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ -\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ -\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ -\x6d\x3d\x22\x31\x2e\x33\x39\x39\x37\x32\x35\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ -\x2d\x32\x35\x35\x2e\x35\x32\x38\x32\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x33\ -\x2e\x32\x36\x38\x34\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ -\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ -\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ -\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ -\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\ -\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\ -\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\ -\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ -\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ -\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ -\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ -\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\ -\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\ -\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ -\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ -\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x36\x36\x34\x32\ -\x34\x38\x37\x37\x2c\x30\x2e\x37\x34\x37\x35\x31\x31\x35\x38\x2c\ -\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x33\x2e\x35\x32\x36\x30\x38\x37\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x30\x36\x39\x38\x31\x35\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x36\x2e\x34\ -\x35\x39\x39\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x33\x31\x2e\x30\x35\x36\x34\x31\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x33\x2e\x33\x30\ -\x35\x31\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x32\x31\x2e\x38\x37\x33\x31\x39\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ -\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\ -\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ -\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\x38\ -\x34\x31\x37\x31\x33\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\ -\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ -\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ -\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\ -\x39\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ -\x22\x38\x2e\x37\x38\x35\x32\x35\x36\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x31\x2e\x33\x37\x39\x32\x32\x38\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\ -\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ -\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\ -\x32\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\ -\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ -\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\ -\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\ -\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ -\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x37\x32\x2e\x37\x38\x30\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x30\x2e\x31\x36\x32\x35\x32\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\ -\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\ -\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ -\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ -\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\ -\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\ -\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\ -\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\ -\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\ -\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\ -\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\ -\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ -\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ -\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\ -\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ -\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\ -\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\ -\x36\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x39\x2e\x34\x33\x31\x30\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x33\x30\x2e\x34\x32\x38\x31\x35\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\ -\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\ -\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\x39\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x39\x2e\ -\x34\x33\x31\x30\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x33\x30\x2e\x34\x32\x38\x31\x35\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x32\x35\x2e\x36\x30\x30\ -\x30\x30\x30\x33\x38\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\ -\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\ -\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x32\x22\x3e\xcf\x83\x3c\x2f\x74\x73\x70\ -\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\x33\x34\ -\x39\x36\x33\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ -\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\ -\x2e\x36\x36\x36\x36\x36\x37\x2c\x2d\x31\x37\x2e\x32\x20\x2d\x31\ -\x2e\x30\x39\x35\x37\x38\x30\x35\x2c\x31\x35\x2e\x36\x38\x38\x38\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ -\x3a\x31\x2e\x34\x33\x36\x33\x34\x39\x36\x33\x70\x78\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ -\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ -\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x2d\x31\x38\x2e\x34\x34\x34\x34\x34\x34\ -\x2c\x34\x2e\x31\x33\x33\x33\x33\x34\x31\x20\x48\x20\x32\x36\x2e\ -\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x37\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\x33\x34\x39\x36\x33\ -\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x32\x35\x2e\x37\ -\x37\x37\x37\x37\x37\x2c\x39\x2e\x34\x36\x36\x36\x36\x37\x36\x20\ -\x48\x20\x31\x38\x2e\x36\x36\x36\x36\x36\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x37\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ -\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ -\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\ -\x33\x34\x39\x36\x33\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ -\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ -\x33\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x2d\x31\x37\x2e\x32\x20\ -\x39\x2e\x35\x37\x30\x38\x38\x37\x2c\x31\x35\x2e\x36\x38\x38\x38\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ -\x74\x68\x33\x37\x37\x35\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x15\x35\ -\x00\ -\x02\x08\xb4\x78\x9c\xed\x5d\x49\x73\xe3\x46\x96\xbe\xd7\xaf\xc0\ -\xd0\x17\x3b\x46\x48\xe6\xbe\xa8\xa4\xea\x83\x1d\x1d\xdd\x11\xd3\ -\x97\xe9\x65\x8e\x1d\x14\x09\xa9\x38\x45\x12\x1c\x10\xda\xfc\xeb\ -\x27\x13\xe0\x0a\x42\x35\xf6\x90\x4f\xaf\x8b\xf5\x58\x61\x8b\x04\ -\xc0\x05\xef\xcb\xb7\x2f\x79\xf3\x87\x97\xf9\x2c\x7b\x2a\xaa\xd5\ -\xb4\x5c\xdc\x0e\x04\xe3\x83\xac\x58\x8c\xcb\xc9\x74\xf1\x70\x3b\ -\xf8\xfb\xdf\xfe\x98\xfb\x41\xb6\xaa\x47\x8b\xc9\x68\x56\x2e\x8a\ -\xdb\xc1\xa2\x1c\xfc\xe1\xd3\x87\x9b\x7f\xcb\xf3\xec\xe7\xaa\x18\ -\xd5\xc5\x24\x7b\x9e\xd6\x9f\xb3\x3f\x2f\xbe\xac\xc6\xa3\x65\x91\ -\xfd\xf8\xb9\xae\x97\xd7\xc3\xe1\xf3\xf3\x33\x9b\xae\x0f\xb2\xb2\ -\x7a\x18\xfe\x94\xe5\xf9\xa7\x0f\x1f\x6e\x56\x4f\x0f\x1f\xb2\x2c\ -\x8b\xdf\xbb\x58\x5d\x4f\xc6\xb7\x83\xf5\x1b\x96\x8f\xd5\xac\xb9\ -\x70\x32\x1e\x16\xb3\x62\x5e\x2c\xea\xd5\x50\x30\x31\x1c\xec\x2e\ -\x1f\xef\x2e\x1f\xa7\x6f\x9f\x3e\x15\xe3\x72\x3e\x2f\x17\xab\xe6\ -\x9d\x8b\xd5\x0f\x7b\x17\x57\x93\xfb\xed\xd5\xe9\xd7\x3c\xab\xe6\ -\x22\x11\x42\x18\x72\x39\x94\x32\x8f\x57\xe4\xab\xd7\x45\x3d\x7a\ -\xc9\x0f\xdf\x1a\x7f\x63\xdf\x5b\x25\xe7\x7c\x18\xcf\xed\xae\xfc\ -\x6d\x57\x5d\xaf\x22\x41\x97\xf1\xbf\xed\xe5\x9b\x03\x6c\x55\x3e\ -\x56\xe3\xe2\x3e\xbe\xaf\x60\x8b\xa2\x1e\xfe\xf2\xb7\x5f\xb6\x27\ -\x73\xce\x26\xf5\x64\xef\x63\x36\xf4\x3c\xf8\xd6\x03\x22\x2f\x46\ -\xf3\x62\xb5\x1c\x8d\x8b\xd5\x70\x73\xbc\x79\xff\xf3\x74\x52\x7f\ -\xbe\x1d\x28\xcd\x84\x8a\x0f\xd3\x1c\xfc\x5c\x4c\x1f\x3e\xd7\xdd\ -\xa3\xd3\xc9\xed\x20\xfe\x7a\x19\x7c\xfb\x7a\x6f\x71\x88\xf6\x82\ -\xf5\x07\x5f\x6f\xcf\x70\x16\x24\x13\x59\x25\x8c\x72\xed\x35\x9b\ -\x5b\xb8\x9e\x94\xe3\xf4\x9b\xe2\x47\x16\xf3\xe9\xe8\xb1\x2e\xe7\ -\x11\xb5\xf1\x78\x36\x5a\xad\xa6\xf7\xd3\x71\x7c\x51\x2e\x96\xb3\ -\xc7\x87\xe9\xe2\x9f\xcb\xf1\xe8\x9f\x75\x59\xce\xd8\x86\x76\xdb\ -\x2f\x2a\x5e\x96\x65\x55\xe7\x2f\x93\x65\xa4\xa0\x75\xbd\x27\x5f\ -\x37\x27\x3f\xc5\xb3\x37\x93\xe2\x7e\x95\xae\x6a\x6f\x27\xbd\x8a\ -\xf7\xe3\x06\xd9\xb0\x39\xbb\xfd\x75\xe9\xa7\x4d\x9e\xa6\xc5\xf3\ -\xee\xda\xbb\xd1\xaa\x25\x59\x96\x2d\x47\x0f\x71\x79\xcd\xca\xea\ -\x76\xf0\xc3\x7d\xf3\x58\x9f\xb8\x2b\xab\x49\x51\x6d\x4e\xd9\xe6\ -\x71\x70\xaa\x8c\x10\x4c\xeb\xd7\x96\xa1\xd6\x9f\xbd\xf9\xbd\xe9\ -\x53\xb7\xe7\x79\xff\xf9\xd5\xe7\xd1\xa4\x7c\xbe\x1d\xc8\xee\xc9\ -\x5f\xcb\x72\x1e\x0f\x33\x17\x82\x36\xdc\x74\x4f\x8f\x5f\x6e\x07\ -\xb9\xd0\x81\x71\xe7\x8c\x3a\x3a\x1b\xbf\xd0\x2a\xc6\x8d\x15\x42\ -\x1c\x9d\x7c\xac\xaa\xc8\x72\xf9\x6c\xf4\x5a\xc4\xbb\x6a\xfe\x6c\ -\x2e\x5a\x7d\x2e\x9f\x1f\xaa\x44\x9d\xba\x7a\x2c\xba\xef\x4c\x67\ -\xf2\xbb\xbb\xf2\xa5\xff\x74\x5c\x01\x8f\x89\x99\xf3\xc7\xc5\xb4\ -\x8e\x0c\xb3\x7c\xd9\xff\xd4\xc7\xe9\xa4\x58\xf5\xbf\xf1\x79\xba\ -\x88\x44\xc8\xd7\x4b\x57\xa8\x2d\x8d\xbb\x57\x6c\xd6\xb1\xe3\xfe\ -\x8d\x2b\xe2\x4f\x3b\xa2\xf3\xfa\xd4\xeb\xdb\xa7\xe6\xa3\x97\xe9\ -\x7c\xfa\x6b\x11\xef\xfb\x88\x5c\xab\xc5\x68\x99\x3f\xcc\xca\xbb\ -\xd1\x6c\xfd\xeb\x3f\x35\x57\xdc\x1c\x90\xa5\x7d\x53\x96\xd5\xaf\ -\x89\x69\x5f\x5e\xd3\xb1\xc1\xe6\x60\xa2\x67\x3a\xa0\x9c\x35\xdb\ -\x83\x65\x35\x8d\xbc\xb0\xf7\x7b\x37\x87\x5e\xf7\x0f\x25\x16\x8f\ -\x12\xfa\xa5\x59\x60\xcd\xf2\x73\xdd\x73\xaf\xfb\xe7\xd6\xeb\x7e\ -\x78\xbc\xf0\x9b\xe3\xf3\xa2\x1e\x4d\x46\xf5\x68\xc7\x05\x9b\x23\ -\x32\x04\xbe\xb9\xb3\x28\x2d\xaf\xff\xf3\x97\x3f\x7e\x5a\x7f\xd1\ -\xcd\x78\x7c\xfd\x5f\x65\xf5\x65\xf3\xbd\x59\x96\x2e\x18\xdd\x95\ -\x8f\x11\x8a\xc1\xa7\xed\xe1\x9b\xc9\xf8\x3a\xca\xb7\xc8\xf7\x9f\ -\xa6\xf3\xb8\xb6\x93\x68\xfc\xf7\x28\xcf\x6e\x86\xbb\x13\x07\x17\ -\x27\x62\xed\x3e\xb4\xfd\xd8\xaa\x68\x05\x65\xaf\xb6\x98\x8c\xe7\ -\xd3\xf4\xa6\xe1\x5f\xeb\xe9\x6c\xf6\xe7\xf4\x25\xeb\x3b\xde\xfb\ -\xd0\x69\x3d\x2b\x76\x07\x6f\x86\xeb\x5f\xbf\xbe\xb7\xe1\xde\xcd\ -\xdd\x0c\x37\x77\xdf\xbc\x7a\xd8\x51\xe5\x80\x29\xb6\x40\xcf\x46\ -\x77\x45\x5c\x04\xff\x91\x4e\x66\x47\x67\x1f\xaa\xf2\x71\x39\x2f\ -\x27\xc5\xfa\xed\x5b\x6a\x16\xe3\x7a\x0b\x59\xfd\x3a\x8b\xe7\xef\ -\xe3\xaf\xbf\x5e\x4b\x9a\x8f\xe9\x45\xbe\x96\x13\xd7\xa2\x7d\x59\ -\x3d\xce\xa2\xbc\x7b\x2a\x16\xe5\x64\xf2\x71\x55\x57\xe5\x97\xe2\ -\xfa\x07\xce\xb5\xe7\x7c\xfd\xb2\xe5\x96\xeb\xed\xcb\xd9\x74\x51\ -\xc4\x9f\x71\xbd\xfa\x9f\xc7\x51\x55\xec\x1f\xfd\xef\x72\xba\xb8\ -\x8e\x74\x2b\xaa\xcd\xd1\xe6\xc5\x2c\xae\xf8\xfa\x5a\x6f\x8e\x4d\ -\x46\x51\x14\x55\xd5\xe8\xf5\x7a\x11\xd5\xff\xfe\xd1\xf2\xfe\x7e\ -\x55\xd4\xbb\x6f\xda\xfc\x54\xce\xd4\xfa\x71\xb0\xd0\xd3\xed\xaa\ -\x10\xc4\xf6\x60\xaf\x46\x4a\x8f\x7e\xad\x94\x1e\x07\x5c\x11\xd7\ -\x77\x60\xda\xa9\xc0\x95\x2d\x72\x61\xb7\x27\xaa\x83\xcb\xaa\x78\ -\x9d\x62\x2a\x6a\x26\x1b\xfc\x76\x55\x6c\x40\x5d\x33\xa1\xb2\x62\ -\xf7\x8e\xba\x1a\x2d\x56\x69\x5d\x46\x2e\x18\xd5\xd5\xf4\xe5\x47\ -\xce\xac\x77\xe6\x8a\xa7\x7f\x2c\xaa\x45\xa5\x9c\x54\x57\x62\x73\ -\xa7\x57\x79\x64\x34\x65\x94\xb7\xe2\xa7\x41\x07\xd2\x1d\x48\xe9\ -\xd1\xa5\x95\xd8\xb2\xc9\xcd\x72\x54\x7f\xde\x2d\xfa\x1d\x9f\xc6\ -\x85\x93\x96\x76\x14\x91\xe3\xf1\x60\x77\xc1\x4e\x6c\x97\x8b\x88\ -\x70\x5d\x56\x79\x14\xe0\x4f\xa3\xfa\xb1\x2a\xf6\x6f\xbf\xbd\xc1\ -\xf4\xe1\x91\x93\xed\xde\xe1\x78\xf4\x2f\x59\xbc\x9f\xec\x1f\xd9\ -\x86\xd0\x6a\xef\xf4\xfe\x8a\xdc\x43\xbe\x7b\x23\xed\x6a\x93\xeb\ -\xf7\x6b\xdd\x5d\x76\x77\x8f\x75\x7d\xae\x45\xb7\x23\xda\x1e\x1b\ -\xbf\x07\xd9\x7c\x97\x6c\x5b\x82\x5d\x6d\x9f\x65\x7f\xca\xf8\x37\ -\x4f\xbe\xdf\x4f\x1d\xe5\x9c\xcc\x79\x97\x3e\x5b\xbd\x73\x25\x3d\ -\xf3\xd9\xcf\x99\x62\xb2\x7d\x7a\xf4\xe4\xff\x4b\x33\xc1\xe2\x72\ -\xe6\xd2\xf8\xe5\xcb\xef\x27\x1a\x0c\x29\xbc\xee\x10\x62\x9e\x99\ -\x8d\x2c\xbc\x52\x86\xc9\x6c\x1c\x19\x2e\xd7\x4c\x36\xb4\x79\xeb\ -\xf9\x09\xab\x48\x38\xa3\x85\x31\xff\x52\x24\xc9\x7d\x97\x28\x51\ -\x6e\xae\x57\xc7\xf7\x4b\x94\xd0\x25\x8a\x14\xec\xbb\x5f\x29\x47\ -\xec\x23\x2d\xad\x14\xd5\x25\x8a\x92\xdf\x31\x35\xec\x91\x30\xb1\ -\xdf\x29\x35\x1a\xc5\x9b\xcb\x23\x7a\xec\x54\xaf\x62\xba\xa5\xc0\ -\x38\xdb\x58\x18\x2a\xda\x7b\x6f\x3c\x7f\x83\x36\x8d\x37\xb2\xa5\ -\xc7\x37\xa3\x8b\x5b\xea\x88\xb7\xa9\x23\xfc\xc6\x70\xfb\x6e\xa9\ -\xa3\xde\x36\xdb\x84\xdc\x9a\x6d\xcd\xd3\xa3\x27\x17\x64\xb6\xb5\ -\xc4\xd0\x6f\x2f\x15\xd7\xf2\xd1\x89\x8c\xf4\xed\x92\xe6\xc8\x56\ -\xd9\x93\x31\x9b\xdb\xfe\xa6\x48\x73\x33\x7c\xe8\x8f\x02\x48\xbb\ -\xd3\x2f\x07\x6c\x6e\xef\x83\xf0\xa3\xff\x23\x42\x10\x8c\x34\xd2\ -\xaf\xa3\x04\xce\x04\xe9\x55\xd4\x4e\x79\x32\x62\xa4\x32\xce\x5d\ -\x19\xe6\x3d\x77\xde\xb9\x9f\x76\x6e\xff\x7e\x14\xa8\x89\x69\xe8\ -\x78\xb5\xe4\x52\xef\xcb\xae\x97\xdb\x81\x35\xcc\x49\x63\xf5\xbe\ -\x0e\xdb\x04\x4a\xe2\xb7\x49\xe5\x25\x17\x66\xef\xe4\x26\x6a\xca\ -\x74\xd4\x5d\xc1\x9a\x0e\xbe\x4d\x38\xc6\x73\x79\x0c\x49\x13\xd5\ -\xde\xe2\x30\x99\xae\x96\xb3\xe8\x49\x4e\x17\x89\xba\x1f\xcb\xa7\ -\xa2\xba\x9f\x95\xcf\xd7\x4f\xd3\xd5\xf4\x6e\x56\x7c\x6c\xfe\x4e\ -\x67\x89\xc0\x9b\x43\xfb\x24\x7b\x3b\x8a\x15\x41\xff\xb5\xa8\xca\ -\xaf\xe2\x7e\x14\xc5\x3a\xa7\x3f\xfc\xb5\x18\x96\xf8\x38\x1f\x55\ -\x5f\x8a\xaa\x7d\x43\xb1\x18\xc5\xfb\xca\xef\x46\xe3\x2f\x29\x98\ -\xb7\x98\x5c\x8f\xc6\xe3\xc7\xf9\xe3\x6c\x54\xef\xc7\x19\x7f\x3b\ -\x96\x9e\x19\x1d\xa4\x3e\x33\x94\x07\x32\x8c\xc0\x3c\x37\x98\x8e\ -\x19\xe1\x14\x57\xa1\x03\xa6\x8b\xf2\xcd\x69\x7d\x76\x34\x03\xa1\ -\x89\x80\x66\x60\xc1\x0a\x7e\x7e\x34\x75\xde\x63\x33\x11\x9e\x67\ -\xc3\x53\x31\xe1\xb4\xf2\xef\xc6\x9d\xa4\x38\x31\xd0\x84\xe3\x4e\ -\x4b\x78\x02\xe2\x69\xa3\xc7\x10\xec\x01\xfd\x01\xed\xa0\x90\xf7\ -\x64\xb2\x08\x4d\x60\x34\x9d\x60\xca\x49\x2f\x2d\x80\xea\x24\x63\ -\x08\x14\x50\x11\xe1\xb1\x51\xe0\xbe\x13\x7f\x4a\x62\x4f\x04\x34\ -\x01\xf9\x93\xb8\x13\x21\x8a\xe0\x34\x13\xc1\xea\xf3\xe3\x19\xc8\ -\xb8\x45\xc1\x13\x54\x7f\x0a\x82\xf4\xfd\xed\x5b\xa0\x98\x2d\x39\ -\x2b\x18\xe6\x2d\x94\xb8\xd5\xe4\xad\x60\xc4\x12\x9c\x64\xce\x6b\ -\xab\xce\xaf\x3d\x49\xd4\x62\xc0\x69\x98\xe5\x5e\x2a\x01\xa1\x3d\ -\x49\xde\xc2\x22\xea\x9c\x33\x87\xe5\x39\xad\xc0\x0d\x9e\x3b\xd3\ -\x8f\xa8\xd7\x5a\x1b\xeb\x42\x1f\xa2\x32\x7a\xad\x8a\x8b\x37\x39\ -\x94\xe4\x2d\x06\x9c\x8e\xe9\xc0\xad\xec\x17\xb8\x27\xc0\x19\xf5\ -\x27\x01\x0a\x9b\x2a\x13\xc6\xa8\x70\xe4\xaf\x58\x26\x95\xb1\xbe\ -\xdf\xba\x3d\x85\x3f\x49\xde\xa2\xe0\xe9\x99\xd3\xc6\x18\x79\x7e\ -\x06\xf5\xb9\x21\x44\x01\x11\x95\x8c\x7b\x6f\x8d\xf4\xef\xc4\xa1\ -\x92\x5c\x16\x14\x3c\xe1\x38\xd4\x92\xd7\x02\x8a\xa8\x49\x35\xa4\ -\xda\x85\x2e\xa2\x50\x46\x51\xc8\x15\xc9\x5c\x0c\x44\x3d\x67\x3c\ -\x35\xe4\x9e\xdd\x6b\x69\xa2\xb8\x94\x69\x01\xc5\x94\x33\x15\x82\ -\x53\x87\x29\x4f\x48\x36\x95\x8a\x10\x45\x41\x14\x90\x4d\xc9\x7d\ -\x41\x89\x2f\x78\xc9\x8c\xe0\x4a\xf9\xf3\xab\x52\x4a\xb8\xe0\x20\ -\x0a\xaa\x4a\x05\x59\xbc\x28\x16\x2f\x54\x54\xd7\x92\x4f\x8a\x62\ -\xef\x42\x89\x5d\x1d\x3d\x98\x9e\x86\x5d\x42\x14\x3a\xca\xe0\x13\ -\x34\x46\xf3\x70\x7e\x45\x2a\xc8\xda\x45\x41\x34\x2a\xd8\x78\xd4\ -\xf6\x97\x2e\x9c\xa8\x48\x2d\xc5\x19\x60\xab\x39\x39\x33\x4a\x49\ -\xd9\xed\x21\x94\x4c\x2b\xa1\xcd\xd9\xe5\x2e\x69\x51\x0c\x34\xa3\ -\x55\xa4\x85\x3a\x28\x50\x38\x97\x16\xa5\xae\x50\x50\x40\x15\x0b\ -\x42\xf0\x6e\xe5\x9f\x62\xd6\x5b\xe5\xcf\x2e\x71\x03\xd9\x44\x18\ -\x70\xda\x54\xfb\x27\xcf\xef\xb4\x34\x0a\x94\xf4\x27\x24\xa2\x3e\ -\xe1\xa3\xb8\xeb\xb6\x12\x42\x71\x28\xb5\x86\xe2\xe0\x09\xc7\xa2\ -\x96\x64\x2e\xac\xcc\x95\x4c\x46\x8b\xe8\xa8\xfb\x0c\xca\x26\x4a\ -\xb9\x51\x0a\xe8\x62\x20\xea\x98\x36\x42\x00\x84\x8a\x52\x6a\xb4\ -\x67\xba\x10\x41\x0a\x5d\x34\x06\xc6\xa4\x52\x11\xa0\x28\x80\x82\ -\xf1\x28\x71\x28\x4e\x68\xe1\xab\x33\x33\x4e\xcc\x8b\x92\x61\x84\ -\x81\x28\xa4\x1a\x15\xe4\xbe\xa0\x98\x46\x50\xe1\x5c\x9b\x2b\x12\ -\xbb\x18\x80\x42\x89\x5d\x4d\x95\x9d\x48\x11\x06\xcf\x1c\xb7\xe7\ -\xef\x46\x4b\x59\x51\x02\x14\x01\x50\x17\xb1\x11\xe6\xb0\xf5\xf3\ -\x8c\x69\x51\x12\xbb\xb0\xee\x4b\x08\xc1\x1b\xae\xde\x09\xd3\x40\ -\x2d\x12\x48\x88\xaa\x34\x44\xc3\x03\xb4\x8d\xfa\xdc\x90\xb1\x0b\ -\x3c\x49\x43\x09\x1e\x94\x3d\x1e\xbd\xa0\x1d\x0f\x1c\x40\x97\x46\ -\xdb\x88\x6a\x8c\x50\x30\x85\xaa\xeb\x5c\xf7\xbd\x10\xa7\x62\xa0\ -\x0a\xe6\xc5\x44\xb7\x94\xf8\x14\x85\x4f\x01\xc7\x30\xe4\x8e\x02\ -\x82\x18\x35\xd8\x60\x9e\x29\xd5\xd4\xe3\xf4\x48\x40\x3a\xa6\xd1\ -\xe6\xa5\x68\x03\xc6\xfc\x1b\x28\xa3\x77\x63\x20\x91\x3a\x85\x44\ -\x35\xe7\x2c\x42\xe4\x44\x44\xf6\x10\x57\xb0\xe2\xfa\x64\x22\x51\ -\x0c\xe9\x92\x06\x8f\xad\x4d\x24\x12\xbf\xb0\x61\x24\x2f\xa4\x08\ -\xaa\xdb\xc2\xaf\x99\x91\x5a\x8b\x3e\x4f\x26\xed\xde\x2d\x85\x50\ -\xbd\x98\x3a\x21\xa4\x3d\x08\x3f\x75\x86\xc9\xd1\xc6\x2e\x28\x78\ -\x3a\x16\xb4\x0d\xba\xcf\x46\x3a\x05\xcf\x34\x4d\x8e\xaa\x03\x61\ -\x33\xa6\x22\x42\xc7\xad\xee\x7a\xa6\x5f\x99\x56\x75\x12\x87\x46\ -\x4d\x4a\x3d\x30\x18\x80\x06\x66\x8d\x97\xbd\x85\x2a\xa7\xb1\xa8\ -\xa7\x28\x2f\xb8\x67\xea\xa2\x5f\x6a\x6d\x37\x19\x03\xc4\xa3\x92\ -\x8a\x1a\x90\x00\x05\xe3\x51\x9b\xd3\x84\x0d\x58\x48\x03\xf3\xce\ -\xea\x6e\x75\x20\x94\x61\xb4\xce\xad\x51\x40\xf0\xfd\x21\xf5\x82\ -\xa9\x88\x68\xe8\x9b\xfb\x78\xaa\x22\x0d\x34\xb0\x1e\x3c\xca\x10\ -\x21\x70\xca\x1d\x8f\x7e\x04\xe1\xd3\x34\x52\x8e\xc2\xf6\x18\x88\ -\xc2\xb1\x69\x72\x61\x28\xca\x80\x10\x65\x00\x95\xbc\x82\x2c\x24\ -\x1c\x0b\x09\x28\x14\x68\xc9\x89\x81\x6f\x88\x09\xdc\x1b\xd5\x49\ -\xc1\x58\xcd\x64\x74\x4a\xf9\xf9\x63\x81\x21\xe7\xa4\x4b\x31\x62\ -\x47\x36\x30\x15\xb8\x15\x10\xc1\x40\x41\x69\x35\x94\x70\xa0\x8c\ -\x3a\x56\x09\xd3\x97\x28\x3d\x3d\x1c\x48\xbd\x88\x28\xaa\x54\x30\ -\xc1\x85\x0f\x7d\xa9\xd2\x33\x04\x1b\x48\xf6\x62\xa8\x53\x28\xfb\ -\x68\x5b\xc9\x4b\xf9\x35\x04\x56\xb5\x8e\x59\x17\x54\xef\xe6\x21\ -\xa7\x5a\xbd\x14\x42\xc2\x61\x54\xb8\x1c\x78\xaa\x53\xa1\x14\x1b\ -\x4a\x9b\xa9\x61\x21\xfa\x32\xee\xfc\x2a\x95\x6a\xee\xb1\x20\x05\ -\x72\x66\x36\xe5\xbc\xe4\xcf\x00\x77\x52\x38\xcf\xb9\xef\x36\x26\ -\x42\x29\xd4\xd6\xf6\x95\x54\xb3\x82\x01\x2a\x94\x43\xb3\x2d\xd2\ -\xa6\x38\xfe\x25\x55\x7f\x6e\x2a\x7a\x89\x59\x2f\x6b\x5f\xae\x54\ -\xd5\x4b\x4e\xea\x85\x6d\xcc\xa5\x14\x35\x11\xc3\xf6\xc8\x44\x10\ -\xa2\xea\x74\xba\xcb\xa6\x50\xfb\x96\x36\x65\x83\xa4\x50\x31\x30\ -\x05\xdb\x25\xa6\xad\x1c\xa4\x3c\x2a\xc6\x3e\x31\x50\xb2\xb7\x75\ -\x69\x88\x51\x31\x30\x85\xdb\x9f\xcb\x93\x3f\x03\x2f\x7e\x25\x0b\ -\xd1\x51\xf5\xbe\x5b\x12\x0a\xc5\xaa\x92\xa2\xf9\x68\x98\xc2\xb1\ -\x6a\x0a\xfe\x92\x3f\x83\xe2\xcf\x18\xc6\x25\x17\x01\x60\x20\x1d\ -\xed\x79\x89\x06\x2a\xa8\x52\x15\x54\xa1\x84\x63\x2b\x81\x85\x93\ -\x2c\xed\x65\x8a\x64\xfd\x42\x49\xdf\x36\xf0\x4b\x2a\x15\x25\xf4\ -\x00\x35\x71\xa5\x19\xc5\x4c\x8c\x8a\x03\xaa\x65\xd2\x19\xa1\x60\ -\xb6\xd8\xa3\x49\xaf\x58\x19\x1a\xe8\xb1\xa0\x81\x52\x6f\xb0\xfc\ -\xaa\x59\x94\xb4\xf1\xd1\xa9\x69\xf1\x9a\xb9\xe0\x5d\xef\x64\xd0\ -\xc4\xe2\xde\x38\x6f\xfa\x70\x15\xde\x79\x29\xc2\xd7\x4c\x25\x4e\ -\x8a\xf5\xb2\xd2\xa9\xdb\x34\x39\x85\xf5\x11\xe6\x99\xc1\x85\xf5\ -\xa9\xdf\x0d\x07\x50\xb8\xf0\x83\xa2\x12\x51\x1c\x47\x15\x2a\x9d\ -\xda\xa4\xc8\x09\x52\x0c\x48\xa1\xdc\xd4\x36\x43\x4e\x98\x22\x4c\ -\x66\x06\x93\xbc\x6d\x86\x9c\x5c\x19\x0c\x4c\xe1\x62\x84\xad\x8b\ -\x4a\x36\xd2\x45\xe5\x68\xda\x0c\x39\xb1\xea\x45\x65\x53\xd7\x33\ -\x76\x28\xee\x80\xe1\xce\x38\x66\x14\xe7\x00\xe1\x7c\x49\x65\x0f\ -\x48\x90\x82\xea\xd4\x94\x20\xa7\xb2\x33\x0c\x53\x09\x2a\x92\x94\ -\xa2\xbe\x94\xa0\xc1\x40\x14\x48\xf6\xb6\x11\x5f\xaa\x62\xc1\x88\ -\x3b\x40\x65\x52\xdb\xf4\x38\xe9\x53\x0c\x4c\x3d\x73\x5e\x07\x0f\ -\x52\x70\xd6\x64\xc7\x09\x56\x8c\x9d\x66\xe0\x12\x6e\x9b\xec\x38\ -\xe1\x8a\xb3\x2b\x14\x14\xc3\xb6\xf9\x71\x2a\xd0\xbf\xa4\x3c\xea\ -\x36\x3d\x4e\x31\x7d\xe0\x29\x4a\x46\x29\x79\x34\x18\x4b\x30\x91\ -\x12\x35\x67\x4f\xbd\x05\xca\xa5\xe2\x00\x9a\xe6\x73\x5b\xe5\x21\ -\x9c\x1a\xaa\x78\xc0\x99\xa0\x24\x99\x56\x42\x9b\xf3\x07\xf3\xa3\ -\xe8\xa5\x1e\x1a\x0c\x44\x35\x0b\x3a\x8d\x83\x85\xc9\x8e\x53\x78\ -\x10\x54\xf0\x4a\x26\xa3\xd8\x55\xe6\x9d\x04\xef\xba\x7f\x9c\x18\ -\x15\x03\x54\xcb\x44\xb0\x12\xae\x82\x9b\x82\x84\xb0\x03\xb1\x84\ -\x31\x2a\x8a\xda\x77\x62\xd5\x26\x3b\x4e\xc9\x71\x0c\x48\xe1\x18\ -\x35\xe5\xc6\xc9\xee\xc5\x70\x65\x3c\x73\xdc\x02\x44\xf2\x53\x20\ -\x89\x12\x6e\x18\x88\x82\xaa\xd3\x66\x4b\x21\x92\xbe\x18\x66\x12\ -\x54\x14\x29\x05\x7c\xc9\x9b\xc1\x40\x14\x46\xf6\xb6\xc1\x5e\x92\ -\xbd\x18\x31\x07\xc7\xb4\x11\xbd\x7b\xdd\x9e\x21\x31\x4e\x39\x19\ -\x9c\xd1\xea\xc1\x0a\xde\xdb\x86\x7a\x96\xc4\x38\x45\xf0\x81\xb7\ -\x8a\x52\xce\xd9\x2e\xaa\x26\xa2\x2a\x85\x09\x80\x79\x71\xc2\x15\ -\x76\xba\xba\x12\x3c\xa8\x6e\xd3\x38\x18\xb7\xb6\x59\x71\xc2\xf4\ -\x92\x82\xbe\xdb\xac\x38\x0d\x64\xb9\xa0\x8d\x10\xd2\x64\x75\x2a\ -\x4a\x42\x41\x14\x6e\x0f\x04\x45\xfb\x53\x23\xed\x00\x06\xb4\xa7\ -\x66\x0a\xf8\x6a\x72\x52\x51\x20\xb5\x4c\x2a\x63\x3d\xcc\x66\x51\ -\x64\xf8\xc2\x82\xaa\x23\x0c\xc6\x1b\xd9\x95\xbd\x40\x7c\xda\x4c\ -\x77\xa0\x0c\x2a\x0a\xa4\x60\x7c\x9a\xea\x57\x68\xbe\x03\x4a\x38\ -\x09\xca\x46\x5a\xef\x67\x4c\x4d\x6e\x38\xa8\x82\xed\x93\xda\x46\ -\x93\x88\x59\xa1\x9b\xa2\xac\x11\x56\x6a\xf9\x3e\xcc\xda\x94\xb0\ -\x28\x72\x52\x51\x30\x05\x63\xd5\x66\xbe\x03\x81\x8a\x12\x79\x80\ -\x94\xbf\x4d\xc9\x03\x25\xdf\x50\xf4\x2a\x50\x8c\xd0\xd2\x30\x2c\ -\xac\xe8\x03\xe4\xee\xe3\x22\xe7\x14\xcb\x47\x01\x15\x76\xff\xf1\ -\xdc\x51\xf0\x17\xa9\x9c\x05\x70\x03\xf2\xf4\x7f\x72\x6b\x20\x61\ -\x0d\xcc\x3b\xab\xbb\x05\xa2\xd0\x3b\x90\x4b\xaa\xe5\x46\xeb\x78\ -\x93\x26\xea\xd6\x73\x5b\xc1\xc9\x5a\x4a\x31\x08\x72\x6d\x10\x98\ -\x15\x76\x5f\xf9\xc4\xae\x84\x2a\x68\x2b\x8d\x17\x52\x04\xa5\xdf\ -\xc7\x0a\x5e\x1b\x4c\x26\x1a\xc2\x64\x31\xc1\x4e\x3b\x73\xda\x05\ -\x6b\xd5\xfb\x88\xe0\xd6\x62\x6a\xd8\x96\x60\x45\x80\x15\xc8\x10\ -\xde\x55\x8b\x7a\x32\x85\x2f\xa9\x08\x6d\x5b\x5a\xa8\x29\x77\x0e\ -\xcc\xb0\x4a\x1b\xaf\x95\x3f\x62\x58\xa1\x9c\x7e\xa3\x0e\xd8\x49\ -\xe5\x25\x17\xbd\xbb\x47\x69\x21\xa2\x00\x30\x6f\x02\x4b\xf2\x17\ -\x03\xce\xaf\x96\x75\x9f\x02\x67\xee\x29\x60\x08\x3b\xe9\xcc\x87\ -\x08\xce\x51\xc0\xd0\x33\xa3\x0f\x87\xaf\x9f\x05\x4f\x49\x4e\x2a\ -\x06\x9c\x2e\x75\xd9\x48\x2f\xfb\x4b\xf4\x4f\xe2\x4f\x4b\x86\x11\ -\x86\xc4\x75\x86\x59\xee\xe5\x1b\x33\x7e\x4f\x40\x34\xc5\x07\xc9\ -\x35\xc5\x40\x54\xa6\x81\xa1\x07\x9e\xcd\xb9\x54\x68\xca\x91\x93\ -\x1a\xc5\x90\xbb\x3a\xcd\x7a\xd0\xe7\x97\xbb\x14\xee\xc5\x42\xd4\ -\xa5\x7d\x2d\x78\x5f\xa0\xe1\x64\x2e\xb5\x54\xf1\x00\x1c\xc1\x37\ -\xd6\x0b\x69\x3a\x53\x7d\xc1\x7c\x51\x49\x32\x17\x03\x4e\x40\x5f\ -\x94\x44\x2e\x70\x7f\x71\xb4\x7f\x34\xef\x06\x17\x80\x7c\xd1\x90\ -\x3b\x62\x50\x04\x3c\x01\x9d\x51\x4f\xd9\x52\xe0\xc2\x06\x21\xb9\ -\xf6\x4e\xbe\x0f\x87\x92\x27\x8a\x02\x27\x68\xb4\x88\x4c\x5c\xe0\ -\x71\x3a\x11\x1a\xd7\xdd\xb8\x02\xcc\x26\x6a\xda\x64\x28\x00\x88\ -\x00\x29\x68\xb8\x88\xa2\x45\xc0\xc9\x6e\x1b\xe5\xab\x3e\xaa\x62\ -\x80\xe2\x52\x49\x6d\xa7\x28\x80\xc2\xf1\x28\x4d\x71\x40\x89\x2d\ -\x80\x66\x5d\xa8\x83\x0d\x03\x51\xd8\xac\x0b\x05\x8c\x30\xac\x5d\ -\xa8\x80\xae\x25\xbb\x08\xc5\xd4\x85\x92\xba\x9a\x26\x6b\x23\x45\ -\x18\x20\xf3\xa2\x64\xea\x62\x20\x0a\x9a\x17\xe5\x54\xd5\x09\xdc\ -\x35\x2c\x83\x08\xba\xab\x47\x81\xc2\xba\x5a\x91\x1e\xc5\xc0\x13\ -\x32\xf1\xe2\xa8\xa5\xf4\x3d\x5a\x4a\x8f\xfb\xfa\x81\x22\x46\x54\ -\xd7\x89\x02\x28\x9c\x3b\x6a\x69\x2b\x78\x24\xa9\x0b\x64\x19\x35\ -\x85\xba\xa4\x48\x51\x20\x85\x72\x5f\x36\xb5\xba\xe4\xc3\x60\xc8\ -\x5e\xb8\xe0\xae\x48\x33\x1a\x08\xd2\xf7\x87\xd4\xa7\x5d\xc3\x3d\ -\xef\xdf\xf0\xe9\xf4\x72\x5d\x12\xbf\x28\xfb\x9c\xc2\xed\x1c\xde\ -\xb6\x7b\x93\x9d\x04\x3b\xf8\x93\x7b\x6f\x8d\xec\x96\x79\xc2\xa1\ -\xda\xec\x5e\x4b\x7d\xde\xb0\x4d\x4d\xda\x5a\xed\xc2\x71\x9f\x37\ -\xd0\x86\x7b\x92\x6a\xc9\x90\x20\x05\x95\xbe\x69\x94\x2b\x59\x4a\ -\x18\x4a\x15\x88\x53\xdb\x49\x1b\x94\x65\x83\xed\x55\x73\xce\x19\ -\x7b\x94\x07\x87\xda\x69\x7a\xbd\xdd\x29\xf1\x29\x06\xa8\x50\x9b\ -\x12\xb7\xbb\x9d\x92\x95\x04\x1a\x4f\x62\x69\x56\x60\xb0\x5d\xd9\ -\x0b\x83\x69\xbb\x27\x26\x85\x92\x60\xb5\xa9\x56\xd6\xfb\xa3\xc4\ -\x8c\x66\x26\x04\x6e\xfb\xd4\xe9\x59\xf6\x06\xa2\xc0\x03\xf0\x88\ -\x06\x27\x6d\x34\x87\x8e\x14\xaa\x12\x5c\xa9\xbe\xf4\xcc\x39\xf6\ -\xa6\xa0\x0a\xd0\xcb\x8a\x3b\x28\x15\xdd\x54\x4a\xa3\x42\x82\xca\ -\x99\x0a\xc1\xa9\xc3\x2a\x15\x48\xdb\xb7\x95\xc0\x86\x78\x15\xc5\ -\xf8\x85\xe2\xd5\x76\x7e\x2b\xb5\x0f\xe3\xa0\x0a\x16\x7a\xf0\xeb\ -\xd9\xad\xe4\xd5\x40\xc2\x9a\x73\x16\x41\x72\xc2\x99\x6e\xfa\x2d\ -\x02\x2e\x8d\xef\xaf\x66\x39\x01\x58\xa9\x68\xcf\x3d\x44\x54\x25\ -\xd3\x8e\x07\x0e\xa0\x5a\x93\x19\x6c\x89\x5b\x51\xcc\xe0\xaf\x96\ -\x12\x9e\x9c\xaa\xa1\x46\x0b\x1c\x54\x21\x55\xab\x68\x36\xf4\x22\ -\x43\x18\xc3\x64\x82\xe2\xd6\x36\x5d\x63\xc9\x10\xc6\xf1\x5a\x61\ -\x02\xc1\x6d\xbe\xc6\x51\x62\x15\x05\x54\x17\xf1\x11\xe6\xb0\x98\ -\xec\xac\x39\x1b\x49\x16\x13\xac\x25\x2c\x99\x50\xca\x1e\x86\x1d\ -\x12\xb0\x96\x49\x65\xac\xef\xdb\x55\xf1\x0c\x89\x1b\xea\xc0\xb8\ -\xac\xfa\x96\xd0\x6c\x11\x44\x90\x5e\x4e\x15\x5a\x13\xe1\xa7\x72\ -\xd1\xcb\x2a\x6e\x91\x29\x14\x1c\xc8\x5d\xbd\xa8\xe2\x16\xdb\x58\ -\xc0\xc4\xa8\x17\x54\x58\xd8\xa6\x6c\x34\xc5\x1f\x50\x40\x85\x8b\ -\x3f\xb4\x39\x1b\x43\xcc\x7a\x49\xf1\xc2\x36\x63\x43\xbb\x63\x5e\ -\x56\x68\x7f\x5d\xb7\x64\x89\x57\x31\xbc\x1a\xb0\x3c\x5c\x9b\xb1\ -\xb1\x64\x02\xa3\xf8\xaa\xa0\x9a\x35\xa5\x6c\x68\x68\xc0\x65\x75\ -\xad\xa6\x68\xa1\xa4\xc0\x12\x06\xa6\x80\xa5\x10\x29\x0d\xc7\x49\ -\xb1\x62\x44\x21\xc0\x12\x36\x6d\x1e\x8e\x0a\x5c\x70\x50\x05\x2a\ -\x46\xdb\x66\xe1\x68\x3a\x2c\x4a\xf3\x14\x14\xae\x6d\x12\x4e\x90\ -\x15\x7c\x51\x49\xb8\x56\xb1\x3a\x93\x9c\x1c\x02\x16\x92\x5b\x15\ -\x0b\x42\xf0\x4e\xca\xdc\x44\xef\x26\xe9\xd6\xb3\x73\xab\xa2\x38\ -\x30\x02\x9c\x56\xa6\xf9\x4a\xda\x40\x64\x56\x35\x99\x49\xb0\x88\ -\x3a\x26\xbd\xf7\xae\xdb\xb9\x2a\x98\x70\xd6\xc8\x70\x7e\xe3\x97\ -\x0a\xd0\x70\x10\x55\xcc\x7a\xab\x7c\xff\xb4\xc2\x53\x2d\x5f\x43\ -\x83\x7f\x61\x41\x35\xa9\x93\x3c\xd8\xee\x96\x8b\x50\x92\xb7\xd9\ -\xd1\x8d\x8c\x5e\x14\x4c\x61\xe7\xda\x71\x9a\x97\x85\x61\x22\x01\ -\x4e\x40\xa3\x39\xb1\x28\x88\x02\x0f\x40\x93\x14\xf5\xc5\x90\xbe\ -\x60\xae\xa9\xcd\x15\x27\x85\x8a\xa2\x50\x01\x67\xda\xd1\xa8\x2c\ -\x70\x48\x95\xf0\xda\x75\x8b\x1e\xde\x8e\xf6\x9e\x32\x81\x27\x34\ -\xd3\x9c\x49\xee\x62\x20\xea\x98\xd0\x5e\xf5\x56\xfd\x9e\x36\x54\ -\xc9\xe7\x86\x8a\x7e\xa1\x41\xd5\x4c\x7a\xab\x8e\xb6\x32\x8e\xf0\ -\x68\x1b\xf4\xf9\xe7\x9f\x25\x3f\x46\x11\xa8\x18\x9c\x6a\x2d\xf3\ -\x9e\x3b\x03\x21\x7c\x05\x15\x3b\x20\x89\x5f\xce\x54\x84\x2e\xc0\ -\x88\xdf\xe4\xa3\x52\x56\x1c\x41\x00\x3b\xc9\xb8\xd0\xd1\x8c\x05\ -\x80\x35\x6c\x66\x7a\x10\xb0\x08\xc0\x1a\xa6\x95\xe3\xa1\x2f\x9a\ -\x7f\x1a\xb0\x4d\x62\x3c\xa7\xce\x37\x94\xbc\xb8\x67\x36\x3d\xce\ -\x1f\x26\x4c\x8d\x17\xd4\x47\x8e\x90\x76\x03\x83\xb4\xe9\x3a\xa6\ -\x01\x94\x38\x11\x25\xb8\xec\x78\x33\x80\x52\x51\x54\x09\x05\x56\ -\xc8\x14\x79\x68\x7c\x56\x72\x6e\x10\x32\x35\x70\x1b\x60\x24\xfb\ -\x57\x92\x0c\xc6\x00\x15\x94\x57\x53\x83\x14\xf5\xa9\x22\x65\xe0\ -\xa0\x2c\xa6\x66\xfc\x24\x31\x2b\x8a\x66\x85\x9b\xc3\x9e\xfc\x55\ -\x49\x35\x2d\x17\x65\x06\x6f\xcb\xf3\x1d\x19\x4c\x28\xd1\x25\xa0\ -\x68\x70\x9b\x5f\x95\x54\x2b\x8a\x02\x2a\x4c\xce\x7c\x93\x60\xa5\ -\x14\x2b\x4e\x8a\x55\x31\x6d\xbc\xec\xad\x6e\x39\x47\x36\xce\x51\ -\x28\x02\x05\x56\xa0\x24\xeb\x2e\x1f\x47\xf3\x1f\xc0\x6d\x26\xaf\ -\x85\x54\xc7\x3b\x12\x71\x15\x94\xeb\x2f\x1b\x3d\x61\x2f\xfa\x90\ -\x3b\x2a\x04\xc6\x81\xd4\x33\x6f\x65\x78\xc3\x61\x3d\x01\xd2\xc4\ -\xac\x92\x82\x10\xd0\xf2\x37\xb2\xa3\x09\xdd\x6e\xa9\xaf\xd5\x8c\ -\x9e\xc4\xa5\x2a\xb7\x81\x44\x2f\x06\xa6\xd1\xab\x91\x4e\x3b\xd7\ -\x5f\xda\x7d\x22\x9f\x06\xf2\x55\x91\x38\x55\x33\x2b\x9d\x79\x23\ -\x10\x7c\x02\xaa\x96\x6c\x5f\x24\x3e\x55\x8c\x07\xaf\xde\x68\x6a\ -\x3c\x89\x4f\x53\x00\x98\x82\x0f\xe7\xc2\xf4\x66\xf8\xb0\x7e\xf2\ -\xf0\x61\x8f\xde\x0f\xca\x8a\xfd\x56\x97\xba\x1a\x2d\x56\xf7\x65\ -\x35\xbf\x1d\xcc\x47\x75\x35\x7d\xf9\x91\x33\xaf\x6c\xd0\x36\x88\ -\xab\xb4\xbf\x18\x8f\x4b\xc0\x29\x75\xc5\x99\x32\xdc\x18\xc5\xc3\ -\x55\xba\x82\x6b\x69\x84\xbb\xca\xa3\xbf\xd3\x24\x04\xdc\x55\xf4\ -\x95\xda\x67\x3f\x6d\x3f\x7c\x8d\x60\x0b\x80\xe7\xe9\xdf\x1e\x7d\ -\x95\x0c\x93\xa3\x1b\x1d\x6c\x57\xe4\x72\x54\x7f\xde\x5b\x0c\xe5\ -\x64\xba\x8c\xff\x45\x0a\x4c\x8a\xfa\x75\x59\xac\xe2\xca\x18\xef\ -\x2f\xa6\xc5\x97\x55\x84\xa4\xb8\x1e\x97\x8b\x08\x4e\x5d\x56\xf9\ -\xf8\xb1\x7a\x1a\xd5\x8f\x55\xfc\x09\xbc\xb3\xec\xd2\x87\xcb\x10\ -\xec\xc1\x82\x8b\xc7\xff\x92\xf1\x2b\x9e\xfd\x23\x53\x3a\xed\x27\ -\x71\xb8\x8d\xf0\x6f\xbf\x9b\x76\xb5\xc8\xf5\x47\x68\x0d\xb9\x6c\ -\x76\x94\xdb\xe3\xe6\xf7\xa0\xdd\x61\xb6\xa6\xa1\xdd\x96\x6a\x57\ -\xdb\x67\xd9\x9f\xb2\x1e\x39\xfd\xed\xd1\xf0\xf7\x93\x48\x39\x27\ -\x73\x7e\xbc\xc0\x76\x1c\x23\xa3\x6f\x92\xfd\x9c\x29\x26\xdb\xa7\ -\x47\x4f\x4e\x20\x9c\x60\x71\x75\x73\x69\xfc\xf2\xe5\xf7\x53\x0e\ -\x86\x1e\x5e\xf3\xfc\x20\x94\x12\x4f\xcc\x33\xc3\x94\x5a\xaf\x19\ -\xc3\x64\x36\x8e\x0c\x98\xaf\x45\x89\x7b\xeb\xf9\x69\x0b\x4a\x38\ -\xa3\x85\x31\xff\x5a\x84\xf1\xdd\x85\x32\xcf\x04\x67\xeb\x85\xf2\ -\x5d\x53\x26\x1c\x53\x46\x0a\x46\x6b\x86\x47\xe1\xc2\x8f\x28\x63\ -\x69\xcd\xe8\xd4\x7d\xe4\xba\x94\x51\xf2\xfb\x26\xc9\xe1\x7e\x81\ -\xad\x80\xb1\xdf\x2f\x49\x5a\xe5\x2c\x7b\x88\xb2\x53\xcf\x2a\x0d\ -\xbe\x4b\x64\x18\x67\x1b\x3b\x24\xda\xc1\x6f\x3d\xbf\x2c\x65\xdd\ -\xd2\x47\xe4\x47\xfa\x7a\x47\x1f\xe1\x37\x36\xde\x77\x4b\x1f\x75\ -\x6c\x03\xef\xd1\x47\x6e\xcd\xbb\xe6\xe9\xd1\x93\x4b\xa4\x88\x3e\ -\xe8\x64\xe8\xac\x18\xd7\x32\xd4\xf7\xcc\x51\xe1\xab\x12\x67\x73\ -\xef\xdf\x1a\x7d\xd6\xc1\x86\xe6\xcf\xcd\x70\xf5\x14\xff\xfc\x2f\ -\x9c\x72\x9b\x2c\ -\x00\x00\x0a\x77\ -\x00\ -\x00\x28\xbf\x78\x9c\xdd\x59\x5b\x6f\xe3\xc6\x15\x7e\xdf\x5f\xc1\ -\xca\x2f\x59\x54\xa4\xe6\x7e\x51\xec\xcd\x43\x83\x16\x01\x12\x14\ -\x68\x12\xf4\x31\xa0\x49\xca\x66\x97\x22\x05\x92\x5a\x4b\xfb\xeb\ -\xfb\xcd\x48\xa4\x48\x49\xd6\xca\x5e\xa7\xc0\x56\x84\x61\x71\xce\ -\x5c\xcf\x77\x2e\xdf\x19\xdd\xfe\xb0\x59\x16\xc1\xa7\xac\x6e\xf2\ -\xaa\xbc\x9b\xd0\x88\x4c\x82\xac\x4c\xaa\x34\x2f\x1f\xee\x26\xbf\ -\xff\xf6\xf7\xd0\x4c\x82\xa6\x8d\xcb\x34\x2e\xaa\x32\xbb\x9b\x94\ -\xd5\xe4\x87\x0f\xef\x6e\xff\x12\x86\xc1\xdf\xea\x2c\x6e\xb3\x34\ -\x78\xca\xdb\xc7\xe0\xa7\xf2\x63\x93\xc4\xab\x2c\xf8\xee\xb1\x6d\ -\x57\xf3\xd9\xec\xe9\xe9\x29\xca\xf7\x8d\x51\x55\x3f\xcc\xde\x07\ -\x61\xf8\xe1\xdd\xbb\xdb\xe6\xd3\xc3\xbb\x20\x08\xb0\x6e\xd9\xcc\ -\xab\xe6\xfe\x6e\x32\x18\x51\xad\xb2\xb2\x79\x8a\xdb\xe4\xf1\xbe\ -\xaa\x3e\xfa\x71\xeb\x3a\x9f\x31\x42\xec\x0c\x7d\x27\x87\x91\x69\ -\xd2\x0f\x5c\xad\xeb\xc2\x77\x4d\x93\x59\x56\x64\xcb\xac\x6c\x9b\ -\x19\x8d\xe8\x6c\xd0\x3d\x39\x74\x4f\xdc\xbe\xf3\x4f\x59\x52\x2d\ -\x97\x55\xd9\xf8\x91\x65\x73\x33\xe8\x5c\xa7\x8b\xd1\xae\x9e\xb8\ -\xef\x44\xad\xb5\x33\xc2\x66\x8c\x85\xe8\x11\x36\xdb\xb2\x8d\x37\ -\xe1\x78\x28\x4e\x77\x6e\x28\x0e\x40\x66\x90\x1d\x7a\x5e\xd7\x6b\ -\xbe\x29\xa0\xc4\x67\x37\xe3\xa5\xc3\xd5\x01\xdc\x0a\x7f\xfd\x80\ -\xae\x21\x6a\xaa\x75\x9d\x64\x0b\x8c\xcc\xa2\x32\x6b\x67\x3f\xfe\ -\xf6\x63\x2f\x0c\x49\x94\xb6\xe9\x60\x9a\x0e\xb7\xd1\xba\x23\x30\ -\xcb\x78\x99\x35\xab\x38\xc9\x9a\x59\xd7\xee\xc7\x3f\xe5\x69\xfb\ -\x78\x37\xe1\x22\xa2\x1c\x1f\xe9\x1b\x1f\xb3\xfc\xe1\xb1\x3d\x6e\ -\xcd\xd3\xbb\x09\xce\xca\xac\xd5\xfe\x7d\x60\x84\x74\xd7\x61\x3f\ -\xf1\xbc\x97\x90\xc8\xb2\x88\x06\x35\x95\x5c\xef\xfa\x74\x47\x98\ -\xa7\x55\xe2\xf6\x84\x29\xb3\x65\x1e\xaf\xdb\x6a\x09\x8c\x93\xa4\ -\x88\x9b\x26\x5f\xe4\x09\x5e\xaa\x72\x55\xac\x1f\xf2\xf2\x8f\xb8\ -\x69\xb3\xfa\x8f\xb6\xaa\x8a\xa8\xd3\x75\xbf\x54\xb6\x59\x55\x75\ -\x1b\x6e\xd2\x15\x74\xa8\xf4\x59\xe1\xb6\x13\x7e\x80\xf4\xb6\xdf\ -\x81\x5b\x3e\xfd\x94\x67\x4f\x6e\xcc\xee\x78\xf7\x71\xb3\x53\x4b\ -\x10\xac\xe2\x07\x18\x5c\x51\xd5\x77\x93\x9b\x85\xff\xec\x05\xf7\ -\x55\x9d\x66\x75\x27\x52\xfe\x33\x12\x55\x50\x73\xde\x6e\x77\xce\ -\xb9\x9f\xbb\xdb\x91\x9b\xb5\x97\x93\xf3\xf2\xe6\x31\x4e\xab\xa7\ -\xbb\x09\x3b\x16\x7e\xae\xaa\xe5\xdd\x44\x47\x96\x1a\x22\xa8\x3e\ -\x16\x27\x9b\xbb\x49\x28\x58\x64\xa5\xa6\xf6\x64\x70\x82\x05\x99\ -\x8e\x38\x21\x4c\xf3\x13\xe1\xba\xae\xe1\x84\x61\x11\x6f\x33\x9c\ -\xca\xff\xa3\xfb\x4e\xcd\x63\xf5\xf4\x50\x3b\xed\xb4\xf5\x3a\x3b\ -\x1e\xe9\x24\xe1\xfd\x7d\xb5\x39\x2f\x06\xca\x6b\xe7\xde\xe1\xba\ -\xcc\x5b\xb8\xd0\x6a\x33\x9c\x75\x9d\xa7\x59\x73\x7e\x60\x53\xc6\ -\xab\xf0\xa1\xa8\xee\xe3\xe2\x7c\x87\xa7\xbc\x84\x96\xc2\xbd\xfd\ -\x52\xde\x83\x70\xdc\xa3\x33\x66\x4d\xcc\x33\x3d\xb0\xf7\x13\x20\ -\xf6\xa2\xed\xf3\xa2\x65\xbc\xc9\x97\xf9\xe7\x0c\x8a\xa1\xde\xb2\ -\x60\x5b\x23\xb5\xec\x86\xed\x0c\xcb\xbd\x43\xf5\x72\xd2\x35\xb6\ -\x5b\xe7\xad\x9b\xad\x13\xf4\x8d\x55\x9d\xc3\xde\x07\xdb\xe9\x9a\ -\xb6\xc3\x26\xe7\xc6\x88\xf6\x1b\x6f\x60\xde\xfc\xf4\xb1\x6c\x3b\ -\x94\x05\x33\x6f\xf7\xb3\x53\xc3\xf7\xed\x69\xb6\x68\x0e\x1e\xe0\ -\xde\xe0\xe1\xb6\x3b\x11\xe2\x55\x16\xd7\xff\xa8\xe3\x34\x07\x8c\ -\xc3\x23\x8d\x25\x8a\x08\xb5\x1f\xe3\x7c\xac\xad\x56\x5d\xdf\x7d\ -\xe0\x40\x0b\xfa\x98\xc9\xa1\xb9\x5a\x2c\x9a\xac\x1d\x9e\x0c\xfb\ -\x6f\xb7\x45\xb6\xeb\x1d\x7a\x17\x9b\xdf\x68\xe5\x9e\xef\x7d\xd3\ -\xde\x75\xe6\xf4\xfb\xfd\xa9\x2e\xae\x26\xc9\x99\xd5\xe8\xe5\xd5\ -\x38\x13\x52\x99\x67\x57\xbb\x9d\x8d\x8f\xfd\x42\x2d\x49\xb3\x8f\ -\x42\x67\xf6\x7d\x66\x33\x69\x9a\xda\xd4\x9e\x6c\xe6\xb2\x0a\xbb\ -\xf3\x63\x2d\xfb\xbc\x96\xce\xac\xa6\x12\xf7\x5c\xb1\x1a\x3d\xbb\ -\x1a\x02\xfc\x9b\x69\x49\xda\x17\x68\xc9\x26\x71\x4c\xc8\xeb\xb5\ -\x44\x5f\xa4\x25\x4b\x79\x4a\xef\x5f\xad\x25\xc5\xdf\x4e\x4b\xec\ -\xb0\x04\xa8\x16\x72\x47\x5e\x62\xdd\xa6\x2a\x10\x52\xae\x3f\xd0\ -\x42\x81\xc4\x1c\xa9\x8f\x44\xda\x18\xc6\x25\x7f\x81\x1e\xd9\x1b\ -\x9e\x8c\xca\x37\x39\xd9\xe2\x5e\xdf\xeb\x57\x1b\x06\xd5\xaf\x3b\ -\xd0\xc3\xfe\xfd\xb7\x3a\x2e\x1b\x10\x38\xe4\x6c\x70\x9b\x3a\xdf\ -\x7c\x07\xa2\xa4\x25\x61\x92\x4e\x43\x16\x29\x41\xa9\x55\x2a\x0b\ -\xcd\x14\xed\x8a\x13\xc6\xe9\xfe\x45\x5b\x42\x35\x9f\x86\x92\x46\ -\xca\x28\xc2\xd0\x1d\x99\x5b\x13\x6e\xe4\xfb\x7e\xab\x5b\x06\x1b\ -\xb3\x91\x55\x56\x1f\xe2\xff\x06\x8d\x4c\x44\x40\xce\xd9\x75\xdf\ -\x95\x9e\xeb\x8a\x46\x13\x31\x66\xb0\x82\x1d\x24\x10\x90\xed\xf4\ -\x97\xac\x7d\xac\xa0\x88\x55\x7c\x48\x4e\xdd\xb1\x7e\xdf\x65\xf2\ -\x75\x93\xd5\xbf\x3a\x42\xf9\xcf\xf2\xf7\x9e\x34\x9d\x45\x53\x1b\ -\x76\x58\xd4\xf1\xdf\xf9\x63\x9d\x81\xaf\xdf\x9c\xc9\x20\xfd\x34\ -\x3d\x33\xa9\x8a\x22\x4b\x80\x51\x5c\x3c\xc5\xdb\xe6\x80\xc8\x33\ -\xc6\xf4\xdc\xb8\x2b\x36\xe0\xc3\xce\xc5\xd8\x2d\x47\xca\xa3\x34\ -\xd2\x54\xa8\x41\x52\x77\x7a\x06\xa9\xa3\x92\x12\x22\xac\x1a\xa1\ -\xc2\x69\x64\xc0\xbd\x08\x1f\x01\x78\xae\xf7\x75\x8a\xbe\x64\x65\ -\x84\x70\x49\x94\x99\xa2\x4e\xe0\x8a\x4a\xab\xb8\x98\x92\x08\xac\ -\xd1\x1a\xb8\x35\x2c\x8c\x48\xd8\x9e\xd5\xd3\xd0\x44\x88\xdb\x42\ -\x52\x39\x85\xd5\x08\x2d\x88\xa5\xef\x0f\x3a\x76\x4b\xc4\xc5\xdb\ -\xea\x78\x40\x56\x9c\x8e\xc7\x4b\x20\x8b\x1c\xf4\xe3\xf8\x2c\x3b\ -\x98\x8e\x23\xb0\xd4\x44\x07\x6d\x2f\xc6\xf2\xc5\xb1\xbc\x76\x5c\ -\x99\x58\xff\xb9\x42\x6d\x24\x32\xd4\x12\xad\x88\x9e\x12\xf7\xc0\ -\x41\x19\x05\x7f\x82\x1f\x32\xe8\x91\x4b\x25\xe4\x94\xf2\x48\x52\ -\xcb\xe9\xfb\x2b\xd1\xfa\x92\xb9\x9e\x8b\xea\x3a\x24\xe1\xb3\xf9\ -\x6f\x10\x6f\x6d\xa8\x43\xfa\x85\x68\x76\x2e\x81\x71\x66\xd9\x2b\ -\xf8\x94\x34\x9c\x62\x67\xe7\x18\xdc\x17\x38\xd5\x42\x2d\x16\x27\ -\x19\xe6\x8b\x9c\xea\xcf\x30\xbe\xbd\x6e\x9f\x37\x40\x44\x58\xfd\ -\x66\x8e\x18\xf2\x88\x71\xff\x4c\x59\x24\x28\x17\x3b\x97\x34\x94\ -\x28\xcb\x98\xfb\x6a\x85\x34\x44\x4b\x3b\xd5\x22\x52\x88\x24\x4c\ -\x79\x97\x14\x02\x7e\x20\xde\x8f\x3c\x81\xca\x81\x69\x7b\x5f\xd0\ -\x91\xb6\xc2\x58\x3d\x72\x88\x51\xb7\xc5\xd9\x6e\xf5\xce\x4f\x14\ -\x93\x7d\x69\xe0\x58\xbf\xff\xb6\xcc\xda\x38\x8d\xdb\xf8\x50\x10\ -\x74\x2d\xae\x70\xec\x8a\x82\x3a\x5d\xcc\xff\xf5\xe3\xdf\x7b\x83\ -\x49\x92\xf9\xbf\xab\xfa\xe3\xc1\x08\x5c\x87\xf8\xbe\x5a\x03\x9e\ -\xde\x90\x5d\xa9\x91\xcc\x9d\x82\xe2\xf6\x43\xbe\x44\xa1\xeb\x6e\ -\x4e\xfe\xba\x59\x16\x58\xbf\x17\x8c\x3a\xbb\x22\xe9\x30\xe9\x6e\ -\xda\x3a\xdb\xdd\x8c\x9c\xbd\x4c\x4a\x93\x65\xee\x06\xcd\x7e\x6d\ -\xf3\xa2\xf8\xc9\x2d\x32\x30\xec\xfd\xa4\x79\x5b\x64\x03\x6b\x9f\ -\xed\x77\xdf\x19\xe3\xe0\x70\xb7\xb3\xee\xf4\xfe\xed\xe1\xa8\x10\ -\x7c\xa8\xab\xf5\x6a\x59\xa5\xd9\xbe\x62\x3e\x2e\x14\x8b\xf8\x3e\ -\x43\xf5\xfa\xb3\x93\x05\x9d\x8f\x78\x97\xdf\xd5\xd7\xfb\x15\xb3\ -\xa2\xc8\x57\x4d\x7f\xd0\xbd\x03\x2d\x70\x80\x39\x8e\xf6\xdd\xcd\ -\xa9\x85\xbe\xff\xde\x49\x07\xde\xeb\x5f\xeb\x75\x91\xcd\xb3\x4f\ -\x59\x59\xa5\x29\x9c\xad\xae\x3e\x66\xf3\x1b\x42\xf6\xec\xce\xbd\ -\xee\xaa\xe5\x79\xff\x0a\x65\x65\x75\x81\x2a\xb6\x9d\x8b\xae\x2d\ -\x8d\x9b\xc7\xb8\xae\xe3\xed\xbc\xac\xca\xac\x6b\xed\x97\x1a\xf9\ -\xce\x2a\x6e\x1f\x95\xe2\x6c\x6c\xa8\x64\x77\x69\xc4\xc7\xd6\x8a\ -\x64\xe9\x1a\xc5\xc1\x0c\x5d\xf8\x1e\xbc\xba\xfb\x09\xb8\xc9\x20\ -\xfb\xc0\xbd\x9f\x55\xca\x29\xc7\xf8\x5a\xa5\x44\x94\x6a\x4d\x40\ -\xc9\xde\x4a\x3b\x6e\xff\x82\x49\x12\x1e\x52\x7b\x77\x5b\x61\x1c\ -\x17\x10\xe4\xa0\xb8\xee\x92\x02\x84\x0c\xa4\x9b\x91\x83\x5e\xfc\ -\xa5\x0e\x45\xa4\xe0\xe2\xe0\xc2\xd0\x55\xa8\x23\x2b\x19\x13\x03\ -\xee\xe6\x54\x88\xfc\x04\xa2\x28\xa9\x1e\xe9\xb9\x27\x9e\x87\xfb\ -\x87\xd3\x68\x85\xc8\x04\x32\x82\x1a\x5d\xb9\xd0\x24\xad\x06\x5b\ -\x40\x40\xc2\x57\xb0\x06\x41\x2d\xf5\xc1\x8b\x18\x26\xc0\xf5\x5d\ -\x86\x3c\x04\xa8\xde\xe4\xfb\x69\xc3\x04\xb0\x64\x75\xe8\x73\x34\ -\x76\x6a\xf8\x20\x09\x3f\xdf\xdd\x1d\x8c\xaa\x88\x00\x09\x7d\x85\ -\x29\xdc\x64\xca\x3d\x5f\x8d\x3c\x47\x4e\xb7\xe6\x4d\x91\x97\x96\ -\x9e\xe2\x0e\xe6\xc5\x8c\xa5\xe2\x04\x77\x09\x4a\x46\x2c\x19\x90\ -\x23\x87\x3b\x05\x27\x63\x86\x2b\x31\x04\x1e\x93\x50\x29\x95\x62\ -\x47\x08\x73\x0d\xca\x2f\xf8\x91\x35\xa0\x8e\x03\xef\xbb\x84\xbb\ -\x77\x57\x06\xe2\xe3\xf1\xb5\x96\x12\x0c\x71\xb0\x5b\xab\x34\x70\ -\x73\x5f\x89\x21\x42\x72\x61\x77\xa8\xf7\xb0\x38\xff\xbf\xd6\x43\ -\xc1\x9e\xbf\xda\x43\x89\x51\x50\x1e\xd5\x97\x70\x3a\x45\x04\x80\ -\xfc\x12\xa0\x7e\x72\xf9\x15\xe5\x15\x8b\xa4\x96\xa8\x84\x02\xb0\ -\x3a\x03\x6f\x33\xc8\xbe\x91\xa2\x0c\x09\x4e\x07\x49\xe0\x5c\x45\ -\x30\xee\x7d\x40\x70\x66\x04\x91\x68\x83\x53\x69\x30\x41\x1e\x19\ -\xe7\x74\x8a\xa3\xc9\x38\x22\x28\xa6\x32\x42\x3a\x57\x4c\xf3\xa0\ -\x08\x50\x36\x33\x8b\xba\x11\xe9\xde\x60\x9f\xca\x62\x3e\x50\x47\ -\x7c\x95\x1a\xac\x9b\x51\x2a\x08\x0d\xdc\xc4\x60\x00\x7e\x3a\x89\ -\x55\x89\x09\x42\xac\x60\x28\xa3\x68\xb1\x8a\x19\x29\x82\x9f\x03\ -\xe3\xb8\x3b\xfa\x59\x4f\xcd\x25\xd6\x72\xdb\x43\x4f\xd4\x0a\xc4\ -\x7a\xbf\x94\x14\x89\x3d\x00\xcd\xe0\x4a\x0b\x21\xb8\xdb\x33\xb5\ -\x6e\x5f\xae\x71\x37\x93\x98\x76\x93\x07\x00\xcf\x8d\xc7\x0e\x05\ -\xd3\x9e\x7f\xa0\xd0\x84\x56\x5c\x23\xb7\xc4\x72\x02\x7e\x82\xf3\ -\x80\x7d\xe0\x84\x2e\x04\xb8\xba\x04\xb3\xba\x82\x12\x35\xb9\x0e\ -\x38\x4a\x0b\xe5\xb4\xe7\xda\x94\x44\x44\xd7\x81\xaf\x36\x99\xe0\ -\xdc\x8f\x95\xd8\x8a\x0e\x3e\x9f\x09\x84\x42\x9e\xfa\x7f\x52\x95\ -\x25\x84\x55\x1d\x26\xeb\xfa\x53\xdc\xae\xeb\x6c\x74\xd3\xd9\xdf\ -\x58\x22\xc9\xba\xbc\x0e\x16\xd6\xf8\x4f\xf2\x79\x50\x0a\xbe\x2c\ -\x81\xba\x1a\xe3\xeb\x73\x85\x41\x29\x27\xf4\x9b\x45\x0c\xe7\x49\ -\xdc\x32\x1e\xf2\xcb\x11\xda\xc5\x76\xe0\x4a\x9d\x7b\x32\x03\x62\ -\x47\xe0\x93\x70\x72\xec\xc5\x51\x4a\x14\x2d\x08\xf2\xb0\x40\x36\ -\x8e\xcf\xfe\xa7\x01\x06\x4b\x44\x54\x1f\x44\x1f\xff\x9b\x80\x04\ -\xf6\x88\x7e\x72\x14\x4e\xa4\xcb\xd6\x0e\xd6\x51\x38\x81\x1d\x2a\ -\xc2\xdc\xef\x1d\x5f\x0c\x01\x83\x23\x3f\xa7\x43\xce\x7c\x33\xeb\ -\xda\x5d\xc0\x80\x55\xcc\xef\xd7\x6d\x3b\x6c\xfb\x4f\x95\x97\x73\ -\xaf\xe0\xb7\xd0\xb6\x8f\x06\xb0\x59\x6b\x18\x85\x73\x20\x39\x19\ -\x6d\x28\xec\x18\x44\xd9\x28\x0e\x36\x3e\xa5\xee\x27\x16\x14\xc3\ -\x27\x08\x49\x63\xcf\x5e\x51\x9c\x35\xe2\x6f\x5e\x45\x48\xfb\xc2\ -\x22\xe6\xa3\xe6\xd5\x4a\x21\xaa\x04\xe0\x2d\x44\xc2\x2e\xe4\xd4\ -\x11\x18\xf0\x14\x76\x56\x45\x03\x23\xbe\x5a\x49\x7f\x72\x86\x07\ -\xa1\x40\x5c\xb2\x17\x33\xc7\x6b\x32\x7c\x28\x8e\x73\xbc\x44\xde\ -\x84\x8f\x91\xd3\x1c\x8f\x6a\x10\xc1\xd9\x0e\x6e\x38\x9c\x57\xa2\ -\x55\x09\x09\x03\x1c\xe5\x78\x1b\x39\x45\xf2\x91\x4f\xc2\xcf\x11\ -\x8e\xc1\x28\xe5\xc8\x29\x5d\x69\x29\x14\x82\xfa\xc5\x1c\x6f\x85\ -\x06\x87\x63\xda\xdf\x09\x51\x83\x14\x87\xfc\xe3\x73\x93\x64\x54\ -\xfa\x74\x2f\x2c\xc8\x2a\x7f\x09\xb3\x43\x48\xb1\x8e\x2d\x0c\xd8\ -\xe6\x45\x6a\x87\xdc\x83\x48\x43\xb5\xf9\x3f\xc0\x7d\x70\x8d\xf0\ -\x3a\xe4\x11\x4c\xad\xa0\x94\x1f\xe1\xce\xa4\x90\xe4\x5b\x01\x9e\ -\x9d\xf1\xf4\x0b\xc0\x1b\xf9\xbf\x03\x5e\x21\x21\xca\xb7\xa5\xf4\ -\x8a\x90\x13\xd0\x39\xe8\x1f\x78\xf7\x40\xd0\x81\xce\x22\x47\x14\ -\xa5\x1d\x97\x72\x14\x4c\x1f\x60\x9a\x11\xec\x0c\x04\xd4\xf9\xbb\ -\x38\x82\x1d\xe5\x32\x8c\x8d\xb2\x11\xec\xbe\x06\xe3\x96\x4b\x71\ -\x19\x77\x85\x6e\xca\x31\x35\x02\x9b\x22\xca\xd5\x0c\x8e\x2a\x70\ -\x81\x6a\x87\x7b\xaa\x00\xf6\x87\x74\x47\x5f\x80\x3b\xa6\x25\x20\ -\x17\x52\x5e\x89\x3b\x16\x41\xb9\x43\x60\x73\xdf\x3c\xf0\x83\xab\ -\xd6\x57\x42\xaf\x40\xfb\x05\x43\x11\x70\x04\xbd\xe3\x91\x86\x7d\ -\x23\xd0\x0b\x71\x65\x19\xbf\x87\xfe\xdb\xf7\xf8\x90\x7d\xb5\xcf\ -\x53\x1f\x79\xa9\x38\x02\xde\x28\xd4\x6c\xf6\x1b\x01\x5e\x0e\xae\ -\xee\xae\xf3\x79\xda\x5f\x2f\x3f\x7c\x78\x77\xeb\x2e\x7b\x3f\xbc\ -\xfb\x2f\xf4\x25\x33\x5f\ -\x00\x00\x16\xb0\ -\x00\ -\x01\xff\x66\x78\x9c\xed\x5d\x59\x73\xe3\xc8\x91\x7e\x9f\x5f\x41\ -\x73\x5e\x3c\x61\xa1\x84\x2a\xa0\x80\x02\x5b\x6a\x3f\x78\xc2\xb1\ -\x13\x61\xc7\x46\xd8\x5e\xef\xe3\x04\x45\x42\x12\xb7\x49\x42\x01\ -\x42\x57\xff\xfa\xad\xc2\x41\xf0\x48\xb5\xc5\x49\x30\xd1\x1a\x24\ -\x67\x3a\x28\xe2\x46\x7e\x95\x59\x79\x55\xe6\xd5\x9f\x5f\x56\xcb\ -\xd1\x53\x9a\x6f\x16\xd9\xfa\x7a\x2c\x85\x3f\x1e\xa5\xeb\x59\x36\ -\x5f\xac\xef\xae\xc7\xff\xf3\xaf\xbf\x7a\x66\x3c\xda\x14\xd3\xf5\ -\x7c\xba\xcc\xd6\xe9\xf5\x78\x9d\x8d\xff\xfc\xf9\x87\xab\x3f\x78\ -\xde\xe8\x2f\x79\x3a\x2d\xd2\xf9\xe8\x79\x51\xdc\x8f\x7e\x59\x7f\ -\xd9\xcc\xa6\x0f\xe9\xe8\x8f\xf7\x45\xf1\x30\xb9\xbc\x7c\x7e\x7e\ -\x16\x8b\x7a\xa3\xc8\xf2\xbb\xcb\x9f\x46\x9e\xf7\xf9\x87\x1f\xae\ -\x36\x4f\x77\x3f\x8c\x46\x23\x7b\xdf\xf5\x66\x32\x9f\x5d\x8f\xeb\ -\x13\x1e\x1e\xf3\x65\x79\xe0\x7c\x76\x99\x2e\xd3\x55\xba\x2e\x36\ -\x97\x52\xc8\xcb\x71\x7b\xf8\xac\x3d\x7c\xe6\xee\xbe\x78\x4a\x67\ -\xd9\x6a\x95\xad\x37\xe5\x99\xeb\xcd\x8f\x3b\x07\xe7\xf3\xdb\xed\ -\xd1\xee\x69\x9e\x83\xf2\x20\x99\x24\xc9\xa5\xaf\x2e\x95\xf2\xec\ -\x11\xde\xe6\x75\x5d\x4c\x5f\xbc\xfd\x53\xed\x33\x42\xa7\x2a\xdf\ -\xf7\x2f\xed\xbe\xf6\xc8\xf7\x1d\x35\xd9\x58\x82\x3e\xd8\x7f\xdb\ -\xc3\x9b\x0d\x62\x93\x3d\xe6\xb3\xf4\xd6\x9e\x97\x8a\x75\x5a\x5c\ -\xfe\xfc\xaf\x9f\xb7\x3b\x3d\x5f\xcc\x8b\xf9\xce\x65\x1a\x7a\xee\ -\xdd\x75\x8f\xc8\xeb\xe9\x2a\xdd\x3c\x4c\x67\xe9\xe6\xb2\xd9\x5e\ -\x9e\xff\xbc\x98\x17\xf7\xd7\xe3\x20\x14\x32\xb0\x1f\x5d\x6e\xbc\ -\x4f\x17\x77\xf7\xc5\xe1\xd6\xc5\xfc\x7a\x6c\x9f\x5e\x07\xca\x2f\ -\x7f\xef\x0c\x0e\x59\x1d\x50\x5f\x78\xb2\xdd\xe3\x8b\x44\x09\x39\ -\xca\xa5\x0e\xe2\xea\x98\xe6\x15\x26\xf3\x6c\xe6\x9e\xc9\x5e\x32\ -\x5d\x2d\xa6\x8f\x45\xb6\xb2\xa8\xcd\x66\xcb\xe9\x66\xb3\xb8\x5d\ -\xcc\xec\x8f\x6c\xfd\xb0\x7c\xbc\x5b\xac\x7f\xb5\x17\x2d\x8a\x34\ -\xff\x35\x9f\x6e\xdc\x57\x91\xae\x1e\x7e\xfd\xc7\x7f\xff\x22\x1a\ -\x52\x6e\xef\x9b\xbe\x3c\x64\x79\xe1\xbd\xcc\x1f\x2c\x41\xa3\x58\ -\x68\x70\xf7\x6b\xbb\xfb\xb3\xdd\x7f\x35\x4f\x6f\x37\xee\xb8\xea\ -\x0d\xdd\x2f\xfb\x8a\x6a\x3c\xba\x2c\xf7\x6e\x1f\xd8\x3d\xed\xfc\ -\x69\x91\x3e\xb7\xc7\xde\x4c\x37\x15\x15\x47\xa3\x87\xe9\x9d\x1d\ -\x71\xcb\x2c\xbf\x1e\xff\x78\x5b\x7e\xea\x1d\x37\x59\x3e\x4f\xf3\ -\x66\x57\x54\x7e\xf6\x76\x65\x16\x95\x45\xf1\x5a\xf1\x58\x7d\xed\ -\xe6\x89\xdd\x55\xb7\xfb\x7d\x78\xff\xe6\x7e\x3a\xcf\x9e\xaf\xc7\ -\xea\x70\xe7\xd7\x2c\x5b\x5d\x8f\x63\x91\x48\xe3\x87\x32\x3e\xdc\ -\x3d\x7b\xb9\x1e\x7b\x81\x14\x71\x12\x18\x63\x8e\xf6\xba\x07\x4a\ -\x84\x09\x74\x54\x23\xb7\xbb\xf3\x31\xcf\x2d\x17\x7a\xcb\xe9\x6b\ -\x6a\xdf\xaa\xfc\x0a\xea\x83\x36\xf7\xd9\xf3\x5d\xee\xa8\x53\xe4\ -\x8f\xe9\xe1\x99\x6e\x8f\x77\x73\x93\xbd\xc0\xbb\xed\xa0\x78\x74\ -\xfc\xed\x3d\xae\x17\x85\xe5\xa1\x87\x97\xdd\xab\x3e\x2e\xe6\xe9\ -\xe6\x8d\xeb\xba\x7d\xdf\xb8\xf0\xf3\x62\x6d\x89\xe4\xd5\xa3\x5d\ -\x06\x5b\x0c\x0e\x8f\x68\x86\x7e\xec\x1f\x91\xa4\x3e\xc2\xde\xe1\ -\x08\x87\x7a\xd7\xeb\xdb\xbb\x56\xd3\x97\xc5\x6a\xf1\x35\xb5\x74\ -\x91\xe5\xb0\xb3\x43\x6b\x8f\x2a\xd5\x69\xa3\x51\xf1\xea\xd8\xf8\ -\xe5\xd5\x6d\x1b\x37\x1b\x1d\x39\xdd\x06\x1d\x84\xd1\x76\x63\x96\ -\x2f\x2c\x77\xec\x3c\x4e\xb3\xe9\x75\x77\x93\x63\x7a\x2b\xb3\x5f\ -\xca\xf1\x55\x8e\xbe\xf8\x70\xdf\xeb\xee\xbe\x7a\xd8\x5f\x1e\x8f\ -\xfb\x72\xfb\x2a\x2d\xa6\xf3\x69\x31\x6d\x99\xa0\xd9\x62\x99\x46\ -\x37\x6f\x66\xe5\xe7\xe4\x1f\x3f\xff\xf5\x73\x7d\xa3\xab\xd9\x6c\ -\xf2\xbf\x59\xfe\xa5\xb9\xef\x68\xe4\x0e\x98\xde\x64\x8f\x96\xd2\ -\xe3\xcf\xdb\xcd\x57\xf3\xd9\xc4\x4a\x3c\x2b\x09\x3e\x2f\x56\x76\ -\x68\x3b\x61\xf9\x27\x2b\xe1\xae\x2e\xdb\x1d\x7b\x07\x3b\x62\xb5\ -\x17\xad\x2e\x9b\xa7\x95\xe8\x04\xe7\x8f\xf9\x6c\xb5\x70\x27\x5d\ -\xfe\xb3\x58\x2c\x97\xbf\xb8\x9b\xd4\x6f\xbc\x73\xd1\x45\xb1\x4c\ -\xdb\x8d\x57\x97\xf5\xd3\xd7\xef\x76\xb9\xf3\x72\x57\x97\xcd\xdb\ -\x97\xbf\xee\x5a\xaa\x94\x3c\x71\xc4\x38\xcb\xe9\x4d\xba\xbc\x1e\ -\xff\xcd\xed\x1c\x1d\xed\xbd\xcb\xb3\xc7\x87\x55\x36\x4f\xeb\xd3\ -\x1b\x2c\xee\xfe\xd3\x71\x07\xb7\x0d\xde\xba\xad\x9d\x15\x97\xcb\ -\x6c\x0b\x52\x3a\x2b\xb6\x23\xa1\x78\x5d\xda\xcb\x95\x62\x6a\xf2\ -\xa3\x5f\x7e\x3e\xcd\x17\x9b\x07\x7b\x41\x3b\xbb\x2c\x17\xeb\xf4\ -\x53\x66\xc5\xfa\xed\x32\x7b\x9e\x3c\x2d\x36\x8b\x9b\x65\xfa\xa9\ -\xfc\x5e\x2c\x2d\x41\xb7\x9b\x6a\x61\x35\xb1\x82\xdf\x24\xe5\xe7\ -\xd3\xad\x25\xf4\xa4\x96\x89\xe5\x0f\xaf\x39\x48\x56\x3f\xf3\xc7\ -\x65\x3a\x59\x67\xeb\xaf\x56\x16\x7e\xda\x14\x79\xf6\x25\x75\xc7\ -\x1b\x6d\x1f\xa1\xfa\x59\xf1\xed\x44\x0b\x99\xc8\x30\x8a\x8c\x6c\ -\xb6\xbb\xe7\xb2\x6f\x38\xb9\x79\x2c\x8a\xdd\x6d\xff\x97\x2d\xd6\ -\x13\x8b\x74\x9a\x37\x5b\xcb\x1f\x4b\xcb\x82\xc5\x24\x6c\xb6\xcd\ -\xa7\x56\x76\xe6\xb9\x7d\x43\x7b\xf7\x74\x77\x6b\x76\x7b\xbb\x49\ -\x8b\x89\xb2\xf2\x4f\x19\x5f\x6a\xd3\xec\x6c\x1f\x7d\x35\xcd\xbf\ -\xa4\x79\x75\x66\xba\x9e\xda\x97\xf7\x6e\xa6\xb3\x2f\x0e\x9b\xf5\ -\x7c\x32\x9d\x59\x41\xf6\xb8\xb4\x6a\xd0\x1e\x0f\x3b\x92\x07\x41\ -\xdc\x72\x67\x2d\x90\xa2\x44\xb8\x79\x36\x68\x99\xbb\x91\x43\xda\ -\x88\x92\x31\xcd\x76\x8f\x13\xdb\x2a\x12\x7b\x33\xc9\x68\x64\x79\ -\xd8\x93\x81\x30\xbb\x4c\x6c\x31\x7e\x98\x16\xf7\x07\x18\x97\x78\ -\xec\xbc\xf0\x16\xee\x3d\x5a\xab\x6a\xe6\x0f\xc2\xf0\x9c\xb4\xde\ -\x92\x73\xfb\x1e\x96\x48\x7f\x1f\x6d\xa5\xd1\x85\xb7\xfd\x73\xf4\ -\xef\x51\x10\x54\x3f\xe2\x3d\x9a\xba\x57\x54\x49\xd2\x92\xa2\x9d\ -\xa6\xb2\xb5\x7d\xe4\x22\xcb\x3d\x3b\x61\x3d\x4d\x8b\xc7\x3c\xdd\ -\x93\x8c\x5b\x09\x67\x59\xc9\x09\x05\x3b\xb7\xcc\x66\x1f\x9d\x76\ -\x81\x16\xea\x62\x4b\xa9\xd1\x7f\x8d\x8e\xc5\xfe\x0e\xd5\xcc\xf7\ -\x43\x35\x29\x2c\x88\xbe\xd2\xe6\xe1\xe5\x74\xb2\x81\xc4\x58\x8d\ -\x1a\x24\x82\x0b\x15\x8b\xb8\xfc\x6b\x34\xdb\x6e\x0d\x2f\xfc\xb7\ -\xfe\x3e\xa2\x55\x10\xc7\xca\xf3\xdf\x4d\xad\x4e\x06\x91\x8c\x75\ -\x28\xb5\xee\x90\x1e\x91\x08\x2f\x1a\xa5\xde\x51\xc2\xbf\xf0\x42\ -\xa1\xca\xe1\xf1\xd6\xdf\xc7\x94\x30\xe1\x87\xa7\x83\x94\xf5\x68\ -\xe8\x84\x1a\xde\xfb\xb9\xe8\x3b\xa5\x87\x52\x1d\x0d\x0c\x2f\xf9\ -\xf0\xa4\x88\x3b\x1d\x1a\x1f\x9e\x55\xb6\x53\x49\x37\xf4\x08\x3e\ -\x3a\x3d\x64\xdc\x29\x3d\xde\xaf\xb6\xfc\x47\x7a\x94\x3a\xf6\x96\ -\x06\xbd\x4c\xb2\x56\x8c\xa0\xe6\x57\x4f\xfd\x9e\xc8\xb1\x1d\x2a\ -\x38\x9a\x48\x42\x96\x39\x33\x41\x64\x17\x4a\x18\xa9\x0c\x39\x2f\ -\x41\x22\x2c\xbf\x84\xbf\x1b\x52\xb4\x86\x1e\x8a\x20\xbf\x41\xff\ -\x38\x87\x1f\xa4\x91\x40\xe5\xf9\xef\x76\x7a\x40\x54\xf7\x4f\xa7\ -\xf5\x6f\xf2\x75\xf8\x47\x48\x21\x5c\x1c\xc6\x6f\x05\x79\xe3\x73\ -\x15\xed\xa6\xc6\xb9\xe1\x8b\x44\x86\xca\xe8\xb8\xdd\xe5\xfc\x94\ -\x81\x08\x8f\x9c\x1b\x8d\xe8\xd0\x8c\xdb\x79\x71\xdb\x11\x29\xa7\ -\x23\xa7\x1b\x07\x14\x23\xd7\x03\x72\x09\x02\xb9\x50\x44\xc7\xc8\ -\x69\x11\x24\x7e\x18\x47\x8c\xdc\xb9\x79\x6e\xc7\x85\x70\x3a\x76\ -\xb5\x9a\x69\x18\xbb\x3e\xb0\xc3\xcc\x74\x10\xd7\x25\xa2\xc4\x2d\ -\x50\x8c\xdc\xd9\xb9\x2e\xea\x98\xeb\x18\x3b\xb2\xb9\x6e\xc7\x0a\ -\xec\x48\x4f\x09\x84\x8e\x64\xe2\xb3\x9e\x42\x30\xdb\xa1\x74\x15\ -\x73\xe8\x51\x63\xf4\x28\xe7\xbb\xae\x19\xcf\x08\x3f\xb6\xd0\xc9\ -\x84\xa1\x3b\x3b\xe3\x75\xcd\x76\x8c\x1d\xdd\x84\x87\x50\x34\x95\ -\x0f\xe4\x8b\xb0\x61\x4e\x3a\xe1\xc9\xae\x67\x3c\x86\x8f\x08\x3e\ -\x8c\x95\x00\xfa\x32\x59\x57\x21\x63\x3c\x84\xb2\x02\x0b\x4d\xc6\ -\x8e\x6c\xc2\xc3\x48\xcc\xa4\xe2\x3b\xf6\xac\xf4\x36\xe1\x21\xa4\ -\xa6\x92\x80\x99\x40\x8a\x9e\x3b\xdb\x0c\x15\xbd\x04\x10\x9a\x87\ -\x39\xa4\x0d\x80\xc7\x7b\x2a\xfc\xaa\x38\xed\x9e\xe4\xf4\x1b\x67\ -\x27\xe3\x77\xf6\x59\x0f\x8d\x60\x00\xc8\x4f\x46\x90\x6e\xee\x03\ -\xa4\xe7\x69\x00\x2a\xb1\xcf\x7d\xa1\x48\x4a\x9e\x64\xec\x08\xe6\ -\x3e\x8d\x45\x2f\x14\xba\x42\x8b\x21\xec\xc3\xc5\x09\x99\x0d\x28\ -\xf6\x33\x35\x9e\x86\xb1\x3b\x7f\x50\x0f\x32\x1c\xf0\xec\xc7\x10\ -\x12\xc6\xf6\xf0\x12\x14\x54\x60\x94\x60\xf4\x48\x9c\x9d\x50\xa0\ -\xe1\x34\xfc\xb4\x88\x18\x3a\xf2\xd0\x1e\x1e\x37\x88\xef\x22\x11\ -\x96\x64\x92\x8c\xe0\xf9\x23\x7c\x78\xd3\xe1\x80\xf5\x18\x3d\xc2\ -\x18\x1f\x1e\xbd\x7a\xfd\x1a\xfb\x5e\x7a\x0c\xf5\xe1\x35\xd0\xc3\ -\xe9\x8f\x01\xa4\x0a\xf6\xe1\x6d\x3f\xd0\xfb\xc9\xfa\x0b\x89\xe3\ -\xd3\x8b\xcf\x22\x3f\x19\x3d\x92\x80\x1f\x5e\xfd\x84\x0a\xa3\xb0\ -\xe5\x4e\x1a\xf7\xc3\xdb\xee\x46\xc4\x65\xed\x20\x06\xb1\x0f\x10\ -\xb1\xf3\x5f\xab\xab\xec\x4a\xd0\x44\x28\x36\x22\x88\x26\x41\x60\ -\x09\xdf\x69\x08\xba\xe9\x8e\xc1\xeb\x65\x0e\xc4\xea\x2f\x4d\x5a\ -\xe0\x9e\xfe\xd2\x7a\x65\x18\x40\x82\x19\x10\x3b\x01\xb6\x85\xdc\ -\x18\xc3\x5e\xc2\x7f\x40\xaa\x35\x9e\x09\xdb\x15\x63\x0c\xe0\xf9\ -\x63\x80\x68\x39\x0a\xf1\x20\x43\x48\x19\x03\xc4\xba\x42\x0f\xd5\ -\x98\xd6\x31\xc3\xe8\x51\xc4\x00\x8f\xca\x9c\x9e\x8a\xdf\x36\xe1\ -\x85\x41\xec\x27\x1a\x88\x46\xf0\xd0\x90\xe0\x14\x26\xc2\x40\xe0\ -\x59\xf8\x8f\x21\xa4\x8c\x06\xa2\xb5\x18\xb0\x36\x08\x9b\xf3\xb4\ -\xd1\x40\xb4\x39\x01\x32\x22\xa3\x48\x17\x12\x44\x8b\x52\xc8\x27\ -\xca\xaa\x0c\x65\x60\x10\xed\x94\x81\x44\x29\x43\x48\x1a\x1d\x44\ -\x63\xb8\x9f\x54\xc1\xd6\x3c\x69\x5c\x10\x2d\x44\x4d\x5d\xff\x93\ -\x41\xec\x69\x51\x12\x3a\xaf\x09\x86\x90\xa4\x48\xdd\xa0\xb1\x2b\ -\x17\x25\xa1\xf5\x50\xe5\x43\x75\x28\x18\x3d\x0a\x67\xa8\x46\xe7\ -\xc6\xb4\x06\xc3\x2e\x7a\xc7\x3d\x83\x18\xc4\x73\xae\x8b\xc0\x33\ -\x21\x98\x5e\xc8\x30\xd2\x19\x83\x78\x4e\x04\xbd\x32\x0c\x21\x65\ -\x9a\x28\x3e\x51\x14\x5c\x61\xc6\x20\x12\x6a\xa3\xe8\x4c\x35\x5e\ -\x62\xd6\x93\x22\x8a\x36\xe4\x41\x3b\x82\x01\xa4\x53\x63\xce\xa3\ -\x8d\xf2\x32\x17\x42\x35\x06\xeb\x8f\x01\xf3\xb4\x75\xa5\x9d\xd2\ -\x94\x25\x1c\x34\x84\xb5\x1a\x83\xce\xb6\xff\x0e\x8a\x35\x9d\xd6\ -\x1b\xf8\x77\x85\x62\x12\x40\xbd\x1f\x42\xed\xfe\xd3\x00\x82\x81\ -\x1f\xc4\xf6\xff\x03\xb7\x4c\xe2\x0e\xdf\xd7\x66\xb4\x88\x23\x95\ -\x44\x44\x91\x89\x01\x23\xe8\xca\x6d\x41\xb9\x6a\xa7\x61\x68\x0d\ -\x07\x77\x3c\x63\xd8\x9b\x35\x01\xac\x9a\x38\x0d\xc2\x83\x9a\x3f\ -\x8e\x2d\x63\xfb\x21\xa9\x8d\x3d\x68\xf4\x2a\xa3\x02\xd0\x48\x4f\ -\xc3\xcf\xaa\x2e\x7e\xe2\x27\x8a\x41\xec\xa9\xe8\x16\x14\xa3\x47\ -\xb1\xa0\x0c\x84\xd4\xf6\xc3\x6a\xcc\xf9\x59\x30\xf2\xc0\xb2\x07\ -\x78\x16\x64\x10\x89\xe3\x4c\x80\x5b\xad\x03\x5d\xc6\x08\x77\x60\ -\xc4\x82\x94\xca\x43\x83\x66\xc6\xc8\x6a\x9f\x41\x14\x18\x86\xb1\ -\xaf\x62\x5c\x90\x87\xbb\x03\x56\xf4\x85\x0e\x8d\x0c\x89\x9c\xa5\ -\x03\xc6\xb0\x2c\xc7\x85\xb7\xef\x41\x46\x64\x10\x89\x4b\x3a\x9d\ -\x49\xa0\xb2\x8d\x4f\xe8\xf2\x46\x1b\x18\xa0\xab\x8d\xe7\x44\xca\ -\x55\x4d\xe8\x49\x51\x2a\xa1\xa4\xb1\xff\xed\x81\x98\x88\x28\x0e\ -\xfd\x98\xa8\xbd\xc4\x80\x41\x2c\xf3\x48\xa1\xe0\xd3\x69\x20\x46\ -\x42\x5b\x0c\xd9\x59\xd3\x67\x18\x1f\x4a\xa2\x39\x0d\xc5\x44\x84\ -\xd6\xde\x97\x8c\x62\x8f\xf6\x3e\x5e\xa0\x1a\x61\xa7\xbf\x20\xe2\ -\x59\xb1\x57\x83\x1f\x2c\x1e\xdb\x81\x7a\xc3\x33\x23\x65\x6e\x29\ -\xda\xcc\xb0\x16\x85\x54\xb1\x8a\x25\x73\x63\x8f\x69\x19\xf8\x70\ -\x14\xe8\xba\x61\x5e\xa4\xcc\x2f\x45\x83\x28\x03\x8b\x97\x65\xc6\ -\x3e\xd7\x1d\x0e\x18\xc4\x26\xdb\xf4\x2c\xd6\x06\xc3\x48\xab\xa7\ -\x2a\x74\x86\x06\x3c\x33\x86\xf6\x22\x89\x8a\x88\xea\x28\x0c\x18\ -\xc6\x6d\xea\x30\xda\x23\x0e\x1b\x1c\x0c\x24\x71\xe6\x29\x3e\x65\ -\xea\x3b\xc8\x5c\x1c\x70\x06\xb1\xcb\x3d\x45\xf7\x1b\xe1\x86\x3f\ -\xbd\x27\x9f\xa2\x97\x94\x72\xc7\x9f\x9e\xe0\x2b\x93\xde\x80\xd9\ -\x10\xdf\xae\x30\xac\x97\xea\x13\x19\xfc\x03\xc6\xb0\x4a\x7d\x43\ -\x2f\xc3\x80\x3a\x57\x30\x88\xb4\x26\x06\x9a\x13\x0f\x04\x29\x37\ -\xad\xa0\xb6\x2d\xd0\x08\x42\xed\x7f\x18\x46\xd2\xa4\xb7\xae\x9b\ -\xa7\xa9\x7a\xad\x30\x1b\x14\xe7\xe7\x42\xe7\x36\x3d\x4b\x0b\x43\ -\x06\x91\x6e\x2a\xec\xa4\x0b\x5e\x02\xd4\xcf\x67\xc3\x82\x3c\x69\ -\x11\xbd\xc8\x1b\x62\x46\xc6\x91\x32\x24\x7c\x96\x4a\x35\xac\xd3\ -\xd0\x7a\x4b\xd1\x93\x22\x24\x4f\x19\x44\xba\x49\x51\x76\xd0\x9c\ -\x0b\xac\x98\xc1\x46\x3e\xe5\xa4\x18\x75\x50\x07\x33\xf0\xab\x7a\ -\xec\x8a\x61\xec\x37\x8e\x88\x6d\x74\x08\xd6\x3e\x61\xe5\x86\xb4\ -\x08\x11\x7a\x66\x04\xb9\xb1\x3d\x92\x41\x24\x0a\x06\xa3\x3d\xe0\ -\x1c\x49\xec\x39\x18\x8c\x46\xf0\xc0\xf1\xc6\xe5\xdc\x48\xc3\xc0\ -\xe8\xe6\xe9\x90\xa9\xcf\x18\x92\xc6\x82\xd1\x18\x42\x61\x44\x36\ -\x13\x69\x63\xc1\x68\x10\x21\x33\x91\x41\xa4\x8d\x05\xa3\x6d\x0b\ -\x50\x9a\x72\x89\x5a\x3a\xfb\x10\xad\xce\x40\x2e\x37\x46\x90\x62\ -\x2a\x2c\xc3\xc0\x67\xe1\x40\x36\x28\x88\x8b\x9f\x9c\xc5\xf1\xcd\ -\x28\xd2\x46\x83\xd1\x3e\x9a\x7d\xe7\x0c\xdb\x14\xd4\x61\x60\x74\ -\x5e\x14\x38\x17\x32\x8e\x84\x9e\xd2\xae\xb3\xbc\x59\x93\x21\xf3\ -\x8e\x62\x93\x30\x0e\xc4\x27\x03\x47\x31\xef\xb9\x80\xef\x59\x62\ -\x13\x6c\xc9\x93\x07\x7c\xd1\x38\x06\xf5\x56\xc6\xb1\xdf\x88\xef\ -\x59\x96\xab\xb1\x1e\x43\x1b\xf1\xc5\x26\x78\x83\xdc\xc8\x8d\x67\ -\xc8\x23\xbe\x68\x3f\x37\xc7\x0b\xfb\xd2\x6e\xf0\xd1\xc2\x44\x44\ -\x25\x45\xf6\xfd\xdb\xdb\xae\x5e\x04\x08\xde\xde\x96\xe7\x0f\x13\ -\xc1\x32\xe2\x8b\x6e\xa3\x27\xa1\x18\x05\x25\x86\x83\xe6\x42\x17\ -\xf1\x45\xf7\xb0\xdc\xca\xcc\x5d\x08\x69\x4b\xd3\x0c\x18\xc2\x2a\ -\xe0\x8b\xf5\xae\x95\x16\x3d\xe3\xd7\xdf\xba\x5f\x34\x17\x42\x82\ -\xb4\xcd\x2e\x65\x14\x69\xec\x43\xac\x9f\xad\x6d\xdf\xcc\x30\xf6\ -\x15\xf6\xc5\x46\x7d\x61\x9d\x26\xac\xfc\x70\x01\x63\x48\x12\xf5\ -\x45\x2b\xa6\x10\x23\x32\x88\xb4\x41\x5f\x6c\xc0\x49\x1e\x96\x2e\ -\x65\xb3\x82\xb8\x61\x09\x5a\x96\x82\x6c\xc8\x40\x12\x7a\x4b\xb1\ -\xa6\x05\xe8\xa6\x61\x95\x86\xd6\x57\xda\xad\x24\x65\xf4\x68\x83\ -\xc0\xd8\x70\x45\xab\xb7\xb0\x89\xdf\x63\x10\x18\xeb\xf0\x6e\x11\ -\x63\x18\x7b\x8d\x01\x63\x81\x6c\xe3\xf6\xbb\x42\xd5\xaf\xd7\x6f\ -\x33\x90\x24\x31\xe0\xf3\x70\xe3\x56\x5f\x65\x10\x89\x62\xc0\xd8\ -\x92\x18\xdf\x83\xe7\x74\xc0\xa5\xbc\x5d\x09\x68\x74\xdb\xa0\xfe\ -\xcb\xb1\x73\x28\xb8\x83\x36\xb3\x60\x31\x76\x2e\xaa\x4f\xd8\x70\ -\x26\x84\x2c\x45\x74\x43\x3d\x6e\x1a\x44\xa9\xa3\x6a\x58\x43\x3d\ -\x8d\x15\x95\x38\x4c\xc9\x60\x04\xe9\x16\xe1\xe3\xdb\x05\x41\x5c\ -\x28\x85\xd1\xd2\x68\xa2\xe8\xc5\x80\x31\xac\x72\x32\xc0\x65\xf8\ -\x38\x2e\x64\x04\x49\xb3\x32\x12\x70\xcd\x53\x07\x3a\x0d\x37\xee\ -\x22\xf6\xd9\x74\xc0\x8b\x60\x37\x44\x06\x92\x32\x33\x23\x38\x4f\ -\x7f\xd9\x44\xa8\xd0\x7e\x34\xa3\x78\x7e\x76\x2c\x57\xe4\xe3\x61\ -\x84\x98\x91\x61\xa4\x8f\xef\xa3\x7b\x05\xc3\x62\x95\x6d\x7e\x42\ -\x57\x38\xbe\x8b\x1e\xec\x7e\xa3\x9c\x1b\x07\xed\x7e\x4b\x4a\x73\ -\xc3\x87\x3c\xe1\x1d\xf4\x0a\x66\xcb\x9f\xd4\x77\xa3\xbc\x18\xdf\ -\x9d\x14\x6a\x16\xcc\x38\xd2\xda\x8e\x5d\x34\xef\x06\xdb\x05\xb3\ -\xcd\x41\x6c\x3c\x2a\x38\x9f\xb8\x83\x29\xd2\x08\x77\x20\x55\xc5\ -\xf6\x01\x43\xe9\xf4\x1c\xe7\x05\x40\x07\x1a\x95\x50\xd2\x8a\x56\ -\xe6\xc8\x3e\x83\xfe\x8e\x27\xcf\xe2\x97\x63\x7e\xa4\xd5\x75\xb4\ -\xd5\x5a\xd1\xca\x0e\xa8\xb5\xd2\xb6\xf0\x1e\x30\x92\x95\xb6\x53\ -\xb2\xe6\x59\x64\x6b\x20\xa4\xb6\x1f\xa2\x84\xaa\x01\x03\xd9\xa6\ -\x37\x9a\x33\x29\xae\x0c\x25\x75\x6e\x5c\x88\x0f\x24\x73\x66\x55\ -\xaf\x48\x02\x42\x55\x1d\x21\x67\x75\x19\x19\x2a\xa3\x63\xb5\x07\ -\x5d\x08\x15\x66\x50\x22\x0a\xe3\x48\x92\xa8\x38\xc3\x86\xce\x33\ -\x80\x43\xee\xdd\xe0\x81\xd9\xc5\x0c\x1e\x59\x16\x0e\x60\x29\xbe\ -\x1b\x3b\x0d\x97\xaa\x35\x32\xf1\x49\x8a\x83\x0d\x1a\x3a\x97\x7c\ -\x03\xe8\x2f\xef\x06\xcf\x34\xcb\x30\x18\xbc\x7e\xd6\x7d\x03\x06\ -\xe1\x7b\xc1\x53\x12\x6e\x98\xc0\x52\x93\x32\x2e\x8c\x99\xf6\x12\ -\xa8\x3a\x26\x03\x48\xb8\xdc\x14\x31\xf1\x29\x1f\xe8\xfd\xc4\xb2\ -\x93\x74\x99\x29\x10\xcb\x7f\x37\x7c\x01\xa4\x73\x32\x7c\x44\x2a\ -\x27\x46\x6c\x82\xa6\x5e\x2c\x12\xe3\x27\x21\x8b\x4d\x02\xce\xc3\ -\x98\x0b\x6f\x2c\xeb\x66\xf0\x88\xe6\xbc\x18\xc3\x79\x90\xad\x67\ -\xd5\xd0\x28\x70\xe8\x31\x78\x04\x73\x1e\x10\x0a\x44\x19\x7b\x8c\ -\x1e\x9d\x97\x05\x61\xeb\xc1\x5e\x96\x48\x48\xad\x68\x1a\x22\x0c\ -\x1a\xba\x10\xa7\x6a\xc2\x5e\x16\x06\x8f\x2e\x66\x1b\x61\x7c\x64\ -\xa0\xc6\x92\x08\x2b\x34\xb5\xe2\xa0\x10\x89\x9b\xa5\x7b\x2f\x0b\ -\xe3\x47\xb7\x96\x09\xa3\xb3\x80\xcc\x17\x8a\xc0\x4a\x4e\xc6\xee\ -\xfc\xbc\x07\x2e\xae\xc7\x71\x1e\x83\x47\x17\x5d\x00\x16\x2c\xe1\ -\xa2\x0b\x6c\xa8\xd3\x46\x17\x30\x9e\x16\x90\xfb\x18\x40\xb2\x24\ -\xec\xce\x5d\x9c\xac\xb3\x10\xa6\x94\x75\x1e\x98\x65\xf4\x08\xe3\ -\x7a\x08\x95\x13\x8e\xeb\xb1\xb5\x4e\x19\xd7\xf3\x11\x99\x80\x70\ -\x60\x8f\xf1\xa3\xca\xe1\x44\xcd\x7b\xa0\x9b\xd3\x08\x63\x05\x67\ -\xc0\x3a\x0b\x01\xf3\xc5\xd0\xe2\x3f\x9c\xa3\x93\xe1\xa3\xcb\xe3\ -\x44\x99\xeb\xdf\xaa\xb8\xcd\xf1\x21\x8a\x20\x03\xd8\x71\x19\x6b\ -\xf0\x31\x7e\x74\xd9\x9c\x98\xc9\x0f\x56\x5c\x58\x7a\x12\xe7\x73\ -\x76\x6f\x3b\x30\x84\x94\x19\x9d\xd0\xd2\x4c\xac\xd3\x93\x45\x28\ -\x65\x52\x27\x4a\x88\x86\x90\x0a\x4a\x89\xa0\x3b\x7b\xc0\x8d\x0a\ -\xaa\x75\xb5\x80\x1a\x83\x6b\xd1\xcb\xcd\x08\x49\xab\x16\x6a\x74\ -\x6f\xd7\x03\x00\xdb\x2e\x30\x0c\xe0\xf9\xf5\x50\x30\x5d\xa9\x83\ -\x2e\x5a\x0e\x54\xc6\x8f\xa8\xde\x24\xba\x4b\xf6\xa1\x0c\x65\xf4\ -\x68\x42\x47\x60\x4d\xbb\x0e\xb8\x8f\xe7\x40\xda\x46\x84\x68\x06\ -\x04\xfb\xb9\xfa\x4d\x68\x97\x51\xa4\xe9\x44\x88\x56\x65\x0e\x57\ -\xf8\x31\x7e\x84\x9d\xeb\xba\x6d\xe6\x1a\x57\x2e\x52\x2a\xf4\x06\ -\x5d\x96\xa7\x6e\x0b\x82\x2e\xd4\xab\x84\xf6\x13\x3f\xd9\x63\x42\ -\x2d\x94\x31\x86\x4b\xd7\xd1\x58\x83\x06\x5d\xf9\xdc\x4e\x85\x49\ -\x14\x44\x81\x3e\x50\x48\x23\x23\x43\x43\x54\xa5\x77\xc0\xa2\xb4\ -\xec\x59\xa7\xf0\x5d\x40\xd9\xa8\xef\x55\x9a\x6a\x7c\x73\x6c\x48\ -\x25\x8d\x44\x58\xd2\x8a\xa8\x03\xc1\x80\x61\xac\xea\x47\x82\xab\ -\x38\x71\xa6\x3d\x2b\xa5\xc4\x0e\x6e\x83\x37\x2b\x40\x1b\x9f\x81\ -\xa4\xec\xb1\x04\x76\xca\x3a\x09\xc5\xb6\x91\xf9\x0e\x8a\xba\xea\ -\xa7\x1c\x90\xd4\x11\x19\x34\x8a\x95\x7e\x1a\xe1\x99\x31\x11\xaa\ -\x9a\x02\x19\xc6\xde\x62\x16\x60\xd2\x3d\xbe\x4d\x3d\x6b\xa9\xe4\ -\xa1\x0b\x1f\xaf\xa8\x42\xb3\x23\x23\x49\x1b\xc6\x88\xf0\x8a\x2a\ -\x98\x53\xca\x4a\x0e\x69\x20\x23\xc6\x87\x12\xf7\xd4\x1b\xb6\x17\ -\xa9\x43\x18\x0a\xaf\xe0\x18\x21\x8f\xe4\x29\x03\x49\x1b\xcb\x00\ -\xd3\xf3\x4f\x33\x37\x0e\x9a\x64\x07\x82\x9d\xa7\x67\x17\xa2\x65\ -\xcf\x0f\x4e\xc6\xf8\x78\xc8\x95\x6e\xef\x0e\x92\x11\x39\x17\xaa\ -\x2f\x27\x8d\xf3\x97\x26\x78\xb3\x90\x13\x31\xfa\x0f\x5e\x74\xc0\ -\x87\x9c\x88\xd1\x63\xd4\x22\x3c\x8f\x4d\xcf\x59\x6d\xd4\xa1\x0b\ -\x8d\x67\xc4\x37\xaa\x72\x31\x90\x84\xa1\x0b\xb0\x07\x1d\xfb\xd8\ -\x3e\x0e\x8c\x75\x6e\x4d\x74\x1e\x76\x24\xc5\x71\xd0\xab\xd6\xaa\ -\xe0\x45\x84\xd7\x52\xa1\x18\x14\x9b\x19\x94\x71\x0b\x70\xfd\x76\ -\x07\x53\x23\x83\x48\xe3\x62\x53\xdd\xfb\x69\x28\xb5\x9a\x41\x8b\ -\xd1\x2a\xe4\xe4\xe3\x67\x43\x50\x8c\xb2\x72\x4a\x1a\x72\xea\x20\ -\x23\x03\x0a\x58\xb0\xcd\x4f\x1e\x79\x02\xeb\x58\xe2\x53\xa4\x18\ -\x49\xda\xd0\x93\x44\xab\xa7\x20\x8c\xc4\xeb\x69\x06\x0c\xe3\xb6\ -\xcd\x75\xc2\xb1\xa8\x8f\x88\x5f\x80\x76\x9f\xb6\x16\xfd\x0e\x76\ -\x2a\x68\x8a\x7e\x31\x80\x67\x67\x40\xb0\xc3\xfc\x69\xac\xe7\x03\ -\x85\x9d\x19\x43\x3a\xe5\x14\x9f\x0b\x95\x88\xa8\x24\xc9\x5e\x1e\ -\x86\x8a\x45\xec\x78\x93\x2b\x0c\x91\x28\xa6\x1a\xaa\x52\x7a\x1a\ -\x23\xca\x06\x30\x46\xb1\xaf\xa6\x4c\x78\x8f\x29\x28\x4d\xb5\x88\ -\x18\x3f\x92\x58\xa2\x8f\x2f\x33\x74\xa0\x8a\x32\x78\x44\x01\x0b\ -\xb0\xcc\x25\x3e\x7a\xc8\xaa\x0c\x71\xcc\x42\x75\x5e\x6a\x8f\x21\ -\x24\xf4\xcc\xf8\xe8\x39\x10\xb6\x0a\x59\x8c\xd2\x78\x64\x3a\xa8\ -\x2e\x04\x8a\x51\x32\xfc\x06\x5c\xdb\x24\x29\x6b\xcd\x02\xe2\xf3\ -\xa4\xca\x26\xa0\x5b\xd4\xe2\xa7\x42\xfb\x61\x10\x29\xa6\x41\x0d\ -\xe7\x96\x9e\x06\x63\x20\x64\xac\x63\x7d\x28\x46\x19\x46\xb2\x5c\ -\x28\xdf\xd9\x84\x48\x18\xad\x45\xe8\x9b\xd0\x84\x87\xfe\xb5\x24\ -\xf4\x63\x9a\x02\xec\x83\x86\x31\x29\x33\xbd\xc1\x18\xfe\x69\x30\ -\x86\x22\xb4\x28\x9a\xc3\x49\x91\xb9\x91\x50\xa8\x3a\x23\x11\x5d\ -\xbc\x2d\x16\x81\x95\xaa\x31\xcf\x8e\x3d\xba\x69\xea\xea\x0a\x58\ -\x28\x8d\x30\x52\x49\xa5\x58\xb4\xf6\x18\xff\xf5\xc0\xd5\x50\xa7\ -\xa9\x3a\x52\xc4\xca\x21\xd9\x23\x90\x03\x36\x1b\x93\x00\xee\xaa\ -\x7d\x92\xd5\xd8\xe6\x5d\xb0\xe7\xa6\xaf\x85\xa5\xf8\x6a\x7c\x30\ -\x8a\x1c\x84\xa2\xad\xc6\x17\xa0\x7d\x38\x70\x48\x98\x7d\x70\x74\ -\x0a\x4e\x07\x69\xc3\x60\x40\x98\x31\xa4\x09\x47\x45\xf6\xdf\x59\ -\x6a\x9b\xf2\x9c\x48\xbe\x88\xa6\x8b\x95\x89\x20\x33\x32\x94\x84\ -\x29\xc3\x60\xcd\xef\x0e\xb4\x1b\x96\xa8\x54\xb6\xa2\xc2\x67\x67\ -\x80\x12\x95\x11\x24\xb3\xf6\xb5\x2b\xc2\xf7\xb1\x95\xd3\x01\xbb\ -\x6c\xaa\x00\xa3\x82\x72\x15\x3b\x70\xa2\xb2\xe7\x8d\x38\xc4\xd8\ -\x41\x90\x11\x8c\x15\x33\x90\xc4\xd1\xa9\x18\x32\xf8\x4f\xe3\x48\ -\x29\x74\x90\x04\x09\xfb\xc2\x7b\x8e\x4f\x81\x0b\xf6\x3b\x08\x35\ -\x52\x42\x39\xe8\x55\xdf\x89\x17\xa3\x3a\xae\x5b\x15\x15\x74\xdb\ -\x24\x7e\x18\x93\x68\x38\x83\x46\xcf\x31\xa2\xc2\x34\x5c\x97\x11\ -\xb0\xca\x9b\xe1\xa3\x5c\x85\x91\x60\xda\xad\xc3\xd9\x8b\xa1\xf0\ -\xe3\x48\xd2\xb4\x67\x1b\x34\x80\x95\xfb\x1b\xb4\x11\xdf\x8d\x60\ -\x5c\x75\xb9\x08\x19\xc1\x7e\x5c\x6d\xa0\x36\xfa\x6e\xf4\x54\x95\ -\xfe\xcd\xe8\xf5\xe6\xa6\x31\x90\x7d\xff\x6e\xfc\x12\x48\x7d\x39\ -\xc6\xef\x6e\xf7\xf6\x77\x41\xa0\xdb\x31\x53\xe4\xd3\xf5\xe6\x36\ -\xcb\x57\xd7\xe3\xd5\xb4\xc8\x17\x2f\x7f\xf4\x85\x36\xb1\xbe\xf0\ -\xdd\x7f\x22\x0e\xc3\x38\x91\x51\x7c\xa1\x13\x61\x94\x8c\x4d\x74\ -\x61\x84\x7d\x0a\xad\x13\xfd\xd3\xf8\x73\x7d\x95\xbd\x01\x02\x5f\ -\x33\xd6\x26\x49\x4c\xa4\xec\x35\x23\x2d\xfd\x44\xa9\xe0\xc2\xb3\ -\x9b\xe3\xd8\x6a\xd5\x52\xba\xcd\x2a\x91\x2a\x52\xc6\xdd\xf7\xa7\ -\x71\x7b\xb5\xfc\xb5\x74\x4d\xd9\x81\x1a\x05\xc9\xee\x76\x67\x12\ -\x5b\xed\x3b\x8a\x64\x2c\x77\xb6\xbb\xba\xe6\x46\x84\xbe\x4a\x76\ -\x0c\xac\x92\x5c\x9e\x53\x0d\xb4\x8c\x77\x9c\x59\x2d\x85\x8d\x30\ -\x3a\xf1\xb5\xd9\xdd\xd7\x00\x12\x8a\xc8\xd8\x57\xd7\x3b\xbb\x1a\ -\x20\xed\x5d\x5c\x3b\xaf\x60\x67\x57\xcd\x21\xd5\x00\x4f\x93\xe9\ -\x8d\x8c\xde\x1e\xe0\xe9\x53\xba\xce\xe6\xf3\xed\x00\x97\x66\x1e\ -\x59\xcb\x0c\x1e\xe0\xef\x1f\xb6\xdb\x5b\x6d\x07\xc1\xbb\x50\x4a\ -\x54\x28\x75\x94\xc4\x16\x8e\xc0\x28\x5f\xaa\x44\x97\x28\x39\xbc\ -\xa4\x31\x6e\x40\xf8\x61\x62\x74\x10\xc2\x28\xc5\x46\x6b\x65\xcc\ -\x01\x4a\xd2\x5e\xd7\xb7\xdb\x93\x7d\x94\x12\x11\xd9\xa1\x28\x75\ -\x78\x80\x52\xa8\xed\x5d\x7c\x3b\xda\x01\x94\xa4\x16\xbe\x1d\x8e\ -\x3a\x00\x50\xb2\x56\xb5\x7d\x5e\x23\xdf\x46\x29\xfe\x80\x30\x39\ -\xc2\x5a\x96\xb4\xe6\xa4\x1d\xe6\x87\xe3\xdf\x0e\x4c\x99\x44\x3a\ -\x50\xfb\x94\x3d\xae\x7e\x54\x51\x36\xd2\xb5\x8b\x17\xa0\x6c\x58\ -\x3b\x97\x92\x63\xca\xb6\x39\x25\x6f\x53\xd6\x33\xc3\x20\xad\x77\ -\xec\x10\x3f\x3b\x6d\x3f\x26\x65\x03\x61\xfc\xd0\x8a\x4d\x7d\x40\ -\xd8\x40\x68\x1d\xe8\x38\x89\xde\x4b\x58\x53\x52\x2f\x06\xe8\xba\ -\x07\x4e\x43\x50\x79\xa8\x91\x1e\x12\xf4\x23\x90\xf3\x61\x5a\xdc\ -\xef\x3c\x66\x36\x5f\x3c\xd8\x7f\xf6\xbc\x79\x5a\xbc\x3e\xa4\x1b\ -\xab\x80\xbd\xf1\xd9\x7d\xed\xf5\x97\x8d\xd5\x87\xd2\xc9\x2c\x5b\ -\x5b\xcd\xa8\xc8\x72\x6f\xf6\x98\x3f\x4d\x8b\xc7\xdc\xbe\xb4\xff\ -\x06\x81\x76\x36\xdb\xad\xab\x91\xb5\xf1\x44\x50\xc6\x85\x2e\x3c\ -\x69\x27\x80\xd1\xd3\x48\x0a\x39\x0a\x54\xf9\x75\xbf\xfb\xe3\xdf\ -\x23\xd7\x61\x64\xf4\xb7\x91\x17\x68\xa1\x2e\x1a\x87\x75\x3c\x72\ -\x32\xbd\x8a\x05\x5e\x34\x2b\x0e\x03\x7b\x1d\x2f\xda\x39\xda\xdb\ -\x46\x7c\xcb\x0d\xb2\xbe\xa5\x1d\x16\xee\xc8\xea\x5e\xe5\x97\x67\ -\xef\xf6\x75\xb4\x1a\x29\x77\x0b\xa1\xec\x66\x65\x95\x13\x77\x9d\ -\xd0\x5c\x6c\x83\x58\xf6\x61\xdc\xa9\xcb\x91\x5b\xe6\x5f\xde\xf0\ -\xc2\xe5\x05\xb8\x8b\x94\x87\x7f\x3d\x1e\x06\xfb\x3a\xed\x6d\xb6\ -\x2e\xbc\x72\x8f\x25\x7b\xbe\x9a\x2e\xab\x2d\x4f\xd3\x7c\x31\x5d\ -\x17\x7b\xdb\x9e\xcb\xf1\xb8\xb7\xc9\x82\x9b\x16\xb3\xfb\xfd\x6d\ -\x8b\xaf\xe9\x64\x95\xce\x17\x8f\xab\x4f\x4e\x2f\xf5\xee\x8f\xcf\ -\xbb\x9d\xae\x16\xcb\xd7\xc9\x3f\xed\xdc\xfc\xc9\x6b\x00\xf4\xaa\ -\xd3\x1f\xd2\xd9\xe2\x76\x31\x9b\x16\x8b\x6c\x5d\x1d\x51\xa4\x2f\ -\x85\x3d\x6a\x9e\xae\x9d\x7a\x5a\xfe\x9a\x2e\x17\x77\xeb\xc9\xa6\ -\x98\xe6\x45\xb5\x61\x9e\xce\xb2\xbc\x3a\xa7\x1c\x76\x07\x1b\x4b\ -\x0d\xb9\xda\xb3\x4c\x0b\x3b\x68\xed\x7d\xec\x80\x5c\xdf\x35\x8f\ -\xf5\x9c\xe5\xf3\xc3\x6d\xe5\x35\xb6\x0a\x44\x75\xf6\x73\xbe\x28\ -\xec\x21\xde\xca\x8e\xd1\xc9\x32\xf7\x8a\x1b\x6b\x16\xb8\x41\xe5\ -\xee\xbc\x2c\xf2\x4f\x37\xd3\x4d\x5a\xbe\xf6\xe6\x7e\x71\x5b\x4c\ -\x9a\x9f\xf5\x63\xaf\x67\xf7\x96\xf8\xd5\x73\xff\x66\x73\xa2\x66\ -\xc9\xf7\xb2\xf0\x2e\x1b\x56\xfc\xab\xdc\x3a\x2e\xab\xf7\x98\xe0\ -\xfd\xba\xfd\x9b\x6c\x7b\x1a\xff\xb9\x73\x83\x64\x4f\xfc\x55\xfc\ -\x17\x26\xd5\x98\x8e\x2f\x5a\x0e\x99\x8d\x2c\xeb\x5c\x34\x1d\x98\ -\x82\x6f\xfd\x7a\x4b\xdc\x19\x30\x42\xde\x08\xb7\x5b\xc0\xd0\x92\ -\xc2\x84\xb1\x56\xbe\x09\x1e\x5e\x4e\xb7\xb9\xde\x21\xe7\x7e\x13\ -\xc1\xa2\x63\x82\xa9\xba\xb0\xc7\x1e\xc1\xbc\x7d\x1a\x7d\xf3\xe7\ -\x5b\x34\xf3\xfd\x28\x90\x47\xe3\xeb\x5b\x34\x53\xb5\x26\x16\x86\ -\xdf\x13\xcd\x42\x4f\x7d\x63\x98\x79\x81\x95\xaa\xdb\x11\x76\xf8\ -\xfd\xbb\x1f\x4f\x9e\xfc\xc6\x88\xaa\x69\xd3\x0c\x97\xe3\x3f\x06\ -\x30\x74\x00\x02\x05\x49\x9d\x5d\x67\x75\x84\x3a\xfb\x2e\xd8\x0e\ -\xa1\x20\x71\x9f\xf8\x5b\xbf\x06\x30\xa8\x20\xaa\x05\x5b\x96\xdb\ -\xa5\x9a\xb7\x4f\xa8\x6f\xfe\x1c\xc2\x70\x8b\x8f\x08\x17\xcb\x76\ -\xb8\x29\xab\xcc\x0d\x59\x58\x79\x80\xc6\xae\xdb\x71\x55\x91\x67\ -\xd8\xf2\xea\x98\x42\xb1\x6f\xdf\xde\xd5\xfa\x1e\xf6\xd0\x39\x56\ -\x36\xa3\x2d\x59\x86\x3d\x64\x8e\xf5\xa3\x76\x8a\xdb\xba\xd7\x86\ -\x3d\x78\x8e\x15\xef\x76\x3e\xdb\x25\xd1\x47\x1c\x48\x57\x97\x77\ -\xee\x8f\xf2\xeb\xea\x72\xf3\x64\xbf\xfe\x1f\x0e\xa2\x7a\x19\ -\x00\x00\x06\x59\ +\x00\xbf\x45\x78\x9c\xed\x5d\x5b\x6f\x23\x47\x76\x7e\xf7\xaf\x60\ +\xb4\x2f\x6b\x44\x4d\xd5\xfd\x22\xcf\x78\xb1\xc8\x62\x81\x05\x92\ +\x97\x64\x83\x3c\x1a\x14\xc9\x99\x61\x4c\x91\x02\x49\xcd\xc5\xbf\ +\x7e\xbf\x73\x4e\x35\xbb\x9b\xdd\x1a\x51\x63\x2a\xb0\xb3\x2d\xc1\ +\x9e\x66\x75\x5d\xcf\xfd\xab\x3a\x45\xbd\xf9\xd3\xe7\xfb\xf5\xe4\ +\xe3\x72\xb7\x5f\x6d\x37\x6f\xaf\xf4\x54\x5d\x4d\x96\x9b\xf9\x76\ +\xb1\xda\xbc\x7f\x7b\xf5\xdf\x7f\xff\x6b\x95\xae\x26\xfb\xc3\x6c\ +\xb3\x98\xad\xb7\x9b\xe5\xdb\xab\xcd\xf6\xea\x4f\x3f\x7e\xf7\xe6\ +\x5f\xaa\x6a\xf2\x6f\xbb\xe5\xec\xb0\x5c\x4c\x3e\xad\x0e\x1f\x26\ +\x7f\xdb\xfc\xbc\x9f\xcf\x1e\x96\x93\x3f\x7e\x38\x1c\x1e\x6e\x6f\ +\x6e\x3e\x7d\xfa\x34\x5d\x95\xc2\xe9\x76\xf7\xfe\xe6\xfb\x49\x55\ +\xfd\xf8\xdd\x77\x6f\xf6\x1f\xdf\x7f\x37\x99\x4c\x30\xee\x66\x7f\ +\xbb\x98\xbf\xbd\x2a\x0d\x1e\x1e\x77\x6b\xae\xb8\x98\xdf\x2c\xd7\ +\xcb\xfb\xe5\xe6\xb0\xbf\xd1\x53\x7d\x73\xd5\x54\x9f\x37\xd5\xe7\ +\x34\xfa\xea\xe3\x72\xbe\xbd\xbf\xdf\x6e\xf6\xdc\x72\xb3\xff\x43\ +\xab\xf2\x6e\xf1\xee\x58\x9b\x66\xf3\xc9\x72\x25\x9d\x73\xbe\x51\ +\xe6\xc6\x98\x0a\x35\xaa\xfd\x97\xcd\x61\xf6\xb9\xea\x36\xc5\x1c\ +\x87\x9a\x1a\xa5\xd4\x0d\xde\x35\x35\xcf\xab\x75\xbb\x07\x41\x1f\ +\xf0\xdf\xb1\x7a\x5d\x30\xdd\x6f\x1f\x77\xf3\xe5\x3b\xb4\x5b\x4e\ +\x37\xcb\xc3\xcd\x5f\xfe\xfe\x97\xe3\xcb\x4a\x4d\x17\x87\x45\xab\ +\x9b\x9a\x9e\x9d\x51\x3b\x44\xde\xcc\xee\x97\xfb\x87\xd9\x7c\xb9\ +\xbf\xa9\xcb\xb9\xfd\xa7\xd5\xe2\xf0\xe1\xed\x95\x75\x53\x6d\xf1\ +\xe3\xb9\xf0\xc3\x72\xf5\xfe\xc3\xe1\xb4\x74\xb5\x78\x7b\x85\xd9\ +\x9b\x9c\xe4\x73\x4b\x38\xb4\x54\x28\x1d\xdf\x1e\xdf\xa8\x69\x36\ +\x53\x3d\xd9\x69\x6f\xa3\xd4\xa9\x97\x70\xbb\xd8\xce\x69\x4e\xe8\ +\x72\x79\xbf\x9a\x3d\x1e\xb6\xf7\xe0\xda\x7c\xbe\x9e\xed\xf7\xab\ +\x77\xab\x39\x3e\x6c\x37\x0f\xeb\xc7\xf7\xab\xcd\x4f\x6b\x48\xd9\ +\x4f\xf3\x2d\x7a\xfd\x69\xfe\x61\xb6\x01\x41\x6a\x22\x1e\x47\x5c\ +\x7e\x7e\xd8\xee\x0e\xd5\xe7\xc5\x03\x48\x19\xe2\xe0\xcb\x2f\xf5\ +\xcb\x1f\xf1\xf6\xcd\x62\xf9\x6e\x4f\xb5\x64\x5d\xf4\x09\x0b\x8b\ +\x57\x93\x1b\x7e\x7b\x9c\x26\xcd\x71\xf1\x71\xb5\xfc\xd4\xd4\xbd\ +\x9b\xed\x85\x76\x93\xc9\xc3\xec\x3d\xe4\x6c\xbd\xdd\xbd\xbd\xfa\ +\xc3\x3b\xfe\x29\x2f\xee\xb6\xbb\xc5\x72\x57\xbf\x0a\xfc\xd3\x79\ +\xb5\x05\x2f\x56\x87\x2f\xa2\x59\xa5\xef\x7a\xbe\xd4\xeb\xf1\xbd\ +\x1a\x7e\xbf\xff\x30\x5b\x6c\x3f\xbd\xbd\x32\xa7\x2f\x7f\xd9\x6e\ +\xef\xa9\xd7\x1c\xb3\xd7\xca\x9d\xbe\x9e\x7f\x7e\x7b\x55\x59\x35\ +\x4d\xc6\xda\xa0\x7b\x6f\x31\x60\xa5\xd3\x54\xa3\xb5\xce\xbd\xb7\ +\x8f\xbb\x1d\x94\xaf\x5a\xcf\xbe\x2c\xb1\x2c\xfe\xa7\xee\x62\xff\ +\x61\xfb\xe9\xfd\x8e\xc8\x73\xd8\x3d\x2e\x4f\x5b\xd2\x9b\xea\xee\ +\x6e\xfb\x79\xf8\x35\x64\xe1\x91\xd4\xba\x7a\xdc\xac\x0e\x50\x9d\ +\x87\xcf\xed\x5e\x1f\x57\x8b\xe5\x7e\xb8\xe1\x7e\x33\x7b\xa8\xde\ +\xaf\xb7\x77\xb3\xf5\x70\x85\x4f\xab\x0d\xc8\x54\x15\x29\xd7\xf6\ +\xc8\x85\xd3\x1a\xb5\xc8\x47\x95\x9e\xa8\x81\xb9\xf7\x38\x51\x5e\ +\x7d\x79\xfa\xd5\xfd\xec\xf3\xea\x7e\xf5\xcb\x12\x84\xd1\x2c\x78\ +\x10\xae\x0e\x59\xa4\xd9\x64\x72\xf8\x42\xea\xfb\xf9\x0b\x95\x5d\ +\xd5\x85\x44\x4f\x2a\x30\x39\xc7\x63\xe1\x76\xb7\x82\x56\xb4\xa6\ +\x53\x17\x7d\x69\x17\x91\xb2\xc3\x56\x7f\x66\x09\x63\xf9\x8b\xa7\ +\xef\xbe\xb4\xdf\x15\xc1\xbf\xe9\x4b\x3e\x97\xdf\x2f\x0f\xb3\xc5\ +\xec\x30\x6b\xd4\xa0\x2e\xc1\xdc\x54\xbd\x32\xd8\xcd\xdb\xff\xfc\ +\xcb\x5f\x7f\x2c\x03\xbd\x99\xcf\x6f\xff\x67\xbb\xfb\xb9\x1e\x77\ +\x32\xa1\x0a\xb3\xbb\xed\x23\x28\x7d\xf5\xe3\xb1\xf8\xcd\x62\x7e\ +\x0b\x4b\x07\x0b\xf0\xe3\xea\x1e\xc2\x4d\x46\xf2\x5f\x61\xd9\xde\ +\xdc\x34\x2f\x3a\x95\x89\x58\x4d\xa7\xd2\xed\x6e\x29\x26\x73\xd0\ +\x6f\x2c\xe6\xf7\x2b\x6a\x74\xf3\x5f\x87\xd5\x7a\xfd\x37\x1a\xa4\ +\xac\xb8\xd5\xe9\xea\xb0\x5e\x36\x85\x6f\x6e\xca\xec\xcb\xda\x6e\ +\x5a\x8b\x7b\x73\x53\xaf\x9e\x3f\xbd\x6f\xa8\xd2\x51\x8a\x23\xa3\ +\xd7\xb3\xbb\x25\x24\xf4\xdf\xe9\xe5\xa4\xf7\xf6\xfd\x6e\xfb\xf8\ +\x70\xbf\x5d\x2c\x4b\xf3\x9a\x9a\xef\x3b\x62\x60\x55\x8b\x83\x87\ +\xdd\x6c\xb3\x27\xca\x80\x0f\xb3\xc3\x6e\xf5\xf9\x8f\x76\xaa\x4d\ +\xd0\x21\xfb\x6b\x33\x45\x55\xa5\xc2\x75\x85\x27\x67\x52\x8e\xe1\ +\xda\x32\x9f\xb5\x75\xd7\x26\x4d\x9d\x35\x5e\xc7\xeb\xca\xc7\xa9\ +\x71\x39\x9a\xf0\x7d\x23\x19\x87\x2f\x6b\x4c\xe3\x1d\x88\x74\x0b\ +\x8b\x76\x77\xe7\xe2\x0f\xf4\xa1\x2a\xf6\xe8\x56\x1f\xd9\xd6\x4c\ +\xaf\x4c\x30\x58\xef\xae\x9a\xb2\x17\x74\x45\x92\xb3\x9c\x1f\xda\ +\x1c\x7d\xbe\xb5\x7c\xdc\x3d\xae\x61\xe0\x3f\x2e\x37\xdb\xc5\xe2\ +\x87\xfd\x61\xb7\xfd\x79\x79\x5b\x4c\x71\xf9\x28\xca\x7f\xab\xea\ +\x8f\x10\x84\xe5\x6e\x0d\xa5\x3c\xdc\xba\xba\x6c\x31\x83\x3d\xdd\ +\xed\x66\x5f\x6e\x37\x08\x66\xea\xd2\x66\xa2\xed\x99\xd1\x5a\x69\ +\xb6\x3e\xd9\x5c\xa9\xca\x55\x1a\xbf\xa1\xea\x56\x2a\x06\xc7\x4d\ +\x0d\xab\x57\xee\xbc\xac\x6d\xcd\xf0\x5b\x36\xd0\x7e\xaa\xb2\x8d\ +\xc9\x75\xde\x40\x5f\x4d\x86\x61\x0f\x26\x85\xce\x8b\x5d\xc7\x18\ +\x70\x09\xeb\xb6\x33\xf4\x63\x3b\x6f\x5a\x92\xb3\xdb\x1e\x10\xa7\ +\xfd\xb1\x4a\x79\x1a\x33\xa4\xe3\xfb\xae\x4a\xfc\xce\x59\x92\xaa\ +\x58\xf9\x0b\x33\x45\xab\x94\x4d\xee\x31\xc5\x4f\xa3\xca\xc1\x8d\ +\x4c\x79\x9e\x29\xb1\xb2\x55\x7c\x05\xae\x78\xdf\xe3\x0a\x91\x3a\ +\x26\x6b\x46\xae\x3c\xc7\x95\x0c\x55\x71\x97\x66\x8a\x45\x04\xd9\ +\xb3\x5f\x3a\x22\xb6\xd4\x5e\xfb\x91\x29\xcf\x31\x25\x55\xa6\xf2\ +\x97\xd7\x15\xef\xac\xed\x59\x30\x6d\x00\xd4\x5c\x8a\xa3\x05\x3b\ +\xc7\x82\x45\xb8\x7b\xf3\x0a\x7c\x09\xe1\x94\x2f\x69\x1a\x1c\x82\ +\x39\x3d\xf2\xe5\x59\xbe\x58\x28\x4b\xb8\x34\x53\x10\x4e\xf7\x4c\ +\x98\x9b\x02\x38\x9b\x68\xd3\xc8\x93\xe7\x78\x02\x13\x66\x5f\x43\ +\x57\x92\x0b\xa9\xe7\xef\x15\x42\x66\x17\xac\xcb\xce\x8e\x9c\x79\ +\x86\x33\x17\x65\x08\x6d\x26\x45\xad\xd3\x29\x43\x46\xac\x72\xbe\ +\xa2\x5c\x9a\x21\xa0\x66\x30\x3d\x86\x14\x9c\x32\x5a\xae\x33\xbc\ +\xfc\x2b\x70\x24\xeb\x1e\x47\x0a\x46\x71\x23\x47\x9e\xe3\x48\xbe\ +\x34\x43\xa2\xf1\xa6\x67\xb3\x46\x7c\xf2\x12\xe7\x7e\x69\x96\x00\ +\x80\xc4\x9e\xd5\xaa\xb1\xc9\x68\xb5\xce\xc2\x26\x97\xe7\x49\x54\ +\x3d\xbb\x55\x70\x89\x1d\xd5\xe4\x79\x5c\x72\x61\x86\x64\x65\x52\ +\x7c\x0a\x94\xb8\x38\x32\xe4\x39\x86\x10\x28\xb9\x34\x4f\x74\x52\ +\x3d\xbb\x55\xf0\x48\x08\x7e\x0c\x80\x9f\x65\xca\x45\x91\xbb\x09\ +\x53\xef\xbc\xed\x43\x44\x42\x24\x56\xa5\x71\x47\xf8\x0c\x25\xb9\ +\xa8\x23\x21\x8e\x04\xe5\x6d\x8f\x21\x7e\x1a\x82\xd3\x69\x44\xec\ +\xe7\xf8\xf6\x8b\x9a\xad\xc2\x12\xdf\x87\xed\x7a\x6a\x93\xb1\x61\ +\x8c\xb7\x9e\xc7\x24\x97\xd7\x92\xac\x40\xa7\x21\x54\xe2\x82\x72\ +\x79\x64\xc9\x73\x2c\xe1\x53\x93\x0b\x33\x05\x6a\x32\x70\x92\x65\ +\x00\x21\xb3\xd3\xa3\xe9\x3a\x0b\x96\x5c\xdc\xc3\x13\x53\x42\xcf\ +\x78\x25\x68\x50\xf4\x39\xe9\x91\x2b\xcf\x71\xc5\x5e\x5e\x4f\x8c\ +\xd6\xae\xe7\xe3\x01\x4d\xb4\x4f\x5a\x8d\x51\xd7\x59\xd0\xe4\xf2\ +\x8a\x62\x83\x49\x3d\x45\x01\x3a\x71\x59\x47\xfd\xfa\xc1\xf0\x9b\ +\x9b\xf7\x43\x29\x63\xad\xd6\xfc\xb8\xa6\x0e\x30\x2b\xed\xb5\x8e\ +\x26\x5f\xe7\x69\xc0\x23\x9e\xbe\x6f\x0d\x5a\xf2\xcc\x3a\xfb\x76\ +\xff\x64\x79\x66\x0a\xff\xbf\xa8\xe2\x3a\xc4\x16\xde\x9b\xd4\x0f\ +\xce\xf3\x34\x79\x6d\xf2\x18\x75\x9c\x03\x97\x10\x77\x5c\x38\x42\ +\x07\x63\x82\x0a\xd1\xf5\x4f\x0d\xfc\xd4\x27\x17\xc2\xe8\xe4\xce\ +\x42\x4d\xc4\x97\xcb\x1e\x1f\x30\x67\xa2\xd2\x7d\x95\x01\x76\x52\ +\x06\x5a\x33\x72\xe6\x39\xce\x50\xce\x99\xbf\xf4\x3e\x03\x18\x93\ +\x55\x1e\xd8\xf9\x01\x82\x52\x21\xf8\x31\x58\x3f\x0f\x40\xe1\x39\ +\x5f\xf6\x50\x1a\x6f\x54\x50\xc9\xf6\x54\x06\x38\x2a\xe6\x9c\xf2\ +\x18\x1e\x9e\x89\xa3\xf0\xfb\x1a\xbc\xd1\x88\xdd\x07\xd0\x94\x4e\ +\x0a\x78\x6a\xe4\xcd\x73\xbc\xb1\xac\x34\xca\x5c\x3a\x04\x30\x46\ +\x9b\x74\xb2\xf1\xc3\xa0\xca\x50\x58\x3f\x26\x6c\x9e\x0b\xaa\x38\ +\x08\x50\x17\xe6\x8d\x0d\xce\xe4\x78\xca\x9b\x0a\x28\xc6\x2a\x4a\ +\x44\x1b\x33\xd1\xce\x44\x34\x97\xe4\x0b\x1c\x4a\x40\x08\x90\x07\ +\xf3\xd1\xb4\x06\xe8\x1d\x99\xf2\x1c\x53\x0a\x9e\xb9\x30\x5b\xa2\ +\xca\xca\xf5\xaf\x34\xf9\x69\x70\xde\xc4\x91\x2d\x67\xa3\x99\x57\ +\xe0\x4b\x3f\xef\x86\xb0\x4c\xb0\x2e\x8c\x2e\xe6\x5c\x2c\x73\x69\ +\xb6\x58\x3a\xac\x1e\x40\x32\xda\x44\x3d\x5e\x36\x7b\x01\x94\xb9\ +\x34\x63\xbc\x73\xfd\x7b\x01\x74\x20\x14\x94\x57\xe3\xb9\xe9\x0b\ +\x80\xcc\x2b\x70\x26\xf5\x2c\x19\x60\x4c\x4c\x21\x8f\x49\x9d\xe7\ +\xc3\x98\x4b\xf3\x25\xe4\xd0\xbf\xa1\x89\x26\x39\x20\x24\x18\x4d\ +\xd9\x0b\x40\xcc\xa5\x39\x93\x5c\xea\xe7\x77\x32\x82\x41\x2b\xaf\ +\xc7\xcc\xf4\xb3\x10\x8c\xbf\x6c\x32\x74\xa2\x6b\x01\x26\xf9\x7e\ +\x50\x96\xa7\x29\xe9\x60\x46\x95\x39\x13\xc3\x5c\x38\x1b\x04\x8c\ +\x71\xc6\x59\xd5\x4f\x2d\x04\x8a\xd1\x2e\xa7\xd1\xfb\x9f\x8b\x62\ +\xdc\x65\x61\xbf\x70\xc6\xf7\xbd\x3f\xe1\x18\x6b\x75\x1c\x37\x98\ +\xcf\xc4\x31\xe6\xb2\x29\x08\x60\x4c\x34\x43\x17\x69\xe9\x4c\x26\ +\x87\xe4\xc7\xb0\xec\x6c\x24\x63\x2f\xfb\x35\x0d\x60\x4d\x42\x00\ +\xa0\x7a\x5b\x98\x84\x65\x10\x00\x8c\x11\xf3\x0b\xb0\xcc\xe5\xed\ +\x19\x78\x13\xfa\x69\x19\x40\x33\x0e\x3c\x53\xe3\xa1\xcc\xb9\x68\ +\xe6\xb2\x41\x33\xe8\x8f\xe0\x18\x74\x1d\x80\x33\x68\xa0\xcd\xa8\ +\x34\xe7\xc3\x19\x75\xd9\x2d\x00\x3e\xb0\xd4\xa9\xff\x45\x1a\x95\ +\x99\x7a\x63\x5d\xf6\x69\x59\xa9\x57\x67\xd0\x31\xe5\xad\x79\xe8\ +\x7e\x97\x9b\x4f\xba\xfd\x6d\x15\xfd\x6f\x73\xd3\x94\xf0\xed\x7d\ +\x0c\xd7\x6a\x1a\x80\x92\xb5\x75\xfa\xba\x52\x50\x7d\x1d\x6c\xb4\ +\x28\xcd\xb0\x0d\xd1\xe8\x74\x5d\xc1\x8f\x66\xa3\x72\x32\xd7\x94\ +\xee\x17\xa3\x52\x56\x3f\xf1\x8d\x6e\x8a\x7f\x4e\x25\xa3\x96\x83\ +\xf2\xb6\xc7\xce\xe3\xb2\x1e\x66\x87\x0f\x0d\x39\x8e\xdf\x14\xb8\ +\xdc\x60\x4d\x16\x33\xce\xd9\x77\xc2\xac\x63\x8d\xfd\x61\xb6\x3b\ +\x74\xc9\x8c\x26\xff\x31\xf1\x7e\xea\x88\x93\x91\xd2\xfd\x78\x74\ +\x37\xf9\xf3\x04\x5c\xa4\x6f\x1d\x35\xe9\x3a\xca\xeb\x10\x27\x0a\ +\xbf\x7a\xe2\x41\x97\x98\x6d\xcc\xd7\x3a\x4c\x55\x0c\x51\xc5\xaf\ +\xd4\x76\x06\xb4\xf3\xde\x78\xae\xed\xbc\x53\xfe\x2b\xb5\x2d\x2c\ +\x2e\x48\x87\x99\x78\x1b\x3d\x22\xc9\xc9\x5a\x6a\x2b\xeb\x40\x6f\ +\x15\x10\x5d\xfa\xc9\x2f\x43\xcb\x23\x81\x39\x76\x37\x58\xe1\x33\ +\xdb\x6d\x19\x79\xa8\x02\x7d\xf1\xe6\x91\x04\x83\x15\xd0\x83\x0b\ +\xd3\x4c\x5d\xb4\x2b\x90\x38\x11\x5b\x6c\x76\x8c\x44\xdb\x6d\x85\ +\xf3\xfc\x25\xa4\x47\xe6\x2e\x56\xfb\x87\x35\x14\x77\xb5\x59\xaf\ +\xa0\xba\xf4\xa5\xaa\xef\xd6\xdb\x4f\xb7\x1f\x57\xfb\xd5\xdd\x7a\ +\xf9\x03\xff\xbb\x5a\x13\xe3\xeb\xa2\xaf\x89\x4e\x63\x54\x60\x09\ +\x7e\x59\xee\xb6\x4f\x08\xd3\x89\x51\xa1\xb1\xe7\xb3\x87\xdb\xbb\ +\xc7\xc3\xa1\x5d\xf6\xbf\xdb\xd5\xe6\x96\x2d\xce\xcb\xcd\x0f\x95\ +\x6e\xdf\xbd\xdb\x2f\x0f\xb7\x7d\x19\xfe\xe1\x7e\xb6\xfb\x79\xb9\ +\x93\x06\xcb\xcd\x0c\xeb\xaa\xee\x66\xf3\x9f\xe9\xab\x17\x37\x8b\ +\xdb\xd9\x7c\xfe\x78\xff\x48\x29\xa8\x43\xb4\x97\xaf\xe6\x9c\xed\ +\xe6\x6d\x15\xef\xea\x42\xf3\x1d\xa9\xdb\x0d\x96\x76\xd8\xee\xaa\ +\xf9\xe3\xee\xe3\xec\xf0\xb8\x5b\x76\xe5\xbe\x66\x98\x8f\x29\x77\ +\x22\x06\xfa\x4a\xcd\x89\xcd\xb4\x27\x66\x52\xba\x06\xd2\x87\xc4\ +\x46\x1f\x26\xf3\x09\x25\xeb\x26\x13\xc9\x00\x00\x7a\x6a\x67\xa8\ +\xc4\x07\x67\xa9\x24\x18\xab\xa2\x46\x89\xa6\xbd\x4f\xb6\x12\x59\ +\x7b\x67\x02\x55\x32\x4a\x73\x25\x4a\x7e\xa2\x02\xad\xa2\xca\x51\ +\x4a\xac\xe1\x56\x01\x4f\x52\x92\xd1\x9e\x7b\xb6\x3e\x70\x81\xd5\ +\x81\xab\x28\x9b\x3c\x77\xac\xa2\x71\xa1\x6e\x94\x3b\x8d\x8c\x77\ +\xfc\x59\x43\x87\xb8\x93\xa4\x58\x6d\x34\x74\x89\x3e\x27\x65\xcd\ +\xb5\xe2\xde\x52\x54\x32\x29\x0f\xa9\xe5\x89\x07\xe7\x3c\x95\x18\ +\xb4\x76\x09\x45\xc6\xa9\x2c\x93\x30\xc9\x39\x9d\x4f\xa7\x55\x96\ +\x92\xfc\x33\x4b\x31\x21\x46\x1e\x15\xe4\xc2\x2b\x9a\x8f\xd3\xba\ +\x33\x1f\x65\x6d\x92\x46\x3a\xe7\x24\xb4\x26\x5b\x4a\xab\x2d\x6b\ +\xe1\xba\xed\x6e\x01\xf4\x65\x26\x99\x3e\x6a\xba\x79\x2b\xd4\xf0\ +\x86\x99\x33\x40\x1f\x25\xac\x51\x8a\x17\x63\x15\x1d\x44\x33\x43\ +\xad\x85\x5d\xa0\x22\x43\xdf\x2a\xc4\x45\x31\x1b\xc3\x4b\xd6\x3a\ +\xcb\x92\x0d\xd8\x3f\xa9\xda\x25\x60\x28\x68\xd7\x19\x02\x8e\x8f\ +\x3f\x3b\x4b\x8d\x31\x27\x65\xb9\xc0\xc2\xf3\x85\x54\x0f\x11\x8e\ +\x43\xc8\x62\xa3\x29\xcc\xf0\x31\x4e\x98\xde\x2a\xf1\x54\x2d\x8c\ +\x79\x0c\x75\x33\xdf\x6d\x66\x6c\x16\xda\xd7\xf4\x7c\x01\x7d\x8f\ +\x8c\x2c\x7c\xeb\xd3\xb7\x57\x23\xc7\xc0\xb3\xd4\x64\xa2\x8f\x14\ +\x66\x26\xe8\x04\xf7\xc8\x22\x66\x6b\xd1\x36\xce\xd2\x40\x20\x95\ +\x31\x41\x84\x30\xd4\x42\xe5\x6b\x71\x88\xc2\x1f\xb8\x78\xf7\xcd\ +\x32\xee\xac\xa7\xee\x15\x53\xae\xb5\x64\xe8\xa1\x2b\x33\x31\xdc\ +\xbb\x4f\x45\x35\x21\x53\xfe\x38\x97\xae\xac\x46\xef\x8f\x53\x12\ +\x71\xf6\x36\xe8\xeb\xa6\xa0\x28\x85\x2a\xea\x25\x22\xa8\xa3\xb6\ +\x65\xfe\xae\x37\xfd\xd0\xa5\x2a\xa4\x53\x06\xd0\x91\x67\x95\x41\ +\xe6\xc4\x03\xc4\x1c\x9b\x49\xf1\x00\x50\x1c\x53\x64\x5c\xb8\x96\ +\x4d\x16\x0e\xe4\xd0\xc8\x78\xec\x72\xc0\xd8\x94\xda\x52\x01\x8b\ +\x84\x78\x98\x3b\xc4\x53\xd6\x5a\x2c\x00\x24\x22\xc8\x3a\x48\x3f\ +\xad\xbc\x57\xda\x67\x57\x16\x67\xcb\x32\x35\xc2\x1a\xc7\x24\x2e\ +\xb2\x53\xd8\xfe\x12\x16\xc6\xaf\xb3\xf0\x05\x66\x21\x88\x91\x52\ +\xd1\xa5\x61\xb3\x00\xa5\x08\xe7\x2a\x85\x71\x65\x22\x30\xd6\xa4\ +\x63\x3a\x21\xa0\x13\x1d\xc3\x0a\x63\x5f\xed\xba\x36\xb0\x36\x79\ +\xd0\xf9\xc2\x17\xed\x4f\x17\xcd\x7c\xf1\xb2\x16\x23\x33\xf5\x29\ +\x72\x3f\xce\x49\x3c\x09\x56\x40\xdb\xdb\x8b\x69\x98\x09\xf7\x53\ +\x24\x4a\x7b\xdd\xf1\x1d\xda\x04\xa7\xc3\x64\x58\x0b\xd9\xe4\x36\ +\x66\x1a\x15\xa4\x06\xb4\xe5\x09\xb2\xbd\xcc\xca\x91\xf0\xc8\xb4\ +\x10\x6e\x4e\x78\x32\x51\xc8\x04\x69\x09\x5d\xd1\xe7\x59\x3d\x35\ +\x86\xab\xbd\x47\xa2\xe5\x75\xc7\xc8\x45\x15\xa3\x62\xc6\xc1\x21\ +\x8b\xea\xc0\x6e\x1b\xb6\xae\x27\xa6\x74\xc0\x5a\xab\x16\x9f\xfa\ +\x3e\xa9\x6d\xdc\x3a\xcc\x30\x3d\x66\xf8\x27\x99\x11\x8e\xcc\xf0\ +\xfd\x65\x7f\x23\x33\x6c\x2c\x62\x9f\xb2\x15\x51\x81\x58\x71\xa7\ +\x19\xb8\x37\xb4\xdb\x90\x6b\x16\xe2\x86\x6c\x6b\x5b\xc1\x96\xd0\ +\xe7\xd2\x2b\x10\x8c\x19\x1e\xa6\x27\x91\x51\x17\x22\x40\x20\xfd\ +\x13\x12\x59\xdc\x72\x31\xef\xb4\x38\x77\x64\x7c\x37\x02\x68\x28\ +\xf7\x42\x1f\x7a\xba\x94\x90\xac\x6b\xbb\xf6\x01\xf1\x0d\xb9\x2c\ +\x85\x9b\xb4\x79\xd2\x9e\x7e\x99\x68\xb4\x5e\x26\x11\xa5\x95\x25\ +\x3a\x5b\x79\xed\xc8\x65\xf3\x4a\xb5\xf3\xa6\x16\x4e\x5e\x05\x10\ +\xa0\xa8\xb9\x31\x3e\xda\x61\x19\xa9\xc3\x21\xc3\x06\x6b\x58\xfc\ +\xb8\x05\x9c\x87\x2e\xcf\x90\x0b\x98\xad\xd6\xf0\x65\xd6\x7c\xcc\ +\x51\xea\xa4\xe4\x12\x29\x16\xa0\x26\xe4\x3e\xa2\xfb\xd6\xca\x4a\ +\xfd\x3a\x32\xa0\x67\x38\x95\xe4\x4c\x7b\xd8\xaa\xb1\xbc\x3a\x3b\ +\x57\xea\xb1\xfc\xe8\x0e\x8f\xc4\x5d\x9e\x11\x21\x64\x2d\xe4\x50\ +\x09\x31\xb2\xc4\x60\x58\x93\x18\x42\x23\xfa\xd8\x38\x70\x1e\xc8\ +\xb6\xcd\x7f\xca\x88\x3c\x99\x0d\xbe\x88\x50\xa6\x5b\x50\xbd\x79\ +\x85\xe2\x41\x63\x16\xf3\x9b\x63\xb1\x76\xd1\x85\x7c\xaa\x0b\x12\ +\xa6\x6a\x53\x82\x43\xb0\x4c\xb7\xc4\x21\xf4\x89\x46\xc9\xbd\x3a\ +\xb6\x08\x5e\x18\x11\xa0\xc7\xa5\x8a\x27\x1f\x92\x84\xf6\x8a\x02\ +\x4d\x2f\xcf\x1e\x52\xa7\x9f\xe2\xa7\x6b\xf1\xb3\x63\x88\xaa\xd6\ +\xfc\x34\xf4\x21\x9b\xd6\xa4\x98\x40\xd1\x8a\xc1\xb0\xb0\x0f\x5d\ +\x79\x37\x8a\x04\xbc\x5d\xd2\xef\x7f\x58\xf8\xcb\xaa\xd8\x06\x55\ +\x6d\xa3\xd4\x88\x64\x2f\x60\xbf\x6e\xba\x6c\x2a\xb6\xfa\x6b\x49\ +\x5c\x4b\xe0\x14\x61\x77\xe3\xa8\x95\x26\x3b\xc1\x92\xa6\xa7\x81\ +\xae\x14\xea\xe3\x7b\xb2\x6b\xfd\xf7\xfc\x9a\xbe\x13\x4c\x97\x4e\ +\xd9\x7b\xf3\x63\xf4\x88\x42\x62\x99\x54\x6d\xec\x3d\xc4\x0d\x0d\ +\x10\x74\xca\x7c\x8a\xd4\x30\x89\x53\x36\x5c\x37\x2a\x91\x32\xd6\ +\xde\xa2\xbc\xa2\x0d\x12\x09\xd4\xc6\x41\x24\x31\x71\xb0\x87\x28\ +\xd0\x71\x87\xe8\x0d\x24\x90\xc7\x5a\x33\xd5\x11\x94\x89\xff\x6a\ +\xdc\x57\x5b\xd5\x1c\x8f\xce\x66\xb2\x3a\xda\xc9\xda\x3f\x56\x4d\ +\x14\xd5\x1e\x5e\x65\x27\xa1\x26\x2d\xef\x9a\x05\x29\xbb\xd8\x50\ +\x5a\x4a\x61\x9b\xa5\x53\x4c\x37\x50\x68\xe3\xe1\xb4\xa2\x6e\xb8\ +\xd0\xa8\x73\xa3\xcd\xec\x74\x4e\x7d\xce\xa9\xff\x6f\xdc\xe6\x00\ +\xe7\x6b\xb9\x68\x56\xff\x5c\x9f\x1c\x8a\xd1\xfb\xe0\x85\x26\x6c\ +\xd8\x89\x18\x39\xf8\xdc\xc8\x92\x93\xd0\xd6\x10\x7b\xac\x09\x2d\ +\xf7\xcb\xde\xdf\xb4\x3b\x67\x0e\xd7\x72\x18\x93\x11\x69\x56\x81\ +\xd8\x00\x3d\x4e\x3e\xb4\x2a\xd7\x2c\x23\x46\x29\xa1\x06\x42\xe7\ +\x17\x93\xa3\x19\x41\x15\xad\x6a\x2f\x12\x86\x92\x3f\x87\xcc\x43\ +\x03\xb8\x32\x57\xb3\x0e\xd6\x0d\x4c\xbc\x21\x63\x6d\x57\x25\xd2\ +\x6e\x62\x88\x13\xb9\xec\x12\xfe\x9b\xe8\xce\x40\xb1\x89\x6d\xae\ +\xdb\x0e\x8b\x00\xab\xea\xe0\xd5\x78\x7d\x0a\x57\x7d\x2d\x80\x71\ +\x60\xb8\xe2\xef\x5b\x7d\xd6\x10\xa6\x65\xc4\x4f\x56\xc0\xe8\x5e\ +\x9d\x80\xfb\xd6\x0a\x08\xdb\xab\x06\xda\x13\x96\x13\xb5\x6c\x05\ +\xbc\x6d\x47\x64\x58\x0f\x00\x39\xa4\x01\x8a\x13\xcb\x03\xb8\x6d\ +\x26\x0d\x68\x6b\xdb\x07\xc5\xe6\x01\x11\x00\x7a\x9b\x88\x37\x51\ +\xa9\xc5\x96\x1a\xa8\x9e\x04\xbd\xea\x04\x42\x9f\xfa\xc7\xf6\xac\ +\x68\x43\x82\x41\x81\x92\x90\x38\x46\xe6\x0b\x62\x18\x6d\xdb\xa4\ +\x3d\x92\xc9\xc3\xb3\xd3\x4a\xd8\x3e\x68\xeb\xcb\x16\x88\x13\x3f\ +\x77\x24\x6b\x33\xa3\x10\x65\x7f\xc7\x39\x89\x90\xbd\xb7\x35\xba\ +\xd4\x93\xe3\x76\x06\xa3\x38\x47\xe9\x77\x6c\x3d\xa2\xb0\x11\xaf\ +\x98\x6b\x39\x36\x91\x6b\xea\x30\x0d\x18\x93\x17\x48\xac\xe7\xf9\ +\xc3\x96\x16\x3c\x1a\x1b\xba\xc6\x16\x54\x7b\x01\x75\x4e\xf1\x65\ +\xd5\xb4\xad\x25\x8a\xbb\xf5\x59\xb7\xd1\x1b\x03\x40\x36\xac\x5d\ +\x33\x71\x2a\xfb\x1d\xf4\x57\xb5\x0a\x1a\xf8\x97\x8b\x14\xc1\x66\ +\x72\xa8\xe2\xe0\x5f\x68\x2c\x88\xb9\xb7\xb1\x2d\x02\x2d\x39\x16\ +\x4d\x3a\xa7\xfb\x53\x82\x5c\x70\xe6\x2f\xa5\xf5\x90\xc6\x1e\x5d\ +\x8f\xed\x69\xec\x90\xad\x07\x3e\x62\xe1\x51\x61\xc8\x06\x50\xca\ +\x6d\x7b\x87\x40\x50\xaa\x3a\xe1\xe5\xc9\x46\xe0\x93\x6b\x0b\xbf\ +\x8a\x6c\xb5\x5c\xb5\xfa\x3c\xa5\x0f\xef\x64\x95\x8d\x2c\x57\x4f\ +\x32\x74\x4c\xae\x75\x5a\x76\x65\x58\xf5\x10\x86\x1b\xab\x4b\x60\ +\xcf\x7b\x5f\xbc\x95\x62\x5f\x7b\xca\xb5\x7a\x84\x9e\x7a\xa4\xa3\ +\x7a\x98\x5f\xa5\x1e\xae\xe0\x26\xdd\xb1\xc4\xc2\xa3\x98\x25\x1a\ +\x39\xee\xec\x38\x31\xb2\xed\x2d\x8e\xa7\x65\xa0\xde\x38\x29\x21\ +\x45\x67\xda\xce\x48\xd7\x5e\x36\xd9\x72\x0a\xa2\x79\xd6\x79\x75\ +\x34\x75\x47\x83\x2d\x2b\x89\x1c\x51\x61\x1a\x9a\xd5\xd5\x80\x51\ +\x8a\x95\x33\x82\x39\x6e\xd8\x55\x99\xcc\x33\xf4\x25\x4c\xe0\xb0\ +\xbb\x44\xdd\xf6\x24\xfe\xe8\xf9\x71\xc3\x94\x64\xc4\x9d\x06\xfd\ +\xb8\x63\x1f\x06\x3b\x1d\x05\xfd\x64\x18\x6f\x6e\x12\x15\x39\xde\ +\xc1\x55\xf4\xe2\x8a\xba\xa0\xc0\xe0\x16\x39\x29\xf6\x13\x27\x28\ +\x52\x05\xaf\x9f\x5f\x14\xb2\x7c\xb5\x6b\x5b\xba\xae\xf1\xb5\x15\ +\x3a\xb9\x41\xa9\xa9\xeb\x17\x70\xdd\x02\x53\x2d\x2c\xd5\x47\xd6\ +\x2d\x60\x5d\x62\xb1\xd6\xf1\x47\x03\xab\x7a\x60\xe4\xc4\x1c\x99\ +\xc2\x49\x5d\xb3\xf2\x84\x93\x1d\x54\xc2\x83\x5b\x09\x1f\x10\x64\ +\x4a\x9c\x9c\x4b\x7c\xe8\xac\xd6\xa9\x13\x7c\xb7\x02\x82\x8e\x6a\ +\x54\x8d\x0a\x36\x48\xa1\x01\x4e\xea\xe9\x0a\xb5\x2d\xa1\xe7\x5a\ +\x22\xe9\x99\x0d\x46\xa9\x13\x40\x4f\x43\xc6\x83\xc0\x3c\x8c\x07\ +\xd9\xd6\x49\x65\x68\x13\x3b\x87\xd2\xf6\xb8\xd1\x5c\xb5\x8c\x0d\ +\x9e\x23\x00\x17\x39\xf2\xde\xb0\x16\xc6\x40\xf4\xcd\x1e\xdb\x97\ +\xb1\x9b\x40\x41\x09\x41\x9c\xf0\x97\xee\x4a\xb4\x91\xd0\x11\xbd\ +\x68\x28\xb3\x16\x2c\xe2\x62\xe6\xee\x40\x96\xe4\xfa\xcb\x2a\x7b\ +\x60\x6a\xb0\x4e\x5d\x9e\xa1\xd6\x5a\x9e\x7d\xca\x74\xc0\xcb\xcf\ +\x29\x59\xaf\x4a\x3f\xe0\x63\xf6\x49\x48\x02\xbe\x65\x9d\x84\x24\ +\x2e\x65\x84\xf9\xa5\x1f\xda\x0f\x2f\xcf\xa0\xbd\xf3\x85\x11\x89\ +\x6c\xc2\x13\x9c\xc8\x2d\x6a\xc6\x01\x16\x76\x1c\xd1\x09\xab\x53\ +\x90\x53\x67\xd8\x24\x26\x93\xf6\x2e\x68\x8e\x99\xc0\x33\xaf\xdb\ +\x54\x6e\xa3\xb8\x0b\x09\xd2\xe9\x4a\x62\x5f\x2e\x28\x68\x2d\x74\ +\xb5\x91\xcd\x11\x93\x26\xb0\xb3\x3a\x79\xd6\x50\x16\x04\x92\xe5\ +\x39\xa4\x40\x3b\x66\x22\x8d\xce\x88\xa0\x68\x8a\x20\x55\x2e\x5c\ +\x20\x73\xe6\x62\x7f\x02\x6d\xce\xb6\x05\x53\xd1\xd7\x3e\x94\x2a\ +\x98\xb9\xa8\xab\xa6\x78\xe1\xa4\xd1\xc9\xae\xbe\x44\xb8\x65\x4b\ +\xa8\x54\x3f\xd9\x6b\xaa\x8a\x77\x69\xb7\xe1\xa3\x47\xd7\xd7\xb9\ +\x1e\x77\x9f\x60\xee\xc0\x24\x5a\x67\x0b\xe6\x89\x59\x74\x4f\x17\ +\x5e\x3e\x86\x57\x4a\x97\x3d\x45\xf5\xc4\x18\xda\xc0\x29\xcb\xfe\ +\x29\xd4\xd5\xb3\xe7\xa2\x2d\x0b\x39\x69\x46\x60\x4f\x27\x13\x44\ +\xd2\xe4\x53\x39\x5b\x84\xc7\x89\xb1\x9b\x16\xf1\xad\x19\x27\xff\ +\x07\x49\x02\x4d\x52\xcb\x93\x47\xf9\xbf\x3a\xad\xe5\x7e\xe2\x83\ +\xe4\x7a\xf8\x6b\x4f\xe7\xbb\x16\x41\xcc\x6c\x72\x4c\xef\xb8\xd6\ +\x7a\x1a\xb9\xb8\x64\x9e\x54\x8e\xfe\x1c\xab\xb9\xd6\x8c\xd3\x68\ +\x0f\xe2\x2b\x75\x33\x1f\xf8\x17\xde\xba\xac\xf3\xe4\xcf\x5f\xa9\ +\x6e\x23\x4d\x00\xb8\xce\x23\xc0\xf1\x74\x02\x37\x59\xa3\x3a\x8c\ +\x5c\x08\x6c\x5f\x72\xd2\xce\x3e\x9d\xd5\x72\xec\xef\xa9\xac\x96\ +\xaf\x27\xad\xa0\x87\x9a\x02\xdf\x9c\xd4\x32\xf4\x47\x25\x7f\x43\ +\x39\x2d\xf0\xa2\x0e\xb1\x0c\x94\xec\xff\x6d\x72\xcb\xaf\xd3\x88\ +\x7e\xce\x1c\x02\x34\xe8\x47\xd2\xfa\xfb\x53\xc5\xa9\x2c\xe5\x84\ +\x6b\x08\x32\x7d\xad\x36\x7c\x86\x72\xf1\x0c\xd5\x81\x89\xfb\x56\ +\xe5\xf9\x6a\xd7\xc0\xe2\x94\x6b\x56\x69\x02\xe6\x81\xf6\xd4\x8e\ +\xca\xe3\x6b\xe5\x79\x4d\xdd\x69\x88\xf0\x94\xf6\x54\x50\x9f\x90\ +\xb5\x7a\x5a\x7b\x7e\xe3\x29\x61\xff\x04\xea\x73\x7e\x6e\x98\x38\ +\x0f\x07\xc8\xef\x02\x42\x8e\x8c\x60\x0f\x41\x54\xd6\x93\xb9\x44\ +\x1d\x99\xb3\x35\x80\x85\x15\x80\xa7\x44\xbd\x90\x40\x2a\x8b\x21\ +\x04\xa0\x65\xf6\xcd\x8c\x76\xae\x35\xe7\x83\x45\x93\x65\x43\x0f\ +\x38\x4c\xda\x5a\x23\x01\xa5\xa5\x6f\xf6\x21\x50\x47\x97\x33\x42\ +\x96\xb8\x36\xc3\x29\x68\x3a\xb5\xa5\x2d\xd9\x8a\x0f\xa8\x3c\xe3\ +\x25\x44\x55\x99\x47\x74\xce\x1b\x8e\xd7\x83\x8a\x40\xa7\x1c\xc3\ +\x01\x13\x70\x1e\x4c\x42\x14\xed\x64\x0e\x84\xc6\x18\x55\x83\xb3\ +\xce\x09\xee\x40\xa0\x40\x48\x0e\xb1\xb3\xa6\x63\x11\x8c\x83\xe0\ +\x93\x67\x05\x53\xa0\x25\xd4\xb7\x86\xfe\x8a\x30\xe3\x25\x45\x87\ +\x09\xd4\xd0\xd2\xb9\x33\x63\x36\x4a\x9a\xa0\x22\xc4\xf4\x82\x2f\ +\x11\x25\x22\xca\xab\xe3\x7f\xd9\xe0\x0f\xf4\x87\xcf\xeb\x28\x4d\ +\x71\x24\x98\x5c\x4c\x25\x12\xf4\x82\xed\x5c\xf6\x7c\xea\x29\x91\ +\x27\xd4\x94\x03\x69\xaf\x22\x1d\xb7\x0e\x14\x7d\x84\x49\xa0\x3c\ +\x3c\xa3\xad\x91\x53\x56\x1d\x4c\xd2\x72\x12\x1f\x72\x92\x6c\x81\ +\xa4\xf9\x2c\x9b\x72\x39\x24\x85\x8a\xae\x8a\x05\x27\x45\x26\x48\ +\x8a\x9b\x8f\x9e\xce\x55\x60\x89\x94\x95\x14\x1b\x84\xe0\x96\x37\ +\x82\x11\xce\x27\x49\xab\x8a\x11\xa1\x16\x37\xb4\x40\x94\x6c\xaf\ +\x00\x7b\x15\x1d\x4d\x4d\x43\xb4\x46\xa2\x45\x0f\xdf\x8d\x80\x8c\ +\x28\x89\x00\x9b\x47\x8c\x40\xe0\xdc\x17\xed\x6f\x64\x39\xfd\x8c\ +\xde\xf0\x91\xb1\x03\xa7\xe4\x40\x14\x7c\xb2\xbc\xfd\x01\x9c\xaf\ +\xc5\x1c\x52\x82\x12\x6f\x3c\x5a\xca\x1f\x2e\xa1\x1d\x43\x74\x18\ +\xa0\x18\xb8\x59\x00\x02\xe6\x13\x11\x8f\x70\x95\xce\x4d\x35\xa5\ +\x0e\x25\xce\x08\xd3\xa8\x5e\xb2\x55\x42\xe4\x33\x6b\xe3\x21\x17\ +\x1c\x5b\x47\x8b\x68\x9e\x53\x5a\x68\xab\xc7\x5f\x33\x20\xf0\xb4\ +\x01\xc4\x2c\x20\x72\xbb\x20\xf9\x51\x80\xcd\x41\x0f\x94\xfc\x32\ +\x98\x42\x99\x63\x27\x7f\x7c\x34\x6f\xbf\xca\xbc\x5d\xcc\x82\x59\ +\xd6\xf6\x4c\x7f\x6b\x1c\xd2\xe4\x83\x96\x1c\x56\xca\x1d\x10\x15\ +\x48\xf0\xfe\xe5\x14\xd1\x97\x53\x6e\x4a\x13\x65\x70\x52\xf6\xf9\ +\x23\x04\x4c\x0b\x4c\x29\x52\x04\x43\x68\xe5\x50\x89\xb6\xbd\x42\ +\x14\xe1\x80\x48\x89\xb6\x8b\x0e\xa6\x4c\xb2\x26\x78\xc7\x49\x9a\ +\xa9\x41\x84\x50\x20\x10\x2c\x55\x90\x0c\x05\x28\x91\x34\x83\xb1\ +\x94\x4c\x14\x98\x1b\x27\xdb\x17\x04\x73\x24\x29\x12\x4e\x3f\x1d\ +\xc1\x76\x92\x14\x44\xfa\xaa\x9a\xc0\xf5\x2c\xf4\x41\x94\x27\xa6\ +\x9c\x52\x28\x08\x4a\xd5\xab\x0c\xba\xb6\x86\x30\x96\x5a\x4e\xcc\ +\x11\xa1\x88\x1d\x85\x89\x95\x9c\xd1\xa8\x7c\xd9\x35\xd3\x74\x49\ +\x5e\xec\x86\x95\xbd\x2c\x98\x7f\xa7\x79\xc6\x14\xac\xc8\x66\x91\ +\x4b\xa9\x60\x34\x18\x7d\x2d\x69\x0c\xda\xf0\x86\x24\x2b\xbb\xd6\ +\x42\x49\x93\x61\xe9\x45\x83\xe8\x18\x28\x4a\x5b\x18\xf2\x24\x2a\ +\x19\x93\xec\x47\x51\xba\x48\x9d\x20\x23\x46\x98\xf6\xda\xea\xf4\ +\x1d\x5f\x08\x77\x34\x71\xe5\x4c\x1c\x2a\x4a\xf7\x2c\xa4\x14\x2e\ +\x04\x56\xae\x5f\x52\x5b\x4d\x18\x14\xc3\x01\x13\x19\x4f\xde\xf4\ +\x33\x5e\xcb\x2e\x19\xef\x01\x66\xcb\x17\x1d\x10\x4f\x79\xd9\xcd\ +\x74\xc6\xb0\x13\xb0\x21\xf3\x16\x1c\x4c\x8a\x9c\x20\x61\xf1\x34\ +\x25\xa2\x07\x82\x50\xf6\x00\xb0\xb5\xb1\xd8\x1f\x76\x00\xb0\x93\ +\xce\x48\x26\xab\x1c\x82\x79\xed\xe5\xe4\x15\x5e\x20\x51\x0a\xe2\ +\x14\x92\x25\x29\x76\x1a\x44\x70\x32\x12\xcc\x20\xe7\xba\xc2\x38\ +\x27\x1e\x89\x0e\xcd\x79\x24\x38\x51\x3e\xc0\x8d\x44\x4f\x2b\x43\ +\x59\x71\x23\x81\x3c\x25\x9b\x3a\x6f\x03\xfb\x28\x80\x2c\x49\xde\ +\x8b\x1a\x64\x24\xdf\xa6\xc8\xcf\xf2\x2a\xb1\x2a\xde\x33\xce\x49\ +\x95\x43\x9f\xac\xd9\xc7\x04\x0f\xba\x52\x49\xf2\x59\x1c\x22\x4c\ +\xa7\x50\x8a\x3a\x66\x3f\x9a\x6c\x49\x32\x0d\xec\x6b\x03\x25\x20\ +\x64\x69\x13\xf8\x44\x21\x65\x45\xc9\x05\xdc\x46\x73\x1b\xef\x03\ +\x3b\x1f\x0d\xcf\x28\xae\x17\x82\x28\x69\x83\x94\x0b\x2a\x0e\x34\ +\xe7\x18\x8e\x8e\xd0\x27\xde\x33\x86\xd0\x99\x90\x06\x4a\x06\xad\ +\x70\xd2\xb6\x73\xc3\x6a\xb4\xc2\x17\xb1\xc2\x5f\xbb\x3b\xf4\xd5\ +\x9b\x43\x00\x38\xb0\x7d\xb0\x06\x69\x1a\x35\x9d\xa3\xda\x65\xe5\ +\x10\x4c\xe2\x43\xd0\x26\xd1\x07\xba\x46\x63\x1d\x2c\x74\xe5\x1c\ +\x1d\x6f\x68\x31\x28\x78\xf0\x11\xb1\xdb\xf7\xe3\x95\x9f\xdf\xcd\ +\x95\x9f\x57\x53\xbc\x85\xbf\x9b\xf9\xaf\xdc\x22\x3c\x55\x3c\x97\ +\xee\xdc\x5d\x1e\x2f\xfc\x7c\xed\xc2\xcf\x78\xdd\x87\x27\x3e\x5e\ +\xf7\x19\xaf\xfb\x0c\x4a\xe0\x78\xdd\xe7\xba\x29\x18\xaf\xfb\x8c\ +\xd7\x7d\xc6\xeb\x3e\xe3\x75\x9f\xf1\xba\xcf\x78\xdd\x67\xbc\xee\ +\x33\x5e\xf7\x19\xaf\xfb\x8c\xd7\x7d\xc6\xeb\x3e\xe3\x75\x9f\xf1\ +\xba\xcf\x78\xdd\x67\xbc\xee\xf3\x02\xea\x8c\xd7\x7d\xc6\xeb\x3e\ +\xe3\x75\x9f\xf1\xba\x0f\xbd\x19\xaf\xfb\x8c\xd7\x7d\xda\x08\x64\ +\xbc\xee\x33\x5e\xf7\x19\xaf\xfb\x8c\xd7\x7d\x5a\x12\x39\x5e\xf7\ +\xf9\xf6\xeb\x3e\xc3\x49\x03\xe3\x75\x9f\xf1\xba\xcf\x99\x09\x2d\ +\xaf\x96\xce\x02\xe4\x05\xc7\xde\x95\x4c\xca\x7f\x86\xc2\x04\x95\ +\x5e\x98\xd7\xf2\xbb\x4a\x28\x1b\x2f\xfd\xfc\xd3\x5d\xfa\x19\xb5\ +\xe8\x37\xa2\x45\xe3\xdd\x1f\x01\x21\xe3\xdd\x9f\xeb\x6a\xbc\xfb\ +\x73\xe1\xbb\x3f\xbf\x99\xd4\xd7\xa1\x3f\xa0\xf1\xbb\x32\x6e\xe3\ +\xcd\x9f\xf1\xe6\x8f\x50\x6e\xbc\xf9\x33\xde\xfc\x79\xc9\xcd\x9f\ +\xd1\x06\xbf\xde\xbd\x9f\xe5\x7a\xbd\x7a\xd8\x2f\xbf\x7b\x15\xfa\ +\x2a\x45\xf2\xf9\x2b\xff\x9e\xcb\x94\xd2\x51\x09\xcd\xff\x0e\xe8\ +\xfb\xdd\x89\xf4\x86\xf6\x1f\x57\x27\x58\xa5\xe3\xe9\xde\x05\xc1\ +\x31\x3b\x6d\x30\x2f\xe1\x37\x6d\x64\xb3\xa7\x91\xfc\x5d\xa9\x25\ +\x0c\x64\xf6\xbd\xb9\xd9\x7f\xc4\x3f\xff\x00\xaa\x5d\xac\xfa\ +\x00\x00\x0f\xa4\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x61\x76\x65\x5f\ +\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x2d\x31\x32\x2e\x33\x36\x33\x34\x35\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x31\x31\x2e\x38\x35\x32\x34\x35\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ +\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\ +\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ +\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\ +\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ +\x6c\x3a\x23\x61\x61\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x37\x38\x39\x33\x33\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\ +\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\ +\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\ +\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x38\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x37\x35\ +\x37\x30\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x31\x2e\x39\x30\x32\x34\x33\x39\x32\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\ +\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ +\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\ +\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x30\x2e\x39\x34\x32\x35\x30\x35\x35\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x2e\x38\ +\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x31\x33\x2e\x38\x36\x36\x36\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x39\x2e\x32\x30\ +\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x31\x39\x2e\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x30\x39\x38\x32\x36\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\x36\x34\ +\x38\x37\x38\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\ +\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ +\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x62\x33\x62\x33\x62\x33\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\ +\x31\x39\x37\x32\x32\x37\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ +\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\ +\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\ +\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\ +\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\ +\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x33\x37\x35\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x33\x2e\x38\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x33\x2e\x30\x36\x33\x34\ +\x33\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x32\x2e\x30\x36\x30\x39\x37\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x36\x2e\x37\x39\x34\x36\x33\x34\x37\x2c\x34\x2e\x32\x31\x35\ +\x33\x37\x34\x39\x20\x32\x37\x2e\x37\x33\x33\x33\x33\x33\x2c\x34\ +\x2e\x32\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x35\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x36\x2e\x37\ +\x39\x34\x36\x33\x34\x37\x2c\x37\x2e\x34\x31\x35\x33\x37\x34\x39\ +\x20\x32\x37\x2e\x37\x33\x33\x33\x33\x33\x2c\x37\x2e\x34\x36\x36\ +\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x37\x35\x38\x2d\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ +\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x36\x2e\x37\x39\x34\ +\x36\x33\x34\x37\x2c\x31\x30\x2e\x36\x31\x35\x33\x37\x35\x20\x32\ +\x30\x2e\x39\x33\x38\x36\x39\x38\x33\x2c\x30\x2e\x30\x35\x31\x32\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x37\x35\x38\x2d\x39\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ +\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x07\x3b\ +\x00\ +\x00\x21\x2e\x78\x9c\xdd\x59\x5b\x8f\xdb\xb8\x15\x7e\x9f\x5f\xc1\ +\x3a\x2f\x09\x6a\x49\xbc\xe8\x46\xc5\x9e\x7d\xd8\x60\xbb\x0b\xb4\ +\x28\xd0\x4d\xda\xc7\x40\x96\x38\xb6\x1a\x5d\x5c\x4a\x1a\xdb\xf9\ +\xf5\x3d\xa4\x24\x4a\xf2\xa5\x98\x60\x92\x74\xb2\x02\x06\x43\x9e\ +\x73\x78\x39\x1f\xcf\x8d\xe6\xea\xa7\x63\x91\xa3\x47\x21\xeb\xac\ +\x2a\xd7\x0b\x62\xe3\x05\x12\x65\x52\xa5\x59\xb9\x5d\x2f\x3e\xbc\ +\xff\xc5\x0a\x17\xa8\x6e\xe2\x32\x8d\xf3\xaa\x14\xeb\x45\x59\x2d\ +\x7e\xba\xbf\x5b\xfd\xc9\xb2\xd0\xcf\x52\xc4\x8d\x48\xd1\x21\x6b\ +\x76\xe8\xb7\xf2\x53\x9d\xc4\x7b\x81\x5e\xef\x9a\x66\x1f\x39\xce\ +\xe1\x70\xb0\xb3\x9e\x68\x57\x72\xeb\xbc\x41\x96\x75\x7f\x77\xb7\ +\xaa\x1f\xb7\x77\x08\x21\x58\xb7\xac\xa3\x34\x59\x2f\xfa\x01\xfb\ +\x56\xe6\x5a\x30\x4d\x1c\x91\x8b\x42\x94\x4d\xed\x10\x9b\x38\x8b\ +\x51\x3c\x19\xc5\x13\xb5\x7a\xf6\x28\x92\xaa\x28\xaa\xb2\xd6\x23\ +\xcb\xfa\xd5\x44\x58\xa6\x0f\x46\x5a\xed\xe6\xc0\xb4\x10\xe1\x9c\ +\x3b\x98\x3a\x94\x5a\x20\x61\xd5\xa7\xb2\x89\x8f\xd6\x7c\x28\xec\ +\xf1\xda\x50\x8a\x31\x76\x80\x37\x4a\x3e\x4d\x2a\x3a\xe6\x00\xc5\ +\xcd\xcd\x68\xee\x74\x75\x80\x7f\x0f\x7f\x66\xc0\x40\xb0\xeb\xaa\ +\x95\x89\x78\x80\x91\xc2\x2e\x45\xe3\xbc\x7b\xff\xce\x30\x2d\x6c\ +\xa7\x4d\x3a\x99\x66\x40\x7f\xb6\xee\xec\x48\xca\xb8\x10\xf5\x3e\ +\x4e\x44\xed\x0c\x74\x3d\xfe\x90\xa5\xcd\x6e\xbd\x60\xae\x4d\x18\ +\x7c\x9e\x26\xee\x44\xb6\xdd\x35\xe7\xd4\x2c\x5d\x2f\x40\x57\xca\ +\xc3\xae\x3f\x31\x25\xd2\x09\xf4\x13\x47\x86\x83\x6d\x4e\x6d\x82\ +\x24\xf1\x58\xd0\xc9\x0c\x2a\x44\x69\x95\xa8\x3d\xc1\x94\xa2\xc8\ +\xe2\xb6\xa9\x0a\x38\xe3\x24\xc9\xe3\xba\xce\x1e\xb2\x04\x3a\x55\ +\xb9\xcf\xdb\x6d\x56\x7e\x14\xc7\x7d\x25\x9b\x8f\xf5\x5e\x24\x8d\ +\x8c\xf3\x8f\x79\xb6\x91\xb1\x3c\xd9\x03\xf0\x66\xdd\x4e\xd0\x3a\ +\xa6\x7b\x00\xd4\x0f\xae\x32\x4f\x03\xf3\x1e\xb8\xab\x54\x3c\xd4\ +\x4a\xaa\xd3\x4e\xf5\x40\xbd\x8e\x07\x5c\x38\x2c\x11\xcb\xbf\xc8\ +\x38\xcd\xc0\x44\x3b\xb9\x4e\x72\xce\xf1\x38\x68\x77\xdf\xf3\x57\ +\x75\x53\xed\x07\x59\x50\xb8\x39\xe5\x4a\x4b\x20\x5a\x49\x95\x57\ +\x32\x7a\x95\x10\x30\x1b\xfc\x56\x93\x2a\x38\x93\xac\x39\x45\xe4\ +\xed\x62\x1c\x53\x3d\x3c\xd4\x02\xf0\xc7\x13\x9a\x46\x1f\x46\xc0\ +\x5a\x6c\x81\x9c\xa7\xaf\x16\xe2\xcb\xd5\xf0\xb5\xd5\xc8\xf5\xd5\ +\x3c\xb3\xda\xca\x99\xab\xfd\xbf\x51\x1a\x70\x87\x6d\xe4\x70\x70\ +\xeb\x45\x9c\x1f\xe2\x53\x6d\x16\xd1\xae\x10\xed\xa4\x00\xd7\x7d\ +\x75\x05\xcf\xdb\x70\x33\x4c\x03\xc3\xde\xf6\xc4\x0f\x65\xd6\x80\ +\x8f\xb6\xb5\x90\xbf\x2b\x3b\xff\x7b\xf9\xa1\x16\x17\x52\xef\x65\ +\x5c\xd6\xe0\x54\xc5\x7a\x01\xf6\x26\xb3\xe3\x6b\xf0\x25\x1e\xb2\ +\xd0\xc3\xc4\x5d\x42\x1b\x63\xe2\x61\xea\xd1\xe5\xa4\x39\x15\x61\ +\xcc\x06\x47\xf6\x30\x5f\x52\x6e\xb3\xd0\x67\x94\xbe\x19\x55\x22\ +\x80\xa2\x67\xba\x27\xe8\x52\x3a\x72\xe9\x7a\xe1\x8e\x4c\xe8\x31\ +\xdc\x63\xbb\x72\x94\xe9\xe9\x96\x71\x10\xe5\x1d\xe9\x63\x26\x0e\ +\xa3\x7d\x6e\x62\xa3\xd2\x3e\xde\x0a\x7d\xc0\x00\xde\x83\xfe\x7a\ +\xc6\xa6\x92\xa9\x90\x03\xcb\xd7\xdf\x8c\xd5\xdb\x40\x97\x01\xee\ +\xe6\x67\xa5\x66\x35\x7c\x7c\x9d\x5f\xef\xe2\xb4\x3a\x80\x66\xe7\ +\xcc\xcf\x55\x55\x28\xfd\xed\x90\xf9\x38\x64\xe7\xec\xe4\xb8\x5e\ +\x58\xbe\x4d\x3d\x9f\x53\xc2\x2f\xb8\x6a\x43\xbe\x1d\x50\x46\x82\ +\x0b\x5e\x2b\x25\x9c\x9d\x95\xc7\x27\x01\x4a\xe9\x7f\x83\x7d\xd4\ +\xbb\xea\xb0\x95\x0a\x9c\x46\xb6\xe2\x7c\xa4\xe2\x58\x9b\x4d\x75\ +\xbc\xce\x86\x18\xd4\xaa\xe4\x63\xb5\x9d\xf1\xec\x8f\xd3\x59\xdb\ +\x2c\x15\xf5\xf5\x81\x87\xac\x04\x0c\xac\x3e\x78\x12\x66\x20\x3e\ +\x97\x18\x22\x69\x80\xc3\x1b\x12\xc7\xd1\xcd\xcf\x59\xa7\xdb\xac\ +\x22\x3e\x66\x45\xf6\x59\xa4\xa3\xdb\x1a\x91\xba\x8c\xf7\xd6\x36\ +\xaf\x36\x71\xde\xef\xbe\x77\xd4\x19\x2c\x83\x1d\x36\x27\x95\x36\ +\x8e\x27\x45\x9b\xf9\x9c\x22\xb0\xc0\x1f\xcd\xb9\x92\x19\x44\xe3\ +\xe3\x34\x2c\x75\xa4\xd3\x94\xa4\x92\x0c\x54\x14\x47\x6d\x5f\xda\ +\xfa\x82\x73\xde\x69\xca\x1b\x1c\xe0\xd2\xee\x35\xbd\x10\x4d\x9c\ +\xc6\x4d\x3c\x3a\xc1\x40\xa1\x9c\xe3\x41\x33\xc8\xee\xd1\x3f\xde\ +\xfd\x62\x82\x62\x92\x44\xff\xaa\xe4\xa7\x31\x9e\x29\x81\x78\x53\ +\xb5\x70\x14\x26\x50\xab\xf0\x9f\x44\x2a\x18\xc4\xcd\x7d\x56\x80\ +\x69\xab\x54\xfe\x67\xc8\xa8\xe0\x8e\x86\x31\x13\x56\x60\x8d\x93\ +\x76\xd3\x4a\xd1\xa5\xea\xab\xd5\x4d\x9a\x14\x99\x1a\xe4\xfc\xde\ +\x64\x79\xfe\x9b\x5a\x64\x12\xbc\xfb\x49\xb3\x26\x17\x93\x88\xee\ +\xf4\xbb\x1f\x82\xee\x44\xb9\x95\x33\x68\xaf\x7b\xdb\x11\x95\x99\ +\x53\x98\x83\xce\xe3\x8d\x00\x23\xf8\xab\x62\xa2\x0b\xee\x56\x56\ +\xed\xbe\xa8\x52\xd1\x0f\x37\x68\x42\xb8\x36\x47\xd6\x25\x94\x07\ +\xd8\x7d\xd4\x07\x9a\xb7\xaa\x33\x49\x5c\xba\x2b\xdb\x1c\x52\xec\ +\xa3\x28\xab\x34\x85\x5c\x23\xab\x4f\x22\x7a\x85\xb1\x1b\xea\xd4\ +\xa3\xba\x9d\xb7\x44\xa6\xab\x62\x3a\x6c\x23\xaa\xff\xd3\xc6\x52\ +\x4c\xa9\xff\xae\xb2\x32\x02\xdc\x84\x1c\xa8\xba\x93\x83\xc5\x37\ +\x91\x3b\xd0\xd2\x18\x22\x91\x94\xf1\x29\x2a\xa1\x5c\x9d\x52\xbb\ +\x84\x36\xae\x64\xb2\x9e\xcd\xfa\x6f\x66\xe8\x4a\x5d\xc6\xf9\x98\ +\x71\xae\xd6\x44\xea\xbb\x5e\x17\xa9\x6f\xe6\x15\x60\xdf\xdc\x76\ +\x03\xc6\x31\xf3\x85\x45\x7c\xc3\x90\x33\x31\x09\x72\xcc\x66\x50\ +\x1b\xf9\x3c\x1c\x93\xec\x3e\x6e\x76\xd7\xd0\x9f\x68\xa9\x90\xed\ +\x93\xfa\x04\x59\xda\x6d\x8a\xb9\xee\x39\xc4\x9b\xb6\x69\xbe\x16\ +\xc0\xe6\xdc\x8d\x1e\x00\xe1\xdf\x10\x5e\x62\xf4\x4f\x34\x00\x33\ +\x07\x58\x69\x04\xde\x3a\xe2\x30\xa9\x0d\x4a\xd8\x61\x53\x49\x0b\ +\x62\xfc\x63\xdc\xb4\x52\xcc\x62\x89\x89\x09\x60\xa4\xca\x8d\x20\ +\x1c\x27\xc9\x8f\x0e\x95\x01\x69\x69\x5a\xe8\x57\x84\xaf\x41\x16\ +\xbe\x1c\xc8\x88\x0d\x27\x08\xe5\x50\xb8\x3f\x7e\x39\x66\x37\x90\ +\x30\x59\x60\x49\x43\x3b\x44\x3f\x23\x66\xd3\xae\x79\xd1\xb8\x40\ +\x87\x05\x01\xb5\xf0\x93\xf1\xf9\x2a\x36\x43\x02\xcf\x25\x9e\xf7\ +\xd5\x10\x28\x90\x37\x84\xa4\x25\xf3\x6c\x8a\x12\xf0\x23\xcb\xb5\ +\xa9\x06\xe5\x56\xfb\x12\x8a\xd0\xfd\x76\x40\x84\xe2\xd2\x12\xfa\ +\x53\xa3\xdf\xc4\x14\x08\xb3\xc3\x4e\xe7\x5e\x61\x45\xa3\x60\x0a\ +\x04\xdb\x7d\xd7\x30\x10\xf1\x97\x60\x21\x28\x37\x40\x2e\xb9\xed\ +\x0f\x1d\x77\x39\xf8\x39\x0a\x6c\x57\x8f\x58\x1a\x40\x43\xdb\xeb\ +\x64\x60\xfc\x05\xa2\x2e\x66\xc1\x77\x44\x14\x8e\x5e\xef\x8a\xb3\ +\xef\x11\x8e\xae\xa4\xc1\x17\x7a\x04\x16\xfb\xe2\xf8\x67\xe4\x9a\ +\xe1\xa6\x67\x25\x50\xe1\x0b\x69\xe9\x8a\xf4\x4a\x0e\xba\x10\x84\ +\xb4\x6c\x9d\xd7\xa7\x2f\x2e\x70\x8c\x27\xf1\xcc\xc0\x61\x3d\x3d\ +\xc7\xbc\x50\x28\x28\x19\x0c\xef\xb9\x50\xf0\x1f\x1e\x0a\xff\x6b\ +\x59\xc5\x0f\x9f\x59\x19\x7d\x36\x06\x4f\x8f\x3e\x2f\x14\x03\x15\ +\x9a\x9f\x89\xc1\xd3\x8b\xf6\x97\x58\x62\x16\xd3\x12\x93\x75\x09\ +\x28\x00\x38\x86\xa4\xc4\xe0\xd6\x72\xa3\x7d\xa3\xe0\xb4\xe8\x1f\ +\x06\x10\x12\x0e\xa9\xf9\x59\x80\x90\x1f\x1a\x90\x59\xd9\x43\xcd\ +\x25\x44\x37\x2f\x1a\xb7\x20\xf8\x9e\x81\xe2\xdb\xda\xc4\x50\xa4\ +\x3d\xd3\x49\xdc\x3f\x0c\x20\x46\xd9\xe7\x01\xf2\xad\x2a\x8b\xfe\ +\x17\xb9\x19\x20\xae\xed\x11\x3f\xf0\xf8\xff\xe3\xb7\x0d\xe5\x25\ +\x93\x48\xfb\x2b\xa2\xbc\xbf\x4a\x5c\x41\x26\x7c\x7a\x2c\x7d\xee\ +\xcf\x1b\xad\xcc\x5f\x9f\x3d\x32\xa9\x57\xa4\x37\x4f\xfd\x2d\xf3\ +\xe2\xea\x7b\x56\x77\x61\xdb\xf3\x69\x88\x03\xf5\x2a\xe4\x13\xca\ +\x43\x1f\xec\x05\xa4\x71\x10\x84\x5e\xff\x96\x04\xfd\x90\x78\x14\ +\xfb\xea\x41\x29\xc4\xcc\x25\x5c\x93\xfc\xc0\x05\x92\x6a\x11\x8a\ +\x19\x5c\xa4\x40\x9c\xea\xe7\x28\xb8\x87\x91\x90\x07\x2e\x45\xbe\ +\x1d\x86\x3e\xf7\x88\x9a\x8a\x60\xaf\x9b\x9d\xfb\x41\x80\x5d\x3d\ +\x3b\x43\x16\xdc\x08\x02\xce\x61\x12\x18\xe7\xda\x41\xe0\x32\xaa\ +\x04\x6f\xd1\x73\xa4\x9f\xb5\x28\x73\x79\xf7\xc0\xe5\x31\x8f\x61\ +\x17\x0d\x6d\xb5\x94\x66\x87\xba\x7c\xc0\x30\x11\x9c\x2d\xa1\x1e\ +\xc7\x10\x0c\x61\x22\x16\x52\x12\x74\xf3\x87\xae\x1b\x86\x01\xd7\ +\x64\x97\x50\xb8\xcc\xc2\xf4\xdd\x96\x5d\xce\xcd\x9e\xad\x41\xb1\ +\x41\x2f\xe5\x54\xfd\x9b\xdb\xb2\x07\xcb\x45\x1d\x36\xb0\x46\x87\ +\x16\x43\x03\x32\xcb\x1e\x2c\x57\x4f\x4e\x61\x4a\xaf\x53\x9e\x7b\ +\xe8\xf3\xc5\x2f\xba\x1e\xec\xfc\x0b\x9d\x6e\xe5\x6c\xef\xef\x56\ +\xea\x11\xe0\xfe\xee\xbf\x97\xfe\x80\x42\ +\x00\x00\x0b\xb1\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x65\x6e\x74\x65\x72\ +\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ +\x36\x36\x2e\x32\x37\x39\x39\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x35\x2e\ +\x39\x38\x32\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ +\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ +\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ +\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ +\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ +\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ +\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ +\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ +\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ +\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ +\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ +\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ +\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\ +\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ +\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x32\ +\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x32\x65\x32\ +\x65\x32\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x33\x2e\x37\x31\x37\x38\x39\x30\x30\x32\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\ +\x33\x2e\x37\x30\x31\x39\x36\x30\x37\x20\x48\x20\x33\x32\x20\x56\ +\x20\x33\x31\x2e\x35\x38\x38\x36\x37\x32\x20\x48\x20\x30\x20\x5a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x30\x32\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ +\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\ +\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ +\x6c\x3a\x23\x63\x37\x65\x39\x61\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x31\x35\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\ +\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\ +\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x33\x38\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x39\x31\ +\x35\x30\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x37\x2e\ +\x38\x38\x34\x39\x36\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x39\x2e\x33\x37\x31\x30\x32\x30\x33\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x37\x36\x30\x32\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\ +\x35\x36\x31\x30\x34\x35\x36\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x31\x2e\x30\x36\ +\x36\x36\x36\x37\x2c\x32\x35\x2e\x36\x36\x32\x37\x34\x36\x20\x32\ +\x36\x2e\x34\x2c\x31\x38\x2e\x36\x39\x31\x30\x36\x38\x20\x32\x31\ +\x2e\x30\x36\x36\x36\x36\x37\x2c\x31\x31\x2e\x37\x31\x39\x33\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\ +\x00\x00\x05\xe1\ +\x00\ +\x00\x17\x33\x78\x9c\xed\x58\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ +\x14\x0c\x58\xb1\xea\x42\xdd\x2c\x29\xb6\xfb\xb0\xa2\x58\x81\xf5\ +\x65\xeb\xb6\xc7\x82\x96\x68\x9b\x8b\x24\x0a\x14\x15\xdb\xf9\xf5\ +\x3b\xa4\xee\xb6\x53\xa4\x18\x96\x3e\xb4\x02\x02\x45\xe7\x42\x9e\ +\xf3\x9d\xef\x1c\x32\x59\xbe\x39\x16\x39\x7a\xa0\xa2\x66\xbc\x5c\ +\x19\xd8\x72\x0c\x44\xcb\x94\x67\xac\xdc\xad\x8c\x3f\x3f\xbe\x33\ +\x23\x03\xd5\x92\x94\x19\xc9\x79\x49\x57\x46\xc9\x8d\x37\xeb\x9b\ +\xe5\x0f\xa6\x89\x7e\x11\x94\x48\x9a\xa1\x03\x93\x7b\xf4\xbe\xbc\ +\xaf\x53\x52\x51\xf4\xd3\x5e\xca\x2a\xb1\xed\xc3\xe1\x60\xb1\x4e\ +\x68\x71\xb1\xb3\x5f\x21\xd3\x5c\xdf\xdc\x2c\xeb\x87\xdd\x0d\x42\ +\x08\xf6\x2d\xeb\x24\x4b\x57\x46\xe7\x50\x35\x22\xd7\x86\x59\x6a\ +\xd3\x9c\x16\xb4\x94\xb5\x8d\x2d\x6c\x1b\xa3\x79\x3a\x9a\xa7\x6a\ +\x77\xf6\x40\x53\x5e\x14\xbc\xac\xb5\x67\x59\xdf\x4e\x8c\x45\xb6\ +\x1d\xac\x55\x34\x07\x4f\x1b\xe1\x38\x8e\x6d\xc7\xb5\x5d\xd7\x04\ +\x0b\xb3\x3e\x95\x92\x1c\xcd\xb9\x2b\xc4\x78\xcd\xd5\x75\x1c\xc7\ +\x06\xdd\x68\xf9\x3c\xab\xa4\x06\x40\x2b\xf8\x19\xcc\x7b\x81\x55\ +\xf3\x46\xa4\x74\x0b\x7e\xd4\x2a\xa9\xb4\xdf\x7e\x7c\x3b\x28\x4d\ +\xc7\xca\x64\x36\x59\xa6\xc7\x73\xb6\xeb\x0c\xe4\x92\x14\xb4\xae\ +\x48\x4a\x6b\xbb\x97\x6b\xff\x03\xcb\xe4\x7e\x65\x78\xbe\x85\x3d\ +\x78\x02\x2d\xdc\x53\xb6\xdb\xcb\x73\x29\xcb\x56\x06\x44\xef\xc6\ +\x51\xfb\x3d\x21\x07\x6e\x0d\xba\x85\x93\x41\xe3\x58\xb1\x6b\x61\ +\x24\x70\xe0\x2d\x5a\x9b\x3e\x85\x24\xe3\xa9\x8a\x09\x96\xa4\x05\ +\x23\x8d\xe4\x05\x54\x2d\x4d\x73\x52\xd7\x6c\xcb\x52\xf8\xe0\x65\ +\x95\x37\x3b\x56\x7e\x12\xb4\xe2\x42\x7e\x92\x9c\xe7\x56\x0f\xdf\ +\xb0\x17\x3d\x2a\xa5\x79\xcc\x2a\x00\x31\x5c\x5c\x55\x9e\x7a\xe5\ +\x1a\xb4\xcb\x8c\x6e\x6b\x65\xd5\x66\xa4\xbe\x20\xa5\x85\x81\x6c\ +\xad\x1d\x02\x54\xd1\x65\x0f\x8c\x1e\x46\xdb\x0d\xa9\x5b\xd4\x10\ +\xaa\xc8\x0e\x18\x96\x73\xb1\x32\x6e\xb7\xfa\xe9\x14\x1b\x2e\x32\ +\x2a\x7a\x55\xa8\x9f\x99\x8a\x43\x15\x98\x3c\xb5\x3d\xd5\xad\xdd\ +\xc7\xab\x56\x1d\xf4\xce\x75\x7d\xbd\x27\x19\x3f\xac\x0c\xf7\x5c\ +\xf9\xc8\x79\xb1\x32\x02\x2b\x88\xa3\xd8\xc1\xe7\xda\xf4\x08\x3b\ +\x42\xa5\x42\xd7\xc7\xde\x85\x52\x87\x13\xb8\x91\x87\xfd\xe8\x42\ +\xd9\x08\x01\x3d\x67\xe6\xe4\x44\x21\x27\xfd\xea\x97\xaf\xf7\xfc\ +\xb0\x13\x0a\x1b\x29\x1a\x7a\xee\xa9\x34\xe6\x66\xc3\x8f\xd7\xd5\ +\x40\x81\x46\x75\xb3\xd9\x94\x4c\x42\xc7\x54\xc7\xe9\xaa\x0d\xcb\ +\x68\x7d\xdd\xb1\x2e\x49\x65\xee\x72\xbe\x21\xf9\x75\x83\x03\x2b\ +\x01\x23\xb3\x23\x37\xf6\x86\x12\x9c\x5b\xf4\x4c\x5f\x38\x17\x69\ +\x77\x16\x10\xfb\x45\x19\x3a\xd5\xe9\x69\x55\x41\x8e\xac\x60\x8f\ +\x14\x80\xc1\x9a\x75\xc0\xac\x19\x2c\xad\x1b\x42\xf2\xa4\xba\xf6\ +\x78\x52\x32\xa3\x17\x2a\x3c\x95\xc0\x8d\xe3\xc5\x20\xe4\x82\x41\ +\x33\x4c\xc2\xe9\x45\xa7\xa9\x48\xf5\x38\x8c\xe8\xa3\xa6\x97\x26\ +\xdf\xe2\x5c\x77\x9a\xea\x3a\xd6\xdb\x97\xb4\xd7\xf2\x82\x4a\x92\ +\x11\x49\xc6\x1e\xe8\x25\x10\x9b\xd3\x67\x06\xe3\x32\xf9\xfd\xed\ +\xbb\x75\xb7\xd1\x32\x4d\x93\xbf\xb9\xb8\xef\xf7\x45\x48\x19\x90\ +\x0d\x6f\x00\x69\x63\x3d\x88\x97\x59\x9a\xc0\x80\x83\xc6\x5f\xb3\ +\x02\x98\xad\x66\xe3\xcf\x30\xd0\x96\xf6\xa8\x98\x19\x2b\xb0\xc6\ +\x45\xdb\x65\x05\x6d\x27\xe5\xd5\xe3\x22\x4b\x0b\xa6\x9c\xec\x3f\ +\x24\xcb\xf3\xf7\x6a\x93\x2e\xe3\xc9\xa2\x4c\xe6\x74\x14\x2e\xed\ +\x2e\xfa\x2e\x37\x7b\x92\xdc\xd2\xee\xb3\xd7\x5f\xbb\x11\x95\x59\ +\x53\x0c\x85\xce\xc9\x86\x02\x43\x7f\x53\x4a\x74\xa1\xdd\x09\xde\ +\x54\x05\xcf\x68\xe7\x3e\xa0\x49\x53\x39\x94\x4c\x9e\x72\xd0\xeb\ +\x71\x92\xdc\x3a\xfa\xb9\xcb\x58\x5d\x81\x07\x4c\xfd\x9c\x95\xf4\ +\x8e\xc3\xb8\xdd\xe6\xfc\x90\x3c\xb0\x9a\x6d\x72\x7a\xa7\xdf\x2c\ +\x87\xcc\x07\xd1\x16\xd2\x4f\x6e\xb7\xd1\x36\x4e\x1d\xfd\x61\x76\ +\x63\x26\xc1\xed\xa7\x68\x72\x9a\x94\xbc\x7c\x84\x01\x75\x57\x4b\ +\xc1\xef\x69\xd2\x0d\xb6\xee\xb3\xed\xa6\xc4\x6d\x8f\x04\xcf\xf7\ +\x7b\xb9\x0a\x02\x12\x4a\x36\x8d\x94\x53\xd9\x3f\x9c\x95\x09\xe0\ +\x4f\x45\x2f\xd5\x1f\x39\x34\x86\x4c\x06\xef\x8c\xc0\x40\x13\x02\ +\xd2\x81\xdd\xe9\x54\xca\xb7\xdb\x9a\xca\xc4\xe9\x65\x63\xc4\x05\ +\x11\xf7\x54\xb4\x0e\xb4\x24\x90\xa0\xb9\x21\xe9\xbd\x02\xb4\xcc\ +\x12\x92\xc2\x58\x69\x72\xb8\x82\xcc\x1a\x4a\xc1\xea\xc1\x80\x1b\ +\x84\xfd\xd1\x17\x58\xea\x60\x76\x46\xc5\x70\xfc\x5d\x68\xa0\xad\ +\x4c\x6c\x79\xae\x1b\x86\xb1\x3f\x48\xf5\xac\x6e\x51\x89\xdd\x41\ +\x2a\xc0\xd8\xb7\x22\x2f\x8c\x70\xe8\x8d\x52\x30\xf6\xac\x28\x76\ +\xe3\xc0\x0f\x07\x2e\x2e\x2b\x22\xf7\x67\x35\xd7\x25\x9b\x60\x32\ +\x94\x7f\x56\x8e\xd0\xf2\xda\x4e\x8e\xff\xcf\x72\x0c\xd0\x0f\x79\ +\xa8\x49\x80\xe0\x1e\xe2\x06\xe1\x6b\xdc\xc2\xe4\x2c\xd0\x1e\x79\ +\x91\xe5\xa3\xbf\xd4\x2b\xd0\x2c\x01\x91\xa9\x65\x8f\xb3\x62\xa8\ +\x7c\xbd\x08\x8f\xb3\x69\x3c\x6d\x78\x09\xf1\x4b\x2e\x4c\x38\x77\ +\x1e\x88\x6c\x04\x55\xf3\xed\xbf\x23\x85\x2d\x3f\xf4\x17\xe1\x22\ +\xc2\x2f\x8e\xd4\x07\x84\x3d\x4b\x91\x26\x5c\xbc\x0e\x3b\x60\x30\ +\xa0\x14\xb8\x56\x1c\xbb\x41\xec\x5d\xc3\x26\xfe\x36\xb0\x01\x16\ +\x75\x1d\x35\xc5\x66\x8f\x7c\xcf\x0a\x87\xbb\xc8\x14\x18\xd7\xfb\ +\x36\x80\xf9\x80\x9c\xd7\xae\xda\x1f\x9e\x08\xfd\x8a\x7c\x17\x60\ +\x52\xf8\x5c\xc3\x24\xf8\x72\x4c\x24\x3d\x0e\xc7\x0c\x1c\xba\x89\ +\xfe\xeb\x00\x16\x84\x03\x95\x8a\x87\x71\x76\xf6\x78\x71\xb8\xa8\ +\xe9\xdf\x21\x74\x38\x9a\xf3\x3b\x2d\x39\xe8\x59\x39\x13\xd5\x70\ +\xef\x49\xb0\x6b\x45\x1a\x4f\x1c\x57\xc7\x3b\x05\x50\x77\xd7\x4a\ +\x9c\x1f\x5b\xb3\x2d\x29\x58\x7e\x4a\x6a\x52\xd6\x26\xec\xc8\xb6\ +\x77\x39\x95\x80\x98\xd9\x5d\x53\x12\x07\x1c\x0f\x70\x65\x9e\x09\ +\xda\x83\xac\x2b\xd5\xd9\x41\xd6\x15\x72\x8a\x6c\x5f\xc5\xee\xba\ +\xe3\x4e\x27\x39\x0e\x2d\x98\xc2\x8b\xc5\x6c\x90\xbb\x91\xe5\xc0\ +\x64\x0e\xf1\x0c\x65\x85\x15\x9c\x1d\x23\xf4\x52\x40\xd8\xea\x8a\ +\x02\x7f\xbf\xa4\x24\xa7\x3f\x39\x6a\xa6\x47\x6e\x14\x78\x30\x0e\ +\x31\xcc\x43\x2f\x88\x5f\x19\xeb\xa5\x84\xe0\xcb\xf1\xce\x32\x5c\ +\xb3\x04\x57\xa0\x2a\x5c\x8c\x51\xab\xb7\x52\x0e\xb0\x57\x30\x91\ +\x5f\x0d\xf6\x89\x70\xcf\x0a\xa6\x6a\x11\x59\x51\x14\x85\x4e\x80\ +\xdd\xb3\x52\xc0\xe0\x0e\x9e\x2a\xc6\x53\x00\xae\xb1\xeb\x2d\x6d\ +\x1d\xe5\x1a\xde\x00\xcc\x77\x3e\x7d\x86\x4f\xd8\xb7\x16\x2e\x5e\ +\x04\xde\x55\x3e\x99\xc1\x4b\x32\xca\x8c\x9f\xc5\xa9\xcb\x90\xbf\ +\x73\xea\x6b\x71\xca\xb7\x7c\xdf\xf7\x9c\x2f\xa1\x94\xf3\xa2\x94\ +\x0a\xe7\x94\xba\x88\xf7\xab\x31\xea\x3b\x9f\x9e\xcb\xa7\xcf\x1f\ +\x79\xa6\xf3\xc2\x43\x2a\x34\xfd\xe7\x70\xea\x6b\x9c\x7c\x97\x9c\ +\x5a\xda\xbb\xf5\xcd\x52\xfd\xe3\x62\x7d\xf3\x2f\x01\x81\xea\x10\ +\ +\x00\x00\x05\xe1\ +\x00\ +\x00\x17\x33\x78\x9c\xed\x58\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ +\x14\x0c\x58\xb1\xea\x42\xdd\x2c\x29\xb6\xfb\xb0\xa2\x58\x81\xf5\ +\x65\xeb\xb6\xc7\x82\x96\x68\x9b\x8b\x24\x0a\x14\x15\xdb\xf9\xf5\ +\x3b\xa4\xee\xb6\x53\xa4\x18\x96\x3e\xb4\x02\x02\x45\xe7\x42\x9e\ +\xf3\x9d\xef\x1c\x32\x59\xbe\x39\x16\x39\x7a\xa0\xa2\x66\xbc\x5c\ +\x19\xd8\x72\x0c\x44\xcb\x94\x67\xac\xdc\xad\x8c\x3f\x3f\xbe\x33\ +\x23\x03\xd5\x92\x94\x19\xc9\x79\x49\x57\x46\xc9\x8d\x37\xeb\x9b\ +\xe5\x0f\xa6\x89\x7e\x11\x94\x48\x9a\xa1\x03\x93\x7b\xf4\xbe\xbc\ +\xaf\x53\x52\x51\xf4\xd3\x5e\xca\x2a\xb1\xed\xc3\xe1\x60\xb1\x4e\ +\x68\x71\xb1\xb3\x5f\x21\xd3\x5c\xdf\xdc\x2c\xeb\x87\xdd\x0d\x42\ +\x08\xf6\x2d\xeb\x24\x4b\x57\x46\xe7\x50\x35\x22\xd7\x86\x59\x6a\ +\xd3\x9c\x16\xb4\x94\xb5\x8d\x2d\x6c\x1b\xa3\x79\x3a\x9a\xa7\x6a\ +\x77\xf6\x40\x53\x5e\x14\xbc\xac\xb5\x67\x59\xdf\x4e\x8c\x45\xb6\ +\x1d\xac\x55\x34\x07\x4f\x1b\xe1\x38\x8e\x6d\xc7\xb5\x5d\xd7\x04\ +\x0b\xb3\x3e\x95\x92\x1c\xcd\xb9\x2b\xc4\x78\xcd\xd5\x75\x1c\xc7\ +\x06\xdd\x68\xf9\x3c\xab\xa4\x06\x40\x2b\xf8\x19\xcc\x7b\x81\x55\ +\xf3\x46\xa4\x74\x0b\x7e\xd4\x2a\xa9\xb4\xdf\x7e\x7c\x3b\x28\x4d\ +\xc7\xca\x64\x36\x59\xa6\xc7\x73\xb6\xeb\x0c\xe4\x92\x14\xb4\xae\ +\x48\x4a\x6b\xbb\x97\x6b\xff\x03\xcb\xe4\x7e\x65\x78\xbe\x85\x3d\ +\x78\x02\x2d\xdc\x53\xb6\xdb\xcb\x73\x29\xcb\x56\x06\x44\xef\xc6\ +\x51\xfb\x3d\x21\x07\x6e\x0d\xba\x85\x93\x41\xe3\x58\xb1\x6b\x61\ +\x24\x70\xe0\x2d\x5a\x9b\x3e\x85\x24\xe3\xa9\x8a\x09\x96\xa4\x05\ +\x23\x8d\xe4\x05\x54\x2d\x4d\x73\x52\xd7\x6c\xcb\x52\xf8\xe0\x65\ +\x95\x37\x3b\x56\x7e\x12\xb4\xe2\x42\x7e\x92\x9c\xe7\x56\x0f\xdf\ +\xb0\x17\x3d\x2a\xa5\x79\xcc\x2a\x00\x31\x5c\x5c\x55\x9e\x7a\xe5\ +\x1a\xb4\xcb\x8c\x6e\x6b\x65\xd5\x66\xa4\xbe\x20\xa5\x85\x81\x6c\ +\xad\x1d\x02\x54\xd1\x65\x0f\x8c\x1e\x46\xdb\x0d\xa9\x5b\xd4\x10\ +\xaa\xc8\x0e\x18\x96\x73\xb1\x32\x6e\xb7\xfa\xe9\x14\x1b\x2e\x32\ +\x2a\x7a\x55\xa8\x9f\x99\x8a\x43\x15\x98\x3c\xb5\x3d\xd5\xad\xdd\ +\xc7\xab\x56\x1d\xf4\xce\x75\x7d\xbd\x27\x19\x3f\xac\x0c\xf7\x5c\ +\xf9\xc8\x79\xb1\x32\x02\x2b\x88\xa3\xd8\xc1\xe7\xda\xf4\x08\x3b\ +\x42\xa5\x42\xd7\xc7\xde\x85\x52\x87\x13\xb8\x91\x87\xfd\xe8\x42\ +\xd9\x08\x01\x3d\x67\xe6\xe4\x44\x21\x27\xfd\xea\x97\xaf\xf7\xfc\ +\xb0\x13\x0a\x1b\x29\x1a\x7a\xee\xa9\x34\xe6\x66\xc3\x8f\xd7\xd5\ +\x40\x81\x46\x75\xb3\xd9\x94\x4c\x42\xc7\x54\xc7\xe9\xaa\x0d\xcb\ +\x68\x7d\xdd\xb1\x2e\x49\x65\xee\x72\xbe\x21\xf9\x75\x83\x03\x2b\ +\x01\x23\xb3\x23\x37\xf6\x86\x12\x9c\x5b\xf4\x4c\x5f\x38\x17\x69\ +\x77\x16\x10\xfb\x45\x19\x3a\xd5\xe9\x69\x55\x41\x8e\xac\x60\x8f\ +\x14\x80\xc1\x9a\x75\xc0\xac\x19\x2c\xad\x1b\x42\xf2\xa4\xba\xf6\ +\x78\x52\x32\xa3\x17\x2a\x3c\x95\xc0\x8d\xe3\xc5\x20\xe4\x82\x41\ +\x33\x4c\xc2\xe9\x45\xa7\xa9\x48\xf5\x38\x8c\xe8\xa3\xa6\x97\x26\ +\xdf\xe2\x5c\x77\x9a\xea\x3a\xd6\xdb\x97\xb4\xd7\xf2\x82\x4a\x92\ +\x11\x49\xc6\x1e\xe8\x25\x10\x9b\xd3\x67\x06\xe3\x32\xf9\xfd\xed\ +\xbb\x75\xb7\xd1\x32\x4d\x93\xbf\xb9\xb8\xef\xf7\x45\x48\x19\x90\ +\x0d\x6f\x00\x69\x63\x3d\x88\x97\x59\x9a\xc0\x80\x83\xc6\x5f\xb3\ +\x02\x98\xad\x66\xe3\xcf\x30\xd0\x96\xf6\xa8\x98\x19\x2b\xb0\xc6\ +\x45\xdb\x65\x05\x6d\x27\xe5\xd5\xe3\x22\x4b\x0b\xa6\x9c\xec\x3f\ +\x24\xcb\xf3\xf7\x6a\x93\x2e\xe3\xc9\xa2\x4c\xe6\x74\x14\x2e\xed\ +\x2e\xfa\x2e\x37\x7b\x92\xdc\xd2\xee\xb3\xd7\x5f\xbb\x11\x95\x59\ +\x53\x0c\x85\xce\xc9\x86\x02\x43\x7f\x53\x4a\x74\xa1\xdd\x09\xde\ +\x54\x05\xcf\x68\xe7\x3e\xa0\x49\x53\x39\x94\x4c\x9e\x72\xd0\xeb\ +\x71\x92\xdc\x3a\xfa\xb9\xcb\x58\x5d\x81\x07\x4c\xfd\x9c\x95\xf4\ +\x8e\xc3\xb8\xdd\xe6\xfc\x90\x3c\xb0\x9a\x6d\x72\x7a\xa7\xdf\x2c\ +\x87\xcc\x07\xd1\x16\xd2\x4f\x6e\xb7\xd1\x36\x4e\x1d\xfd\x61\x76\ +\x63\x26\xc1\xed\xa7\x68\x72\x9a\x94\xbc\x7c\x84\x01\x75\x57\x4b\ +\xc1\xef\x69\xd2\x0d\xb6\xee\xb3\xed\xa6\xc4\x6d\x8f\x04\xcf\xf7\ +\x7b\xb9\x0a\x02\x12\x4a\x36\x8d\x94\x53\xd9\x3f\x9c\x95\x09\xe0\ +\x4f\x45\x2f\xd5\x1f\x39\x34\x86\x4c\x06\xef\x8c\xc0\x40\x13\x02\ +\xd2\x81\xdd\xe9\x54\xca\xb7\xdb\x9a\xca\xc4\xe9\x65\x63\xc4\x05\ +\x11\xf7\x54\xb4\x0e\xb4\x24\x90\xa0\xb9\x21\xe9\xbd\x02\xb4\xcc\ +\x12\x92\xc2\x58\x69\x72\xb8\x82\xcc\x1a\x4a\xc1\xea\xc1\x80\x1b\ +\x84\xfd\xd1\x17\x58\xea\x60\x76\x46\xc5\x70\xfc\x5d\x68\xa0\xad\ +\x4c\x6c\x79\xae\x1b\x86\xb1\x3f\x48\xf5\xac\x6e\x51\x89\xdd\x41\ +\x2a\xc0\xd8\xb7\x22\x2f\x8c\x70\xe8\x8d\x52\x30\xf6\xac\x28\x76\ +\xe3\xc0\x0f\x07\x2e\x2e\x2b\x22\xf7\x67\x35\xd7\x25\x9b\x60\x32\ +\x94\x7f\x56\x8e\xd0\xf2\xda\x4e\x8e\xff\xcf\x72\x0c\xd0\x0f\x79\ +\xa8\x49\x80\xe0\x1e\xe2\x06\xe1\x6b\xdc\xc2\xe4\x2c\xd0\x1e\x79\ +\x91\xe5\xa3\xbf\xd4\x2b\xd0\x2c\x01\x91\xa9\x65\x8f\xb3\x62\xa8\ +\x7c\xbd\x08\x8f\xb3\x69\x3c\x6d\x78\x09\xf1\x4b\x2e\x4c\x38\x77\ +\x1e\x88\x6c\x04\x55\xf3\xed\xbf\x23\x85\x2d\x3f\xf4\x17\xe1\x22\ +\xc2\x2f\x8e\xd4\x07\x84\x3d\x4b\x91\x26\x5c\xbc\x0e\x3b\x60\x30\ +\xa0\x14\xb8\x56\x1c\xbb\x41\xec\x5d\xc3\x26\xfe\x36\xb0\x01\x16\ +\x75\x1d\x35\xc5\x66\x8f\x7c\xcf\x0a\x87\xbb\xc8\x14\x18\xd7\xfb\ +\x36\x80\xf9\x80\x9c\xd7\xae\xda\x1f\x9e\x08\xfd\x8a\x7c\x17\x60\ +\x52\xf8\x5c\xc3\x24\xf8\x72\x4c\x24\x3d\x0e\xc7\x0c\x1c\xba\x89\ +\xfe\xeb\x00\x16\x84\x03\x95\x8a\x87\x71\x76\xf6\x78\x71\xb8\xa8\ +\xe9\xdf\x21\x74\x38\x9a\xf3\x3b\x2d\x39\xe8\x59\x39\x13\xd5\x70\ +\xef\x49\xb0\x6b\x45\x1a\x4f\x1c\x57\xc7\x3b\x05\x50\x77\xd7\x4a\ +\x9c\x1f\x5b\xb3\x2d\x29\x58\x7e\x4a\x6a\x52\xd6\x26\xec\xc8\xb6\ +\x77\x39\x95\x80\x98\xd9\x5d\x53\x12\x07\x1c\x0f\x70\x65\x9e\x09\ +\xda\x83\xac\x2b\xd5\xd9\x41\xd6\x15\x72\x8a\x6c\x5f\xc5\xee\xba\ +\xe3\x4e\x27\x39\x0e\x2d\x98\xc2\x8b\xc5\x6c\x90\xbb\x91\xe5\xc0\ +\x64\x0e\xf1\x0c\x65\x85\x15\x9c\x1d\x23\xf4\x52\x40\xd8\xea\x8a\ +\x02\x7f\xbf\xa4\x24\xa7\x3f\x39\x6a\xa6\x47\x6e\x14\x78\x30\x0e\ +\x31\xcc\x43\x2f\x88\x5f\x19\xeb\xa5\x84\xe0\xcb\xf1\xce\x32\x5c\ +\xb3\x04\x57\xa0\x2a\x5c\x8c\x51\xab\xb7\x52\x0e\xb0\x57\x30\x91\ +\x5f\x0d\xf6\x89\x70\xcf\x0a\xa6\x6a\x11\x59\x51\x14\x85\x4e\x80\ +\xdd\xb3\x52\xc0\xe0\x0e\x9e\x2a\xc6\x53\x00\xae\xb1\xeb\x2d\x6d\ +\x1d\xe5\x1a\xde\x00\xcc\x77\x3e\x7d\x86\x4f\xd8\xb7\x16\x2e\x5e\ +\x04\xde\x55\x3e\x99\xc1\x4b\x32\xca\x8c\x9f\xc5\xa9\xcb\x90\xbf\ +\x73\xea\x6b\x71\xca\xb7\x7c\xdf\xf7\x9c\x2f\xa1\x94\xf3\xa2\x94\ +\x0a\xe7\x94\xba\x88\xf7\xab\x31\xea\x3b\x9f\x9e\xcb\xa7\xcf\x1f\ +\x79\xa6\xf3\xc2\x43\x2a\x34\xfd\xe7\x70\xea\x6b\x9c\x7c\x97\x9c\ +\x5a\xda\xbb\xf5\xcd\x52\xfd\xe3\x62\x7d\xf3\x2f\x01\x81\xea\x10\ +\ +\x00\x00\x12\x2a\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x34\x20\x28\x35\x64\x61\ +\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\x31\x39\x2d\x30\x31\ +\x2d\x31\x34\x29\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\ +\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x64\ +\x6f\x5f\x73\x61\x76\x65\x5f\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ +\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ +\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ +\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x36\x2e\x33\x38\x30\x33\ +\x31\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x31\x36\x2e\x31\x30\x34\x39\x38\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ +\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ +\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x37\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\ +\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ +\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ +\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ +\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ +\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\ +\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ +\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\ +\x34\x37\x35\x31\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x33\x32\x35\x36\x36\x65\ +\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\ +\x35\x2e\x32\x31\x30\x36\x34\x36\x38\x65\x2d\x31\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\ +\x34\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x33\x2e\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\ +\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\ +\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ +\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\ +\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\ +\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ +\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\ +\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\ +\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\ +\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ +\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\ +\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\ +\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ +\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\ +\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\ +\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\ +\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\ +\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\ +\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\ +\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ +\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\ +\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\ +\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ +\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x2e\x35\x35\x32\x32\x36\x39\ +\x35\x2c\x31\x31\x2e\x36\x39\x35\x31\x30\x38\x20\x43\x20\x36\x2e\ +\x39\x35\x35\x30\x32\x35\x35\x2c\x33\x2e\x33\x31\x30\x30\x37\x35\ +\x38\x20\x31\x33\x2e\x35\x39\x30\x30\x36\x35\x2c\x34\x2e\x35\x32\ +\x38\x36\x37\x30\x31\x20\x32\x32\x2e\x32\x39\x32\x35\x35\x36\x2c\ +\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x4c\x20\x32\x34\x2e\x32\ +\x39\x33\x32\x31\x33\x2c\x31\x2e\x39\x34\x31\x30\x36\x32\x34\x20\ +\x33\x30\x2e\x37\x34\x39\x37\x31\x36\x2c\x31\x35\x2e\x39\x30\x32\ +\x37\x20\x32\x39\x2e\x33\x32\x39\x36\x30\x37\x2c\x31\x36\x2e\x34\ +\x39\x37\x36\x33\x35\x20\x31\x36\x2e\x30\x33\x31\x37\x37\x31\x2c\ +\x31\x37\x2e\x30\x36\x38\x36\x35\x31\x20\x31\x39\x2e\x33\x34\x33\ +\x36\x35\x34\x2c\x31\x31\x2e\x35\x31\x34\x35\x34\x38\x20\x43\x20\ +\x31\x33\x2e\x35\x33\x39\x36\x35\x35\x2c\x31\x30\x2e\x32\x32\x38\ +\x34\x34\x33\x20\x37\x2e\x37\x33\x33\x37\x30\x36\x35\x2c\x38\x2e\ +\x39\x32\x32\x37\x33\x39\x32\x20\x34\x2e\x39\x35\x39\x33\x39\x30\ +\x35\x2c\x31\x34\x2e\x32\x30\x36\x34\x31\x34\x20\x63\x20\x2d\x32\ +\x2e\x35\x32\x34\x36\x31\x33\x2c\x32\x2e\x32\x38\x32\x34\x32\x38\ +\x20\x2d\x33\x2e\x39\x39\x32\x33\x38\x34\x30\x33\x2c\x31\x2e\x37\ +\x33\x34\x33\x39\x32\x20\x2d\x32\x2e\x34\x30\x37\x31\x32\x36\x2c\ +\x2d\x32\x2e\x35\x31\x31\x33\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\ +\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ +\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ +\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\ +\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\ +\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\ +\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\ +\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\ +\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\ +\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\ +\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\ +\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\ +\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\ +\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\ +\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\ +\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\ +\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\ +\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\ +\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\ +\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\ +\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\ +\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\ +\x34\x31\x33\x33\x33\x33\x34\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ +\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\ +\x2e\x38\x36\x37\x31\x38\x37\x35\x2c\x39\x2e\x33\x38\x30\x39\x31\ +\x34\x31\x20\x43\x20\x37\x2e\x32\x36\x39\x39\x34\x31\x35\x2c\x30\ +\x2e\x39\x39\x35\x38\x38\x31\x30\x37\x20\x31\x33\x2e\x39\x30\x34\ +\x39\x38\x32\x2c\x32\x2e\x32\x31\x34\x34\x37\x35\x36\x20\x32\x32\ +\x2e\x36\x30\x37\x34\x37\x34\x2c\x35\x2e\x31\x35\x32\x34\x37\x32\ +\x32\x20\x4c\x20\x32\x34\x2e\x36\x30\x38\x31\x33\x2c\x2d\x30\x2e\ +\x33\x37\x33\x31\x33\x32\x36\x39\x20\x33\x31\x2e\x30\x36\x34\x36\ +\x33\x33\x2c\x31\x33\x2e\x35\x38\x38\x35\x30\x35\x20\x32\x39\x2e\ +\x36\x34\x34\x35\x32\x32\x2c\x31\x34\x2e\x31\x38\x33\x34\x34\x32\ +\x20\x31\x36\x2e\x33\x34\x36\x36\x38\x39\x2c\x31\x34\x2e\x37\x35\ +\x34\x34\x35\x38\x20\x31\x39\x2e\x36\x35\x38\x35\x37\x31\x2c\x39\ +\x2e\x32\x30\x30\x33\x35\x34\x31\x20\x43\x20\x31\x33\x2e\x38\x35\ +\x34\x35\x37\x32\x2c\x37\x2e\x39\x31\x34\x32\x34\x39\x36\x20\x38\ +\x2e\x30\x34\x38\x36\x32\x34\x35\x2c\x36\x2e\x36\x30\x38\x35\x34\ +\x34\x35\x20\x35\x2e\x32\x37\x34\x33\x30\x38\x35\x2c\x31\x31\x2e\ +\x38\x39\x32\x32\x31\x38\x20\x32\x2e\x37\x34\x39\x36\x39\x36\x35\ +\x2c\x31\x34\x2e\x31\x37\x34\x36\x34\x36\x20\x31\x2e\x32\x38\x31\ +\x39\x32\x35\x35\x2c\x31\x33\x2e\x36\x32\x36\x36\x31\x20\x32\x2e\ +\x38\x36\x37\x31\x38\x31\x35\x2c\x39\x2e\x33\x38\x30\x39\x31\x38\ +\x34\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ +\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ +\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x38\x30\x30\ +\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ +\x2e\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\ +\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x2e\ +\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x31\x38\x2e\x31\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\x32\x30\x30\x30\x30\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\ +\x34\x34\x34\x34\x34\x35\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0c\x67\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x70\x6c\x69\x74\ +\x5f\x72\x61\x73\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x2d\x36\x36\x2e\x34\x38\x32\x37\x34\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x79\x3d\x22\x35\x2e\x31\x34\x39\x30\x32\x30\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ +\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ +\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ +\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ +\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ +\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ +\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ +\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ +\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\ +\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x31\x31\x36\x30\ +\x36\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\ +\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\x2e\ +\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x34\x32\x2e\x38\x35\x36\x30\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x35\x38\x2e\x35\x30\x31\x32\x35\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\ +\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\ +\x2c\x2d\x30\x2e\x37\x39\x31\x31\x33\x38\x38\x2c\x2d\x30\x2e\x30\ +\x39\x31\x33\x30\x32\x37\x38\x2c\x30\x2e\x39\x39\x35\x38\x32\x33\ +\x31\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\x2c\x2d\x30\x2e\x37\ +\x39\x31\x31\x33\x38\x38\x2c\x30\x2e\x30\x30\x32\x38\x38\x31\x37\ +\x34\x2c\x30\x2e\x39\x39\x39\x39\x39\x35\x38\x35\x2c\x30\x2c\x30\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ +\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x32\x2e\x30\x32\x36\x37\ +\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x38\ +\x2e\x39\x35\x36\x30\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\ +\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\x32\x32\x37\x33\ +\x32\x33\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x35\x39\x33\x33\x33\x30\x33\x38\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\ +\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\ +\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\ +\x34\x35\x36\x37\x38\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x31\x30\x2e\x33\x37\x38\x31\x39\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\ +\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ +\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x36\x31\x31\x36\x33\x36\x36\x36\x2c\x2d\x30\ +\x2e\x37\x39\x31\x31\x33\x38\x38\x2c\x30\x2e\x30\x38\x35\x30\x35\ +\x32\x34\x36\x2c\x30\x2e\x39\x39\x36\x33\x37\x36\x34\x37\x2c\x30\ +\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\xfd\ +\x00\ +\x00\x20\xe8\x78\x9c\xd5\x58\x5b\x73\xda\x48\x16\x7e\xf7\xaf\xd0\ +\xe2\x97\xb8\x16\x35\x7d\xbf\x10\xe3\x79\x48\x6a\xa6\xa6\x6a\xa6\ +\xb6\x6a\x27\xa9\x7d\x9c\x12\x52\x03\xda\x08\x89\x92\x84\x81\xfc\ +\xfa\x3d\x2d\xd0\x0d\x44\x6c\xc7\xde\xcc\x2e\x54\x1c\xfa\x9c\xd3\ +\xb7\xef\xdc\xfb\xfe\xa7\xfd\x3a\xf1\x1e\x6d\x5e\xc4\x59\x3a\x1b\ +\x11\x84\x47\x9e\x4d\xc3\x2c\x8a\xd3\xe5\x6c\xf4\xf9\xd3\xcf\xbe\ +\x1e\x79\x45\x19\xa4\x51\x90\x64\xa9\x9d\x8d\xd2\x6c\xf4\xd3\xc3\ +\xcd\xfd\xdf\x7c\xdf\xfb\x90\xdb\xa0\xb4\x91\xb7\x8b\xcb\x95\xf7\ +\x6b\xfa\xa5\x08\x83\x8d\xf5\xde\xad\xca\x72\x33\x9d\x4c\x76\xbb\ +\x1d\x8a\x4f\x44\x94\xe5\xcb\xc9\x9d\xe7\xfb\x0f\x37\x37\xf7\xc5\ +\xe3\xf2\xc6\xf3\x3c\xd8\x37\x2d\xa6\x59\x31\x9f\x8d\x3a\x33\xb2\ +\x8d\x4d\x8b\x5d\x50\x86\xab\x79\x96\x7d\xa9\xe6\x6d\xf3\x78\x42\ +\x31\x36\x13\x90\x1d\xb5\x33\xa3\xb0\x99\xb8\xd9\xe6\x49\x25\x1a\ +\x85\x13\x9b\xd8\xb5\x4d\xcb\x62\x42\x10\x99\x74\xc4\xc3\x56\x3c\ +\x74\xe7\x8e\x1f\x6d\x98\xad\xd7\x59\x5a\x54\x33\xd3\xe2\xb6\x23\ +\x9c\x47\x8b\xde\xa9\x76\xac\x12\x22\xc6\x98\x09\xa6\x13\x4a\x7d\ +\x90\xf0\x8b\x43\x5a\x06\x7b\xbf\x3f\x15\x6e\x37\x34\x15\x2e\x80\ +\x27\xc0\x6b\x25\x9f\x27\x35\xdd\x27\x00\xe2\xd5\xc3\x54\xdc\xee\ +\xee\xa0\xb8\x0d\xfc\x6b\x26\xd4\x04\x54\x64\xdb\x3c\xb4\x0b\x98\ +\x69\x51\x6a\xcb\xc9\xc7\x4f\x1f\x1b\xa6\x8f\x51\x54\x46\x9d\x65\ +\x6a\xbd\xf5\xf6\xed\x29\x33\x0d\xd6\xb6\xd8\x04\xa1\x2d\x26\x35\ +\xbd\x9a\xbf\x8b\xa3\x72\x35\x1b\x31\x8e\x08\x83\x8f\xa8\x88\x2b\ +\x1b\x2f\x57\xe5\x39\x35\x8e\x66\x23\xb8\x2b\x35\x46\x55\xe3\x8e\ +\x11\x92\xa3\xc0\x69\xe1\x69\xc3\xc1\xc8\x50\x44\xbc\x9c\x08\xa6\ +\x8e\x32\xf5\x15\xa6\x51\x16\xba\x33\xc1\x92\x76\x1d\x07\xdb\x32\ +\x5b\x83\x8e\xc3\x30\x09\x8a\x22\x5e\xc4\x21\x0c\xb2\x74\x93\x6c\ +\x97\x71\xfa\x67\x01\xf6\x11\xa7\x36\xf9\xb3\xcc\xb2\x04\xd5\x70\ +\x37\xbb\xd9\xfd\x26\xcb\x4b\x7f\x1f\x6d\x00\x46\xa9\x06\x99\x87\ +\x9a\xf9\x00\xdc\xfb\xe6\x10\xee\x04\xd1\x63\x6c\x77\x6e\xce\xf1\ +\x86\xf3\xa0\x38\x22\xe3\x79\x9b\x60\x09\x36\x97\x64\xf9\x6c\x74\ +\xbb\xa8\x3e\x27\xc6\x3c\xcb\x23\x9b\xd7\x2c\x59\x7d\x7a\xac\x0c\ +\x90\x8e\xcb\xc3\xd1\x3f\x4f\x6b\xd7\x27\x72\xab\x36\x7c\x3c\xcc\ +\x2f\x56\x41\x94\xed\x66\x23\x7a\xce\xfc\x9a\x65\xeb\xd9\x48\x21\ +\x43\x34\xe6\x44\x9d\xb3\xc3\xfd\x6c\xe4\x13\x82\x34\x33\x5c\x98\ +\x0b\x2e\x6c\x48\x15\x62\x18\x53\xc5\x2e\x98\xdb\x3c\x07\x9c\xfd\ +\x24\x38\x58\xb8\x55\xf5\x1f\x39\x09\x15\xab\x6c\xb7\xcc\x1d\x3a\ +\x65\xbe\xb5\xe7\x33\x1d\xc7\x9f\xcf\xb3\xfd\x30\x1b\x14\xbd\x75\ +\x1e\xee\x6f\xd3\xb8\x04\x2f\xda\xec\xbb\xab\x6e\xe3\xc8\x16\xc3\ +\x13\x8b\x34\xd8\xf8\xcb\x24\x9b\x07\xc9\xb0\xc0\x2e\x4e\x01\x25\ +\xff\x64\xc2\x84\x35\x4a\x38\x97\xa8\xed\x59\x61\x7d\x45\x02\xce\ +\x7e\xa1\x88\x13\xeb\x70\x9d\xb5\x0e\xf6\xf1\x3a\xfe\x6a\x01\x18\ +\x52\x59\x16\xd8\x56\x0f\x96\xe3\xb4\xa3\x61\xb9\x31\x40\x2f\x46\ +\x35\xb1\x3c\x38\x87\xdd\x1f\x1c\xa3\x21\x66\x79\x0c\x26\xdf\x39\ +\x4e\x4d\x3a\x74\x49\xce\x93\x21\xe0\xef\x2b\x03\xab\xcc\x4f\x9d\ +\xf3\x0e\x5d\x9e\x37\xa9\xec\x7e\x72\x69\xf8\x15\x3d\xb2\x8b\xa2\ +\xf5\x00\x37\x02\x27\x37\xf5\x8d\x20\x64\xd9\x20\xff\x25\x0f\xa2\ +\x18\xd4\xd8\xbd\x52\x9f\x23\xb4\xa8\xe7\x38\x1f\x2b\xb3\x4d\x2d\ +\x0b\x87\x2a\x0f\x89\xf3\x75\x20\xfa\x95\xdf\x4c\x6f\x4d\x18\x04\ +\x18\xbf\xaf\x48\x27\x7f\x98\x92\xf7\xa3\x76\x4e\xb6\x58\x14\xb6\ +\xec\x5e\xfb\x14\x83\x60\x86\xd0\x92\x9c\x6e\xf5\xcc\xdd\x08\x8b\ +\xc8\xfc\x19\xbb\x91\xe1\xdd\x58\xb3\xdb\xfd\xa4\x7f\xed\x17\xa3\ +\x44\xdb\x2d\x20\x43\x82\xbf\xc7\x29\xec\x5b\x64\x09\x98\xc1\xf3\ +\x2f\xb4\x90\x90\x7b\xce\xe0\xc3\x48\x69\x4d\x99\x60\x2f\xc0\x91\ +\xbe\xe1\xcd\x88\x78\x93\x9b\x2d\xe6\x6a\xae\xbe\xdb\x30\x88\x7a\ +\xb3\x0b\x29\x22\x5f\x70\x6e\x4c\x08\xe5\xe4\x7b\xcf\xad\x88\xbe\ +\x6e\xd0\xad\x14\xd5\x43\x0b\x22\x69\xc0\x44\x71\x07\xff\xc1\x13\ +\x92\x79\x28\x43\x79\x71\xc2\x97\xf8\x91\x90\x5c\x07\xfa\x7b\xfd\ +\x48\x51\xfc\x86\x7e\xa4\x7c\xec\x5f\x8d\x38\x1d\x0b\x37\xbe\xf2\ +\xc9\x13\x7a\x18\xd2\x27\x0e\x95\x59\x3c\x1f\xad\x76\x47\x46\xe0\ +\x64\x43\x8a\x22\xdf\xde\x71\x21\x17\x8b\x0b\x9f\x7e\xff\x14\x62\ +\x6e\x14\x24\x17\x88\x35\x89\x3d\x4b\x12\x1b\xc2\xe6\x41\xb2\x0b\ +\x0e\x45\x73\x82\xaa\x14\x9d\xae\x72\x0b\xa5\xf3\xed\x15\x6c\xbb\ +\xf0\xf7\xb7\x61\x5a\xb4\x29\x67\x79\x22\x7e\x3e\x66\xf8\x6d\x61\ +\xf3\x3f\x5c\xad\xf9\x8f\xf4\x73\x53\x4c\xb5\x52\x9f\xf2\x20\x2d\ +\xa0\xb0\x85\x42\x06\x6a\xbe\x3c\xde\xbf\xf3\x19\xa2\xac\xfa\x8e\ +\x29\xe2\x84\x71\xa9\xc7\x50\xe3\x6a\x82\xa5\xa1\xd4\xfd\x84\x72\ +\x46\x63\x25\xcc\x58\x71\x24\x25\x16\x54\x8e\x7d\x8d\x34\xe7\x5a\ +\x31\x7e\xd7\x6c\xe1\xea\x1f\x22\x50\xeb\x06\xae\xe4\x21\x0a\x29\ +\xc3\xb5\x69\xcf\xbb\x38\x17\x5b\x0c\x8a\x41\x19\x44\x34\x12\x92\ +\x8a\x56\x05\x57\xcc\xf3\x35\x60\xbb\x28\x73\xdd\xce\x99\xe6\xf4\ +\x85\x40\x17\x1b\x68\x98\xa2\xdf\x6d\xb9\xca\x60\xb9\x4d\xd0\x56\ +\x17\x7b\x32\x1b\x69\x44\xa9\xd6\x12\xb7\xda\x3d\x00\x95\x18\x64\ +\xa4\x51\xed\xe5\xf7\x14\x8a\x45\x8e\x20\x99\xb8\x54\xdb\x88\xd2\ +\x01\xd1\xeb\x8a\x25\x08\x74\x29\xb8\xe1\x63\x0c\x5f\x82\x28\x87\ +\x20\xc9\xd8\x58\x22\xc1\x29\x66\x8c\x8c\x7d\x2a\x11\x31\x4a\x13\ +\xd0\xe2\x7f\x13\x64\x2d\xcc\xb7\x41\xe6\x6f\x66\xcd\x60\xb8\x8c\ +\x72\x25\x8d\x33\x5c\x2a\x95\x6b\x12\x45\x65\xcf\x94\x48\x6a\x44\ +\x45\x87\xaa\x4c\x6b\xa5\xe0\x37\x47\x5a\x72\x21\xd9\x98\x48\xa4\ +\x35\x93\x44\xdf\xf5\xf4\x05\xe5\xbc\x22\x5c\x76\x0a\x47\xa7\x2f\ +\x68\x1c\x88\x20\x18\x73\x23\x7b\x2a\x63\x50\xfc\x43\x7d\x8f\x59\ +\x4f\x65\x5d\xe9\xa7\x50\x1e\x4c\x83\xbe\xf8\x91\x89\xd0\xc7\xcf\ +\x4b\x85\x3e\x1f\x5a\xf4\xff\x28\x19\xfa\xe2\xfb\xd2\xe1\xa0\x1b\ +\x5e\xf1\xd8\x41\xe7\x1e\x8c\x03\xd7\xe3\xc6\xcb\x3d\xdc\x40\x1c\ +\x17\xa0\xcb\xb1\xcf\x18\x38\xb8\x50\x9c\xdc\xbd\xd0\xc3\x86\xdc\ +\xd4\x90\xe7\x86\x54\xbf\x55\xff\xd5\xc0\x51\xb7\x45\xae\xe3\xa9\ +\x7e\xad\x6d\x19\x44\x41\x19\xb4\xcd\x50\x4d\x71\x4d\x73\xdd\x10\ +\xe5\xd1\x62\xfa\xcf\x8f\x3f\x37\x76\x12\x86\xd3\x7f\x65\xf9\x97\ +\x56\xc5\x4e\x20\x98\x67\x5b\xd8\xa9\x71\x1b\xd7\x66\x85\x53\x87\ +\x5d\x50\x3e\xc4\x6b\x68\xf2\xdd\xc3\xd1\xdf\xf7\xeb\x04\xf6\x6f\ +\x18\x3d\x61\xd7\x20\xb6\x8b\x1e\x97\xcd\xed\xf1\x61\x68\xf0\x2d\ +\x2d\x0a\xd7\xb1\x9b\x34\xf9\xa3\x8c\x93\xe4\x57\xb7\x49\xc7\x9e\ +\x4f\x8b\xc6\x65\x62\x3b\x46\x3e\x39\x9d\xbe\xb6\xc2\xce\xe5\xee\ +\x27\xf5\xed\xab\xd1\xf2\xa6\x8f\xe6\x32\xcf\xb6\x9b\x75\x16\xd9\ +\xd3\x6b\xc1\x79\x93\x9c\x04\x73\x0b\x9d\xfb\x6f\x8e\xe7\xd5\x7a\ +\xab\x94\x7a\x7c\x5b\x38\xed\x68\x93\x24\xde\x14\xcd\x45\x4f\x6e\ +\xb6\x80\x0b\x4c\xe1\x6a\xef\x6e\x2f\xeb\x8e\xbb\xf7\x8e\xdb\xf1\ +\xb8\x6a\x98\x6f\x13\x3b\xb5\x8f\x36\xcd\xa2\x08\x5c\x32\xcf\xbe\ +\x58\x57\xc3\x9d\xba\x24\x37\x3c\xbe\x14\x4c\x9b\x21\x80\x65\xf3\ +\x04\x3a\xf8\x72\xca\x6b\x5a\x14\x14\xab\x20\xcf\x83\xc3\x34\xcd\ +\x52\x5b\x53\x9b\xad\x7a\xc6\xb9\x09\xca\x95\x94\xac\x4d\xcf\x55\ +\xf9\x81\x8f\x6f\x66\x6d\x00\xae\x6a\x10\x08\xe2\x8e\xd8\x06\xac\ +\x7c\xef\xbc\xb5\x1d\xba\xb7\x19\x28\x7e\xda\x78\xe0\x56\xbf\x0a\ +\xca\x65\xfa\x7a\x2d\x28\x08\x2b\xca\x08\x13\xfc\x5b\xe8\x5c\xe2\ +\x00\x30\xfc\xee\x11\x06\x39\xcc\x3d\x34\x8c\xa1\xaa\x32\xe0\xed\ +\x84\x7b\x54\x38\x1c\x94\xa1\x63\x42\x11\x33\x12\x52\x92\xf7\xc1\ +\x73\xd9\x9e\x48\x26\xa5\xa3\x62\xad\x0d\xa7\x1e\x5c\x5b\x00\x05\ +\x73\x08\x1a\x82\x28\x48\x5e\xda\xa3\x04\x49\xce\x29\x93\x63\xed\ +\xc2\x39\x21\x82\x7a\xbf\x79\x10\xc7\xc0\xb5\x29\x26\x50\x40\x28\ +\x88\x29\x4c\x69\x58\x13\x6a\x34\x97\x4c\xa9\x19\xc3\xe6\x4a\x42\ +\xf2\x65\x1e\xe4\x52\x08\x6e\x42\x29\xa0\x61\x2a\xa1\x74\x04\x9a\ +\x40\x0c\x0b\x63\x9c\x1c\x3b\x7e\x60\x4d\x8e\x30\x83\x4c\x0c\xa5\ +\x08\xd4\x93\x42\x42\x2a\xae\xce\x09\x9d\xb4\x84\x98\x69\xe0\x4c\ +\x94\x6b\x42\x99\x02\x1a\x87\x44\xcc\xe1\xe8\x18\x0e\x2c\x88\x30\ +\x1e\x43\x4c\x61\x85\xb9\x18\x83\x82\x5d\x67\x0f\x4b\x86\x1e\x44\ +\x42\x0f\x52\x3c\x68\x1b\x6b\x0e\x79\x1d\x31\x49\x15\x67\x20\xad\ +\x24\xc7\x8a\xd3\x31\x43\x02\x4b\xb8\x12\x6c\x0e\x97\x13\x86\x41\ +\xdd\x4b\x38\x53\x4a\x78\x02\x41\xaa\x27\xca\xd5\x03\x88\x40\x27\ +\x61\x88\x07\x97\x65\x44\x43\x6d\x30\x76\xa5\x05\x86\xe8\xee\x7d\ +\xed\x97\xe6\x10\xd4\x38\xe5\x83\x11\x2f\x4d\x81\x99\xe5\x7e\xb8\ +\xcd\x1f\x83\x72\x9b\xdb\xde\x3b\x52\xf3\x1e\x04\x6e\xec\x22\x07\ +\x44\xe3\xa2\xfa\x84\x5f\x8b\xa7\x4d\xb1\xe3\x22\xd7\xac\x8a\x0b\ +\x87\xa9\x6e\x2c\xc8\x19\x2e\x9c\x6c\x3a\xdf\x96\x65\x97\xf6\xef\ +\x2c\x4e\xa7\x95\xc9\xbd\x85\x77\xba\xc0\x0d\x70\x13\x46\x25\x87\ +\x64\xa4\x10\x3f\x3e\x84\x55\xca\xd1\xe8\x78\x54\x06\xbf\x5b\x4b\ +\xe8\xfc\xbe\x70\x72\xf0\x2f\xf9\x6c\x6c\xdf\x02\x35\x41\x95\x51\ +\x0c\xcb\xbf\x00\x35\x68\x78\x8e\x28\x38\x33\xef\xa2\xd6\x41\xa8\ +\xf3\x73\x10\x2b\xff\xc7\xa2\xa5\x4e\xda\xfd\xe1\x68\x41\xe4\x93\ +\x1d\x13\xfa\xe0\x86\x10\xb9\x4e\x43\x18\x10\x79\xfc\x3b\x8c\x12\ +\x7f\x39\x4a\xce\xd3\x9f\x9f\x14\xe8\xab\x93\x02\xa1\xd0\x80\x33\ +\xf9\x56\x19\xf3\x18\xa8\x44\x1b\x80\x4e\x6f\xf7\x00\x9a\xe0\x5c\ +\xb5\xa5\x68\xfd\x62\x0f\xa1\x1d\xfa\x7e\xd3\x79\xf5\xda\x1f\x3b\ +\x75\x2c\x55\x8b\x2a\xe4\x4e\x5f\x20\xa5\x18\x38\x3b\xed\xa5\x54\ +\x08\xb9\x90\x78\xfa\x59\xb7\x29\x59\xdb\x97\xf8\x81\x1e\x4e\x42\ +\xdf\xef\xf2\x0f\x98\x97\xe0\x2e\x86\x55\x6d\x9b\x12\x5a\x11\xa5\ +\xe8\xd8\x09\x10\x0e\xa9\xae\x2a\x7c\xef\x9e\xd6\xd0\xad\x0d\xdd\ +\xf7\xd5\x59\x5a\x82\x5a\x55\xd5\x5d\xbd\x99\x46\x98\x56\xec\x5c\ +\x23\x06\x32\x13\x95\xd0\xc6\x5e\xa8\x04\xb2\xb5\xe2\x4a\x0b\xda\ +\x55\x09\xc0\x8f\x21\x67\x71\xcd\x7a\x4a\x21\x1c\x11\x09\x89\x8d\ +\x9e\x29\x80\xc0\x02\xbc\x5f\xfc\xb8\x60\x63\x04\x60\x6a\xbe\xa1\ +\x16\xf7\x12\xc4\xc0\x50\x20\x9d\x83\x06\x98\x90\x98\x52\x42\x2a\ +\xc5\x68\x03\x25\xba\xae\x1e\x8b\x60\x47\x0c\xf6\xf1\x4c\xc5\x0c\ +\xba\x8e\x21\xff\xab\xae\xe3\xd3\xd7\x39\x0f\x85\xec\xa2\x31\x35\ +\xa6\xaf\x28\x28\x78\x14\x54\x7f\xe6\xaf\xf4\x9e\xfb\xc9\xf2\xe1\ +\xe6\xde\xb5\x45\x0f\x37\xff\x01\x38\xd8\x1b\xbe\ +\x00\x00\x08\xcc\ +\x00\ +\x00\x49\x37\x78\x9c\xe5\x5c\x6d\x8f\xdb\xb8\x11\xfe\xbe\xbf\x42\ +\x75\xbe\xe4\x50\x53\xe6\x8b\xc4\x17\x67\x77\x0f\x48\x83\x3b\x1c\ +\xd0\x7e\xb9\x5e\xd1\x8f\x01\x2d\xd1\x5e\x35\xb2\x64\x48\xf2\xda\ +\xbe\x5f\xdf\xa1\x6c\xc9\x96\xed\xbc\x30\x2b\x17\x6a\xd6\x49\x90\ +\xd5\xcc\x90\x22\x9f\xe1\x3c\x33\xa4\xe4\xbd\xff\x79\xbb\x4c\xbd\ +\x67\x53\x94\x49\x9e\x3d\x8c\x88\x8f\x47\x9e\xc9\xa2\x3c\x4e\xb2\ +\xc5\xc3\xe8\x5f\x7f\xfc\x82\xe4\xc8\x2b\x2b\x9d\xc5\x3a\xcd\x33\ +\xf3\x30\xca\xf2\xd1\xcf\x8f\x77\xf7\x7f\x41\xc8\xfb\x5b\x61\x74\ +\x65\x62\x6f\x93\x54\x4f\xde\x6f\xd9\xa7\x32\xd2\x2b\xe3\xbd\x7d\ +\xaa\xaa\xd5\x74\x32\xd9\x6c\x36\x7e\x72\x10\xfa\x79\xb1\x98\xfc\ +\xe4\x21\xf4\x78\x77\x77\x5f\x3e\x2f\xee\x3c\xcf\x83\xfb\x66\xe5\ +\x34\x8e\x1e\x46\x87\x06\xab\x75\x91\xd6\x86\x71\x34\x31\xa9\x59\ +\x9a\xac\x2a\x27\xc4\x27\x93\xd1\xd1\x3c\x3a\x9a\x47\xf6\xee\xc9\ +\xb3\x89\xf2\xe5\x32\xcf\xca\xba\x65\x56\xbe\x39\x31\x2e\xe2\x79\ +\x6b\x6d\x47\xb3\x61\xb5\x11\x51\x4a\x4d\x30\x9d\x50\x8a\xc0\x02\ +\x95\xbb\xac\xd2\x5b\xd4\x6d\x0a\x63\xbc\xd6\x94\x62\x8c\x27\xa0\ +\x3b\x5a\x7e\x9b\xd5\xb4\x04\x40\x57\xf0\xaf\x35\x6f\x04\x7e\x99\ +\xaf\x8b\xc8\xcc\xa1\x9d\xf1\x33\x53\x4d\x3e\xfc\xf1\xa1\x55\x22\ +\xec\xc7\x55\x7c\xd2\x4d\x83\x67\xe7\xae\x1d\x90\x33\xbd\x34\xe5\ +\x4a\x47\xa6\x9c\x34\xf2\xba\xfd\x26\x89\xab\xa7\x87\x11\x0b\x7c\ +\xc2\xe0\x13\xd6\xc2\x27\x93\x2c\x9e\xaa\x73\x69\x12\x3f\x8c\x60\ +\xf4\x54\xc9\xfd\xf5\xc9\xe2\x20\x7b\x83\x43\xc7\xd3\x56\x83\x7d\ +\x45\x7d\xe2\x15\x24\x64\x62\x6f\xd3\x4c\x61\x1a\xe7\x91\x1d\x13\ +\x74\x69\x96\x89\x5e\x57\xf9\x12\xbc\x16\x45\xa9\x2e\xcb\x64\x9e\ +\x44\x70\x91\x67\xab\x74\xbd\x48\xb2\x8f\xb5\xf0\x63\x99\x2c\x32\ +\x5d\xad\x0b\xf3\xb1\xca\xf3\xd4\x6f\x70\x6c\x6f\x6a\xb6\xab\xbc\ +\xa8\xd0\x36\x5e\x01\x9a\x5c\x5c\x55\xee\x4e\x95\xcf\x89\xd9\xbc\ +\xcf\xb7\x30\x4a\x0f\x7b\x8c\xc2\xdf\xd1\x23\xc8\xef\x63\x33\x2f\ +\xad\x7e\x3f\x63\x7b\x05\x53\x16\xb5\x0e\xb4\xf3\x24\xad\x4c\xb1\ +\xd7\x9f\xdc\x20\xca\xd3\xd4\x44\x80\x99\x4e\x37\x7a\x57\x8e\x1a\ +\x83\xb2\xda\xa5\x30\x49\x50\xe7\x05\x4a\x32\x68\xba\xca\xd3\x7a\ +\x72\x68\xdf\x13\xac\x81\xdf\x7f\x7d\xdf\xda\xdb\x5b\xee\x15\x2a\ +\xc4\xad\x14\x06\x09\x3e\xc7\x8c\xf2\x40\x4a\x22\x5b\xf9\xc1\x7b\ +\x10\x9d\x3c\xa4\x4a\xf0\x56\xb1\xdb\x37\x08\x30\x21\x42\x52\xda\ +\xca\x1b\xcf\x42\x0b\x89\x29\x0b\xf9\x61\x5a\x76\x62\xe6\x57\xbd\ +\x06\xf0\x75\xf6\x3e\x5d\xb7\x13\xfc\x86\x29\xda\x49\xc6\x1f\xcc\ +\x73\x52\x4f\xab\xee\x1b\x53\x15\x84\xe1\x89\x45\x3d\xad\xce\x0d\ +\x54\x48\x47\xde\xe4\x00\xea\x64\x3f\xe5\x1a\xfe\x89\x45\xbc\xfe\ +\xa9\x5d\x2b\x76\xa1\xc4\xd6\x5d\x47\xb7\xcc\x74\x69\x0e\xfd\xaf\ +\xf4\xc2\xd4\xf8\x3e\x8c\xde\xcc\xeb\xcf\x41\x31\xcb\x8b\xd8\x14\ +\x8d\x8a\xd7\x9f\x8e\x2a\x87\x80\x48\xaa\xdd\x9e\xde\xee\xba\xb3\ +\xb5\xbd\xb6\x7a\x7c\x5d\x5f\x3e\xe9\x38\xdf\x3c\x8c\xe8\xb9\xf2\ +\xcf\x3c\x5f\x42\xf8\xf8\x2a\x54\x98\x62\x75\xae\x8e\xac\x3f\xa5\ +\xf2\x03\xc1\xb0\x14\x17\x5a\xb8\x21\x15\x7e\xc8\xc3\xe0\x42\xb5\ +\x2e\x0a\xa0\x3f\x94\xea\x9d\x81\x39\xd5\xff\x91\x83\x51\xf9\x94\ +\x6f\x16\x85\xc5\xa6\x2a\xd6\xe6\xbc\xa5\xd5\xa0\xd9\xcc\x2e\xf7\ +\x6b\x6a\x88\xc6\xb5\x25\x56\xb4\xce\x92\x0a\xc8\x6b\xb5\x3d\xed\ +\x75\x9d\xc4\xa6\xbc\xde\x70\x93\x64\x00\x01\x6a\x16\x22\x6b\x11\ +\x3e\xb7\x68\x56\x9e\xc0\xf2\x33\x16\x36\x12\x3f\xa3\xda\x7d\x5e\ +\xb5\xd4\xdb\x64\x99\xfc\x69\x60\xde\xe4\xdc\xa4\xcc\xf4\x0a\x2d\ +\xd2\x7c\xa6\xd3\xcf\xa0\x62\x67\x76\x0a\xcb\x61\x3d\x76\x60\x6b\ +\x56\x71\xb5\xb3\x04\xbb\xdd\x59\x59\x27\x5e\xad\x80\x09\x7e\x5c\ +\xef\x79\x91\x00\x6f\x9d\xcc\xa7\x11\xed\x4e\x45\x96\x8e\x21\x9b\ +\x6e\x8f\x03\x6f\x65\x76\x49\x1e\xa3\xa3\x8d\x83\x7a\xb8\x8d\xe9\ +\x2a\x2f\x93\x7d\xc0\x21\x8e\xc7\x9d\x3b\x81\x23\x9b\x58\x3c\x51\ +\xd4\x43\xb5\x3d\xa8\xe0\x44\xd8\xcc\x34\xcd\xa3\x4f\x16\xc4\xb9\ +\x4e\x21\xb2\xf6\xf7\xbe\x9f\x5c\x86\x60\x2d\x5f\x9a\x4a\xc7\xba\ +\xd2\xc7\x78\x6c\x24\x54\x29\xdc\xa0\x08\x59\x74\xfa\xfb\x87\x5f\ +\x5a\x86\x89\xa2\xe9\xbf\xf3\xe2\xd3\x91\x15\xac\x81\x9e\xe5\x6b\ +\x58\x16\x2d\x0f\x59\x02\x8e\xa6\x90\xf7\x20\x1f\x3c\x26\x4b\x88\ +\x32\x9b\x32\xff\x0a\x79\x0e\x98\xa1\x55\x74\x8c\xad\x63\x8e\x9d\ +\xee\xbb\x2d\xcc\x3e\x81\x5e\xad\x22\xe2\x68\x99\xd8\x46\x93\x7f\ +\x56\x49\x9a\xfe\x66\x6f\xd2\xa2\xdd\x76\x9a\x54\xa9\x39\x0a\xef\ +\x27\x87\xd1\x37\x8c\x75\x32\xb9\xfb\x49\x33\xfb\xfa\x6a\x71\x44\ +\xa5\x13\xa0\x47\xa8\xf5\xcc\xc0\x82\xfc\xbb\x55\x7a\x17\xda\x45\ +\x91\xaf\x57\xcb\x3c\x36\x87\xe6\x2d\x9a\xc0\xbd\x67\x59\x05\x58\ +\x33\x9d\xbe\xc1\x38\x8a\xe6\xf3\x77\xf6\x02\x1d\x18\x6b\x4a\xf6\ +\x97\xc5\x3a\x85\xdc\xf7\x6c\xb2\x3c\x8e\xdf\x95\x55\x91\x7f\x32\ +\xd3\x03\x47\x1e\x2e\xf7\x91\x3b\xc5\xcd\x25\x00\x63\x8a\x14\x22\ +\xaa\x9a\x06\x8d\x2c\xd6\x40\x74\x45\xa1\x77\xd3\x0c\x4a\xbd\x46\ +\xda\xde\xaa\xb3\xc0\xec\x28\x43\xc9\x54\x2b\x3c\x30\x43\xd0\x0a\ +\x1a\x22\x38\x4a\xf6\xd9\x8d\xd0\x10\xea\xa3\x63\x6f\x36\x06\x8e\ +\xdd\x14\x36\x4c\x7c\x56\x7f\x8e\x2d\x8b\xdd\xa9\xb4\x0d\x98\x2f\ +\x40\xa5\x75\x1c\x0c\x0c\x2a\x44\x1c\xc1\x62\xbe\x14\xe1\x8d\x71\ +\x0a\x20\x7f\x0f\x0e\x27\x84\x1d\x91\x22\xe4\xe6\x50\xcd\xe7\x54\ +\x53\x3d\x38\xa8\x98\x2b\x52\x9d\xda\x31\xe8\x80\x84\x7f\x34\x70\ +\x90\x44\xa1\x23\x3e\x34\x78\x4d\xf8\x60\xe4\xba\x7e\xa8\xbc\x05\ +\x3e\x03\xe5\x6b\x14\x38\xa2\x73\xc9\xd8\x61\xcf\x34\x84\x31\xe7\ +\x12\x0f\x0f\x29\xe9\x9c\xdd\xc4\xff\x00\xab\x81\x66\x37\x24\x1c\ +\xb1\xba\x92\xdf\xfa\x06\x6b\x3e\x57\x6a\x80\x60\x31\xc4\x5d\xb1\ +\xea\x64\x38\xdc\x13\x43\x0d\x14\x1e\x24\x10\x75\xc4\x87\xe2\xd7\ +\x84\x0f\x54\x00\xc8\x75\x93\xd2\xad\x01\xfa\x42\x68\x90\xdb\x37\ +\x74\x71\xc6\xf8\xd5\x0c\xc7\x69\xa0\x94\xea\x94\x01\x54\xf4\x4c\ +\x46\x43\xad\x07\xa4\x2b\x5c\x02\xe0\x0a\x6f\x0c\xd5\x50\x93\x9c\ +\x33\x71\x5f\x24\xb9\xde\xc1\x92\xd8\x7e\x06\x07\x16\x73\x26\xf1\ +\x6e\x92\x23\xb4\x27\x8e\x1a\x28\x3e\x90\xe5\x9c\xf7\x29\xf8\x55\ +\x01\x64\xd3\x9c\x2b\x37\x75\xd3\xdc\x0f\x0f\x11\xec\x75\x9d\xeb\ +\xee\xee\x6e\xb7\x37\x88\x86\x59\x0a\x60\xe7\xed\xee\xf5\xd3\x5c\ +\xca\x3a\x30\xfd\xb8\xd5\x40\xe0\x4c\xdb\x17\xe7\x03\x37\xc0\x6a\ +\xb0\xe7\x03\xce\x67\x71\x17\x27\x04\x37\x40\x6b\xa8\xc5\x93\x70\ +\xde\xb5\x5c\x29\x9f\xfa\x86\x2b\x0e\x06\x49\xed\x0c\xf1\x17\x16\ +\x50\xb2\x03\xd4\xf7\x13\xfb\x40\x01\xb2\xa7\x04\xee\xb9\x0f\xbf\ +\x26\x84\x6c\x75\x40\x9d\xcf\x30\xbb\xf5\x41\x5f\x18\x59\x06\x1f\ +\x22\x46\xd2\x79\x0d\x09\xbf\xbb\xfb\x0d\x7a\x26\x24\x8c\x19\x1b\ +\x60\xb6\x83\xa5\xe4\x7c\xc2\xdb\xe1\x23\xda\xdf\xa1\x53\x10\xe8\ +\x01\x3e\x78\x12\xee\x0f\xe6\xf0\x4d\x00\x92\x02\x6a\x4b\x33\x3c\ +\x80\xea\xdd\xca\xcb\x1e\xce\xf5\x86\x91\xad\x91\x86\xc9\x47\x50\ +\x53\xba\x17\x95\x5d\x4a\xc2\x3d\x53\xd2\x50\xc1\xb2\x25\xa5\xeb\ +\xfe\x0e\x4a\xca\xdb\x82\x35\x58\xfe\xe6\xce\xfc\x74\x76\x22\xc7\ +\x7b\x8a\x3d\xaa\xc5\x7c\x78\x47\x05\x87\xe7\x2a\xee\xa7\x72\xc1\ +\x4d\x40\x1a\x32\x89\x53\xe7\x97\x99\xce\x0e\x9d\xfa\x02\x69\x16\ +\xc5\x2c\x1c\xe2\x4a\x72\x7f\x75\x80\x9d\xd1\xd2\xd9\xc1\xdc\xcb\ +\x79\x69\xb0\x58\x41\xcc\xbd\xb4\x06\x7f\x35\x60\x61\x60\xf1\xef\ +\x78\x06\x75\x63\xb4\x06\x9b\xf2\xe8\x0b\x53\x1e\xed\x6b\xfb\x3b\ +\xdc\x3d\x0b\x73\xae\xa0\xce\x76\x2d\x7d\x41\x34\xe4\xaa\xe0\xa5\ +\xef\x5c\xf6\x06\x92\x94\x5a\x0f\xaf\x12\xc7\x28\x70\xce\x77\x08\ +\xfb\xc2\xbe\x74\x71\xf6\xcd\x2f\xd9\x33\x35\x0d\x13\xb0\xfa\x39\ +\x8b\x73\xd6\x3b\x2f\x11\x5e\x0b\x56\xf5\x93\x03\xe7\xba\xfc\x22\ +\xed\xf5\x0d\xd7\x60\xb3\x1e\xff\x8e\x02\xfd\x2c\xef\xf5\xf7\x12\ +\xf4\x50\xf3\x1e\x84\xdf\x0b\x1f\x1f\xf4\x06\xd2\x90\x33\x9f\x25\ +\x77\xe7\xcd\x5e\x70\x13\x98\x86\xbd\x23\x26\x2f\x7c\xd0\xd2\x03\ +\x4c\xcd\x48\xb1\xaf\x44\xfd\xc2\x0a\x7d\xd7\xbc\xc8\x3a\xbf\x58\ +\x60\xd8\x0f\x09\xa7\x1c\x13\xfa\x45\xc0\x88\x4f\x48\x18\xe0\x80\ +\x93\x46\x9e\x26\x99\x89\xf4\x6a\x5a\xe4\xeb\x2c\x3e\x15\xfe\x27\ +\x4f\xb2\x69\x8d\xeb\x15\x90\xa9\x1f\x7e\x23\xcc\x76\x98\xd0\x6c\ +\xba\x2e\xd2\xb7\x6f\xe6\xcd\xd7\xc9\x7f\xba\x40\x5f\xca\x8b\xc2\ +\x55\x30\x5f\xc0\x94\xc4\x25\xf0\xa1\xf2\x6d\xad\xa1\xf8\xa9\x03\ +\x10\xe9\xe4\x07\x24\x0e\x36\xc7\xed\x51\x55\xe8\xac\xb4\x5f\xdb\ +\x7c\x18\x2d\x75\x55\x24\xdb\xb7\xd8\xe7\x42\x12\xc9\x09\x1d\x63\ +\xfb\xc7\xdf\x7f\x35\x9b\x87\x63\x14\xf8\x92\x0a\x8a\x25\x1d\x23\ +\xba\x17\x87\xfc\xa7\xa3\xc3\x56\xba\x7a\xba\xb6\xae\x4f\x40\xb0\ +\x7c\x29\x0d\xc6\x67\x2e\x58\x6d\xcf\xb1\x9f\xad\xab\xea\xcb\xd0\ +\x5f\xae\x5a\x80\xed\x1f\x1e\x62\xbe\x92\x82\x0b\x1a\x8c\x49\xe8\ +\x0b\x26\x03\x26\x3d\x64\x17\x0c\x57\x81\x82\xa1\x93\xc0\x17\x82\ +\x50\x2f\xf4\x09\x56\x0a\xe3\x70\xcc\x7d\xc9\x04\x96\xc4\x23\xf6\ +\xcd\x18\x1c\x62\x36\x0e\x7d\xa9\x08\x0f\x02\xe1\x41\x27\x98\x52\ +\x62\x9b\xa9\x20\xe4\x84\x79\x14\x8f\x89\xf0\x52\x8f\xfb\x2a\x0c\ +\x95\x1c\x07\x3e\x16\x1c\x73\xe9\x01\xba\x9c\x4b\xca\xc6\xcc\xc7\ +\x52\x60\xaa\x3a\x1e\xb5\xe8\x04\x98\x1d\x19\xf9\xe4\xab\xfb\x19\ +\x4c\xba\xca\x0b\x14\xad\x8b\xe7\xfa\xb7\x28\xd8\xf0\x78\x39\xae\ +\x30\xe4\x3a\x4a\x2e\x56\xf6\xd7\xd1\x75\x67\x0f\x7c\x88\x60\xc6\ +\xfe\xcf\x1c\x72\x52\x77\x7d\xcd\x25\x17\x76\x6d\xf8\xa0\xc8\xd8\ +\x5f\x1f\x81\xea\xba\x2b\x0c\x58\x48\x82\x6f\xb0\xde\xff\x22\x08\ +\xc5\x94\x92\x21\x17\x8e\x1e\x9f\xcf\x31\x23\xb3\x61\x7a\x1c\x13\ +\x2c\x28\xe5\x63\x4a\xc1\x05\x82\x32\xe1\x61\xf8\xb9\xf6\x11\x96\ +\x5c\x86\x38\x18\x5b\x32\x62\x01\xa1\x04\x1c\x0f\xe6\x1c\x33\x3e\ +\xb6\x60\x04\x80\x1e\xf7\xec\x44\x48\xa8\xf8\x58\xf9\x38\x64\x4a\ +\x10\x2b\x11\x42\x2a\x35\xa6\x20\x81\x35\x14\x34\xfe\x26\xee\x0e\ +\x3f\x39\x61\xea\xd5\xe5\x57\x56\xd2\x17\x7d\xae\x88\xbb\xcf\x31\ +\xd6\x37\x65\xcf\x81\xbb\x8e\x38\xf2\xe7\xfd\x64\xf1\x78\x77\x6f\ +\x7f\x4b\xc1\xe3\xdd\x7f\x01\x5f\xd9\x98\x1e\ +\x00\x00\x08\xcc\ +\x00\ +\x00\x49\x37\x78\x9c\xe5\x5c\x6d\x8f\xdb\xb8\x11\xfe\xbe\xbf\x42\ +\x75\xbe\xe4\x50\x53\xe6\x8b\xc4\x17\x67\x77\x0f\x48\x83\x3b\x1c\ +\xd0\x7e\xb9\x5e\xd1\x8f\x01\x2d\xd1\x5e\x35\xb2\x64\x48\xf2\xda\ +\xbe\x5f\xdf\xa1\x6c\xc9\x96\xed\xbc\x30\x2b\x17\x6a\xd6\x49\x90\ +\xd5\xcc\x90\x22\x9f\xe1\x3c\x33\xa4\xe4\xbd\xff\x79\xbb\x4c\xbd\ +\x67\x53\x94\x49\x9e\x3d\x8c\x88\x8f\x47\x9e\xc9\xa2\x3c\x4e\xb2\ +\xc5\xc3\xe8\x5f\x7f\xfc\x82\xe4\xc8\x2b\x2b\x9d\xc5\x3a\xcd\x33\ +\xf3\x30\xca\xf2\xd1\xcf\x8f\x77\xf7\x7f\x41\xc8\xfb\x5b\x61\x74\ +\x65\x62\x6f\x93\x54\x4f\xde\x6f\xd9\xa7\x32\xd2\x2b\xe3\xbd\x7d\ +\xaa\xaa\xd5\x74\x32\xd9\x6c\x36\x7e\x72\x10\xfa\x79\xb1\x98\xfc\ +\xe4\x21\xf4\x78\x77\x77\x5f\x3e\x2f\xee\x3c\xcf\x83\xfb\x66\xe5\ +\x34\x8e\x1e\x46\x87\x06\xab\x75\x91\xd6\x86\x71\x34\x31\xa9\x59\ +\x9a\xac\x2a\x27\xc4\x27\x93\xd1\xd1\x3c\x3a\x9a\x47\xf6\xee\xc9\ +\xb3\x89\xf2\xe5\x32\xcf\xca\xba\x65\x56\xbe\x39\x31\x2e\xe2\x79\ +\x6b\x6d\x47\xb3\x61\xb5\x11\x51\x4a\x4d\x30\x9d\x50\x8a\xc0\x02\ +\x95\xbb\xac\xd2\x5b\xd4\x6d\x0a\x63\xbc\xd6\x94\x62\x8c\x27\xa0\ +\x3b\x5a\x7e\x9b\xd5\xb4\x04\x40\x57\xf0\xaf\x35\x6f\x04\x7e\x99\ +\xaf\x8b\xc8\xcc\xa1\x9d\xf1\x33\x53\x4d\x3e\xfc\xf1\xa1\x55\x22\ +\xec\xc7\x55\x7c\xd2\x4d\x83\x67\xe7\xae\x1d\x90\x33\xbd\x34\xe5\ +\x4a\x47\xa6\x9c\x34\xf2\xba\xfd\x26\x89\xab\xa7\x87\x11\x0b\x7c\ +\xc2\xe0\x13\xd6\xc2\x27\x93\x2c\x9e\xaa\x73\x69\x12\x3f\x8c\x60\ +\xf4\x54\xc9\xfd\xf5\xc9\xe2\x20\x7b\x83\x43\xc7\xd3\x56\x83\x7d\ +\x45\x7d\xe2\x15\x24\x64\x62\x6f\xd3\x4c\x61\x1a\xe7\x91\x1d\x13\ +\x74\x69\x96\x89\x5e\x57\xf9\x12\xbc\x16\x45\xa9\x2e\xcb\x64\x9e\ +\x44\x70\x91\x67\xab\x74\xbd\x48\xb2\x8f\xb5\xf0\x63\x99\x2c\x32\ +\x5d\xad\x0b\xf3\xb1\xca\xf3\xd4\x6f\x70\x6c\x6f\x6a\xb6\xab\xbc\ +\xa8\xd0\x36\x5e\x01\x9a\x5c\x5c\x55\xee\x4e\x95\xcf\x89\xd9\xbc\ +\xcf\xb7\x30\x4a\x0f\x7b\x8c\xc2\xdf\xd1\x23\xc8\xef\x63\x33\x2f\ +\xad\x7e\x3f\x63\x7b\x05\x53\x16\xb5\x0e\xb4\xf3\x24\xad\x4c\xb1\ +\xd7\x9f\xdc\x20\xca\xd3\xd4\x44\x80\x99\x4e\x37\x7a\x57\x8e\x1a\ +\x83\xb2\xda\xa5\x30\x49\x50\xe7\x05\x4a\x32\x68\xba\xca\xd3\x7a\ +\x72\x68\xdf\x13\xac\x81\xdf\x7f\x7d\xdf\xda\xdb\x5b\xee\x15\x2a\ +\xc4\xad\x14\x06\x09\x3e\xc7\x8c\xf2\x40\x4a\x22\x5b\xf9\xc1\x7b\ +\x10\x9d\x3c\xa4\x4a\xf0\x56\xb1\xdb\x37\x08\x30\x21\x42\x52\xda\ +\xca\x1b\xcf\x42\x0b\x89\x29\x0b\xf9\x61\x5a\x76\x62\xe6\x57\xbd\ +\x06\xf0\x75\xf6\x3e\x5d\xb7\x13\xfc\x86\x29\xda\x49\xc6\x1f\xcc\ +\x73\x52\x4f\xab\xee\x1b\x53\x15\x84\xe1\x89\x45\x3d\xad\xce\x0d\ +\x54\x48\x47\xde\xe4\x00\xea\x64\x3f\xe5\x1a\xfe\x89\x45\xbc\xfe\ +\xa9\x5d\x2b\x76\xa1\xc4\xd6\x5d\x47\xb7\xcc\x74\x69\x0e\xfd\xaf\ +\xf4\xc2\xd4\xf8\x3e\x8c\xde\xcc\xeb\xcf\x41\x31\xcb\x8b\xd8\x14\ +\x8d\x8a\xd7\x9f\x8e\x2a\x87\x80\x48\xaa\xdd\x9e\xde\xee\xba\xb3\ +\xb5\xbd\xb6\x7a\x7c\x5d\x5f\x3e\xe9\x38\xdf\x3c\x8c\xe8\xb9\xf2\ +\xcf\x3c\x5f\x42\xf8\xf8\x2a\x54\x98\x62\x75\xae\x8e\xac\x3f\xa5\ +\xf2\x03\xc1\xb0\x14\x17\x5a\xb8\x21\x15\x7e\xc8\xc3\xe0\x42\xb5\ +\x2e\x0a\xa0\x3f\x94\xea\x9d\x81\x39\xd5\xff\x91\x83\x51\xf9\x94\ +\x6f\x16\x85\xc5\xa6\x2a\xd6\xe6\xbc\xa5\xd5\xa0\xd9\xcc\x2e\xf7\ +\x6b\x6a\x88\xc6\xb5\x25\x56\xb4\xce\x92\x0a\xc8\x6b\xb5\x3d\xed\ +\x75\x9d\xc4\xa6\xbc\xde\x70\x93\x64\x00\x01\x6a\x16\x22\x6b\x11\ +\x3e\xb7\x68\x56\x9e\xc0\xf2\x33\x16\x36\x12\x3f\xa3\xda\x7d\x5e\ +\xb5\xd4\xdb\x64\x99\xfc\x69\x60\xde\xe4\xdc\xa4\xcc\xf4\x0a\x2d\ +\xd2\x7c\xa6\xd3\xcf\xa0\x62\x67\x76\x0a\xcb\x61\x3d\x76\x60\x6b\ +\x56\x71\xb5\xb3\x04\xbb\xdd\x59\x59\x27\x5e\xad\x80\x09\x7e\x5c\ +\xef\x79\x91\x00\x6f\x9d\xcc\xa7\x11\xed\x4e\x45\x96\x8e\x21\x9b\ +\x6e\x8f\x03\x6f\x65\x76\x49\x1e\xa3\xa3\x8d\x83\x7a\xb8\x8d\xe9\ +\x2a\x2f\x93\x7d\xc0\x21\x8e\xc7\x9d\x3b\x81\x23\x9b\x58\x3c\x51\ +\xd4\x43\xb5\x3d\xa8\xe0\x44\xd8\xcc\x34\xcd\xa3\x4f\x16\xc4\xb9\ +\x4e\x21\xb2\xf6\xf7\xbe\x9f\x5c\x86\x60\x2d\x5f\x9a\x4a\xc7\xba\ +\xd2\xc7\x78\x6c\x24\x54\x29\xdc\xa0\x08\x59\x74\xfa\xfb\x87\x5f\ +\x5a\x86\x89\xa2\xe9\xbf\xf3\xe2\xd3\x91\x15\xac\x81\x9e\xe5\x6b\ +\x58\x16\x2d\x0f\x59\x02\x8e\xa6\x90\xf7\x20\x1f\x3c\x26\x4b\x88\ +\x32\x9b\x32\xff\x0a\x79\x0e\x98\xa1\x55\x74\x8c\xad\x63\x8e\x9d\ +\xee\xbb\x2d\xcc\x3e\x81\x5e\xad\x22\xe2\x68\x99\xd8\x46\x93\x7f\ +\x56\x49\x9a\xfe\x66\x6f\xd2\xa2\xdd\x76\x9a\x54\xa9\x39\x0a\xef\ +\x27\x87\xd1\x37\x8c\x75\x32\xb9\xfb\x49\x33\xfb\xfa\x6a\x71\x44\ +\xa5\x13\xa0\x47\xa8\xf5\xcc\xc0\x82\xfc\xbb\x55\x7a\x17\xda\x45\ +\x91\xaf\x57\xcb\x3c\x36\x87\xe6\x2d\x9a\xc0\xbd\x67\x59\x05\x58\ +\x33\x9d\xbe\xc1\x38\x8a\xe6\xf3\x77\xf6\x02\x1d\x18\x6b\x4a\xf6\ +\x97\xc5\x3a\x85\xdc\xf7\x6c\xb2\x3c\x8e\xdf\x95\x55\x91\x7f\x32\ +\xd3\x03\x47\x1e\x2e\xf7\x91\x3b\xc5\xcd\x25\x00\x63\x8a\x14\x22\ +\xaa\x9a\x06\x8d\x2c\xd6\x40\x74\x45\xa1\x77\xd3\x0c\x4a\xbd\x46\ +\xda\xde\xaa\xb3\xc0\xec\x28\x43\xc9\x54\x2b\x3c\x30\x43\xd0\x0a\ +\x1a\x22\x38\x4a\xf6\xd9\x8d\xd0\x10\xea\xa3\x63\x6f\x36\x06\x8e\ +\xdd\x14\x36\x4c\x7c\x56\x7f\x8e\x2d\x8b\xdd\xa9\xb4\x0d\x98\x2f\ +\x40\xa5\x75\x1c\x0c\x0c\x2a\x44\x1c\xc1\x62\xbe\x14\xe1\x8d\x71\ +\x0a\x20\x7f\x0f\x0e\x27\x84\x1d\x91\x22\xe4\xe6\x50\xcd\xe7\x54\ +\x53\x3d\x38\xa8\x98\x2b\x52\x9d\xda\x31\xe8\x80\x84\x7f\x34\x70\ +\x90\x44\xa1\x23\x3e\x34\x78\x4d\xf8\x60\xe4\xba\x7e\xa8\xbc\x05\ +\x3e\x03\xe5\x6b\x14\x38\xa2\x73\xc9\xd8\x61\xcf\x34\x84\x31\xe7\ +\x12\x0f\x0f\x29\xe9\x9c\xdd\xc4\xff\x00\xab\x81\x66\x37\x24\x1c\ +\xb1\xba\x92\xdf\xfa\x06\x6b\x3e\x57\x6a\x80\x60\x31\xc4\x5d\xb1\ +\xea\x64\x38\xdc\x13\x43\x0d\x14\x1e\x24\x10\x75\xc4\x87\xe2\xd7\ +\x84\x0f\x54\x00\xc8\x75\x93\xd2\xad\x01\xfa\x42\x68\x90\xdb\x37\ +\x74\x71\xc6\xf8\xd5\x0c\xc7\x69\xa0\x94\xea\x94\x01\x54\xf4\x4c\ +\x46\x43\xad\x07\xa4\x2b\x5c\x02\xe0\x0a\x6f\x0c\xd5\x50\x93\x9c\ +\x33\x71\x5f\x24\xb9\xde\xc1\x92\xd8\x7e\x06\x07\x16\x73\x26\xf1\ +\x6e\x92\x23\xb4\x27\x8e\x1a\x28\x3e\x90\xe5\x9c\xf7\x29\xf8\x55\ +\x01\x64\xd3\x9c\x2b\x37\x75\xd3\xdc\x0f\x0f\x11\xec\x75\x9d\xeb\ +\xee\xee\x6e\xb7\x37\x88\x86\x59\x0a\x60\xe7\xed\xee\xf5\xd3\x5c\ +\xca\x3a\x30\xfd\xb8\xd5\x40\xe0\x4c\xdb\x17\xe7\x03\x37\xc0\x6a\ +\xb0\xe7\x03\xce\x67\x71\x17\x27\x04\x37\x40\x6b\xa8\xc5\x93\x70\ +\xde\xb5\x5c\x29\x9f\xfa\x86\x2b\x0e\x06\x49\xed\x0c\xf1\x17\x16\ +\x50\xb2\x03\xd4\xf7\x13\xfb\x40\x01\xb2\xa7\x04\xee\xb9\x0f\xbf\ +\x26\x84\x6c\x75\x40\x9d\xcf\x30\xbb\xf5\x41\x5f\x18\x59\x06\x1f\ +\x22\x46\xd2\x79\x0d\x09\xbf\xbb\xfb\x0d\x7a\x26\x24\x8c\x19\x1b\ +\x60\xb6\x83\xa5\xe4\x7c\xc2\xdb\xe1\x23\xda\xdf\xa1\x53\x10\xe8\ +\x01\x3e\x78\x12\xee\x0f\xe6\xf0\x4d\x00\x92\x02\x6a\x4b\x33\x3c\ +\x80\xea\xdd\xca\xcb\x1e\xce\xf5\x86\x91\xad\x91\x86\xc9\x47\x50\ +\x53\xba\x17\x95\x5d\x4a\xc2\x3d\x53\xd2\x50\xc1\xb2\x25\xa5\xeb\ +\xfe\x0e\x4a\xca\xdb\x82\x35\x58\xfe\xe6\xce\xfc\x74\x76\x22\xc7\ +\x7b\x8a\x3d\xaa\xc5\x7c\x78\x47\x05\x87\xe7\x2a\xee\xa7\x72\xc1\ +\x4d\x40\x1a\x32\x89\x53\xe7\x97\x99\xce\x0e\x9d\xfa\x02\x69\x16\ +\xc5\x2c\x1c\xe2\x4a\x72\x7f\x75\x80\x9d\xd1\xd2\xd9\xc1\xdc\xcb\ +\x79\x69\xb0\x58\x41\xcc\xbd\xb4\x06\x7f\x35\x60\x61\x60\xf1\xef\ +\x78\x06\x75\x63\xb4\x06\x9b\xf2\xe8\x0b\x53\x1e\xed\x6b\xfb\x3b\ +\xdc\x3d\x0b\x73\xae\xa0\xce\x76\x2d\x7d\x41\x34\xe4\xaa\xe0\xa5\ +\xef\x5c\xf6\x06\x92\x94\x5a\x0f\xaf\x12\xc7\x28\x70\xce\x77\x08\ +\xfb\xc2\xbe\x74\x71\xf6\xcd\x2f\xd9\x33\x35\x0d\x13\xb0\xfa\x39\ +\x8b\x73\xd6\x3b\x2f\x11\x5e\x0b\x56\xf5\x93\x03\xe7\xba\xfc\x22\ +\xed\xf5\x0d\xd7\x60\xb3\x1e\xff\x8e\x02\xfd\x2c\xef\xf5\xf7\x12\ +\xf4\x50\xf3\x1e\x84\xdf\x0b\x1f\x1f\xf4\x06\xd2\x90\x33\x9f\x25\ +\x77\xe7\xcd\x5e\x70\x13\x98\x86\xbd\x23\x26\x2f\x7c\xd0\xd2\x03\ +\x4c\xcd\x48\xb1\xaf\x44\xfd\xc2\x0a\x7d\xd7\xbc\xc8\x3a\xbf\x58\ +\x60\xd8\x0f\x09\xa7\x1c\x13\xfa\x45\xc0\x88\x4f\x48\x18\xe0\x80\ +\x93\x46\x9e\x26\x99\x89\xf4\x6a\x5a\xe4\xeb\x2c\x3e\x15\xfe\x27\ +\x4f\xb2\x69\x8d\xeb\x15\x90\xa9\x1f\x7e\x23\xcc\x76\x98\xd0\x6c\ +\xba\x2e\xd2\xb7\x6f\xe6\xcd\xd7\xc9\x7f\xba\x40\x5f\xca\x8b\xc2\ +\x55\x30\x5f\xc0\x94\xc4\x25\xf0\xa1\xf2\x6d\xad\xa1\xf8\xa9\x03\ +\x10\xe9\xe4\x07\x24\x0e\x36\xc7\xed\x51\x55\xe8\xac\xb4\x5f\xdb\ +\x7c\x18\x2d\x75\x55\x24\xdb\xb7\xd8\xe7\x42\x12\xc9\x09\x1d\x63\ +\xfb\xc7\xdf\x7f\x35\x9b\x87\x63\x14\xf8\x92\x0a\x8a\x25\x1d\x23\ +\xba\x17\x87\xfc\xa7\xa3\xc3\x56\xba\x7a\xba\xb6\xae\x4f\x40\xb0\ +\x7c\x29\x0d\xc6\x67\x2e\x58\x6d\xcf\xb1\x9f\xad\xab\xea\xcb\xd0\ +\x5f\xae\x5a\x80\xed\x1f\x1e\x62\xbe\x92\x82\x0b\x1a\x8c\x49\xe8\ +\x0b\x26\x03\x26\x3d\x64\x17\x0c\x57\x81\x82\xa1\x93\xc0\x17\x82\ +\x50\x2f\xf4\x09\x56\x0a\xe3\x70\xcc\x7d\xc9\x04\x96\xc4\x23\xf6\ +\xcd\x18\x1c\x62\x36\x0e\x7d\xa9\x08\x0f\x02\xe1\x41\x27\x98\x52\ +\x62\x9b\xa9\x20\xe4\x84\x79\x14\x8f\x89\xf0\x52\x8f\xfb\x2a\x0c\ +\x95\x1c\x07\x3e\x16\x1c\x73\xe9\x01\xba\x9c\x4b\xca\xc6\xcc\xc7\ +\x52\x60\xaa\x3a\x1e\xb5\xe8\x04\x98\x1d\x19\xf9\xe4\xab\xfb\x19\ +\x4c\xba\xca\x0b\x14\xad\x8b\xe7\xfa\xb7\x28\xd8\xf0\x78\x39\xae\ +\x30\xe4\x3a\x4a\x2e\x56\xf6\xd7\xd1\x75\x67\x0f\x7c\x88\x60\xc6\ +\xfe\xcf\x1c\x72\x52\x77\x7d\xcd\x25\x17\x76\x6d\xf8\xa0\xc8\xd8\ +\x5f\x1f\x81\xea\xba\x2b\x0c\x58\x48\x82\x6f\xb0\xde\xff\x22\x08\ +\xc5\x94\x92\x21\x17\x8e\x1e\x9f\xcf\x31\x23\xb3\x61\x7a\x1c\x13\ +\x2c\x28\xe5\x63\x4a\xc1\x05\x82\x32\xe1\x61\xf8\xb9\xf6\x11\x96\ +\x5c\x86\x38\x18\x5b\x32\x62\x01\xa1\x04\x1c\x0f\xe6\x1c\x33\x3e\ +\xb6\x60\x04\x80\x1e\xf7\xec\x44\x48\xa8\xf8\x58\xf9\x38\x64\x4a\ +\x10\x2b\x11\x42\x2a\x35\xa6\x20\x81\x35\x14\x34\xfe\x26\xee\x0e\ +\x3f\x39\x61\xea\xd5\xe5\x57\x56\xd2\x17\x7d\xae\x88\xbb\xcf\x31\ +\xd6\x37\x65\xcf\x81\xbb\x8e\x38\xf2\xe7\xfd\x64\xf1\x78\x77\x6f\ +\x7f\x4b\xc1\xe3\xdd\x7f\x01\x5f\xd9\x98\x1e\ +\x00\x00\x0a\xa6\ +\x00\ +\x00\x2c\xbd\x78\x9c\xed\x5a\xdb\x6e\xe3\x46\x12\x7d\xf7\x57\x70\ +\xe5\x97\x19\xac\x48\xf5\xfd\xa2\xb1\x9d\x87\x0d\x12\x04\x48\xb0\ +\xc0\x66\x06\xfb\x18\x50\x64\x4b\xe6\x0e\x45\x0a\x24\x65\x49\xf3\ +\xf5\x5b\xdd\x22\x29\x52\xa2\x6c\xd9\x56\x80\x9d\x60\xa5\x0c\x66\ +\xd8\xdd\xec\xcb\xa9\x53\x55\xa7\x5a\xb9\xfb\x61\xbb\x4c\xbd\x27\ +\x53\x94\x49\x9e\xdd\x8f\x70\x80\x46\x9e\xc9\xa2\x3c\x4e\xb2\xc5\ +\xfd\xe8\xcb\xe7\x9f\x7c\x35\xf2\xca\x2a\xcc\xe2\x30\xcd\x33\x73\ +\x3f\xca\xf2\xd1\x0f\x0f\x37\x77\x7f\xf3\x7d\xef\x1f\x85\x09\x2b\ +\x13\x7b\x9b\xa4\x7a\xf4\x7e\xc9\xbe\x96\x51\xb8\x32\xde\x87\xc7\ +\xaa\x5a\x4d\x27\x93\xcd\x66\x13\x24\x75\x63\x90\x17\x8b\xc9\x47\ +\xcf\xf7\x1f\x6e\x6e\xee\xca\xa7\xc5\x8d\xe7\x79\xb0\x6e\x56\x4e\ +\xf3\x72\x76\x3f\xea\xbc\x91\xaf\x4c\x56\x6e\xc2\x2a\x7a\x9c\xe5\ +\xf9\x57\xf7\xde\xba\x48\x26\x04\x21\x3d\x81\xb1\xa3\xc3\x9b\x71\ +\xd4\xbe\xb8\x5a\x17\xa9\x1b\x1a\x47\x13\x93\x9a\xa5\xc9\xaa\x72\ +\x82\x03\x3c\xe9\x0c\x8f\x0e\xc3\x23\xbb\xef\xe4\xc9\x44\xf9\x72\ +\x99\x67\xa5\x7b\x33\x2b\x6f\x3b\x83\x8b\x78\xde\xdb\xd5\x86\xba\ +\x41\x58\x6b\x3d\x41\x64\x42\x88\x0f\x23\xfc\x72\x97\x55\xe1\xd6\ +\xef\xbf\x0a\xa7\x1b\x7a\x15\x0e\x80\x26\xd0\x77\x18\x79\xd9\xa8\ +\xe9\x36\x05\x10\xcf\x6e\xc6\xf5\x76\x57\x07\xc3\xad\xe0\x4f\xfb\ +\x42\xd3\x10\x94\xf9\xba\x88\xcc\x1c\xde\x34\x41\x66\xaa\xc9\x8f\ +\x9f\x7f\x6c\x3b\x7d\x14\xc4\x55\xdc\x99\xa6\xb1\x5b\x6f\xdd\x9e\ +\x31\xb3\x70\x69\xca\x55\x18\x99\x72\xd2\xb4\xbb\xf7\x37\x49\x5c\ +\x3d\xde\x8f\x28\x0b\x30\x85\x0f\x77\x8d\x8f\x26\x59\x3c\x56\xc7\ +\xad\x49\x7c\x3f\x82\xb3\x12\xad\xa5\x7b\xee\x90\x10\xef\x07\xd4\ +\x13\x4f\xdb\x1e\x14\x68\x12\x60\xaf\xc0\x9c\xca\xfd\x98\xe6\x08\ +\xd3\x38\x8f\xec\x9e\x60\x4a\xb3\x4c\xc2\x75\x95\x2f\xc1\xc6\x51\ +\x94\x86\x65\x99\xcc\x93\x08\x1e\xf2\x6c\x95\xae\x17\x49\xf6\x47\ +\x0a\x6c\x2e\xc3\x4a\xfd\x51\xe5\x79\x1a\x34\x70\xb7\xab\x99\xed\ +\x2a\x2f\x2a\x7f\x1b\xaf\x00\x46\x21\x07\x3b\x77\x4d\xe7\x03\xf4\ +\xde\xb5\x9b\xb0\x3b\x88\x9f\x12\xb3\xb1\xef\xec\x4f\x38\x0b\xcb\ +\x3d\x32\x9e\xb7\x0a\x17\xc0\xb9\x34\x2f\xee\x47\xb7\x73\xf7\xa9\ +\x3b\x66\x79\x11\x9b\xa2\xe9\x12\xee\xd3\xeb\xca\x01\xe9\xa4\xda\ +\xed\xfd\xb3\x9e\xbb\xd9\x91\x9d\xb5\xed\x47\xc3\xfd\xe5\x63\x18\ +\xe7\x9b\xfb\x11\x39\xee\xfc\x96\xe7\xcb\xfb\x91\x0c\x34\x56\x88\ +\x61\x79\xdc\x1d\x6d\xef\x47\x3e\x56\x01\xc2\x0c\x73\x71\xd2\x0b\ +\x0b\x12\x19\x50\x84\x88\xa4\x27\x9d\xeb\xa2\x00\x3f\xf4\xd3\x70\ +\x67\xe0\x54\xee\x2f\x5c\x0f\x2a\x1f\xf3\xcd\xa2\xb0\xe8\x54\xc5\ +\xda\x1c\xbf\x69\x7b\xfc\xd9\x2c\xdf\x0e\x77\x83\xa1\xd7\xd6\xc3\ +\xfd\x75\x96\x54\xe0\x45\xab\x6d\x77\xd6\x75\x12\x9b\x72\xf8\xc5\ +\x32\x0b\x57\xfe\x22\xcd\x67\x61\x3a\x3c\x60\x93\x64\x80\x92\x5f\ +\x53\x18\x53\x71\x72\xe2\x7a\x44\xc3\x67\x89\xd4\x99\x11\xb0\xf7\ +\x13\x43\xd4\x5d\xbb\xf3\x5d\xcb\x70\x9b\x2c\x93\x6f\x06\x80\xc1\ +\x8e\x59\xc0\xad\x1e\x2c\xfb\xd7\xf6\xc4\xb2\xcf\x00\x3d\x1f\x35\ +\x8d\xd5\xce\x3a\xec\x76\x67\x3b\xda\xc6\xbc\x48\x80\xf2\x9d\xed\ +\x34\x4d\xbb\x6e\x93\xf5\x64\x08\xf8\x5b\x47\x30\x47\x3f\x79\xdc\ +\xb7\xeb\xf6\x79\x13\xc7\xfb\xc9\x29\xf1\x5d\x7b\x6c\xe6\xe5\xc1\ +\x03\xec\x13\x38\xb9\x6e\x4e\x04\x21\xcb\x84\xc5\xcf\x45\x18\x27\ +\x60\xc6\xee\x91\xfa\x3d\x02\x31\x51\xbf\x63\x7d\xac\xca\x57\xcd\ +\xd8\x3a\x76\x40\x0b\x8c\x51\xa3\x43\x73\x3e\x9f\x97\xa6\xea\x9e\ +\x0c\xf6\x5f\xed\x52\xb3\x1f\xed\x3b\x17\x9b\xde\x4a\x61\xbf\x9f\ +\x5c\x53\xed\x3a\x53\xfc\xa9\x3e\xd5\xb3\xab\x71\x34\xb0\x1a\x7e\ +\x7e\x35\x4a\x18\x17\xea\xec\x6a\x77\x93\xfe\xb1\x5f\x89\x12\x57\ +\x75\x14\x1a\xd8\xf7\xc0\x66\xe2\x38\xd6\xb1\x3e\xd9\xcc\xf3\x10\ +\x36\xe7\x87\xb5\xf4\x79\x94\x06\x56\x13\x91\xfd\x5e\xb0\x1a\x1e\ +\x5c\x0d\x62\xfc\xd5\x50\xe2\xfa\x15\x28\xe9\x28\x0c\x11\x7a\x3b\ +\x4a\xf8\x55\x28\x69\x4c\x63\x3c\x7b\x33\x4a\x82\x5e\x0f\x25\x72\ +\x58\x02\xd4\x16\xe4\x8e\x24\x83\x75\xcb\x3c\x85\x90\x72\xf9\x81\ +\xe6\x02\x74\xcc\x11\x7c\x28\x90\x4a\x11\xca\xe9\x2b\x70\x24\x57\ +\x3c\x19\xe6\x57\x39\xd9\x7c\x26\x67\xf2\xcd\xc4\xc0\xf2\x6a\x07\ +\x92\xf8\x6c\x70\x1c\xd8\x37\x47\x92\x28\xf6\xd6\x7d\x4b\xac\x5e\ +\x0e\x8e\x1c\x56\x78\x7d\x70\xc4\x33\x1b\x22\x8e\xa9\xc2\xb4\x42\ +\x54\x13\xf2\x4c\x4c\x1e\x0a\xb4\x52\xc5\x2a\x3e\x9a\xeb\x62\x3f\ +\x92\x04\xbd\xd1\x38\xad\xe4\xc9\xd3\xd4\x44\x30\x7f\x98\x6e\xc2\ +\x5d\xd9\x2e\xe2\x44\xfa\xf4\xb1\x30\x50\x54\xdc\x0e\x98\xf1\x39\ +\x2b\x13\x72\x98\x06\xdf\x8f\x54\x40\x88\x52\x02\xe9\xb6\x75\x07\ +\xad\x58\x07\x5a\x68\x79\xc8\xd9\x5b\x02\xca\x8c\x05\xe0\x6d\x36\ +\x16\xb5\x43\xc9\xc0\xd0\x45\xbd\xd4\x97\xbd\x9a\x5a\x97\xa6\xf8\ +\xdd\xea\xfa\x7f\x66\x5f\x5a\xe1\x6a\x45\x00\xd4\x4c\xf1\x6f\xa6\ +\x7a\xcc\x61\x93\xab\x30\x3e\x79\xff\x73\x11\x66\x25\x94\x17\x20\ +\x27\x01\x8d\xd4\x7c\x68\xd5\xc2\xc7\x03\xac\xc3\x00\x0e\x4c\x01\ +\xe2\xbd\x48\xb6\x30\x07\x96\x1c\x11\x8e\xc7\x3e\x09\x28\xc6\x8a\ +\x70\xe3\xab\x31\x0e\x38\xa3\x9a\xd1\xfa\x01\x4b\x8d\xb0\xa4\x30\ +\x46\x05\x42\x49\xaa\xf9\x18\x74\x30\x63\x94\x6a\x4a\x3e\x3e\x7f\ +\xfc\x33\x48\x0d\x82\x3a\x88\xff\xcb\xc8\x3c\x8f\xec\x90\xd1\x15\ +\xb9\x84\x3b\x4e\x1f\xbd\x48\xc2\x17\xb0\x7f\x17\x79\x6d\x52\x7d\ +\x56\x99\xf0\x1e\x78\x18\x07\x12\x33\xd1\x91\xac\x16\x67\x30\x15\ +\xe6\x18\x21\xa6\x45\xcf\x2a\x14\x07\x0a\x2a\x0b\x44\x7b\x06\x1c\ +\x1a\x7d\x19\xd0\xe7\x59\x06\xa9\x09\x49\x09\x7c\xb1\xbc\x91\x10\ +\x7a\x18\xd3\xc0\x26\x28\x36\x91\x26\x92\x11\x0d\xcd\x9c\x83\x64\ +\xc4\x5a\x8d\xd1\x18\x75\x08\x6d\xe7\x0c\xd3\xeb\x82\xda\xd1\xde\ +\x16\xd4\xfe\x12\x20\x8a\x0e\x80\xd8\xf2\xac\x13\x20\x6c\x3d\x06\ +\xc5\xda\x01\xde\x79\xbf\x7f\x7e\xdc\x5f\xd8\xd2\x0f\x69\xf7\xb9\ +\x08\x27\x85\x35\x92\x02\x49\x8b\x02\x80\x22\x18\xc1\xe0\xe0\x80\ +\x15\x13\x01\x46\xe0\x9e\xe0\x8e\x24\x10\x1c\x53\xc5\x3e\x5e\x68\ +\x9f\x97\x08\x3a\xa4\x52\xa4\x8f\xfc\xb3\x7a\xae\xa3\x1f\xb4\x2f\ +\xfd\x6e\xb0\xbf\xb0\x3e\x98\x87\x18\x0f\xc8\xbf\x97\x53\xa0\xa2\ +\x18\x76\xf6\x86\x34\x38\x17\xf3\xf9\x89\x62\x7a\xb1\x46\xf8\x33\ +\xd8\x57\x63\x7b\x9e\x81\x54\xf1\xd7\x66\x8f\xf3\x94\xf2\x69\x40\ +\xa8\xfb\x8e\x49\xc0\x30\x65\x42\x59\xc7\x53\x18\x09\x48\xff\xce\ +\x07\x19\x57\x48\x72\x3d\x96\x2c\x10\x10\x3b\x88\x18\xfb\x2a\x50\ +\x8c\x81\x23\x74\x38\x66\x5d\x01\xf3\x0e\xb7\x9d\x33\x48\x70\x67\ +\xa6\xb4\xec\x79\x44\x6f\xd8\x7c\x70\x58\xb1\x77\x14\x41\x78\x5b\ +\xea\xda\x2a\xd6\xfd\x6b\x69\xaa\x30\x0e\xab\xf0\xa6\xc5\xa7\x69\ +\xb1\x17\x21\x4d\x91\x5b\xc4\xf3\xe9\xbf\x7e\xfc\xa9\x25\x4c\x14\ +\x4d\xff\x9d\x17\x5f\x0f\x24\xb0\x03\xc2\x59\xbe\x06\xf3\xb4\x44\ +\xb6\xa5\x73\x34\xb5\x00\x85\xd5\x43\xb2\x0c\x17\xc6\x5e\x06\xfe\ +\x7d\xbb\x4c\x61\xfd\xb6\xa3\x37\xd8\x16\xfd\x87\x49\xf7\xd3\x16\ +\x66\x7f\xd9\x37\x78\x3f\x1a\x47\xcb\xc4\xbe\x34\xf9\xbd\x4a\xd2\ +\xf4\x17\xbb\x48\x87\xd8\xf5\xa4\x49\x95\x9a\x0e\xdb\x27\xf5\xee\ +\x1b\x32\x76\x0e\x77\x37\x69\x4e\xef\x9e\x16\x37\x7d\x0a\x2e\x8a\ +\x7c\xbd\x5a\xe6\xb1\xa9\x6f\x80\x8e\x2f\x3e\xd2\x70\x66\xd2\xfb\ +\xd1\xaf\xb6\xcf\x6b\x7c\xc4\xb9\xfc\xfe\xbe\xa8\x5e\xd1\xa4\x69\ +\xb2\x2a\xdb\x83\xd6\x0e\x34\x87\x03\x4c\xe1\x68\x1f\x6e\x4f\x19\ +\xfa\xf1\x93\xed\xed\x78\xaf\x7b\x2c\xd6\xa9\x99\x9a\x27\x93\xe5\ +\xb1\xd5\x89\x45\xfe\xd5\x4c\x6f\x11\xaa\xab\x15\xfb\xb8\xbf\xfd\ +\x99\xb6\x8f\x00\x96\x29\xd2\x04\xfe\x9a\xb2\xa6\x2d\x0e\xcb\xc7\ +\xb0\x28\xc2\xdd\x34\xcb\x33\xd3\xb4\xb6\x4b\xf5\x7c\x67\x15\x56\ +\x8f\x42\x50\xd2\x27\x2a\xda\xdf\x83\xd2\x3e\x5b\x21\x3d\xda\x46\ +\x76\xa0\xa1\x8d\xdf\x9d\x47\x7b\xdf\x06\x6e\xd2\x49\x3f\xe0\xde\ +\x67\x41\x39\x55\x15\xef\x05\x25\xc0\x58\x4a\x84\xb5\xb8\x16\x3a\ +\x76\xff\x8c\x70\xe4\x1f\x92\x79\x73\xfb\xa6\x6c\xf6\x67\xe8\x00\ +\x5c\x73\xe9\x06\x12\x0c\x8a\x48\x82\x0e\xb8\xd4\x97\x94\x1a\x62\ +\x02\x3d\xc4\xde\x9d\x93\x70\x4c\x10\xd6\x91\x53\x16\x42\x1a\x70\ +\x2a\x11\xc7\xb2\x87\x73\x2b\x35\x0f\xf7\x69\x03\x09\x50\x80\x20\ +\x61\x58\xb8\xc8\x04\x4a\x81\x09\x26\x31\x24\x42\x05\x71\x09\x24\ +\x29\xb3\x42\x41\x13\xf8\x72\xbe\x17\x0a\x27\x31\xb9\x9d\xd4\x8f\ +\xc0\x28\xa6\xf0\xdd\xe6\x21\x7b\x6a\x8a\x35\xbe\x60\x3c\x1c\xc0\ +\x07\x12\x28\x29\x04\xc8\xbf\xb7\x31\x81\x5c\x81\x09\xb5\xb8\xbf\ +\x36\x13\x4e\x78\x20\xf7\x65\x84\x3a\xe1\x81\x04\xdb\xf6\x6f\x2a\ +\xb7\x96\x1c\x90\x19\xa0\x4e\xc0\x3d\x1a\x48\x08\xe5\x52\x72\x7e\ +\x44\x03\x72\x44\x80\xe3\x9b\xcf\x0e\x01\x8a\xbc\x0a\x2b\xf3\xc1\ +\x22\x2f\x00\x79\x4d\x3a\x1a\xd0\xba\xf8\xa5\xd0\x83\x24\x7e\x37\ +\xf4\x48\x09\x8d\x81\x84\xcf\x41\x7f\x0a\xb2\xcd\x53\x5e\x83\xa6\ +\x1c\x43\x08\xda\x9f\xd6\xd3\x81\xe8\x3c\x45\x1e\xb0\x99\x42\xc1\ +\x2f\x80\xcb\x9a\x22\x82\xb9\x07\x49\x1a\x31\xa9\x81\xe9\x96\x77\ +\x18\x44\x8e\xe7\xb3\x00\x71\xb0\x8a\x18\xd3\x40\x60\x02\x99\xd2\ +\x4b\x3d\x5b\xa3\x41\xd1\x85\x39\xd4\x64\x50\x4d\x4b\x3b\x9b\x0f\ +\xb0\x22\x78\x49\x5a\x69\xcd\xec\x2d\x84\x9d\x0e\x34\x35\x93\xac\ +\x59\x81\xd9\xe9\x88\xdb\xc0\x18\x79\xbf\x7a\x22\x60\xee\xe0\x30\ +\x8f\xa8\xa7\x70\x9b\x83\xcc\x0f\x5e\xaa\x38\xfc\x77\x68\x04\x57\ +\x04\x4b\xc2\xda\xc6\x97\xe3\x76\x1e\x0f\xbc\xcf\xdb\x37\x91\x3a\ +\xd6\x52\xaf\xe9\x94\xee\x15\xb7\xc4\xa1\x71\xdc\xce\x88\x3d\x1e\ +\x30\x36\x6e\xf8\x20\xec\x7e\xc6\x87\x59\xbe\x0d\xf0\x96\xf1\x53\ +\xcf\x8d\xf2\x2c\x83\xce\xbc\xf0\xa3\x75\xf1\x14\x56\xeb\xc2\xf4\ +\xae\xdc\xdb\xab\x73\xc8\x8e\x36\x21\x83\x7c\x2a\xdd\x27\xfa\xd6\ +\xa9\xda\x5e\x97\xf9\x6c\x75\xf0\x7e\xd7\x56\x36\xc8\xc9\xab\x05\ +\x79\xeb\x1f\x54\x13\xea\xd3\x67\x42\xab\x0f\x61\xd4\x06\x55\x02\ +\xd4\x26\x84\x39\x6e\x70\xc1\x21\xa6\x8b\x7e\x24\x75\x3f\x49\x41\ +\xa1\x8f\x14\x50\xb3\x9f\x40\xa1\x8e\x87\xcc\xc0\x44\x3f\xb0\x73\ +\x9b\x55\x39\x3d\xca\xa3\x0c\xa2\x07\xb2\x96\x7f\xd9\x8f\x3b\x27\ +\x3c\x07\x19\xdd\xb3\x89\x34\xed\xd6\xeb\x81\x04\xd3\xd9\xba\xaa\ +\xba\x6d\xff\xc9\x93\x6c\xea\xf0\xbc\x06\xb8\x80\xed\x6f\x8e\x9c\ +\x8d\x72\xa0\x1e\x16\x63\xa7\x10\x8e\xf1\xe7\x4a\x0f\xde\x15\x0c\ +\x52\xf4\x3b\x47\x04\x33\x08\x2b\xf6\x33\x06\x09\x5f\x3b\xad\xa3\ +\x86\x6b\x03\x4d\x40\x06\xe1\xe9\xd0\xf3\x62\x80\xce\x65\xdd\x5b\ +\x23\xec\xf7\xdd\x9e\x08\x9a\x80\x6a\x75\x55\xb9\xc5\x35\x3e\x15\ +\x5b\x10\xeb\x88\x02\xcf\x3b\x49\xb2\x1c\xc2\x3c\xd2\xe8\x38\xc9\ +\x4a\x29\x85\xea\xdc\x19\x58\xe7\xd3\x30\x87\x50\xf8\x38\xa9\x52\ +\xa9\x04\x66\xf4\x28\xf5\x4a\xa5\x20\xcc\x3c\xaf\xb5\xb4\xd0\x4a\ +\x51\xc8\x02\x36\x2c\x30\xca\x25\x46\x6a\x6c\x23\x04\x78\x38\xc2\ +\xdc\x45\x08\xce\xb5\x46\xf4\xf8\x52\xe6\xcf\xb5\x0a\x24\x36\x50\ +\x13\xfa\xaa\xd2\xc7\x5a\xc5\x67\xc7\x76\xe1\x81\x86\xac\xcb\xd0\ +\xa9\x5d\x20\x7f\x61\xcd\x75\xe7\x2e\xc8\x82\x0d\xe9\x99\x33\xde\ +\x19\x6e\xc5\xa2\xfd\xe1\x05\x34\x2b\xee\xfc\x50\x6a\x2d\x63\xd3\ +\xb1\x16\x20\xb9\xfa\xaa\xc8\x56\xe1\x0c\x80\x7f\x41\x06\x33\x09\ +\x12\xdc\x65\x70\x29\x08\xc4\x6b\x7b\x43\x6b\xff\x0d\x64\xb1\xb5\ +\xba\x1d\x41\x81\x4f\x56\x11\x5f\x2c\x83\xe1\x7d\x49\x21\xe0\xcb\ +\x0b\x86\x3b\x12\x31\x86\xa0\x42\xd7\x7f\x01\xc3\x77\x2e\x5c\xde\ +\x66\x7a\x02\x88\x43\xb4\xa0\x3d\xdd\x6b\xd5\x12\xe6\x9c\xfd\xdf\ +\xee\xef\xb4\xbb\x90\x9a\xf0\xeb\x86\x61\x81\xd0\x89\xcd\x29\x54\ +\x55\x10\x2c\x3b\x1d\x8d\xcd\x49\x40\x88\xa0\xa0\x86\x7a\xee\x4e\ +\x6d\x05\x84\x74\xaf\xe4\xb5\x3a\x55\x6b\x90\xc5\x47\x46\xa7\x94\ +\x01\xd5\x70\xbf\x12\xb6\x85\xab\xa2\x9a\x76\x28\x32\x64\x75\x78\ +\x91\x53\xcd\xf7\x85\xae\x20\x52\x20\x67\x75\x6a\xef\xff\xb1\x92\ +\x4e\xc6\x53\x06\x16\x7c\x9d\xd5\xb5\x64\x04\x13\x36\x90\x76\x07\ +\x8b\x5e\xd8\x07\x48\x3e\x2a\x09\xfe\xee\x0d\xdf\xb9\x93\x7e\x9b\ +\xe9\x41\xe3\x61\x70\x6d\xd1\x2f\x73\x03\x4e\x94\x50\x9d\x1f\x85\ +\xfe\xc7\x4d\x4f\x2f\xbd\xef\x68\x4c\x8f\xe4\xf7\x6f\x7a\xf2\x5e\ +\xaf\x97\x01\xd6\x12\x75\x7e\x5a\x73\x5e\x0f\x36\x66\xac\xf3\x7f\ +\x6f\xfc\x65\x4d\x7f\x37\x59\x3c\xdc\xdc\xd9\x7b\xf1\x87\x9b\xff\ +\x02\x19\x39\x4d\x45\ +\x00\x00\x04\xe3\ +\x00\ +\x00\x1a\x61\x78\x9c\xed\x58\x59\x6f\xe3\x36\x10\x7e\xf7\xaf\x50\ +\x95\x97\x16\x0d\x75\x5a\xd6\x11\xd9\xfb\xd0\x60\x81\x05\xfa\xd4\ +\x6e\xd1\x67\x5a\xa2\x65\x36\x12\x29\x50\x54\x6c\xef\xaf\xdf\xa1\ +\x6e\x1f\x59\x64\x93\x06\x5d\xd4\x51\x10\x38\x9c\x6f\x86\x9c\xf9\ +\xe6\x10\x9d\xf8\xc3\xbe\xc8\xb5\x47\x22\x2a\xca\xd9\x52\xb7\x0d\ +\x4b\xd7\x08\x4b\x78\x4a\x59\xb6\xd4\xff\xfa\xfc\x11\x05\xba\x56\ +\x49\xcc\x52\x9c\x73\x46\x96\x3a\xe3\xfa\x87\xd5\x2c\xfe\x09\x21\ +\xed\x37\x41\xb0\x24\xa9\xb6\xa3\x72\xab\x7d\x62\x0f\x55\x82\x4b\ +\xa2\xfd\xbc\x95\xb2\x8c\x4c\x73\xb7\xdb\x19\xb4\x13\x1a\x5c\x64\ +\xe6\x2f\x1a\x42\xab\xd9\x2c\xae\x1e\xb3\x99\xa6\x69\x70\x2e\xab\ +\xa2\x34\x59\xea\x9d\x41\x59\x8b\xbc\x51\x4c\x13\x93\xe4\xa4\x20\ +\x4c\x56\xa6\x6d\xd8\xa6\x3e\xaa\x27\xa3\x7a\xa2\x4e\xa7\x8f\x24\ +\xe1\x45\xc1\x59\xd5\x58\xb2\xea\x66\xa2\x2c\xd2\xcd\xa0\xad\xbc\ +\xd9\xb9\x8d\x92\x1d\x86\xa1\x69\x39\xa6\xe3\x20\xd0\x40\xd5\x81\ +\x49\xbc\x47\xc7\xa6\xe0\xe3\x25\x53\xc7\xb2\x2c\x13\xb0\x51\xf3\ +\x79\x5a\x51\x05\x84\x96\xf0\x3b\xa8\xf7\x02\xa3\xe2\xb5\x48\xc8\ +\x06\xec\x88\xc1\x88\x34\xef\x3f\xdf\x0f\x20\xb2\x8c\x54\xa6\x93\ +\x6d\x7a\x3e\x8f\x4e\x3d\x22\x99\xe1\x82\x54\x25\x4e\x48\x65\xf6\ +\xf2\xc6\x7e\x47\x53\xb9\x5d\xea\xee\xdc\xb0\x5d\x78\xbc\x46\xb8\ +\x25\x34\xdb\xca\x53\x29\x4d\x97\x3a\x78\xef\x84\x41\xbb\x9e\x14\ +\x87\xdd\x2a\x74\x1b\x47\x03\x62\x19\xa1\x63\xd8\x9a\xb0\x3d\xd7\ +\x6f\x75\xfa\x10\xa2\x94\x27\xca\xa7\xa5\x9e\xd5\x34\x25\x46\x4f\ +\xcb\xb0\x07\xd9\x97\x5c\x48\xb4\x4f\x4b\x20\x67\xe1\x5f\x04\x0f\ +\x3d\xb8\x02\x34\x4e\xc9\xa6\x52\x5a\xad\xa7\x6a\x05\xae\xfa\xba\ +\x66\x36\xe8\x70\xb0\x3a\x35\x7d\xa4\x64\x37\xea\xae\x71\xd5\xb2\ +\xa1\x69\x25\xce\xa0\x72\x72\x2e\x96\xfa\xcd\xa6\x79\x3a\x60\xcd\ +\x45\x4a\x44\x0f\x2d\x9a\xe7\x08\xe2\xc0\x2e\x95\x87\xb6\x57\xba\ +\xbd\x7b\x7f\xd5\xae\x03\x6e\x5d\xc6\xab\x2d\x4e\xf9\x6e\xa9\x3b\ +\xa7\xe0\x17\xce\x8b\xa5\xee\x19\x5e\x18\x84\x96\x7d\x8a\x26\xfb\ +\xa5\x8e\x7c\xcf\x00\x77\x02\xcb\x3b\x43\xe1\x3c\xe4\x18\x0b\xdb\ +\xb6\x5c\xcf\x3f\x43\x6b\x21\xa0\x9b\x50\x8e\x0f\x04\xa2\x6a\x3e\ +\xfa\x03\xaa\x2d\xdf\x65\x42\xb1\x23\x45\x4d\x4e\x2d\x15\x82\xd6\ +\x6b\xbe\xbf\x0c\x43\x72\x6b\xd5\xa7\xa8\x66\x54\x42\x2f\x94\xfb\ +\xe9\xae\x2a\xe1\xd5\x65\xc3\x1d\x65\x40\x02\xea\xaa\xd2\x76\x07\ +\x8e\x4f\x35\xfa\x12\xf5\xad\xe0\x09\x0d\x70\xed\x8c\xe7\x0e\x3a\ +\x3c\x0d\x15\x78\x4f\x0b\xfa\x85\x40\xdc\x67\x54\x57\x0c\x97\x28\ +\xcb\xf9\x1a\xe7\x9d\xf7\xab\x46\x23\x3e\xa2\xa5\x35\xd2\x34\x79\ +\x50\xfd\xb8\x3f\x28\x99\xde\x0b\x15\x9f\x4a\xe0\xfa\x0b\x6f\x10\ +\x72\x41\x33\xca\x26\xfe\xf6\xa2\xc3\x54\xa4\xba\x17\x86\xef\xbe\ +\x29\xb0\xa6\xfc\xfc\x53\xec\x30\xc5\xba\xba\x37\xcf\x0b\xbf\x91\ +\x17\x44\xe2\x14\x4b\x3c\x76\x41\x2f\x71\xc2\xd0\xea\x23\x83\x41\ +\x18\xfd\x71\xff\x71\xd5\x1d\x14\x27\x49\xf4\x37\x17\x0f\xfd\xb9\ +\x9a\xa6\x14\xf0\x9a\xd7\x90\x0a\x7d\x35\x88\xe3\x34\x89\x60\x74\ +\x15\x58\xae\x68\x01\xb5\xad\xa6\xde\xaf\x30\xaa\x62\x73\x04\x8e\ +\x94\x15\x59\xe3\xa6\xed\xb6\x82\xb4\x33\xf0\xe2\x8b\x20\x4d\x0a\ +\xaa\x8c\xcc\x3f\x25\xcd\xf3\x4f\xea\x90\x2e\xe2\xc9\xa6\x54\xe6\ +\x64\x14\xc6\x66\xe7\x7d\x17\x9b\x39\x09\x2e\x36\xfb\xe8\x9b\x55\ +\x36\xb2\x72\xd4\x14\x43\xa2\x73\xbc\x26\x50\x04\xbf\x2b\x50\x3b\ +\x43\x33\xc1\xeb\xb2\xe0\x29\xe9\xcc\x07\x36\x49\x22\x87\x94\xc9\ +\x43\x0e\x78\x33\x50\xa2\x1b\xab\x79\xee\x52\x5a\x95\x60\x01\xf3\ +\x3c\xa7\x8c\xdc\x71\x18\xa4\x9b\x9c\xef\xa2\x47\x5a\xd1\x75\x4e\ +\xee\x9a\x4f\x9a\x43\xe4\x83\x68\x03\xe1\x37\xf6\x1b\xc7\x69\x16\ +\xa8\x1b\x34\x91\xdd\x2e\x45\x9d\x93\x88\x71\xf6\x05\x46\xd4\x5d\ +\x25\x05\x7f\x20\x83\x7e\xbb\x6c\xdb\x2d\xb2\xfa\xa5\x3a\x1b\xe2\ +\x88\xd6\xb5\x94\x53\xd9\x3f\x9c\xb2\x08\x68\x27\xa2\x97\x36\x8b\ +\x1c\x1a\x46\x46\xf3\x5e\x96\x62\x98\x64\x42\x40\x14\x70\x28\x99\ +\x4a\xf9\x66\x53\x11\x19\x39\x46\xe0\x3a\x81\x65\x7b\x41\x0f\x8e\ +\x1e\x17\x58\x3c\x10\xd1\x5a\x12\x86\x21\x40\xb4\xc6\xc9\x83\x22\ +\x94\xa5\x11\x4e\x60\xac\xd4\x39\x5c\x2e\x8e\x1a\x4a\xd1\xea\x42\ +\x44\x28\x18\xc4\xfd\x6b\xcd\x19\x24\xfd\xc0\x98\x8f\x4a\xaa\x95\ +\x16\xc3\xea\xa8\xd9\x84\xc2\xe6\x86\x1b\xb8\x73\x77\x6c\x33\x01\ +\x3a\xbe\x61\x2f\x82\xc0\xb5\xc2\xa1\xdc\xde\xd3\xfa\xc6\x69\xb5\ +\xd1\xe2\xbb\x13\x8b\x7e\xf0\xcc\x92\x40\xfd\x3c\x3f\xb3\x8b\xd0\ +\xc6\x36\xfe\x9f\x65\xf6\xfb\xdb\xd5\x6f\x5f\x6f\xc1\x34\xb7\x4e\ +\x7b\x49\x75\xe7\xef\x39\xfe\x01\x73\x8c\xec\x17\xf4\xee\xdc\x08\ +\x9b\x94\xfe\x8b\x69\x2e\xb1\xdc\x9e\xa4\xf9\x5b\x33\xf6\x5b\x13\ +\xd5\x35\xdc\xf6\x92\x65\xbf\x65\x72\x06\x5f\x86\xc8\xd4\x1d\x4d\ +\xeb\x5b\xc0\xbf\xf5\x8d\x79\x7b\xd5\xd3\x12\xcd\xba\x75\x7d\xc3\ +\x6d\x9f\xa7\x17\x47\x09\x52\x84\xb8\x96\x33\x36\xe1\xf8\xb5\x80\ +\x33\x08\x47\x72\x81\xe0\x0b\xc2\x23\x96\xb5\x20\x6a\x82\xbe\x05\ +\x95\xb6\x31\x6f\x33\x3d\xff\x0f\xa8\x74\x1c\x63\x7e\x6b\x43\xe5\ +\x03\x81\xb6\x65\xb4\x64\xde\x5a\x4f\xfd\x7d\xce\x9e\x1f\x5e\x3d\ +\x7b\x41\xd7\x95\xaf\xa0\x10\x79\x57\x4e\xa2\xe3\xb6\x9d\xec\xbf\ +\x86\xc4\xc5\xb5\x93\x18\xbc\xaa\x8f\x91\x87\xdc\xeb\x65\x70\xf8\ +\xaf\xc1\xe9\x38\x5c\xb8\x13\xee\xce\x16\x97\x99\xf4\xdf\x79\xf4\ +\x2f\x0e\xc6\x97\x90\xe9\xa1\x2b\x7e\xc5\x8c\x74\x5e\x1a\x91\x2f\ +\xa1\x73\x71\xcd\x2f\x9b\x09\x9d\xc1\xab\xbb\x1c\xe6\xe5\xe4\x6a\ +\xff\x3c\x2e\x63\x33\x5b\xcd\x62\xf5\xcf\xc0\xd5\xec\x2b\xe2\xa2\ +\xf8\x66\ +\x00\x00\x07\x98\ +\x00\ +\x00\x2c\xab\x78\x9c\xed\x5a\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x50\ +\xe5\x97\x04\x0d\xc9\x73\xbf\x28\x92\x17\x48\x83\x5d\x2c\xd0\xa7\ +\xed\x16\x7d\x0c\x68\xf2\x48\x66\x43\xf1\x08\x24\x65\x49\xfb\xeb\ +\x3b\x87\x14\xaf\xa2\x36\x29\x52\xc0\xae\x12\x39\x86\xc3\x99\x39\ +\x97\xf9\x66\xce\x37\xc3\x63\x2f\x7f\x3a\x6e\xd3\xd9\xb3\xc9\x8b\ +\xc4\x66\xab\x39\xf6\xd1\x7c\x66\xb2\xc8\xc6\x49\xb6\x59\xcd\xff\ +\xf9\xfb\xcf\x9e\x9a\xcf\x8a\x32\xcc\xe2\x30\xb5\x99\x59\xcd\x33\ +\x3b\xff\xe9\xe1\x6e\xf9\x17\xcf\x9b\xfd\x2d\x37\x61\x69\xe2\xd9\ +\x21\x29\x9f\x66\xbf\x66\x9f\x8b\x28\xdc\x99\xd9\x9b\xa7\xb2\xdc\ +\x2d\x82\xe0\x70\x38\xf8\xc9\x59\xe8\xdb\x7c\x13\xbc\x9d\x79\xde\ +\xc3\xdd\xdd\xb2\x78\xde\xdc\xcd\x66\x33\x58\x37\x2b\x16\x71\xb4\ +\x9a\x9f\x07\xec\xf6\x79\x5a\x19\xc6\x51\x60\x52\xb3\x35\x59\x59\ +\x04\xd8\xc7\xc1\xbc\x33\x8f\x3a\xf3\xc8\xad\x9e\x3c\x9b\xc8\x6e\ +\xb7\x36\x2b\xaa\x91\x59\x71\xdf\x33\xce\xe3\x75\x6b\xed\x76\x73\ +\xa0\x95\x11\xd6\x5a\x07\x88\x04\x84\x78\x60\xe1\x15\xa7\xac\x0c\ +\x8f\xde\x70\x28\xec\x71\x6a\x28\x41\x08\x05\xa0\xeb\x2c\xbf\xce\ +\x6a\x51\x00\xa0\x3b\xf8\x6e\xcd\x1b\x81\x5f\xd8\x7d\x1e\x99\x35\ +\x8c\x33\x7e\x66\xca\xe0\xe3\xef\x1f\x5b\xa5\x87\xfc\xb8\x8c\x7b\ +\xd3\x34\x78\x0e\x56\x1d\x80\x9c\x85\x5b\x53\xec\xc2\xc8\x14\x41\ +\x23\xaf\xc6\x1f\x92\xb8\x7c\x5a\xcd\x29\xf3\x31\x85\x0f\xaf\x84\ +\x4f\x26\xd9\x3c\x95\x63\x69\x12\xaf\xe6\xb0\x7b\xa2\x55\xfd\xdc\ +\x4b\x0e\x5c\x1b\x9c\x27\x5e\xb4\x1a\xe4\x6b\xe2\xe3\x59\x8e\x39\ +\x95\xb5\x4d\xe3\xc2\x22\xb6\x91\xdb\x13\x4c\x69\xb6\x49\xb8\x2f\ +\xed\x16\xa2\x16\x45\x69\x58\x14\xc9\x3a\x89\xe0\xc1\x66\xbb\x74\ +\xbf\x49\xb2\x4f\x51\x6a\xf7\xf1\xa7\x6d\x58\x7c\x86\xe4\xfb\x54\ +\x5a\x9b\xfa\x0d\x8a\xed\x92\xe6\xb8\xb3\x79\xe9\x1d\xe3\x1d\x60\ +\x29\xe4\xa4\xf2\xd4\x57\x3e\x27\xe6\xf0\xc1\x1e\x61\x8f\x33\x34\ +\xa3\x04\xfe\xcd\x1f\x40\xbe\x8c\xcd\xba\x70\xfa\xda\x5f\xf7\x04\ +\x0e\xcb\x4a\x07\xda\x75\x92\x96\x26\xaf\xf5\xbd\x05\x22\x9b\xa6\ +\x26\x02\xc4\xc2\xf4\x10\x9e\x8a\x79\x63\x50\x94\xa7\x14\x5c\x04\ +\xb5\xcd\xbd\x24\x83\xa1\x3b\x9b\x56\xae\x79\xf5\x4c\x90\x01\xbf\ +\xfd\xf2\xa1\xb5\x77\x4b\xd6\x0a\x8c\x34\x6b\xc5\xb0\x4b\x08\x39\ +\x26\x9a\x71\x85\x48\x2b\x3e\xc7\x0e\xfb\x84\x2b\x8d\x45\x2b\x3f\ +\x55\xe6\x84\x4a\x46\x99\xa4\xad\xb8\x89\x2a\xf6\x99\x64\x4a\x68\ +\x7e\x76\xca\xb9\x65\x7e\x09\xf7\x00\x7c\x98\x7d\x48\xf7\xad\x7b\ +\x5f\xe1\xa0\x73\x31\xfe\x68\x9e\x93\xca\x29\x17\x70\x8a\x05\xc6\ +\x42\xa8\x9e\x49\xe5\xd5\x60\x05\xf0\x4e\xcc\x67\xc1\x19\xd4\xa0\ +\x76\xf9\x05\x20\x56\x63\x88\xa9\x66\x58\xf0\x09\x84\xa5\x52\x94\ +\x8e\x11\xd6\x48\x0a\xca\xc5\x04\xc2\x5c\x61\x4e\x20\xe5\x5f\x0e\ +\x61\x8c\xd0\xcb\x23\x8c\x7b\xd9\x7a\x46\x98\x29\xce\xd5\x99\x0c\ +\x86\x10\x6b\x89\xb1\x64\x63\x8c\x41\xa4\xdc\x01\x9c\xc8\x62\xca\ +\xb4\xd4\xf2\x45\x31\x66\xaf\x01\x63\x31\xc2\x98\x50\x42\x05\x65\ +\x13\x18\x33\xc1\x24\xe9\x79\x55\x63\x4c\x99\xa0\x84\xf7\x42\xd5\ +\x61\x2c\x34\x11\x2f\xc9\x13\x18\xa9\x57\x80\x30\x46\x37\x4c\xc5\ +\x18\x93\xd7\x00\xf1\x45\xb5\xbb\x21\x2a\xc6\xaf\xa0\xd8\x61\x7c\ +\x51\xec\x6e\x8a\x8a\xc9\x6b\x28\x77\x64\x5c\xee\x6e\x89\x8a\xc9\ +\x6b\x28\x76\x64\x5c\xec\xce\x54\x3c\x95\xc5\xff\x7f\x54\x4c\x5e\ +\x43\xb5\xa3\x17\xd5\xee\x86\xa8\x98\xbe\x86\x62\x47\x2f\x8a\xdd\ +\x4d\x51\x31\x7d\x0d\xe5\x8e\x8e\xcb\xdd\x2d\x51\x31\x9b\x2e\x76\ +\xcb\xc0\xdd\x57\x54\xff\x6b\xef\x59\xdc\x25\x4b\xec\x2e\x3b\xee\ +\xda\xd9\x1e\xc3\xc2\x9c\x17\xd8\x85\x1b\x53\xc1\xbb\x9a\xdf\xaf\ +\xab\xcf\x59\xf1\x68\xf3\xd8\xe4\x8d\x4a\x54\x9f\x81\xca\xee\xc2\ +\x28\x29\x4f\xf5\xd5\xe0\xdd\xd0\x5f\x37\x6b\xab\x47\xd3\xfa\xe2\ +\x29\x8c\xed\x61\x35\x27\x63\xe5\x1f\xd6\x6e\x57\x73\xea\x6b\xae\ +\x11\x41\x7a\xac\x8e\x5c\x34\x31\xc3\xbe\xe2\x8a\xb3\x0b\x2d\x2c\ +\xa8\x7d\x02\xac\xc4\x15\xbd\x50\xee\xf3\xdc\x64\xa5\x97\x86\x27\ +\x03\x5e\x55\x3f\x9a\x74\x28\x9e\xec\x61\x93\x3b\x74\xca\x7c\x6f\ +\xc6\x23\x9d\xc6\x7b\x7c\x74\xd7\x45\x53\xea\xd8\x46\x7b\x77\x2d\ +\xe9\xed\xb3\xa4\x2c\x56\xf3\xdd\xb1\x3f\xeb\x3e\x89\x4d\x31\x3d\ +\xb0\xc8\xc2\x9d\xb7\x49\xed\x63\x98\x4e\x1b\x1c\x92\x0c\x50\xf2\ +\x9a\x54\xa5\x6d\x10\xc6\x16\x4d\x72\x4a\xa4\xae\x58\xb8\xab\xae\ +\x2b\xaa\xd3\x75\xd5\x36\x3c\x26\xdb\xe4\x0f\x03\xc0\xe0\x0b\x54\ +\x9c\x67\x7d\x58\xce\x19\x39\x80\xad\x49\xe4\xf2\xe4\xae\x27\x8f\ +\x27\x27\x1b\x1c\x58\x27\x20\x5a\x77\x5c\x66\xf3\x64\x93\x64\xbd\ +\xed\x36\xa2\x53\x5f\xe4\x2e\x33\x93\x6c\x73\xec\xf6\xd5\xca\x5c\ +\x52\x9e\xcf\xc7\x32\xb8\x3c\x08\x95\x7c\x6b\xca\x30\x0e\xcb\xb0\ +\x3b\x15\x8d\x04\xf6\x82\x1a\x4f\xf2\x78\xbd\xf8\xed\xe3\xcf\xed\ +\x49\x8f\xa2\xc5\xbf\x6c\xfe\xb9\x3b\x9c\xce\x20\x7c\xb4\x7b\x40\ +\xbe\xe5\x03\x77\x89\x18\x2d\xd6\x36\xdf\x86\xe5\x43\xb2\x85\x5c\ +\x77\x97\xbe\x7f\x3d\x6e\x53\x38\x9f\xad\x62\x60\xec\xc0\xe9\x26\ +\xad\xa7\xcd\x4d\x7d\x05\x3c\x79\x0f\x1e\x47\xdb\xc4\x0d\x0a\xfe\ +\x51\x26\x69\xfa\xab\x5b\xa4\x65\x84\x76\xd2\xa4\x4c\x4d\x27\x5c\ +\x06\xe7\xdd\x37\xbc\xd1\x73\x6e\x19\x34\xde\x57\x4f\x9b\x0e\x95\ +\xc1\x21\x69\x03\x9b\x86\x8f\x06\x32\xf6\xef\x4e\x39\xbb\xcc\x8b\ +\xdc\xee\x77\x5b\x1b\x9b\xf3\xf0\x16\x4d\xe0\xc0\x11\xb5\x03\x77\ +\xa5\x8b\x7b\x84\x38\x8f\xd9\x7b\xf7\xe0\x9d\x79\x63\x81\xeb\xc7\ +\x7c\x9f\x9a\x85\x79\x36\x99\x8d\xe3\xf7\x45\x99\xdb\xcf\xc6\xd9\ +\xbb\xcf\xf9\xb1\x3e\x1c\x0b\xec\x63\x2d\xa4\x26\x84\x35\x72\x40\ +\xc8\xe4\x29\x64\x6f\xb9\x68\x65\x71\x08\xbc\x93\xe7\xe1\x69\x91\ +\xd9\xcc\x34\xd2\x76\xcd\x41\x62\xba\xed\x42\x32\x74\xfd\x4d\x73\ +\x0a\xa5\x0f\x0c\xdc\x27\xe9\xb6\x32\x30\x9f\x30\xcd\x45\x37\x0f\ +\xa4\x27\xa7\x3e\x34\x3d\xbc\xd7\x3f\x41\x7e\x32\xe1\x73\x44\x69\ +\xaf\x82\xe7\xc7\xaa\x14\x21\xa5\x04\xea\x66\xce\x4f\x75\x67\x0a\ +\x45\x5d\x75\xd2\x32\x0f\xb3\xc2\xe5\x11\x64\x6d\x58\xe6\xc9\xf1\ +\x0d\x7e\x87\xde\x41\xcd\x52\x1c\x21\x2a\x24\x7d\x87\x60\x4d\x21\ +\x09\x65\x04\x14\xe8\x6d\xe7\xd7\x9f\xdd\x97\x4f\x19\xb4\x77\xe6\ +\x6d\xbd\xe9\x47\xf1\xea\x46\xa0\x03\xc1\xee\x1b\x36\x22\x10\xb4\ +\xdc\x40\xe4\xc3\x8d\xd4\x8e\x71\x21\x61\x93\xfa\x0b\x20\x80\x29\ +\x21\xbe\x46\x40\x7f\xb4\x8f\x2c\x25\xd0\xe3\x33\xa6\x26\x4a\x34\ +\x87\x6c\x60\x54\xaa\x2f\xc7\xae\x89\x34\x95\x3d\x14\x46\xd9\x19\ +\x86\x90\x6d\xdf\x9a\x9d\x58\x2a\x0e\x30\x7c\x4b\x76\x4e\xc6\x60\ +\xb0\xd7\xf5\xba\x5a\xfb\x1b\xf7\x8a\xa0\x7f\x57\x4c\x93\xff\xe5\ +\x49\x02\x7c\xf5\x7f\x71\x92\x04\x84\x16\x4a\xf8\xe0\x24\x41\x54\ +\x89\x26\x8c\x0d\x4e\x12\xf6\x25\x95\x84\xf5\x42\xfd\x67\x27\x49\ +\x48\xc6\xc9\x97\xcf\x11\x58\xc1\x9b\x26\x93\x2e\x7d\x05\x74\x7b\ +\xf4\x7c\x8c\xda\x00\x98\x34\x4d\x76\x85\x19\xc5\x60\x88\xf8\xe2\ +\xde\x08\xf7\xd5\x82\x5d\x37\x58\x43\xb0\x11\x74\x9f\x4a\x32\xad\ +\x55\x23\x4f\x93\xcc\xc0\x09\x5c\x00\x89\x66\x71\x5f\xf8\x6f\x9b\ +\x64\x8b\x2a\x14\x13\x71\x21\x3e\xff\xca\xc8\xbc\xaf\xfb\xc5\x05\ +\x54\x93\x37\xf7\x5d\xb7\xfc\x76\x10\xb1\x5d\x58\x3e\x29\xd5\x01\ +\xed\xba\x2e\x0c\xa0\x62\xe8\xb9\xba\x98\xb8\x6e\x8b\x40\xbb\x85\ +\x14\x62\x64\x84\xbf\x6b\x9e\x89\x1e\xc1\x8f\x34\xa7\x04\x5e\xb1\ +\x6f\x17\x47\x36\x89\xa3\x47\x87\x48\x42\x22\x0b\x2d\x19\x1d\x22\ +\x29\x7d\x4d\x31\x51\x6c\x80\x24\x6c\x88\x53\xe7\xdb\x08\x4a\xc9\ +\x18\x96\xf0\xf2\x7d\xbb\x50\xa2\x69\x28\xc5\x10\x4a\x09\x2f\xc3\ +\x54\x69\x31\x4e\x4a\x0c\x9d\x70\x0f\xe0\x1a\x4a\x09\x04\x8c\xc9\ +\x08\x49\x8a\xe0\x4d\x8f\xdd\x2e\x90\x44\x4c\x03\x29\x07\x40\x12\ +\x68\x19\xb0\x80\xf6\x65\x9c\x93\x88\x72\x4d\xc5\x08\x48\x4d\x11\ +\xc1\x42\x8c\x90\xe4\x5a\x0a\x81\xc8\x0d\x43\x49\xa6\xa1\xbc\x20\ +\x4a\x2d\x15\xe2\x6c\x00\x25\xd6\x3e\x92\x8a\xaa\x71\xa1\xfa\x3e\ +\x89\x12\x4f\x17\x1c\x8f\x5e\x52\xa5\x82\xa2\xcf\xf9\x10\x4b\xe9\ +\x2b\x84\xc5\xf8\x78\x7f\xa7\x4c\x89\xaf\x14\x1d\x31\xce\x4b\xe9\ +\x4b\x78\x93\x40\xfa\x22\x2f\x19\xc4\x43\xff\xe0\x4a\xf7\x9b\xde\ +\x2b\x5c\x39\x2a\x3b\x04\x8e\xa8\xe4\x52\x90\x21\x94\x02\xde\x52\ +\x04\x51\x64\x92\x2d\xe9\xf7\xc6\x96\xe8\x4a\xe1\x21\xc3\xac\x24\ +\x3e\x72\x77\xb3\x6a\x00\xa5\xf0\xa9\xc0\x1c\xe1\xf1\x0b\xf2\xf7\ +\xc9\x96\xe8\x4a\xdd\xa1\x9e\xbe\x60\x4b\xa0\xbb\x61\xe1\xe1\x3e\ +\x74\x42\xd0\x6c\xf2\x1f\x6c\x59\xff\xd1\xd7\x35\xb6\xc4\x63\xb6\ +\x54\xf0\xba\xa3\xc9\x38\x2f\x09\x83\xe3\x2c\x7f\xb0\xa5\xfb\x13\ +\xc5\x6b\x6c\x49\xc6\x6c\x89\x01\x1f\x36\x2c\xe2\xcc\x87\xa2\x43\ +\x35\x1f\x17\x9e\xaf\x61\xcb\x65\xb0\x79\xb8\x5b\xba\x7b\xd5\x87\ +\xbb\xff\x00\x92\xa3\x93\xf5\ +\x00\x00\x08\x75\ +\x00\ +\x00\x59\x6c\x78\x9c\xe5\x5c\xdb\x8e\xe3\x36\x12\x7d\xef\xaf\xd0\ +\x6a\xb0\x48\x06\x3b\xa4\x48\x51\xf7\xb6\x1d\x60\x77\x10\x24\x40\ +\xf6\x65\x93\xc5\x3e\x06\x6a\x89\xed\xd6\x8e\x2c\x19\x92\xdc\xb6\ +\xe7\x6b\xf6\x5b\xf2\x65\x29\x52\x17\x4b\xb6\xbc\x99\x8c\xe4\xa4\ +\x7b\xa8\x46\x63\x46\x55\x45\x91\x3c\x75\xaa\x78\x11\x5b\x8b\x6f\ +\x0e\x9b\x54\x7b\xe6\x45\x99\xe4\xd9\x52\xa7\x98\xe8\x1a\xcf\xa2\ +\x3c\x4e\xb2\xf5\x52\xff\xf7\x4f\xdf\x22\x4f\xd7\xca\x2a\xcc\xe2\ +\x30\xcd\x33\xbe\xd4\xb3\x5c\xff\x66\x75\xb7\xf8\x0b\x42\xda\x3f\ +\x0a\x1e\x56\x3c\xd6\xf6\x49\xf5\xa4\x7d\x9f\x7d\x28\xa3\x70\xcb\ +\xb5\xaf\x9f\xaa\x6a\x1b\x18\xc6\x7e\xbf\xc7\x49\x23\xc4\x79\xb1\ +\x36\xde\x6a\x08\xad\xee\xee\x16\xe5\xf3\xfa\x4e\xd3\x34\xa8\x37\ +\x2b\x83\x38\x5a\xea\x4d\x81\xed\xae\x48\xa5\x61\x1c\x19\x3c\xe5\ +\x1b\x9e\x55\xa5\x41\x31\x35\xf4\x93\x79\x74\x32\x8f\x44\xed\xc9\ +\x33\x8f\xf2\xcd\x26\xcf\x4a\x59\x32\x2b\xdf\xf4\x8c\x8b\xf8\xb1\ +\xb3\x16\xad\xd9\x33\x69\x44\x7d\xdf\x37\x88\x69\x98\x26\x02\x0b\ +\x54\x1e\xb3\x2a\x3c\xa0\x61\x51\x68\xe3\x58\x51\x93\x10\x62\x80\ +\xee\x64\xf9\x69\x56\x41\x09\x80\x6e\xe1\xb7\x33\x6f\x05\xb8\xcc\ +\x77\x45\xc4\x1f\xa1\x1c\xc7\x19\xaf\x8c\xf7\x3f\xbd\xef\x94\x88\ +\xe0\xb8\x8a\x7b\x8f\x69\xf1\x1c\xd4\x3a\x00\x39\x0b\x37\xbc\xdc\ +\x86\x11\x2f\x8d\x56\x2e\xcb\xef\x93\xb8\x7a\x5a\xea\xcc\xc2\x94\ +\xc1\x65\x4b\xe1\x13\x4f\xd6\x4f\xd5\xb9\x34\x89\x97\x3a\xb4\xde\ +\xf4\xbd\xfa\xbe\x47\x0e\x5a\x1b\x34\x0f\x0e\x3a\x0d\xc1\xbe\x89\ +\xa9\x56\x50\x9b\xb9\xb5\x4d\xdb\x85\x20\xce\x23\xd1\x26\x78\x24\ +\xdf\x24\xe1\xae\xca\x37\xe0\xb5\x28\x4a\xc3\xb2\x4c\x1e\x93\x08\ +\x6e\xf2\x6c\x9b\xee\xd6\x49\xf6\x73\x54\xe4\x65\xf9\xf3\x50\x85\ +\x5b\x1c\xbb\x4a\xf9\x61\x9b\x17\x15\x3a\xc4\x5b\x40\xd3\x71\x47\ +\x95\xc7\x56\xb9\x02\xed\x22\xe6\x8f\xa5\xb0\xaa\xbb\x26\xee\xa0\ +\x6f\xae\xae\x19\x52\xdb\xb5\x54\x34\x33\x7e\x4e\xf8\xfe\x64\xfb\ +\x10\x96\x35\x7c\x9a\xb6\x0d\xd7\x40\xb5\x34\x2f\x96\xfa\x9b\x47\ +\x79\x35\x8a\x87\xbc\x88\x79\xd1\xaa\x1c\x79\x0d\x54\x39\xb8\x23\ +\xa9\x8e\x75\x70\x35\xcf\x6e\xdb\x2b\x9e\xda\xe9\xc9\xb8\xbe\x7c\ +\x0a\xe3\x7c\xbf\xd4\xcd\x73\xe5\xc7\x3c\xdf\x2c\x75\x1b\xdb\xbe\ +\xe7\x13\x7a\xae\x8d\x0e\x4b\x1d\xd9\x26\x76\x2c\xe6\x78\x17\x65\ +\x23\xa8\x0f\x51\x8a\x99\xe7\x38\xd6\x85\x72\x57\x14\x10\x7d\x28\ +\x0d\x8f\x1c\x3a\x25\xff\x69\x9f\x5f\x3e\xe5\xfb\x75\x21\xc0\xa9\ +\x8a\x1d\x3f\x2f\x29\x34\xe8\xe1\x21\x3f\x8c\xab\x81\x0c\x3b\x11\ +\xd7\x68\x97\x25\x15\xc4\xce\xf6\xd0\x7f\xea\x2e\x89\x79\x39\x5e\ +\xb0\xcc\xc2\x2d\x5a\xa7\xf9\x43\x98\x8e\x1b\xec\x93\x0c\x40\x42\ +\x0d\xcd\x29\xeb\x7c\x70\x6e\xd1\x72\xde\x25\xde\x15\x0b\x68\xfb\ +\x85\x1f\x1a\xd5\xf1\xba\x6a\x13\x1e\x92\x4d\xf2\x91\x03\x30\x54\ +\xd2\x0e\xa8\x35\x80\xa5\x2e\xa6\x69\xd5\x51\xc4\xef\xe1\x28\x64\ +\x7a\x2b\x14\x78\x0a\x81\xe9\xfb\x6e\x27\xcc\x8b\x04\xc2\xa2\xd7\ +\x9c\x56\x74\xec\x8b\x44\xb4\x43\xb2\x3e\x48\x7e\x49\xf6\xb9\xe7\ +\xba\x63\x5f\xd7\xd0\xde\xb8\xe4\xbd\x94\x6f\x78\x15\xc6\x61\x15\ +\x9e\x82\xa0\x95\x40\xdb\x48\xdb\x33\x48\x9c\xc1\xbf\xde\x7f\xbb\ +\x6a\x2a\x5a\x44\x51\xf0\x9f\xbc\xf8\xd0\xd6\xab\x69\xc2\x20\x7c\ +\xc8\x77\x80\xb4\xbe\xea\xc4\x8b\x38\x0a\x20\xd5\x41\x0a\x58\x25\ +\x1b\xa0\xb6\xc8\x92\x7f\x83\xd4\xb6\x30\x4e\x8a\x81\xb1\x00\xeb\ +\xf4\xd0\xfa\xb1\x05\xaf\x73\xe6\xe8\xc0\x11\x47\x9b\x44\x14\x32\ +\x7e\xac\x92\x34\xfd\x5e\x54\xd2\xf4\xb8\xf7\xd0\xa4\x4a\xf9\x49\ +\xb8\x30\x9a\xd6\x37\x7d\x33\x7a\x9d\x5b\x18\x6d\xef\xe5\xdd\xfa\ +\x84\xca\x20\x28\x3a\x47\xa7\xe1\x03\x07\x86\xfe\x20\x94\xda\x85\ +\x76\x5d\xe4\xbb\xed\x26\x8f\x79\x53\xbc\x43\x93\x47\x55\xe7\xb2\ +\xea\x98\x82\xfe\x11\x5a\x1f\xbc\x09\x89\x19\x99\xd1\xbd\xb8\x41\ +\x4d\x9a\x08\x68\x7d\x5b\xec\x52\x48\x77\xcf\x3c\xcb\xe3\xf8\xbe\ +\xac\x8a\xfc\x03\x0f\x9a\xc4\xd4\xdc\xd6\xc1\x10\x10\x6c\x31\xdf\ +\x12\xbe\x6f\xe5\x80\x10\x2f\x52\x60\x6b\x15\x58\xad\x2c\x0e\x21\ +\xcd\x14\x45\x78\x0c\x32\x18\xe6\x5b\x69\x57\xe7\x80\xa8\xa2\xb9\ +\xb6\xc7\x7c\x44\x91\x87\x4e\xaa\x26\xf6\x6c\xcc\xd8\x69\x30\x11\ +\x57\x1b\x72\x16\xf6\xa5\xc6\xea\x34\x82\xb4\x04\x9f\x91\x56\x66\ +\xa6\x0b\x2a\x17\x83\x38\x28\x24\xa5\x1d\x4b\x5c\x4e\xe7\xe0\x57\ +\x0d\xa4\x7f\x0b\x20\x29\xc3\xee\xd0\xf2\x8b\xc7\x91\x22\xfb\x16\ +\x48\x7a\xd8\x23\xe2\x32\x67\x42\x92\x10\x0f\x7e\x5e\x34\x92\xee\ +\x2d\x70\x34\x19\x76\xd4\x81\x10\xc8\x78\x13\x36\x52\x0f\x0f\x66\ +\x9a\x0a\x40\xe9\xdf\x86\x8f\x8c\x61\x4b\x9d\x91\x66\x22\x82\x64\ +\x80\x1c\xf6\x66\xe5\xe0\xcb\x46\x0e\x38\x68\x4d\x44\xef\xd2\x5c\ +\xc1\xa9\x8e\x37\x27\x05\x15\x9b\xde\x90\xc9\x14\x1c\xa0\xa7\xd8\ +\x94\x86\xb0\x39\xc1\x53\x67\x1e\x43\x26\x0f\xbc\xc3\x98\x55\x6e\ +\xea\x32\x7d\x91\x3c\x3a\x72\xcc\x3d\x73\x79\xe1\x40\x42\xf2\x9b\ +\x8c\xe3\x30\x82\x3d\x6c\x4b\x13\x85\xf0\x9b\x77\x00\x51\x6b\xee\ +\xdc\x20\x68\xce\x89\xa0\x6a\xb3\x3f\xb1\x90\xb3\xa6\x72\xd0\x74\ +\xce\x47\x10\xb9\x1a\x71\xd9\x9c\xd1\xfc\x0a\x80\xa4\x93\x07\xe6\ +\x51\x24\x81\x93\x73\xcd\x08\x5f\x05\x88\xf6\xe4\x0d\xc3\x51\x18\ +\xbd\xf3\xcd\x86\x2f\x7a\x74\x69\x76\x68\x26\x67\xc7\xf1\xd8\x66\ +\xf5\x43\x94\xa1\xa5\x85\xcc\xa9\xeb\x64\x93\xe2\x33\xa1\x52\xa1\ +\xed\xa1\xa9\xab\x3d\x3a\xa0\x20\x9d\x6f\xb9\xf7\xc2\x91\x93\xb3\ +\x1c\x6b\x2a\xfd\xa8\xc2\xb9\x90\xb0\xe9\x5b\xd5\x03\xf8\x4c\xb5\ +\x56\x7a\x14\x39\xd3\x87\xe4\xb1\xf4\xa7\x18\x8e\x04\xc6\xe3\x79\ +\xe3\x98\xaa\xb5\x64\x16\x03\xb1\x83\xd8\xd4\x5d\x87\x51\x2e\x2a\ +\x07\xa5\xd8\x06\x43\x3e\xb9\x05\x96\x73\xcf\x0f\x5f\x38\x96\xcd\ +\x4e\xce\xf4\x73\x0e\x2a\x4f\xb2\x9b\xcd\x1c\xe4\x3b\xb3\xa2\xa8\ +\xce\x0c\xbb\xde\xca\x99\xbc\xe0\xeb\xf1\x4d\xd9\x5d\x1c\x34\x95\ +\x83\x43\x10\xd5\xe2\xa0\x08\xe5\xa9\xb3\x9c\x21\x7e\xea\xac\xf5\ +\xba\x0d\xb0\xc9\x6f\x56\x86\x08\xaa\xb5\xde\x93\x67\xe5\x60\x28\ +\x99\xba\xe8\x1b\x62\xa8\xd8\x62\xa5\x3d\x2d\x87\x88\x33\xf3\x98\ +\x32\xdf\x4c\x7b\x08\xdb\xab\x80\x54\xee\xc9\x4e\xde\x0b\x43\xcc\ +\x3d\x9f\x1c\xfe\xee\x19\x63\x2b\xad\x8a\x30\x2b\xc5\x59\xff\xa5\ +\x5e\x46\x61\xca\xbf\x46\xf4\x1d\x7d\xfb\xc5\x10\x58\x4e\x2c\xa7\ +\xbe\xe1\x3a\xcb\x04\x1e\x56\xe4\x80\x13\x9d\xbe\x5f\x31\x7a\xc6\ +\x73\xe6\x93\x8a\xaf\x85\x89\xb7\xc0\x72\xee\x53\x13\x2f\x9d\x91\ +\x13\x31\x1c\x3f\xb9\xa3\xda\xc9\x59\x6f\x6a\x58\x8f\xc2\xa8\xd8\ +\xe9\x4f\xf9\x5a\xf0\x16\x38\x2a\x76\x0e\x94\x4e\x5e\x6e\x8f\xa2\ +\xa8\xce\x81\x50\xb9\x2d\x7e\x93\x80\x56\xed\x68\xa8\x35\xc3\xaa\ +\x71\x9c\x8c\x8a\x8d\xd2\xf5\x3e\xd0\x44\x24\x47\xcf\x9e\xcc\xb8\ +\x19\xf4\xe2\xe9\xd8\xad\xc0\x6f\x02\xa4\x72\x2f\xbc\xda\xe5\xe0\ +\x2d\xd0\x54\x67\x4d\x38\xef\x51\x0a\xe5\x5e\x30\x4c\x3e\x90\x37\ +\xfa\xc2\x55\x35\x14\xbd\xe9\xe7\xc9\xc6\x4f\x01\x28\xf4\xaa\x41\ +\x4c\x76\x6e\x72\xaa\x51\xad\xb7\x0d\xf5\x8b\x6b\x6f\xde\xe3\x8d\ +\x33\x0e\x27\x2f\x1c\xbe\x66\xd2\x3d\x79\x63\x67\xfc\x80\x99\x42\ +\x30\x7a\xb7\x3a\xed\x3d\xf7\x8b\xaf\x06\x99\x01\x92\xe4\xff\x20\ +\x49\x2c\xb1\x19\x32\x44\xd2\xc2\x1e\xf1\x6d\xdf\xf7\xbc\x11\x24\ +\x61\x34\x94\xfb\x27\xc4\xfe\x5c\x48\x4d\xdf\xbf\xfc\xd3\x7c\x82\ +\x99\x4b\x98\xe3\x5f\x42\xe9\x61\xd7\x22\x2e\xf3\xfa\x50\x12\xec\ +\x99\xbe\xc3\x88\x3d\x5c\x51\x63\xe6\x9b\xb6\x6f\xd9\x03\x2c\x3d\ +\x90\x12\xe6\xdb\xe6\x00\x53\x1b\xbb\xbe\xcd\xfc\xde\x47\x02\xba\ +\x0f\x17\x75\xef\x6c\x50\xc4\x33\xe8\xb7\xf8\x46\x16\x72\xb0\x4b\ +\x1d\x62\x79\xee\x27\xd8\x1f\xa5\xbd\xe5\x7b\xae\xe3\xd8\x27\x9f\ +\x6d\xc3\xea\x69\xcc\x67\x3d\xd4\x44\x24\x5c\xfa\x83\x02\xb3\x1d\ +\x66\x41\x87\xb7\x87\x56\x93\x26\x19\x87\xda\x83\x87\x5d\x55\xf5\ +\x65\xff\xcd\x93\x2c\x90\xee\xba\xee\x08\xf0\xc3\x3f\x35\x44\xb1\ +\x2b\x2f\xf3\x1d\x2c\x56\xe4\x17\xf1\x98\xf6\x9d\x66\x99\xe7\xe3\ +\x8b\x70\x9b\x68\x3a\x03\xdb\xcb\xce\x47\x79\x06\x0d\xa9\xf2\x02\ +\x45\xbb\xe2\x39\xac\x76\x05\x17\xf4\xed\x3a\x5d\xf1\x43\x47\xd4\ +\xc3\x26\x0d\xe4\xe7\xfa\xe0\x81\x05\x2f\x79\xf1\xcc\xf5\x73\x40\ +\xf2\xac\x42\xf2\xff\x00\x4b\xb1\x09\xd3\x7b\x29\xd9\x4b\x32\x04\ +\x0f\x79\x1a\xd7\x82\x32\xf9\xc8\x03\x6a\x36\x7b\x79\xd4\x07\x60\ +\x44\xef\x9b\x0f\x9e\x05\xe4\xaf\xb5\xd9\x63\xb8\x49\xd2\x63\x50\ +\x82\x83\x10\xd4\x97\x3c\xde\xa3\xb6\xe5\xa8\x7e\xce\x96\x47\xdd\ +\xe7\xf7\x82\xaf\x7e\x04\x43\xed\xef\x50\xcb\x57\xf7\x29\xaf\x84\ +\x2f\x9b\x8f\x8a\x05\x04\x6a\xd8\xe7\x45\x3c\x10\xb4\xc9\x4b\xba\ +\xec\x2c\x79\x35\x0e\xed\x87\x44\x9b\xa7\xcc\x1a\x6d\xeb\xd3\xf3\ +\xd4\x20\x8d\x40\x04\x7a\xb6\x3f\xdc\x01\xf1\x21\x2a\x2d\x9f\x0d\ +\x83\x4d\x60\xcf\x3c\xea\x8b\x83\x5f\x9d\xe2\xe2\x8d\x24\xc5\x84\ +\x51\xcb\xa4\xe6\x3b\x82\x7d\x07\x82\xc2\x21\xf4\xad\xbe\x5a\x54\ +\xd0\xd3\xac\x2d\xd5\xfb\xc6\x61\x91\x0b\x47\x09\xb4\xf5\x93\x56\ +\x56\x27\x0a\x30\xcf\xa4\xa8\x7f\x24\x7c\xbc\xcd\x57\x5a\x3d\xe4\ +\xc1\x55\xaf\xfb\xa6\x4b\x2d\xfb\xcc\xe7\x14\x9b\xf6\x64\xaf\xff\ +\xb6\x47\xa7\x78\x71\x65\x2e\x0c\x89\xd2\xef\x44\xf7\x2a\x82\x96\ +\x8d\x3d\x87\x79\x8e\x32\x08\x8e\x32\x0e\x92\xec\xea\x97\xff\x75\ +\xd0\x1a\x82\xf7\xb7\x48\x3f\x7d\xd1\x67\x27\xa0\x9b\xe5\x95\xee\ +\x8f\x6b\xcd\x7e\xb6\xa0\x30\xb0\x5a\xd4\xa5\xde\x60\xa0\xb4\xb1\ +\x45\x4c\xdb\x76\xae\xa6\x8b\x3f\x3e\x61\x20\x3a\x24\xfc\x65\xc3\ +\xaf\x34\xfd\x4f\x67\xfc\x35\x2f\xac\xe8\x67\x47\xfb\x95\xce\x33\ +\x8a\x6d\x87\xf6\x27\x21\x67\xcc\xfd\xdc\xbe\xfe\x16\x91\xce\xc2\ +\x0d\x39\xe3\x01\xb7\x30\xd6\xab\xbb\x85\xf8\xce\xe5\xea\xee\x57\ +\xee\x92\xd2\xac\ +\x00\x00\x16\x64\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x73\ +\x65\x74\x5f\x63\x75\x6d\x75\x6c\x61\x74\x69\x76\x65\x5f\x73\x74\ +\x72\x65\x74\x63\x68\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ +\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ +\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ +\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x31\x2e\x31\x32\x37\ +\x38\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x79\x3d\x22\x31\x37\x2e\x39\x39\x37\x31\x35\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ +\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ +\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\ +\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ +\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\ +\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ +\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ +\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ +\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ +\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ +\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ +\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\ +\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ +\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x66\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\ +\x38\x33\x37\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\x2e\x34\x35\ +\x31\x31\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\ +\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\ +\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\x2c\x30\x2e\x35\x33\x36\ +\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x38\x39\x33\x37\ +\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\x39\x38\x2c\x30\ +\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x37\x2e\x37\x39\ +\x39\x37\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x33\x35\x2e\x39\x38\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\ +\x33\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\ +\x30\x34\x39\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\ +\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\ +\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x32\x33\x2e\x33\x32\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ +\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\ +\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\ +\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ +\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\x30\ +\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\x34\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ +\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x2d\x34\x2e\x30\x34\x30\x31\x33\x38\x34\x65\x2d\x31\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x33\x2e\ +\x38\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x65\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\ +\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ +\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\ +\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\ +\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\ +\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ +\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\ +\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\ +\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\ +\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\ +\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\ +\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\ +\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\ +\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\ +\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\ +\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\ +\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\ +\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\ +\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\ +\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\ +\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ +\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ +\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\ +\x36\x32\x37\x65\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\ +\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\ +\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ +\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x20\x63\x20\x2d\x34\x2e\x30\x37\x34\x32\x30\x34\x2c\x30\x2e\x30\ +\x30\x31\x34\x20\x2d\x38\x2e\x33\x37\x31\x35\x35\x35\x35\x2c\x33\ +\x2e\x39\x39\x32\x38\x32\x33\x36\x20\x2d\x39\x2e\x36\x2c\x36\x2e\ +\x34\x20\x43\x20\x35\x2e\x31\x37\x31\x35\x35\x35\x35\x2c\x39\x2e\ +\x38\x37\x33\x38\x34\x33\x20\x33\x2e\x30\x38\x34\x32\x38\x33\x2c\ +\x31\x38\x2e\x39\x31\x31\x35\x36\x34\x20\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x2c\x32\x35\x2e\x36\x20\x30\x2e\x30\x35\x37\x38\x35\ +\x38\x36\x37\x2c\x32\x38\x2e\x39\x34\x34\x32\x31\x38\x20\x2d\x31\ +\x2e\x38\x30\x38\x38\x30\x38\x2c\x33\x30\x2e\x32\x37\x37\x35\x35\ +\x31\x20\x2d\x32\x2e\x33\x35\x36\x36\x30\x36\x2c\x33\x30\x2e\x37\ +\x37\x34\x38\x33\x20\x2d\x32\x2e\x39\x30\x34\x34\x30\x34\x31\x2c\ +\x33\x31\x2e\x32\x37\x32\x31\x30\x39\x20\x2d\x33\x2e\x32\x2c\x33\ +\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x32\x2c\x33\x30\ +\x2e\x39\x33\x33\x33\x33\x33\x20\x63\x20\x30\x2e\x37\x30\x36\x38\ +\x37\x35\x37\x2c\x30\x2e\x31\x35\x38\x36\x32\x39\x20\x30\x2e\x34\ +\x34\x30\x34\x38\x31\x33\x2c\x31\x2e\x30\x31\x35\x33\x37\x32\x20\ +\x30\x2e\x31\x33\x30\x35\x36\x35\x31\x2c\x31\x2e\x38\x30\x34\x30\ +\x38\x37\x20\x2d\x30\x2e\x33\x30\x39\x39\x31\x36\x32\x2c\x30\x2e\ +\x37\x38\x38\x37\x31\x33\x20\x2d\x30\x2e\x36\x36\x33\x33\x35\x34\ +\x31\x2c\x31\x2e\x35\x30\x39\x33\x39\x39\x20\x2d\x30\x2e\x31\x33\ +\x30\x35\x36\x35\x31\x2c\x31\x2e\x33\x39\x35\x39\x31\x33\x20\x30\ +\x2c\x30\x20\x30\x2e\x32\x36\x30\x34\x35\x35\x36\x2c\x31\x2e\x35\ +\x33\x32\x30\x34\x31\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x2c\ +\x30\x20\x31\x2e\x38\x37\x32\x38\x37\x37\x37\x36\x2c\x2d\x31\x2e\ +\x35\x33\x32\x30\x34\x20\x35\x2e\x33\x35\x38\x31\x37\x37\x36\x2c\ +\x2d\x33\x2e\x39\x39\x34\x38\x32\x37\x20\x36\x2e\x34\x2c\x2d\x38\ +\x2e\x35\x33\x33\x33\x33\x33\x20\x43\x20\x37\x2e\x34\x31\x36\x39\ +\x37\x38\x31\x2c\x31\x36\x2e\x35\x32\x32\x39\x38\x38\x20\x39\x2e\ +\x35\x37\x36\x37\x38\x34\x2c\x35\x2e\x32\x38\x32\x39\x30\x35\x31\ +\x20\x31\x36\x2e\x31\x37\x35\x35\x34\x39\x2c\x35\x2e\x33\x32\x34\ +\x32\x38\x35\x20\x32\x32\x2e\x34\x2c\x36\x2e\x34\x20\x32\x31\x2e\ +\x33\x33\x33\x33\x33\x33\x2c\x39\x2e\x36\x20\x32\x36\x2e\x36\x36\ +\x36\x36\x36\x37\x2c\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\x63\ +\x20\x32\x2e\x34\x31\x37\x33\x38\x34\x2c\x36\x2e\x32\x38\x35\x32\ +\x20\x36\x2e\x34\x2c\x39\x2e\x36\x20\x31\x30\x2e\x36\x36\x36\x36\ +\x36\x36\x2c\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x20\x36\x2e\x34\ +\x2c\x31\x2e\x30\x36\x36\x36\x36\x37\x20\x35\x2e\x33\x33\x33\x33\ +\x33\x34\x2c\x30\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x30\x20\ +\x43\x20\x34\x34\x2e\x38\x2c\x33\x32\x20\x34\x33\x2e\x37\x33\x33\ +\x33\x33\x33\x2c\x33\x35\x2e\x32\x20\x34\x32\x2e\x36\x36\x36\x36\ +\x36\x37\x2c\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x34\x31\x2e\ +\x39\x32\x34\x35\x30\x33\x2c\x33\x31\x2e\x31\x38\x30\x37\x32\x31\ +\x20\x33\x35\x2e\x30\x35\x38\x33\x34\x37\x2c\x33\x32\x2e\x33\x32\ +\x36\x32\x35\x32\x20\x33\x32\x2c\x32\x35\x2e\x36\x20\x32\x38\x2e\ +\x39\x34\x31\x36\x35\x33\x2c\x31\x38\x2e\x38\x37\x33\x37\x34\x38\ +\x20\x32\x37\x2e\x34\x38\x30\x35\x39\x35\x2c\x31\x31\x2e\x33\x30\ +\x39\x36\x35\x33\x20\x32\x35\x2e\x36\x2c\x37\x2e\x34\x36\x36\x36\ +\x36\x36\x37\x20\x32\x33\x2e\x37\x31\x39\x34\x30\x35\x2c\x33\x2e\ +\x36\x32\x33\x36\x38\x20\x32\x31\x2e\x37\x35\x39\x31\x38\x37\x2c\ +\x31\x2e\x31\x31\x34\x34\x33\x35\x35\x20\x31\x36\x2c\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ +\x3d\x22\x63\x7a\x73\x73\x63\x73\x63\x73\x73\x63\x73\x63\x63\x63\ +\x73\x7a\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\ +\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ +\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ +\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\ +\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\ +\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\ +\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\ +\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\ +\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\ +\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ +\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\ +\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x38\x39\ +\x38\x39\x38\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x36\x36\x36\ +\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\ +\x74\x33\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\ +\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x34\x2e\x32\x36\x36\x36\x36\x36\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\ +\x73\x69\x7a\x65\x3a\x32\x35\x2e\x36\x30\x30\x30\x30\x30\x33\x38\ +\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\ +\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ +\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x32\x22\x3e\x25\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\ +\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x0f\xa5\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x67\x62\x5f\x74\ +\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x2d\x31\x31\x2e\x35\x31\x30\x33\x33\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x37\ +\x2e\x30\x35\x35\x33\x31\x32\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\ +\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ +\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\ +\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x67\x75\x69\x64\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x70\x6f\x73\x69\x74\x69\x6f\x6e\x3d\x22\x33\x32\x2e\ +\x30\x30\x30\x30\x30\x31\x2c\x2d\x32\x2e\x31\x33\x33\x33\x33\x33\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x65\x6e\x74\ +\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2c\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x67\x75\x69\x64\x65\x34\x34\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x6f\x63\x6b\x65\x64\x3d\x22\x66\x61\x6c\x73\x65\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ +\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ +\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ +\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ +\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ +\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ +\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\ +\x64\x34\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x2e\x31\x38\x33\x37\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\ +\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x34\x2e\x35\x37\x31\x35\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x31\ +\x2e\x32\x36\x39\x31\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\ +\x37\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\ +\x2e\x30\x33\x34\x31\x36\x31\x36\x38\x2c\x2d\x30\x2e\x39\x39\x39\ +\x34\x31\x36\x33\x32\x2c\x30\x2e\x35\x36\x35\x33\x35\x36\x39\x31\ +\x2c\x30\x2e\x38\x32\x34\x38\x34\x36\x33\x39\x2c\x30\x2c\x30\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x30\x33\x34\ +\x31\x36\x31\x36\x38\x2c\x2d\x30\x2e\x39\x39\x39\x34\x31\x36\x33\ +\x32\x2c\x30\x2e\x36\x34\x30\x35\x32\x31\x39\x35\x2c\x30\x2e\x37\ +\x36\x37\x39\x33\x39\x38\x36\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x39\x31\x37\x31\ +\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ +\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x38\x2e\x37\x32\x31\x38\x34\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x35\x2e\x31\x37\x36\x33\ +\x35\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\ +\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\x31\x37\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\x39\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\ +\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x39\x2e\x38\x34\ +\x30\x35\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x2d\x30\x2e\x34\x36\x31\x32\x31\x35\x34\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ +\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x2d\x30\x2e\x30\x33\x34\x31\x36\x31\x36\x38\x2c\x2d\x30\ +\x2e\x39\x39\x39\x34\x31\x36\x33\x32\x2c\x30\x2e\x37\x30\x31\x34\ +\x36\x35\x32\x36\x2c\x30\x2e\x37\x31\x32\x37\x30\x33\x36\x35\x2c\ +\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\ +\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\ +\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\ +\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ +\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\ +\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\ +\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\ +\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\ +\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\ +\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\ +\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\ +\x73\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\ +\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\ +\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x30\x2e\x32\x31\x35\x35\x37\x30\x32\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x32\x31\x2e\x34\x35\x36\x35\x32\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\ +\x74\x33\x37\x36\x31\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\ +\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x30\x2e\x32\x31\x35\x35\x37\x30\x32\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x31\x2e\x34\x35\x36\x35\x32\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x62\ +\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x33\ +\x2e\x38\x36\x36\x36\x36\x36\x37\x39\x70\x78\x3b\x6c\x69\x6e\x65\ +\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\ +\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\ +\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ +\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ +\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x32\x22\x3e\x52\x47\x42\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ +\x74\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x06\x71\ +\x00\ +\x00\x16\x14\x78\x9c\xed\x57\x6d\x8f\x9b\x46\x10\xfe\x7e\xbf\x82\ +\x72\x5f\x12\x15\x96\x7d\x7f\x71\x6c\x47\x6a\xa3\x48\x91\xda\x2f\ +\x6d\xaa\x7e\x8c\x30\xac\x7d\x34\x18\x2c\xc0\x67\x3b\xbf\xbe\xb3\ +\x18\x30\xbe\xf3\xe9\x1c\xe5\x22\x45\x55\xad\x44\xa7\x9d\x99\xdd\ +\x9d\x9d\x79\x66\xe6\x61\xfa\x76\xbf\xce\xbd\x7b\x5b\xd5\x59\x59\ +\xcc\x7c\x82\xb0\xef\xd9\x22\x29\xd3\xac\x58\xcd\xfc\xbf\x3e\xbe\ +\x0f\xb5\xef\xd5\x4d\x5c\xa4\x71\x5e\x16\x76\xe6\x17\xa5\xff\x76\ +\x7e\x33\xfd\x29\x0c\xbd\x5f\x2b\x1b\x37\x36\xf5\x76\x59\x73\xe7\ +\x7d\x28\x3e\xd7\x49\xbc\xb1\xde\xab\xbb\xa6\xd9\x4c\xa2\x68\xb7\ +\xdb\xa1\xac\x13\xa2\xb2\x5a\x45\xaf\xbd\x30\x9c\xdf\xdc\x4c\xeb\ +\xfb\xd5\x8d\xe7\x79\x70\x6f\x51\x4f\xd2\x64\xe6\x77\x1b\x36\xdb\ +\x2a\x6f\x0d\xd3\x24\xb2\xb9\x5d\xdb\xa2\xa9\x23\x82\x48\xe4\x9f\ +\xcc\x93\x93\x79\xe2\x6e\xcf\xee\x6d\x52\xae\xd7\x65\x51\xb7\x3b\ +\x8b\xfa\x76\x64\x5c\xa5\xcb\xc1\xda\x79\xb3\x63\xad\x11\x31\xc6\ +\x44\x98\x46\x94\x86\x60\x11\xd6\x87\xa2\x89\xf7\xe1\xf9\x56\xf0\ +\xf1\xd2\x56\x8a\x31\x8e\x40\x77\xb2\xbc\xce\x6a\x52\x43\x40\x37\ +\xf0\x7f\x30\xef\x05\xa8\x2e\xb7\x55\x62\x97\xb0\xcf\xa2\xc2\x36\ +\xd1\xbb\x8f\xef\x06\x65\x88\x51\xda\xa4\xa3\x63\xfa\x78\x9e\xdd\ +\x7a\x16\xe4\x22\x5e\xdb\x7a\x13\x27\xb6\x8e\x7a\x79\xbb\x7f\x97\ +\xa5\xcd\xdd\xcc\x67\x12\x71\xac\xb5\x69\x65\x77\x36\x5b\xdd\x35\ +\x0f\x84\x59\x3a\xf3\xc1\x77\x6a\xb4\x68\xd7\x23\x68\x90\xa3\x41\ +\x77\xec\x64\xd0\x60\x64\x28\x22\x5e\x45\x04\x53\x47\x9b\xfe\x01\ +\x93\xb4\x4c\x9c\x47\x70\xa4\x5d\x67\xf1\xb6\x29\xd7\x90\xb3\x24\ +\xc9\xe3\xba\xce\x96\x59\x02\x8b\xb2\xd8\xe4\xdb\x55\x56\x7c\xaa\ +\x37\x36\x69\xaa\x38\xff\x94\x66\x0e\x6f\x89\x45\x7d\x08\x87\x1b\ +\xed\x7e\x53\x56\x4d\xb8\x4f\x37\x10\x48\xa9\x2e\x2a\x0f\x63\xe5\ +\x7d\x66\x77\xbf\x94\x7b\x70\xd1\xc3\x1e\xa3\xf0\xcf\x9f\x83\x7c\ +\x9a\xda\x65\xed\xf4\xc7\xe7\xba\x15\xbc\x57\xf9\x5e\xd4\x6a\x07\ +\xef\x9d\xeb\xa9\x3b\xe3\x64\xbb\x88\xeb\x63\x40\x3d\x6f\x13\xaf\ +\x00\x7c\x79\x59\xcd\xfc\xdb\x65\xfb\xeb\x14\x8b\xb2\x4a\x6d\xd5\ +\xab\x64\xfb\x3b\x53\x95\x90\xa0\xac\x39\x1c\xcb\xad\x3b\xbb\x7f\ +\x86\x3b\x75\xd0\xe3\xcb\xfa\xfa\x2e\x4e\xcb\xdd\xcc\xa7\x0f\x95\ +\x5f\xca\x72\x3d\xf3\x05\x12\x46\x1b\x8c\xcd\x43\x75\x02\x91\x08\ +\x35\x43\x02\x4b\x4a\xf8\x23\x2d\x5c\x28\x11\xc6\x4a\x1b\x4a\x1e\ +\x29\xb7\x55\x05\x05\x19\xe6\xf1\xc1\xc2\xab\xda\x3f\xbd\x51\x7d\ +\x57\xee\x56\x95\x8b\x4e\x53\x6d\xed\xc3\x9d\x4e\x13\x2e\x16\x2e\ +\x0b\x97\xd4\x80\x90\xad\x2b\xf5\x70\x5b\x64\x0d\x94\xd3\x66\x3f\ +\x3e\x75\x9b\xa5\xb6\xbe\xbc\x71\x97\x15\x10\x84\xb0\x03\x36\x61\ +\x43\x8c\x1f\x5a\xf4\x30\x57\x58\x3f\x61\xe1\x00\xf2\x84\xea\xf0\ +\xb4\x6a\x1d\xef\xb3\x75\xf6\xc5\xc2\xbb\x1f\x85\xab\x2e\xe2\x4d\ +\xb8\xca\xcb\x45\x9c\x77\xde\xcf\x5b\x8b\xe9\x59\x58\x8e\x9b\x3c\ +\xaf\x39\xb8\x92\xde\x1f\x9c\xcc\xef\x85\x2e\x9e\x4e\xc0\x94\x14\ +\x83\xb0\xac\x32\xa8\x95\x91\xbf\xbd\xe8\x30\x16\xb9\x06\x00\xfd\ +\x7b\xdf\x02\xac\x85\x9f\x7a\xa8\x3b\x8c\x75\x1d\xee\xa3\xc7\xc0\ +\x6f\xe5\x6b\xdb\xc4\x69\xdc\xc4\xa7\x2a\xe8\x25\xd4\x18\xdc\xbf\ +\x0c\x7a\xe9\xe4\x8f\x77\xef\xe7\xdd\x45\xd3\x24\x99\xfc\x5d\x56\ +\x9f\xfb\x7b\x3d\xcf\x19\xc4\x8b\x72\x0b\xa9\xf0\xe7\x83\x78\x9a\ +\x26\x13\xe8\x7e\xd0\x17\xe6\xd9\x1a\xb0\xed\x1a\xe7\xcf\xd0\xed\ +\xa6\xd1\x49\x71\x66\xec\x82\x75\x3a\xf4\x78\x6c\x65\x8f\x6d\xf4\ +\xe2\x2c\x49\x93\x75\xe6\x36\x45\x7f\x36\x59\x9e\x7f\x70\x97\x74\ +\x2f\x1e\x1d\x9a\x35\xb9\x3d\x09\xa7\x51\xe7\x7d\xf7\xb6\x68\xf4\ +\xb8\x69\xd4\xbf\xbe\x5d\xad\x4e\x51\x39\x2b\x8a\x21\xd1\x79\xbc\ +\xb0\x00\x82\xdf\x9c\xd2\x7b\xa4\x5d\x55\xe5\x76\xb3\x2e\x53\xdb\ +\x6d\xef\xa3\xb9\x89\x9b\xbb\x21\x65\xcd\x21\x07\xfd\x12\xbc\x9f\ +\x14\x30\x84\xdf\xd4\x4d\x55\x7e\xb6\x93\x5b\x6a\x53\x18\x35\xdd\ +\xf2\x58\x09\x13\x8a\xb0\xd0\x52\x43\x89\xf7\xf2\x3c\x2b\x2c\xdc\ +\x35\x59\x6c\x9b\x66\x2c\xfb\xa7\xcc\x8a\x09\x84\xc6\x56\xbd\xb4\ +\x5d\xe4\x00\xea\x66\xc2\x7b\x59\x1a\x43\xb7\xa9\xaa\xf8\x30\xbe\ +\x3a\xec\x3a\xd4\x84\x0c\xb8\x72\xa8\xf0\x18\x47\x8a\x6a\xc2\x59\ +\x10\x32\xc4\x8c\xd2\x5c\x70\x2f\x24\x88\x61\x4c\xa8\x08\x18\xc2\ +\x94\x73\x89\x89\xf4\x18\xa2\x58\x08\x4a\x03\x83\x94\xd1\x58\x2b\ +\x05\x86\x14\x69\x42\x8c\x30\x01\x47\x92\x72\x62\xa8\x80\xcd\x14\ +\x71\xad\x29\x57\x01\x9c\x03\x52\x4e\x94\x17\x0a\xa4\x08\x87\xc3\ +\x03\x8a\x14\x37\x92\x50\x2f\x34\x88\x48\x62\x60\x00\xb9\x5b\x8c\ +\x81\x06\xe7\x85\x1a\x19\x81\x29\x55\x1a\x0e\x14\x94\x33\x71\x56\ +\x5c\x2e\xc4\x1c\xb3\x53\x69\x9c\x9a\x5d\x59\x40\xc8\x9a\xb2\x0a\ +\xa1\xed\xdd\xc7\xcd\xb6\xb2\xae\xbc\x7a\x7c\x4c\x2b\x50\x5e\x4a\ +\xce\x2d\x86\x37\xa5\xfc\x8d\x5b\x9c\x42\x74\x5c\x56\xdb\x1c\x66\ +\xd4\xbd\x2d\xca\x34\x1d\x12\x88\xdb\xdf\x79\x02\x31\x52\xca\x08\ +\x41\xa4\x7e\x89\xb4\xb8\x87\x3a\x77\xa1\x52\xd9\x20\xec\x7a\xa6\ +\x42\x52\x4b\xce\xb4\x1c\x14\x7d\xab\x94\x88\x01\x89\x91\xe4\x14\ +\x9b\xbd\xeb\x9f\x48\x68\x3e\x48\xa0\x83\x08\x86\x14\x66\x00\xb5\ +\x41\x58\xed\x5b\x3a\x00\xa9\x00\xff\x4f\x17\x56\xed\x2c\x33\x42\ +\x52\x6a\xa4\x19\xc4\x30\xee\x8b\xda\xd5\x38\x60\x27\x6e\xaa\x6c\ +\xff\x8a\x04\x38\x00\xd6\xa3\x25\x56\x5c\x60\x1d\xc0\x95\xd8\x60\ +\x26\xa9\x04\x05\x7e\xfd\x38\x55\x97\x28\xc1\x25\x83\x81\x16\x5c\ +\x4c\xe2\xd3\x8e\x10\xcc\x05\xd5\xc2\x39\xa2\x85\xc6\x4c\xab\x73\ +\x47\xaa\x63\x23\x25\x42\x48\xfd\x5c\x14\xc0\x94\x03\x9a\x15\xe6\ +\x67\x71\x15\x1a\x69\x8e\x05\xe6\x17\xd2\xa0\x08\xa5\xfc\x9a\xcc\ +\xf5\x79\x86\x69\x31\xea\xf5\xe7\xd8\x8c\x63\xc0\xda\xb7\x62\x93\ +\xc2\xc0\x30\xe6\x9b\xb0\xf9\x7c\x1d\x2d\x97\xed\xdd\xdf\xe8\xab\ +\x34\xd0\x75\xb0\x7a\xc9\x32\x82\xf0\x9a\xeb\xcb\x48\x21\x22\x38\ +\x74\x39\x71\x96\x6e\x8c\x88\x51\x1c\xab\x31\x2e\x18\x43\xe0\xac\ +\x32\xe4\x9a\x4a\x02\xbc\x41\x43\xd4\x5a\x3f\x5f\x48\x4a\x62\xc6\ +\x0d\x60\x16\x49\x6e\x04\x61\x86\x1d\xe1\x3b\xa4\xe0\xaa\x39\xb3\ +\x5c\x9a\x98\xa4\x3f\xcc\x9c\xf9\xdd\xcd\x19\xc6\xe0\x8b\x45\x07\ +\xa1\x42\x98\xc1\xbb\xa4\xf1\x20\x86\xae\x3e\x15\x0c\x1f\x0e\x34\ +\x56\x1a\x26\x60\xce\x48\x04\x33\x83\x05\x30\x31\x0c\x21\xc2\x19\ +\x71\x46\x19\xa7\x01\xc1\x88\xc3\x17\x0b\x67\x1e\x85\x38\x73\x8e\ +\x0d\x0f\x34\x58\x61\x43\xb5\x47\x04\x82\x56\x05\xa5\x17\x10\x82\ +\x04\x54\x27\xf7\x80\x1a\x4b\xc5\xe0\x8c\x80\xc0\x78\xe2\x50\xf2\ +\xa6\x9d\x58\x9a\x1a\xc8\x72\x40\xdc\x00\x72\x3d\xeb\xe2\x8c\x09\ +\xd9\xd7\x4f\x99\xab\x52\x83\x21\xbf\xda\xfe\x30\xa9\x01\x0a\x20\ +\x20\x0e\x86\x2a\x03\x98\xe3\xae\x65\x0a\x29\x07\x0a\xc0\x7a\x0a\ +\x40\x38\xef\x29\x80\xec\x29\x00\x31\x8f\x19\x00\xbf\x44\x00\x78\ +\x4f\x00\x04\xe9\x09\x00\x19\x08\x80\xd0\x3d\x01\xe0\x03\x01\x80\ +\xa6\x7d\x24\x00\xa3\xc6\x7b\x96\x1d\xf1\xa3\x72\x00\xf6\xd2\x1c\ +\x20\x7c\x6a\x96\x98\xeb\x48\x00\x75\x3d\x45\x1b\x71\xd6\xbd\xa0\ +\x20\xb8\x56\xec\xbb\xf1\x00\xf5\x9f\xe3\x01\x1a\xd8\x31\xe3\xd0\ +\x30\xc6\xb1\x25\xae\x74\xa8\x92\xe4\xab\x89\x80\xb9\xc8\x03\x42\ +\xf9\x3f\x13\xf8\xae\x4c\x20\x54\x57\x17\xd3\x45\x2a\x40\xda\x62\ +\x12\xa3\xef\x7b\x47\x05\x00\x04\x30\x67\xf4\xb3\x30\x7a\x51\x2a\ +\x30\x8d\x56\xf3\x9b\xa9\xfb\xf8\x9e\xdf\xfc\x0b\x55\x91\x2b\xcd\ +\ +\x00\x00\x06\xa9\ +\x00\ +\x00\x52\x92\x78\x9c\xe5\x9c\x5b\x8f\xa3\x36\x14\xc7\xdf\xe7\x53\ +\x50\xe6\xa5\x55\x65\x30\x97\x84\xcb\x26\xd9\x87\xae\x56\x5a\xa9\ +\x4f\xed\x56\x7d\xac\x1c\xec\x64\xd0\x02\x8e\x80\x4c\x92\xfd\xf4\ +\xb5\x09\x90\x00\xde\xaa\x92\x1d\xc9\x0a\x48\xa3\x15\xe7\x1c\x1b\ +\xf3\xc3\x97\x3f\x07\x6f\x56\x1f\xcf\x79\x66\xbc\x93\xb2\x4a\x69\ +\xb1\x36\x1d\x0b\x9a\x06\x29\x12\x8a\xd3\x62\xbf\x36\xff\xfa\xfa\ +\x19\x84\xa6\x51\xd5\xa8\xc0\x28\xa3\x05\x59\x9b\x05\x35\x3f\x6e\ +\x5e\x56\x3f\x01\x60\xfc\x56\x12\x54\x13\x6c\x9c\xd2\xfa\xcd\xf8\ +\x52\x7c\xab\x12\x74\x20\xc6\xcf\x6f\x75\x7d\x88\x6d\xfb\x74\x3a\ +\x59\x69\x6b\xb4\x68\xb9\xb7\x7f\x31\x00\xd8\xbc\xbc\xac\xaa\xf7\ +\xfd\x8b\x61\x18\xec\xba\x45\x15\xe3\x64\x6d\xb6\x05\x0e\xc7\x32\ +\x6b\x02\x71\x62\x93\x8c\xe4\xa4\xa8\x2b\xdb\xb1\x1c\xdb\xbc\x85\ +\x27\xb7\xf0\x84\x5f\x3d\x7d\x27\x09\xcd\x73\x5a\x54\x4d\xc9\xa2\ +\x7a\xbd\x0b\x2e\xf1\xae\x8f\xe6\xad\x39\x79\x4d\x90\x13\x45\x91\ +\x0d\x5d\xdb\x75\x01\x8b\x00\xd5\xa5\xa8\xd1\x19\x0c\x8b\xb2\x36\ +\x8a\x8a\xba\x10\x42\x9b\xf9\x6e\x91\xff\x2f\x2a\xae\x18\xd0\x03\ +\xfb\xeb\xc3\x3b\x83\x55\xd1\x63\x99\x90\x1d\x2b\x47\xac\x82\xd4\ +\xf6\xa7\xaf\x9f\x7a\x27\x80\x16\xae\xf1\x5d\x35\x1d\xcf\xc1\x55\ +\x07\x90\x0b\x94\x93\xea\x80\x12\x52\xd9\x9d\xbd\x29\x7f\x4a\x71\ +\xfd\xb6\x36\x3d\xdf\x72\x3c\x76\x2c\x1a\xe3\x1b\x49\xf7\x6f\xf5\ +\xd8\x9a\xe2\xb5\xc9\x5a\xef\x46\xe1\xf5\xfc\xae\x73\x38\xd7\x80\ +\xb6\xe2\xb8\xf7\x40\x2b\x72\x2d\xc7\x28\x9d\x85\x17\x5c\x63\xba\ +\x5b\x88\x31\x4d\x78\x9b\x58\x95\x24\x4f\xd1\xb1\xa6\x39\x7b\x6a\ +\x49\x92\xa1\xaa\x4a\x77\x69\xc2\x4e\x68\x71\xc8\x8e\xfb\xb4\xf8\ +\x67\x68\xb4\x3a\x82\xfd\xe5\xc8\xf9\x40\xcb\x1a\x9c\xf1\x81\x71\ +\x5c\x06\x42\xe7\xa5\x73\x6e\x98\x77\x85\xc9\xae\xe2\x51\xd7\x9b\ +\xe2\x67\xec\xae\x02\xd3\xb0\x1b\x6f\xdf\x46\xde\x40\xfc\x9e\x92\ +\xd3\x2d\x76\x8b\xaa\x2b\x38\xc3\x38\xa0\x3d\xeb\x64\x19\x2d\xd7\ +\xe6\xeb\xae\x39\x5a\xc7\x96\x96\x98\x94\x9d\x6b\xd9\x1c\x03\x17\ +\x65\x0f\x22\xad\x2f\xd7\x61\xd5\xd6\xdd\xb5\x97\xd7\xda\xfb\xa1\ +\xd8\x5f\xbd\x21\x4c\x4f\x6b\xd3\x1d\x3b\xbf\x53\x9a\xaf\xcd\xc0\ +\x8a\x9c\x10\xfa\x4e\x30\x76\x27\xe7\xb5\x09\x3c\xcf\x72\x3d\x18\ +\x2c\xbc\x89\x97\x37\xc8\xb7\xbc\x20\xf4\xdc\x49\xcd\xc9\xb1\x2c\ +\xd9\xc0\x03\x19\xba\x10\x76\x57\xcd\x3f\x4e\x1b\x54\xbd\xd1\xd3\ +\xbe\xe4\x74\xea\xf2\x48\xc6\x25\xb9\x07\x6c\xb7\xf4\x2c\x76\xb3\ +\x7e\x70\xe4\x43\x1a\x1c\x8b\xb4\x66\xc3\xe6\x70\xbe\xaf\xf5\x98\ +\x62\x52\x89\x0b\x56\x05\x3a\x80\x7d\x46\xb7\x28\x13\x07\x9c\xd2\ +\x82\x51\x02\x6d\x0f\x77\xbc\xfe\x21\x8c\x23\xba\xee\x1e\xc0\xf0\ +\x07\x11\xac\xed\x93\x07\xd1\xba\x2e\x3f\x76\xe5\xe8\x9c\xe6\xe9\ +\x77\xc2\xc0\x38\x4d\xbf\x63\x7d\x6b\x80\xe5\x5a\xcc\x30\xea\x0b\ +\x1f\xba\xe7\x0b\xb7\x99\x9d\x91\xf3\xe4\x06\x37\x8a\x82\xde\x48\ +\xcb\x94\x8d\x88\xbb\xe6\x74\xa6\xcb\xbd\x89\x0f\x74\x36\x4f\x9f\ +\x9b\x0e\xd6\x74\xbf\x60\xec\xbb\xdc\xfb\xda\x7e\x6f\x4f\x3b\x7e\ +\x63\xcf\x49\x8d\x30\xaa\xd1\x6d\x14\x74\x16\xd6\x36\xd8\xdd\x19\ +\x9b\x33\xe3\x3f\x3e\x7d\xde\xb4\x17\x5a\x25\x49\xfc\x37\x2d\xbf\ +\x75\xd7\x35\x0c\x1e\x80\xb6\xf4\xc8\x48\x9b\x9b\xde\xbc\xc2\x49\ +\xcc\x66\x39\x36\xfa\x37\x69\xce\xfa\x36\x9f\x20\x7f\x65\xb3\xda\ +\xca\xbe\x39\x06\xc1\x1c\xd6\xad\xd2\x6b\xb5\x25\xb9\x4e\x97\xc2\ +\x35\x03\x27\x79\xca\x0b\xd9\x7f\xd6\x69\x96\x7d\xe1\x17\x69\xef\ +\xf8\xae\xd2\xb4\xce\xc8\xcd\xb8\xb2\xdb\xd6\xb7\xf7\x66\xdf\xdd\ +\xdc\xca\xee\xee\xbe\x39\xdb\xdf\xa8\x0c\x06\x45\xff\xa0\x33\xb4\ +\x25\xac\x87\xfe\xce\x9d\xc6\xc4\xbb\x2f\xe9\xf1\x90\x53\x4c\xda\ +\xe2\x3d\x4d\x92\xd4\xfd\x23\xab\x2f\x19\xf3\xef\x58\xeb\xe3\x57\ +\x08\x93\x64\xb7\xfb\xc0\x4f\x40\x3b\x4f\xc4\xce\xf5\xb4\x3c\x66\ +\x6c\xbe\x7b\x27\x05\xc5\xf8\x43\x55\x97\xf4\x1b\x89\xdb\x99\xa9\ +\x3d\xbd\x0e\x86\x18\x76\xa7\x0c\x0c\x29\x33\xd6\x49\xeb\xd8\xef\ +\x6c\x18\xb1\xe9\xa5\x2c\xd1\x25\x2e\xd8\xc2\xde\x59\xfb\x4b\x0d\ +\xfa\x27\x6f\xe5\x22\xf4\xa2\xde\xd8\x0e\x36\xdf\x72\x9b\xae\x75\ +\x73\x74\x63\x6c\xea\x19\x74\xe6\x8b\x28\xa2\x1c\x84\x94\x4d\xd7\ +\xf5\x5d\x7e\x78\xfd\x83\xfc\x2f\x60\x08\x61\x5f\x33\x60\xc0\x91\ +\x44\x36\x35\x3e\x04\xdd\x72\x19\x42\xed\xd0\x81\x50\x12\x5e\x68\ +\x2d\xb8\xac\xf1\xc2\xc7\xc2\xf3\xfd\xc5\x42\x3f\x78\x50\x12\x9e\ +\xe3\x5a\x0f\xe5\xb6\xdb\xb9\xc8\x45\xda\x71\xf3\x64\xb1\x05\xd7\ +\xe5\x76\x8e\xec\x40\x20\x09\xcf\x75\xac\x66\xc0\xfa\x73\x84\x17\ +\x82\x85\x2c\xbe\x85\xb5\x9c\x23\x39\x08\x64\x47\xad\x1b\x59\xe1\ +\x50\x3f\xcf\x47\xa1\x00\x5f\x12\x9e\x50\xa3\x40\x65\xd0\x34\xd5\ +\x26\xd2\xd2\x4e\xa8\x4e\xd4\x61\xd3\x54\x95\x48\xaf\x11\x63\x5d\ +\xa2\x8a\xd8\x6e\x17\x45\x1a\x12\xf3\xc0\x52\x16\x98\x48\x91\x3c\ +\x39\x35\x10\x00\x57\x12\x9b\x50\x8b\x3c\x3b\x36\xa6\x41\x80\xec\ +\x5b\xfe\x58\x85\xa8\x9b\xd2\x34\xcc\x88\x48\xbf\xa3\x0e\x72\x22\ +\x83\xb9\xed\x39\xc5\x46\x28\x0b\x4c\xa8\x36\x94\x82\xd3\x55\x70\ +\xc8\x0e\x4c\xa1\xe0\x50\x4a\x4e\x57\xcd\x21\xbd\x84\x8e\x34\x87\ +\x42\x68\x21\xe4\x87\x76\xd0\x3c\xe9\xf5\x53\x28\x3b\x9e\x1f\x1c\ +\x53\x1e\xd2\x2f\xa3\x22\xe5\x31\x03\x72\x5c\x7c\xc8\xae\x0e\x63\ +\xf1\x31\x03\x6c\x10\x78\xf2\x89\x37\x51\xfe\x43\xe9\xd2\xa0\xa3\ +\x76\x83\xd2\xa9\x8f\x81\x7a\x9b\xae\xaf\xcf\x29\xe1\x7c\xe9\xb5\ +\x41\xa8\xe1\xd4\xe3\xd3\x55\xc8\x39\xd2\x99\x5e\xa1\x94\x53\x0f\ +\x50\x57\x3d\x17\x48\x6b\xe1\xb1\xa2\x53\xcd\x0e\xfb\x5a\x2e\x16\ +\x1e\x58\x3e\x46\xd8\xcd\x84\x1f\xcf\x2b\x3d\xe6\x2b\xd7\x5c\x00\ +\x36\x19\x26\xe9\x8f\xd3\x63\x99\x37\x17\x7a\x5c\xeb\xb9\xd2\x5f\ +\x1e\x84\x6a\x4f\x35\x42\xbe\xf8\xea\x87\x10\xca\xbe\x9c\x0d\x14\ +\xdf\x74\x24\x3f\x23\x33\x47\x3a\x7f\x22\xd4\x7b\x73\x81\x17\x4a\ +\x2f\x18\x42\xb5\x37\x17\x7c\x50\x3a\x27\x30\xd6\x7a\xaa\xc9\x41\ +\xc8\x1e\x8d\x7e\xe4\xd8\x4a\x21\xfd\xad\x55\x24\xf5\xd4\xe3\xf3\ +\x7d\xa4\xe1\xae\x92\x40\x7e\x3f\x8e\x48\xe8\xa9\xc6\xe7\xa2\x60\ +\xa7\x5f\x6a\xe5\x2a\xf4\xa4\x33\xa1\x23\x99\xa7\x9a\x5d\x18\x20\ +\x84\x89\x7e\xec\x9a\x94\xde\x43\xf6\x34\xa9\x26\xc8\x33\x04\xfa\ +\xad\x1a\xf2\xbb\x4c\x86\x9f\x65\x27\xd3\xe0\x33\x42\xe3\x89\xbd\ +\x87\x08\xbd\xb9\xe0\x6b\x12\x7b\x0f\xc9\xec\xcd\x85\x20\xcf\xec\ +\xc9\xa6\xe4\x27\xdf\x6a\x15\xb3\xd3\x56\xed\x2d\xa5\xf5\x8a\xf8\ +\x93\xad\x72\x7e\xba\xca\x3d\x57\x7a\xfa\x13\x7f\xb9\x55\x0c\x50\ +\x67\xc1\x17\x29\x97\x7c\xaa\xe9\xe9\x2c\xf9\x5c\xf9\xbc\xa8\xf0\ +\x3b\xae\x62\x84\xdb\x04\x7b\x0b\x1d\x3b\xa0\xfc\x9e\x6c\x71\xa2\ +\x6a\x02\xf5\x49\xf9\xb1\xe1\xfb\x98\x54\xd5\x4c\x00\x42\xb6\x06\ +\xab\xde\x6a\xa6\x9a\x9d\xb6\xf2\xc5\x7d\x8c\x7c\x51\xcf\x4f\x57\ +\xf9\xe2\x49\x4b\x67\x71\xbe\x4a\x31\x40\x9d\xe5\x8b\xfa\xff\x82\ +\xa7\x9a\x5e\x18\x22\xa4\xdf\x9b\x1b\x04\xbe\xf4\xd2\x3b\xfc\xb0\ +\x76\x8f\xf1\x19\x89\x35\xbb\xa8\xa4\x57\x5b\xb1\x5c\x79\x7e\x76\ +\x4d\xa6\x45\x5a\x2c\x8b\xb5\xca\xf3\xd3\x6b\xf6\x4f\x49\xbf\xa8\ +\x4d\x84\x8a\x3a\x70\xda\x6a\x94\xa5\x82\x57\x34\xb1\x4a\x51\x09\ +\x4f\x57\x81\xc2\xe6\xbb\xc7\xec\x9d\x52\x48\x4f\x67\x75\xc2\xd7\ +\x59\xd5\x1b\xa7\x54\x4e\x77\x5a\x67\x56\x9c\xc7\xec\x9a\x52\xc7\ +\xef\xee\x9e\xf8\x20\x6e\xf6\x9f\x0d\xd8\xb8\x96\x13\x2c\xa0\xe3\ +\x86\x9e\x4a\x48\x6e\x14\x4d\xf6\xd2\x7a\xee\x84\xc8\x9d\x49\xf8\ +\x73\x63\x17\x91\x91\xf3\x58\xb0\xf1\x0a\xbd\xfb\xdf\x50\x60\xa1\ +\x9e\x15\x42\x3f\x0c\xc2\x45\xff\x93\x64\xfb\xcd\xcb\x8a\xff\x24\ +\xd8\xe6\xe5\x5f\xd1\x32\xdf\x60\ +\x00\x00\x0a\x59\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6f\x73\x74\x5f\ +\x70\x72\x6f\x63\x65\x73\x73\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\ +\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x2d\x31\x30\x32\x2e\x39\x31\x32\x39\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x37\x2e\x31\x36\x35\x36\x38\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ +\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ +\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ +\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ +\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\ +\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\ +\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\x32\x32\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x32\x39\ +\x32\x39\x39\x35\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x37\x2e\x30\x36\x36\x36\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x31\ +\x2e\x33\x33\x33\x33\x33\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x32\x64\x30\x66\x36\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x36\x35\x34\x39\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ +\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ +\x20\x31\x32\x2e\x39\x34\x39\x31\x37\x35\x2c\x31\x36\x20\x68\x20\ +\x38\x2e\x33\x38\x34\x31\x35\x38\x20\x76\x20\x2d\x33\x2e\x31\x39\ +\x37\x32\x30\x35\x20\x6c\x20\x37\x2e\x33\x33\x36\x31\x33\x39\x2c\ +\x35\x2e\x31\x31\x35\x35\x33\x20\x2d\x37\x2e\x33\x33\x36\x31\x33\ +\x39\x2c\x35\x2e\x31\x31\x35\x35\x33\x20\x76\x20\x2d\x33\x2e\x31\ +\x39\x37\x32\x30\x36\x20\x68\x20\x2d\x38\x2e\x33\x38\x34\x31\x35\ +\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ +\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\ +\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0f\x08\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x74\x61\x63\x6b\ +\x5f\x72\x61\x73\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x78\x3d\x22\x2d\x34\x33\x2e\x32\x35\x33\x31\x39\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x79\x3d\x22\x35\x2e\x31\x34\x39\x30\x32\x30\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ +\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ +\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ +\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ +\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ +\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ +\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ +\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ +\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x39\x2e\x38\x31\x33\x33\x33\x33\x35\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x32\x2e\x32\x30\x35\x36\x34\x32\x37\x2c\x32\x33\x2e\x34\ +\x36\x36\x39\x31\x32\x20\x2d\x30\x2e\x30\x37\x32\x33\x30\x39\x2c\ +\x31\x30\x2e\x36\x36\x36\x34\x32\x31\x20\x33\x31\x2e\x39\x39\x39\ +\x32\x36\x34\x33\x2c\x30\x2e\x32\x31\x37\x30\x32\x34\x20\x30\x2e\ +\x30\x37\x32\x33\x31\x2c\x2d\x31\x30\x2e\x36\x36\x36\x34\x32\x31\ +\x20\x76\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x32\x39\x39\x32\x2d\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x31\x31\x36\ +\x30\x36\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\ +\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x34\x33\x2e\x34\x37\x31\x32\x36\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x33\x33\x37\x30\x37\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ +\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\ +\x30\x31\x2c\x30\x2e\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\ +\x2e\x38\x39\x37\x30\x34\x31\x32\x39\x2c\x30\x2e\x34\x34\x31\x39\ +\x34\x36\x37\x34\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\x30\x31\x2c\x30\x2e\ +\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\x2e\x38\x35\x31\x34\ +\x33\x35\x37\x33\x2c\x30\x2e\x35\x32\x34\x34\x35\x38\x39\x36\x2c\ +\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x36\x2e\x38\ +\x31\x37\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x32\x39\x2e\x38\x36\x35\x30\x37\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\ +\x33\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\x32\x32\ +\x37\x33\x32\x33\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x35\x39\x33\x33\x33\x30\x33\ +\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\ +\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x39\x2e\x31\x35\x33\x36\x39\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x34\x2e\x32\x36\x39\x36\x30\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ +\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\x30\x31\x2c\ +\x30\x2e\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\x2e\x38\x30\ +\x35\x34\x35\x35\x32\x33\x2c\x30\x2e\x35\x39\x32\x36\x35\x36\x36\ +\x32\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x39\x2e\x38\x31\x33\x33\x33\ +\x33\x35\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x33\x34\x2e\x31\x33\x32\x30\x35\x33\x2c\ +\x31\x31\x2e\x37\x33\x37\x32\x38\x20\x33\x34\x2e\x31\x33\x33\x33\ +\x35\x33\x2c\x31\x2e\x30\x37\x30\x36\x31\x33\x33\x20\x32\x2e\x31\ +\x33\x33\x33\x35\x33\x33\x2c\x31\x2e\x30\x36\x36\x36\x36\x33\x33\ +\x20\x32\x2e\x31\x33\x32\x30\x34\x33\x33\x2c\x31\x31\x2e\x37\x33\ +\x33\x33\x33\x20\x76\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ +\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x09\x8b\ +\x00\ +\x00\x24\xa6\x78\x9c\xdd\x59\xdb\x72\xdb\xc8\x11\x7d\xd7\x57\x4c\ +\xe8\x97\xa4\x42\x0c\xe7\x7e\xa1\x29\xed\x83\xb7\xb6\xb2\x55\x9b\ +\x97\xec\x26\x79\x74\x41\x00\x28\x21\x06\x01\x16\x00\xea\xe2\xaf\ +\xcf\x19\x10\x00\x49\x91\xb4\xe5\x98\x71\x9c\xa5\x4a\x45\xa0\x7b\ +\x7a\xa6\xe7\xf4\xe9\xee\x01\xb8\xf8\xe1\x69\x55\x90\x87\xac\x6e\ +\xf2\xaa\xbc\x9e\x70\xca\x26\x24\x2b\x93\x2a\xcd\xcb\xbb\xeb\xc9\ +\xdf\x7f\xfb\x29\x72\x13\xd2\xb4\x71\x99\xc6\x45\x55\x66\xd7\x93\ +\xb2\x9a\xfc\x70\x73\xb5\xf8\x43\x14\x91\x77\x75\x16\xb7\x59\x4a\ +\x1e\xf3\xf6\x9e\xfc\x5c\x7e\x68\x92\x78\x9d\x91\x3f\xde\xb7\xed\ +\x7a\x3e\x9b\x3d\x3e\x3e\xd2\xbc\x17\xd2\xaa\xbe\x9b\xfd\x89\x44\ +\xd1\xcd\xd5\xd5\xa2\x79\xb8\xbb\x22\x84\x60\xdd\xb2\x99\xa7\xc9\ +\xf5\xa4\x37\x58\x6f\xea\xa2\x1b\x98\x26\xb3\xac\xc8\x56\x59\xd9\ +\x36\x33\x4e\xf9\x6c\xb2\x1b\x9e\xec\x86\x27\x61\xf5\xfc\x21\x4b\ +\xaa\xd5\xaa\x2a\x9b\xce\xb2\x6c\xde\xec\x0d\xae\xd3\xe5\x38\x3a\ +\x78\xf3\x28\xbb\x41\xdc\x7b\x3f\x63\x62\x26\x44\x84\x11\x51\xf3\ +\x5c\xb6\xf1\x53\x74\x68\x0a\x1f\x4f\x99\x0a\xc6\xd8\x0c\xba\xdd\ +\xc8\xd7\x8d\x9a\x37\x00\x74\x8d\xff\x71\xf8\x20\xa0\x4d\xb5\xa9\ +\x93\x6c\x09\xbb\x8c\x96\x59\x3b\xfb\xf1\xb7\x1f\x47\x65\xc4\x68\ +\xda\xa6\x7b\xd3\x0c\x78\x1e\xac\x7a\x00\x72\x19\xaf\xb2\x66\x1d\ +\x27\x59\x33\x1b\xe4\x9d\xfd\x63\x9e\xb6\xf7\xd7\x13\xa9\x28\x97\ +\xf8\xe8\x4e\x78\x9f\xe5\x77\xf7\xed\x4b\x69\x9e\x5e\x4f\xe0\xbd\ +\xf0\x6e\x7b\xbf\x47\x0e\xbe\x1d\xd0\x4f\x3c\x1f\x35\x8c\x7a\x41\ +\x39\xa9\xb9\x96\x76\x3b\x66\xd8\xc2\x3c\xad\x92\xe0\x13\xa6\xcc\ +\x56\x79\xbc\x69\xab\x15\xa2\x96\x24\x45\xdc\x34\xf9\x32\x4f\x70\ +\x53\x95\xeb\x62\x73\x97\x97\xef\x7f\x79\xf7\xeb\xfb\xf6\xbe\xce\ +\x9a\xfb\xaa\x48\xdf\x37\x59\xfb\xbe\xad\xaa\x82\x0e\x48\x8e\xcb\ +\x66\x4f\xeb\xaa\x6e\xa3\xa7\x74\x0d\x3c\x8d\x3d\xa9\x7c\x1e\x94\ +\x37\xd0\x2e\xd2\x6c\xd9\x84\x51\xdb\xcd\x85\x3b\xec\xce\x4e\xc8\ +\xac\xd3\x8e\xbe\x06\x47\xd3\x87\x3c\x7b\xdc\x8d\xbd\x8d\x9b\x2d\ +\x80\x84\xac\xe3\x3b\x90\xad\xa8\xea\xeb\xc9\x9b\x65\xf7\xe9\x15\ +\xb7\x55\x9d\x66\xf5\xa0\x32\xdd\xe7\x40\x55\x21\x20\x79\xfb\xbc\ +\x4d\xaf\x7e\xee\xc1\xdf\x30\xeb\xa8\x67\xa7\xf5\xcd\x7d\x9c\x56\ +\x8f\xd7\x13\xf1\x52\xf9\xb1\xaa\x56\x98\x15\x81\xf1\xd6\xb1\x23\ +\x75\xf2\x74\x3d\x89\x84\xa2\xcc\x7a\xee\xd5\x91\x16\x0b\x1a\x2a\ +\x19\xb3\xda\xe8\x23\xe5\xa6\xae\x91\x80\x51\x11\x3f\x67\xd8\x55\ +\xf7\xc5\xfb\x41\x88\xcf\xe3\x5d\x1d\xd0\x69\xeb\x4d\xf6\xd2\x32\ +\x68\xa2\xdb\xdb\xea\xe9\xb4\x1a\x7c\xd8\x84\xd4\x8e\x36\x65\xde\ +\x22\x7d\xd6\x4f\xfb\xb3\x6e\xf2\x34\x6b\x4e\x1b\x36\x65\xbc\x8e\ +\xee\x8a\xea\x36\x2e\x4e\x0f\x78\xcc\x4b\xa0\x14\xf5\x4c\xe7\x72\ +\x0c\xc2\xcb\x11\x03\xed\x2d\x73\x67\x46\xc0\xf7\xa3\x40\xf4\xaa\ +\xe7\xf3\xaa\x55\xfc\x94\xaf\xf2\x8f\x19\x80\xe1\x47\xa8\x84\x9d\ +\xed\xc3\x72\xd3\x0d\x58\x1c\xc0\xb6\xb5\x21\xa4\x7d\x0e\x29\xfe\ +\xf4\x1c\x64\x93\x41\x18\xf0\x0e\x02\xe1\xbd\x1d\x85\x55\x9d\x23\ +\x73\xf6\xdc\x1d\x44\xcf\xfb\xa2\x50\x10\x50\xcf\x9f\x3a\x02\x76\ +\xf4\xb4\x2f\x75\xcf\xfb\xba\x3e\x2f\x66\xc7\x89\xd1\xc9\x57\x59\ +\x1b\xa7\x71\x1b\xef\xb2\x64\x90\xc0\x37\x36\xec\x0c\xb5\x75\xfe\ +\xb7\x1f\x7f\xba\xe9\x17\x5a\x24\xc9\xfc\x9f\x55\xfd\x61\x58\x97\ +\x90\x30\x20\xbe\xad\x36\x88\xc4\xe4\x66\x14\x2f\xd2\x64\x8e\x6a\ +\x88\x2a\x71\x93\xaf\xc0\xfd\x50\x48\xff\x8c\xea\xb7\x98\xed\x14\ +\x07\x83\x03\x58\xbb\x49\xb7\xd3\xa2\x86\x74\x65\xf5\x64\x6f\x49\ +\x93\x55\x1e\x8c\x66\xbf\xb6\x79\x51\xfc\x1c\x16\xe9\x77\xbc\x37\ +\x69\xde\x16\xd9\x4e\xb8\x98\xf5\xde\xf7\x7b\x9b\xed\x6d\x6e\x31\ +\x1b\x76\xdf\xdd\xdd\xed\x50\x39\x48\x9a\x31\xd0\x45\x7c\x9b\x81\ +\xc1\xbf\x04\x25\x39\xe6\x49\x5d\x6d\xd6\xab\x2a\xcd\x7a\xf3\x11\ +\xcd\x2c\x69\xc7\x90\xb5\xcf\x05\xf4\x5d\xc1\x99\xbf\x61\xdd\xe7\ +\x6d\x9a\x37\x6b\x58\xa0\x45\x14\x79\x99\xbd\xad\x50\x9b\x97\x45\ +\xf5\x38\x7f\xc8\x9b\xfc\xb6\xc8\xde\x76\xdf\x79\x81\x9d\x8f\xa2\ +\x25\xb6\x3f\xef\x4b\x59\x77\x13\xf5\x85\x68\xce\xb7\xb7\xf5\xa6\ +\xc8\xe6\x65\x55\x7e\x44\x09\x7b\xdb\xb4\x75\xf5\x21\x1b\xd7\xdb\ +\xde\x6e\xb3\x6d\x3e\x52\x47\x0c\xf2\xe0\x04\x36\x34\xbf\xdd\xb4\ +\xed\xbe\xec\x5f\x55\x5e\xce\x81\x7f\x56\x0f\xd2\xee\xa6\x40\xe2\ +\xb4\x73\x35\xc8\xd2\x18\x25\xaf\xae\xb1\x1d\xac\x9e\xed\x4b\xab\ +\xe5\x12\x8d\x61\x3e\xae\xbf\xf3\x78\x15\xd7\x1f\xb2\x7a\x6b\x90\ +\x95\x31\x36\x18\xdd\xc6\xc9\x87\x00\x68\x99\xce\xe3\x04\x65\x67\ +\x53\xe0\xbc\x72\x90\x50\x01\x56\xe9\xb8\x1e\x85\x43\x9f\xb4\x34\ +\x34\x44\x29\x46\xc5\xd8\x2b\x8f\x34\x07\xd9\x87\x3c\x8a\x24\xdd\ +\x29\x6b\x08\x24\x95\x68\x8c\xc6\xbb\x91\x66\x8b\x75\xdc\xde\xbf\ +\x08\xe7\x36\x1a\x3d\xba\x2f\xa2\xb1\x8f\x3d\x4f\xce\x61\xbf\x7e\ +\xfa\x72\xf4\xc7\x35\x46\x8f\x81\xca\x5f\x89\xe2\xd4\x28\xc3\xd5\ +\x94\x0b\xea\x0c\xb7\x9a\x93\x77\x04\x5b\x57\x96\x33\x6f\xa7\xdc\ +\xa1\xe3\x08\x29\x14\x11\x96\x5a\xe5\x8d\x75\x53\xae\xa8\x37\x42\ +\x0b\x4d\x04\xdf\x42\x24\x3b\x6b\xc2\x2d\x14\xd2\x07\x33\xcc\x6a\ +\x94\xe2\x9e\x70\x34\x1e\xe3\xb4\xb6\x53\x43\x8d\x74\xcc\x4a\x12\ +\xc6\x0a\xc9\x9d\x98\x06\x9d\x17\xcc\x5a\xe2\x28\x74\x4e\x7a\x0d\ +\x19\x93\x58\x90\x29\xa2\xa8\x73\x5e\x79\xc6\xa7\x5c\x53\xc6\x95\ +\x35\x9a\x74\x18\x58\xef\x7c\x58\xd1\x0a\x63\x8d\x23\x91\xa0\xda\ +\x2b\xc1\x3c\x06\x32\xaa\xa5\xd6\x4a\x92\x88\x53\xcf\x95\x13\x4c\ +\x4e\x05\xf5\x52\xf8\xe0\x0b\xe5\x5c\x32\xcd\xec\x14\xe7\x2d\x78\ +\x02\xbd\x23\x9a\x6a\xe1\x8c\xd7\x7a\x1a\x29\xaa\xb4\x81\xfb\x70\ +\x51\xc2\x7f\x66\x9c\x9a\x62\x1e\x2e\x95\x53\x1a\xe6\x9e\x5a\xeb\ +\x35\x7c\x0c\xe6\x0c\x43\x1d\x97\x44\x4a\xaa\x8d\xe5\x8a\x63\x1d\ +\x2d\x9d\xb6\xd2\x76\x32\xe5\xe0\xdc\x14\x14\xb1\xd6\x00\x21\x4f\ +\xa4\xa3\xaa\x43\x1a\xc6\x01\x68\xa1\x25\x49\x88\xa4\x90\xe1\x0f\ +\xd6\x96\x0b\x27\x1c\xc0\xd0\x70\x9d\x3b\xa9\xa7\x1e\xf0\x5a\xf8\ +\x01\x19\xa8\xd6\x6d\x19\x47\x5a\xef\x94\x25\x1f\x0f\xd8\x1d\x58\ +\x26\x61\x11\xed\xf8\xb9\x6b\xf0\x55\x09\x8e\xb4\x55\x1d\xa1\xd5\ +\x3f\xc4\xed\xa6\xce\x0e\x5a\xc6\x58\xfa\x51\x8b\x42\xb5\x44\x57\ +\x8e\xc3\xa7\x69\xe2\x57\xd0\x58\xeb\x54\x7d\x8a\xc6\x4a\x7e\x1b\ +\x1a\x23\xf0\xd6\x4b\x44\x01\x8c\x15\xc6\x49\x6e\x03\x8f\x0d\x55\ +\x4c\xe1\x04\x38\x15\x88\x88\x07\x9d\x88\x00\x0d\x03\xca\x7e\x2a\ +\x58\x60\x1f\x83\x88\xc1\xc2\x68\xa9\x3a\x5b\x66\xb4\x51\x81\xb6\ +\xce\x5b\x0e\x4b\x90\x9a\x59\x86\x23\x32\x01\x0b\x25\x43\xe0\x5c\ +\x08\x04\x43\x2c\x25\x28\xcf\x29\x0e\x55\x80\x3e\x50\xde\x5a\x6d\ +\x41\x1e\xd4\x0d\x8e\x65\x59\x27\x53\xd2\x39\xd8\x4a\x50\x5e\x18\ +\x1f\xe2\xcc\xa8\x12\x38\x84\x13\xd6\x25\x57\x97\x3e\x24\x0a\x7c\ +\xe3\x8c\xb9\x8e\xeb\x20\x33\x92\x2f\xf0\x1a\x0c\x33\x38\xd0\x4d\ +\x91\x1e\xd2\x2b\x07\x6a\x81\x3c\x0a\xc9\xc7\xad\x9c\xea\x90\x7c\ +\x0a\x03\x90\x29\x20\x91\xf3\xc6\x80\x5b\xc8\x18\xf0\x51\xdb\x90\ +\x66\xda\x63\x75\x3d\x55\x54\x58\x6e\x43\x02\xb8\x40\x32\xeb\x0d\ +\x6c\x11\x35\x87\x5d\x83\x82\x20\xbb\x75\x56\xab\xc0\x41\xad\x14\ +\xc6\x9a\x4e\x06\x70\xe0\x4f\xc7\x60\x66\xa4\x76\xc1\x1c\x71\xd3\ +\x4a\x77\x14\xb6\x4a\x1f\xb3\xd7\x0d\xe4\x35\x23\x79\xf5\xc0\x5d\ +\xd7\x55\x3c\x7d\x86\xba\xdf\x9a\xb8\x9f\xaf\xbf\xe7\x7b\xdf\xc5\ +\x88\xbb\x22\x82\x76\x73\x6a\x40\xa8\xa9\x41\x34\x04\x15\x5c\x3b\ +\x30\x6e\x1a\xe2\x6f\x1d\x38\x48\x4c\xb8\x80\xd0\x86\x68\x18\xc1\ +\x51\x34\x09\x4a\xdd\xd6\x1b\x15\x84\x02\xb8\x1b\x6f\x98\xf2\x88\ +\x8d\xd1\x88\x05\x27\x9e\x0a\xcd\x42\xf9\xc4\x85\x47\x1e\x82\xd5\ +\xa8\xdc\x81\x6f\x81\x50\x7a\xcb\x3c\x48\x9c\x44\x39\x0e\x35\x2d\ +\x4c\x86\x4a\x8f\x08\x5a\x54\x6f\x2c\x86\xa0\x29\x14\x5b\x33\x2e\ +\x86\x82\x36\x5e\x76\x5e\x09\x38\x8b\xe0\x87\xfa\xc9\x82\x44\x80\ +\x9a\x21\x09\xa1\xf3\x8c\x49\x4f\x7a\xd0\xec\x54\x60\x2e\x82\x12\ +\x2b\xc0\x49\x23\xc0\x49\xcd\x64\xd8\x5b\x04\xa7\xb4\x0e\x9d\x01\ +\x32\x13\x12\x32\x14\x6f\xd7\x6f\x6e\xca\x90\x06\x20\x97\x06\xab\ +\x85\x00\x24\x9a\x3a\xb4\x07\xdf\x99\x29\xae\xad\x92\xc1\x0e\x15\ +\xdf\xea\x7d\x3b\x15\x0c\x65\x40\xc2\x4a\xa4\x76\x80\xc8\xa3\xaf\ +\x00\x37\x5c\xa1\xcd\x04\x80\x65\xb7\x41\xcd\xe0\x32\x47\x36\x46\ +\x21\xd3\x3b\xe3\xd3\x0c\x95\x91\xfb\xd6\x1c\x15\x5c\x29\xeb\x3e\ +\xc5\x51\x9c\xe7\xfe\xfb\x1c\x45\x05\x18\xda\x7c\x4f\x20\xb9\x23\ +\x2a\x17\x9f\x24\x2a\xdf\x71\xc7\x7e\x9a\xa8\xc7\x34\x95\x03\x4d\ +\x55\xa8\xe5\x0a\x65\xd5\x72\x24\x0a\xfa\xb0\xf6\x5e\xa0\xc9\xcb\ +\x50\x91\xd1\x0f\xf9\x14\x87\x13\x67\x1c\x43\xe5\x56\x0c\x13\x19\ +\xa2\x7a\x76\x76\x07\x1b\xb1\xa5\xa7\xea\xf9\x39\x45\x13\xd0\x5b\ +\x7a\xaa\x91\x9f\x52\x84\x76\x61\xad\x70\x4c\x4d\x71\xd5\xd3\x33\ +\x0c\x85\x93\x26\x88\x7a\x76\x06\x26\x87\xe1\xc8\x18\x19\x78\xc9\ +\x61\x60\x28\x47\xbb\xe7\xe8\x3a\x38\x03\x39\x25\xf0\xa0\xdd\x4d\ +\x12\x78\xa9\xf6\x00\x84\x59\xb2\x23\xa6\xf4\x27\x88\xc9\xd5\x97\ +\x12\xf3\x5b\xd3\xb2\x7f\x90\xf8\x74\xad\xf4\x08\xb2\xd0\xee\x82\ +\x3d\x7e\xe4\xf6\xb6\x96\xbc\xeb\xfa\x4a\x77\x79\x74\x71\x0c\x13\ +\x02\x1b\xb1\x48\xbc\x1a\xaa\xef\x14\x85\xd5\x1e\x0a\x3b\x5a\x84\ +\x64\xe4\x3d\xc3\xd8\xb9\xeb\x73\x98\xf0\xdf\x15\x26\xbc\x4f\xb5\ +\xaf\xc3\xe4\xf5\x29\xf5\x9d\x62\xb2\x9f\x2d\x66\x4c\x16\xd3\xa7\ +\xc8\xde\xf7\x39\x04\xd4\xff\x3b\x02\x07\xac\x18\xae\xbe\x8e\x15\ +\xfe\xdb\x62\x32\x78\xa4\xd4\x97\x43\xf2\xfa\x77\x2d\x67\xe8\x13\ +\xda\xce\x88\xda\x3f\xc2\x13\x2d\x3b\x7c\x9d\x38\x60\x23\x10\xb8\ +\x8b\x34\xa0\x24\xf9\x3c\x6c\x7b\x8e\x7f\x87\x98\x0d\xbf\xae\xa0\ +\xcd\x0f\x70\x91\xbf\x90\x63\x3a\x01\xb2\xcb\x1c\x25\x5f\x03\xd9\ +\x2b\x99\x86\xe7\x5a\x1c\xa7\xf5\x05\xd3\x4f\xf7\xef\x86\x80\xc6\ +\x80\x0b\xd2\x8f\x85\xd7\x2c\x62\xfb\x00\x71\xe6\xfa\xc4\x19\x47\ +\xbd\xfe\xbd\xc6\x45\x38\x74\x79\x34\xc2\xf3\xef\x45\x80\x88\x5e\ +\x9f\x6d\xdf\x29\x14\xc2\x5d\x0a\x8a\x0b\x1e\xe7\xfe\x47\x50\x8c\ +\x2f\x50\x2f\x82\x87\xfd\x3d\x35\xed\xf0\xc2\xf9\xeb\x8f\x72\x5f\ +\x8e\xc8\x89\x1f\x60\xfa\x57\x9d\xcb\xf0\x77\xf8\x34\x8e\x67\x58\ +\x65\x99\x76\x4e\x8c\x48\xa9\x65\x6a\x96\xf2\x25\x79\x84\xb2\x9a\ +\x4b\x66\xfe\xf3\x66\xc3\xf0\x60\xe9\x84\xd4\xc2\x1f\x6c\x35\xb8\ +\x8b\x86\xb2\x13\x0e\x3f\x6c\xf4\x2d\x68\x47\x95\xf1\x87\x8d\x23\ +\xcd\xc9\xdf\x0b\x9f\x4f\x09\x6b\x0c\xd5\x78\x34\xc5\x43\xb2\xdb\ +\x45\x6e\xfb\xdb\x87\xc7\xf3\x39\xb3\xfe\x15\xdc\xf2\xdd\x67\x44\ +\xec\x80\x6a\x3d\x62\x38\x9e\xaa\xf0\x8e\x9d\xa9\x4b\x92\x6b\x78\ +\x62\x9a\xda\xe0\x2d\x53\x6a\x9b\x6e\xdc\x53\xde\xb9\x64\xcf\xdf\ +\x9c\xe0\x97\xf1\x97\x2c\xc6\x6f\x1c\x0b\x7f\x9f\x41\x45\x3b\xcf\ +\xbc\xe6\x97\x7c\xbd\x63\xa9\x3a\xf1\x44\x89\x9d\x8b\x2e\xe7\x43\ +\x9e\x9d\xbd\x39\x55\x87\xbe\xb4\x0a\x2d\x66\x77\x37\x57\x8b\xf0\ +\xf3\xef\xcd\xd5\xbf\x01\x5a\x78\x2f\x26\ +\x00\x00\x06\xf7\ +\x00\ +\x00\x18\xf1\x78\x9c\xed\x58\x5b\x8f\xeb\x36\x0e\x7e\x9f\x5f\xa1\ +\xcd\x79\xe9\x62\x23\x5b\x92\xaf\x72\x2e\x7d\xd8\x83\x02\x05\xce\ +\xbe\x6c\xbb\x2d\xb0\x2f\x85\x62\x2b\x89\x3a\xb6\x95\x95\x95\x49\ +\xd2\x5f\x5f\xca\xb7\xc4\x99\x4c\x31\xc5\xb6\x40\x1f\x46\xc0\x4c\ +\x22\x92\xa2\x28\x92\x9f\x48\x65\xf9\xf5\xb9\x2a\xd1\x8b\x34\x8d\ +\xd2\xf5\x6a\x46\x3d\x32\x43\xb2\xce\x75\xa1\xea\xdd\x6a\xf6\x9f\ +\xef\xbf\xc1\xe9\x0c\x35\x56\xd4\x85\x28\x75\x2d\x57\xb3\x5a\xcf\ +\xbe\x5e\x3f\x2d\xff\x86\x31\xfa\xa7\x91\xc2\xca\x02\x9d\x94\xdd\ +\xa3\x6f\xeb\xe7\x26\x17\x07\x89\xbe\xda\x5b\x7b\xc8\x7c\xff\x74\ +\x3a\x79\xaa\x27\x7a\xda\xec\xfc\xbf\x23\x8c\xd7\x4f\x4f\xcb\xe6\ +\x65\xf7\x84\x10\x82\x7d\xeb\x26\x2b\xf2\xd5\xac\x5f\x70\x38\x9a\ +\xb2\x15\x2c\x72\x5f\x96\xb2\x92\xb5\x6d\x7c\xea\x51\x7f\x76\x15\ +\xcf\xaf\xe2\xb9\xdb\x5d\xbd\xc8\x5c\x57\x95\xae\x9b\x76\x65\xdd\ +\x7c\xba\x11\x36\xc5\x76\x94\x76\xd6\x9c\x82\x56\x88\x72\xce\x7d\ +\xc2\x7c\xc6\x30\x48\xe0\xe6\x52\x5b\x71\xc6\xd3\xa5\x60\xe3\xa3\ +\xa5\x8c\x10\xe2\x03\xef\x2a\xf9\x3e\xa9\xac\x01\x87\x1e\xe0\x6f\ +\x14\x1f\x08\x5e\xa3\x8f\x26\x97\x5b\x58\x27\xbd\x5a\x5a\xff\xf3\ +\xf7\x9f\x47\x26\x26\x5e\x61\x8b\x1b\x35\x83\x3f\x27\xbb\x4e\x9c\ +\x5c\x8b\x4a\x36\x07\x91\xcb\xc6\x1f\xe8\xed\xfa\x93\x2a\xec\x7e\ +\x35\x0b\x42\x8f\x06\x30\xa2\x96\xb8\x97\x6a\xb7\xb7\xf7\x54\x55\ +\xac\x66\x60\x3d\xe3\x69\x37\xbf\x49\x0e\xda\x09\xf4\x8a\xb3\x91\ +\x43\x3c\xce\x3c\x8a\x0c\x8d\x82\xa4\x93\x19\x8e\x90\x15\x3a\x77\ +\x36\x81\x4a\x59\x29\x71\xb4\xba\x82\xa8\xe5\x79\x29\x9a\x46\x6d\ +\x55\x0e\x13\x5d\x1f\xca\xe3\x4e\xd5\x3f\x6d\x95\xfd\xe9\x50\x6a\ +\xeb\x0d\xbe\x1b\x37\x92\xe7\x83\x36\x16\x9f\x8b\x03\x78\x30\x4e\ +\x1e\x32\x2f\x03\x73\x0d\xdc\x65\x21\xb7\x8d\x93\xea\x8e\xe3\x66\ +\x70\x9e\x64\x86\xfc\x96\x3b\x5a\xe7\x4c\x2b\x5e\x94\x3c\x5d\x65\ +\x37\xa2\xe9\x5c\x86\xd0\x41\xec\x20\xbd\x4a\x6d\x56\xb3\x4f\xdb\ +\x76\xf4\x8c\x8d\x36\x85\x34\x03\x2b\x6e\xc7\x84\xa5\x21\x04\xca\ +\x5e\x3a\x40\xf5\xba\x07\x7b\x9d\xd6\x91\x4f\x1e\xf3\x9b\xbd\x28\ +\xf4\x69\x35\x63\xf7\xcc\x5f\xb4\xae\x56\xb3\xc4\xe3\x34\x25\x21\ +\x4d\xee\xd9\xf9\x79\x35\xc3\x34\xf1\xa2\x30\x0c\x5e\x33\x61\x3f\ +\x96\x7a\x94\x90\x90\x44\xaf\x98\x47\x63\x00\x71\xb8\x14\x17\x09\ +\x87\x6a\x3f\x68\x2f\xd4\xec\xf5\x69\x67\x9c\x73\xac\x39\xca\xfb\ +\x95\x8e\x83\x37\x1b\x7d\x7e\xcc\x86\x04\x38\x3a\x2c\xe3\x63\xad\ +\x2c\xe0\xe5\x70\xbe\xd5\x7a\x54\x85\x6c\x1e\x2f\x3c\xa9\x1a\x7c\ +\x80\xfb\xcc\xa5\xc1\xe8\xe2\x7b\x89\x21\x8d\x13\x92\xbe\x21\x01\ +\xa6\xbd\x72\x73\xcf\xba\xbc\xcd\xaa\xc4\x59\x55\xea\x17\x09\xe7\ +\xa6\xf7\x22\x4d\x2d\x0e\x78\x57\xea\x8d\x28\x7b\xeb\xd7\xad\xc4\ +\x72\xe2\x96\x6e\x11\x42\xf6\xe2\x30\x7b\xbe\x38\xda\x6c\x20\x3a\ +\x7f\x3a\x42\x90\xc4\xd1\x48\xd4\x46\x01\x14\x6e\xec\x1d\x48\x97\ +\x5b\x92\x43\x38\x5c\xd0\xe7\x36\xbf\xda\xec\x4b\xee\x79\x97\x5b\ +\x5e\x9f\xf6\xfe\xeb\xbc\x6f\xe9\x95\xb4\xa2\x10\x56\x5c\x41\x30\ +\x50\x18\xe7\x64\x38\x19\x5c\x96\xd9\xbf\x3f\x7f\xb3\xee\x37\x5a\ +\xe6\x79\xf6\xa3\x36\xcf\xc3\xbe\x08\x39\x01\xb1\xd1\x47\x08\xc5\ +\x6c\x3d\x92\x97\x45\x9e\xc1\xf5\x06\xb0\x5f\xab\x0a\x52\xdb\xdd\ +\x8c\xff\x80\xeb\x6c\xe9\x5f\x19\x13\x61\xe7\xac\xab\xd2\x4e\xad\ +\x91\xdd\x3d\xf9\xb0\x58\x14\x79\xa5\xdc\x22\xff\x3b\xab\xca\xf2\ +\x5b\xb7\x49\x7f\xe2\x1b\xa5\xca\x96\xf2\x4a\x5c\xfa\xbd\xf5\xfd\ +\xd9\xfc\x9b\xc3\x2d\xfd\xe1\xf4\xed\x6c\x77\xf5\xca\x04\x14\x63\ +\xa0\x4b\xb1\x91\x90\x04\x5f\x1c\x13\xbd\xe2\xee\x8c\x3e\x1e\x2a\ +\x5d\xc8\x7e\xf9\xe8\x4d\x99\xdb\x31\x64\xf6\x52\x02\x7f\x0b\xd6\ +\x67\xfd\x45\xb3\x70\x13\xdc\x5f\x13\x19\xed\xa6\xe6\x58\xc2\x75\ +\xf7\x22\x6b\x5d\x14\x8b\xc6\x1a\xfd\x2c\xb3\x4f\x80\xe6\x94\x90\ +\x7e\xda\xa1\x25\x1b\xa7\xa5\xaa\x25\x98\x91\x35\xff\x3b\x0a\x23\ +\x6f\xa9\x3f\x6b\x55\x67\xe0\x37\x69\x06\x6a\x3b\x29\x21\xe3\x6d\ +\x16\x0e\xb4\x42\xc0\x4d\x64\x8c\xb8\x64\x35\x54\xff\x5b\xaa\xde\ +\x6e\x1b\x69\xaf\x3b\x0d\xa6\x12\x2f\xe8\xc7\x24\xd1\xdd\x71\x03\ +\xce\xe9\x48\x7c\x58\x90\xdc\x78\x5c\x94\xdc\x98\xa0\x02\xf2\x9b\ +\x7b\x61\x12\x70\x12\xc4\x12\xd3\x78\x64\x98\x89\x98\x01\xb9\xc0\ +\x0b\xa0\x30\xc5\x3c\x1d\xb3\x62\x79\x10\x76\xff\xc8\xfb\x37\xa7\ +\x74\x9e\x4d\xe5\xbd\x67\x47\x4c\xb1\xc3\xf9\xde\xc9\x9b\xa3\xb5\ +\xbf\xed\xe2\x31\x9e\xa3\x7d\x0e\x6b\x08\x8f\x5a\xe7\x8c\x79\x21\ +\x0a\x3c\x36\x1f\x68\x09\x8a\xbd\x70\x8e\x53\x2f\x6a\x9d\x8a\xa2\ +\xde\xbf\xc9\x8d\xc4\x40\x9b\x73\x2f\xbe\x4e\x58\xe7\xbf\x10\x7d\ +\x41\x01\x9b\xb3\xc4\x4b\x3a\x0d\x25\x1a\x94\xcd\x61\xa3\x49\x94\ +\x9c\x5b\x42\x12\x5c\x2f\x93\x6b\x79\xd0\x35\x1c\xd2\x6a\x83\xa1\ +\x50\xbc\x08\x7b\x34\xd2\xb9\xf9\xff\x77\x68\xe4\x31\xe6\x4e\xc1\ +\x83\xdf\xef\xce\xf7\x67\xec\x6f\x64\xe7\xab\x08\xd0\x5e\x66\x12\ +\x86\x78\x12\x86\xf0\x41\x18\xe2\x69\x18\xbe\x20\x16\x0e\x6e\xee\ +\x82\x0a\x31\x88\xbd\x6e\x93\xf7\xc4\x00\x07\xef\x8e\xc2\x2b\x39\ +\x6b\x44\xdd\xb8\xbb\x15\xe7\x50\x79\xa5\xc1\x6d\xa5\x88\xdf\x21\ +\x78\x71\xfd\xc3\x5d\xdd\x78\x1c\xde\xb6\xfb\x71\x31\x75\x63\xb1\ +\xd5\x50\xe1\x5b\x0e\xf8\x1d\xee\xf4\xb2\xa3\xbc\x08\xa3\x44\x6d\ +\x27\xb4\x53\x0b\xf0\x09\x09\xa2\x24\x6d\xbe\x9f\xd2\xa0\xf2\x66\ +\x50\xa5\xd4\xb1\x5a\xb8\xf0\xf7\x65\x7e\x22\xb3\x15\x95\x2a\x2f\ +\xd9\x77\x70\x88\x05\x1e\x0e\x85\xbb\xe5\x07\x99\x8f\x0d\x66\x27\ +\x61\xe5\xd9\x82\x54\x01\x27\x85\x7b\xab\x9d\x89\x52\xed\xea\x0c\ +\xde\x37\xc6\x76\x84\x02\x1a\x3e\xd3\xad\x69\xf3\xe7\x8e\xd8\x26\ +\x62\xc7\x29\xa5\x75\x0e\xeb\xcb\xed\x60\xd6\x09\xda\xbf\x7b\x5a\ +\xab\x63\xf4\x74\xb7\xfa\x64\x94\x05\x11\xec\x2a\x43\x56\x1a\x6c\ +\x37\x8b\x42\xb9\x4b\xd2\xed\x5c\x5a\xb3\x70\x6d\x68\x7b\xec\x66\ +\xaf\xb6\x36\x1b\xa6\xbd\xd9\x75\xbe\x07\xe7\x77\x76\x17\xaa\x39\ +\x40\x69\x81\xc7\x41\x2b\xa0\xa1\x2b\xdf\x96\xfa\x94\xbd\xa8\x46\ +\x6d\x4a\xb9\x68\x3f\x55\xe9\xd2\x7f\x20\x75\x95\x86\xe6\x74\xcb\ +\xc2\xfb\x4a\xd3\x83\xf5\x16\x3d\x1d\x52\x03\x8f\x87\x90\x15\x51\ +\x14\x2c\x2a\x61\x9e\xa5\xe9\x64\x64\x2d\x40\x25\xde\x88\xfc\xd9\ +\xd5\xba\xba\xc8\x44\x0e\x1d\xdf\xb1\x84\xb7\xe1\x14\x64\x00\x88\ +\xb4\x4d\xfa\x39\xc0\x90\x01\xbc\x48\x38\x77\xff\x1c\x56\x18\x74\ +\xb4\x51\x12\xcd\xdd\x2d\x15\xb3\x38\x48\x11\x80\x85\xb3\x30\x0a\ +\xd9\x9c\x12\x2f\x24\x69\xc2\x29\x0a\xe0\xa1\xd1\xa1\x06\xd0\x08\ +\x20\xba\xaa\xf8\x01\xb5\x3a\xff\xfb\x0a\x4a\x01\x21\xfc\x77\x03\ +\xe9\xda\x27\x41\x78\x5c\x6b\x01\x2d\x6a\xde\x8f\x0f\x50\x7c\x80\ +\xe2\x0f\x03\xc5\xbf\xa0\x0e\x30\x92\xa6\x1c\x0a\x49\x10\x79\x94\ +\x47\x3c\xe5\x63\x21\x81\xe2\xc0\x10\x64\x7f\x14\x84\x80\x08\x57\ +\xc2\x53\xce\x68\xe8\x5a\x02\x68\x40\x58\x1c\x42\xb5\x8a\x3c\x42\ +\x19\x89\x19\x82\x1a\x13\x25\x49\xc2\xe2\x39\xbc\xf1\xe0\x71\x48\ +\x28\xc2\x00\x1c\x9a\x24\x69\x4a\x63\x27\x18\x93\x94\x30\x47\x4c\ +\x79\x1a\x06\x34\x4e\xe7\xd0\x63\x25\xd4\x69\x7f\x03\x38\x98\x7e\ +\x40\xe7\x03\x3a\x7f\x55\xe8\xb8\x46\x25\x60\x00\x13\x0e\x1d\x17\ +\xa5\x9c\x07\x51\x84\xa8\xc7\x79\xec\x7e\xe2\x83\x12\x41\xe2\x34\ +\xa2\x8c\x03\x5c\x02\x4e\x69\x42\xe9\x9c\xc2\x12\xc6\xa3\x34\x45\ +\x1c\xaa\x46\x0a\x5f\x38\x94\x1c\x42\x49\x02\x08\x02\x28\x31\x78\ +\x51\x84\xa9\x2b\x29\x34\x21\x1c\xd0\x92\x7a\x24\x0a\x18\x74\x79\ +\x04\xf6\x0a\x03\xd8\xee\xb6\x57\x24\x6f\xe2\x06\xb3\x0f\xe4\x7c\ +\x20\xe7\xaf\x89\x9c\x0a\xc1\xbd\x0f\xa9\xce\x79\xea\x9e\x24\x50\ +\x15\xe2\x10\xd2\x1a\x92\x1e\xde\xd2\x89\x7b\x91\x90\x24\x82\x1a\ +\x81\x70\xe8\x85\x41\x44\xd2\x60\x0e\xdf\x38\x8b\x00\x1d\x08\x33\ +\x2f\x86\x4f\x36\x07\x15\x21\x61\x80\x38\xf8\x12\xc5\x00\x33\x58\ +\xc7\xa1\xc4\x00\xb6\x1e\xa8\xfa\x82\x86\xf7\x7c\xe0\x0a\xdd\x5b\ +\x9d\x1a\x0e\xff\x0c\xd8\x2c\xfd\xdd\xfa\x69\xe9\x7e\x78\x5a\x3f\ +\xfd\x0a\x4c\x29\xd2\x0a\ +\x00\x00\x12\x20\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x34\x20\x28\x35\x64\x61\ +\x36\x38\x39\x63\x33\x31\x33\x2c\x20\x32\x30\x31\x39\x2d\x30\x31\ +\x2d\x31\x34\x29\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\ +\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\ +\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x75\x6e\x64\ +\x6f\x5f\x73\x61\x76\x65\x5f\x72\x6f\x69\x2e\x73\x76\x67\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ +\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ +\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ +\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ +\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x34\x2e\x35\x34\x38\x38\x30\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x31\x36\x2e\x31\x30\x34\x39\x38\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\ +\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ +\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x37\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ +\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ +\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ +\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ +\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ +\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ +\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ +\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ +\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ +\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ +\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ +\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\x34\ +\x37\x35\x31\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x33\x33\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x33\x32\x35\x36\x36\x65\x2d\ +\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x35\ +\x2e\x32\x31\x30\x36\x34\x36\x38\x65\x2d\x31\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\x34\ +\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ +\x2e\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\ +\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\ +\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\ +\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ +\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\ +\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\ +\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\ +\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\ +\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\ +\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\ +\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\ +\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\ +\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\ +\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\ +\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\ +\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\ +\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\ +\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\ +\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\ +\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\ +\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ +\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\ +\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ +\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\x32\ +\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\ +\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ +\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x33\x30\x2e\x34\x30\x36\x39\x35\x34\ +\x2c\x31\x31\x2e\x36\x39\x35\x31\x30\x38\x20\x43\x20\x32\x36\x2e\ +\x30\x30\x34\x31\x39\x38\x2c\x33\x2e\x33\x31\x30\x30\x37\x35\x38\ +\x20\x31\x39\x2e\x33\x36\x39\x31\x35\x38\x2c\x34\x2e\x35\x32\x38\ +\x36\x37\x30\x31\x20\x31\x30\x2e\x36\x36\x36\x36\x36\x37\x2c\x37\ +\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x4c\x20\x38\x2e\x36\x36\x36\ +\x30\x31\x30\x37\x2c\x31\x2e\x39\x34\x31\x30\x36\x32\x34\x20\x32\ +\x2e\x32\x30\x39\x35\x30\x37\x36\x2c\x31\x35\x2e\x39\x30\x32\x37\ +\x20\x33\x2e\x36\x32\x39\x36\x31\x36\x31\x2c\x31\x36\x2e\x34\x39\ +\x37\x36\x33\x35\x20\x31\x36\x2e\x39\x32\x37\x34\x35\x32\x2c\x31\ +\x37\x2e\x30\x36\x38\x36\x35\x31\x20\x31\x33\x2e\x36\x31\x35\x35\ +\x36\x39\x2c\x31\x31\x2e\x35\x31\x34\x35\x34\x38\x20\x63\x20\x35\ +\x2e\x38\x30\x33\x39\x39\x39\x2c\x2d\x31\x2e\x32\x38\x36\x31\x30\ +\x35\x20\x31\x31\x2e\x36\x30\x39\x39\x34\x38\x2c\x2d\x32\x2e\x35\ +\x39\x31\x38\x30\x38\x38\x20\x31\x34\x2e\x33\x38\x34\x32\x36\x34\ +\x2c\x32\x2e\x36\x39\x31\x38\x36\x36\x20\x32\x2e\x35\x32\x34\x36\ +\x31\x33\x2c\x32\x2e\x32\x38\x32\x34\x32\x38\x20\x33\x2e\x39\x39\ +\x32\x33\x38\x34\x2c\x31\x2e\x37\x33\x34\x33\x39\x32\x20\x32\x2e\ +\x34\x30\x37\x31\x32\x36\x2c\x2d\x32\x2e\x35\x31\x31\x33\x20\x7a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x39\x38\x38\x2d\x37\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ +\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\ +\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ +\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ +\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\ +\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\ +\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ +\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ +\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\ +\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\ +\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\ +\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\ +\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\ +\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\ +\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\ +\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\ +\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\ +\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\ +\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\ +\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\ +\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\ +\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\ +\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\ +\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\x32\x3b\ +\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x33\x30\x2e\x30\x39\x32\x30\x33\x36\x2c\ +\x39\x2e\x33\x38\x30\x39\x31\x34\x31\x20\x43\x20\x32\x35\x2e\x36\ +\x38\x39\x32\x38\x32\x2c\x30\x2e\x39\x39\x35\x38\x38\x31\x30\x37\ +\x20\x31\x39\x2e\x30\x35\x34\x32\x34\x31\x2c\x32\x2e\x32\x31\x34\ +\x34\x37\x35\x36\x20\x31\x30\x2e\x33\x35\x31\x37\x34\x39\x2c\x35\ +\x2e\x31\x35\x32\x34\x37\x32\x32\x20\x4c\x20\x38\x2e\x33\x35\x31\ +\x30\x39\x33\x33\x2c\x2d\x30\x2e\x33\x37\x33\x31\x33\x32\x36\x39\ +\x20\x31\x2e\x38\x39\x34\x35\x39\x30\x32\x2c\x31\x33\x2e\x35\x38\ +\x38\x35\x30\x35\x20\x33\x2e\x33\x31\x34\x37\x30\x31\x31\x2c\x31\ +\x34\x2e\x31\x38\x33\x34\x34\x32\x20\x31\x36\x2e\x36\x31\x32\x35\ +\x33\x34\x2c\x31\x34\x2e\x37\x35\x34\x34\x35\x38\x20\x31\x33\x2e\ +\x33\x30\x30\x36\x35\x32\x2c\x39\x2e\x32\x30\x30\x33\x35\x34\x31\ +\x20\x63\x20\x35\x2e\x38\x30\x33\x39\x39\x39\x2c\x2d\x31\x2e\x32\ +\x38\x36\x31\x30\x34\x35\x20\x31\x31\x2e\x36\x30\x39\x39\x34\x37\ +\x2c\x2d\x32\x2e\x35\x39\x31\x38\x30\x39\x36\x20\x31\x34\x2e\x33\ +\x38\x34\x32\x36\x33\x2c\x32\x2e\x36\x39\x31\x38\x36\x33\x39\x20\ +\x32\x2e\x35\x32\x34\x36\x31\x32\x2c\x32\x2e\x32\x38\x32\x34\x32\ +\x38\x20\x33\x2e\x39\x39\x32\x33\x38\x33\x2c\x31\x2e\x37\x33\x34\ +\x33\x39\x32\x20\x32\x2e\x34\x30\x37\x31\x32\x37\x2c\x2d\x32\x2e\ +\x35\x31\x31\x32\x39\x39\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x2d\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ +\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ +\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\ +\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x38\x2e\x31\x33\x33\x33\x33\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\x2e\ +\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x32\x2e\x38\x34\x34\x34\x34\x34\x35\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x18\xa1\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x35\x33\x32\x30\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\x6f\x61\ +\x64\x5f\x69\x6d\x61\x67\x65\x5f\x70\x72\x65\x76\x69\x65\x77\x2e\ +\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x2e\x35\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x2e\ +\x35\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x35\x33\x32\x32\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\ +\x32\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x35\x39\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x30\x30\x30\x38\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ +\x39\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x35\x39\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x31\x3d\x22\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x31\x3d\x22\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x35\x33\ +\x37\x37\x34\x31\x30\x35\x2c\x30\x2c\x30\x2c\x30\x2e\x35\x33\x37\ +\x37\x34\x31\x30\x35\x2c\x31\x36\x2e\x33\x39\x36\x37\x30\x34\x2c\ +\x31\x37\x2e\x32\x37\x36\x33\x30\x38\x29\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\ +\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\ +\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\x32\x37\x32\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x31\x31\x2e\ +\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x32\x3d\x22\x33\x2e\x31\x38\x31\x38\x31\x38\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\x36\x33\x36\x33\ +\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\ +\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\ +\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x33\x32\x32\ +\x36\x34\x34\x36\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x33\x30\x39\x32\ +\x30\x31\x31\x2c\x33\x31\x2e\x34\x35\x33\x34\x35\x33\x2c\x32\x39\ +\x2e\x34\x35\x32\x37\x38\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\ +\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\ +\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\ +\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\ +\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\ +\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x2d\x34\x32\x2e\x33\x31\x30\x35\x36\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x31\x39\x2e\x38\x33\x35\x36\x37\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\ +\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\ +\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\ +\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\ +\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ +\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ +\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x72\x69\x64\x35\x33\x34\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x35\x33\x32\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ +\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ +\x62\x65\x6c\x3d\x22\x4c\x69\x76\x65\x6c\x6c\x6f\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ +\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ +\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x62\x33\ +\x62\x33\x62\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\ +\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x35\ +\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x32\x2e\x32\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\ +\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ +\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ +\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x30\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x34\x34\x2e\x37\ +\x39\x39\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x33\x37\x2e\x33\x33\x33\x33\x33\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x36\x2e\x34\x30\ +\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ +\x22\x2d\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x39\x2e\x33\x37\x31\x30\x32\x30\ +\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x62\x33\x66\x66\x38\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\x33\x37\x37\x37\x37\x36\ +\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x31\x2e\x33\ +\x37\x37\x37\x37\x38\x2c\x30\x20\x33\x34\x2e\x31\x33\x33\x33\x33\ +\x33\x2c\x31\x31\x2e\x33\x37\x37\x37\x37\x38\x20\x32\x32\x2e\x37\ +\x35\x35\x35\x35\x35\x2c\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\ +\x30\x2c\x32\x32\x2e\x37\x35\x35\x35\x35\x35\x20\x5a\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\ +\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\ +\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x67\x33\x30\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2e\x32\x39\x33\x34\x34\x32\x33\x2c\x30\x2c\x30\x2c\x31\ +\x2e\x32\x37\x38\x31\x32\x39\x36\x2c\x2d\x37\x2e\x35\x32\x35\x37\ +\x36\x32\x35\x2c\x2d\x31\x30\x2e\x33\x37\x36\x37\x35\x31\x29\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x33\x2e\ +\x33\x30\x33\x33\x31\x34\x2c\x31\x37\x2e\x31\x34\x31\x38\x37\x33\ +\x20\x63\x20\x2d\x30\x2e\x35\x35\x30\x38\x32\x32\x2c\x30\x20\x2d\ +\x30\x2e\x39\x39\x31\x34\x36\x2c\x30\x2e\x34\x34\x30\x36\x33\x38\ +\x20\x2d\x30\x2e\x39\x39\x31\x34\x36\x2c\x30\x2e\x39\x39\x31\x34\ +\x36\x20\x76\x20\x37\x2e\x32\x30\x39\x30\x39\x32\x20\x68\x20\x2d\ +\x33\x2e\x37\x36\x34\x31\x38\x36\x20\x63\x20\x2d\x31\x2e\x30\x37\ +\x35\x34\x38\x33\x2c\x30\x20\x35\x2e\x39\x31\x35\x31\x35\x2c\x38\ +\x2e\x30\x36\x36\x31\x31\x35\x20\x35\x2e\x39\x31\x35\x31\x35\x2c\ +\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x6c\x20\x30\x2e\x35\x33\x37\ +\x37\x34\x31\x2c\x30\x2e\x35\x33\x37\x37\x34\x31\x20\x30\x2e\x35\ +\x33\x37\x37\x34\x32\x2c\x2d\x30\x2e\x35\x33\x37\x37\x34\x31\x20\ +\x63\x20\x30\x2c\x30\x20\x36\x2e\x39\x39\x30\x36\x33\x33\x2c\x2d\ +\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x35\x2e\x39\x31\x35\x31\x35\ +\x32\x2c\x2d\x38\x2e\x30\x36\x36\x31\x31\x35\x20\x68\x20\x2d\x33\ +\x2e\x37\x36\x34\x31\x38\x38\x20\x76\x20\x2d\x37\x2e\x32\x30\x39\ +\x30\x39\x32\x20\x63\x20\x30\x2c\x2d\x30\x2e\x35\x35\x30\x38\x32\ +\x32\x20\x2d\x30\x2e\x34\x34\x30\x36\x33\x38\x2c\x2d\x30\x2e\x39\ +\x39\x31\x34\x36\x20\x2d\x30\x2e\x39\x39\x31\x34\x36\x2c\x2d\x30\ +\x2e\x39\x39\x31\x34\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\ +\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x35\x39\x37\x37\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\ +\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x35\x39\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x36\x30\x32\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x31\x35\x38\x35\x31\x33\x36\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x32\x39\x2e\x38\x34\x30\x32\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x31\x2e\x33\x30\x37\x39\x38\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ +\x33\x2e\x32\x32\x36\x34\x34\x36\x34\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x30\x39\x32\x30\x31\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\ +\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x30\x2e\x30\x39\x30\x34\x33\x39\x32\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x63\x78\x3d\x22\x32\x39\x2e\x37\x30\x35\x37\x39\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x33\x31\x2e\ +\x33\x30\x37\x39\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x31\x2e\x32\x30\x39\x39\x31\x37\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x39\ +\x35\x37\x35\x37\x35\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x30\x2e\x31\x33\x34\x38\x31\x38\x38\x32\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x39\x2e\x38\x34\ +\x30\x32\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x33\x31\x2e\x33\x30\x37\x39\x38\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x38\x38\ +\x37\x30\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x32\x2e\x39\x35\x37\x35\x37\x35\x38\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x30\x2e\x30\x39\x33\x34\x37\x32\x37\x33\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\ +\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ +\x2e\x30\x30\x35\x39\x34\x30\x32\x38\x2c\x30\x2e\x39\x39\x39\x39\ +\x38\x32\x33\x36\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x33\x31\x2e\ +\x33\x30\x38\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x2d\x32\x39\x2e\x37\x32\x31\x34\x38\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x32\ +\x30\x39\x39\x35\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x33\x2e\x31\x35\x39\x32\x30\x35\x34\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x36\x36\x66\x66\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ +\x20\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x2c\x35\x2e\x38\x36\x36\ +\x36\x36\x36\x37\x20\x2d\x34\x2e\x31\x30\x32\x35\x36\x34\x2c\x34\ +\x2e\x35\x39\x34\x38\x37\x31\x33\x20\x2d\x32\x2e\x32\x39\x37\x34\ +\x33\x36\x2c\x34\x2e\x34\x37\x31\x37\x39\x35\x20\x2d\x31\x2e\x31\ +\x34\x38\x37\x31\x38\x2c\x34\x2e\x34\x33\x30\x37\x36\x39\x20\x76\ +\x20\x36\x2e\x36\x34\x36\x31\x35\x34\x20\x33\x2e\x33\x32\x33\x30\ +\x37\x37\x20\x4c\x20\x30\x2c\x32\x32\x2e\x36\x38\x37\x31\x38\x20\ +\x31\x31\x2e\x34\x38\x37\x31\x38\x2c\x30\x2e\x35\x33\x33\x33\x33\ +\x33\x33\x33\x20\x31\x38\x2e\x31\x33\x33\x33\x33\x33\x2c\x33\x2e\ +\x37\x33\x33\x33\x33\x33\x33\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x30\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\ +\x00\x00\x04\x5e\ +\x00\ +\x00\x0f\x16\x78\x9c\xe5\x57\x4d\x6f\xe3\x36\x10\xbd\xe7\x57\xb0\ +\xca\xa5\x45\x2d\x4a\xa4\x64\xeb\x63\x6d\xef\xa1\xc1\x02\x0b\xb4\ +\x97\x76\x8b\x1e\x0b\x5a\xa2\x6d\x36\x12\x29\x50\x54\x6c\xef\xaf\ +\xef\x50\xdf\x76\xbc\x40\xdb\x43\x10\xa0\x02\x82\x84\xf3\xde\x90\ +\x33\x8f\x33\x23\x65\xfd\xf1\x5c\x16\xe8\x85\xeb\x5a\x28\xb9\x71\ +\x08\xf6\x1d\xc4\x65\xa6\x72\x21\x0f\x1b\xe7\xf7\x2f\x9f\xdc\xd8\ +\x41\xb5\x61\x32\x67\x85\x92\x7c\xe3\x48\xe5\x7c\xdc\x3e\xac\xbf\ +\x73\x5d\xf4\x93\xe6\xcc\xf0\x1c\x9d\x84\x39\xa2\xcf\xf2\xb9\xce\ +\x58\xc5\xd1\xf7\x47\x63\xaa\xd4\xf3\x4e\xa7\x13\x16\xbd\x11\x2b\ +\x7d\xf0\x7e\x40\xae\xbb\x7d\x78\x58\xd7\x2f\x87\x07\x84\x10\x9c\ +\x2b\xeb\x34\xcf\x36\x4e\xef\x50\x35\xba\x68\x89\x79\xe6\xf1\x82\ +\x97\x5c\x9a\xda\x23\x98\x78\xce\x44\xcf\x26\x7a\x66\x4f\x17\x2f\ +\x3c\x53\x65\xa9\x64\xdd\x7a\xca\xfa\x71\x46\xd6\xf9\x7e\x64\xdb\ +\x68\x4e\x41\x4b\x22\x49\x92\x78\x3e\xf5\x28\x75\x81\xe1\xd6\x17\ +\x69\xd8\xd9\xbd\x76\x85\x18\xef\xb9\x52\xdf\xf7\x3d\xc0\x26\xe6\ +\x3f\x63\xa5\x35\x08\x5a\xc1\xcf\x48\x1f\x0c\xb8\x56\x8d\xce\xf8\ +\x1e\xfc\x38\x96\xdc\x78\x4f\x5f\x9e\x46\xd0\xf5\x71\x6e\xf2\xd9\ +\x36\x83\x9e\x57\xa7\x5e\x89\x2c\x59\xc9\xeb\x8a\x65\xbc\xf6\x06\ +\x7b\xeb\x7f\x12\xb9\x39\x6e\x9c\x20\xc4\x24\x80\x67\xd9\x1a\x8f\ +\x5c\x1c\x8e\xe6\xd6\x2a\xf2\x8d\x03\xd1\xd3\x24\xee\xd6\xb3\xe2\ +\x20\x1d\xa1\xdf\x38\x1d\x11\x1f\x27\x14\x13\xa4\xc9\x32\x88\x3a\ +\xce\x90\x42\x9a\xab\xcc\xc6\x04\x5b\xf2\x52\xb0\xc6\xa8\x12\x6e\ +\x2d\xcb\x0a\x56\xd7\x62\x2f\x32\x58\x28\x59\x15\xcd\x41\xc8\x3f\ +\x75\x23\xf1\x20\xdb\x78\x06\x3f\x57\x4a\x1b\xf7\x9c\x57\x20\x1e\ +\x19\x42\xbc\x41\x2f\x23\xba\x05\x78\x9d\xf3\x7d\x6d\x69\x5d\x2e\ +\x76\x05\xc9\x44\x0e\xf2\x5a\x74\x0c\xcd\xc6\x95\xbf\x08\x7e\x9a\ +\xb8\x3b\x56\x77\x7a\x21\x54\xb1\x03\xd4\x56\xa1\xf4\xc6\x79\xdc\ +\xb7\x4f\x0f\xec\x94\xce\xb9\x1e\xa0\x55\xfb\x5c\x41\x0a\xf4\x17\ +\xe6\xd2\x75\x53\xbf\xf7\x10\xb0\xdd\x75\xc4\xfd\xfb\x78\x7d\x64\ +\xb9\x3a\x6d\x1c\x7a\x0b\x7e\x55\xaa\x84\xdb\xc2\xc9\x32\xf1\xa9\ +\x1f\xdd\xc2\xd9\x79\xe3\xb8\x94\xe0\x64\x15\x05\x49\xf0\x0a\xb5\ +\x01\x11\x1c\x93\x24\xf4\x93\x57\x60\xa3\x35\xf4\x9b\x5b\xb0\x0b\ +\x87\xac\xda\x5f\xa4\x27\xd5\x47\x75\x3a\x68\xab\x8e\xd1\x0d\xbf\ +\xf5\xb4\x88\xbb\xdb\xa9\xf3\x7d\x18\xae\xbf\xb1\x9d\xec\x36\x52\ +\x18\xe8\x96\xea\x3c\xdf\xb5\x11\x39\x07\xe3\x9e\x15\xf5\x2b\xcf\ +\x93\x90\xa0\x82\xdb\x17\x2e\x09\x46\x91\x6f\x19\x43\x15\x47\x7e\ +\xfc\x0d\x06\xc4\xf6\x4a\xe8\x1e\xba\x7c\x1b\x2a\xd9\x59\x94\xe2\ +\x2b\x87\xc4\xc9\x2d\xa5\x96\xac\x72\x0f\x85\xda\xb1\xa2\xcf\x7b\ +\xdb\x32\xd6\x57\xba\x74\x4e\x08\x99\x8b\x6d\xd9\xf3\xc5\xda\x9c\ +\xc1\x68\x05\xb5\x86\x20\x5a\x2d\x47\xa3\xd2\x02\x3a\x61\x16\xef\ +\x60\xba\xcc\x4d\xb6\xc1\x61\x3e\x9f\xdb\x0a\x6b\xeb\x2f\xba\xc5\ +\x2e\x73\xac\x2f\x7c\xef\x75\xe5\xb7\xf6\x92\x1b\x96\x33\xc3\xa6\ +\x36\x18\x2c\x34\x49\xfc\x21\x33\x98\x95\xe9\xaf\x4f\x9f\xb6\xfd\ +\x41\xeb\x2c\x4b\xff\x50\xfa\x79\x38\x17\x21\x4b\x60\x3b\xd5\xc0\ +\x55\x38\xdb\xd1\xbc\xce\xb3\x14\xa6\x1b\x74\xfd\x56\x94\x50\xdc\ +\x76\x30\xfe\x08\xd3\x6c\xed\x4d\xc0\x15\xd9\x8a\x35\x6d\xda\x6d\ +\xab\x79\x37\x26\xef\xbe\x2b\xf2\xac\x14\xd6\xc9\xfb\xcd\x88\xa2\ +\xf8\x6c\x0f\xe9\x33\x9e\x6d\x2a\x4c\xc1\x27\xe3\xda\xeb\xa3\xef\ +\x73\xf3\x66\xc9\xad\xbd\x21\xfb\x76\x75\x98\x54\xb9\xea\x8a\xf1\ +\xa2\x0b\xb6\xe3\x50\x04\x3f\x5b\x10\xbd\x42\x0f\x5a\x35\x55\xa9\ +\x72\xde\xbb\x0f\x6a\x56\xcc\x1c\xc7\x2b\x33\x97\x02\xf0\x3d\x44\ +\x9f\x4a\x78\xc9\x7e\xb0\x7f\xb9\xfd\x94\x48\xc9\x87\xda\x68\xf5\ +\xcc\xd3\x47\xbf\x7d\xfa\x65\xd7\x18\x29\x0c\x83\xd6\x3a\xb0\xdc\ +\x42\x48\x0e\x27\xa7\xbb\xc6\x98\xb9\xed\x2f\x25\x64\x0a\x42\x71\ +\x3d\x58\xdb\x45\x01\x25\x6e\xd2\x70\xb0\xe5\x0c\x86\x8f\xd6\xec\ +\xd2\x05\xd2\x5b\xc7\x50\xc6\x2a\x03\x35\x7e\x41\x2b\x1c\x24\xf6\ +\x59\x2e\x22\x1c\xb6\x95\x16\x21\x1a\xe1\xc8\xbe\x4a\x82\x05\xa5\ +\x38\xb4\x91\x51\xd4\xa3\x2b\xba\x08\x82\xae\x26\x93\xab\x2e\xb0\ +\x5a\xc4\x51\x3c\xd9\xc6\xa9\xa4\x24\x24\x63\x94\x76\x61\x3e\xbd\ +\x30\xd3\x68\x6e\xdb\x60\xb8\xc7\xff\x24\x22\x63\xef\x4d\xc4\x70\ +\xb1\xea\x94\xf2\x57\x73\xf9\x08\x6e\xff\x58\x8e\xf2\x2d\x02\x8a\ +\x5b\x1a\xbd\xa7\x9e\x1b\xbd\x8d\x7e\xef\xb5\x08\x93\xc5\xb2\x13\ +\x2c\x0c\xe7\x2a\xfa\x98\x5a\xed\xe2\x51\xc5\x64\x11\xc0\xd7\xca\ +\xf4\xb5\x73\x2b\x23\x7d\x1b\x19\xc3\xd0\x16\xe2\x7b\x92\xb1\x2b\ +\x41\xb2\x08\x3b\xc5\x22\x32\x93\x91\x24\x98\x5e\xf7\x32\x59\xd0\ +\x04\xc7\xad\xb4\xf7\x65\x5c\xfd\x5f\xcb\x31\x5c\x04\x98\xce\xb5\ +\x8b\xfb\x8f\xeb\xa9\x91\x69\x8c\xe3\x36\xc0\xbb\xd2\x91\xb7\x51\ +\x8e\x12\x98\xd7\xf1\x7b\x52\x6e\x68\x64\xda\x09\x16\x5e\x55\x60\ +\xd4\xbd\x39\xe6\x8d\x3c\xa0\xf7\x1b\xd9\xff\x97\x32\xae\xbd\x03\ +\xfc\x5f\x6b\x3f\x4f\xb6\x0f\x7f\x03\xf2\x9e\x89\xe5\ +\x00\x00\x05\xc8\ +\x00\ +\x00\x1d\xbe\x78\x9c\xdd\x58\xdd\x93\x9b\x36\x10\x7f\xbf\xbf\x42\ +\x25\x2f\xed\xd4\x7c\x08\xb0\xf9\x88\xed\x3c\x24\xd3\x49\x66\xda\ +\x97\x36\x6d\x1f\x33\x18\x64\x9b\x06\x10\x15\xe2\x6c\xe7\xaf\xef\ +\x0a\x90\x00\x1b\xcf\x38\xbd\x4b\x72\x17\x66\x6e\x4e\xda\x5d\x49\ +\xbb\x3f\xed\x97\xb5\x7c\x75\xcc\x33\x74\x4f\x58\x95\xd2\x62\xa5\ +\x61\xc3\xd2\x10\x29\x62\x9a\xa4\xc5\x6e\xa5\xfd\xf9\xfe\x17\xdd\ +\xd7\x50\xc5\xa3\x22\x89\x32\x5a\x90\x95\x56\x50\xed\xd5\xfa\x6e\ +\xf9\x83\xae\xa3\xd7\x8c\x44\x9c\x24\xe8\x90\xf2\x3d\x7a\x57\x7c\ +\xac\xe2\xa8\x24\xe8\xc7\x3d\xe7\x65\x68\x9a\x87\xc3\xc1\x48\x3b\ +\xa2\x41\xd9\xce\xfc\x09\xe9\xfa\xfa\xee\x6e\x59\xdd\xef\xee\x10\ +\x42\x70\x6e\x51\x85\x49\xbc\xd2\xba\x05\x65\xcd\xb2\x46\x30\x89\ +\x4d\x92\x91\x9c\x14\xbc\x32\xb1\x81\x4d\xad\x17\x8f\x7b\xf1\x58\ +\x9c\x9e\xde\x93\x98\xe6\x39\x2d\xaa\x66\x65\x51\xbd\x18\x08\xb3\ +\x64\xab\xa4\x85\x36\x07\xa7\x11\xc2\x41\x10\x98\x96\x6d\xda\xb6\ +\x0e\x12\x7a\x75\x2a\x78\x74\xd4\xc7\x4b\x41\xc7\xa9\xa5\xb6\x65\ +\x59\x26\xf0\x7a\xc9\xdb\xa4\xc2\x0a\x00\x2d\xe1\x4f\x89\x4b\x82\ +\x51\xd1\x9a\xc5\x64\x0b\xeb\x88\x51\x10\x6e\xbe\x79\xff\x46\x31\ +\x75\xcb\x48\x78\x32\xd8\x46\xe2\x39\x3a\x75\x04\x72\x11\xe5\xa4\ +\x2a\xa3\x98\x54\xa6\xa4\x37\xeb\x0f\x69\xc2\xf7\x2b\xcd\x71\x0d\ +\xec\xc0\x37\x6f\x88\x7b\x92\xee\xf6\xfc\x9c\x9a\x26\x2b\x0d\xb4\ +\xb7\x03\xbf\x9d\x0f\x9c\x03\xb7\x02\xdd\xc6\xa1\xe2\x58\x46\x60\ +\x1b\x18\x31\x3c\x77\xbc\x56\x46\x9a\x10\x26\x34\x16\x3a\xc1\x96\ +\x24\x4f\xa3\x9a\xd3\x1c\x6e\x2d\x8e\xb3\xa8\xaa\xd2\x6d\x1a\xc3\ +\x84\x16\x65\x56\xef\xd2\xe2\x43\x02\xb7\xce\xc9\x87\x2a\xdd\x15\ +\x11\xaf\x19\x31\x24\x86\xea\x40\x72\x2c\x29\xe3\xfa\x31\x29\x01\ +\xc9\x85\x37\xc9\x3c\x49\xe6\x1a\xb8\xcb\x84\x6c\x2b\x21\xd5\x9a\ +\x25\x66\x60\x97\xa7\x21\xb3\xe1\x2a\x2d\x85\x8a\xc9\x7d\x4a\x0e\ +\xbd\xec\x26\xaa\x5a\xe8\x10\x2a\xa3\x1d\xb8\x59\x46\xd9\x4a\x7b\ +\xb1\x6d\xbe\x8e\xb1\xa1\x2c\x21\x4c\xb2\x16\xcd\x37\x62\x51\xb8\ +\x8a\x94\x9f\xda\xc0\xea\xf6\x96\xfa\x8a\x5d\x15\xdf\x9a\xe6\x57\ +\xfb\x28\xa1\x87\x95\x66\x9f\x33\x3f\x51\x9a\xaf\x34\xcf\x08\xb0\ +\x6f\xb9\xd8\x3b\x67\xc7\x47\xb1\xa5\xeb\x5a\x9e\x6d\x63\x7c\xc1\ +\x85\x03\x6d\xdb\x58\xe0\x85\xe5\x5e\xf0\x6a\xc6\x20\xf2\xf4\x2c\ +\x3a\x11\x30\xaa\xf9\x27\x37\xa8\xf6\xf4\xb0\x63\x02\x1c\xce\x6a\ +\x72\xbe\x52\x70\xf4\xcd\x86\x1e\xa7\xd9\xe0\x08\xb5\x88\x69\xbd\ +\x2e\x52\x0e\x71\x53\x1e\x87\xbb\xd6\x69\x42\xaa\xe9\x85\x87\xb4\ +\x00\x0c\xf4\xce\x83\xb1\xa3\x20\x3e\x97\x90\xee\xec\x59\xfe\x15\ +\x09\x81\xca\x15\xd6\xe9\x3a\x2b\x8f\x8e\x69\x9e\x7e\x22\x60\xf7\ +\x05\x94\x55\x11\x95\xfa\x2e\xa3\x9b\x28\xeb\xb4\x5f\x37\x12\xcb\ +\x11\x2c\xed\x22\x84\xf8\x49\xc4\xee\xf1\x24\x68\x9a\x24\x0a\x3c\ +\x05\xc1\xf1\x16\x73\x45\xa4\x2c\x85\x90\x18\xe8\x2b\x49\xa7\x21\ +\x49\x44\x3a\x24\xea\x63\xe3\x5f\x8d\xf7\x79\xe7\xbc\xd3\x90\xd7\ +\xb9\xbd\x79\xe9\xf7\x0d\x3d\x27\x3c\x4a\x22\x1e\xf5\x41\x20\x29\ +\x76\x10\x58\xd2\x32\x48\x9a\xe1\xef\x6f\x7e\x59\x77\x07\x2d\xe3\ +\x38\xfc\x9b\xb2\x8f\xf2\x5c\x84\x84\x40\xb4\xa1\x35\x5c\x85\xb6\ +\x56\xe4\x65\x12\x87\x90\xe6\x20\xfc\xd7\x69\x0e\xae\x2d\x32\xe4\ +\xcf\x90\xd6\x96\x66\xcf\x18\x09\x0b\xb0\xfa\x4d\xdb\x6d\x19\x69\ +\xf3\xe5\x64\xd1\x48\xe2\x3c\x15\x8b\xcc\x3f\x78\x9a\x65\xef\xc4\ +\x21\x9d\xc5\x83\x4d\x53\x9e\x91\x9e\xb8\x34\x3b\xed\x3b\xdb\xcc\ +\x81\x71\x4b\x53\x5a\xdf\xcc\x76\x3d\x2a\xa3\xa0\x50\x17\x9d\x45\ +\x1b\x02\x4e\xf0\xab\x60\xa2\x0b\xee\x8e\xd1\xba\xcc\x69\x42\xba\ +\xe5\x0a\x4d\x12\x73\x75\x65\xfc\x94\x01\x7f\x0b\xda\x87\x5d\xa2\ +\x79\x29\x26\x7a\x97\x26\x42\xdc\x4e\x59\x9d\x41\xba\xbb\x27\x05\ +\x4d\x92\x97\x15\x67\xf4\x23\x09\x5f\x58\x96\xeb\x5b\x56\x37\x6d\ +\xa3\x25\x54\xd3\x2c\x2d\x08\xa8\x11\x56\xff\xd6\x11\x23\x43\xea\ +\x3f\x34\x2d\x42\xc0\x8d\x30\x49\x6d\x26\x19\x78\x3c\x0f\x5d\x49\ +\x4b\x22\xc8\x44\x8c\x45\xa7\xb0\x80\x2e\x60\x48\xa5\xdb\x6d\x45\ +\x78\x7f\x92\x54\xd5\x32\x9c\xee\x1b\x39\xba\x30\xd7\x09\x02\xac\ +\x88\x93\x85\x49\x7c\xd3\xc5\x49\x7c\xa3\xa8\x00\xff\x0e\x0c\xd7\ +\x73\x02\xcb\x59\x10\x1d\x2f\x14\x83\x8d\xc4\x18\xc8\x39\x86\x03\ +\x05\x6a\x11\xf8\xca\x2b\x96\x65\xc4\xf7\x53\xe8\x0f\xac\x14\xc8\ +\x8a\x6f\x8c\xac\xdd\x2a\xe5\xb8\xee\x39\xc4\x9b\x9a\xf3\xc7\x02\ +\x58\xdd\xbb\xb2\x03\x20\xfc\x0d\x59\x33\x0b\xfd\x85\x24\x30\x63\ +\x80\x85\x45\x10\xad\x3d\x0e\x7d\x66\xa7\x05\x68\xc8\x29\xd3\x21\ +\xc7\xdf\x37\x15\x76\x94\x4b\x54\x4e\x00\x27\x15\x61\x04\xe9\x38\ +\x8e\x9f\x3b\x54\x0a\xa4\x99\x1a\xa1\xb7\xc8\x9a\x82\xcc\x7f\x3a\ +\x90\x61\x03\x6e\xd0\xb2\xe7\x7e\x79\xfc\x7c\xcc\xae\x20\xa1\xaa\ +\xc0\xcc\xf6\x0d\x1f\xbd\x46\x8e\x61\xb7\xc3\x8b\xc1\x05\x3a\x8e\ +\xe7\xd9\xba\x75\x33\x3e\x8f\xe2\x33\xd8\x9b\xbb\x78\x3e\x7f\x34\ +\x04\x72\x34\x97\x29\x69\xe6\xcc\x0d\x1b\xc5\x10\x47\xba\x6b\xd8\ +\x0d\x28\xd7\xc6\x97\x50\xf8\xee\x97\x03\xc2\x27\x97\x9e\xd0\xdd\ +\x9a\xfd\x45\x5c\x01\x3b\x86\xdf\xda\xdc\x19\x2c\x68\x36\xb8\x02\ +\xb6\x8c\x6e\xaa\x18\x08\x2f\x66\xe0\x21\x28\x53\x40\xce\x02\x63\ +\x21\x27\xee\x4c\xc6\x39\xf2\x0c\xb7\x59\x31\x53\x80\xfa\xc6\xbc\ +\x95\x81\xf5\x17\x88\xba\x96\xe3\x7d\x45\x44\xe1\xea\x1b\xad\x02\ +\xe7\x6b\xa4\xa3\x89\x32\xf8\x44\xaf\x40\x77\x3e\x3b\xff\x29\x39\ +\xce\xa2\xa2\x12\x3d\x9c\x1e\x43\x87\x4f\x98\xde\x74\xa4\x13\x35\ +\xe8\x42\x10\xca\xb2\x7e\xde\x9f\x3e\xb9\xc4\xd1\xdf\xc4\x03\x13\ +\x87\x7e\x7b\x8d\x79\xa2\x50\xd8\x58\x3a\xde\x43\xa1\x08\x9e\x3d\ +\x14\x8b\xc7\xf2\x8a\x67\x5f\x59\x1d\xfb\xc1\x18\xdc\x9e\x7d\x9e\ +\x28\x06\x22\x35\x3f\x10\x83\xdb\x9b\xf6\xa7\xd8\x62\xe6\xc3\x16\ +\xd3\x69\x0b\x90\x07\x70\xc8\xa2\xe4\xc0\xaf\x96\x2b\xe3\x2b\x0d\ +\xa7\x6e\x7f\x37\x80\x60\x5f\x96\xe6\x07\x01\x82\x9f\x35\x20\xa3\ +\xb6\xc7\x56\x3f\x42\x9a\xe1\xc5\xe0\x1a\x04\x5f\x33\x51\x7c\x59\ +\x9f\x90\x4d\xda\x03\x83\xc4\xfd\x6e\x00\x51\xc6\x3e\x0c\x90\xff\ +\xd1\x59\x4c\xbc\xc2\x8d\xdf\xdc\xc4\x7b\x5c\x03\xc7\xcd\xef\x71\ +\xdd\xfb\xdd\x19\x7c\x8b\x16\x55\xfb\xdb\x3d\xcc\xe1\x11\x6c\xcd\ +\x7b\x9c\x85\x7b\x2c\xbb\xf7\x38\xd9\xe7\xf5\xce\x25\xdf\xe3\x2e\ +\x39\xa2\xd9\x97\x1d\xf2\xf0\x5d\x6e\x14\xc5\xe2\x01\xce\x85\x9b\ +\x76\xdc\xc0\x76\x3e\xd3\x13\xa7\xa0\x74\x8d\x39\x5e\x78\xf3\xe0\ +\x5b\x3c\x2a\x09\xc3\x06\x25\xee\x2d\xb2\x83\xee\x37\xdc\x84\x4b\ +\xfa\xb7\x17\xb1\x9b\xde\x95\x96\xe6\x6e\x7d\xb7\x14\xaf\xe7\xeb\ +\xbb\xff\x00\x73\x77\xb5\x26\ +\x00\x00\x05\xc9\ +\x00\ +\x00\x25\xd3\x78\x9c\xed\x5a\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ +\xd4\x97\x0d\x0b\x29\x52\xb2\xae\xb5\xdd\x87\x15\xc3\x0a\x74\x2f\ +\x5b\xd7\x01\x7b\x29\x68\x89\xb6\xb5\xca\xa2\x47\x51\xb1\xdd\x5f\ +\xbf\x43\xdd\x6c\xd9\x4e\x17\x37\xf3\x06\x14\x56\x10\x24\x3a\x17\ +\xf2\xf0\xfb\xce\x25\x09\x33\x7e\xb5\x5d\xe5\xe8\x41\xa8\x32\x93\ +\xc5\xc4\x62\x84\x5a\x48\x14\x89\x4c\xb3\x62\x31\xb1\x7e\x7b\xf7\ +\x23\x0e\x2d\x54\x6a\x5e\xa4\x3c\x97\x85\x98\x58\x85\xb4\x5e\x4d\ +\xef\xc6\xdf\x60\x8c\x7e\x50\x82\x6b\x91\xa2\x4d\xa6\x97\xe8\x4d\ +\xf1\xb1\x4c\xf8\x5a\xa0\x6f\x97\x5a\xaf\x63\xdb\xde\x6c\x36\x24\ +\x6b\x85\x44\xaa\x85\xfd\x1d\xc2\x78\x7a\x77\x37\x2e\x1f\x16\x77\ +\x08\x21\xd8\xb7\x28\xe3\x34\x99\x58\xad\xc3\xba\x52\x79\x6d\x98\ +\x26\xb6\xc8\xc5\x4a\x14\xba\xb4\x19\x61\xb6\xb5\x37\x4f\xf6\xe6\ +\x89\xd9\x3d\x7b\x10\x89\x5c\xad\x64\x51\xd6\x9e\x45\xf9\xe2\xc0\ +\x58\xa5\xf3\xde\xda\x44\xb3\x71\x6b\x23\x16\x45\x91\x4d\x1d\xdb\ +\x71\x30\x58\xe0\x72\x57\x68\xbe\xc5\x43\x57\x88\xf1\x9c\xab\x43\ +\x29\xb5\x41\xb7\xb7\x7c\x9a\x55\x5c\x02\xa0\x6b\xf8\xec\xcd\x3b\ +\x01\x29\x65\xa5\x12\x31\x07\x3f\x41\x0a\xa1\xed\xd7\xef\x5e\xf7\ +\x4a\x4c\x49\xaa\xd3\x83\x65\x3a\x3c\x07\xbb\x0e\x40\x2e\xf8\x4a\ +\x94\x6b\x9e\x88\xd2\xee\xe4\xb5\xff\x26\x4b\xf5\x72\x62\xb9\x23\ +\xc2\x5c\x78\xbc\x5a\xb8\x14\xd9\x62\xa9\x8f\xa5\x59\x3a\xb1\x20\ +\x7a\x27\x0a\x9b\xf7\x83\xe4\x60\x8d\x41\xbb\x70\xdc\x6b\x28\x89\ +\x1c\xc2\x90\x62\x9e\x1b\x34\x36\xdd\x11\xe2\x54\x26\x26\x26\x58\ +\x52\xac\x32\x5e\x69\xb9\x02\xd6\x92\x24\xe7\x65\x99\xcd\xb3\x04\ +\x5e\x64\xb1\xce\xab\x45\x56\x7c\x00\x2e\xb5\x54\x1f\xb4\xfc\xa0\ +\x78\xa9\x85\xf9\x4e\xe6\xa4\x03\xb2\xdf\x55\x6c\xd7\x52\x69\xbc\ +\x4d\xd7\x00\xa7\x1f\x9c\x55\xee\x3a\xe5\x14\xb4\xe3\x54\xcc\x4b\ +\x63\xd5\x9c\xcd\xbc\xc1\xe1\x02\x0b\xd9\xb5\xb6\x0f\xd5\xc4\x99\ +\x3e\x64\x62\xb3\xb7\x9d\xf1\xb2\xc1\x0f\xa1\x35\x5f\x40\xae\xe5\ +\x52\x4d\xac\x17\xf3\xfa\x69\x15\x33\xa9\x52\xa1\x3a\x95\x5f\x3f\ +\x03\x95\x04\x3e\x32\xbd\x6b\xaa\xab\x5d\xbb\x8b\xd7\xac\xda\xeb\ +\xe9\x79\x7d\xb9\xe4\xa9\xdc\x4c\x2c\xe7\x58\xf9\x49\xca\x15\xb0\ +\x47\x22\x2f\xa2\x0e\x8d\x8e\xd5\xc9\x76\x62\x61\x46\x61\x55\xc6\ +\x58\x78\xa2\x85\x0d\x5d\xd0\xd1\xd0\x73\xdc\x13\x65\xa5\x14\xd4\ +\x1f\xce\xf9\x4e\xc0\xa9\xea\x2f\xac\x35\x2a\x97\x72\xb3\x50\x06\ +\x1d\xad\x2a\x71\xec\x69\x34\x78\x36\x93\xdb\xf3\x6a\x48\x87\xca\ +\x54\x36\xae\x8a\x4c\x43\xf5\xac\xb7\x87\xab\x56\x59\x2a\xca\xf3\ +\x8e\x65\xc1\xd7\x78\x91\xcb\x19\xcf\xcf\x1b\x6c\xb2\x02\x50\xc2\ +\x6d\xa2\x33\xb7\x27\xe1\xd8\xa2\xcb\xfa\x80\x9e\x60\xd2\x5a\x40\ +\xec\x27\x44\xb4\xaa\xdd\xe3\xaa\x15\xdf\x66\xab\xec\x93\x00\x60\ +\x58\x9d\x77\x90\x5b\x03\x58\x1a\x37\x84\xf4\xce\x54\xf0\x76\x67\ +\x64\x56\x27\x34\x78\x1a\x81\x13\x45\x41\x2f\x94\x2a\x83\xc2\x38\ +\x08\xa7\x13\xed\x0e\x45\xa6\xde\xa1\x5d\x6f\xeb\x04\xab\xd3\x2f\ +\x38\xd6\xed\x0e\x75\x6d\xde\xdb\xa7\x89\x5f\xcb\x57\x42\xf3\x94\ +\x6b\xbe\xaf\x82\x4e\x02\xb1\xd1\xee\x64\xd0\x3a\xe3\x5f\x5e\xff\ +\x38\x6d\x37\x1a\x27\x49\xfc\xbb\x54\x1f\xbb\x7d\x11\x32\x06\x7c\ +\x26\x2b\x40\xda\x9a\xf6\xe2\x71\x9a\xc4\xd0\xec\xa0\x09\x4c\xb3\ +\x15\xe4\xb6\xe9\x93\xdf\x43\x73\x1b\xdb\x7b\xc5\xc0\xd8\x80\xb5\ +\x5f\xb4\x59\x56\x89\xa6\x6b\x9e\x1d\x1d\x69\xb2\xca\x8c\x93\xfd\ +\xab\xce\xf2\xfc\x8d\xd9\xa4\x3d\xf1\xc1\xa2\x99\xce\xc5\x5e\x38\ +\xb6\xdb\xe8\xdb\xb3\xd9\x07\x87\x1b\xdb\xdd\xe9\xeb\xb7\xc5\x1e\ +\x95\x41\x51\xf4\x44\xe7\x7c\x26\x20\x43\xdf\x1a\x25\x3a\xd1\x2e\ +\x94\xac\xd6\x2b\x99\x8a\xd6\xbd\x47\x13\x5a\x5f\x4f\x99\xde\xe5\ +\xa0\x9f\x43\xf4\x31\x74\x1a\x21\x38\x7f\x69\x5e\x70\xdb\x27\x62\ +\xf6\xb2\xd4\x4a\x7e\x14\xf1\x0b\x4a\x45\x30\x9f\xb7\xaf\x4d\xea\ +\xc7\x94\x8c\x9c\x9a\xe8\xb0\x93\x03\x1e\x42\xe5\x90\x9b\x3a\x1e\ +\x75\xb2\x94\x43\x57\x51\x8a\xef\xe2\x02\xc6\x7a\x27\xed\x77\x18\ +\xa4\xa5\x09\xce\x0d\xdd\x51\x2f\x6c\x6b\xcc\x73\x89\x99\x1a\xae\ +\xd3\x2b\xba\xd2\x1a\x39\xa4\x09\xa1\xd7\x34\xad\x88\x1c\x65\x27\ +\xa4\x25\x76\xc9\xde\x5f\xd5\x79\xea\x8f\xcc\xe3\xf7\xac\x3d\x8e\ +\x4e\x3a\x82\x51\x4b\x8f\xd1\xa9\x5f\x55\x95\xc3\x34\x78\x10\x85\ +\x4c\xd3\x1e\x2f\x27\x9c\xcf\x53\x7a\x8c\x57\xe8\xd5\xc7\xf0\xfe\ +\x4d\xbc\xbc\xd0\x8d\x30\xc3\xa3\x53\xd0\x1a\xcc\xda\x59\x3b\x00\ +\x8d\x44\xb5\x66\x74\x08\x9a\x13\x92\x20\x32\xcf\x21\x66\x2e\x09\ +\x9a\x45\xf6\xc0\x0d\x7a\xc4\x10\xc6\x3e\xb4\xcf\x0d\xd0\x73\x06\ +\xfd\x10\xfd\x0a\x88\x08\x43\xec\x5f\x83\x0a\xe6\x12\xff\xc6\xc2\ +\x93\xcb\x01\x3b\xd8\xbd\x06\x0d\xe1\x71\x67\xb9\x51\xf1\x0f\x54\ +\xf8\xd7\xa9\x07\xc7\x25\xa3\x1b\x13\x17\x16\x85\x7f\x9d\xa2\x60\ +\x21\xf1\x6e\x63\xe2\xe2\x06\x15\xe0\xe0\x2a\x95\x11\x92\xd1\x8d\ +\x88\x27\xcf\x6b\x1c\x61\xe7\x99\x34\x0c\xff\xac\xd1\x15\xc5\x6d\ +\x60\x5f\x44\x03\xc3\xde\xb3\xeb\xe1\x2c\x11\xb7\x91\x7d\x39\x19\ +\x01\x7e\xee\xef\x13\x67\xa9\xb8\x0d\xed\x2f\x2b\x0c\x0f\xd3\xab\ +\xb4\xa8\xdb\xdc\xfe\xb2\x3e\x45\x71\x74\x95\xf2\xb8\x4d\xee\x27\ +\x53\x11\x3e\xbb\x43\x9d\x36\xa3\xdb\xd4\xbe\x88\x02\x0a\x3f\xc5\ +\xb2\xab\xb0\x70\x1b\xd9\x17\x32\xe1\xe2\xf0\x1a\x3c\xdc\xe6\xf5\ +\xc5\x25\x11\x3c\xfb\xb7\x89\xf3\x7d\xe9\x36\xaa\xbf\xa0\x39\x5d\ +\xa9\x2a\xfe\x87\x31\xbd\xe6\x7a\x79\x96\x06\x4a\x2f\xa3\xa1\xb9\ +\x51\x1e\xd2\xc0\x88\x13\xb9\x34\x08\xa2\x9e\x86\x3c\x2b\x04\x04\ +\x14\x97\x7f\x55\x5c\x89\x43\xe9\x9f\x32\x2b\xe2\x9a\xa5\xcb\x29\ +\x33\x52\x39\x9f\x97\x42\xc7\xf4\x71\x1a\x81\xc5\x9f\x11\x36\xb7\ +\x4b\x2c\x72\x20\x3d\xee\xcd\x4c\x8e\xfc\x28\x40\x3f\x21\xe6\xa3\ +\xf7\x28\x68\x6f\x83\x3c\xf4\x16\xb9\x94\xb8\x7e\xc4\x42\xef\x9e\ +\x05\xc4\x63\xe6\x03\x8c\xee\x9d\xa0\x75\x79\x8f\x1c\xd6\x52\x0e\ +\xee\x07\xab\xa2\x3f\x4e\xf2\xc6\x0d\x19\x3b\xa5\x24\x91\x45\x51\ +\xff\xbf\x00\x4e\x2a\xf5\xc0\x75\xa5\xc4\xe0\x4e\xb4\xbf\xdb\x94\ +\xa9\x30\xd7\x81\xe5\xc4\x4a\xda\xe7\x09\xf4\xb5\x55\xf4\xb9\x7b\ +\x36\x46\xe0\x78\x94\x32\x37\x58\x6f\x8f\xf9\x99\x55\x5a\x7f\x9e\ +\x9d\xc7\xf0\x0d\x49\xe0\xf9\x0e\x1d\x85\xf7\x2e\xc0\xeb\xf8\x2e\ +\x0b\x11\x86\xd4\xf5\xc3\x80\xfa\xec\xde\x03\x30\xc3\xc8\x0b\x23\ +\xe4\x91\x30\x70\x1c\x8f\x06\xf7\xa6\x76\x9c\x11\x0d\x5d\x04\x8c\ +\x84\x75\x59\x18\xe7\xfa\xb6\x37\x38\xbb\xe2\x00\x62\x83\x81\x4b\ +\x47\xf4\xc9\x10\x7f\x2d\x3d\xe8\xd9\x7f\xd6\x80\xe6\xcf\x86\xcd\ +\xbf\xe9\x42\x47\xc2\xff\xa2\x15\x8d\xed\xc5\xf4\x6e\x6c\x2e\xd3\ +\xa7\x77\x7f\x03\x12\x53\xa0\x4a\ +\x00\x00\x0b\x27\ +\x00\ +\x00\x5a\x95\x78\x9c\xed\x5c\x59\x8f\xdb\xc8\x11\x7e\xf7\xaf\x60\ +\x64\x04\xbb\x46\xd4\x14\xfb\x60\x1f\x1a\xcd\x2c\x10\x1b\x0b\x2c\ +\xb0\x79\xc9\x6e\x10\x20\x2f\x0b\x0e\x49\x69\x08\x53\xa4\x40\x52\ +\x23\x8d\x7f\x7d\xaa\x78\x89\xd4\xe1\x38\x96\xb4\xd6\x48\xa6\x31\ +\x9e\x51\x55\x1f\xd5\x5f\x57\x55\x7f\x4d\xb1\x39\xf9\x69\x3d\x8f\ +\xad\xe7\x30\xcb\xa3\x34\xb9\x1f\x50\xdb\x19\x58\x61\xe2\xa7\x41\ +\x94\xcc\xee\x07\xff\xfa\xfd\x67\xa2\x07\x56\x5e\x78\x49\xe0\xc5\ +\x69\x12\xde\x0f\x92\x74\xf0\xd3\xc3\x9b\xc9\x5f\x08\xb1\xde\x67\ +\xa1\x57\x84\x81\xb5\x8a\x8a\x27\xeb\x97\xe4\x63\xee\x7b\x8b\xd0\ +\xfa\xf1\xa9\x28\x16\xe3\xd1\x68\xb5\x5a\xd9\x51\x2d\xb4\xd3\x6c\ +\x36\x7a\x67\x11\xf2\xf0\xe6\xcd\x24\x7f\x9e\xbd\xb1\x2c\x0b\xfa\ +\x4d\xf2\x71\xe0\xdf\x0f\xea\x0a\x8b\x65\x16\x97\x05\x03\x7f\x14\ +\xc6\xe1\x3c\x4c\x8a\x7c\x44\x6d\x3a\x1a\x6c\x8a\xfb\x9b\xe2\x3e\ +\xf6\x1e\x3d\x87\x7e\x3a\x9f\xa7\x49\x5e\xd6\x4c\xf2\xb7\x9d\xc2\ +\x59\x30\x6d\x4b\xa3\x35\x2b\x5e\x16\xa2\xc6\x98\x91\xc3\x46\x8c\ +\x11\x28\x41\xf2\x97\xa4\xf0\xd6\xa4\x5f\x15\x6c\xdc\x57\x95\x39\ +\x8e\x33\x02\xdd\xa6\xe4\x97\x95\x1a\xe7\x00\xe8\x02\x7e\xda\xe2\ +\x8d\xc0\xce\xd3\x65\xe6\x87\x53\xa8\x17\xda\x49\x58\x8c\x3e\xfc\ +\xfe\xa1\x55\x12\xc7\x0e\x8a\xa0\xd3\x4c\x83\x67\xaf\xd7\x1e\xc8\ +\x89\x37\x0f\xf3\x85\xe7\x87\xf9\xa8\x91\x97\xf5\x57\x51\x50\x3c\ +\xdd\x0f\xb8\xb0\x29\x87\xcb\x2d\x85\x4f\x61\x34\x7b\x2a\xb6\xa5\ +\x51\x70\x3f\x00\xeb\x99\xd1\xd5\xe7\x8e\x73\xd0\xaa\x40\xdd\xf0\ +\xb8\xd5\x38\xb6\x61\x36\xb5\x32\xea\x72\x55\x95\x69\x86\x30\x0e\ +\x52\x1f\x6d\x82\x26\xc3\x79\xe4\x2d\x8b\x74\x0e\xb3\xe6\xfb\xb1\ +\x97\xe7\xd1\x34\xf2\xe1\x43\x9a\x2c\xe2\xe5\x2c\x4a\xfe\xc8\xc2\ +\xbe\xf8\x8f\x22\x4d\x63\xbb\x01\xb2\xed\x35\x5c\x2f\xd2\xac\x20\ +\xeb\x60\x01\x70\x4a\xb5\x57\xf9\xd2\x28\x1f\x40\x3b\x09\xc2\x69\ +\x8e\xa5\xaa\xb1\xe1\x27\x18\x9c\x1a\x58\xa3\x52\xdb\x9a\x8a\x76\ +\x06\xcf\x51\xb8\xda\x94\x7d\xf4\xf2\x0a\x3f\xcb\x5a\x78\x33\xf0\ +\xb5\x38\xcd\xee\x07\x6f\xa7\xe5\x55\x2b\x1e\xd3\x2c\x08\xb3\x46\ +\x25\xcb\xab\xa7\x4a\x61\x3e\xa2\xe2\xa5\x8a\xae\xba\xed\xc6\x5e\ +\x6c\xb5\xd5\x3b\xfb\xf5\xf9\x93\x17\xa4\xab\xfb\x01\xdb\x56\x7e\ +\x4a\xd3\x39\xb4\x0a\xf3\x62\x94\x76\x76\xd4\xfe\xfa\x7e\x40\xa8\ +\x6b\x1b\x18\xac\x31\x3b\x5a\x34\x48\xd8\x5a\x70\xc1\xc4\x8e\x72\ +\x99\x65\x10\x7f\x24\xf6\x5e\x42\x18\x55\xf9\x8b\xd6\x85\xf2\xa7\ +\x74\x35\xcb\x10\x9d\x22\x5b\x86\xdb\x35\x51\x43\x1e\x1f\xd3\xf5\ +\x7e\x35\xb8\xc3\x12\x23\x9b\x2c\x93\xa8\x80\xe8\x59\xac\xbb\xad\ +\x2e\xa3\x20\xcc\xf7\x57\xcc\x13\x6f\x41\x66\x71\xfa\xe8\xc5\xfb\ +\x0b\xac\xa2\x04\x50\x22\xb5\xa3\x53\xde\x4e\xc2\x76\x89\xc6\xeb\ +\x95\xa3\x0f\x94\x00\xdb\x77\x26\xa2\x56\xbd\x1c\x56\xcd\xbd\x75\ +\x34\x8f\x3e\x85\x00\x0c\x2d\xfd\x0e\x7c\xab\x07\x4b\x55\xcd\xb2\ +\x8a\x17\x8c\xe0\xf5\x0b\xca\x06\x8d\x10\xf1\x44\x01\x33\x46\xb5\ +\xc2\x34\x8b\x20\x30\x3a\xe6\x34\xa2\x97\xae\x08\xe3\x1d\xd2\xf5\ +\xba\x74\xb0\xd2\xfd\xd4\xb6\xee\xa5\xab\xab\xfd\x7e\xb4\xeb\xf8\ +\xa5\x7c\x1e\x16\x5e\xe0\x15\xde\x26\x0a\x1a\x09\xd8\xe6\x34\x23\ +\x83\xd4\x39\xfe\xe7\x87\x9f\x1f\xea\x8e\x26\xbe\x3f\xfe\x77\x9a\ +\x7d\x6c\xfa\xb5\x2c\x2c\xe0\x3d\xa6\x4b\x40\x7a\xf0\xd0\x8a\x27\ +\x81\x3f\x86\x64\x07\x49\xe0\x21\x9a\x83\x6f\x63\x9e\xfc\x1b\x24\ +\xb7\xc9\x68\xa3\xe8\x15\x46\xb0\x36\x8d\x56\xcd\x66\x61\x95\x35\ +\xf7\x2e\x1d\x81\x3f\x8f\xb0\xd2\xe8\xb7\x22\x8a\xe3\x5f\xb0\x93\ +\x7a\xc4\x9d\x46\xa3\x22\x0e\x37\xc2\xc9\xa8\xb6\xbe\x1e\xdb\xa8\ +\x33\xb8\xc9\xa8\x19\x7d\xf9\x69\xb6\x41\xa5\x17\x14\xed\x44\xc7\ +\xde\x63\x08\x1e\xfa\x2b\x2a\xad\x1d\xed\x2c\x4b\x97\x8b\x79\x1a\ +\x84\x75\xf5\x06\xcd\x85\x57\x3c\xb5\x53\x56\xbc\xc4\xa0\x2f\x13\ +\xca\xf8\xad\x53\x5e\x77\xd3\x14\x62\xa6\xd4\x8c\x13\x44\x29\xae\ +\x24\xcf\x5e\x16\x79\x49\xd1\x93\xad\x4a\xff\xee\x89\xf2\x22\x0b\ +\x0b\xff\xa9\x2f\x03\x57\x1d\xc3\xbc\x47\xcb\xf9\x5d\x1c\x25\x61\ +\x1d\x17\xbd\x32\x53\x6f\x1e\xc5\x2f\xe3\xdf\xbc\x24\xbf\x23\xcd\ +\x20\x48\x55\x7d\x11\xfa\x6d\xa6\xae\x4a\x14\xe1\xba\x80\x52\x01\ +\x84\xf7\xd8\xa9\x3e\x79\x71\x34\x4b\xc6\xc0\x1f\xb2\xa2\x12\x04\ +\x90\x43\xb3\xaa\x4e\x02\x7c\x62\x5b\x48\xd0\x92\x4a\x13\x87\x45\ +\x11\x66\xa4\x76\xe0\xc6\xac\x15\x64\xd4\x6d\x59\xd9\x46\x91\x81\ +\x09\xe8\x40\x55\xed\x55\x16\x15\x50\x84\x20\xd6\xe3\x38\x23\xc5\ +\xe3\x5d\x10\xc1\x02\x53\xf6\x1c\x17\xd9\x1d\x66\xf6\x72\xd8\xf9\ +\x53\x34\x2d\xc6\xcd\xc7\xda\xec\xc4\x7f\x02\xf0\x2b\xbb\x83\x28\ +\x5f\xc0\x64\xc1\xe2\x5b\x16\x48\x61\xd5\x9b\xc6\xe9\x6a\xfc\x1c\ +\xe5\xd1\x63\x1c\xde\x95\xbf\xa3\x18\x9c\xae\x15\x4d\xc1\xf3\x36\ +\x53\x07\x1f\x48\x9d\xe3\xc7\xf4\x0e\xe6\x22\xfd\x58\x8f\xb1\xfa\ +\xbb\xca\x59\x63\x6e\x8b\x72\x15\x16\xec\x6e\xee\x65\x1f\xc3\xac\ +\x2a\x13\x26\x1e\x34\x49\x1e\x3d\xff\x23\x7a\x4f\x12\x8c\x3d\x1f\ +\x72\xe8\x32\x06\xee\xd5\x86\x39\xb8\xe3\x3f\x2c\x48\xf5\x9a\x71\ +\x43\xd5\x90\x41\xac\x3b\x86\x31\x65\xbd\xb7\x28\xac\x2a\xda\x50\ +\xa1\x86\x40\x27\xb4\x96\x98\x60\x2c\x69\x6b\xe5\x30\x25\x39\x14\ +\xe5\xda\x28\x25\xb4\xc5\x6d\xaa\x98\x16\x54\x0e\x95\x2d\x38\x33\ +\x8e\xab\xad\x5f\x2d\xa8\x44\x1d\xe1\x2a\x6e\xd4\xd0\x05\x9a\xa0\ +\xa9\x2b\x85\x45\x6d\x25\x05\x93\xda\x1d\x42\xa7\x42\x30\x57\x18\ +\x8b\xd9\x4a\x6b\x6a\x04\x43\x19\xa3\xda\x11\x1c\x3b\x17\x54\x1b\ +\x57\x0d\xe1\x2f\xce\x1d\xa9\x24\xf4\x2d\x86\xda\x76\x79\x79\x59\ +\x3e\xd6\x63\xc6\xe5\xd4\x0c\x09\xb3\x8d\xd6\x5c\x6a\x65\x41\xab\ +\x2e\x13\x4a\x0f\x89\x8b\x32\x41\x0d\xb5\x0c\x66\x30\xb0\x60\x48\ +\x90\xaf\x50\xa6\xa9\x82\xca\x38\x1e\x4e\x87\x8e\xcd\x34\xa7\x94\ +\xa2\x1d\x06\x86\xa6\x0d\x8e\xd7\x35\x52\x51\xe9\x5a\xd0\xb9\xab\ +\x94\x16\xd8\x05\x17\x94\x32\x65\xac\x4f\xbd\xdc\x8b\x11\x08\xac\ +\x40\x13\x45\x36\x99\x75\xb3\x1e\xa6\x49\x02\xce\x93\x66\x04\x56\ +\xc6\x67\xaf\x58\x66\x61\x2f\x03\xb7\x99\x14\xdc\x0d\x93\x0f\x2c\ +\x62\x7e\x73\xb5\xd9\xe7\x7b\x94\x7f\x8f\xf2\x63\xa3\x7c\x6e\x51\ +\x0d\x01\x07\xdc\x5c\x0d\x39\xb5\x99\xe3\x4a\x2a\x21\x88\x5c\x5b\ +\x19\x88\x48\x03\xf1\xac\x99\x70\x18\xb5\xb4\x6d\x84\x70\x65\x15\ +\x06\xb0\x25\x51\xda\xa2\x0c\xc3\x4e\x38\x06\xa3\x4a\x0a\xea\xb8\ +\xca\x8a\x21\xee\x39\x83\x72\x1a\xaa\x32\x26\x98\x05\x21\xe2\x68\ +\x68\x1f\xe2\x0c\x82\x96\x49\x46\xa9\x45\x80\x3d\x50\x0d\x81\x8c\ +\x71\x26\x24\xe7\x20\x52\xd0\xac\x70\x8d\x81\xb4\xe0\x08\xc3\xb4\ +\xb1\x84\x0d\xe6\x08\x41\x87\x90\x1e\x28\x75\x20\x4f\xf8\xd8\x9a\ +\x94\xae\xe3\x9a\x21\x87\x62\x12\xec\xb0\xa0\x73\xce\x38\x83\xe4\ +\x21\x21\xb7\x70\xcc\x1d\x04\xac\x55\x2e\xb0\xd4\xa1\x00\x9d\x80\ +\x84\x83\x15\xb9\xe3\x32\xd7\xc5\x01\x30\x0e\x79\xad\x34\x0d\x8c\ +\xe0\x0a\xcd\x90\xae\x96\x0e\xc5\xfc\xc4\x1d\x25\x15\x26\x3d\x2e\ +\x20\xff\xe9\x43\x81\x7d\xb6\xb0\x9e\xf5\x38\x9c\x70\xa8\xdb\xe9\ +\xab\x8e\xf3\xae\xaf\xb4\xba\xd6\x9b\x91\xd1\xc2\x9f\x38\xd9\x3f\ +\x12\xa6\x6c\x55\xe6\xc6\x21\xcc\x97\x7e\xd7\x92\xa7\x09\x3a\x76\ +\x87\x5f\x95\x9c\x4e\x30\xbc\xf8\xa0\x23\xef\xd1\x45\xcb\x82\x62\ +\x0c\xa7\xb1\xb3\x2d\xc1\x0b\x4a\x31\x69\xcb\x6d\x71\x43\x8e\x45\ +\x5d\xc3\x74\x74\x35\xb5\xde\xa7\xc2\x91\xa3\x79\xae\xe6\x86\x50\ +\x4e\x18\x91\x84\x76\xf4\x7b\x50\xd8\x8e\x98\xf2\x63\xb6\x84\xd4\ +\x17\x3e\x87\x00\x78\xd0\xc4\x50\xbd\xdb\xea\x87\x91\xd3\x7c\x04\ +\xb2\x17\x66\x31\x10\xef\x62\x2c\x1a\x59\xe0\xc1\x96\x29\xcb\x20\ +\x9a\xbb\xf1\xd7\x76\xd5\xa1\x83\x27\xc7\x94\xc3\x56\x18\xe7\x8e\ +\x9d\x1a\x53\x58\x97\x38\x31\x44\xdc\x24\xa8\xc0\x27\x70\x74\xf4\ +\xe4\xa0\x6a\xe2\xc2\x0f\x27\xce\x4d\xc2\x6a\x6c\xd1\xdf\x2d\x9e\ +\x0a\x56\x07\x20\x55\xe0\xad\x97\x0f\xeb\x64\x34\xdb\x9b\xc5\xb9\ +\xd1\x8c\xf0\xcf\x67\x6a\x4c\xcf\x40\x28\x61\x29\x7d\xf7\xd9\x74\ +\x7f\x82\x09\xd4\xb0\xbc\xe3\xd5\x9f\x40\x6a\xce\x15\x17\x4e\x19\ +\x19\xec\xe2\xa7\xef\x28\x50\x45\xbd\x09\xf9\xf3\x40\x55\x44\x60\ +\x5c\x5c\x35\xac\x5c\xd9\x7c\x7b\x05\x3c\x33\xac\x12\xfe\x89\x57\ +\x90\x6c\x8e\x82\x95\xd7\xf7\xef\xfe\x4c\x6f\x35\x90\xc7\x25\x51\ +\x17\x0f\xec\xa1\x2c\x8e\x5c\xfc\x08\x26\xae\xaa\xf5\x51\xaa\xe1\ +\xe6\xcf\x57\xcb\xc7\x2f\x7e\x12\x5f\x1f\x1b\xbf\x49\x48\xcf\xcd\ +\xc5\x6f\x12\xd4\x73\x33\xf1\x8b\x07\xf5\x73\x3c\xfc\x7f\x64\x69\ +\xbc\x9f\x8c\xff\x5d\x27\x09\xbf\xf8\x99\x7b\x8d\x14\xfc\xaa\x41\ +\xfd\x56\x04\xfc\xba\x41\xfd\x66\xf4\xfb\xe2\x61\xdd\xa4\xee\x2e\ +\xba\x3d\x5b\xa7\x53\xe6\x31\xef\x1b\xda\xfa\x66\x2f\xc8\x9b\x39\ +\x3f\x38\x2f\x87\x27\x13\x67\x7f\x33\x39\xe8\x22\xf6\x26\xe2\xfa\ +\x1e\xd4\xf7\xb3\x16\xb7\xd7\x06\x57\x27\x6f\x7e\x1d\x5e\xbb\xec\ +\xe7\x26\x60\xeb\xae\xe2\x5f\x09\xdc\xce\x3a\x79\x13\xc0\x39\xe4\ +\xd8\x08\xdd\xe5\x6c\x27\x06\xce\x18\xd7\xbd\x38\xe0\xba\xab\xc6\ +\x29\x32\x1b\xd9\x7d\xae\xec\x2a\x71\x83\x25\x97\x9d\x23\xc5\xdd\ +\x0c\x7e\xb8\x85\x37\xe7\xc8\x75\x27\x47\x50\x7f\x6b\xf6\x74\x28\ +\x72\x8f\x75\xc0\x7e\xe4\x52\x5a\x3d\x4b\x20\xae\x1b\x36\xbc\x1d\ +\x77\x8e\xc0\xbd\x15\xf8\xca\x5b\x6f\xe7\x88\xdb\x5b\x01\xb0\xbc\ +\xcd\x76\x0e\xae\x72\x6a\x00\x03\x71\x91\x00\xe2\xd7\x4c\xa7\xcd\ +\x7c\xed\x17\x36\xd7\x0d\x1c\x52\x96\xf3\xec\xcb\x6e\x05\xc0\x92\ +\xb3\x74\xbe\x3c\x3e\x61\xf6\xbb\x15\x08\x31\xfb\xb1\xce\xf3\x7e\ +\x27\xcc\x7f\xa7\x86\x50\x08\xd7\xbd\x3c\x08\x9d\x63\xd9\xcb\x1e\ +\x7e\xbc\xf7\xdb\xa6\x6b\x04\x8f\x1e\xbd\xdb\xed\xde\x10\xb8\x21\ +\xd8\xf4\xd1\x0b\xc7\x6e\x74\xde\x10\x7c\xce\xd1\x94\x79\x97\xdc\ +\x9d\x01\x3e\xe6\x73\x75\x79\xf0\x39\x47\xfb\xde\xfe\x94\x47\xaf\ +\x1b\x36\x4a\xc4\xa9\xb3\xdd\xd5\x23\xa6\xe1\xc7\x3d\xf6\x0e\xfc\ +\xde\x4c\x77\xf5\xd0\x95\x5f\x97\x9f\x23\xc9\x9d\x0c\x39\xad\x3d\ +\xef\x12\x91\xd3\xfa\x68\x3e\xbc\xcd\x4a\x76\xe8\xf1\x95\x22\x07\ +\xbb\xb1\xf3\xf0\x92\x1b\x01\xb0\x7c\x1c\xe3\x2c\xcc\xe4\xc4\x00\ +\x4a\xa9\x2f\x70\x3b\xeb\xc0\x12\x7b\x6c\xe8\x1e\xd8\x8e\xed\xdc\ +\x23\xb8\x46\xfc\x90\xa2\x1c\x7f\x4b\x6a\x3b\xf9\xdd\x08\x74\x25\ +\x57\x39\xfa\x66\xd4\xfe\xf4\x77\x23\x10\xd6\x0f\x4e\x9d\x25\x01\ +\x7e\x1d\x84\xdf\x8f\xfd\x5f\xe1\xb1\x7f\xed\xec\x73\xff\xda\xd9\ +\xcf\x71\xec\x5f\xd9\x5c\xe3\x4b\x32\xb8\x83\x6f\xe1\x30\xc2\xec\ +\x39\xf5\xcf\xfe\xef\x53\xff\xa6\x3e\xf5\x8f\x27\xe9\xeb\x73\xff\ +\x66\x73\xee\x7f\x73\xf0\x5f\x34\x07\xff\x59\x7d\xf0\x5f\x36\xc7\ +\xfe\x75\x73\xec\x9f\x35\xc7\xfe\xdd\xcd\xb1\x7f\xd9\x9c\xfa\x97\ +\xed\xa9\x7f\xd9\x9c\xfa\xd7\xf5\xa9\x7f\xdd\x9c\xf9\x17\xed\x99\ +\x7f\x71\xa2\x33\xff\x1b\xe1\x69\x4f\xfc\xbf\x3a\x4e\x88\xdb\x91\ +\xa3\x73\xe2\x01\x56\x73\x62\x56\x78\xd1\xcf\xb6\x1c\xff\x74\xcb\ +\xbe\x2f\x39\xbe\xf6\xe9\x16\x4c\x67\x6d\xdb\xf3\x78\x5c\xbe\xf8\ +\x0f\xbc\x3f\x0b\xf3\x30\x7b\xde\x24\x90\x06\xdf\xfd\xcb\xcc\xbe\ +\x25\x05\x97\x0f\x3c\xde\x5c\xae\x4f\xd4\x2c\xd6\xbd\x55\xc4\xf9\ +\x6b\x6f\x05\xc9\x21\x39\x13\xe8\x31\x9a\x6e\xe7\x75\x07\x2a\xf6\ +\x92\x3a\x0a\x9a\x69\x2e\xa7\xed\x4b\xf3\x67\x8b\x10\xeb\xad\xd2\ +\x3b\x8f\x5f\x23\x50\x60\x77\x6f\x12\x11\x26\x4c\x25\x83\x87\x49\ +\x01\x86\x24\x8d\xae\x13\xee\x59\x8a\x00\xe1\x18\x07\x1b\x6d\x59\ +\x17\x2b\x40\xe5\xee\xd3\xed\x07\x9e\xfb\xde\xee\xba\x8f\x7b\x8d\ +\xf2\x63\x1a\x07\x5d\x8c\x55\x35\x2e\xe5\xca\x2d\x8c\xa9\xcd\xdc\ +\x43\x28\x7f\x76\xb5\xfe\x01\x97\x6b\xeb\xef\xd0\xcf\x0f\x5f\x00\ +\xf5\x2e\xbc\x0f\x74\x32\x2a\x47\xfd\x00\xbf\x01\xb9\xef\xbe\x56\ +\x47\x6e\xf5\x8e\xcc\x3e\x23\xdc\x3d\x60\xd8\x75\x38\xc8\xb8\xc7\ +\xb8\x1c\xd9\x3e\x1f\xba\x63\xc1\x01\x1b\x5e\xab\xe7\xb1\xbd\x9e\ +\xf7\x9d\x3e\x5f\x21\x7d\x46\x9a\xf4\xa7\xbe\x1b\x4f\xd8\x4a\x30\ +\xe9\x68\x60\x91\xda\xb8\x94\xe3\x2b\xa6\xde\xe3\x2b\xe5\x80\x22\ +\xf3\xf2\xd5\x73\x40\x3c\x1d\x43\x0d\x92\x6a\x20\x9c\x12\x78\x30\ +\x44\x02\xc3\x03\x88\xd2\x02\xad\xa1\xc0\xa2\x19\x90\x57\x26\x81\ +\xe5\x72\x89\xef\xc6\xa3\x36\xd5\xae\x06\x02\x0a\x34\xd7\x28\xc6\ +\x81\x8b\x5b\xc0\x52\x35\x33\x40\x53\xe9\x10\x3a\x65\x40\x53\x81\ +\x6f\x03\x33\x76\x24\x90\x6b\x83\x32\xe8\x88\xb9\xf8\x3a\x3b\xce\ +\x95\x14\x86\x0e\x8d\x4d\xa5\xd0\x9a\xe3\x6b\xef\x38\xd5\xd2\x94\ +\xef\xe0\xe3\x50\x53\x00\x05\x7f\x0f\xa4\xde\x01\x96\x0b\xcd\x23\ +\x53\x56\x86\x2a\x26\xf0\xcd\x7a\x0a\xec\x90\x68\x25\xca\x80\xfb\ +\x43\xd3\x5c\x43\x41\x7c\xd5\x16\x14\x66\xae\x81\x62\x12\xcc\x81\ +\x0d\x01\x88\x5c\x0a\x2c\x9a\x72\xdc\x49\x30\xad\x24\xc5\x17\x7e\ +\x49\x6e\x5c\xd8\x3f\x34\xf0\x50\xde\xc0\x43\x5d\x66\xfd\x67\x2f\ +\xa7\xee\xdc\xda\x39\x25\xab\x2e\x4f\x11\x4d\xf0\x75\xa0\x0f\x6f\ +\xfe\x0b\x1d\xb4\x71\xa7\ +\x00\x00\x0b\x1c\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x63\x6c\x61\x73\x73\ +\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\ +\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\ +\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\ +\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\ +\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\ +\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\ +\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\ +\x39\x37\x39\x35\x31\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\x35\x34\x2e\ +\x30\x36\x30\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x37\x31\x2e\x36\x30\x37\x38\ +\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ +\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\ +\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ +\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ +\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\x32\ +\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x66\x32\ +\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\x2e\x36\x31\x33\x39\x36\x38\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ +\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x31\x31\x2e\x31\x33\x39\x38\x35\x32\x2c\x31\x35\x2e\x34\ +\x30\x33\x31\x34\x32\x20\x48\x20\x31\x39\x20\x76\x20\x2d\x32\x2e\ +\x39\x39\x37\x33\x38\x20\x6c\x20\x36\x2e\x38\x37\x37\x36\x33\x2c\ +\x34\x2e\x37\x39\x35\x38\x31\x20\x4c\x20\x31\x39\x2c\x32\x31\x2e\ +\x39\x39\x37\x33\x38\x31\x20\x56\x20\x31\x39\x20\x68\x20\x2d\x37\ +\x2e\x38\x36\x30\x31\x34\x38\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\ +\x30\x66\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x2d\x31\x38\x2e\x34\x30\x36\x32\x35\x2c\x2d\x31\x33\x20\x43\ +\x20\x2d\x31\x39\x2e\x32\x39\x37\x36\x30\x39\x2c\x2d\x31\x33\x20\ +\x2d\x32\x30\x2c\x2d\x31\x32\x2e\x34\x38\x30\x30\x31\x32\x20\x2d\ +\x32\x30\x2c\x2d\x31\x31\x2e\x38\x34\x33\x37\x35\x20\x76\x20\x34\ +\x37\x2e\x36\x38\x37\x35\x20\x43\x20\x2d\x32\x30\x2c\x33\x36\x2e\ +\x34\x38\x30\x30\x31\x32\x20\x2d\x31\x39\x2e\x32\x39\x37\x36\x30\ +\x39\x2c\x33\x37\x20\x2d\x31\x38\x2e\x34\x30\x36\x32\x35\x2c\x33\ +\x37\x20\x68\x20\x33\x36\x2e\x38\x31\x32\x35\x20\x43\x20\x31\x39\ +\x2e\x32\x39\x37\x36\x30\x39\x2c\x33\x37\x20\x32\x30\x2c\x33\x36\ +\x2e\x34\x38\x30\x30\x31\x32\x20\x32\x30\x2c\x33\x35\x2e\x38\x34\ +\x33\x37\x35\x20\x76\x20\x2d\x31\x2e\x39\x33\x37\x35\x20\x43\x20\ +\x31\x32\x2e\x36\x30\x30\x39\x31\x2c\x33\x30\x2e\x36\x33\x30\x36\ +\x30\x36\x20\x37\x2e\x35\x2c\x32\x33\x2e\x38\x34\x36\x35\x31\x37\ +\x20\x37\x2e\x35\x2c\x31\x36\x20\x37\x2e\x35\x2c\x38\x2e\x31\x35\ +\x33\x34\x38\x32\x38\x20\x31\x32\x2e\x36\x30\x30\x39\x31\x2c\x31\ +\x2e\x33\x36\x39\x33\x39\x34\x35\x20\x32\x30\x2c\x2d\x31\x2e\x39\ +\x30\x36\x32\x35\x20\x76\x20\x2d\x39\x2e\x39\x33\x37\x35\x20\x43\ +\x20\x32\x30\x2c\x2d\x31\x32\x2e\x34\x38\x30\x30\x31\x32\x20\x31\ +\x39\x2e\x32\x39\x37\x36\x30\x39\x2c\x2d\x31\x33\x20\x31\x38\x2e\ +\x34\x30\x36\x32\x35\x2c\x2d\x31\x33\x20\x5a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x39\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0c\x02\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ +\x6f\x61\x64\x5f\x6f\x70\x74\x69\x6f\x6e\x73\x2e\x73\x76\x67\x22\ +\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\ +\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x66\x69\x6c\x74\x65\x72\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x2d\ +\x69\x6e\x74\x65\x72\x70\x6f\x6c\x61\x74\x69\x6f\x6e\x2d\x66\x69\ +\x6c\x74\x65\x72\x73\x3a\x73\x52\x47\x42\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x66\x69\x6c\x74\x65\x72\x34\x35\x30\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x30\x2e\ +\x30\x32\x33\x37\x34\x38\x36\x32\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x2e\x30\x34\x37\x34\x39\ +\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x30\ +\x2e\x30\x32\x34\x32\x35\x36\x37\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x2e\x30\x34\x38\ +\x35\x31\x33\x35\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x66\x65\ +\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\x72\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x64\x44\x65\x76\x69\ +\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2e\x32\x37\x39\x32\x33\x37\x32\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\x72\x34\x35\ +\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x66\x69\x6c\ +\x74\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ +\x35\x31\x2e\x31\x36\x39\x34\x34\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\x36\x2e\ +\x35\x33\x38\x34\x34\x37\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ +\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ +\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ +\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ +\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ +\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ +\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ +\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ +\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ +\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ +\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ +\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x33\x33\x33\x33\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x2e\x30\x33\x31\x32\x35\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x74\x65\x72\x3a\x75\x72\x6c\x28\x23\x66\x69\ +\x6c\x74\x65\x72\x34\x35\x30\x35\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x37\ +\x2e\x35\x38\x37\x33\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x2e\x31\x37\x39\x33\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x30\ +\x2e\x30\x36\x39\x36\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x31\x2e\x39\x33\x30\x30\x32\x30\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x72\x6f\x74\x61\x74\x65\x28\x2d\x39\x30\x2e\x30\x38\x33\x30\x39\ +\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x31\x32\x66\x66\x32\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x39\x39\x39\x39\x39\x39\x37\x36\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x34\x2e\x37\x39\x32\x32\x32\x36\x32\x2c\x31\x34\x2e\x31\ +\x39\x37\x30\x34\x33\x20\x63\x20\x30\x2c\x30\x20\x38\x2e\x36\x38\ +\x39\x38\x39\x33\x38\x2c\x31\x36\x2e\x33\x36\x33\x30\x30\x38\x20\ +\x39\x2e\x33\x37\x31\x38\x32\x38\x38\x2c\x31\x32\x2e\x35\x33\x36\ +\x38\x37\x33\x20\x43\x20\x31\x37\x2e\x39\x37\x32\x39\x38\x34\x2c\ +\x35\x2e\x33\x36\x33\x31\x37\x38\x33\x20\x32\x38\x2e\x38\x31\x32\ +\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\x36\x32\x20\x32\x38\ +\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\x36\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x34\x35\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ +\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x0a\x55\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ +\x6f\x61\x64\x5f\x6c\x6f\x67\x69\x6e\x2e\x73\x76\x67\x22\x0a\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\ +\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ +\x38\x34\x2e\x32\x36\x31\x35\x31\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\x35\x2e\ +\x30\x33\x36\x33\x36\x34\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ +\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ +\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ +\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ +\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x33\x33\x33\x33\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x31\x32\x33\x33\x32\x35\x31\x31\x70\ +\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x2d\x30\x2e\x35\x34\x39\ +\x36\x33\x37\x33\x35\x2c\x33\x37\x2e\x37\x38\x33\x32\x37\x20\x63\ +\x20\x30\x2c\x30\x20\x38\x2e\x34\x39\x33\x38\x31\x39\x33\x35\x2c\ +\x2d\x32\x33\x2e\x34\x34\x37\x35\x37\x20\x31\x36\x2e\x31\x30\x35\ +\x31\x36\x30\x33\x35\x2c\x2d\x32\x33\x2e\x33\x33\x36\x34\x38\x32\ +\x20\x37\x2e\x35\x30\x31\x38\x37\x38\x2c\x30\x2e\x31\x30\x39\x34\ +\x38\x38\x20\x31\x35\x2e\x37\x31\x35\x39\x31\x39\x2c\x32\x33\x2e\ +\x34\x36\x31\x39\x31\x33\x20\x31\x35\x2e\x37\x31\x35\x39\x31\x39\ +\x2c\x32\x33\x2e\x34\x36\x31\x39\x31\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x38\x38\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x61\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x33\x33\x33\ +\x33\x33\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ +\x2e\x32\x35\x32\x38\x36\x32\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\ +\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x38\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\ +\x35\x2e\x34\x35\x38\x36\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x37\x2e\x32\x31\x35\x36\x35\x30\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x32\x38\x32\ +\x38\x31\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x35\x2e\x36\x39\x30\x38\x31\x37\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\ +\x74\x61\x74\x65\x28\x2d\x30\x2e\x33\x38\x39\x31\x37\x31\x35\x33\ +\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x07\x4c\ +\x00\ +\x00\x1f\xb7\x78\x9c\xdd\x59\x5b\x6f\xeb\xb8\x11\x7e\xcf\xaf\x60\ +\x9d\x97\x5d\xd4\xa4\x2e\xd4\x85\x52\x9c\xec\x43\x0f\x16\x3d\xc0\ +\x29\x0a\xec\x6e\x51\x60\x5f\x16\xb4\x44\xdb\x6c\x64\xc9\xa0\xe8\ +\xdb\xfe\xfa\x0e\x25\x51\x17\xdb\x49\x4f\x80\x14\x38\x27\x04\x02\ +\x8b\x33\x43\x72\xf8\xcd\x37\x43\x12\x59\xfc\x74\xda\x16\xe8\x20\ +\x54\x2d\xab\xf2\x71\xe6\x11\x77\x86\x44\x99\x55\xb9\x2c\xd7\x8f\ +\xb3\x7f\xfd\xf6\x33\x66\x33\x54\x6b\x5e\xe6\xbc\xa8\x4a\xf1\x38\ +\x2b\xab\xd9\x4f\x4f\x77\x8b\xbf\x60\x8c\xfe\xa6\x04\xd7\x22\x47\ +\x47\xa9\x37\xe8\x73\xf9\x5c\x67\x7c\x27\xd0\x0f\x1b\xad\x77\xa9\ +\xe3\x1c\x8f\x47\x22\x3b\x21\xa9\xd4\xda\xf9\x11\x61\xfc\x74\x77\ +\xb7\xa8\x0f\xeb\x3b\x84\x10\xac\x5b\xd6\x69\x9e\x3d\xce\xba\x01\ +\xbb\xbd\x2a\x1a\xc3\x3c\x73\x44\x21\xb6\xa2\xd4\xb5\xe3\x11\xcf\ +\x99\x0d\xe6\xd9\x60\x9e\x99\xd5\xe5\x41\x64\xd5\x76\x5b\x95\x75\ +\x33\xb2\xac\xef\x47\xc6\x2a\x5f\xf5\xd6\xc6\x9b\x23\x6d\x8c\xbc\ +\x24\x49\x1c\xd7\x77\x7c\x1f\x83\x05\xae\xcf\xa5\xe6\x27\x3c\x1d\ +\x0a\x3e\xde\x1a\xea\xbb\xae\xeb\x80\x6e\xb0\xfc\x3a\xab\xb4\x06\ +\x40\x77\xf0\xd7\x9b\x5b\x01\xa9\xab\xbd\xca\xc4\x0a\xc6\x09\x52\ +\x0a\xed\x7c\xfa\xed\x53\xaf\xc4\x2e\xc9\x75\x3e\x9a\xc6\xe2\x39\ +\x59\x75\x02\x72\xc9\xb7\xa2\xde\xf1\x4c\xd4\x8e\x95\x37\xe3\x8f\ +\x32\xd7\x9b\xc7\x19\x0d\x88\x47\xa1\x85\x8d\x70\x23\xe4\x7a\xa3\ +\x2f\xa5\x32\x7f\x9c\x81\xf7\x7e\xc2\xda\xfe\x88\x1c\x5e\x6b\xd0\ +\x4d\x9c\xf6\x1a\x97\x24\x3e\xf1\x90\xf2\x42\x1a\xb7\x36\x76\x0b\ +\x69\x5e\x65\xc6\x27\x98\x52\x6c\x25\xdf\xeb\x6a\x0b\x51\xcb\xb2\ +\x82\xd7\xb5\x5c\xc9\x0c\x3a\x55\xb9\x2b\xf6\x6b\x59\xfe\xb1\xe5\ +\xe5\x9e\x17\x7f\xfc\xf2\xcf\xcf\xc4\xa2\xd7\x2f\x25\x4e\xbb\x4a\ +\x69\x7c\xca\x77\x80\x61\x14\xdf\x54\x9e\xad\xf2\x09\xb4\x8b\x5c\ +\xac\x6a\x63\xd5\x6e\xc8\xf4\x60\x47\xf1\x0c\x39\x8d\xb6\xf7\xcf\ +\x38\x97\x1f\xa4\x38\x0e\xb6\x4b\x5e\xb7\xa0\x21\xb4\xe3\x6b\x20\ +\x58\x51\xa9\xc7\xd9\xfd\xaa\x69\x9d\x62\x59\xa9\x5c\x28\xab\x8a\ +\x9a\x36\x51\x55\x10\x04\xa9\xcf\x6d\x4a\x75\x73\x5b\x7f\xcd\xac\ +\xbd\xde\xbd\xad\xaf\x37\x3c\xaf\x8e\x8f\x33\xff\x52\xf9\x67\x55\ +\x6d\x61\x56\x08\x46\x12\x33\xf7\x4a\x9d\x9d\x1e\x67\x38\x20\x49\ +\x12\x53\xca\xa2\x2b\xad\x71\x28\x82\x68\x47\x7e\xe4\x5d\x29\xf7\ +\x4a\x41\xd2\xe1\x82\x9f\x05\xec\xaa\xf9\xb1\x46\xf5\xa6\x3a\xae\ +\x95\x41\x47\xab\xbd\xb8\x1c\x69\x34\x78\xb9\xac\x4e\xb7\xd5\xc0\ +\x81\xbd\x49\x67\xbc\x2f\xa5\x86\x94\xd9\x9d\xc6\xb3\xee\x65\x2e\ +\xea\xdb\x03\xeb\x92\xef\xf0\xba\xa8\x96\xbc\xb8\x6d\x70\x94\x25\ +\xa0\x84\x3b\x76\xc3\xb6\xae\x76\xdc\x59\x58\xaa\xc7\x2e\x7b\xc1\ +\x02\x7c\xbf\x0a\x44\xa7\x3a\xbf\xac\xda\xf2\x93\xdc\xca\x3f\x05\ +\x00\xe3\x35\xbc\x03\x6e\x4d\x60\x69\x87\x21\xa4\xcf\x26\x6d\x4f\ +\x67\x23\x9b\x59\xa1\xc1\xd3\x08\x7c\x08\x57\x2f\xac\x94\x84\x6c\ +\x18\xb9\x63\x45\xe7\xb1\xc8\x24\x39\xd4\xe8\x53\x43\xb0\x86\x7e\ +\xf1\xa5\xee\x3c\xd6\x75\xbc\x77\xae\x89\xdf\xc8\xb7\x42\xf3\x9c\ +\x6b\x3e\x64\x81\x95\x80\x6f\xae\xdd\x19\xd4\xcb\xf4\x97\x4f\x3f\ +\x3f\x75\x0b\x2d\xb2\x2c\xfd\x77\xa5\x9e\xed\xba\x08\x19\x03\xbe\ +\xac\xf6\x80\xf4\xec\xa9\x17\x2f\xf2\x2c\x85\x0a\x07\x99\xff\x24\ +\xb7\xc0\x6d\x53\x1c\xff\x0a\x15\x6d\xe1\x0c\x8a\x89\xb1\x01\x6b\ +\x98\xb4\x9d\x56\x89\xb6\x54\xde\x3c\x2f\xf2\x6c\x2b\xcd\x20\xe7\ +\x57\x2d\x8b\xe2\xb3\x59\xa4\xdb\xf1\x68\x52\xa9\x0b\x31\x08\x17\ +\x4e\xe7\x7d\xb7\x37\x67\xb4\xb9\x85\x63\x77\xdf\xf4\xd6\x03\x2a\ +\x93\xa4\xe8\x03\x5d\xf0\xa5\x00\x86\x7e\x31\x4a\x74\xa5\x5d\xab\ +\x6a\xbf\xdb\x56\xb9\xe8\x86\xf7\x68\x8a\x4c\xf7\x21\xd3\xe7\x02\ +\xf4\x2b\xf0\x3e\xbd\x17\x09\x5f\x7a\xd1\x83\xe9\xe0\xae\x4e\xa4\ +\x5e\xdb\x55\xfb\x02\xea\xdd\x41\x94\x55\x9e\x3f\xd4\x5a\x55\xcf\ +\x22\xbd\xf7\x58\x1e\xad\x56\x5d\xb7\x4d\x86\xd4\xb5\x5d\x00\x46\ +\xa8\x02\x48\xaa\xd3\xc0\xca\x72\x0e\xe5\x45\x29\x7e\x4e\x4b\x38\ +\xd4\xad\xb4\x5f\x6a\xc2\x4f\xe3\x25\x70\x20\xc1\x0c\xd3\x5e\x61\ +\x13\x2e\x20\x11\x8b\x59\x14\xf6\x0a\x9b\x67\x8c\xb0\x30\x71\x43\ +\x16\xf4\x1a\x60\xaa\x1f\x11\xe6\x07\x34\x1e\xe6\x69\xea\x5f\x4c\ +\x59\x12\x85\xf1\x30\x89\x32\xb6\x24\x08\xa2\xc8\x8b\x07\x67\x54\ +\xcb\xe7\x90\xd2\x88\x26\xbd\x54\x2b\x5e\xd6\x86\x43\xc0\x58\xae\ +\x95\x3c\xfd\x00\x13\x86\x2c\x49\x58\xe4\xcf\x5d\x12\x85\x9e\x9b\ +\xf8\x3e\x9d\xc3\x59\x1a\xc7\x31\x75\xa9\xe7\x19\xb1\x9f\x78\x7e\ +\xe4\xb3\xb9\x3b\x77\x7f\xec\x99\xf2\xfd\x45\x24\xbe\x0e\x89\x47\ +\x42\x3f\x09\x99\x77\x15\x12\x2f\x24\xae\x17\xc5\x21\x1d\x87\x04\ +\x84\x01\x83\x36\x8e\x08\x66\x84\x26\xd4\xf5\xc2\x64\x12\x11\x0f\ +\x0e\x79\x37\xf4\x59\x72\x11\x91\x98\x85\x20\x65\xaf\x46\x24\xf1\ +\x03\x2f\x8c\x92\x18\xa0\xa7\xcc\x77\x3d\xf0\xb0\x89\x88\x89\x8d\ +\xc7\x20\x0c\xf0\x19\xc0\x85\x83\x06\xdf\x7d\x44\x30\xbb\x0c\x89\ +\x1f\x03\xc5\xa1\x05\x57\x21\x09\x88\xdf\x94\xe7\x64\x1c\x92\x6b\ +\x21\xc0\xec\x33\x12\x27\xa6\x4d\x42\x02\xe9\xe7\x41\xea\x50\x7f\ +\x12\x12\x97\x84\x6e\x4c\x21\x75\x92\xef\x19\xc7\xff\x07\x8a\xd7\ +\x47\xe5\xc7\x46\xf1\x0a\x43\x8f\xd0\xdb\x18\x8e\x36\x7f\xf3\x4a\ +\xf1\x22\x78\x94\x84\x21\x0d\xe3\x24\x9a\x80\x47\x09\x73\x03\x38\ +\x19\xc2\x01\xbb\x1d\xd7\x9b\x0b\xec\x9a\xeb\x73\x7a\xef\x36\xed\ +\x61\x55\xc1\x0d\xb1\xd1\xc0\x1e\xe1\x4e\x50\xb4\x92\x03\x57\x92\ +\x97\x7a\x22\x3b\x36\x5e\x4f\x44\x80\x88\xd0\xd9\x66\x2a\x83\x8b\ +\x59\x0a\xb7\x1c\xb9\xdf\x3e\x14\xb2\x14\xdd\x2d\x70\x62\xb3\xe2\ +\x5b\x59\x9c\xd3\x5f\xa1\x66\x3d\x60\x7b\x64\xe3\x76\xf8\x4e\x64\ +\xfd\x1b\xa5\xb5\xd0\xe2\xa4\xc1\x2a\x87\xcb\x2c\xc4\xab\xe9\xf1\ +\x42\xae\xcb\x14\x9e\xc8\x4a\xb7\x82\x1c\x5e\x0c\xaa\x1d\xd3\xc4\ +\xea\x42\x88\x8d\x27\xad\xa6\x10\x1a\x22\x8d\xbb\xeb\x9a\x75\xeb\ +\x08\xef\x87\x4b\x59\x33\x47\x5f\x58\xdb\xd1\x47\x25\x35\x98\x60\ +\x73\xb3\x48\x0b\x85\xf5\xf2\x21\x97\x26\xf6\x66\xe5\x42\xab\x07\ +\xf3\x8e\x69\xb6\x5d\x6f\xe4\x4a\xa7\xb6\xdb\xb9\x5d\x66\x1b\x00\ +\xbf\xf5\x3b\x97\xf5\x0e\xae\x26\xf0\xbe\x6c\x0c\x2a\x78\xd8\xad\ +\x8a\xea\x98\x1e\x64\x2d\x97\x85\x78\x68\x7e\x65\x61\xa8\x66\x45\ +\x2d\xef\x3b\x1e\x7f\x2d\xef\xc7\xdc\x6d\x49\x0f\xcf\xc6\x38\x84\ +\xf3\x80\xd1\x87\x2d\x57\xcf\x42\xb5\x36\xa2\xe4\xb0\x08\x5e\xf2\ +\xec\xd9\xdc\x9e\xca\x3c\xe5\x19\xbc\x21\xf6\x05\xd7\xa2\x27\x9a\ +\xb9\xa4\x22\x38\x45\x5c\xda\xb6\xf9\xe8\x1b\x1d\x10\xbc\x90\x5a\ +\x66\x51\x44\x7d\x62\x3f\x41\x8a\x36\xaf\xe8\x0e\x08\x9b\x9f\x2f\ +\xc8\x3e\x8a\xe9\x9c\xc2\xf9\xd5\x4e\xea\x53\x12\x34\x29\x30\xf7\ +\x12\xe2\x1b\xdb\x88\x04\xa8\x40\x1e\xdc\x28\x9a\x36\xc7\x09\x89\ +\x50\xe7\xc6\x1c\xfb\xdd\x14\xb4\x9b\xd6\x2e\xb4\x69\x17\xf9\x3b\ +\xea\x73\x0a\xfd\x8e\xfe\x81\xc0\xbc\xed\xcd\xfb\x2f\xb0\xa1\x70\ +\xf0\xb6\xdf\x5f\x90\x4d\x60\x3a\x87\x73\x3e\xb6\x53\x33\x12\x36\ +\x59\xdd\x79\xd2\x7c\x37\x06\x30\x7a\x98\xe9\xf7\x9b\x45\x62\x10\ +\xf6\xcf\xc0\xaa\x2c\x41\x59\x29\x0c\x0f\xc2\x03\xd7\x7b\x25\x26\ +\x0f\x8f\xfe\x01\x01\xbc\x33\x77\x6e\x78\xbb\x65\x2f\xb4\x57\xb3\ +\xbf\x65\x10\x03\x40\x98\x7b\xc9\x20\x5b\x27\x57\x6d\x69\x98\x50\ +\xc6\x23\x2c\x88\x43\xdf\x65\x74\x77\xb2\x1a\x43\x5b\x70\x3e\x5d\ +\xee\xb5\x1e\xcb\xfe\x53\xc9\x32\x6d\xea\xe9\xcb\x25\xb3\xa1\x91\ +\xef\xb6\xe7\x05\x44\x96\x75\x41\x43\x19\x82\xe8\xce\x4d\x84\x2f\ +\x7e\x27\x40\x9a\x9d\xd1\xc4\x0d\xbe\x1a\xc8\xff\x8d\x89\xeb\x46\ +\xd4\xbb\xca\xaa\xd7\x30\xb1\x44\x0b\x82\xf7\xc4\x24\x22\xd1\x35\ +\x26\xd8\x82\x71\xf5\x71\x0b\x96\xe8\x1d\x61\xf9\xe6\xa8\x12\xb7\ +\xd5\x00\x72\xab\xa7\x4a\x97\xe0\xaf\xf4\x6e\x92\x07\xfb\x1f\x99\ +\x3e\x63\x9c\xf0\x14\x9a\x57\xbb\x37\x09\x85\xbd\x0f\x48\xa9\x84\ +\xb0\x16\x2a\x3c\x9c\x08\x6f\x2b\x3f\xd8\x7f\x57\x60\xbe\x11\x0e\ +\xd1\xc8\xe6\xda\x04\x98\x37\xd6\x20\xec\x7d\x44\xd2\x0c\xb7\x8b\ +\xf1\x45\xe3\xcd\xac\x89\x3f\x1e\x6b\xec\xdb\x2f\x9e\x02\xf3\x76\ +\xd6\x7c\xfd\xed\xe8\xfb\x61\x4d\x9f\x47\xf3\xbe\xea\xbc\x9d\x34\ +\xef\x09\xcc\x37\x42\x9a\x90\xd8\x67\xc4\x18\x97\xb7\x73\xe6\x3d\ +\x2f\x82\xdf\x08\x67\x86\xe3\xc9\x67\x84\xbd\x9d\x2d\x1f\xf0\x72\ +\x33\x1c\x4c\x1d\x24\x6f\x27\xca\x5b\xaf\xc6\x0b\x67\xfd\x74\xb7\ +\x30\xff\x3b\x79\xba\xfb\x2f\x49\x7d\x2d\x30\ +\x00\x00\x06\xfa\ +\x00\ +\x00\x20\xf8\x78\x9c\xdd\x59\x59\x8f\xdb\x36\x10\x7e\xdf\x5f\xa1\ +\x2a\x2f\x09\x6a\x49\x3c\x74\xc7\xde\x3e\x24\x48\x13\xa0\x45\x81\ +\x36\x69\x1f\x03\x5a\xe2\xda\x6a\x74\xb8\x94\xb4\xb6\xf3\xeb\x3b\ +\xd4\x41\x49\xb6\x0c\x6c\xe0\x6c\xba\xa9\x16\x0b\x93\x33\xc3\x63\ +\xbe\xb9\x48\x69\xf9\xd3\x21\x4b\xb5\x7b\x2e\xca\xa4\xc8\x57\x3a\ +\x36\x91\xae\xf1\x3c\x2a\xe2\x24\xdf\xac\xf4\x0f\xef\xdf\x18\xbe\ +\xae\x95\x15\xcb\x63\x96\x16\x39\x5f\xe9\x79\xa1\xff\x74\x7b\xb3\ +\xfc\xc1\x30\xb4\x57\x82\xb3\x8a\xc7\xda\x3e\xa9\xb6\xda\xbb\xfc\ +\x53\x19\xb1\x1d\xd7\x9e\x6f\xab\x6a\x17\x5a\xd6\x7e\xbf\x37\x93\ +\x8e\x68\x16\x62\x63\xbd\xd0\x0c\xe3\xf6\xe6\x66\x59\xde\x6f\x6e\ +\x34\x4d\x83\x75\xf3\x32\x8c\xa3\x95\xde\x0d\xd8\xd5\x22\x6d\x04\ +\xe3\xc8\xe2\x29\xcf\x78\x5e\x95\x16\x36\xb1\xa5\x0f\xe2\xd1\x20\ +\x1e\xc9\xd5\x93\x7b\x1e\x15\x59\x56\xe4\x65\x33\x32\x2f\x9f\x8d\ +\x84\x45\x7c\xa7\xa4\xe5\x6e\xf6\xb4\x11\xc2\x41\x10\x58\x88\x58\ +\x84\x18\x20\x61\x94\xc7\xbc\x62\x07\x63\x3a\x14\xf6\x38\x37\x94\ +\x20\x84\x2c\xe0\x0d\x92\x0f\x93\x0a\x0f\x29\x40\x71\x71\x33\x0d\ +\x77\xbc\x3a\xc0\xbf\x83\x7f\x35\xa0\x27\x98\x65\x51\x8b\x88\xdf\ +\xc1\x48\x6e\xe6\xbc\xb2\x5e\xbf\x7f\xad\x98\x06\x32\xe3\x2a\x1e\ +\x4d\xd3\xa3\x3f\x59\x77\x62\x92\x9c\x65\xbc\xdc\xb1\x88\x97\x56\ +\x4f\x6f\xc6\xef\x93\xb8\xda\xae\x74\x6a\x9b\x98\xc2\xe3\x34\xc4\ +\x2d\x4f\x36\xdb\xea\x94\x9a\xc4\x2b\x1d\x74\x25\x81\xdf\xf6\x47\ +\xae\x84\x5b\x81\x6e\xe2\x50\x71\x90\x19\x10\x13\x6b\x02\x3b\xd4\ +\x6b\x65\x7a\x15\xc2\xb8\x88\xe4\x9e\x60\x4a\x9e\x25\xac\xae\x8a\ +\x0c\x6c\x1c\x45\x29\x2b\xcb\xe4\x2e\x89\xa0\x53\xe4\xbb\xb4\xde\ +\x24\xf9\xc7\x24\xdb\x15\xa2\xfa\x58\xee\x78\x54\x09\x96\x7e\x4c\ +\x93\xb5\x60\xe2\x68\xf6\xc0\xab\x75\xf9\x41\x0a\x1a\x87\x78\x07\ +\x80\xba\xde\x2c\xf3\xd8\x33\x6f\x81\xbb\x8c\xf9\x5d\x29\xa5\x5a\ +\xed\x64\x0f\xd4\x6b\x79\xc0\x05\x63\x71\x26\x7e\x16\x2c\x4e\xc0\ +\x45\x5b\xb9\xd1\x8c\x51\x91\xa6\xb0\xa5\x95\xce\xd2\x3d\x3b\x96\ +\xba\x12\x80\xa9\xa6\x43\x9d\x00\xd4\xbf\xed\xf8\xcb\xb2\x2a\x76\ +\xbd\x2c\x20\x52\x1d\x53\x09\x03\x10\x0d\x98\xb1\x10\xe1\x33\xf0\ +\x2a\xe4\xa3\x97\x0d\xa9\x00\xa3\x25\xd5\x31\xc4\x2f\xf5\x61\x4c\ +\x71\x77\x57\x72\x58\x18\x8d\x68\x8d\x79\x60\x04\xac\x45\x75\xcd\ +\xba\x6e\x35\x34\xb7\x1a\x9e\x5f\xcd\x51\xab\x2d\xad\xa9\xda\xd7\ +\xc1\xd8\xc4\x4a\xb8\x15\x1c\x62\xfb\xd9\x0c\x9e\x97\xe1\xa6\x88\ +\x78\x8a\xbd\xe9\x88\x1f\xf2\xa4\x82\x20\xae\x4b\x2e\xfe\x90\x81\ +\xf0\x5b\xfe\xa1\xe4\x67\x52\xef\x05\xcb\x4b\x88\xba\x6c\xa5\x83\ +\x43\x8a\xe4\xf0\x1c\x7c\xd8\xa7\xbe\x83\x49\xb0\x40\xf2\x6f\xe8\ +\x62\xd3\xa3\x01\x26\xc4\x5b\x40\x40\xfa\x01\xc6\xc8\xc6\xf8\xc5\ +\xb0\x7f\x0c\x90\x39\xaa\x7b\x84\x2e\x21\x03\x97\xac\x74\x7b\x60\ +\x42\x8f\xa2\x0e\xc8\xa5\x25\x1d\xb1\x69\xa9\x70\x91\xb1\x12\xdf\ +\x27\x7c\x3f\x78\xeb\x9a\xa9\xfd\xef\xd8\x86\x37\xd6\x04\xa4\xee\ +\x9a\xa7\x63\xac\x0b\x11\x73\xd1\xb3\xdc\xe6\x99\xb0\x3a\x83\xb7\ +\xf5\xe0\x66\x6a\x18\x39\xab\xe2\xa3\x79\x7e\xb9\x65\x71\xb1\x07\ +\xcd\x4e\x99\x9f\x8b\x02\x30\x74\x4c\x27\xf0\x03\x84\x4f\xb9\xd1\ +\x61\xa5\x1b\x0e\x31\x1d\x3f\x70\x6d\xf7\x8c\x0b\xeb\x51\x62\x12\ +\x70\xcb\xe0\x9c\x59\x0b\x01\x86\x32\x52\x76\xe4\xa0\x54\xf3\xd3\ +\xcf\x5f\x6e\x8b\xfd\x46\x48\x70\x2a\x51\xf3\xd3\x91\x92\x63\xac\ +\xd7\xc5\x61\x9e\x0d\x19\xa9\x96\xa5\xc8\xa8\x5b\x4f\xd9\x1d\xc6\ +\xb3\xd6\x49\xcc\xcb\xf9\x81\xfb\x24\x07\x0c\x8c\x2e\x95\x62\xea\ +\x9e\xed\xb9\x93\xe8\xf3\xaa\x87\xfc\x0b\x12\x87\x21\xa6\x4f\x59\ +\xc7\xcb\xac\x8c\x1d\x92\x2c\xf9\xcc\xe3\x21\x46\x95\x48\x99\xb3\ +\x9d\xb1\x49\x8b\x35\x4b\xbb\xdd\x77\x51\x39\x81\xa5\xf7\xc3\xea\ +\x28\x8b\xc8\xe1\x28\x69\x93\x00\x93\x04\xea\xb9\x83\x3b\x17\x22\ +\x81\xdc\x7c\x18\xe7\xa0\x96\x74\x1c\x93\x64\xc9\x81\xf3\xc5\xa1\ +\xf1\xaf\xc6\xfb\xbc\x53\xde\x71\xcc\xeb\x03\xe0\xdc\xef\x1b\x7a\ +\xc6\x2b\x16\xb3\x8a\x0d\x41\xd0\x53\x48\x10\xa0\x5e\x33\xa8\xf5\ +\xe1\xef\xaf\xdf\xa8\x0c\x18\x45\xe1\x5f\x85\xf8\x34\x24\x2f\x29\ +\xc0\xd6\x45\x0d\xa6\x50\x59\x59\x16\x83\x28\x94\x91\xcf\xaa\xdb\ +\x24\x03\xd7\x96\x85\xfd\x47\xa8\xaf\x10\x8e\x8a\x31\x11\x96\x60\ +\x0d\x93\xb6\xd3\x0a\xde\x16\xee\xd9\xb3\x4e\x1c\x65\x89\x1c\x64\ +\xfd\x51\x25\x69\xfa\x4e\x2e\x32\xca\xd4\xdd\xa4\x49\x95\xf2\x51\ +\xfa\xb6\xba\xdd\xf7\x19\x76\xa4\xdc\xd2\xea\xb5\x6f\x7a\x9b\x01\ +\x95\x49\x50\x28\x43\xa7\x6c\xcd\xc1\x09\x7e\x91\x4c\xed\x8c\xbb\ +\x11\x45\xbd\xcb\x8a\x98\x77\xc3\x15\x9a\x90\x9b\x95\xc9\xda\xea\ +\x71\x07\xbb\x0f\xbb\x44\xf3\x52\x76\x46\x55\xaa\xe9\x8a\x3a\x85\ +\x82\x7b\xcf\xf3\x22\x8e\xa1\xb0\x88\xe2\x13\x97\x75\xc6\xf6\x11\ +\xea\xba\x6d\xb4\x84\xaa\x2b\x13\x38\x6c\x23\x2c\xff\xa9\x99\xe0\ +\x63\xea\xdf\x45\x92\x87\x80\x1b\x17\x3d\xb5\xe9\xa4\xe0\xf1\x55\ +\x68\xf7\xb4\x98\x41\x26\x12\x82\x1d\xc3\x1c\x0e\xaf\x63\x6a\x5b\ +\xbd\x86\x95\x54\x89\x33\x69\xf7\x4c\x1c\x5d\xaa\x4b\x83\x60\x28\ +\x2f\xb3\x27\x24\xf9\xcc\x9f\x92\xe4\x33\x89\x0a\xf0\xef\xc0\xb4\ +\xa1\x52\x20\xea\x72\x03\xbb\x8a\x21\x26\x62\x42\xe6\x3c\x93\xc2\ +\x49\xc9\x0d\xfc\xa1\xa2\xee\x58\xb5\x9d\x43\x7f\xa4\x65\x5b\xc1\ +\x4f\x91\x25\xed\xa6\xa8\x6d\x9f\x42\xbc\xae\xab\xea\x6b\x01\xac\ +\xec\xae\xf4\x00\x08\x7f\xd5\xa0\x4c\x6a\x7f\x6a\x3d\x30\x53\x80\ +\xa5\x46\x10\xad\x03\x0e\xa3\x83\x40\x0e\x3b\xac\x0a\x61\x40\x8e\ +\xbf\x67\x55\x2d\xf8\x24\x97\xa8\x9c\x00\x4e\x2a\xc3\x08\xd2\x71\ +\x14\x7d\xef\x50\x29\x90\x16\xaa\xa5\xbd\xd5\xd0\x1c\x64\xfe\xd3\ +\x81\x0c\x9b\x60\x41\x44\x1c\x7f\x77\xf8\x72\xcc\x2e\x20\xa1\xaa\ +\xc0\x82\xf8\xa6\xaf\xbd\xd2\xa8\x49\xda\xe6\x59\xe3\x0c\x1d\xea\ +\x79\xc4\x40\x0f\xc6\xe7\xab\xf8\x0c\xf6\x1c\x1b\x3b\xce\x57\x43\ +\x20\xd3\x9c\x3e\x25\x2d\xa8\x63\x12\x2d\x82\x38\x32\x6c\x93\x34\ +\xa0\x5c\x6a\x9f\x43\xe1\xdb\x8f\x07\x84\xcf\xcf\x3d\xa1\xb3\x1a\ +\x79\x14\x57\xc0\xd4\xf4\x5b\x9d\x3b\x85\x25\x8d\x80\x2b\x60\x64\ +\x76\x5d\xc5\xd0\xb0\xbb\x00\x0f\xd1\x52\x05\xe4\x22\x30\xdd\xbe\ +\x63\x2f\xfa\x38\xd7\x3c\xd3\x6e\x46\x2c\x14\xa0\xbe\xe9\xb4\x32\ +\x30\xfe\x0c\x51\x1b\x51\xef\x1b\x22\x0a\xa6\x6f\x76\x15\xd0\x6f\ +\x91\x8e\x66\xca\xe0\x13\x35\x81\x41\xbf\x38\xff\x29\xb9\xaa\xbf\ +\xd6\x19\x11\x9c\xf0\xb9\x30\x9a\x13\xe9\x4c\x0d\x3a\x13\x84\xb2\ +\x6c\x9c\x9e\x4f\x9f\x5c\xe2\x18\x2c\x71\x65\xe2\x30\x1e\x5e\x63\ +\x9e\x28\x14\x04\xf7\x8e\x77\x2d\x14\xc1\x77\x0f\x85\xfb\xb5\xbc\ +\xe2\xbb\xaf\xac\x94\x5c\x8d\xc1\xc3\xb3\xcf\x13\xc5\x40\xa6\xe6\ +\x2b\x31\x78\xf8\xa1\xfd\x29\x1e\x31\xb3\xf1\x11\x93\xb6\x05\xc8\ +\x03\x38\xfa\xa2\x44\xe1\xd6\x72\xa1\x7d\xe1\xc0\x69\x90\xff\x0d\ +\x20\xd8\xef\x4b\xf3\x55\x80\xe0\xef\x1a\x90\xc9\xb1\x87\xa8\x4b\ +\x48\xd3\x3c\x6b\x5c\x82\xe0\x5b\x26\x8a\xc7\xf5\x89\xfe\x90\x76\ +\x65\x90\xd8\xff\x1b\x40\x94\xb2\xd7\x01\xf2\x58\x27\x8b\xee\x8d\ +\xdc\x04\x10\xdb\x74\xb0\xeb\x39\xc1\x7f\xf1\x6e\x43\x46\xc9\x28\ +\xd3\xbe\xd5\x48\xd0\x5d\x25\x66\x90\xf1\x1f\x9e\x4b\xaf\x7d\xbd\ +\x51\x8b\xf4\xf9\xc9\x17\x25\xf9\xc9\xe8\xc5\x43\xdf\x65\x9e\x5d\ +\x7d\x4f\xfc\xc5\x36\x29\x54\x6f\x97\x2e\xe0\xe6\x80\xa9\x07\x52\ +\xb2\xea\xca\x6b\x04\xf2\x3c\xdf\x01\x27\x81\xb6\x8f\x69\xe0\xb9\ +\x0b\x64\xfa\xc8\xc5\x01\xc2\xce\x88\xd8\x35\x1c\xed\x4f\x6d\xb8\ +\x7d\xbd\x85\x6b\x94\xeb\xd9\x0e\xf1\xbc\x76\xb6\xc0\xf5\x3c\xd8\ +\x36\x4c\x07\xe7\x7f\x9f\x10\xea\x3a\x74\x01\x8b\x7b\x8e\xe7\xc9\ +\xab\xd8\x1c\x31\xd5\xba\x0f\x58\xa4\xff\x92\x45\x7a\x8a\xfc\x8a\ +\xd5\x51\xa2\xe6\x0d\x1e\x98\xcf\x0b\x10\x02\xbf\x37\xce\x67\xa5\ +\x63\x22\x58\x96\x98\x36\xec\x16\xee\x21\x9e\x1b\x20\xdf\x6f\x4f\ +\x19\x9d\xc6\xb6\x0f\xca\x75\x8a\xe2\x85\xa1\xb4\x53\xad\x11\xed\ +\xf3\xd9\xdb\x58\x87\xda\x5f\x7a\x2b\x59\x5a\x9b\xdb\x9b\xa5\x7c\ +\x81\x7f\x7b\xf3\x2f\x9c\x31\x79\xe2\ +\x00\x00\x08\xf8\ +\x00\ +\x00\x56\xfd\x78\x9c\xe5\x5c\xcb\x8e\xeb\xb8\x11\xdd\xf7\x57\x28\ +\xbe\x9b\x04\x31\x65\x8a\x7a\x50\x52\xdb\x3d\x8b\xb9\x18\xcc\x00\ +\xc9\x26\x33\x49\x80\x6c\x06\xb4\x44\xdb\xc2\xd5\xc3\xa0\xe8\xb6\ +\x7d\xbf\x3e\x45\xbd\x6c\xd9\x9a\x20\x00\x65\x40\xb0\x05\x34\xba\ +\x55\x55\x24\x8b\x47\xc5\xe2\x11\xc5\xe6\xf2\x87\x53\x96\x1a\x9f\ +\x5c\x94\x49\x91\xaf\x66\x96\x89\x67\x06\xcf\xa3\x22\x4e\xf2\xed\ +\x6a\xf6\xcf\xdf\x7e\x42\xfe\xcc\x28\x25\xcb\x63\x96\x16\x39\x5f\ +\xcd\xf2\x62\xf6\xc3\xc7\xdb\xf2\x4f\x08\x19\x3f\x0a\xce\x24\x8f\ +\x8d\x63\x22\x77\xc6\x2f\xf9\xb7\x32\x62\x7b\x6e\xfc\x79\x27\xe5\ +\x3e\x5c\x2c\x8e\xc7\xa3\x99\x34\x42\xb3\x10\xdb\xc5\x5f\x0c\x84\ +\x3e\xde\xde\x96\xe5\xe7\xf6\xcd\x30\x0c\x68\x37\x2f\xc3\x38\x5a\ +\xcd\x9a\x02\xfb\x83\x48\x2b\xc3\x38\x5a\xf0\x94\x67\x3c\x97\xe5\ +\xc2\x32\xad\xc5\xec\x62\x1e\x5d\xcc\x23\xd5\x7a\xf2\xc9\xa3\x22\ +\xcb\x8a\xbc\xac\x4a\xe6\xe5\x97\x2b\x63\x11\x6f\x3a\x6b\xe5\xcd\ +\xd1\xae\x8c\xac\x20\x08\x16\x98\x2c\x08\x41\x60\x81\xca\x73\x2e\ +\xd9\x09\xf5\x8b\x82\x8f\x43\x45\x09\xc6\x78\x01\xba\x8b\xe5\xff\ +\x67\x15\x96\x00\xe8\x1e\x7e\x3a\xf3\x56\x60\x96\xc5\x41\x44\x7c\ +\x03\xe5\xb8\x99\x73\xb9\xf8\xfa\xdb\xd7\x4e\x89\xb0\x19\xcb\xf8\ +\xaa\x9a\x16\xcf\x5e\xab\x3d\x90\x73\x96\xf1\x72\xcf\x22\x5e\x2e\ +\x5a\x79\x55\xfe\x98\xc4\x72\xb7\x9a\xd9\x8e\x69\xd9\x70\xb9\x95\ +\x70\xc7\x93\xed\x4e\xde\x4a\x93\x78\x35\x03\xef\x49\xe0\xd7\xf7\ +\x57\xc1\x61\xd5\x06\x4d\xc5\x61\xa7\xc1\x66\x40\x4c\xcb\x10\x96\ +\x6b\xd3\xda\xa6\xed\x42\x18\x17\x91\xf2\x09\xaa\xe4\x59\xc2\x0e\ +\xb2\xc8\xe0\xa9\x45\x51\xca\xca\x32\xd9\x24\x11\xdc\x14\xf9\x3e\ +\x3d\x6c\x93\xfc\xf7\xbd\xe0\x9f\x09\x3f\xfe\x2e\x78\x5c\x98\x2d\ +\x7e\x5d\x63\xfc\xb4\x2f\x84\x44\xa7\x78\x0f\x28\x7a\x74\x50\x79\ +\x6e\x95\x1f\xa0\x5d\xc6\x7c\x53\x2a\xab\xba\x4b\xea\x0e\xfa\x44\ +\x67\xc6\xa2\xd2\x76\x1e\x2a\xf7\x62\xd5\xf0\xc5\x76\xcd\xca\x1a\ +\x36\xc3\xd8\xb3\x2d\x84\x58\x5a\x88\xd5\xec\xcb\xa6\xba\x1a\xc5\ +\xba\x10\x31\x17\xad\xca\xab\xae\x9e\xaa\x80\xc7\x90\xc8\x73\x3d\ +\xa8\x9a\xba\x5b\x7f\x55\xad\x9d\x1e\x0f\xeb\xcb\x1d\x8b\x8b\xe3\ +\x6a\x46\x6e\x95\xdf\x8b\x22\x5b\xcd\xa8\x19\x58\x3e\x76\x2c\x7a\ +\xab\x8e\x4e\xab\x19\xb2\x6d\x93\xd8\x98\xba\xf6\x9d\x56\x39\xe4\ +\x98\x36\xf5\x6d\x72\x57\x73\x74\x10\x02\x86\x1d\x4a\xd9\x99\x43\ +\xaf\xaa\x5f\x56\x63\x54\xee\x8a\xe3\x56\x28\x74\xa4\x38\xf0\xdb\ +\x92\x4a\x83\xd6\xeb\xe2\x34\xac\x86\x28\x38\xa8\x01\x8d\x0e\x79\ +\x22\x61\xd0\xec\x4f\xd7\xb5\x1e\x92\x98\x97\xc3\x05\xcb\x9c\xed\ +\xd1\x36\x2d\xd6\x2c\x1d\x36\x38\x26\x39\xa0\x84\x9a\xf8\xb6\xec\ +\xee\x21\xdc\x5a\xb4\xc1\x4e\xb1\xff\x07\x16\xe0\xfb\xdd\x83\x68\ +\x54\xe7\x3f\x56\x65\xec\x94\x64\xc9\x77\x0e\xc0\x58\x55\xdc\x41\ +\x6c\xf5\x60\xa9\x8b\x19\x86\x3c\xab\x81\x7b\x3a\x2b\xd9\xac\x15\ +\x2a\x3c\x95\x80\x04\x01\xed\x84\x85\x48\x60\x3c\x5c\xb9\xd3\x8a\ +\xce\xd7\x22\x35\xcc\x21\x4b\x9f\xaa\x00\xab\xc2\x8f\xde\xea\xce\ +\xd7\xba\x26\xee\x17\xf7\x81\x5f\xc9\x33\x2e\x59\xcc\x24\xbb\x8c\ +\x82\x56\x02\xbe\xe1\xb6\x67\x90\x31\xc3\x7f\x7c\xfd\xe9\xa3\x69\ +\x68\x19\x45\xe1\xbf\x0b\xf1\xad\x6d\xd7\x30\x94\x01\x5b\x17\x07\ +\x40\x7a\xf6\xd1\x89\x97\x71\x14\x42\x8e\x83\xb1\xff\x91\x64\x10\ +\xdb\x2a\x3d\xfe\x15\x72\xda\x72\x71\x51\xf4\x8c\x15\x58\x97\x4a\ +\xeb\x6a\x05\xaf\x93\xe5\xe0\x8c\x11\x47\x59\xa2\x0a\x2d\x7e\x95\ +\x49\x9a\xfe\xa2\x1a\x69\x7a\x7c\x55\x69\x22\x53\x7e\x11\x2e\x17\ +\x8d\xf7\x4d\xdf\x16\x57\x9d\x5b\x2e\xda\xde\x57\x77\xdb\x0b\x2a\ +\xbd\x41\xd1\x3d\xe8\x94\xad\x39\x44\xe8\xdf\x94\xd2\xb8\xd3\x6e\ +\x45\x71\xd8\x67\x45\xcc\x9b\xe2\x1d\x9a\x3c\x92\xdd\x23\x93\xe7\ +\x14\xf4\x1b\xf0\x3e\xfc\x82\x71\x14\x6d\x36\xef\xea\x06\x35\x79\ +\x22\xb4\xea\x5b\x71\x48\x21\xdf\x7d\xf2\xbc\x88\xe3\xf7\x52\x8a\ +\xe2\x1b\x0f\x9b\xcc\xd4\xdc\xd6\x83\x21\xc4\xed\x2d\x00\xc3\x45\ +\x0a\x41\x2a\x43\xa7\x95\xc5\x0c\xd2\x8b\x10\xec\x1c\xe6\x30\xad\ +\xb7\xd2\xae\xa9\x5e\x7c\x2a\x2f\x5d\xdf\x0e\x3a\x61\x33\xd8\x1c\ +\x93\x54\xa1\x75\x51\xb4\x63\xec\x5e\xd3\x0b\xe6\xf3\x90\x85\xe8\ +\x99\x88\x2a\x74\x1d\xa2\x2e\xbb\x7b\x90\xff\x0b\x30\xc6\x62\x67\ +\x62\x80\x21\x4b\x13\xb2\x7b\xe1\x43\xa0\xf3\x3c\x1f\x4f\x0e\x3a\ +\xe4\x6b\x82\xe7\x9b\xae\x22\x35\xb6\xff\x58\xf0\x1c\xc7\x75\xa7\ +\x07\x1e\xd6\x04\xcf\x22\xe6\x43\x71\xdb\x6c\x08\x23\x6c\x72\xb8\ +\xd9\xba\xb0\xd1\x7a\xba\x7d\x45\xec\x10\xd5\x04\x8f\x58\x66\x35\ +\x60\x9d\x57\x04\xcf\x47\xae\x2e\x7c\xae\xe9\xbd\x22\x72\x18\xe9\ +\x8e\x5a\x12\x98\x7e\x9f\x3f\xbf\x0e\x43\x41\x8e\x26\x78\x83\x1c\ +\x05\x8f\x06\xda\x44\xb9\x89\x36\xb5\x1b\x64\x27\xe3\xc1\x36\x51\ +\x56\xa2\x3d\x47\xdc\xf2\x92\xb1\x10\xdb\x6c\x82\x60\x82\x88\xd9\ +\xc8\xd3\x05\x6c\x88\x91\x3c\x39\x6a\x88\x22\xa2\x09\xdb\x20\x17\ +\x79\x76\xd8\x80\x83\x20\xdd\xb7\xfc\x5b\x16\x32\x5e\x4a\x9b\xe0\ +\x8a\x88\xf6\x3b\x6a\x6f\x4d\xa4\x97\xdb\x9e\x93\x6c\xf8\xba\x80\ +\x0d\xb2\x8d\x51\x81\x9b\x2a\xe1\xd0\x1d\x98\x83\x84\x63\x54\xe4\ +\xa6\xca\x39\xb4\xa7\xd0\x1b\xce\x31\x22\x68\x3e\x56\xd7\xe4\x40\ +\xb3\xb5\xe7\xcf\x41\xda\xf1\xfc\xc0\x01\xf3\xd0\x7e\x19\x1d\x62\ +\x1e\x2f\x80\x9c\x22\x1f\xba\xb3\xc3\x2d\xf9\x78\x01\xd8\x30\xb2\ +\xf5\x17\xde\x86\xd6\x3f\x46\x9d\x1a\xa6\xc8\xdd\xb0\xf6\xd2\x47\ +\x8f\xbd\xdd\xcf\xaf\xcf\x49\xe1\x1c\xed\xb9\x61\x90\xc3\x8d\x0f\ +\xdf\x54\x89\x9c\xa5\xbd\xd2\x3b\x48\xe5\xc6\x07\x70\xaa\x7c\x8e\ +\x6a\x73\xe1\x5b\x46\x37\x36\x76\xb1\x33\xc9\xc9\xc2\x46\xde\x63\ +\x88\xdd\x8b\xe0\xa7\xd6\x95\x1e\xf3\x95\xeb\x55\x00\xac\x56\x98\ +\xb4\x3f\x4e\xdf\xd2\xbc\x57\x41\x4f\x71\x3d\xa2\xfd\xe5\x61\x90\ +\xed\x8d\x0d\xa1\x9a\x7c\xa7\x07\x21\xd6\x7d\x39\xeb\x31\xbe\xfb\ +\x91\xfc\x8c\x98\x59\xda\xeb\x27\x83\x7c\xef\x55\xc0\xf3\xb5\x27\ +\x8c\x41\xb6\xf7\x2a\xf0\x61\xed\x35\x81\x5b\xae\x37\x36\x72\x18\ +\xc3\xa3\x99\x1e\x72\x30\x53\x68\x7f\x6b\x1d\xa2\x7a\xe3\xc3\xe7\ +\x38\x6c\x82\xbb\x4a\xa8\xfe\x7e\x9c\x21\xa2\x37\x36\x7c\x84\xd1\ +\xcd\xf4\x96\x56\x6a\xa2\xa7\xbd\x12\x7a\x43\xf3\xc6\xc6\xce\xa7\ +\x8c\xc5\x7c\x7a\xd8\x55\x4b\x7a\x0f\xd9\xd3\x34\x36\x82\x6a\x85\ +\x60\x7a\xb3\x86\xfe\x2e\x93\xfe\x67\xd9\xbb\x34\xf8\x8c\xa0\xa9\ +\x85\xbd\x87\x10\xbd\x57\x81\xaf\x5a\xd8\x7b\xc8\xca\xde\xab\x20\ +\xa8\x56\xf6\x74\x97\xe4\xef\xbe\xd5\x8e\x8c\xdd\x64\xd9\x9e\xa7\ +\xcd\x57\x86\x3f\xd9\x8e\x8e\xdf\x54\xe9\x1e\xd1\x4e\x7f\xc3\x5f\ +\x6e\x47\x06\x70\xca\x84\x2f\x18\x9d\xf2\x8d\x8d\xde\x94\x29\x1f\ +\xd1\x5f\x17\x1d\xfc\x8e\x3b\x32\x84\xeb\x28\xb6\xdd\x29\x06\xa0\ +\xfe\x9e\xec\xe1\x85\xaa\x3b\x50\x9f\x14\x3f\x18\xbe\x8f\x59\xaa\ +\x7a\x11\x00\x31\xcc\xc1\x63\x6f\x35\x1b\x1b\xbb\xc9\xd2\x17\xf2\ +\x18\xfa\x32\x3e\x7e\x53\xa5\x2f\xb6\x36\x75\x1e\x5e\xaf\x1a\x19\ +\xc0\x29\xd3\x97\xf1\xff\x05\x6f\x6c\xf4\x7c\x9f\xb1\xe9\xbd\xb9\ +\x61\xe4\x68\x4f\xbd\xfd\x0f\x6b\xd7\x30\x3e\x23\x62\xd5\x2e\x2a\ +\xed\xd9\x76\x98\xae\x3c\x3f\x76\xd5\x4a\x8b\x36\x59\x1e\xe6\x2a\ +\xcf\x8f\x5e\xb5\x7f\x4a\xfb\x45\xed\x8e\xa8\x8c\x07\xdc\x64\x39\ +\x8a\x37\xc2\x2b\xda\x30\x4b\x19\x13\xbc\xa9\x12\x14\xc8\x77\x8f\ +\xd9\x3b\x35\x22\x7a\x53\x66\x27\x6a\x9e\x1d\x7b\xe3\xd4\x98\xe9\ +\x6e\xd2\x2b\x2b\xd6\x63\x76\x4d\x8d\x87\xdf\x55\x9f\xd4\x20\xae\ +\xf6\x9f\xf5\xb0\x21\xa6\x45\x5d\x6c\x11\xdf\x1e\x13\x24\x12\x04\ +\x77\x7b\x69\x6d\x72\x87\xc8\x95\x68\xf0\xb8\xb1\xf3\x90\x50\xe1\ +\xe1\xc2\x78\xc5\xf6\xf5\x19\x0a\x60\x6a\x9b\x3e\x76\x7c\xea\xbb\ +\x17\x58\xf6\x4c\xee\x6e\x60\xa9\x4e\xd6\xeb\xb0\xd8\x14\xb9\x44\ +\x95\x06\x7a\x26\x32\x96\xd6\x92\x4f\x26\x12\x96\xcb\x9e\xec\x58\ +\x39\xdd\x13\x01\x0e\x5c\x46\xbb\xbe\x2c\xf9\xce\xc3\x8c\xc7\xc9\ +\x21\x7b\x4f\x93\x9c\x37\x07\xc4\xf5\x6c\x36\x2c\x4b\xd2\x73\xf8\ +\x2b\xcb\xcb\x77\xd4\x9e\xe6\x85\xea\xe2\x7b\x1e\x75\x07\x18\xd6\ +\x16\x92\x9f\x24\x58\xc5\x1c\x1c\xc2\xf5\x1d\x4b\x93\x6d\x1e\x96\ +\x92\x09\x59\x0b\x62\x1e\x15\xa2\x2e\x53\x3d\xa1\x1b\x21\x52\x9e\ +\xd4\x9a\x94\x4b\x78\xbe\xa8\x39\xc9\xad\x75\xeb\x58\x88\xf8\x56\ +\x56\xd5\x21\x05\xb8\xa0\x4e\x52\xab\x4b\x1f\x45\x22\xc1\x04\xa9\ +\x43\xc7\xc2\x54\x20\xb9\x7e\x8f\x13\xf5\xc4\x55\xcb\xa9\x14\xef\ +\xea\x88\xc3\xaa\xdb\xe5\x2e\xd9\xc8\xb0\xbd\x6d\xdc\xce\xa3\x1d\ +\x80\x5f\xfb\x1d\x27\xe5\x3e\x85\x88\x4a\xf2\xca\xa0\xf8\xe4\x62\ +\x93\x16\xc7\xf0\x33\x29\x93\x75\xca\xdf\xab\xdf\x49\xaa\x02\xac\ +\x15\xd5\x29\xa1\x19\xe2\x37\x29\xa1\x09\xf2\xeb\xf8\xac\x23\xdc\ +\x36\x9d\xea\x14\x4a\x87\xbc\x67\x4c\x7c\xe3\xa2\xb6\xe1\x39\x83\ +\x2a\xd1\x9a\x45\xdf\xd4\x31\x6a\x79\x1c\xb2\x28\x3a\x64\x87\x94\ +\x49\xde\x85\x15\x84\xf3\xdf\x0d\x7f\x1e\x98\x5e\x1d\x84\xc6\x8f\ +\x06\x44\x99\xe5\x60\x0b\xd3\xb9\xe5\x98\x3e\xf5\x68\xe0\x1a\x8e\ +\xe9\xd8\xc4\x0f\x40\x46\x88\xe9\x39\x0e\x0d\x1c\x23\x30\x9d\x39\ +\x69\x66\x65\x6a\xa8\xa3\x11\x3d\x6a\xe1\x60\x6e\xc3\xe8\xf5\x7d\ +\xd7\x31\x60\xd2\x09\x1c\x6a\x3b\xf6\xdc\xc6\x50\xa7\x1a\x83\x06\ +\xf1\xea\x13\x33\xc9\x5c\xa5\x00\x23\x82\x9a\x2d\xdf\x0d\x82\x39\ +\x72\x4d\x52\x9b\xd8\xa6\x0b\x15\x59\x73\x04\x54\x29\xa0\xbe\x45\ +\xa8\x81\xa0\x4a\xb8\xa7\xa6\x63\xa4\x86\x3d\x47\xa4\x4e\x29\xd0\ +\xec\xcf\x46\x4b\x0c\x3c\xe3\x5f\x86\x57\x1b\x98\x64\xde\x92\x54\ +\x83\x34\x3d\x9b\x23\xdb\xa4\xd0\x1e\x31\x6d\x1a\xd8\x98\xcc\xc1\ +\x8a\x52\x4a\x02\x30\xb7\xc0\x6f\xd7\x87\x32\x81\x8b\x21\x83\x19\ +\xb8\x2e\xec\xcc\xc1\x03\x52\xfd\x65\x40\x69\xec\x28\x4f\xa1\x1c\ +\xf5\x3d\x4c\x41\xe4\x9b\x84\x60\x6a\x79\x73\xc8\x7b\x56\x40\x09\ +\xb8\x69\x99\x34\x50\xd7\x1c\x46\x75\xdd\x3e\x14\x74\x69\x00\xd9\ +\xc7\x55\x1e\x58\xbe\x67\xfb\xd0\x1f\xa7\xae\xcd\x07\x21\xb4\x6a\ +\xd9\x01\x71\xa1\x74\xd5\x65\xf5\x08\xa0\x1e\xa2\x1a\xb7\xeb\xbf\ +\x3c\x33\x68\xba\x7b\xfd\xa4\xfe\xd3\x4b\x4a\x2a\x11\x90\xe0\xea\ +\xdf\x84\x2f\x67\x53\x16\x79\x0e\xf1\x5b\x08\x14\x1d\xc4\x27\x93\ +\x07\xc1\x7b\xa7\x21\x76\xa7\x1a\x42\xc4\xab\x83\x00\x4b\x48\x21\ +\x65\x19\x55\x97\xfa\xdd\x9d\x7f\xb8\xfd\x78\x5b\xaa\xf3\x07\x3f\ +\xde\xfe\x0b\xb7\x0d\x2e\x74\ +\x00\x00\x05\xe6\ \x00\ -\x00\x4e\xd5\x78\x9c\xe5\x9c\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ -\x54\xed\x25\x41\x4b\xbd\x6d\x3d\x62\x3b\x87\x06\x01\x02\xf4\xd4\ -\xa6\xe8\x31\x90\x25\xda\x16\x56\x12\x0d\x8a\x5e\xdb\xf9\xf5\x21\ -\xa9\x87\x2d\x5b\x0b\xa4\x25\x55\x68\x97\x0a\x82\x40\x33\x43\x8a\ -\xfc\x34\x43\x0e\x29\x3a\x8b\x8f\xa7\x22\xd7\x9e\x21\xae\x32\x54\ -\x2e\x75\xdb\xb0\x74\x0d\x96\x09\x4a\xb3\x72\xbb\xd4\xff\xfe\xfa\ -\x19\x04\xba\x56\x91\xb8\x4c\xe3\x1c\x95\x70\xa9\x97\x48\xff\xb8\ -\x7a\x58\xfc\x02\x80\xf6\x3b\x86\x31\x81\xa9\x76\xcc\xc8\x4e\xfb\ -\x52\x3e\x55\x49\xbc\x87\xda\xbb\x1d\x21\xfb\xc8\x34\x8f\xc7\xa3\ -\x91\x35\x42\x03\xe1\xad\xf9\x5e\x03\x60\xf5\xf0\xb0\xa8\x9e\xb7\ -\x0f\x9a\xa6\xd1\xe7\x96\x55\x94\x26\x4b\xbd\x29\xb0\x3f\xe0\x9c\ -\x1b\xa6\x89\x09\x73\x58\xc0\x92\x54\xa6\x6d\xd8\xa6\x7e\x31\x4f\ -\x2e\xe6\x09\x7b\x7a\xf6\x0c\x13\x54\x14\xa8\xac\x78\xc9\xb2\x7a\ -\xbc\x32\xc6\xe9\xa6\xb3\x66\xad\x39\xba\xdc\xc8\x0e\xc3\xd0\xb4\ -\x1c\xd3\x71\x00\xb5\x00\xd5\xb9\x24\xf1\x09\xf4\x8b\xd2\x36\x0e\ -\x15\x75\x2c\xcb\x32\xa9\xee\x62\xf9\x73\x56\x51\x45\x81\xee\xe9\ -\xdf\xce\xbc\x15\x18\x15\x3a\xe0\x04\x6e\x68\x39\x68\x94\x90\x98\ -\x9f\xbe\x7e\xea\x94\xc0\x32\x52\x92\x5e\x55\xd3\xf2\xec\x3d\xb5\ -\x07\xb9\x8c\x0b\x58\xed\xe3\x04\x56\x66\x2b\xe7\xe5\x8f\x59\x4a\ -\x76\x4b\xdd\xf5\x0c\xdb\xa5\xd7\x8c\x0b\x77\x30\xdb\xee\xc8\xad\ -\x34\x4b\x97\x3a\x6d\xbd\x13\x06\xf5\xfd\x95\x73\xd8\xb5\x41\x53\ -\x71\xd4\x69\x2c\x23\x74\x0c\x5b\xc3\xf6\xcc\xf5\x6b\x9b\xb6\x0b\ -\x51\x8a\x12\xd6\x26\x5a\x25\x2c\xb2\xf8\x40\x50\x41\xdf\x5a\x92\ -\xe4\x71\x55\x65\x9b\x2c\xa1\x37\xa8\xdc\xe7\x87\x6d\x56\x7e\xeb\ -\x0b\xbf\x41\x8c\x58\xed\x46\x4b\xb2\x7b\x2c\x3c\xed\x11\x26\xe0\ -\x94\xee\x29\xcf\xb9\x3f\xa8\x3c\xb7\xca\x15\xd5\x2e\x52\xb8\xa9\ -\x98\x55\xdd\x39\x76\x47\x7b\xe7\xeb\x9a\xc9\xb5\x5d\x5b\x59\x43\ -\xd3\xe7\x0c\x1e\x2f\xb6\xeb\xb8\xaa\x01\x6a\xda\x3e\xde\x52\x67\ -\xcb\x11\x5e\xea\x8f\x1b\x7e\x35\x8a\x35\xc2\x29\xc4\xad\x6a\xce\ -\xaf\x9e\x0a\xd1\x17\x92\x91\x73\x1d\x5e\x4d\xdd\x6d\x7b\x59\xad\ -\x9d\xde\x1a\xd6\x57\xbb\x38\x45\xc7\xa5\xee\xdc\x2a\xbf\x23\x54\ -\x2c\xf5\x99\x31\x0b\x83\xd0\xb2\x6f\xb5\xc9\x69\xa9\x03\xdf\x35\ -\x7c\xdf\x0d\x6c\xf7\x4e\x4b\x9f\xe7\xd0\x06\xb9\xbe\x17\xdc\x2b\ -\x0f\x18\xd3\xf8\x03\x79\x7c\x86\xb4\x53\xfc\x9f\xb6\xfe\x6a\x87\ -\x8e\x5b\xcc\xe0\x10\x7c\x80\xb7\x25\x99\x06\xac\xd7\xe8\x34\xac\ -\xa6\xee\x70\x60\x91\x0d\x0e\x65\x46\x68\xf4\xec\x4f\xd7\xb5\x1e\ -\xb2\x14\x56\xc3\x05\xab\x32\xde\x83\x6d\x8e\xd6\x71\x3e\x6c\x70\ -\xcc\x4a\x0a\x09\x34\x8e\x6e\xbb\xdd\x3b\xb8\xb5\x68\xbd\xde\xb7\ -\x82\x17\x2c\x68\xdb\xef\xde\x43\xa3\x3a\xbf\xac\x2a\xe2\x53\x56\ -\x64\xdf\x21\x05\x63\x73\xb7\xa3\xae\xd5\xc3\x52\x17\xd3\x34\x72\ -\x66\x11\x7c\x3a\x33\x99\xde\x0a\x19\x4f\x26\x70\xc2\xd0\xef\x84\ -\x08\x67\x34\x30\xae\x9a\xd3\x8a\xce\xd7\x22\x16\xef\x74\xb8\x3e\ -\x71\xff\xe2\xde\xe7\xdf\xea\xce\xd7\xba\xc6\xed\xcd\x7b\xbf\xe7\ -\xf2\x02\x92\x38\x8d\x49\x7c\x09\x82\x56\x42\xdb\x66\xb5\x3d\xa3\ -\x43\x67\xf4\xe7\xa7\xcf\xab\xe6\x41\x8b\x24\x89\xfe\x41\xf8\xa9\ -\x7d\xae\xa6\x31\x83\x78\x8d\x0e\x94\xb4\xbe\xea\xc4\x8b\x34\x89\ -\xe8\x60\x47\x07\x81\x55\x56\x50\xd7\x66\xe3\xe4\xaf\x74\x70\x5b\ -\x98\x17\x45\xcf\x98\xc1\xba\x54\x5a\x57\x8b\x61\x3d\x6a\x0e\x4e\ -\x1d\x69\x52\x64\xac\x90\xf9\x17\xc9\xf2\xfc\x0b\x7b\x48\xd3\xe3\ -\xab\x4a\x33\x92\xc3\x8b\x70\x61\x36\xad\x6f\xfa\x66\x5e\x75\x6e\ -\x61\xb6\xbd\xe7\x77\xdb\x0b\x95\x5e\x50\x74\x2f\x3a\x8f\xd7\x90\ -\x7a\xe8\x1f\x4c\xa9\xdd\x69\xb7\x18\x1d\xf6\x05\x4a\x61\x53\xbc\ -\xa3\x09\x13\xd2\xbd\x32\x72\xce\xa9\x7e\x43\x5b\x1f\x3d\xae\x5d\ -\xf6\xe7\x03\xbb\x01\xcd\x30\x11\xd9\xf5\x2d\x3e\xe4\x74\xb8\x7b\ -\x86\x25\x4a\xd3\x0f\x15\xc1\xe8\x09\x46\x8f\x16\xbf\x9a\xdb\x3a\ -\x18\x22\xcb\xf0\xdc\xd0\x63\xef\xbe\x95\x53\x42\x10\xe7\xd4\x5b\ -\x49\xe4\xb5\xb2\x34\xa6\xc3\x0c\xc6\xf1\x39\x2a\xe9\x44\xdf\x4a\ -\xbb\x67\xf6\x1c\x95\x35\x77\x16\xb8\x21\xb0\x41\x00\x2e\xaa\x26\ -\xf6\x66\x86\xeb\x5e\xa6\x13\x76\xb5\x21\xe7\x19\x21\xd7\x78\x9d\ -\x86\x39\xad\x65\xdc\x38\x2d\xf5\x56\x70\xef\xca\xb8\x17\x07\x98\ -\xbb\xf4\xdc\x63\xd7\xbc\x7b\xc1\x2f\x83\xb4\xac\xcd\x86\x82\x99\ -\x32\xc8\x70\x0c\x90\x36\x1d\xff\xfb\x96\x6f\x9e\xa3\x0d\x66\x63\ -\x90\x0c\x8c\x80\xf7\xc5\x51\x87\xa4\x3f\x06\x47\xc7\x35\xe6\xea\ -\x20\xa4\xce\x38\x8a\x37\xda\x81\xd1\xcb\x34\x45\x51\xbe\x82\x89\ -\x26\x1c\xc7\x1f\x5d\xd7\xf0\x64\xce\x34\xd3\x26\x29\x48\xd0\xea\ -\x91\x33\x02\xb5\x7c\xd0\x13\xa4\x77\x6f\x3e\x46\xaa\x33\x71\x8c\ -\x81\x4c\x17\x94\x9d\xde\x4c\x9c\x9d\x25\xec\x82\x3d\x7a\xb2\x53\ -\x9a\xa9\xd3\x73\x65\xc2\x93\x98\xc7\x4c\x9d\x9b\xf0\xc4\xdb\x8f\ -\x59\xe5\x52\x17\xf1\x45\xf2\xe0\xcc\xa1\x56\xe6\xc2\x06\x3f\x61\ -\x8e\xfd\x08\x0e\x8c\x19\x37\x51\x88\x9f\xdc\x09\x44\x45\x0f\x04\ -\x8e\x4c\x82\xaa\x65\x7f\x6c\x21\xe7\x89\xfa\xa0\x33\xbf\x9d\x41\ -\xf8\x6a\xc4\x77\x15\x8a\xe6\x7a\x73\x41\x74\x62\x1e\x24\x49\x7d\ -\x52\x91\x8c\xb0\xd9\xa1\x11\xde\x30\x1c\xc4\x18\xdc\x6e\x36\xbc\ -\x79\x94\x21\xf0\x85\x47\xc7\xe1\xd8\x76\xeb\x4a\x94\x71\x4b\x0f\ -\x38\xa2\xeb\x64\xc7\x36\x6e\x84\x72\x43\x7b\xe2\x9b\xaf\x01\x10\ -\x5d\xed\xd9\x3d\x17\xb4\x95\xd9\xb6\xe6\x59\x8e\x27\xea\x7e\xf6\ -\x98\x63\xe1\xd4\x09\xba\xe2\x5b\xd5\x3d\x7c\x8e\xe4\x3c\x7b\xe2\ -\xfc\x6c\x30\x17\x9f\x92\x87\x86\x3f\xc5\x38\x5a\x74\x3e\x96\x1b\ -\xc7\xb6\xe4\x25\xf3\xc4\x01\xb2\x89\x78\x0e\x5c\xd1\x5d\x87\x41\ -\x5f\x94\x8d\x72\xf2\x39\x0d\xdb\x06\x03\xa1\x35\x06\x4b\xc5\xf2\ -\xc3\x66\x27\x47\xfc\x9c\x83\xca\x49\x76\xb3\x99\x03\xc2\xb9\x54\ -\x8a\x6a\x2d\x9e\x3d\x4f\x78\xc1\x77\xe5\x6f\xca\xee\xe2\x00\x51\ -\x1f\xec\x43\x54\xcb\x07\x59\x28\x8b\x66\x39\x7d\x7e\x12\xd7\x7a\ -\xaf\x80\x1f\xdf\x00\x13\xfe\xb2\xd2\x27\xa8\xde\xde\x97\x4f\xa7\ -\x12\xd1\x45\x5f\x9f\xa1\xec\xc5\xca\x2b\x80\xc8\x4e\xcb\x01\x6b\ -\x2e\x79\x4e\x91\x97\x69\xf7\xb1\xbd\x0a\xa4\x7c\x4f\x56\x78\x2f\ -\x0c\xb8\xfe\x6d\x72\xf8\xaf\x33\xc6\x56\x4a\x70\x5c\x56\xec\xac\ -\xff\x52\xaf\x92\x38\x87\xef\x80\xfd\x9b\xfd\xfe\xcd\x38\x30\x4f\ -\x2c\x45\xbf\x70\xdd\x8c\x04\x81\x21\xef\xfc\x36\x67\xf2\xd3\x0c\ -\xeb\x5f\x3a\xfd\x9f\x0c\x45\xb3\xf1\xc1\x33\x9e\x92\x4f\x2a\x4e\ -\x9f\x62\xed\x89\x63\xb0\x94\x7d\x6a\x62\xea\x2c\x05\x19\x0e\x9f\ -\xdc\x51\xce\x1f\x45\xc3\x7a\x10\xa3\xfc\x1f\xb7\x4c\x1c\xa3\xf8\ -\x6a\x7b\x90\xa3\xfc\x9f\xb6\x4c\x9c\xa3\xe8\x72\x7b\x90\xa2\xd4\ -\x1f\xb6\x4c\x1c\xa0\x37\x0e\x42\xd9\x47\x43\x5f\x01\x47\xf1\x55\ -\xe3\xb0\x33\x2a\x36\x4b\xd7\xfb\x40\x82\x24\x07\xcf\x9e\x48\xfd\ -\xf0\x3f\x79\x88\xcd\x0a\x7c\x14\x90\xea\xb9\x64\xb3\x1c\x1c\x83\ -\xa6\x3a\x6b\x42\xb9\x47\x29\x64\x7f\x60\x98\x38\x3c\xf1\xe3\xca\ -\xc3\x1f\x5c\x55\xa3\x18\x88\x9f\x27\x1b\x3e\x05\xa0\xd0\xec\xc2\ -\x92\x9d\x51\x4e\x35\x4a\x3f\x5d\x36\x69\x90\xf5\x87\xeb\x40\xee\ -\xf1\x46\x75\xa6\x93\x26\xe9\x16\xde\xd8\x19\x3e\x60\xa6\x10\xc6\ -\x60\xac\xd3\xde\xff\xe5\xc3\xd7\xc2\xdc\xae\x1e\x16\xec\xbf\x13\ -\x5a\x3d\xfc\x00\x35\xeb\x83\x36\ -\x00\x00\x05\xc2\ +\x00\x1e\xf2\x78\x9c\xdd\x59\xdd\x93\x9b\x36\x10\x7f\xbf\xbf\x42\ +\x25\x2f\xed\xd4\x7c\x7f\x13\xdb\x79\x48\xa6\x93\xcc\xb4\x2f\x6d\ +\xda\x3e\x66\x30\xc8\x36\x0d\x20\x57\x88\xb3\x9d\xbf\xbe\x2b\x40\ +\x02\x0c\x9e\xb9\xd4\x97\xe4\x2e\xcc\xdc\x1c\xda\x5d\x49\xbb\x3f\ +\xed\xae\x96\xf5\xf2\xd5\xa9\xc8\xd1\x3d\xa6\x55\x46\xca\x95\x62\ +\x6a\x86\x82\x70\x99\x90\x34\x2b\x77\x2b\xe5\xcf\xf7\xbf\xa8\x81\ +\x82\x2a\x16\x97\x69\x9c\x93\x12\xaf\x94\x92\x28\xaf\xd6\x77\xcb\ +\x1f\x54\x15\xbd\xa6\x38\x66\x38\x45\xc7\x8c\xed\xd1\xbb\xf2\x63\ +\x95\xc4\x07\x8c\x7e\xdc\x33\x76\x88\x74\xfd\x78\x3c\x6a\x59\x47\ +\xd4\x08\xdd\xe9\x3f\x21\x55\x5d\xdf\xdd\x2d\xab\xfb\xdd\x1d\x42\ +\x08\xf6\x2d\xab\x28\x4d\x56\x4a\x37\xe1\x50\xd3\xbc\x11\x4c\x13\ +\x1d\xe7\xb8\xc0\x25\xab\x74\x53\x33\x75\xa5\x17\x4f\x7a\xf1\x84\ +\xef\x9e\xdd\xe3\x84\x14\x05\x29\xab\x66\x66\x59\xbd\x18\x08\xd3\ +\x74\x2b\xa5\xb9\x36\x47\xbb\x11\x32\xc3\x30\xd4\x0d\x4b\xb7\x2c\ +\x15\x24\xd4\xea\x5c\xb2\xf8\xa4\x8e\xa7\x82\x8e\x73\x53\x2d\xc3\ +\x30\x74\xe0\xf5\x92\x0f\x93\x8a\x2a\x00\xf4\x00\x7f\x52\x5c\x10\ +\xb4\x8a\xd4\x34\xc1\x5b\x98\x87\xb5\x12\x33\xfd\xcd\xfb\x37\x92\ +\xa9\x1a\x5a\xca\xd2\xc1\x32\x02\xcf\xd1\xae\x23\x90\xcb\xb8\xc0\ +\xd5\x21\x4e\x70\xa5\x0b\x7a\x33\xff\x98\xa5\x6c\xbf\x52\x6c\x47\ +\x33\x6d\x78\xdc\x86\xb8\xc7\xd9\x6e\xcf\x2e\xa9\x59\xba\x52\x40\ +\x7b\x2b\x0c\xda\xf1\xc0\x39\xcc\x56\xa0\x5b\x38\x92\x1c\x43\x0b\ +\x2d\xcd\x44\xd4\x74\x6d\xbf\x95\x11\x26\x44\x29\x49\xb8\x4e\xb0\ +\x24\x2e\xb2\xb8\x66\xa4\x80\x53\x4b\x92\x3c\xae\xaa\x6c\x9b\x25\ +\x30\x20\xe5\x21\xaf\x77\x59\xf9\x21\x4e\xd3\x0f\x55\xb6\x2b\x3f\ +\x30\x42\x72\x4d\x00\x28\x77\xc3\xa7\x03\xa1\x4c\x3d\xa5\x07\x80\ +\xd1\xf3\x67\x99\x67\xc1\x5c\x03\x77\x99\xe2\x6d\xc5\xa5\x5a\x9b\ +\xf8\x08\x8c\xf2\x15\xa4\x37\x5c\xa9\x22\xd7\x2f\xbd\xcf\xf0\xb1\ +\x97\xdd\xc4\x55\x8b\x1b\x42\x87\x78\x07\x3e\x96\x13\xba\x52\x5e\ +\x6c\x9b\xa7\x63\x6c\x08\x4d\x31\x15\x2c\xaf\x79\x46\x2c\x02\xe7\ +\x90\xb1\x73\x1b\x55\xdd\xda\x42\x5f\xbe\xaa\xe4\x1b\xf3\xfc\x6a\ +\x1f\xa7\xe4\xb8\x52\xac\x4b\xe6\x27\x42\x0a\x58\x15\xce\x23\xf4\ +\x03\x63\xc2\x4e\x4e\x2b\xc5\xd1\x02\x2b\x70\x5d\xc7\x99\x30\x61\ +\x3f\xcb\xd6\x3c\xcf\x70\x4d\x6f\xc2\xac\x29\x85\xb0\x53\xf3\xf8\ +\x8c\xc1\xa8\xe6\x9f\xd9\x09\x55\x7b\x72\xdc\x51\x0e\x0e\xa3\x35\ +\xbe\x9c\xc9\x39\xea\x66\x43\x4e\xf3\x6c\xf0\x82\x9a\x07\xb4\x5a\ +\x97\x19\x83\xa0\x39\x9c\x86\xab\xd6\x59\x8a\xab\xf9\x89\xc7\xac\ +\x04\x0c\xd4\xce\x7d\x4d\xdb\x9b\xe8\xdc\x49\x08\x5f\xf6\x8d\xe0\ +\x8a\x04\xa8\x36\x81\xb9\x63\x9d\xaf\xb3\x8a\xf8\x94\x15\xd9\x27\ +\x0c\x76\x9b\x97\x22\x55\x19\x1f\xd4\x5d\x4e\x36\x71\xde\x69\xbf\ +\x6e\x24\x96\x23\x58\xda\x49\x08\xb1\x33\x0f\xdc\xd3\x99\xd3\x14\ +\x41\xe4\x78\x72\x82\xed\x7b\xae\x24\x12\x9a\x41\x3c\x0c\xf4\x15\ +\xa4\xf3\x90\xc4\xc3\x1c\xb2\xf4\xa9\xf1\xaf\xc6\xfb\xfc\x4b\xde\ +\x79\xc8\xeb\xdc\x5e\x9f\xfa\x7d\x43\x2f\x30\x8b\xd3\x98\xc5\x7d\ +\x10\x08\x8a\x15\x86\x86\xb0\x0c\x32\x66\xf4\xfb\x9b\x5f\xd6\xdd\ +\x46\xcb\x24\x89\xfe\x26\xf4\xa3\xd8\x17\x21\x2e\x10\x6f\x48\x0d\ +\x47\xa1\xac\x25\x79\x99\x26\x11\xe4\x38\x88\xfd\x75\x56\x80\x6b\ +\xf3\xf4\xf8\x33\xe4\xb4\xa5\xde\x33\x46\xc2\x1c\xac\x7e\xd1\x76\ +\x59\x8a\xdb\x64\x39\x7b\x63\xa4\x49\x91\xf1\x49\xfa\x1f\x2c\xcb\ +\xf3\x77\x7c\x93\xce\xe2\xc1\xa2\x19\xcb\x71\x4f\x5c\xea\x9d\xf6\ +\x9d\x6d\xfa\xc0\xb8\xa5\x2e\xac\x6f\x46\xbb\x1e\x95\x51\x50\xc8\ +\x83\xce\xe3\x0d\x06\x27\xf8\x95\x33\xd1\x84\xbb\xa3\xa4\x3e\x14\ +\x24\xc5\xdd\x74\x89\x26\x4e\x98\x3c\x32\x76\xce\x81\xbf\x05\xed\ +\xa3\x2e\xd1\xbc\xe4\x03\xb5\x4b\x13\x91\xd9\x0e\x69\x9d\x43\xba\ +\xbb\xc7\x25\x49\xd3\x97\x15\xa3\xe4\x23\x8e\x5e\x18\x86\x13\x18\ +\x46\x37\x6c\xa3\x25\x92\xc3\x3c\x2b\x31\xa8\x11\x55\xff\xd6\x31\ +\xc5\x43\xea\x3f\x24\x2b\x23\xc0\x0d\x53\x41\x6d\x06\x39\x78\x3c\ +\x8b\x1c\x41\x4b\x63\xc8\x44\x94\xc6\xe7\xa8\x84\x12\x60\x48\x25\ +\xdb\x6d\x85\x59\xbf\x93\x50\xd5\xd0\xec\xee\x19\x39\x3a\x37\xd7\ +\x0e\x43\x53\x12\x67\x6f\x25\xfe\xcc\xdf\x4c\xfc\x19\x45\x05\xf8\ +\x77\xa8\x39\xbe\x1d\x1a\xb6\x87\x55\x99\xcf\xc0\x5d\x46\x62\x14\ +\xe4\x6c\xcd\x86\xdb\xc9\x0b\x03\xe9\x15\xcb\x43\xcc\xf6\x73\xe8\ +\x0f\xac\xe4\xc8\xf2\x67\x8c\xac\xd5\x2a\x65\x3b\xce\x25\xc4\x9b\ +\x9a\xb1\xc7\x02\x58\x9e\xbb\xb4\x03\x20\xfc\x0d\x19\x0b\x03\xfd\ +\x85\x04\x30\x63\x80\xb9\x45\x10\xad\x3d\x0e\x7d\x66\x27\x25\x68\ +\xc8\x08\x55\x21\xc7\xdf\xc7\xac\xa6\x78\x94\x4b\x64\x4e\x00\x27\ +\xe5\x61\x04\xe9\x38\x49\x9e\x3b\x54\x12\xa4\x85\x7c\x43\x6f\x91\ +\x31\x07\x59\xf0\x74\x20\x33\x35\x38\x41\xc3\x72\x83\xc3\xe9\xf3\ +\x31\xbb\x82\x84\xbc\x05\x16\x56\xa0\x05\xe8\x35\xb2\x35\xab\x7d\ +\x9d\xbc\x4c\xd0\xb1\x7d\xdf\x52\x8d\x07\xe3\xf3\x28\x3e\x63\xfa\ +\xae\x63\xba\xee\xa3\x21\x50\x20\x57\xa4\xa4\x85\xed\x6a\x16\x4a\ +\x20\x8e\x54\x47\xb3\x1a\x50\xae\xbd\x4f\xa1\x08\x9c\x2f\x07\x44\ +\x80\xa7\x9e\xd0\x9d\x9a\xf5\x45\x5c\xc1\xb4\xb5\xa0\xb5\xb9\x33\ +\x98\xd3\x2c\x70\x05\xd3\xd0\xba\xa1\x64\x20\xd3\x5b\x80\x87\xa0\ +\x5c\x02\xb9\x08\x35\x4f\x0c\x9c\x85\x88\x73\xe4\x6b\x4e\x33\x63\ +\x21\x01\x0d\x34\xb7\x95\x81\xf9\x13\x44\x1d\xc3\xf6\xbf\x22\xa2\ +\x70\xf4\x8d\x56\xa1\xfd\x35\xd2\xd1\xcc\x35\xf8\x44\x8f\x40\xb5\ +\x3f\x3b\xff\x49\x39\x46\xe3\xb2\xe2\x35\x9c\x9a\x40\x85\x8f\xa9\ +\xda\x54\xa4\x33\x77\xd0\x44\x10\xae\x65\xf5\xb2\x3e\x7d\x72\x89\ +\xa3\x3f\x89\x1b\x13\x87\xfa\xf0\x3b\xe6\x89\x42\x61\x99\xc2\xf1\ +\x6e\x85\x22\x7c\xf6\x50\x78\x8f\xe5\x15\xcf\xfe\x66\xb5\xad\x9b\ +\x31\x78\x78\xf6\x79\xa2\x18\xf0\xd4\x7c\x23\x06\x0f\x2f\xda\x9f\ +\x62\x89\x59\x0c\x4b\x4c\xbb\xbd\x80\x7c\x80\x43\x5c\x4a\x36\x7c\ +\xb5\x5c\x79\xbf\x52\x70\xaa\xd6\x77\x03\x88\x19\x88\xab\xf9\x26\ +\x40\xcc\x67\x0d\xc8\xa8\xec\xb1\xe4\x47\x48\xf3\x3a\x79\xb9\x06\ +\xc1\xd7\x4c\x14\x5f\xd6\x27\x44\x91\x76\x63\x90\x38\xdf\x0d\x20\ +\xd2\xd8\xdb\x00\xf9\x1f\x95\xc5\x4c\x17\x6e\xdc\x73\xe3\x70\xb8\ +\x6e\xea\x3c\xbc\x1f\xd7\xf5\xef\x2e\xe0\xf3\x5a\x54\xad\x6f\xd7\ +\x98\x33\x47\xb0\x35\xfd\x38\xc3\xec\xb1\xec\xfa\x71\xa2\xce\xeb\ +\x9d\x4b\xf4\xe3\xa6\x1c\x5e\xec\x8b\x0a\x79\xd8\x97\x1b\x45\x31\ +\x6f\xc0\x39\x70\xd2\xb6\x13\x5a\xf6\x67\x7a\xe2\x1c\x94\x8e\xe6\ +\x9a\x9e\xef\x86\xdf\xa2\xa9\x24\x3f\xd9\x06\xf7\xdc\x5b\x74\xa5\ +\x73\x12\x3c\xfc\x12\xbb\xb5\xaf\x34\x06\x6a\x1e\x37\xf1\xe1\xe8\ +\x84\xdf\x00\xb8\xfe\xeb\xc1\xf4\x78\x07\xd3\xd0\xc2\xf9\x0e\xa6\ +\x6d\x38\xee\xe3\xc2\xb6\xd4\x77\xeb\xbb\x25\xff\xd1\x61\x7d\xf7\ +\x1f\x25\xc2\x15\x46\ +\x00\x00\x06\x77\ \x00\ -\x00\x16\xb0\x78\x9c\xed\x58\x59\x8f\xdb\x36\x10\x7e\xdf\x5f\xa1\ -\x6a\x51\xf4\x82\x6e\xcb\xb6\xb4\xb6\x03\xb4\x41\x80\x00\x7d\x6a\ -\x52\xf4\x31\xa0\x45\xca\x66\x57\x22\x55\x92\xf2\x91\x5f\xdf\x21\ -\x75\xdb\xde\x74\xdb\x34\x2d\x10\x44\xc6\x42\xcb\x39\xc8\x99\x6f\ -\x0e\x92\x5a\xbd\x38\x95\x85\x75\x20\x42\x52\xce\xd6\x76\xe0\xfa\ -\xb6\x45\x58\xc6\x31\x65\xbb\xb5\xfd\xeb\xdb\x57\xce\xd2\xb6\xa4\ -\x42\x0c\xa3\x82\x33\xb2\xb6\x19\xb7\x5f\x6c\xee\x56\x5f\x39\x8e\ -\xf5\x93\x20\x48\x11\x6c\x1d\xa9\xda\x5b\xaf\xd9\xa3\xcc\x50\x45\ -\xac\x6f\xf7\x4a\x55\xa9\xe7\x1d\x8f\x47\x97\xb6\x44\x97\x8b\x9d\ -\xf7\x9d\xe5\x38\x9b\xbb\xbb\x95\x3c\xec\xee\x2c\xcb\x82\x75\x99\ -\x4c\x71\xb6\xb6\x5b\x85\xaa\x16\x85\x11\xc4\x99\x47\x0a\x52\x12\ -\xa6\xa4\x17\xb8\x81\x67\x0f\xe2\xd9\x20\x9e\xe9\xd5\xe9\x81\x64\ -\xbc\x2c\x39\x93\x46\x93\xc9\xfb\x91\xb0\xc0\x79\x2f\xad\xad\x39\ -\x46\x46\x28\x48\x92\xc4\xf3\x43\x2f\x0c\x1d\x90\x70\xe4\x99\x29\ -\x74\x72\xa6\xaa\x60\xe3\x2d\xd5\xd0\xf7\x7d\x0f\x78\x83\xe4\xf3\ -\xa4\x52\x09\x80\x56\xf0\xd7\x8b\x77\x04\x57\xf2\x5a\x64\x24\x07\ -\x3d\xe2\x32\xa2\xbc\x97\x6f\x5f\xf6\x4c\xc7\x77\xb1\xc2\xa3\x69\ -\x3a\x3c\x27\xab\x4e\x40\x66\xa8\x24\xb2\x42\x19\x91\x5e\x47\x37\ -\xfa\x47\x8a\xd5\x7e\x6d\x47\x33\x37\x88\xe0\x89\x0d\x71\x4f\xe8\ -\x6e\xaf\x2e\xa9\x14\xaf\x6d\xb0\x3e\x4c\x96\xcd\x78\x94\x1c\x41\ -\x23\xd0\x4e\x9c\xf6\x1c\xdf\x4d\x42\x37\xb0\x44\x10\x47\x8b\x46\ -\xa6\x73\x21\xc5\x3c\xd3\x36\xc1\x94\xa4\xa4\xa8\x56\xbc\x84\xa8\ -\x65\x59\x81\xa4\xa4\x39\xcd\x60\xc0\x59\x55\xd4\x3b\xca\xde\x6d\ -\x21\xcb\x32\x54\x64\xef\x14\xe7\x85\xdb\x01\xd8\xaf\x46\x4e\x15\ -\x17\xca\x39\xe1\x0a\x60\x9c\x2f\x6e\x32\xcf\x1d\x73\x03\xdc\x15\ -\x26\xb9\xd4\x52\x8d\x4f\x7a\x04\x4e\x2d\x6c\xcb\x33\xdc\xde\x44\ -\x6d\x1f\x3e\x50\x72\x1c\x64\xb7\x48\x36\xb8\x59\x56\x85\x76\x90\ -\x63\x05\x17\x6b\xfb\x3e\x37\x4f\xcb\xd8\x72\x81\x89\xe8\x58\x73\ -\xf3\x4c\x58\x1c\xe2\x40\xd5\xb9\xa9\xaa\x76\xee\xce\x5e\x3d\x6b\ -\xcf\xf7\x6f\xf3\xe5\x1e\x61\x7e\x5c\xdb\xe1\x25\xf3\x3d\xe7\xa5\ -\x9e\x35\x4a\x92\x45\x18\x47\x97\xec\xec\xb4\xb6\x9d\x70\xb1\x70\ -\x83\x65\x32\xbf\x52\xce\x60\xc1\x38\x72\x63\x3f\x48\x82\xd9\x15\ -\xb3\x16\x02\xea\xce\x29\xd0\x99\x80\x57\xe6\x15\xb4\x42\x72\xcf\ -\x8f\x3b\xa1\xd1\x51\xa2\x26\x97\x9a\x9a\xe3\x6c\xb7\xfc\x74\x9b\ -\x0d\x69\x50\xeb\x8a\x76\x6a\x46\x15\x54\x4d\x75\x1a\xcf\x5a\x53\ -\x4c\xe4\x6d\x45\xc9\x50\xe5\xec\x0a\xbe\x45\xc5\x6d\x81\x23\x65\ -\x80\x92\xd3\x26\x78\x10\xf5\x41\xb8\x94\xe8\xb2\x7d\xe1\x2f\x9f\ -\x90\x00\xdb\xaf\x02\xd1\xb2\xce\x4f\xb3\x4a\x74\xa2\x25\x7d\x4f\ -\x00\x98\xe0\x0a\x15\xed\xd9\x18\x96\x8d\x11\x58\x4d\x60\x6b\x74\ -\x2c\x4b\x9d\x75\x65\x9f\xce\x9a\x66\x77\x44\x8d\xb7\x26\x84\x10\ -\xeb\x9e\xc8\x05\x85\x82\x19\x99\xdb\x91\xce\x63\x92\xee\x03\xd0\ -\xc6\x4f\x26\x01\x4d\x7a\x2e\x2e\x79\xe7\x31\xaf\xad\x0b\xef\xba\ -\x30\x0c\xbd\x24\x0a\x61\xa4\xd0\x50\x25\x1d\x05\x6c\xf3\x3b\xcf\ -\xa0\xa5\xa6\xbf\xbc\x7c\xb5\x69\x17\x5a\x65\x59\xfa\x1b\x17\x8f\ -\xdd\xba\x96\xa5\x05\xd0\x96\xd7\x10\x09\x7b\xd3\x93\x57\x38\x4b\ -\xa1\x09\x42\x73\xd8\xd0\x12\x72\x5f\xf7\xcf\x1f\xa0\xe9\xad\xbc\ -\x81\x31\x11\xd6\x60\x0d\x93\x36\xd3\x0a\xd2\x74\xd3\x9b\x5b\x0a\ -\xce\x4a\xaa\x95\xbc\x37\x8a\x16\xc5\x6b\xbd\x48\xeb\xf1\x68\x52\ -\xaa\x0a\x32\x10\x57\x5e\x6b\x7d\xeb\x9b\x37\x72\x6e\xe5\x75\xde\ -\x9b\xd1\x6e\x40\x65\x52\x34\x7d\xa0\x0b\xb4\x25\x90\xc1\x3f\x6b\ -\xa6\x75\x9d\x27\x82\xd7\x55\xc9\x31\x69\xd5\x7b\x34\x49\xa6\xfa\ -\x90\xa9\x73\x01\x7c\xd3\x70\xd2\x7b\xdf\x3c\x0f\x98\xca\x0a\x34\ -\x60\x67\x28\x28\x23\x0f\x1c\x5a\x72\x5e\xf0\x63\x7a\xa0\x92\x6e\ -\x0b\xf2\x60\xde\xb4\x00\xcf\x7b\x52\x0e\xee\x1b\xfd\x3c\x0c\xcd\ -\xc0\x69\x1b\x51\x1a\x34\x43\x51\x17\x24\x65\x9c\xbd\x87\x16\xf6\ -\x20\x95\xe0\x8f\x24\xbd\x8f\x43\xfd\x6b\x87\x4d\xb5\xa5\x81\x1b\ -\x26\x10\xfb\x38\x8a\x3a\xba\x36\x02\x1c\x4a\xb7\xb5\x52\x63\xda\ -\xef\x9c\xb2\x14\xf0\x27\xa2\xa3\x9a\x41\x01\x85\xa3\xd2\x59\x47\ -\xc3\x08\x5a\x9e\x10\xe0\x0e\xac\x4e\xc6\x54\x9e\xe7\x92\xa8\xd4\ -\xef\x68\x83\xc5\x25\x12\x8f\x44\x34\x0a\x84\x21\x70\xd0\xd9\xa2\ -\xec\x51\x03\xca\x70\x8a\x32\x68\x3b\x75\x01\xc7\x94\x49\x41\x69\ -\x58\x23\x3f\x98\xf7\xc4\x6e\x7b\x0c\x7b\xca\xed\xbd\x51\x3f\x37\ -\xeb\xe9\x7c\x8b\x28\x80\x3a\x73\xe7\x21\x68\x07\xc1\x60\xc0\x87\ -\x36\xb4\x5b\x02\xfd\xa6\xd6\x65\xe6\xad\xb4\x68\xa2\x8a\x23\xfd\ -\x7b\x3a\xaa\xe4\x40\x18\xc7\xb8\x8f\x6a\x2b\x3f\x89\x6a\xe8\xce\ -\x02\x3f\x9a\x47\xb3\xd9\x65\x54\xe5\x1f\x35\x12\xe4\x3f\x89\xeb\ -\x75\xb8\x16\xcb\xab\x70\x85\x91\x3b\x9b\x22\xde\x45\x2d\xf0\xdd\ -\x8b\x58\x40\xd4\x62\x37\x8a\xa6\xa1\x84\xf8\x44\x6e\x78\x11\xaf\ -\x28\x9a\x45\x09\xe4\xc6\x87\xd0\x9e\x62\x9b\xde\x27\xf1\x92\x90\ -\xc5\xf3\x71\x6f\xe5\x27\xb8\xc3\x21\x2a\x9e\xf9\x71\xbc\xb8\xaa\ -\xa6\xff\x15\xf7\x65\x74\x85\xfb\x35\x90\x1d\xee\x61\x53\x2c\xd1\ -\x6c\x8c\xfb\xdc\x9d\x99\x66\x15\x8c\x71\x0f\x03\xf7\x42\x52\x98\ -\xcd\xeb\xef\xa0\xde\xf6\xc0\xcf\x14\x75\xe7\x63\x71\x0f\x66\x6e\ -\x62\xa8\xcf\xc1\xfd\xaa\xf9\x28\x81\x98\xd4\x3b\xaf\x93\xc1\xb9\ -\x8d\x08\xc7\xf4\xbd\xf9\x33\x04\x61\x3e\xe7\xf2\x54\xf1\xa5\x8c\ -\x20\xa0\xf1\x47\x06\xf4\xba\xdf\x7d\x29\xa4\xe7\xe0\xbe\xf8\x24\ -\x0d\x6c\xee\x4e\xee\x7c\xff\x04\xf7\x65\x8c\xfc\x3c\xff\x6c\x71\ -\x4f\x3e\x49\x03\xfb\x17\x70\xff\xcc\xf3\xdd\xff\x24\x7d\xe6\xaf\ -\x70\x57\xe4\xd4\xe3\x0e\x37\xb7\xd4\x7c\x86\x82\x9b\x3e\xdc\xca\ -\x88\x38\x0c\x07\xf0\xee\xc0\xca\x99\x72\xcc\xff\xe0\x2e\xdc\xef\ -\x8a\x07\x43\x39\x1a\xc3\x26\x24\x09\x97\xeb\x34\x08\xdd\x65\x53\ -\x84\x49\x75\x7a\xd0\xa0\xb6\x17\xfa\xd4\xff\xba\x11\xcb\x51\x49\ -\x8b\x73\x2a\x61\x37\x72\x60\x45\x9a\x3f\x14\x44\xe9\xfd\xa8\xbd\ -\xeb\xa6\x3e\x28\x1e\xb9\xc0\x13\xc2\x87\x12\xa2\x0d\xff\x38\x1a\ -\xdd\xc5\xa7\xdd\xdd\xc2\x31\x6c\x8b\x06\xb5\x8b\x5b\x41\xe0\x2e\ -\xa6\x00\x9b\x2f\x28\x80\x15\x1c\x32\xe1\xd6\xbc\x52\x60\x0d\x1b\ -\x6e\xb2\xfd\xe5\x5b\x70\x8d\x92\x76\xd4\x1e\xb8\x46\x57\x2b\x80\ -\x72\x38\xa2\xdf\x5c\xfd\x89\xf5\xa7\x11\x68\xf1\xde\xf2\x02\x8f\ -\xd1\x6e\xcf\xcf\xf3\x64\x79\x81\x36\xdc\xf9\xe2\xa7\xf0\x76\xba\ -\x33\x81\xd3\xcc\x54\x91\xac\xff\xc6\x97\x7e\xf3\x06\x04\xad\x1f\ -\x61\x9d\x6f\x9e\x04\x73\x13\x7c\x1f\xae\x3c\xe3\xe0\x06\xde\x00\ -\x52\x73\xd5\xde\x6d\xee\x56\xfa\x8b\xc0\xe6\xee\x4f\xda\x83\xd1\ -\x26\ -\x00\x00\x0f\x08\ +\x00\x24\x04\x78\x9c\xe5\x99\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ +\x58\xe5\xd2\xa2\x2b\x4a\x24\xf5\x8e\xed\x1c\x12\x04\x09\x90\x5e\ +\xda\xb4\x3d\x06\xb2\x44\xdb\x6a\x24\xd1\x95\xa8\xb5\x9d\x5f\xdf\ +\xa1\xde\xb6\x6c\x64\x83\x7d\x65\x53\x01\x41\xa4\x99\xe1\xeb\xe3\ +\xcc\x70\xe8\x9d\xbd\xda\x67\x29\xba\xe1\x45\x99\x88\x7c\xae\x11\ +\x6c\x6a\x88\xe7\x91\x88\x93\x7c\x3d\xd7\xfe\xfc\xf8\x56\xf7\x34\ +\x54\xca\x30\x8f\xc3\x54\xe4\x7c\xae\xe5\x42\x7b\xb5\xb8\x9a\xfd\ +\xa4\xeb\xe8\x75\xc1\x43\xc9\x63\xb4\x4b\xe4\x06\xbd\xcf\x3f\x97\ +\x51\xb8\xe5\xe8\xe7\x8d\x94\xdb\xc0\x30\x76\xbb\x1d\x4e\x5a\x21\ +\x16\xc5\xda\xf8\x05\xe9\xfa\xe2\xea\x6a\x56\xde\xac\xaf\x10\x42\ +\x30\x6e\x5e\x06\x71\x34\xd7\xda\x06\xdb\xaa\x48\x6b\xc3\x38\x32\ +\x78\xca\x33\x9e\xcb\xd2\x20\x98\x18\xda\x60\x1e\x0d\xe6\x91\x1a\ +\x3d\xb9\xe1\x91\xc8\x32\x91\x97\x75\xcb\xbc\x7c\x31\x32\x2e\xe2\ +\x55\x6f\xad\x66\xb3\x63\xb5\x11\xf1\x7d\xdf\x30\xa9\x41\xa9\x0e\ +\x16\x7a\x79\xc8\x65\xb8\xd7\x8f\x9b\xc2\x1c\xcf\x35\xa5\xa6\x69\ +\x1a\xa0\x1b\x2c\x6f\x67\x15\x94\x00\x74\x0b\xff\x7a\xf3\x4e\x80\ +\x4b\x51\x15\x11\x5f\x41\x3b\x8e\x73\x2e\x8d\x37\x1f\xdf\xf4\x4a\ +\xdd\xc4\xb1\x8c\x47\xdd\x74\x3c\x8f\x46\x3d\x82\x9c\x87\x19\x2f\ +\xb7\x61\xc4\x4b\xa3\x93\xd7\xed\x77\x49\x2c\x37\x73\x8d\x59\x98\ +\x30\x78\xec\x5a\xb8\xe1\xc9\x7a\x23\x4f\xa5\x49\x3c\xd7\x60\xf6\ +\xd4\xf7\x9a\xef\x91\x73\x90\xc6\xa0\xed\x38\xe8\x35\x26\xf6\x29\ +\x26\xa8\x20\x36\x73\x1b\x9b\x6e\x09\x41\x2c\x22\x35\x27\xe8\x92\ +\x67\x49\x58\x49\x91\xc1\xae\x45\x51\x1a\x96\x65\xb2\x4a\x22\xf8\ +\x10\xf9\x36\xad\xd6\x49\xfe\x29\x0a\xd3\xa8\x4a\xc1\xa5\x3e\x95\ +\x5b\x1e\xc9\x22\x4c\x3f\xc5\x89\xf2\x3d\x58\x0d\xee\x78\xf6\x83\ +\xf3\xfd\x56\x14\x52\xdf\xc7\x5b\xa0\xea\xb8\x67\x95\x87\x4e\xb9\ +\x00\xed\x2c\xe6\xab\x52\x59\x35\x4b\x54\x5f\xb0\x46\x57\x43\x46\ +\xad\xed\x67\xac\xa6\x1b\xdf\x24\x7c\x37\xd8\x2e\xc3\xb2\xc1\x88\ +\xd0\x36\x5c\x83\xcb\xa5\xa2\x98\x6b\x2f\x56\xf5\xd3\x2a\x96\xa2\ +\x88\x79\xd1\xa9\x9c\xfa\x39\x52\x09\xd8\x96\x44\x1e\x9a\x20\x6b\ +\xfb\xee\xe6\xab\x7a\xed\xf5\xe6\x79\x7d\xb9\x09\x63\xb1\x9b\x6b\ +\xf4\x54\xf9\x45\x88\x6c\xae\xd9\xd8\xf6\x3d\xdf\x24\xa7\xda\x68\ +\x3f\xd7\x74\xd7\xc7\x0e\xf1\x5c\x6a\x4d\xb4\x30\x9e\x83\x89\x69\ +\x53\x66\xb9\x13\x65\x55\x14\x10\x85\x7a\x1a\x1e\x38\x2c\xaa\xfe\ +\xaf\xeb\xbf\xdc\x88\xdd\xba\x50\x70\x64\x51\xf1\xd3\x96\x4a\xa3\ +\x2f\x97\x62\x7f\x5e\x0d\x4e\x51\xa9\xf8\xd6\xab\x3c\x91\x10\x43\ +\xdb\xfd\xb8\xd7\x2a\x89\x79\x79\xbe\xe1\x2e\xc9\x81\x81\xde\x7a\ +\x33\x61\x3d\xe2\x53\x8b\xce\xb5\x5d\xd3\xbb\x60\x01\x53\x9b\x60\ +\x6e\x55\x87\xcb\xaa\x2c\xdc\x27\x59\xf2\x85\xc3\xba\x27\xa4\xcb\ +\x3c\xdc\xea\xeb\x54\x2c\xc3\xb4\x9d\xfd\xa2\xb6\x98\x1d\x61\x69\ +\x1a\x21\x24\x0f\x2a\x8e\xf7\x07\x25\xd3\x3a\xa1\xe2\xa9\x04\xcc\ +\x75\xec\x5e\x28\x8a\x04\xc2\x63\x34\xdf\x4e\x74\x18\x8b\x54\xd4\ +\x43\xd2\xde\xd7\xfe\x55\x7b\x9f\x7b\xaa\x3b\x8c\x75\xad\xdb\x1b\ +\x53\xbf\xaf\xe5\x19\x97\x61\x1c\xca\x70\x08\x82\x4e\x42\x7d\xdf\ +\xec\x56\x06\x09\x34\xf8\xfd\xcd\xdb\x45\x3b\xd0\x2c\x8a\x82\xbf\ +\x45\xf1\xb9\x1b\x17\x21\x65\x10\x2e\x45\x05\x5b\xa1\x2d\x7a\xf1\ +\x2c\x8e\x02\x48\x79\x90\x0a\x16\x49\x06\xae\xad\xb2\xe5\xaf\x90\ +\xe2\x66\xc6\xa0\x38\x32\x56\xb0\x86\x4e\x9b\x6e\x0b\xde\xe4\xce\ +\xb3\x07\x48\x1c\x65\x89\x6a\x64\xfc\x21\x93\x34\x7d\xaf\x06\x69\ +\x57\x3c\xea\x34\x91\x29\x1f\x84\x33\xa3\x9d\x7d\xbb\x36\x63\xb4\ +\xb8\x99\xd1\xad\xbe\xfe\x5a\x0f\x54\x8e\x82\xa2\xdf\xe8\x34\x5c\ +\x72\x70\x82\x0f\x4a\x89\x26\xda\x75\x21\xaa\x6d\x26\x62\xde\x36\ +\xef\x69\x42\xd6\xeb\xb7\x4c\x1e\x52\xd0\xaf\x60\xf6\x41\x9b\x68\ +\x5e\xaa\x0f\xbd\x4d\x13\x01\x69\x3e\x8b\x2a\x85\x74\x77\xc3\x73\ +\x11\xc7\x2f\x4b\x59\x88\xcf\x3c\x78\x61\x9a\x96\x67\x9a\xed\x67\ +\x13\x2d\x41\xff\x99\x26\x39\x87\x69\x04\xe5\xbf\x55\x58\xf0\xb1\ +\xf4\x1f\x91\xe4\x01\x70\xe3\x45\x27\xad\x3f\x52\xf0\x78\x19\x58\ +\x9d\x2c\x0e\x21\x13\x15\x45\x78\x08\x72\xa8\x08\xc6\x52\xb1\x5a\ +\x95\x5c\x0e\x23\x75\x53\x35\x31\x6b\x9f\x23\x47\x57\xcb\x65\xbe\ +\x4f\x7a\xe1\xd9\x43\x4a\x3d\xe7\x0f\x2a\xf5\x1c\x45\x05\xf8\xb7\ +\x8f\x2d\x97\xf9\x26\x73\xb8\x4e\x9c\x5e\x51\x1c\x99\x15\x60\xc7\ +\x30\x83\xc3\xca\xf1\xbd\xde\x2b\x66\xdb\x50\x6e\xce\xd1\x1f\xad\ +\x52\x91\x55\xcf\x31\x59\xda\x4c\x8a\x59\xd6\x29\xe2\x65\x25\xe5\ +\x7d\x01\xee\xf7\xbd\x5f\x07\x20\xfc\x0d\x99\xd7\x26\xfa\x0b\x75\ +\x60\x8e\x01\xab\x15\x41\xb4\x0e\x1c\x86\xcc\x2e\x72\x98\xa1\x14\ +\x85\x0e\x39\xfe\x26\x94\x55\xc1\x8f\x72\x49\x9f\x13\xc0\x49\x55\ +\x18\x41\x3a\x8e\xa2\xe7\x8e\xaa\x87\x74\xdd\xbf\xa1\x77\xc8\x3c\ +\x87\xcc\xfb\x7e\x90\x11\x0c\x3b\x68\x52\xdb\xdb\xee\xbf\x9d\xd9\ +\x05\x12\xfd\x29\x70\x4d\x3d\xec\xa1\xd7\x88\x61\xda\xbc\x4e\x5e\ +\x26\x74\x98\xeb\x52\xdd\xbc\x35\x9f\x7b\xf1\x19\xe2\xda\x16\xb1\ +\xed\x7b\x23\x90\x21\xbb\x4b\x49\xd7\xcc\xc6\x14\x45\x10\x47\xba\ +\x85\x69\x0d\xe5\xd2\xfb\x14\x85\x67\x3d\x7b\x10\xc4\xc4\xad\x2b\ +\xdc\x11\x84\x7e\xfb\x98\xf9\x4e\x51\x50\x82\xef\xc7\x27\x74\xff\ +\xd9\xa3\x70\xee\xcb\x2b\x9e\x7d\x80\x30\x7a\x67\x06\xec\xb9\x33\ +\x20\xce\x9d\x19\xdc\xbe\x08\xf9\x1e\x8f\xcc\x6c\x7c\x64\x32\x6c\ +\x35\x8b\x8e\x50\x57\xcf\x30\xa8\xc2\x2e\xbc\x5f\x38\x40\x75\xfa\ +\xc3\x00\x21\x5e\x57\x4d\xdd\x09\x08\x79\xd6\x40\xc6\x45\x15\xa1\ +\x7d\x51\x55\xbf\x4e\x5e\x2e\x21\x78\xcc\x44\xf1\xb0\x3e\xe1\x36\ +\x31\x72\xd7\x20\xb1\x7e\x18\x20\xfd\x62\xef\x06\xe4\xa1\x2a\x0b\ +\x6e\xae\x56\x13\x20\x0c\xdb\x8c\x7a\x8e\x63\x79\x4f\x72\xb1\x1d\ +\x6e\x69\x50\x8e\x78\x0d\x46\x1f\xdb\xc4\xf5\x2d\xef\xcc\x29\xe3\ +\xfa\x8f\x59\x76\x41\xd9\xec\x02\x19\xc6\xc8\x13\xb0\xd1\xad\xde\ +\x53\xa8\x8f\x29\x01\xaf\x75\x10\xa5\xd8\x6d\x64\x16\xb6\x15\x22\ +\x72\x26\xcf\x78\xe4\x71\x6b\x53\x13\x2e\xd3\xd4\xf7\x9e\xc2\x81\ +\x68\x7f\xb3\x71\xb1\x69\x3b\x16\x50\x42\xd4\xc2\xde\x35\x81\x48\ +\xbf\xe0\x43\x1e\x7d\xcc\x53\xe8\x49\xf1\x10\xab\x2d\x63\x06\x1e\ +\x08\x4e\x72\xe7\x9a\x38\xd8\x57\x0e\x65\x9d\xc5\xa3\xbb\xff\x0f\ +\x40\xf5\xcd\xb8\x8d\xb1\x9e\x08\x6a\xe3\xce\x82\x10\xf3\x29\x33\ +\xdd\xf3\x2e\xf4\xc8\xf7\xbf\x27\x64\x34\xca\x43\x04\x7b\x0a\x11\ +\xe9\x65\x5f\x83\xf4\x98\x67\xfb\x93\x42\xd2\xe9\x50\x05\x38\xd8\ +\xad\x33\xf3\xad\x29\xd9\xb7\xa6\x34\xb1\x93\x45\x98\x97\xea\xaf\ +\x29\x7a\xc4\x73\x58\x83\xfa\x93\x97\xee\x35\xb7\x34\xe7\x4c\x18\ +\x4f\xec\x0f\x73\x8d\x42\x92\x20\x36\xf3\x9c\xaf\x6f\x42\x0d\xde\ +\x33\x47\xfb\xe0\x44\x7e\x7c\xbc\x0f\x16\x64\x62\xdf\xb3\x7d\xd7\ +\x7e\x8a\x03\x81\x75\x07\x24\xc5\x3e\xac\xc9\x82\x80\x66\x97\x0a\ +\x72\xc5\xfe\xa1\xae\x68\xaa\xd4\x32\xc3\xd3\xea\xb3\xf5\x11\xfa\ +\x30\xe5\xa7\x8d\x9d\xfa\xfa\xa1\xb7\x32\x17\x7d\x18\xfd\xf6\x47\ +\x1c\x75\xc7\x87\x23\xc1\x6f\x0a\xae\xb4\xff\x81\x14\x2a\x2e\xa7\ +\xfb\xb0\xba\x2a\xd6\x42\x5d\x7d\x7f\xdd\xde\xfa\x1d\xe4\x41\xb1\ +\x58\xdb\xc0\x28\x13\x9c\x96\xc9\x5c\x9d\x3d\xdc\xd9\xea\xf1\x69\ +\x35\xff\xa0\x3c\x07\x54\x63\xa8\xce\x11\xd4\xfe\x37\x66\xc5\xb6\ +\xe3\xe4\x8e\x7e\x66\x84\x02\xdb\x6b\x65\xce\x68\x27\xd2\x09\x5d\ +\xf7\xeb\x74\xbf\x11\xed\xcc\x58\x2f\xae\x66\xea\xef\xae\x8b\xab\ +\xff\x00\x21\x49\x9d\x0d\ +\x00\x00\x09\xbc\ +\x00\ +\x00\x22\x51\x78\x9c\xe5\x59\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x60\ +\xe5\x97\x04\x15\xa9\x73\xbf\x28\xb6\xf7\x61\x83\x5d\x2c\xb0\x45\ +\x81\x6e\x82\x02\x7d\x59\x50\x24\x65\xb3\xa1\x48\x81\xa4\x2c\x29\ +\xbf\xbe\xdf\xa1\xc4\x8b\x2e\xb6\xe5\xc4\xbb\x45\x51\x09\x41\xc4\ +\x73\xe6\x5c\x66\xe6\x9b\x99\x6f\xe8\x9b\x1f\x36\x8b\xcc\x7b\x4c\ +\xca\x2a\x2d\xf2\xdb\x11\x0d\xc8\xc8\x4b\xf2\xa8\x88\xd3\xfc\xfe\ +\x76\xf4\xf9\xd3\x4f\xbe\x19\x79\x55\x1d\xe6\x71\x98\x15\x79\x72\ +\x3b\xca\x8b\xd1\x0f\x77\x57\x37\x7f\xf1\x7d\xef\xc7\x32\x09\xeb\ +\x24\xf6\xd6\x69\xfd\xe0\xfd\x92\x7f\xa9\xa2\x70\x99\x78\xef\x1e\ +\xea\x7a\x39\x9d\x4c\xd6\xeb\x75\x90\xee\x07\x83\xa2\xbc\x9f\xbc\ +\xf7\x7c\xff\xee\xea\xea\xa6\x7a\xbc\xbf\xf2\x3c\x0f\xe7\xe6\xd5\ +\xb4\xa8\x66\xb7\xa3\xc1\x8a\x62\x99\xe4\xd5\x3a\xac\xa3\x87\x59\ +\x51\x7c\x69\xd6\xad\xca\x74\xc2\x08\xb1\x13\xc8\x8e\xfa\x95\x71\ +\xd4\x2d\x5c\xae\xca\xac\x11\x8d\xa3\x49\x92\x25\x8b\x24\xaf\xab\ +\x09\x0d\xe8\x64\x20\x1e\xf5\xe2\x91\xbb\x77\xfa\x98\x44\xc5\x62\ +\x51\xe4\x55\xb3\x32\xaf\xae\x07\xc2\x65\x3c\x3f\xb8\xd5\x9a\x37\ +\x42\xd4\x5a\x3b\x21\x6c\xc2\x98\x0f\x09\xbf\xda\xe6\x75\xb8\xf1\ +\x0f\x97\x42\xbb\x73\x4b\xa1\x00\x99\x60\xae\x97\xbc\x4c\x6a\xba\ +\xc9\x60\xc4\x27\x2f\xd3\xcc\x0e\x4f\x87\xe3\x96\xf8\xd7\x2d\x68\ +\x07\x82\xaa\x58\x95\x51\x32\xc7\xca\x24\xc8\x93\x7a\xf2\xf1\xd3\ +\xc7\x6e\xd2\x27\x41\x5c\xc7\x83\x6d\x5a\xbf\x1d\x9c\x7b\xe0\xcc\ +\x3c\x5c\x24\xd5\x32\x8c\x92\x6a\xd2\x8e\x37\xeb\xd7\x69\x5c\x3f\ +\xdc\x8e\xb8\x08\x28\xc7\x47\x36\x83\x0f\x49\x7a\xff\x50\x1f\x8f\ +\xa6\xf1\xed\x08\xba\x32\x6b\x75\xf3\x3c\x00\x21\xdd\x09\xec\x37\ +\x9e\x76\x33\x24\xb0\x2c\xa0\x5e\x49\x25\xd7\x3b\x99\x56\x85\x69\ +\x5c\x44\xee\x4e\xd8\x32\x59\xa4\xe1\xaa\x2e\x16\xf0\x71\x14\x65\ +\x61\x55\xa5\xf3\x34\xc2\x43\x91\x2f\xb3\xd5\x7d\x9a\xff\x7e\x5f\ +\x24\xd5\xef\x75\x51\x64\x41\x6b\xea\xee\xa4\x64\xb3\x2c\xca\xda\ +\xdf\xc4\x4b\x98\x50\xe9\xb3\x93\xdb\x76\xf2\x0e\xb3\x37\xdd\x05\ +\xdc\xe9\xf1\x63\x9a\xac\xdd\x9a\x9d\x76\xb3\xb0\xda\x59\xc5\xf3\ +\x96\xe1\x3d\xf0\x96\x15\xe5\xed\xe8\x7a\xde\x7c\xf6\x13\xb3\xa2\ +\x8c\x93\xb2\x9d\x52\xcd\xe7\x60\xaa\x80\x95\xd3\x7a\xbb\x8b\xcd\ +\xfd\xde\xed\x8d\xdc\xae\xdd\x3c\x39\x3f\x5f\x3d\x84\x71\xb1\xbe\ +\x1d\xb1\xe3\xc9\xaf\x45\xb1\xb8\x1d\x89\xe3\xe1\x68\x73\x3b\xf2\ +\x29\x0b\x04\x1c\xc3\xf5\xc9\xec\xb6\x71\xa3\x55\xc2\xf0\x93\x1d\ +\xa3\x55\x59\x22\xf6\xfc\x2c\xdc\x26\xd0\xa6\xf9\x8f\xee\x85\xaa\ +\x87\x62\x7d\x5f\x3a\xab\xd4\xe5\x2a\x39\x5e\xe9\x66\xfc\xd9\xac\ +\xd8\x9c\x9f\x86\x73\x57\x2e\xaa\xfd\x55\x9e\xd6\x88\x9c\xe5\x66\ +\xb8\xeb\x2a\x8d\x93\xea\xfc\xc2\x2a\x0f\x97\xfe\x7d\x56\xcc\xc2\ +\xec\xbc\xc0\x3a\xcd\x61\x1d\x7f\x0f\x5b\xca\x3b\xe3\x1f\x4b\xb4\ +\x18\xd6\xc4\x3c\x21\x81\xbb\x9f\x38\x60\x3f\xb5\x7d\x7a\x6a\x11\ +\x6e\xd2\x45\xfa\x35\x81\x61\x68\x83\x28\x60\xea\xc0\x2c\xbb\x65\ +\x3b\x40\xb9\x67\x4e\x88\x1c\xb5\x83\xf5\xd6\x05\xe9\x66\xeb\x26\ +\xba\xc1\xa2\x4c\x01\xf3\xc1\x75\xda\xa1\xed\x70\xc8\x45\x2f\x92\ +\xfc\xa6\x01\x56\x03\x3b\x7d\x3c\xb7\x1d\xce\x79\x93\x06\xef\x93\ +\x53\xc0\x37\xe3\x71\x32\xaf\x7a\xe4\xbb\x27\xe0\xc7\xb6\x1a\x21\ +\x4d\x25\x61\xf9\x73\x19\xc6\x29\xdc\x38\x54\xe9\x70\x46\x1a\xd9\ +\xae\x71\xb1\x55\x17\xcb\x56\x16\x97\xaa\xb7\x99\x8b\x6f\x0c\xfa\ +\x4d\xbc\x4c\xaf\x6d\x14\x86\x84\x7c\x68\x86\xf6\x71\x30\xa5\x1f\ +\x46\xfd\x9a\x62\x3e\xaf\x92\x7a\xa8\xf6\x3e\xef\x60\x85\x34\x8a\ +\xee\xb5\xba\xf0\x34\xca\x63\x3a\xbb\xe0\x34\x7a\xfe\x34\xde\x9d\ +\x76\x33\x39\x54\xfb\xd5\x56\x62\xfd\x11\xa8\x8a\x88\xf3\x34\xc7\ +\xb9\x55\x91\x01\x06\x97\x2b\x34\x57\xa8\x37\x47\xe6\x23\x81\x36\ +\x86\x71\xc9\x5f\x61\x47\xf6\x86\x9a\x51\xf9\x26\x9a\xcd\x67\x7a\ +\xa6\xbf\x19\x18\x54\x7f\xa3\x42\x5d\x26\x2c\xb2\x2c\x89\xb0\x7f\ +\x98\xad\xc3\x6d\xd5\x1d\xd2\xd4\xeb\xe9\x43\x99\x80\x5f\x5c\x9f\ +\x81\xfe\x73\x96\x51\xbd\x65\x36\x14\x20\xa3\x81\xa6\x42\x0d\x92\ +\xc1\x96\x36\x45\x80\x4a\x4a\x88\xb0\xaa\x97\x66\xc8\xd9\x34\x30\ +\x84\x30\xc2\x7b\x69\x76\x5e\xfa\x7e\x7f\xe0\xe7\x5d\xaa\x5d\x55\ +\x49\xf9\x9b\x2b\xf4\x7f\xcf\x3f\x77\xd5\xac\x97\xfa\x54\x86\x79\ +\x05\x56\x81\x4a\x82\x82\x5b\xa6\x9b\x77\x20\x13\xcc\x32\xab\xad\ +\x11\x63\x1f\xe9\x83\x49\x25\xa8\x1c\xbb\x44\x42\x09\x13\x76\x0c\ +\x01\x4a\xac\x54\x9c\x88\x31\xe3\x81\xd4\x42\x19\x36\xc6\x05\xa5\ +\xd5\x9a\xbe\xef\x2d\xff\x8a\x70\xd0\x3e\xf1\x9f\x4c\x1c\x03\xa0\ +\x5a\x5f\xfb\xf4\x05\x18\x9c\x81\x13\x21\xf3\x30\x0e\x4f\xe0\xf4\ +\x64\xf2\xe8\x4f\xe4\x14\x37\x33\x2f\xe4\x88\x33\x27\x9a\xd0\x7d\ +\x8f\x42\xf3\x25\x50\xba\xa7\x30\x7b\x5b\x50\xee\x4d\x3b\xb4\xfe\ +\xe1\x31\xdc\x48\xfd\x76\xe0\x01\x1e\xb8\x94\x5c\x51\x00\xc6\x0a\ +\xaa\xad\x65\x0e\x30\x4a\x11\xc3\x89\xe2\x0d\xa2\xb8\xc0\x57\x8d\ +\xb5\x0a\x94\x85\xb0\x18\x03\xc6\x82\x0a\x43\xed\xfb\xee\x08\xc7\ +\x62\xa8\x0c\xfa\xe0\x70\xc4\x85\xea\x40\x5b\x61\x6c\x7f\xdf\xf9\ +\xb1\xd8\xfc\xac\x18\xc8\x0c\x35\x81\x54\x4c\x76\x65\xd0\x55\xb8\ +\xe6\xd7\x22\xa9\x81\x8d\x3a\xec\x8b\x5f\x3b\x82\x4a\xcd\xda\x02\ +\x88\x7e\x61\xfa\x8f\x8f\x3f\x75\x78\x89\xa2\xe9\x3f\x8b\xf2\x4b\ +\x8f\x01\x27\x10\xce\x8a\x15\xdc\xd3\xe1\xd8\x95\xd5\x68\xea\x0c\ +\x14\xd6\x77\xe9\x02\x64\xce\x35\x07\x7f\x05\x47\xc7\xf9\xdd\xc4\ +\x81\xb0\x23\x04\xfd\xa6\xbb\x6d\xcb\x64\x47\xfe\xcf\xf6\x4b\x71\ +\xb4\x48\xdd\xa2\xc9\x6f\x75\x9a\x65\xbf\xb8\x43\x06\xb8\xde\x6f\ +\x9a\xd6\x59\x72\xd7\x9c\xb9\xfb\xd9\x6a\x31\xd9\xab\xd1\xa2\x72\ +\xa0\xe5\xcd\xa4\x35\x43\xf3\x74\x7f\x42\xf8\x8a\xd5\x72\x51\xc4\ +\xc9\x9e\x26\x1e\xb3\xa3\x2c\x9c\x25\xa0\x6c\xbf\xba\x39\xaf\x8d\ +\x95\x26\xf4\x77\xa4\xb2\x35\x2b\xf0\xdc\x91\x96\x5d\x14\xcd\xa1\ +\xc6\xf4\x3a\x51\xee\xfb\xc1\x3d\x0c\x22\xb6\x79\x2c\x57\x19\xb8\ +\xfc\x63\x92\x17\x71\x8c\x00\x2b\x8b\x2f\x89\x8b\xf0\x7d\x29\x74\ +\x8f\x3b\x3a\x88\x52\x48\x29\x97\x44\x4b\xd5\x8e\xc3\x54\x49\x99\ +\x81\xaf\xd5\x53\xd1\x8e\xc5\x21\x18\x76\x59\x86\xdb\x69\x8e\x06\ +\xb9\x1d\xed\xce\x3c\x8c\x1c\x5c\x57\x5a\xaa\x7c\x31\x08\xa9\x96\ +\x7b\xa2\xb9\x21\x72\x98\xa1\xbb\xb6\x09\x25\x99\x28\x21\x58\x1f\ +\xb1\xa0\xe8\x4c\x04\x46\x0b\x3d\xa8\x0a\x5b\x37\xca\x03\xd4\x6e\ +\x63\xfb\xed\xcb\x86\xe1\x71\xc5\xa9\x24\xa2\x1f\x85\x30\x0b\x0c\ +\x97\xe0\xf1\x7d\xee\xaf\xcf\x65\x73\x43\x8d\x14\x4a\x68\x17\x87\ +\x48\xd6\x42\x10\x4e\xdd\x6f\x21\x29\x63\x42\x34\xbf\x8d\x65\x82\ +\xe2\xf6\x63\x32\x26\x7d\x10\x76\xde\xec\xf6\xf5\x23\x84\x7d\x52\ +\x3a\xae\x2c\x10\xd4\x96\xa2\x20\x5c\x20\xee\x34\x93\x01\x35\x94\ +\x59\x31\x28\xcd\x49\x96\xa5\xcb\x2a\x39\x07\x00\x20\xfc\xdd\xf5\ +\x69\xa2\x7a\xff\x9d\x88\x78\x2b\x20\x2c\xc3\xfa\x41\x29\xce\x0e\ +\xf3\x15\xd9\xb5\xc7\xfc\x30\x69\xa1\xce\xbb\x41\x71\xe0\x51\x76\ +\xe4\x4a\xf4\x6b\xbd\x5d\xdc\xee\x4f\x1a\xe5\x94\x56\x7c\xaf\x51\ +\x02\x62\xe0\x49\x24\xeb\xe7\xac\x73\x6a\x07\x98\xe1\x6f\x1e\x1a\ +\x4d\x33\xa6\x02\xb5\xdf\x12\xee\x99\x40\x4b\x2d\x05\x05\x8e\x02\ +\x14\x6b\x18\x48\x7b\x3f\x62\x54\x10\x49\x28\x6d\x90\x86\xc6\x9f\ +\xa2\x18\x68\xb7\x12\xf0\xd7\xb2\xa9\x0f\x80\xa1\xb0\x90\xf0\x28\ +\x0f\xc0\x22\x20\xd0\x54\x0d\xcd\x41\x6e\xb8\xf5\x7e\xf5\xa8\x02\ +\xd8\x85\x92\xae\x80\x30\x08\x0a\xa2\xbd\xc8\xc3\x6f\x66\x8d\x94\ +\x4e\x98\x71\xb7\xaf\xf0\x78\x20\xac\x00\xb6\x71\x05\xc4\x9c\x24\ +\x60\x25\x18\x33\x42\x39\x42\x03\x16\x25\x24\xf2\xba\x16\xd8\x13\ +\x11\xa8\x99\x20\x96\x3b\x05\x10\x15\x52\x1a\xec\xe9\x2e\x83\x10\ +\xb7\x90\x95\xae\x85\xa6\x9e\xbb\x1f\x63\xd8\x7f\x8c\xe0\xc4\x1d\ +\x94\xf4\xfc\xfd\x46\x7c\xbc\xdf\x5a\x7a\x88\x1c\x27\x69\x19\x53\ +\xd0\x09\xd5\x8f\x71\x61\x99\x07\xdc\x33\x4e\xac\x72\x43\x50\x05\ +\x05\x0f\x16\x81\x96\x9c\x5b\xe9\x68\x95\x33\x8e\xb2\xac\xd1\x9c\ +\x11\xc1\x10\xa7\x28\x68\x56\xe3\xda\xf4\xc8\xba\xff\x3a\xc9\x45\ +\x10\x97\xa7\xe1\x17\x15\x79\x8e\xc9\xa2\xf4\xd1\xd0\x3f\x86\xf5\ +\xaa\x4c\x0e\x1a\xc7\xae\x01\x44\xfa\x76\xa5\x03\x85\xbe\x6a\x3e\ +\xd1\xd7\xea\x65\x10\x0e\x82\xe3\x29\x3c\x31\xae\x08\x67\x96\xb7\ +\xe3\x0e\xb2\xb8\xd9\x74\xb6\xaa\xeb\xe1\xd8\xbf\x8b\x34\x9f\x36\ +\x60\x7b\x8b\xb8\xdc\xe1\x91\x06\xc2\x91\x0d\xf0\x0f\xf8\x42\x13\ +\x6e\x94\xe7\x82\xcb\x5d\x93\x8e\xc1\x01\x9a\x50\xe4\x27\xc1\x2c\ +\xcd\x80\x42\xbf\x64\xc9\x37\xb1\x91\x26\x14\x38\x97\x7f\xba\x8d\ +\x16\x1e\xc3\xe9\xcd\x3b\x81\x31\x03\x05\x73\x1f\xe3\xd9\x40\xed\ +\x4c\xa4\x9d\xfd\x86\xef\x12\x86\x16\xf2\xf9\xeb\x6d\xf4\x07\x97\ +\x78\x82\x6c\xa1\xb5\x7d\x36\x77\x7d\x6b\x89\xf7\xd5\x71\x91\x47\ +\x64\x22\x2e\xc5\xa0\x10\xf7\x45\x9e\x51\x8b\xa0\xe5\xc3\x22\x6f\ +\x41\x44\x15\x57\x03\x82\xed\x72\xbd\x08\xa8\xd6\xa8\x84\x07\x05\ +\x01\x7d\x3b\xba\x38\xc1\xa4\x3c\xaa\xf1\xc8\x8c\xc8\x2f\xf4\x99\ +\x1a\x0f\xa0\x4b\x64\x54\xc1\x54\x93\x60\xd1\x9b\x69\xcd\xe5\xd8\ +\xfd\x94\x5c\x30\x6d\xc6\x4e\x02\xb5\x9e\xc9\x57\xd4\x77\x1f\xb9\ +\xc7\x58\x2c\x17\x97\x15\x78\x86\x56\x91\x5a\xa2\xfe\xe7\x33\x48\ +\x93\x73\x55\xd0\xdc\x8b\x7a\x20\x64\x28\xdf\xe8\x62\x90\x9f\xd1\ +\x40\x58\x61\xcf\x47\x06\xfb\x73\xb3\xc7\x7f\xcf\x3e\xfb\x4c\x81\ +\xd2\x27\x83\x86\xed\x08\xe6\x32\x8a\x6c\x8c\x04\xdb\xa1\xd4\x19\ +\xc6\xce\x1b\x49\xff\xdf\xa4\xd8\xae\xe4\x1c\xa4\xd8\x97\xb2\xeb\ +\x2b\x50\x74\x51\x0c\x1b\x24\x7a\x42\x89\xbe\x94\xa3\x83\xd5\x28\ +\xb4\x02\xc3\xf7\x81\x4f\xa6\x6f\x11\xbb\xef\x77\x77\x68\x8e\xaa\ +\x59\xcd\xfe\x80\xf4\xcd\x8f\x93\x37\xb8\x01\x3c\xd2\xfe\xe5\xc9\ +\x7d\xda\xe4\x8d\x68\xd7\x60\x63\x83\x3c\xbd\x71\x19\xdd\x72\xb4\ +\x4d\xe4\xa0\x41\x63\x12\xf4\xd2\x08\xcd\x0e\x92\x37\xfa\x33\xac\ +\x47\x61\x38\xc8\xdd\xe0\x6d\x12\xd9\x5f\x89\xe7\x73\xb7\x51\x9c\ +\x6b\xdb\x90\x63\x8a\xf3\x38\x18\xa0\x6b\xce\xb8\x6b\xf9\xb8\x23\ +\xd2\x96\x72\x06\x9d\x5e\x93\xbb\x15\xc0\x4f\x19\x68\xfd\x65\x8e\ +\x17\x01\x58\x30\xb1\x56\x5c\xe0\xf7\x26\xe6\xf9\x77\xfb\xdd\xbd\ +\x41\x44\xbd\x7c\x4b\xbf\x23\x2f\xd9\xc1\xdb\xc1\xbd\xd7\x41\xf2\ +\x91\x2a\xc9\xd9\xbe\xdc\x30\x63\x07\x8d\xd9\xa6\xf9\xdb\x98\x90\ +\x96\x0c\xfc\xdb\xc4\x85\x02\x9d\x37\xf0\xd4\x51\xc9\x96\x44\xa1\ +\x31\x50\xf4\xc0\xed\x00\x83\x25\xcc\x92\xe7\x4b\x36\xda\x6d\x85\ +\xfc\xe4\xda\x14\x34\x3e\xda\xbd\x6c\x05\x05\x40\x4b\x8e\x8e\xc7\ +\x15\x6c\x90\x58\x02\x00\xd8\x4b\xbd\xee\xae\xc9\x03\x2a\xd1\x95\ +\xd2\xcb\x40\x22\x03\x43\x01\x5a\x61\x2e\x70\xba\x8a\x24\x97\xdf\ +\xed\x74\x68\x6c\x19\x3a\xd6\x37\x77\x3a\x3b\x76\x3a\x2c\x81\xa6\ +\x16\x20\x3b\x71\x3a\x43\xcb\xa8\xb8\xb4\x07\x5e\xf7\xd1\x86\x51\ +\xc3\xa9\xb1\x43\xb7\x4b\xf7\xee\x84\x71\x69\x8f\xbc\x8e\x92\x87\ +\x70\xa4\xec\xc0\xeb\x90\x25\x86\xa3\xbd\x7b\x3e\xda\x8d\x01\x1d\ +\xa4\xee\x45\x28\x20\xa0\x0c\x45\x83\xaa\x5c\x8c\x6b\x2a\xd1\x1d\ +\xba\x70\x17\x68\xf5\x8c\x79\xd5\xab\x18\x00\x07\x7e\x44\xcb\x78\ +\x86\x9e\x9f\x03\x8a\x3b\x0f\x8d\xad\xe9\xff\x28\x78\x7f\x77\x75\ +\xe3\xde\x4d\xde\x5d\xfd\x07\x74\x60\xa1\xb7\ +\x00\x00\x0b\x5c\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -19011,481 +6982,1527 @@ \x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ \x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ \x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x74\x61\x63\x6b\ -\x5f\x72\x61\x73\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x63\x78\x3d\x22\x2d\x34\x33\x2e\x32\x35\x33\x31\x39\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x79\x3d\x22\x35\x2e\x31\x34\x39\x30\x32\x30\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ -\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ -\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ -\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ -\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ -\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ -\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ -\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ -\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ -\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ -\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ -\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ -\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ -\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ -\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ -\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ -\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ -\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ -\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ -\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ -\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ -\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ -\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x39\x2e\x38\x31\x33\x33\x33\x33\x35\x31\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ -\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ -\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ -\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ -\x6d\x20\x32\x2e\x32\x30\x35\x36\x34\x32\x37\x2c\x32\x33\x2e\x34\ -\x36\x36\x39\x31\x32\x20\x2d\x30\x2e\x30\x37\x32\x33\x30\x39\x2c\ -\x31\x30\x2e\x36\x36\x36\x34\x32\x31\x20\x33\x31\x2e\x39\x39\x39\ -\x32\x36\x34\x33\x2c\x30\x2e\x32\x31\x37\x30\x32\x34\x20\x30\x2e\ -\x30\x37\x32\x33\x31\x2c\x2d\x31\x30\x2e\x36\x36\x36\x34\x32\x31\ -\x20\x76\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x70\x61\x74\x68\x32\x39\x39\x32\x2d\x33\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ -\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ -\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x31\x31\x36\ -\x30\x36\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x61\x64\x64\x2e\x73\ +\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ +\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ +\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ +\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ +\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ +\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ +\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x38\ +\x2e\x36\x33\x38\x31\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\x2e\x35\x33\ +\x38\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\ +\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ +\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\ +\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\ +\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ +\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\ +\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\ +\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\ +\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\ +\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\ +\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\ +\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\ +\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\ +\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\x35\x66\x66\ +\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x34\x35\x34\x35\ +\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ +\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\x32\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\ +\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x38\x36\ +\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ +\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x35\x2e\x34\x39\x33\x32\x35\x38\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ \x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ \x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ \x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\ -\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x34\x33\x2e\x34\x37\x31\x32\x36\x34\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x33\x33\x37\x30\x37\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ -\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\ -\x30\x31\x2c\x30\x2e\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\ -\x2e\x38\x39\x37\x30\x34\x31\x32\x39\x2c\x30\x2e\x34\x34\x31\x39\ -\x34\x36\x37\x34\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ -\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\x30\x31\x2c\x30\x2e\ -\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\x2e\x38\x35\x31\x34\ -\x33\x35\x37\x33\x2c\x30\x2e\x35\x32\x34\x34\x35\x38\x39\x36\x2c\ -\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x36\x2e\x38\ -\x31\x37\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x32\x39\x2e\x38\x36\x35\x30\x37\x34\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\ -\x33\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x37\x32\x32\ -\x37\x33\x32\x33\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x35\x39\x33\x33\x33\x30\x33\ -\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\ -\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x31\x39\x2e\x31\x35\x33\x36\x39\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x34\x2e\x32\x36\x39\x36\x30\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ -\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ -\x74\x72\x69\x78\x28\x30\x2e\x39\x39\x34\x30\x37\x33\x30\x31\x2c\ -\x30\x2e\x31\x30\x38\x37\x31\x34\x35\x38\x2c\x2d\x30\x2e\x38\x30\ -\x35\x34\x35\x35\x32\x33\x2c\x30\x2e\x35\x39\x32\x36\x35\x36\x36\ -\x32\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x39\x2e\x38\x31\x33\x33\x33\ -\x33\x35\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x4d\x20\x33\x34\x2e\x31\x33\x32\x30\x35\x33\x2c\ -\x31\x31\x2e\x37\x33\x37\x32\x38\x20\x33\x34\x2e\x31\x33\x33\x33\ -\x35\x33\x2c\x31\x2e\x30\x37\x30\x36\x31\x33\x33\x20\x32\x2e\x31\ -\x33\x33\x33\x35\x33\x33\x2c\x31\x2e\x30\x36\x36\x36\x36\x33\x33\ -\x20\x32\x2e\x31\x33\x32\x30\x34\x33\x33\x2c\x31\x31\x2e\x37\x33\ -\x33\x33\x33\x20\x76\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x1c\xc8\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x36\x2e\ +\x39\x33\x31\x39\x35\x33\x2c\x35\x2e\x38\x36\x36\x36\x36\x36\x37\ +\x20\x56\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x34\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ +\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ +\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xaf\ +\x00\ +\x00\x20\x4b\x78\x9c\xe5\x58\x6d\x6f\xdb\x36\x10\xfe\x9e\x5f\xa1\ +\xa9\x5f\x5a\xcc\x92\x28\x52\xef\xb5\xd3\x0f\x2b\xba\x16\xe8\x30\ +\x60\x6d\xb7\x8f\x05\x2d\xd1\xb6\x56\x59\xf4\x28\x29\xb6\xfb\xeb\ +\x77\x94\x44\x4a\xb2\x1d\x20\x6d\xb2\x75\x5d\x14\x04\x11\xef\x8e\ +\x6f\xcf\xdd\x3d\x77\xca\xfc\xc5\x61\x5b\x18\x37\x4c\x54\x39\x2f\ +\x17\xa6\x6b\x23\xd3\x60\x65\xca\xb3\xbc\x5c\x2f\xcc\x0f\xef\x5f\ +\x59\x91\x69\x54\x35\x2d\x33\x5a\xf0\x92\x2d\xcc\x92\x9b\x2f\xae\ +\xaf\xe6\x3f\x58\x96\xf1\x93\x60\xb4\x66\x99\xb1\xcf\xeb\x8d\xf1\ +\xa6\xfc\x54\xa5\x74\xc7\x8c\xa7\x9b\xba\xde\x25\x8e\xb3\xdf\xef\ +\xed\xbc\x17\xda\x5c\xac\x9d\x67\x86\x65\x5d\x5f\x5d\xcd\xab\x9b\ +\xf5\x95\x61\x18\xb0\x6f\x59\x25\x59\xba\x30\xfb\x09\xbb\x46\x14\ +\xad\x61\x96\x3a\xac\x60\x5b\x56\xd6\x95\xe3\xda\xae\x63\x0e\xe6\ +\xe9\x60\x9e\xca\xdd\xf3\x1b\x96\xf2\xed\x96\x97\x55\x3b\xb3\xac\ +\x9e\x8c\x8c\x45\xb6\xd2\xd6\xf2\x34\x7b\xd2\x1a\xb9\x71\x1c\x3b\ +\x08\x3b\x18\x5b\x60\x61\x55\xc7\xb2\xa6\x07\x6b\x3a\x15\xce\x78\ +\x69\x2a\x46\x08\x39\xa0\x1b\x2c\xef\x66\x95\x1c\x0a\x80\xe2\xd6\ +\xc3\xb4\xda\xf1\xee\x00\xff\x0e\x7e\xf5\x04\x25\xb0\x2b\xde\x88\ +\x94\xad\x60\x26\xb3\x4b\x56\x3b\x2f\xdf\xbf\xd4\x4a\x0b\xd9\x59\ +\x9d\x8d\x96\x51\xe8\x4f\xf6\x9d\xb8\xa4\xa4\x5b\x56\xed\x68\xca\ +\x2a\x47\xc9\xdb\xf9\xfb\x3c\xab\x37\x0b\x93\x78\xb6\x4b\xe0\xf1\ +\x5b\xe1\x86\xe5\xeb\x4d\x7d\x2a\xcd\xb3\x85\x09\x77\xc5\x71\xd4\ +\x8d\x47\xa1\xe4\x76\x06\xfd\xc2\x89\xd6\x20\x3b\xc6\xb6\x6b\x08\ +\xd7\x27\x61\x67\xa3\xae\x90\x64\x3c\x95\x67\x82\x25\xd9\x36\xa7\ +\x4d\xcd\xb7\xe0\xe3\x34\x2d\x68\x55\xe5\xab\x3c\x85\x01\x2f\x77\ +\x45\xb3\xce\xcb\x8f\x15\xbd\x61\x1f\x77\x05\xaf\x3f\xe6\x5b\x0a\ +\x70\x28\xc0\xf5\x7e\xec\xb0\xe3\xa2\xb6\x0e\xd9\x0e\x80\x0c\xc2\ +\x8b\xca\xa3\x52\x5e\x83\x76\x9e\xb1\x55\x25\xad\xba\x5b\xc9\x11\ +\x5c\xab\xd3\x81\x16\x9c\xc4\xa8\xf8\x59\xd0\x2c\x87\xd0\xec\xec\ +\x46\x2b\xa6\xbc\x28\x58\x0a\xf8\xd0\x62\x4f\x8f\x95\xa9\x0d\x60\ +\xa9\xe9\x54\x3f\x86\x6b\x5f\xf7\xfa\x79\x55\xf3\x9d\xb2\x05\x24\ +\xea\x63\x21\xaf\x0f\x42\x0b\x56\xe4\x22\x79\x02\xd1\x84\x22\xf4\ +\xbc\x15\x71\x70\x56\x5e\x1f\x13\xf7\xb9\x39\xcc\xe1\xab\x55\xc5\ +\x60\x63\x34\x92\xb5\x6e\x81\x19\xb0\x17\x31\x0d\xe7\x7e\xbb\xa1\ +\x4b\xbb\xb9\x97\x77\xf3\xf5\x6e\x73\x67\x7a\xed\xfb\xc1\xd8\xe6\ +\x48\xb2\x11\x0c\x72\xfa\xc9\x05\x3c\x6f\x87\x9b\x20\x1c\x6a\xf5\ +\xba\x17\x7e\x28\xf3\x1a\x92\xb7\xa9\x98\x78\x27\x13\xe0\xd7\xf2\ +\x43\xc5\xce\xac\xde\x0b\x5a\x56\x90\x6d\xdb\x85\x09\x81\x28\xf2\ +\xc3\x53\x88\xdd\x88\x44\xbe\x8b\xe3\x19\x92\x3f\xa3\xa1\x1d\x84\ +\xd8\xf3\x03\x9f\xcc\xb0\x4d\x50\x14\xc5\x7e\xfc\x6c\x38\xbe\x0b\ +\x88\xf9\x7a\x78\x84\x21\xc6\x83\x16\x2f\x4c\x6f\x50\xc2\x88\xa0\ +\x1e\xc7\xb9\x23\xe3\xb0\x7d\xd3\x59\x22\x53\x24\xbb\xc9\xd9\x7e\ +\x08\xd6\x25\xd5\xc7\xdf\x41\x36\xb4\xce\x04\xa0\x56\xed\xd3\x2b\ +\x96\x5c\x64\x4c\x28\x55\xd0\x3e\x13\x55\xef\xef\xae\x0c\x5c\x4d\ +\xfd\x22\x57\xd5\x7a\x74\x59\x5f\x6d\x68\xc6\xf7\x70\xb3\x53\xe5\ +\x67\xce\x01\x42\x17\x28\x21\x0e\x23\x74\xa6\x4e\x0f\x0b\xd3\x72\ +\x03\x3b\x8a\xdc\xc8\x8b\xcf\xb4\xf2\x40\xbe\xed\x85\x3e\x46\xd1\ +\x99\xb2\x11\x02\x1c\x65\x15\xf4\xc8\xe0\x56\xed\x1f\x15\x0c\xd5\ +\x86\xef\xd7\x42\xa2\x53\x8b\x86\x9d\xce\x94\x1a\x6b\xb9\xe4\x87\ +\xcb\x6a\x60\xa2\x46\x96\x20\xab\xe9\x22\x65\x77\x18\xaf\xda\xe4\ +\x19\xab\x2e\x4f\xdc\xe7\x25\x80\x60\xf5\x14\xea\x12\x8d\xf1\xa9\ +\x85\xe2\xd3\xf0\xfc\x56\xbd\xc5\x61\xc8\xe9\x53\xd5\xf1\x76\xd5\ +\x96\x1e\xf2\x6d\xfe\x99\x65\x43\x8e\x6a\x93\xaa\xa4\x3b\x6b\x5d\ +\xf0\x25\x2d\xfa\xd3\xf7\x59\x39\x81\x45\x05\x62\x7d\x94\xc5\xe3\ +\x70\x94\xb2\x49\x82\x49\x01\x09\x83\x21\x9e\xb9\xc8\x81\x93\x0f\ +\x63\x0e\xea\x44\xc7\xb1\x48\x96\x1a\xe8\x2b\x0e\x6d\x80\xb5\xe1\ +\x17\x9e\xea\x8e\x63\x9d\xca\x80\xf3\xc0\x6f\xe5\x5b\x56\xd3\x8c\ +\xd6\x74\xc8\x02\x25\xc1\x71\x8c\xd4\xcd\xa0\xc6\x27\xbf\xbd\x7c\ +\xa5\x19\x30\x4d\x93\x3f\xb8\xf8\x34\x90\x97\x34\xa0\x4b\xde\x80\ +\x2b\x34\x2b\xcb\x62\x90\x26\x32\xf3\x69\x7d\xdd\xd6\x17\x59\xd0\ +\x7f\x84\xba\x0a\xf9\xa8\x15\x13\x63\x09\xd6\xb0\x68\xb7\xac\x60\ +\x5d\xc1\xbe\xd8\xe3\x64\xe9\x36\x97\x93\x9c\x77\x75\x5e\x14\x6f\ +\xe4\x26\x23\xa6\xee\x17\xcd\xeb\x82\x8d\xe8\xdb\xe9\x4f\xaf\x18\ +\x76\x74\xb9\xb9\xa3\x6e\xdf\x8e\xd6\x03\x2a\x93\xa4\xd0\x8e\x2e\ +\xe8\x92\x41\x10\xbc\x95\x4a\xe3\x4c\xbb\x16\xbc\xd9\x6d\x79\xc6\ +\xfa\xe9\x0a\xcd\x1d\xad\x37\xda\x65\x5d\xf5\x58\xc1\xe9\x13\xb8\ +\xd7\xd3\x27\xe7\xbc\xfb\xec\xb9\xd4\x8e\xca\x56\x3b\x14\x4d\x01\ +\x15\xf8\x86\x95\x3c\xcb\xa0\xd2\x08\xfe\x89\x75\xf9\x92\x68\xdf\ +\x0f\xdc\x28\xdd\x6a\xb8\x44\x52\x6a\x18\x87\xc0\xad\x28\xc0\x31\ +\x21\x91\x91\x1a\x16\x98\xa3\x30\x8c\x82\x19\x92\xef\x91\x4b\xe2\ +\x30\x04\x22\x8e\x50\xe0\xc6\xc8\x1d\xc9\xfa\x17\xdf\xf8\xdd\x70\ +\xc3\x6e\x8f\xd0\x78\x6d\x78\x76\x80\x60\xba\x4b\xba\xc5\xe2\x20\ +\x0c\x11\xf6\x60\x35\x17\x16\xc1\x98\x04\x1e\x4c\xf5\xec\xd0\x0f\ +\x43\xb0\xbf\x28\x2c\x8c\xbe\x06\x60\x55\x0c\xb0\x92\xb8\x33\x4b\ +\x8b\x52\x03\xc9\x65\xb1\x1d\xc6\x08\x05\xe1\xcc\x3a\x5f\x16\x8f\ +\x85\xaf\x0d\xec\xda\xa4\x7d\xe0\xcc\xc4\x8e\xc2\x20\x86\x9a\xd2\ +\xae\xa3\xae\xed\xc5\x86\xd5\x5f\xd6\x9d\x59\xfa\x8a\xfa\x6d\x24\ +\xfb\x3c\x49\x5f\x01\x05\xd6\x27\x5e\x34\x08\x87\xea\x5b\x96\xa0\ +\xe4\xc2\x02\x62\xbd\xa1\x75\x23\x98\x4c\x60\x5d\xd2\xe5\xcc\x4b\ +\xee\xef\x0b\xcd\x5d\xbd\x2d\xdb\x0c\x2f\x42\x68\xea\x7c\x3d\x94\ +\x71\x04\xc7\x49\xaa\xbf\x1a\x2a\xd8\x58\xfa\x27\xcf\xcb\x04\xd2\ +\x86\x09\x25\x6d\x07\x05\x10\x5e\x9d\x78\x4a\x96\x51\xa8\x44\x42\ +\xd0\x63\x52\xc2\x37\xcb\x58\xda\x35\x2f\xc3\x4e\xba\xc3\xe9\xb1\ +\x26\xe4\x0c\x28\x12\xc7\x43\x77\xa1\x58\x1d\x7c\x13\xc2\x33\x20\ +\xa8\xc8\xfc\x5c\x03\x6c\xa7\x5c\x39\x2a\xf1\x20\x24\xb6\x37\xa5\ +\x40\x31\xe1\x4f\xd1\x52\xa1\x8b\xa0\xb9\x20\x43\x0b\x77\x6b\x02\ +\x8e\x6e\xda\x35\x71\xa7\xe8\xba\xb6\x4f\x70\x24\xbb\xbb\x53\x98\ +\x97\x4d\x5d\x3f\x14\xc8\xda\xf7\xe3\xfc\xfd\x65\x08\xe6\x99\xbe\ +\xb6\x0c\x6b\xcf\x8e\x3c\x78\xfc\x09\xe8\xf2\x86\x40\xe0\xc1\x9d\ +\xa3\x53\xc3\xa1\xcb\x04\xf0\x96\x64\x56\xa8\xd0\x69\xfa\x00\xd0\ +\x01\xe7\x44\x44\x7e\xa9\x7d\x0b\xe8\x08\xb1\xc3\x36\xa2\x66\xea\ +\xc3\x8b\x48\x76\xc0\xb6\x77\x09\xb5\xbb\xe7\xf4\xff\x19\xb5\xad\ +\x0c\xb8\x20\x82\x27\x9e\x01\x7e\x3d\xdf\x03\x77\xda\xa1\x2b\x1f\ +\xa0\xe2\x8b\xaf\x67\x88\x42\x2e\x63\x0b\x7d\x39\x4f\x7e\xa7\xa0\ +\x41\x80\xe9\x50\xf3\x5a\xf8\x54\xc1\xf1\xb0\x7c\x6e\x7b\x3f\xc7\ +\x2d\xf2\xfe\x39\xd4\x22\x76\xce\x6d\x01\xf1\xe5\xbf\x5d\xf0\xb7\ +\x40\x0d\x7c\x26\x59\xcc\x9b\x11\x64\xe3\x0e\x1b\xd5\xc7\xc8\x0e\ +\x80\xf8\xf2\x31\x70\x97\xbc\xde\xcc\xc2\x3d\xeb\x81\x55\x9f\xd9\ +\x83\x95\x16\x11\x1b\xab\x81\x6c\x69\xba\x08\x35\xde\x1a\x3a\x9c\ +\x67\x04\x1b\xc4\xb7\xe3\x36\x72\xb5\xf4\xcc\x13\x1e\x22\xe1\xa3\ +\x89\x5f\x80\xa3\x85\xf1\x41\xe2\xd7\xfa\x8a\xfe\xe8\x3b\xc5\x2d\ +\xb6\xfd\x8e\x01\x1f\x04\xb7\xf8\xb1\xe0\x46\x5c\x1b\xf7\x45\xe6\ +\x21\x70\x7b\x34\x75\x66\xc4\x61\x0f\x81\x1b\x79\x2c\xb8\xe1\xd0\ +\x0e\xbb\x2e\xfa\x41\x70\xbb\x7b\x87\xfd\x5d\x7f\x7d\x4c\x9a\x41\ +\x95\xb1\x5f\xdf\x0c\x5a\xf8\xf1\xc1\xa6\x0b\xc4\x3d\x60\x73\x1f\ +\x21\x6c\x2a\x5f\xef\x01\xdb\xbf\x49\x6e\xff\x15\xd8\x54\x1b\x77\ +\x0f\xd8\xbc\x47\x08\x9b\xfa\x7a\xbb\x07\x6c\x5f\xda\xba\xcd\x9d\ +\xf5\xf5\xd5\x5c\xfe\x6f\xfc\xfa\xea\x6f\x89\xcc\x6b\x21\ +\x00\x00\x12\xa8\ +\x00\ +\x01\xe6\x23\x78\x9c\xed\x5d\x4b\x73\xe3\xc6\x11\xbe\xef\xaf\x60\ +\xb8\x97\xa4\xb2\x18\x62\x06\x6f\xae\x24\x1f\xe2\x4a\xc5\x55\xc9\ +\x25\x71\x92\xa3\x8b\x22\x21\x89\x59\x92\x50\x81\xe0\x4a\xf2\xaf\ +\xcf\x0c\x9e\x24\xd8\xb2\x45\x37\xd0\x58\x19\xcd\xb5\x6b\x97\x00\ +\xf8\x9a\x0f\xfd\xfc\x7a\xba\xaf\xbe\x7b\xde\x6e\x26\x5f\xe3\x74\ +\xbf\x4e\x76\xd7\x53\x29\xec\xe9\x24\xde\x2d\x93\xd5\x7a\x77\x7f\ +\x3d\xfd\xf7\x8f\x7f\xb5\xc2\xe9\x64\x9f\x2d\x76\xab\xc5\x26\xd9\ +\xc5\xd7\xd3\x5d\x32\xfd\xee\xe6\xc3\xd5\x1f\x2c\x6b\xf2\x97\x34\ +\x5e\x64\xf1\x6a\xf2\xb4\xce\x1e\x26\x3f\xec\xbe\xec\x97\x8b\xc7\ +\x78\xf2\xc7\x87\x2c\x7b\x9c\xcf\x66\x4f\x4f\x4f\x62\x5d\x1e\x14\ +\x49\x7a\x3f\xfb\xd3\xc4\xb2\x6e\x3e\x7c\xb8\xda\x7f\xbd\xff\x30\ +\x99\x4c\xf4\xe7\xee\xf6\xf3\xd5\xf2\x7a\x5a\xbe\xe0\xf1\x90\x6e\ +\xf2\x0b\x57\xcb\x59\xbc\x89\xb7\xf1\x2e\xdb\xcf\xa4\x90\xb3\x69\ +\x73\xf9\xb2\xb9\x7c\x69\x3e\x7d\xfd\x35\x5e\x26\xdb\x6d\xb2\xdb\ +\xe7\xaf\xdc\xed\x3f\x1e\x5d\x9c\xae\xee\xea\xab\xcd\xb7\x79\x72\ +\xf2\x8b\x64\x14\x45\x33\x5b\xcd\x94\xb2\xf4\x15\xd6\xfe\x65\x97\ +\x2d\x9e\xad\xd3\x97\xea\xef\x08\xbd\x54\xd9\xb6\x3d\xd3\xe7\x9a\ +\x2b\xdf\x76\xd5\x7c\xaf\x17\xf4\x51\xff\x5f\x5f\x5e\x1d\x10\xfb\ +\xe4\x90\x2e\xe3\x3b\xfd\xba\x58\xec\xe2\x6c\xf6\xfd\x8f\xdf\xd7\ +\x27\x2d\x5b\xac\xb2\xd5\xd1\xdb\x54\xeb\x79\xf2\xa9\x27\x8b\xbc\ +\x5b\x6c\xe3\xfd\xe3\x62\x19\xef\x67\xd5\xf1\xfc\xf5\x4f\xeb\x55\ +\xf6\x70\x3d\x75\x5c\x21\x1d\xfd\xf0\xf2\x83\x0f\xf1\xfa\xfe\x21\ +\x6b\x1f\x5d\xaf\xae\xa7\xfa\xdb\x7b\x8e\xb2\xf3\xe7\x47\x37\x87\ +\x2c\x2e\x28\xdf\x78\x5e\x9f\xb1\x45\xa4\x84\x9c\xa4\xd2\x73\x82\ +\xe2\x9a\xea\x27\xcc\x57\xc9\xd2\x7c\x27\xfd\x96\xf1\x76\xbd\x38\ +\x64\xc9\x56\xa3\xb6\x5c\x6e\x16\xfb\xfd\xfa\x6e\xbd\xd4\x4f\x92\ +\xdd\xe3\xe6\x70\xbf\xde\xfd\xa4\xdf\x34\xcb\xe2\xf4\xa7\x74\xb1\ +\x37\x7f\xad\xd6\xfb\xc7\xcd\xe2\x45\x54\x2b\x59\x7f\x6c\xfc\xfc\ +\x98\xa4\x99\xf5\xbc\x7a\xd4\xeb\xe9\x07\xc2\x03\x4f\xbf\x34\xa7\ +\x6f\xf4\xf9\xab\x55\x7c\xb7\x37\xd7\x15\x3f\xd0\x3c\xd3\xbf\x50\ +\x4d\x27\xb3\xfc\x6c\xfd\x7d\xcd\x97\x5d\x7d\x5d\xc7\x4f\xcd\xb5\ +\xb7\x8b\x7d\xb1\x88\x93\xc9\xe3\xe2\x5e\xdf\x70\x9b\x24\xbd\x9e\ +\x7e\xbc\xcb\x1f\xe5\x89\xdb\x24\x5d\xc5\x69\x75\xca\xcf\x1f\x27\ +\xa7\x12\x0d\xca\x3a\x7b\x29\x44\xac\x7c\xef\xea\x1b\x9b\x77\xad\ +\xcf\xdb\xf0\xf9\xfd\xc3\x62\x95\x3c\x5d\x4f\x55\xfb\xe4\xcf\x49\ +\xb2\xbd\x9e\x06\x22\x92\xa1\xed\xca\xa0\x7d\x7a\xf9\x7c\x3d\xb5\ +\xa4\x14\xa1\x13\xb9\x5e\x74\x76\xd6\x7c\xa1\x48\x9f\xf4\xfc\x12\ +\xb8\xe3\x93\x87\x34\xd5\x42\x68\x69\x10\x62\xfd\xab\xf2\xbf\x9c\ +\xf2\xa2\xfd\x43\xf2\x74\x9f\x9a\xd5\xc9\xd2\x43\xdc\x7e\xa5\x39\ +\x63\xdd\xde\x26\xcf\xf0\x69\x7d\x4f\x1c\x8c\x78\x5b\x87\xdd\x3a\ +\xd3\x22\xf4\xf8\x7c\xfc\xae\x87\xf5\x2a\xde\xbf\xf2\xbe\xe6\xdc\ +\x2f\xbc\xf1\xd3\x7a\xa7\x17\xc9\x2a\x6f\x76\xe9\xd4\x18\xb4\xaf\ +\xa8\xee\xfc\xc0\x0e\x5f\xb9\x42\x7f\xc2\x19\x0e\xe5\xa9\x97\xd7\ +\x4f\x6d\x17\xcf\xeb\xed\xfa\xe7\x58\xaf\x8b\xcc\x6f\x3b\x7d\x6b\ +\x9d\xac\x4a\xf1\xb2\xc9\x24\x7b\x31\x52\xfc\xfc\x62\x8e\x4d\xab\ +\x83\x66\x39\xcd\x01\xcf\x71\xfd\xfa\x60\x92\xae\xb5\x70\x1c\x7d\ +\x9d\xea\xd0\xcb\xf1\x21\x23\xf3\x5a\x65\x3f\xe7\xf7\x57\x7e\xf7\ +\x05\xed\x73\x2f\xc7\xe7\xca\xdb\x7e\x76\x7e\xdf\xe7\xc7\xb7\x71\ +\xb6\x58\x2d\xb2\x45\x23\x04\xd5\x11\x2d\x34\x5e\xf5\xcb\xb4\xfa\ +\x9c\xff\xf3\xfb\xbf\xde\x94\x1f\x74\xb5\x5c\xce\xff\x9b\xa4\x5f\ +\xaa\xcf\x9d\x4c\xcc\x05\x8b\xdb\xe4\xa0\x57\x7a\x7a\x53\x1f\xbe\ +\x5a\x2d\xe7\x5a\xe1\x69\x45\x70\xb3\xde\xea\x5b\xdb\xe8\xca\x3f\ +\x6b\x05\x77\x35\x6b\x4e\x9c\x5c\x6c\x16\xab\x79\xd3\xe2\x6d\xd3\ +\xb8\xd0\x9c\xa0\xf9\x58\x2d\xb7\x6b\xf3\xa2\xd9\xbf\xb2\xf5\x66\ +\xf3\x83\xf9\x90\xf2\x17\x1f\xbd\xe9\x3a\xdb\xc4\xcd\xc1\xab\x59\ +\xf9\xed\xcb\xdf\x36\x3b\xfa\x71\x57\xb3\xea\xd7\xe7\xcf\xee\x9b\ +\x55\xc9\x65\xe2\x4c\x70\x36\x8b\xdb\x78\x73\x3d\xfd\xbb\x39\x39\ +\x39\x3b\x7b\x9f\x26\x87\xc7\x6d\xb2\x8a\xcb\x97\x57\x58\xdc\xff\ +\xda\x75\xad\x8f\x75\x5e\xfb\x58\x6d\x14\x37\x9b\xa4\x06\x29\x5e\ +\x66\xf5\x9d\x90\xbd\x6c\xf4\xdb\xe5\x6a\x6a\xfe\xd1\xce\x1f\x9f\ +\x4b\x3d\xab\x8d\xcb\x66\xbd\x8b\x3f\x27\x5a\xab\xdf\x6d\x92\xa7\ +\xf9\xd7\xf5\x7e\x7d\xbb\x89\x3f\xe7\x7f\xaf\x37\x7a\x41\xeb\x43\ +\x77\x7a\x55\xe7\x1f\x6f\x1d\xf3\x27\x7f\x62\x95\xea\x6b\x2e\x8b\ +\xa7\xe9\x61\x13\xcf\x77\xc9\xee\x67\xad\xf8\x3e\xef\xb3\x34\xf9\ +\x12\xcf\xb5\xc2\x0c\x3d\xfd\x79\xc5\xd3\x42\x48\xe7\x9e\x90\x91\ +\x74\x7d\x3f\x94\xd5\x71\xf3\x25\xf4\xcf\x99\xdf\x1e\xb2\xec\xf8\ +\xd8\xff\x92\xf5\x6e\xae\x61\x8d\xd3\xea\x68\xfe\x64\xa3\xe5\x2d\ +\x9b\xbb\xd5\xb1\xd5\x42\x2b\xca\x34\xd5\x3f\x47\x7f\x7a\x7c\x7c\ +\x34\xb9\xbb\xdb\xc7\xd9\x5c\x69\x65\xa7\x42\x5b\x7a\x61\x75\xb2\ +\xf9\xea\xdb\x45\xfa\x25\x4e\x8b\x57\xc6\xbb\x85\xfe\xa5\xd6\xed\ +\x62\xf9\xc5\x00\xb1\x5b\xcd\x17\x4b\xad\xb5\x0e\x1b\xed\xf2\x9c\ +\x08\xac\x59\x5f\xc7\xb6\x1b\x71\xab\x4c\xad\xaa\x8f\x54\xda\x46\ +\xf9\xe2\xc4\x32\x68\xb3\xae\x0f\x16\xb6\xd7\x71\xeb\x83\x2f\xd0\ +\xc1\x54\x1f\xd5\x2f\x8f\x1c\x2f\xf4\x9d\xfa\x66\xbe\x7a\x5c\x64\ +\x0f\x2d\x74\x73\x70\x8e\x7e\x7d\x0d\xf4\xc9\xc2\xd7\x9f\xe0\xf6\ +\xb9\xf0\xf5\xda\xd6\xbf\x43\xaf\xd8\x3f\x26\xb5\x1e\xfa\x64\xd5\ +\xff\x9c\xfc\x67\xe2\x38\xc5\x93\xe0\x64\x81\xcd\x4f\x54\x51\xd4\ +\x2c\x5a\x63\xa0\x92\x9d\xfe\xca\x59\x92\x5a\xda\x54\x7d\x5d\x64\ +\x87\x34\x3e\xd1\x89\xb5\x6e\xd3\x42\x64\xd4\x81\xb6\x2a\xcb\xe5\ +\x7b\x5f\x3b\xc7\x13\xea\x53\xbd\x52\x93\xbf\x4d\xce\x15\xfe\xd1\ +\xaa\x85\xdf\xce\xaa\x49\xa1\x41\xb4\x95\x17\x3e\x3e\x5f\xbe\x6c\ +\xe0\x62\x6c\x27\x15\x12\xce\x27\x15\x88\x20\xff\xd7\x64\x59\x1f\ +\x75\x3f\xd9\xaf\xfd\xfb\x6c\xad\x9c\x20\x50\x96\xfd\xe6\xd5\xea\ +\xe4\x26\x92\x81\xe7\x4a\xcf\xeb\x70\x3d\x7c\xe1\x7e\xaa\xbc\x79\ +\xb3\x12\xf6\x27\xcb\x15\x2a\xbf\x3d\x5e\xfb\xf7\xf9\x4a\x84\xee\ +\xbb\x5f\x07\xed\xf0\x16\x77\x43\x27\xab\x61\xbd\x5d\x8a\xbe\xd1\ +\xf5\x50\xaa\xa3\x1b\xc3\x8a\xde\xfd\x52\x04\x9d\xde\x1a\xef\x5e\ +\x54\x6a\x53\xd2\xcd\x7a\x38\xef\x7d\x3d\x64\xd0\xe9\x7a\xbc\xdd\ +\x6d\xf9\xd5\xf5\xc8\x33\x0e\xf5\x1a\x0c\x62\x64\xb5\x1a\x41\xd9\ +\x57\x4b\xfd\x9e\x96\xa3\xbe\x55\x70\x6b\x22\x09\x45\xa6\xe7\x05\ +\x91\x5d\x38\x61\xa4\x3a\xa4\xdf\x05\xf1\xb1\xf2\xe2\xfe\x6e\x96\ +\xa2\x09\xf4\x50\x0b\xf2\x1b\xfc\x8f\xfe\x32\x20\x46\xff\xe8\xd7\ +\xbf\x39\x03\x02\xad\xba\x7d\xf9\x5a\xff\xa6\xc4\x87\x7d\x86\x14\ +\x22\xdf\x11\xda\x8d\x22\xaf\xb2\xad\xe2\x3c\xe1\x61\x8b\x48\xba\ +\x2a\xf4\x82\xe6\x94\xc9\x50\x3a\xc2\x3d\xb5\x98\x26\x35\x59\xaa\ +\x0e\x8f\x71\xeb\x17\xb7\x23\x95\x72\x39\x72\x9e\x08\x4f\x53\x0d\ +\x8c\x1c\x21\x72\x11\x02\x39\x57\xf8\xe7\xc8\x79\xc2\x89\x6c\x37\ +\xf0\x19\xb9\xbe\x65\xee\x28\x85\x70\x39\x76\xa5\x9b\x19\x32\x76\ +\x43\x60\x87\xb1\x74\x90\xd4\x45\x22\xc7\xcd\x51\x8c\x5c\xef\x52\ +\xe7\x77\x2c\x75\x8c\x1d\x99\xad\x3b\x8a\x02\x3b\xf2\x53\x1c\xe1\ +\xf9\x32\xb2\xd9\x4f\x21\xb0\x76\x28\x5f\x25\x6c\x67\xd4\x18\x3d\ +\x4a\x7b\xd7\xb5\xe0\x85\xc2\x0e\x34\x74\x32\x62\xe8\x7a\x17\xbc\ +\xae\xc5\x8e\xb1\xa3\x33\x78\x08\x47\x53\xd9\xed\xca\x12\x0e\xcc\ +\xa9\x0d\x9e\xec\xda\xe2\x31\x7c\x44\xf0\x61\xa2\x04\x30\x97\xc9\ +\xbe\x0a\x99\xe0\x21\x9c\x15\x58\x69\x32\x76\x64\x06\x0f\xa3\x31\ +\xa3\x42\xee\x38\xb3\x32\x98\xc1\x43\x68\x4d\x25\x81\x30\x81\x14\ +\x3d\xf3\xea\x70\xac\xe8\x45\x80\xd2\x6c\xd7\x90\x56\x00\x9e\x9f\ +\x29\xf0\x3b\xaf\x59\x96\x76\x95\xec\x64\xfc\x7a\xb7\x7a\x68\x04\ +\x1d\x40\x7f\x32\x82\x74\xb6\x0f\xd0\x9e\x97\x01\xa8\xc4\xa9\xf4\ +\xb9\x22\xca\x65\x92\xb1\x23\xb0\x7d\x1e\x16\x3d\x57\x78\x05\x5a\ +\x0c\xe1\x10\x29\x4e\x28\x6c\x40\x89\x5f\x58\xe2\x19\x32\x76\xfd\ +\x93\x7a\x50\xe0\x80\x17\x3f\x86\x90\x90\xdb\xc3\x6b\x50\xd0\x81\ +\x51\x82\xd1\x23\x49\x76\x42\x44\xc3\x65\xf8\x79\xc2\x67\xe8\xc8\ +\xa9\x3d\x3c\x6e\x90\xdc\xf9\xc2\xcd\x97\x49\x32\x82\xfd\x33\x7c\ +\xf8\xd0\xa1\x25\x7a\x8c\x1e\x21\xc7\x87\x47\xaf\xdc\xbf\xc6\xb9\ +\x97\x01\xa9\x3e\xbc\x07\xda\x36\x7f\x0c\x20\x15\xd9\x87\x8f\xfd\ +\xc0\xec\x27\xfb\x2f\x24\x89\x4f\xeb\xac\xd1\x46\x27\xfa\x93\xd1\ +\x23\x21\xfc\xf0\xee\xe7\x59\x0b\x15\x8e\xdc\xa9\x79\x3f\x7c\xec\ +\x1e\x8a\x20\x32\x0f\x06\x71\x08\x10\xb1\xf6\xaf\xf1\x55\x8e\x35\ +\x68\x24\x14\x07\x11\x44\x46\x10\xd8\xc2\x77\x19\x82\xc6\xdc\x31\ +\x78\x83\xd8\x40\xac\xff\x52\x95\x05\x9e\xf6\x0b\xab\xb3\x32\x0c\ +\x20\x81\x05\xc4\x1a\x40\xe9\x00\xf5\x2f\x8c\x21\x1d\xfd\x07\x94\ +\x5a\xe3\x85\xb0\xd9\x31\xc6\x00\xf6\xcf\x01\xa2\xf5\x28\x24\x83\ +\x0c\x21\x25\x07\x88\x4d\x85\xb6\xdd\x98\x26\x31\xc3\xe8\x51\x70\ +\x80\x36\x16\xbf\xba\xe0\x85\x41\x1c\x86\x0d\x44\x23\xd8\x0e\x24\ +\xb8\x84\x89\x90\x08\xec\x45\xfe\x18\x42\x4a\x36\x10\xed\xc5\x80\ +\xbd\x41\x38\x9c\xa7\x65\x03\xd1\xe1\x04\x28\x88\x8c\x22\x1d\x25\ +\x88\x56\xa5\x50\x4e\x94\x5d\x19\x4a\x62\x10\x9d\x94\x81\x54\x29\ +\x43\x48\xca\x0e\xa2\x31\x3c\x2d\xaa\xe0\x68\x9e\x94\x17\x44\x2b\ +\xd1\xb0\xec\xff\xc9\x20\x0e\xb4\x29\x09\x5d\xd7\x04\x43\x48\xd2\ +\xa4\x6e\xd4\xd8\xe5\x9b\x92\xd0\x7e\xa8\xb2\xa1\x3e\x14\x8c\x1e\ +\x45\x32\xd4\x43\xd7\xc6\x34\x01\xc3\x31\x7a\x75\x9a\x9b\x41\x24\ +\xd9\x17\x81\x17\x42\xb0\xbc\x90\x61\xa4\x0b\x06\xf1\x92\x08\x66\ +\x65\x18\x42\xca\x32\x51\x7c\xa1\x28\xb8\xc3\x8c\x41\x24\xf4\x46\ +\xd1\x95\x6a\xbc\xc5\x6c\x20\x47\x14\x1d\xc8\x83\x71\x04\x03\x48\ +\xe7\xc6\xf4\xe3\x8d\xf2\x36\x17\x42\x37\x06\x9b\x8f\x01\xeb\xb4\ +\xbd\xc2\x3b\xa5\x69\x4b\x38\x6a\x08\x4b\x37\x06\x5d\x6d\xff\x0d\ +\x34\x6b\x32\xa3\xba\x46\x8a\x62\xe4\x40\xb3\x1f\x5c\xcf\xfc\xf1\ +\x00\x04\x1d\xdb\x09\xf4\x7f\xad\xb4\x4c\x64\x2e\x3f\xf5\x66\x3c\ +\x11\xf8\x2a\xf2\x89\x98\x89\x11\x23\x68\xda\x6d\x41\xb5\x6a\x97\ +\x61\xa8\x03\x07\x73\x3d\x63\x38\x58\x34\x01\xec\x9a\xb8\x0c\xc2\ +\x56\xcf\x1f\x23\x96\x81\x7e\x90\xf4\xc6\x1e\x35\x7a\x45\x50\x01\ +\x78\xa4\x97\xe1\xa7\x5d\x17\x3b\xb2\x23\xc5\x20\x0e\xd4\x74\x0b\ +\xe2\xe8\x51\x22\x28\x1d\x21\x3d\xfd\x60\x37\xa6\x7f\x11\xf4\x2d\ +\xb0\xed\x01\x5e\x04\x19\x44\x62\x9e\x09\x48\xab\x75\xe0\xcb\x84\ +\xc2\x5c\xe8\xb3\x22\xa5\xca\xd0\xa0\x85\xd1\xd7\xde\xa7\xe3\x3b\ +\x21\xc3\x38\x54\x33\x2e\x28\xc3\xdd\x81\x28\xda\xc2\x73\x43\xe9\ +\x12\x25\x4b\x47\x8c\x61\xde\x8e\x0b\x1f\xdf\x83\x82\xc8\x20\x12\ +\xb7\x74\xea\x49\xa1\x72\x8c\x4f\x98\xf2\x46\x07\x18\x60\xaa\x8d\ +\x6d\x22\xe5\xae\x26\xb4\x51\x94\x4a\x28\x19\xea\x3f\x27\x20\x46\ +\xc2\x0f\x5c\x3b\x20\x1a\x2f\x31\x62\x10\xf3\x3a\x52\x88\x7c\xba\ +\x0c\x44\x5f\x78\x1a\x43\x4e\xd6\x0c\x49\xe3\x43\x45\x34\x97\xa1\ +\x18\x09\x57\xc7\xfb\x92\x51\x1c\x30\xde\xc7\x2b\xd4\x50\x68\xf3\ +\xe7\xf8\x6c\x15\x07\x0d\xf8\xc1\xe6\xb1\x1d\xb8\x37\x6c\x19\x29\ +\x6b\x4b\xd1\x61\x86\x8e\x28\xa4\x0a\x54\x20\x59\x1a\x07\x2c\xcb\ +\xc0\xd3\x51\x60\xea\x86\x65\x91\xb2\xbe\x14\x0d\xa2\x74\x34\x5e\ +\x5a\x18\x87\xdc\x77\x38\x62\x10\xab\x6a\xd3\x5e\xa2\x0d\x86\x91\ +\xd6\x4f\x55\xe8\x0a\x0d\xd8\x32\xba\xfa\x4d\x22\xe5\x13\xf5\x51\ +\x18\x31\x8c\x75\xe9\x30\x3a\x23\x0e\x07\x1c\x0c\x24\x71\xe5\x29\ +\xbe\x64\xea\x1b\xa8\x5c\x1c\x71\x05\xb1\xa9\x3d\x45\xcf\x1b\xe1\ +\x81\x3f\x83\x17\x9f\xa2\xb7\x94\xf2\xc4\x9f\x81\xe0\xcb\x8b\xde\ +\x00\x6b\x88\x1f\x57\xe8\x96\x5b\xf5\x89\x02\xfe\x11\x63\x58\x94\ +\xbe\xa1\xb7\x61\x40\x93\x2b\x18\x44\xda\x10\x03\x2d\x89\x2d\x45\ +\xca\x43\x2b\xa8\x63\x0b\x34\x82\xd0\xf8\x1f\x86\x91\xb4\xe8\xad\ +\xeb\xe1\x69\xaa\xdc\x2b\xcc\x01\x45\xff\x52\x68\xd2\xa6\xbd\x8c\ +\x30\x64\x10\xe9\x4c\x61\x27\x53\xf0\x22\xa0\x7f\x3e\x07\x16\xe4\ +\x45\x8b\xe8\x4d\xde\x90\x30\x32\x8e\x94\x94\x70\x2f\x9d\x6a\xd8\ +\xa7\xa1\xcd\x96\xa2\x8d\x22\xa4\x4f\x19\x44\x3a\xa3\x28\x3b\x18\ +\xce\x05\x76\xcc\xe0\x20\x9f\xd2\x28\xfa\x1d\xf4\xc1\x74\xec\xa2\ +\x1f\xbb\x62\x18\x87\xe5\x11\xb1\x83\x0e\xc1\xde\x27\xec\xdc\x90\ +\x36\x21\x42\x5b\x46\x50\x1a\x9b\x2b\x19\x44\x22\x32\x18\x9d\x01\ +\x67\x26\x71\x60\x32\x18\x8d\x60\x2b\xf1\xc6\xed\xdc\x48\x69\x60\ +\xf4\xf0\x74\x28\xd4\x67\x0c\x49\xb9\x60\x34\x86\x10\x8d\xc8\x61\ +\x22\x2d\x17\x8c\x06\x11\x0a\x13\x19\x44\x5a\x2e\x18\x1d\x5b\x80\ +\xda\x94\x5b\xd4\xd2\xc5\x87\x68\x77\x06\x4a\xb9\x31\x82\x14\xa6\ +\x30\xa7\x81\x7b\x91\x40\x0e\x28\x88\x9b\x9f\xf4\x92\xf8\x66\x14\ +\x69\xd9\x60\x74\x8e\xe6\x34\x39\xc3\x31\x05\x35\x0d\x8c\xae\x8b\ +\x02\x6d\x21\xe3\x48\x98\x29\xed\xba\xca\x9b\x3d\x19\xb2\xec\x28\ +\xb6\x08\xa3\xa5\x3e\x19\x38\x0a\xbb\x67\x08\xdf\x5e\xb8\x09\x8e\ +\xe4\xc9\x09\x5f\x34\x8e\x4e\x79\x94\x71\x1c\x96\xf1\xed\x65\xbb\ +\x1a\xfb\x31\xb4\x8c\x2f\xb6\xc0\x1b\x94\x46\x1e\x3c\x43\xce\xf8\ +\xa2\xf3\xdc\xcc\x17\x0e\xe5\xdd\xe0\xd9\xc2\x48\xf8\xf9\x8a\x9c\ +\xe6\xb7\xeb\xa9\x5e\x04\x08\xde\xdd\xe5\xaf\x1f\x27\x82\x39\xe3\ +\x8b\x1e\xa3\x27\x21\x8e\x82\x12\xc3\x51\x4b\xa1\x61\x7c\xd1\x33\ +\x2c\x6b\x9d\x79\x0c\x21\x6d\x6b\x9a\x11\x43\x58\x10\xbe\xd8\xec\ +\x5a\x1e\xd1\x33\x7e\xc3\xed\xfb\x45\x4b\x21\xa4\x48\x9b\xea\x52\ +\x46\x91\x26\x3e\xc4\xe6\xd9\x9a\xf1\xcd\x0c\xe3\x50\xb4\x2f\x96\ +\xf5\x85\x7d\x1a\xb7\xc8\xc3\x39\x8c\x21\x09\xeb\x8b\x76\x4c\x21\ +\x41\x64\x10\x69\x49\x5f\x2c\xe1\x24\xdb\xad\x4b\x39\xac\x20\x1e\ +\x58\x82\xd6\xa5\xa0\x18\x32\x90\x84\xd9\x52\x6c\x68\x01\xa6\x69\ +\xd8\xa5\xa1\xcd\x95\x76\xab\x49\x19\x3d\x5a\x12\x18\x4b\x57\x34\ +\x7e\x0b\x87\xf8\x03\x92\xc0\xd8\x84\x77\x83\x18\xc3\x38\x28\x07\ +\x8c\x05\xb2\xe1\xed\x8f\x95\xaa\x5d\xee\xdf\x66\x20\x49\x38\xe0\ +\x7e\xa4\xb1\xf6\x57\x19\x44\x22\x0e\x18\xdb\x12\xe3\x5b\xc8\x9c\ +\x8e\xb8\x95\xb7\x69\x01\x8d\x1e\x1b\x34\x7c\x3b\x76\xa6\x82\x3b\ +\x18\x33\x0b\x36\x63\xe7\xa6\xfa\x84\x03\x67\x5c\x28\x52\x44\x0f\ +\xd4\xe3\xa1\x41\x94\x3e\xaa\x07\x7b\xa8\x97\x89\xa2\x12\xed\x92\ +\x0c\x46\x90\x6e\x13\x3e\x7e\x5c\x10\x24\x85\x52\x84\x9e\x0c\x3d\ +\x22\xf6\x62\xc4\x18\x16\x35\x19\xe0\x36\x7c\x9c\x14\x32\x82\xa4\ +\x55\x19\x11\xb8\xe7\xa9\x03\x9f\x86\x07\x77\x11\xe7\x6c\x3a\x90\ +\x45\x70\x1a\x22\x03\x49\x59\x99\xe1\xf4\x33\x5f\x36\x12\xca\xd5\ +\x0f\x8f\x51\xec\x5f\x1c\xf3\x1d\xf9\x78\x18\x21\x61\x64\x18\xe9\ +\xf9\x7d\xf4\xac\x60\x58\xad\x72\xcc\x4f\x98\x0a\xc7\x4f\xd1\x83\ +\xd3\x6f\x94\xb6\x71\xd4\xe9\xb7\x28\x0f\x37\x6c\x28\x13\xde\xc1\ +\xac\x60\x8e\xfc\x49\x73\x37\xca\x0a\xf0\xd3\x49\xa1\x61\xc1\x8c\ +\x23\x6d\xec\xd8\xc5\xf0\x6e\x70\x5c\x30\xc7\x1c\xc4\xc1\xa3\x82\ +\xeb\x89\x3b\x30\x91\xa1\x30\x17\x52\x75\x6c\x1f\x31\x94\xc6\xcf\ +\x31\x59\x00\x34\xd1\xa8\x84\x92\x5a\xb5\xb2\x44\x0e\x49\xfa\x1b\ +\x99\xec\x25\x2f\xc7\xf2\x48\xeb\xeb\x78\xda\x6b\x45\x3b\x3b\xa0\ +\xd7\x4a\x3b\xc2\x7b\xc4\x48\x16\xde\x4e\x2e\x9a\xbd\xe8\x56\x47\ +\x48\x4f\x3f\x88\x0a\xaa\x46\x0c\x64\x53\xde\x18\xf6\xe4\xb8\x32\ +\x94\xd4\xb5\x71\x2e\x9e\x48\xe6\xca\xaa\x41\x91\x04\x94\xaa\x3a\ +\x43\x4e\xfb\x32\xd2\x55\xa1\x17\xa8\x13\xe8\x5c\xa8\x31\x83\x12\ +\xbe\x1b\xf8\x92\xc4\xc5\x19\x37\x74\x56\x08\x24\xe4\xde\x0c\x1e\ +\x58\x5d\xcc\xe0\x91\x55\xe1\x00\x91\xe2\x9b\xb1\xf3\xe0\x56\xb5\ +\xa1\x8c\x6c\x92\xe6\x60\xa3\x86\xce\x14\xdf\x00\xfe\xcb\x9b\xc1\ +\x0b\xab\x6d\x18\x0c\xde\x30\xfb\xbe\x81\x80\xf0\xad\xe0\x29\x09\ +\x0f\x4c\x60\xad\x49\xc9\x0b\x63\xcc\x5e\x04\x75\xc7\x64\x00\x09\ +\xb7\x9b\x22\x0c\x9f\xb2\x81\xd9\x4f\xac\x3b\x49\xb7\x99\x02\x5c\ +\xfe\x9b\xe1\x73\x20\x9f\x93\xe1\x23\x72\x39\x31\x6a\x13\x0c\xf5\ +\x02\x11\x85\x76\xe4\xb2\xda\x24\x90\x3c\x4c\xb8\xf0\xca\xb6\x6e\ +\x06\x8f\xc8\xe6\x05\x18\xc9\x83\x62\x3d\xed\x86\xfa\x8e\x41\x8f\ +\xc1\x23\xb0\x79\x00\x15\x88\x0a\xf6\x18\x3d\xba\x2c\x0b\x22\xd6\ +\x83\xb3\x2c\xbe\x90\x9e\xa2\x19\x88\x30\x6a\xe8\x5c\x9c\xab\x09\ +\x67\x59\x18\x3c\x3a\xce\xd6\xc7\xe4\xc8\x40\x8f\x25\x12\x5a\x69\ +\x7a\x8a\x49\x21\x92\x34\x4b\xf7\x59\x16\xc6\x8f\x6e\x2f\x13\xc6\ +\x67\x01\x85\xcf\x15\x8e\xd6\x9c\x8c\x5d\xff\xb2\x07\x6e\xae\xc7\ +\x49\x1e\x83\x47\xc7\x2e\x00\x1b\x96\x70\xec\x02\x07\xea\xb4\xec\ +\x02\x26\xd3\x02\x4a\x1f\x03\x48\x56\x84\xdd\x79\x8a\x93\x7d\x16\ +\xc2\x92\xb2\xce\x89\x59\x46\x8f\x90\xd7\x43\xb8\x9c\x30\xaf\xc7\ +\xd1\x3a\x25\xaf\x67\x23\x2a\x01\x61\x62\x8f\xf1\xa3\xaa\xe1\x44\ +\xd9\x3d\x30\xcd\x19\x8a\x50\x2b\x4e\x87\x7d\x16\x02\xe1\x0b\xa0\ +\xcd\x7f\xb8\x44\x27\xc3\x47\x57\xc7\x89\x0a\xd7\x7f\xa9\xe3\x36\ +\xf3\x43\x14\x24\x03\x38\x71\x19\x1b\xf0\x31\x7e\x74\xd5\x9c\x18\ +\xe3\x07\x3b\x2e\xac\x3d\x89\xeb\x39\xbb\x8f\x1d\x18\x42\xca\x8a\ +\x4e\x68\x6b\x26\x36\xe9\xc9\x2a\x94\xb2\xa8\x13\xa5\x44\x5d\xc8\ +\x05\xa5\x44\xd0\xbc\x7a\xc4\x83\x0a\x8a\x7d\xb5\x80\x1b\x83\x1b\ +\xd1\xcb\xc3\x08\x49\xbb\x16\x7a\xe8\xd9\xae\x2d\x00\x9b\x29\x30\ +\x0c\x60\xff\x7e\x28\x58\xae\xd4\xc1\x14\x2d\x03\x2a\xe3\x47\xd4\ +\x6f\x12\x3d\x25\xbb\xad\x43\x19\x3d\x1a\xea\x08\xec\x69\xd7\x81\ +\xf4\xb1\x0d\xa4\x1d\x44\x88\x16\x40\x70\x9e\xab\x5d\x51\xbb\x8c\ +\x22\xcd\x24\x42\xb4\x2b\xd3\xde\xe1\xc7\xf8\x11\x4e\xae\xeb\x76\ +\x98\x6b\x50\xa4\x48\xa9\xd0\x1b\x75\x5b\x9e\x72\x2c\x08\xba\x51\ +\xaf\x12\x9e\x1d\xd9\xd1\x89\x10\x7a\x42\x85\x61\xc8\xad\xeb\x68\ +\xa2\xc1\x10\xdd\xf9\x5c\x9b\xc2\xc8\x77\x7c\xc7\x6b\x39\xa4\x7e\ +\x28\xdd\x90\xa8\x4b\xef\x88\x55\x69\x3e\xb3\x4e\xe1\xa7\x80\x72\ +\x50\x3f\xa8\x36\xf5\xf0\xc3\xb1\x21\x97\xd4\x17\x6e\xbe\x56\x44\ +\x13\x08\x46\x0c\x63\xd1\x3f\x12\xdc\xc5\x89\x0b\xed\xd9\x29\x25\ +\x4e\x70\x87\xf8\xb0\x02\x8c\xf1\x19\x48\xca\x19\x4b\xe0\xa4\xac\ +\x8b\x50\x6c\x06\x99\x1f\xa1\xe8\x15\xf3\x94\x1d\x92\x3e\x22\xa3\ +\x46\xb1\xf0\x4f\x7d\xbc\x30\x46\x42\x15\x26\x90\x61\x1c\x8c\xb3\ +\x00\x8b\xee\xf1\x63\xea\xd9\x4b\x25\xa7\x2e\x6c\xbc\xa3\x0a\x59\ +\x47\x46\x92\x96\xc6\xf0\xf1\x8e\x2a\x58\x53\xca\x4e\x0e\x29\x91\ +\x11\xe0\xa9\xc4\x13\xf7\x86\xe3\x45\x6a\x0a\x43\xe1\x1d\x9c\x50\ +\xc8\x33\x7d\xca\x40\xd2\x72\x19\x60\x79\xfe\x65\xe1\x46\x6b\x48\ +\xb6\x23\x38\x79\xda\xbb\x12\xcd\x67\x7e\x70\x31\xc6\xfb\x43\x2e\ +\x4f\x7b\x77\x50\x8c\xc8\xb5\x50\x43\x25\x69\x4c\xbe\x34\xc2\x87\ +\x85\x5c\x88\x31\x3c\x79\xd1\x81\x1c\x72\x21\xc6\x80\xac\x85\xdb\ +\x4f\x4c\xcf\x55\x6d\xd4\xd4\x85\x87\x17\xc4\x57\xba\x72\x31\x90\ +\x84\xd4\x05\x38\x83\x8e\x73\x6c\xef\x07\xc6\xb2\xb6\xc6\xef\x47\ +\x1c\x49\x71\x1c\xf5\xae\xb5\x82\xbc\xf0\xf1\x5e\x2a\xc4\x41\x71\ +\x98\x41\xc9\x5b\x80\xfb\xb7\x3b\x30\x8d\x0c\x22\x4d\x8a\x4d\x75\ +\x9f\xa7\xa1\xf4\x6a\x46\xad\x46\x0b\xca\xc9\xc6\x5b\x43\x50\x8d\ +\xb2\x73\x4a\x4a\x39\x75\x50\x91\x01\x11\x16\x1c\xf3\x93\x33\x4f\ +\x60\x1f\x4b\x7c\x89\x14\x23\x49\x4b\x3d\x49\xb4\x7b\x0a\xc2\x48\ +\xbc\x9f\x66\xc4\x30\xd6\x63\xae\x23\xe6\xa2\xde\x23\x7e\x0e\x3a\ +\x7d\xda\x44\xf4\x47\xd8\x29\xa7\x6a\xfa\xc5\x00\xf6\x2e\x80\xe0\ +\x84\xf9\xcb\x44\xcf\x06\x1a\x3b\x33\x86\x74\xce\x29\xbe\x16\x2a\ +\x12\x7e\xbe\x24\x27\x75\x18\x2a\x10\x81\x91\x4d\xee\x30\x44\xe2\ +\x98\x7a\x50\x97\xd2\xcb\x04\x51\x56\x80\x31\x8a\x43\x0d\x65\xc2\ +\x67\x4c\x41\x6d\xea\x09\x9f\xf1\x23\xe1\x12\x6d\x7c\x9b\xa1\x96\ +\x2b\xca\xe0\x11\x11\x16\x60\x9b\x4b\x3c\x7b\xc8\xae\x0c\x31\x67\ +\xa1\x3a\x6f\xb5\xc7\x10\x12\x66\x66\x6c\xb4\x0d\x84\xa3\x42\x56\ +\xa3\x34\x19\x99\x0e\xba\x0b\x81\x6a\x94\x0c\xbf\x11\xf7\x36\x89\ +\xf2\x5e\xb3\x80\xfa\xbc\xa8\xb3\x09\x98\x16\xd5\xf8\x29\x57\x3f\ +\x18\x44\x0a\x33\xe8\xc1\xb5\xa5\x97\xc1\xe8\x08\x19\x78\x81\xd7\ +\x56\xa3\x0c\x23\x59\x2d\x94\x6d\x62\x42\x24\x8c\x3a\x22\xb4\x43\ +\x37\x74\xdb\xf9\xb5\xc8\xb5\x03\x9a\x06\xec\xa3\x86\x31\xca\x2b\ +\xbd\x41\x0e\xff\x32\x18\x5d\xe1\x6a\x14\xc3\xb6\x51\x64\x69\x24\ +\x54\xaa\x26\x48\x44\x37\x6f\x0b\x84\xa3\xb5\x6a\xc0\xd6\x71\xc0\ +\x34\x4d\xd9\x5d\x01\x0b\x65\x28\x42\xa9\xa4\x52\xac\x5a\x07\xe4\ +\x7f\x2d\x70\x37\xd4\x65\xae\x8e\x14\x81\x32\x48\x0e\x08\xe4\x88\ +\xc3\xc6\xc8\x81\xa7\x6a\x5f\x14\x35\x36\x75\x17\x9c\xb9\x19\x6a\ +\x63\x29\xbe\x1b\x1f\x8c\x22\x93\x50\xb4\xdd\xf8\x1c\x74\x0e\x07\ +\xa6\x84\x39\x07\x47\xe7\xe0\x74\x50\x36\x0c\x12\xc2\x8c\x21\x0d\ +\x1d\xe5\xeb\xff\x7b\xe9\x6d\xca\x36\x91\x7c\x13\x4d\x17\x3b\x13\ +\x41\x61\x64\x28\x09\x4b\x86\xc1\x9e\xdf\x1d\x78\x37\xac\x51\xa9\ +\x62\x45\x85\xaf\xce\x00\x35\x2a\x23\x48\x16\xed\x7b\xa6\x09\xdf\ +\xfb\x76\x4e\x47\x9c\xb2\x29\x08\x46\x05\xd5\x2a\x76\x90\x44\xe5\ +\xcc\x1b\x31\xc5\xd8\x01\xc9\x08\x72\xc5\x0c\x24\x31\x3b\x15\x40\ +\x01\xff\x65\x12\x29\x85\xe7\x44\x4e\xc4\xb9\xf0\x81\xf9\x29\x70\ +\xc3\x7e\x07\x54\x23\x25\x94\xa3\xde\xf5\x1d\x59\x01\x6a\xe2\xba\ +\x76\x51\xc1\xb4\x4d\x64\xbb\x01\x89\x87\x33\x6a\xf4\x8c\x20\x2a\ +\xcc\xc0\x75\xe9\x03\xbb\xbc\x19\x3e\xca\x5d\x18\x11\x66\xdc\x3a\ +\x5c\xbd\xe8\x0a\x3b\xf0\x25\xcd\x78\xb6\x51\x03\x58\xa4\xbf\xc1\ +\x18\xf1\xcd\x08\x06\xc5\x94\x0b\x97\x11\x1c\x26\xd5\x06\x7a\xa3\ +\x6f\x46\x4f\x15\xe5\xdf\x8c\xde\x60\x69\x9a\x10\x8a\xef\xdf\x8c\ +\x5f\x04\xb9\x2f\x2d\xfc\xae\x66\xf7\x37\x1f\xae\x66\xfb\xaf\xfa\ +\xaf\xff\x03\xee\x2b\x64\x9e\ +\x00\x00\x06\xb7\ +\x00\ +\x00\x26\x68\x78\x9c\xed\x59\x49\x8f\xe3\x44\x14\xbe\xf7\xaf\x28\ +\xdc\x17\x10\x71\xb9\x16\x6f\xe5\x4e\x32\x87\x19\x21\x90\xe0\x02\ +\x03\x1c\x47\x8e\x5d\x49\x4c\xdb\xae\x60\x3b\x9d\x84\x5f\xcf\x2b\ +\x6f\x71\x36\xe8\xa1\x33\x91\x90\xe2\x56\xab\xed\xf7\x5e\x6d\xdf\ +\xf7\x36\xbb\xc7\xef\xb6\x59\x8a\x5e\x64\x51\x26\x2a\x9f\x18\x14\ +\x13\x03\xc9\x3c\x52\x71\x92\x2f\x26\xc6\xaf\x1f\xbf\x33\x7d\x03\ +\x95\x55\x98\xc7\x61\xaa\x72\x39\x31\x72\x65\xbc\x9b\x3e\x8c\xbf\ +\x32\x4d\xf4\xbe\x90\x61\x25\x63\xb4\x49\xaa\x25\xfa\x21\x7f\x2e\ +\xa3\x70\x25\xd1\xd7\xcb\xaa\x5a\x05\x96\xb5\xd9\x6c\x70\xd2\x0a\ +\xb1\x2a\x16\xd6\x37\xc8\x34\xa7\x0f\x0f\xe3\xf2\x65\xf1\x80\x10\ +\x82\x75\xf3\x32\x88\xa3\x89\xd1\x0e\x58\xad\x8b\xb4\x36\x8c\x23\ +\x4b\xa6\x32\x93\x79\x55\x5a\x14\x53\xcb\xd8\x9b\x47\x7b\xf3\x48\ +\xaf\x9e\xbc\xc8\x48\x65\x99\xca\xcb\x7a\x64\x5e\x3e\x0e\x8c\x8b\ +\x78\xde\x5b\xeb\xdd\x6c\x78\x6d\x44\x85\x10\x16\x61\x16\x63\x26\ +\x58\x98\xe5\x2e\xaf\xc2\xad\x79\x38\x14\xf6\x78\x6e\x28\x23\x84\ +\x58\xa0\xdb\x5b\xbe\xce\x2a\x28\x01\xd0\x15\xfc\xf6\xe6\x9d\x00\ +\x97\x6a\x5d\x44\x72\x0e\xe3\x24\xce\x65\x65\x7d\xf8\xf8\xa1\x57\ +\x9a\x04\xc7\x55\x3c\x98\xa6\xc3\xf3\x60\xd5\x03\x90\xf3\x30\x93\ +\xe5\x2a\x8c\x64\x69\x75\xf2\x7a\xfc\x26\x89\xab\xe5\xc4\xe0\x36\ +\xa6\x1c\x2e\xa7\x16\x2e\x65\xb2\x58\x56\xc7\xd2\x24\x9e\x18\xb0\ +\x7b\x26\xfc\xe6\x79\xe0\x1c\xb4\x31\x68\x27\x0e\x7a\x0d\xc1\x82\ +\x61\x8a\x0a\xea\x70\xaf\xb1\xe9\x8e\x10\xc4\x2a\xd2\x7b\x82\x29\ +\x65\x96\x84\xeb\x4a\x65\xc0\x5a\x14\xa5\x61\x59\x26\xf3\x24\x82\ +\x07\x95\xaf\xd2\xf5\x22\xc9\x3f\x95\xc9\x22\xff\x54\x29\x95\xe2\ +\x0e\xbc\x7e\x25\xb9\x5d\xa9\xa2\x32\xb7\xf1\x0a\x20\x74\xbd\xb3\ +\xca\x5d\xa7\x9c\x82\x76\x1c\xcb\x79\xa9\xad\x9a\xf3\xe8\x27\x38\ +\x90\x67\x20\xab\xd6\xf6\xdb\xd3\x7b\x8b\x5f\x12\xb9\xd9\xdb\xce\ +\xc2\xb2\xc1\x0c\xa1\x55\xb8\x00\xff\x4a\x55\x31\x31\x1e\xe7\xf5\ +\xd5\x2a\x66\xaa\x88\x65\xd1\xa9\xdc\xfa\x3a\x50\x29\xe0\x20\xa9\ +\x76\x4d\x44\xb5\x73\x77\xfb\xd5\xb3\xf6\x7a\x72\x5e\x5f\x2e\xc3\ +\x58\x6d\x26\x06\x3b\x56\xfe\xa5\x54\x36\x31\x1c\xec\x08\x5f\x10\ +\x7a\xac\x8d\xb6\x13\xc3\x64\x2e\xa6\x94\xfb\xcc\x39\xd1\xc2\x7a\ +\x1c\x36\x24\x84\x2d\xfc\x13\xe5\xba\x28\x20\xe4\xcc\x34\xdc\x49\ +\x38\x54\xfd\xa7\x9b\xbf\x5c\xaa\xcd\xa2\xd0\xe0\x54\xc5\x5a\x1e\ +\x8f\xd4\x1a\x73\x36\x53\xdb\xf3\x6a\xf0\x80\xb5\x0e\x66\x73\x9d\ +\x27\x15\x04\xcc\x6a\x3b\x9c\x75\x9d\xc4\xb2\x3c\x3f\x70\x93\xe4\ +\x80\x81\xd9\xba\x2e\xe5\x3d\xc4\xc7\x16\x9d\x1f\x7b\xe4\xe4\x54\ +\xad\x05\x6c\xed\x04\xe6\x56\xb5\xbb\xac\xca\xc2\x6d\x92\x25\x7f\ +\x49\x38\xf7\x09\xd2\x65\x1e\xae\xcc\x45\xaa\x66\x61\xda\xee\x7e\ +\x5a\x5b\x8c\x0f\x60\x69\x06\x21\x54\xed\x74\xd0\x6e\x77\x5a\x66\ +\x74\x42\x8d\xa7\x16\x70\xcf\x75\x7a\xa1\x2a\x12\x88\x85\xc1\x7e\ +\x3b\xd1\x6e\x28\xd2\x21\x0e\x19\x7a\x5b\xfb\x57\xed\x7d\xde\xb1\ +\x6e\x37\xd4\xb5\x6e\x6f\x9d\xfa\x7d\x2d\xcf\x64\x15\xc6\x61\x15\ +\xee\x83\xa0\x93\x30\x21\x48\x77\x32\xc8\x96\xc1\xcf\x1f\xbe\x9b\ +\xb6\x0b\x8d\xa3\x28\xf8\x5d\x15\xcf\xdd\xba\x08\x69\x83\x70\xa6\ +\xd6\x40\x85\x31\xed\xc5\xe3\x38\x0a\x20\xbf\x41\xdc\x4f\x93\x0c\ +\x5c\x5b\xa7\xc6\x6f\x21\x9f\x8d\xad\xbd\xe2\xc0\x58\x83\xb5\x9f\ +\xb4\x99\xb6\x90\x4d\xa2\x3c\x5b\x2d\xe2\x28\x4b\xf4\x20\xeb\x97\ +\x2a\x49\xd3\x1f\xf4\x22\xed\x89\x07\x93\x26\x55\x2a\xf7\xc2\xb1\ +\xd5\xee\xbe\x3d\x9b\x35\x38\xdc\xd8\xea\x4e\x5f\x3f\x2d\xf6\xa8\ +\x1c\x04\x45\x4f\x74\x1a\xce\x24\x38\xc1\x8f\x5a\x89\x4e\xb4\x8b\ +\x42\xad\x57\x99\x8a\x65\x3b\xbc\x47\x53\x46\x55\x4f\x59\xb5\x4b\ +\x41\x3f\x87\xdd\x07\x8f\x73\xa2\x7f\x9e\xf4\x83\xd9\xa6\x89\x80\ +\x36\x8f\xc5\x3a\x85\x74\xf7\x22\x73\x15\xc7\x4f\x65\x55\xa8\x67\ +\x19\x3c\x12\x62\xfb\x84\xb4\x8f\x4d\xb4\x04\xfd\x63\x9a\xe4\x12\ +\xb6\x11\x94\x7f\xae\xc3\x42\x0e\xa5\x7f\xa8\x24\x0f\x00\x37\x59\ +\x74\xd2\xfa\x21\x05\x8f\xaf\x02\xbb\x93\xc5\x21\x64\xa2\xa2\x08\ +\x77\x41\x0e\xe5\x7f\x28\x55\xf3\x79\x29\xab\xfd\x4a\xdd\x56\x09\ +\xe6\xed\x75\xe0\xe8\xfa\xb8\x5c\x08\xda\x0b\xcf\x56\x24\x7d\x9d\ +\xaf\x4a\xfa\x3a\x88\x0a\xf0\x6f\x81\x6d\x8f\x0b\xc2\x5d\x69\x52\ +\xb7\x57\x14\x07\x66\x85\xce\x79\x98\x43\x65\x72\x21\xe7\x75\x0e\ +\x30\x5e\x85\xd5\xf2\x1c\xfa\x83\x53\x06\x8f\x94\x02\xb6\xd1\x21\ +\xb2\x0e\xf6\x9b\x98\x12\xc7\x10\xcf\xd6\x55\x75\x2d\x80\x7b\xde\ +\xfb\x73\xe8\x98\x44\xac\x41\x84\xf3\x51\x07\x0e\x47\x2e\xb6\x47\ +\x66\xa7\x40\x1c\xeb\xf6\x46\x08\x6f\x20\xab\x2d\x6c\xcc\xea\x6d\ +\x23\xa7\xe1\x07\x44\xed\x1d\x47\xad\xce\xed\xc7\xd8\x47\xb3\x2e\ +\x91\x8f\x9d\x5a\x71\xc0\xa9\x06\xd1\x26\x9e\x30\xb9\x39\x50\xf4\ +\x05\x45\xe5\x00\x4c\xa5\x0a\x13\x4a\xcb\x4b\x58\xad\x0b\xa9\x89\ +\xf9\x3c\x0a\x88\xcf\x63\x2f\x3e\xa4\x00\xf6\x66\x43\x35\x20\xc2\ +\xb9\x39\x05\x3f\x21\x0d\x8a\x70\x39\x25\x74\x04\xa5\xd4\x71\x1c\ +\x0a\x68\x71\x6c\xfb\x1e\x75\xa9\x18\x41\xed\xf5\x19\x75\xb9\x00\ +\x9c\x05\xe5\x9e\x4d\x47\x0c\xdc\xcf\x01\x80\x11\x25\xd8\x73\x5d\ +\x5f\x88\x11\x85\x23\x50\xdb\x23\x0e\xa2\xc0\x23\x15\xcc\x15\x23\ +\x1f\x7b\xc2\x25\x8c\x50\x44\x3d\x0c\x0b\xd8\x9e\x3f\xb2\xb1\x20\ +\x0e\x78\x2e\x47\x7a\x12\x6a\x0b\x67\x44\x30\xf5\x18\xb1\xa9\x80\ +\x55\xd9\xc8\xe4\x98\x5d\xa0\xe4\x0b\x11\x22\x49\x1c\xcd\x8f\x62\ +\xa2\xaf\x33\x6c\xb5\xfd\x7c\x4a\x2e\x00\x0d\x27\x1b\x78\xb9\xc0\ +\xee\x88\x33\x44\x19\xf6\x47\x4c\x34\x31\xe8\x21\x2a\xc0\x88\x39\ +\xd8\x45\xcc\x6e\x1c\x94\x8f\x18\xe9\x3c\x9d\xf9\x60\x4c\xfd\x3e\ +\x34\x1c\x30\xa6\xee\xde\x99\xf9\x59\xe4\xfe\xdf\xb8\x65\x08\x1a\ +\x4a\xdf\x13\xbe\x0b\xbe\xc2\xc0\x91\xc0\x8f\x3c\x0e\xce\xc8\x3c\ +\xc6\x6d\xe2\x3a\x75\x26\x00\x0b\xdb\x81\x6c\xc2\x5c\xdf\xf6\x1c\ +\x5f\xbb\x11\x25\x0e\xb8\xa8\x46\x11\x46\x52\x48\x05\x2e\x66\xd0\ +\x45\xb2\x3a\xa5\x40\xb6\x73\x3d\x2d\xf2\x6d\x5b\x50\x18\x0a\xe4\ +\xb8\xc2\x73\x6d\x3d\x12\x72\x30\x77\x1c\xaf\x5b\x83\xee\x57\x00\ +\xb0\x7d\x4c\x28\xe1\xa4\x4e\x2d\xc2\xa6\x60\x27\x2e\xe4\x10\xff\ +\x2a\xc0\xd7\x2d\xb9\xae\x89\xfa\x7a\x8a\x93\x72\x05\x45\x17\xde\ +\x9b\x34\x84\x4f\x0a\x5e\x58\xe6\xa9\xda\x04\x2f\x49\x99\xcc\x52\ +\xf9\x54\xff\x4d\x52\x8d\x62\x27\x3a\x93\x82\x08\x99\x33\x76\xc8\ +\x5c\x97\x19\x6d\xfb\x4b\xa6\xa0\x7f\x2a\xb3\xf4\x29\x0b\x8b\x67\ +\x59\x34\x03\x64\x1e\xc2\xe6\xcd\x59\x18\x3d\xeb\x7e\x23\x8f\x83\ +\x30\x82\xae\x7b\x9d\xc2\x0b\xfa\x61\x58\x91\x11\x41\xbf\xa1\x3e\ +\xb0\x4e\xb8\x80\x86\xcf\x7d\x35\x13\x3d\xf8\x7d\x5b\x09\x7d\x8e\ +\xee\xc4\xa0\xa3\x8f\xa2\x3b\x51\xff\x9d\xa8\x0c\xf5\xc9\x41\x17\ +\x10\xbb\xc9\x68\xd1\xa0\x03\x20\x97\xee\x4f\x28\xe5\x9e\xc7\x4c\ +\x62\xb2\x7b\x80\xdd\x96\xb7\x7d\xe9\x79\x13\x6f\xf4\xce\xdb\x2d\ +\x12\xe3\x80\x37\x68\x32\xd0\xfb\xba\x01\xa9\x6f\x4f\x6e\x2e\x31\ +\x75\x9d\x9e\xeb\xce\xd4\xab\x23\xcc\x6b\x12\xe3\x5b\x33\xe3\x75\ +\x5e\x5e\xee\xbc\xbd\xbe\xa2\x75\x9c\xbc\x8d\xb7\xeb\xf4\xea\x77\ +\xde\xfe\x25\x33\xf6\xcd\xe2\xe0\x7d\xec\x7b\x74\xca\x0a\xb4\x8e\ +\xaf\x6f\xe2\xef\xad\xe3\x97\x0b\xb4\xee\xc3\x0e\x10\x06\x2f\x65\ +\x10\x63\x64\xf0\xfd\xe7\xc2\xfd\x69\x8c\xf9\x36\xb9\xc7\xd7\x4d\ +\xf2\x22\xc1\x6d\x5e\x7c\x23\x5d\xf7\x77\xe8\xdb\x10\xc6\x28\xbe\ +\x4e\x7c\xdd\x2b\xd8\x8d\x08\x73\xaf\x15\x61\xf7\x94\x78\x13\xc2\ +\x38\x7b\x33\x53\xf7\x97\xb1\xdb\x14\x2f\xf7\xcd\x4c\xbd\xfe\x7b\ +\xe3\x9d\xa9\xab\x7c\xe0\xd0\xff\x18\x69\x3f\x70\xd4\xb7\x27\x37\ +\x17\x5e\xb8\x3e\x93\xa7\xb1\xb5\x98\x3e\x8c\xf5\xbf\xfb\xa7\x0f\ +\x7f\x03\xa5\x38\xeb\x75\ +\x00\x00\x0d\x9a\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ \x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ \x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ -\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ -\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ -\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x6f\ -\x73\x62\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x6f\ -\x70\x65\x6e\x73\x77\x61\x74\x63\x68\x62\x6f\x6f\x6b\x2e\x6f\x72\ -\x67\x2f\x75\x72\x69\x2f\x32\x30\x30\x39\x2f\x6f\x73\x62\x22\x0a\ -\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ -\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\ -\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\ -\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\ -\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\ -\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\ -\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ -\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\ -\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ -\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ -\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x78\x6c\ -\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\ -\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\ -\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\ -\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\ -\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x77\ -\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\ -\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\ -\x67\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\ -\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x73\ -\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\ -\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\ -\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\ -\x69\x6e\x5f\x73\x65\x6e\x74\x69\x6e\x65\x6c\x33\x5f\x74\x6f\x6f\ -\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ -\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ -\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ -\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ -\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ -\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ -\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x2d\x35\x30\x2e\x34\x31\x39\x32\x32\x38\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\ -\x32\x2e\x34\x34\x30\x37\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ -\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ -\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ -\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x30\x30\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x64\x65\x66\x73\x32\x39\x39\x39\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x34\x36\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\ -\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x36\x61\x35\x61\x35\x61\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x35\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x31\x34\x32\x37\x34\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x38\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x73\x62\ -\x3a\x70\x61\x69\x6e\x74\x3d\x22\x73\x6f\x6c\x69\x64\x22\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ -\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x36\x30\x30\x30\x30\x3b\x73\ -\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x37\x38\ -\x38\x32\x33\x35\x33\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x38\ -\x32\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ -\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x69\x6d\x70\x6f\x72\x74\x2e\ +\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ \x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x38\x31\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x73\x62\x3a\x70\x61\x69\x6e\x74\ -\x3d\x22\x73\x6f\x6c\x69\x64\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ -\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ -\x3a\x23\x66\x66\x62\x37\x62\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ -\x38\x31\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x37\x31\x36\x22\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ -\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x31\x31\x32\x34\x31\ -\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x31\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x32\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ -\x65\x74\x3d\x22\x30\x2e\x36\x39\x38\x36\x33\x30\x31\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x31\x62\x63\x36\ -\x63\x36\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\ -\x36\x34\x38\x61\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x32\x30\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ -\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ -\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x38\x32\x37\x2d\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ -\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x61\x30\x30\x66\x66\x3b\ -\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ -\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x73\x74\x6f\x70\x33\x38\x33\x38\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x33\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ -\x74\x3d\x22\x30\x2e\x38\x36\x39\x38\x36\x33\x30\x33\x22\x0a\x20\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x2d\x32\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ -\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x38\x37\x66\x37\ -\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ -\x2e\x35\x39\x36\x30\x37\x38\x34\x33\x3b\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x38\x33\x31\ -\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ -\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ -\x6f\x72\x3a\x23\x66\x36\x66\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x31\x39\x36\x30\x37\x38\ -\x34\x33\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ -\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ -\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x35\x38\x32\x37\x2d\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x2d\x33\x2e\x32\x33\x32\x33\x32\x33\x32\x2c\x32\x2e\ -\x34\x31\x33\x34\x36\x38\x2c\x2d\x30\x2e\x38\x31\x30\x36\x39\x32\ -\x32\x2c\x2d\x30\x2e\x39\x34\x35\x38\x30\x37\x35\x39\x2c\x37\x34\ -\x2e\x36\x36\x30\x35\x32\x36\x2c\x2d\x38\x2e\x38\x34\x34\x38\x37\ -\x33\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ -\x31\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ -\x22\x31\x37\x2e\x37\x39\x34\x38\x39\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x66\x78\x3d\x22\x31\x35\x2e\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x37\x2e\x37\x39\x34\x38\x39\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x38\x2e\ -\x35\x36\x32\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x39\x37\x33\x2d\x34\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x38\ +\x30\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x39\x37\x35\x2d\x32\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ \x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ -\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ -\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x35\x37\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ -\x38\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ -\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ -\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x70\x72\x65\x61\x64\x4d\x65\x74\x68\x6f\x64\x3d\x22\ -\x70\x61\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ -\x38\x2e\x32\x32\x38\x38\x36\x30\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x31\x3d\x22\x31\x39\x2e\x39\x36\x39\x37\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x34\x2e\x33\x35\ -\x33\x38\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ -\x22\x31\x39\x2e\x39\x36\x39\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x33\x33\ -\x34\x38\x33\x38\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x33\x37\x37\ -\x36\x34\x32\x38\x2c\x2d\x32\x32\x2e\x33\x34\x33\x38\x33\x36\x2c\ -\x2d\x33\x30\x2e\x34\x30\x34\x34\x37\x37\x29\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ -\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ -\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ -\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x34\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x32\x3d\x22\x33\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x32\x3d\x22\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x31\x3d\x22\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x31\x3d\x22\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x39\x31\x39\x37\x32\ +\x37\x33\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x31\x39\x37\x32\x37\x33\ +\x2c\x32\x2e\x38\x37\x33\x39\x39\x38\x39\x2c\x32\x2e\x38\x30\x30\ +\x38\x35\x31\x33\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ \x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x34\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ -\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ -\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ -\x69\x78\x28\x30\x2e\x38\x33\x32\x34\x37\x36\x39\x2c\x2d\x30\x2e\ -\x32\x36\x37\x32\x30\x30\x30\x35\x2c\x2d\x30\x2e\x38\x32\x31\x36\ -\x32\x39\x35\x39\x2c\x2d\x30\x2e\x36\x36\x37\x38\x38\x37\x37\x39\ -\x2c\x2d\x30\x2e\x35\x39\x37\x38\x39\x36\x34\x33\x2c\x32\x34\x2e\ -\x33\x35\x30\x32\x38\x35\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x31\x3d\x22\x31\x31\x2e\x37\x31\x34\x36\x30\x35\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x30\x2e\x30\x31\x35\x31\ -\x30\x30\x34\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ -\x3d\x22\x33\x31\x2e\x38\x30\x30\x32\x30\x33\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x32\x3d\x22\x30\x2e\x30\x31\x35\x31\x30\x30\ -\x34\x39\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\ +\x61\x64\x69\x65\x6e\x74\x33\x30\x31\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\ +\x37\x31\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ +\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ +\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x2d\x34\x32\x2e\x38\x39\x35\x39\x37\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ +\x22\x31\x32\x2e\x39\x37\x39\x35\x39\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ +\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ +\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\ +\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ +\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ +\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\ +\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ +\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ +\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ +\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ +\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\ +\x35\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x31\x32\x29\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ +\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x31\x34\x2e\x36\x38\x36\x37\x34\x37\x2c\ +\x32\x2e\x35\x37\x30\x39\x31\x39\x35\x20\x63\x20\x2d\x30\x2e\x39\ +\x34\x32\x31\x30\x33\x2c\x30\x20\x2d\x31\x2e\x36\x39\x35\x37\x34\ +\x38\x2c\x30\x2e\x37\x35\x33\x36\x34\x36\x36\x20\x2d\x31\x2e\x36\ +\x39\x35\x37\x34\x38\x2c\x31\x2e\x36\x39\x35\x37\x34\x37\x32\x20\ +\x56\x20\x31\x36\x2e\x35\x39\x36\x37\x35\x39\x20\x48\x20\x36\x2e\ +\x35\x35\x32\x39\x30\x37\x39\x20\x63\x20\x2d\x31\x2e\x38\x33\x39\ +\x34\x35\x34\x38\x2c\x30\x20\x31\x30\x2e\x31\x31\x37\x30\x30\x30\ +\x31\x2c\x31\x33\x2e\x37\x39\x35\x39\x31\x31\x20\x31\x30\x2e\x31\ +\x31\x37\x30\x30\x30\x31\x2c\x31\x33\x2e\x37\x39\x35\x39\x31\x31\ +\x20\x6c\x20\x30\x2e\x39\x31\x39\x37\x32\x37\x2c\x30\x2e\x39\x31\ +\x39\x37\x32\x38\x20\x30\x2e\x39\x31\x39\x37\x32\x38\x2c\x2d\x30\ +\x2e\x39\x31\x39\x37\x32\x38\x20\x63\x20\x30\x2c\x30\x20\x31\x31\ +\x2e\x39\x35\x36\x34\x35\x36\x2c\x2d\x31\x33\x2e\x37\x39\x35\x39\ +\x31\x31\x20\x31\x30\x2e\x31\x31\x37\x2c\x2d\x31\x33\x2e\x37\x39\ +\x35\x39\x31\x31\x20\x48\x20\x32\x32\x2e\x31\x38\x38\x32\x37\x32\ +\x20\x56\x20\x34\x2e\x32\x36\x36\x36\x36\x36\x37\x20\x63\x20\x30\ +\x2c\x2d\x30\x2e\x39\x34\x32\x31\x30\x30\x36\x20\x2d\x30\x2e\x37\ +\x35\x33\x36\x34\x35\x2c\x2d\x31\x2e\x36\x39\x35\x37\x34\x37\x32\ +\x20\x2d\x31\x2e\x36\x39\x35\x37\x34\x38\x2c\x2d\x31\x2e\x36\x39\ +\x35\x37\x34\x37\x32\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x2d\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x11\ +\x00\ +\x00\x25\xb3\x78\x9c\xdd\x59\x5b\x6f\xdb\x38\x16\x7e\xcf\xaf\xd0\ +\x3a\x2f\x2d\xd6\x92\x29\x51\x77\x27\x99\x87\x29\x66\x67\x80\x2e\ +\x06\x98\xb6\xbb\xc0\xbc\x14\xb4\x44\xdb\x9c\x48\xa2\x97\xa2\x63\ +\xbb\xbf\x7e\x0f\x29\x89\x92\x7c\x29\xd2\x49\xd3\x49\x47\x40\x10\ +\xf2\x5c\x78\xf9\xce\x95\xc9\xcd\x0f\xfb\xb2\xb0\x1e\xa8\xa8\x19\ +\xaf\x6e\x27\xae\x83\x26\x16\xad\x32\x9e\xb3\x6a\x75\x3b\xf9\xf0\ +\xfe\x27\x3b\x9e\x58\xb5\x24\x55\x4e\x0a\x5e\xd1\xdb\x49\xc5\x27\ +\x3f\xdc\x5d\xdd\xfc\xc3\xb6\xad\x1f\x05\x25\x92\xe6\xd6\x8e\xc9\ +\xb5\xf5\x4b\x75\x5f\x67\x64\x43\xad\x57\x6b\x29\x37\xe9\x6c\xb6\ +\xdb\xed\x1c\xd6\x12\x1d\x2e\x56\xb3\xd7\x96\x6d\xdf\x5d\x5d\xdd\ +\xd4\x0f\xab\x2b\xcb\xb2\x60\xdf\xaa\x4e\xf3\xec\x76\xd2\x2a\x6c\ +\xb6\xa2\xd0\x82\x79\x36\xa3\x05\x2d\x69\x25\xeb\x99\xeb\xb8\xb3\ +\x49\x2f\x9e\xf5\xe2\x99\xda\x9d\x3d\xd0\x8c\x97\x25\xaf\x6a\xad\ +\x59\xd5\xd7\x03\x61\x91\x2f\x8d\xb4\x3a\xcd\x0e\x6b\x21\x37\x49\ +\x92\x19\xf2\x66\x9e\x67\x83\x84\x5d\x1f\x2a\x49\xf6\xf6\x58\x15\ +\xce\x78\x4e\xd5\x43\x08\xcd\x80\xd7\x4b\x3e\x4e\x2a\xdd\x17\x00\ +\xc5\xc5\xc3\x68\xee\x70\x77\x80\x7f\x03\x3f\x46\xa1\x23\x38\x35\ +\xdf\x8a\x8c\x2e\x41\x93\x3a\x15\x95\xb3\x37\xef\xdf\x18\xa6\x8d\ +\x9c\x5c\xe6\x83\x65\x3a\xf4\x47\xfb\x8e\x4c\x52\x91\x92\xd6\x1b\ +\x92\xd1\x7a\xd6\xd1\xb5\xfe\x8e\xe5\x72\x7d\x3b\xc1\xbe\xe3\x62\ +\xf8\x02\x4d\x5c\x53\xb6\x5a\xcb\x63\x2a\xcb\x6f\x27\x70\x57\x2f\ +\x89\x9b\xf9\xc0\x95\xdc\x46\xa0\x5d\x38\x35\x1c\xe4\x24\x9e\xe3\ +\x5a\xc2\x0d\x70\xd4\xc8\x74\x57\x48\x73\x9e\xa9\x33\xc1\x92\xb4\ +\x64\x64\x2b\x79\x09\x36\xce\xb2\x82\xd4\x35\x5b\xb2\x0c\x26\xbc\ +\xda\x14\xdb\x15\xab\x3e\x96\x14\x40\xf8\x58\xb3\x55\xf5\x51\x72\ +\x5e\x38\x1d\xe0\x66\x3f\xba\xdf\x70\x21\xed\x7d\xbe\x01\x20\xc3\ +\xe8\x2c\xf3\xd0\x31\xef\x80\x7b\x93\xd3\x65\xad\xa4\x9a\x5b\xa9\ +\x19\x5c\xab\xe1\x01\x17\x8c\x44\x89\xf8\x97\x20\x39\x03\xd7\x6c\ +\xe4\x1a\xc9\x31\x07\xc7\x6e\xd0\xea\x80\x56\x2d\xf9\xa6\x93\x85\ +\x8b\xca\x43\xa1\x6e\x07\x44\x3b\xe3\x05\x17\xe9\x75\x18\x2d\x97\ +\x61\x34\xd7\x24\x0e\xb6\x60\xf2\x90\xba\xf3\x49\xaf\xc3\x97\xcb\ +\x9a\x02\xee\x68\x40\xd3\xa8\x83\x06\xec\x15\x4d\xac\xd9\x85\xdd\ +\x7a\x29\x0f\x9f\x5b\xd0\x89\x62\x14\x7b\x6e\xe2\x4d\x3e\x7b\xc2\ +\x45\x06\x0e\x8d\xc6\x27\x44\x8e\x9f\xc4\x08\x27\x9e\x37\xbf\xbc\ +\xff\x99\xb5\x92\xb3\x6b\xc1\x3a\x6e\x10\xc6\xd1\xb9\x6b\xbb\xe7\ +\xaf\x9d\x98\x6d\x6f\x66\x63\xfc\x3f\x6f\xae\xce\x01\xe0\x3c\x05\ +\xcd\x60\x7d\x52\xec\xc8\xa1\x36\x9b\xe8\x58\x4c\xd7\x82\x42\xee\ +\xb8\x3e\x63\xd8\xcf\xd9\xdd\xeb\xcf\xba\x77\xe1\xe4\xc8\x41\xa1\ +\xd7\xab\x1c\x14\xad\x9f\xee\x3d\x98\x26\x4e\x82\xa3\x81\x88\x37\ +\x12\x59\xb5\x4b\x7f\xa8\x98\x84\x54\xb3\xad\xa9\x78\xa7\xc2\xf5\ +\xd7\xea\x43\x4d\x4f\xa4\xde\x0b\x52\xd5\x90\x1b\xca\xdb\x09\x84\ +\x8d\x60\xfb\x57\x90\x12\x90\x1f\x84\xbe\x8f\xfd\x29\x76\xa2\x10\ +\xbc\x39\xf4\xa7\xb6\xe7\x84\xd8\xf7\x23\x77\xaa\xf8\x21\x4a\x60\ +\x1c\x4d\x83\xd8\x89\xc3\x18\x27\xd1\xd4\xc6\x89\x13\x25\x38\x48\ +\xa2\xd7\x2d\xc8\x37\x33\x15\x0c\x7a\x64\x42\x55\xc5\x69\xfe\xc0\ +\xe8\xae\x8f\x98\x05\x31\xa7\xda\x90\x15\xd5\x26\x07\x14\x97\xfa\ +\x6b\x19\x0b\x2e\x72\x2a\x3a\x56\xa8\xbf\x11\xab\xf5\x8a\xa6\x16\ +\x5d\x8d\x8d\xa6\x56\x35\x7c\x74\x9e\x5f\xaf\x49\xce\x77\xb7\x13\ +\xef\x98\xf9\x89\x73\x40\x26\x70\x82\x24\x4e\x90\x7b\xcc\xcd\xf6\ +\xb7\x13\xdb\x47\x2a\xb5\x05\x01\x3e\xe1\x1e\x14\xd7\x41\x41\x88\ +\x11\x4a\x4e\xb8\x5b\x21\x00\x7f\xbb\x20\x07\x0a\xb7\xd2\xbf\xba\ +\x0d\xea\x35\xdf\xad\x84\x42\x47\x8a\x2d\x3d\xd6\x54\x1c\x7b\xb1\ +\xe0\xfb\xf3\x6c\x48\x87\x5b\x55\x07\xed\x6d\xe3\x00\x9b\xfd\x70\ +\xd5\x2d\xcb\x69\x7d\x5e\x71\xc7\x2a\x00\xc1\x6e\xf3\xb8\x8b\x0d\ +\xc6\xc7\x12\x5d\x52\x8f\x50\x7c\x41\x62\xdf\x67\x9e\x63\xd6\xe1\ +\x32\xab\x24\x7b\x56\xb2\x4f\x34\xef\x03\xd8\x88\xd4\x15\xd9\xd8\ +\xab\x82\x2f\x48\xd1\x9e\xbe\x0d\xd9\x11\x2c\x9d\x77\xcb\x83\xaa\ +\x60\xfb\x83\xa2\x8d\xa2\x4f\x11\x70\x14\xf6\xd1\xc2\x05\x83\xc2\ +\xb0\x1f\x66\xca\x86\x74\x18\x92\x54\xbd\x83\xe6\x66\xaf\x1d\x4c\ +\xbb\x5f\x74\xcc\x3b\x0c\x79\x5d\x04\x9c\x3a\xbe\xa6\x97\x54\x92\ +\x9c\x48\xd2\x47\x41\x47\xf1\x92\x04\x75\x37\x83\x46\x23\xfd\xed\ +\xcd\x4f\x26\x4f\x66\x59\xfa\x5f\x2e\xee\xfb\xcc\xa6\x04\xc8\x82\ +\x6f\xc1\x14\xa6\x76\xa8\x8a\x94\xa5\x2a\xa0\x89\xbc\x63\x25\xf8\ +\xb6\xea\x2a\xfe\x09\xc5\x1d\xe2\xd1\x30\x46\xc2\x0a\xac\x7e\xd1\ +\x66\x59\x41\x9b\xae\xe1\x6c\xa3\x95\x67\x25\x53\x4a\xb3\x77\x92\ +\x15\xc5\x2f\x6a\x93\x41\x3e\x6f\x17\x65\xb2\xa0\x83\x24\x3f\x6b\ +\x4f\xdf\xa5\xdf\xc1\xe5\x6e\x66\xdd\xed\xf5\x6c\xd5\xa3\x32\x0a\ +\x0a\x63\xe8\x82\x2c\x28\x38\xc1\x5b\xc5\xb4\x4e\xb8\x2b\xc1\xb7\ +\x9b\x92\xe7\xb4\x55\x37\x68\x42\xe2\x36\x26\x6b\x6a\xcc\x12\x4e\ +\x9f\xb6\x99\x66\xae\x26\x83\x5a\xaa\xa7\x62\x5b\x40\xd5\x7f\xa0\ +\x15\xcf\x73\x28\x3f\x82\xdf\xd3\xf4\x1a\x21\x3f\xd6\xd5\x48\x4d\ +\x9b\x68\x49\xcd\x54\x65\x77\x38\x46\x5a\xff\x6f\x4b\x04\x1d\x52\ +\xff\xe0\xac\x4a\x01\x37\x2a\x3a\xaa\x9e\x14\xe0\xf1\x32\xf5\x3b\ +\x5a\x4e\x20\x15\x09\x41\x0e\x69\x05\x9d\xf3\x90\xda\x94\xb6\x7e\ +\xa7\x41\x21\x6c\xbf\x91\xa3\xab\xeb\xe2\x24\xe9\x8b\xcb\xd9\xf6\ +\x4c\x7d\xe7\x5b\x34\xf5\x8d\xa2\x02\xfc\x3b\x71\xfc\x08\x27\x08\ +\x87\xd4\x76\x43\xc3\x10\x23\x31\x01\x72\xd8\xc1\xd0\xa6\x41\xe1\ +\xe8\xcb\xed\x86\xc8\xf5\x11\xfa\x6d\x71\x47\xfa\x9b\x2f\x39\x64\ +\x2c\xcd\x81\x9b\x83\x8f\x16\x0d\xe5\x81\x08\x46\x2a\x39\xa2\xed\ +\xf4\x81\x47\x24\xc0\x84\xca\x6c\x3d\xa6\x41\x26\x49\x21\xea\xd8\ +\xb6\x9c\x2b\x03\xb4\x69\x6b\x24\xb3\x24\x25\x2b\x0e\xe9\x3b\xa8\ +\x81\x73\xbb\x73\x21\xbb\x51\xdf\xd0\xcc\xb4\x8f\x8d\x84\xa4\x7b\ +\x09\x52\x39\x24\x57\xb0\x83\x9e\x91\x02\x7a\xc9\x14\xde\x3a\x42\ +\x36\x84\x1c\x2a\x98\x68\x74\xb4\x05\x8f\x88\xda\x15\x1a\x4e\x41\ +\x25\xd8\xdf\x6e\xd3\x47\x77\xac\x1d\xd4\xb3\x63\x9a\x5e\x43\x76\ +\x85\xba\xd1\xde\x09\x26\x41\xc4\x56\x9e\x9e\x16\xc2\x96\x8b\x79\ +\xce\x94\xd1\xd5\xce\x85\x14\x73\x55\x57\xf5\xb5\xeb\x35\x5b\xca\ +\xb4\x9b\xb6\xc7\xae\xb2\x35\x80\xdf\x9c\x3b\x67\xf5\x06\x42\x05\ +\x5a\x7f\x2d\xc0\xa1\xe7\x5e\x16\x7c\x97\x3e\xb0\x9a\x2d\x0a\x3a\ +\xd7\xbf\x59\xa1\x9c\xad\x23\xe9\xc8\x81\x8c\xf0\xea\xa4\xdb\xf1\ +\xdc\xd7\x97\x43\x09\x4e\xfe\x09\x8a\x75\x17\x4a\x43\x17\x6f\xe2\ +\x08\xba\x9f\xc0\xc3\x11\xc6\xae\x3f\x2f\x89\xb8\xa7\xa2\x11\xa2\ +\x15\x81\x6d\xed\x05\xc9\xee\x55\x7c\x57\x79\x4a\x32\xa8\x72\xdb\ +\x02\xde\x92\xc6\xf5\xc0\xeb\xff\x6d\xe1\xa8\x8d\x07\xd5\xb1\x60\ +\x3f\x8c\xa0\x79\xb1\xa0\xf1\x0c\x50\x84\x63\x45\xc5\x8e\x67\xa1\ +\x29\x38\x3b\xf2\xa2\x00\xbb\x16\x0e\x9d\x38\xf6\xa0\x6f\x51\xb4\ +\x38\x46\x51\xe0\x5b\xbf\x8f\x42\x49\xf9\x2e\x86\x96\xa8\x27\xf6\ +\xfd\x60\x05\xe1\x2e\xb9\xb0\xa1\x9a\x3f\x10\xb9\x15\x54\xc5\xc2\ +\xe7\xbc\x5e\x23\x37\xb8\xb8\x09\x80\x11\x0e\x5e\x13\x8a\xd0\x70\ +\x1d\x27\x96\xc5\x56\xca\xaf\x95\x56\x8c\x89\xc6\x10\xa2\x29\xb2\ +\xfe\x63\x75\xe9\x00\x9f\x60\x01\x35\x2a\x7c\x34\x16\xe6\xfa\xa6\ +\x12\x82\xc3\xaa\xe2\x01\x4d\x48\x96\x7d\xef\x50\x19\x90\xa6\x66\ +\x64\xfd\x6c\xa1\x73\x90\xc5\x2f\x07\x32\xd7\x01\x0b\x22\x2f\x88\ +\x37\xfb\x2f\xc7\xec\x02\x12\xa6\xf7\x99\x7a\xf0\x26\xb0\x7e\xb4\ +\x20\xce\x9a\xe1\xc9\xe0\x34\xb8\xa2\xc8\xb3\xd1\xb7\x0d\x2f\x17\ +\xe2\xdc\x0d\x82\xaf\x86\x40\x69\x05\x5d\x21\x9e\xe2\x00\x72\x4c\ +\x06\x71\x04\xdd\xbf\xa7\x41\xb9\x34\x3e\x85\x22\xf6\x9f\x0f\x88\ +\x98\x9e\x7a\x42\x6b\x35\xef\x59\x5c\xc1\xc5\xf0\x3c\xd4\x77\x6e\ +\x2f\xac\x68\x1e\xb8\x02\xe4\xf9\x76\x6a\x18\x96\x1b\x4e\x55\x6e\ +\x2e\x0c\x90\xd3\xc4\x09\xbb\x89\x3f\xed\xe2\xdc\x8a\x1c\x5f\x6b\ +\x4c\x0d\xa0\xb1\x13\x34\x32\xa0\x7f\x82\xa8\x8f\x70\xf4\x0d\x11\ +\x05\xd3\xeb\x53\x25\xf8\x5b\xa4\xa3\x33\xcd\xdf\x0b\x35\x81\x8d\ +\xbf\x38\xff\x19\x39\xd3\xfa\xd8\x19\xf4\x18\xd0\x33\xe9\x77\xd8\ +\x99\x1a\x74\x22\xa8\x5e\xe0\xc7\xaf\xb2\x17\x97\x38\x7a\x4b\x3c\ +\x31\x71\xd8\x8f\xaf\x31\x2f\x14\x0a\xcf\xed\x1c\xef\xa9\x50\x24\ +\xdf\x3d\x14\xe1\xd7\xf2\x8a\xef\xbe\xb2\x62\xef\xc9\x18\x3c\x3e\ +\xfb\xbc\x50\x0c\x54\x6a\x7e\x22\x06\x8f\x6f\xda\x5f\x62\x8b\x59\ +\x0e\x5b\x4c\xdc\x14\xa0\x08\xe0\xe8\x8a\x12\x86\x57\xcb\x85\xf1\ +\x85\x86\xd3\xf6\xfe\x36\x80\xb8\x71\x57\x9a\x9f\x04\x88\xfb\x5d\ +\x03\x32\x6a\x7b\x3c\xf3\x08\xd1\xc3\x93\xc1\x25\x08\xbe\x65\xa2\ +\x78\x5e\x9f\xe8\x9a\xb4\x27\x06\x89\xff\xb7\x01\xc4\x5c\xf6\x69\ +\x80\x3c\x57\x67\xb1\x5c\x22\xec\x2e\x5e\xde\x6b\x62\x08\x21\x46\ +\x4e\xd2\x40\xa8\xe2\xc8\xb4\xd6\xd6\xdb\x41\x13\x6b\x7a\x38\x55\ +\xb3\x3c\xd4\x95\xa7\xa3\x47\xc5\xdb\x61\x83\xa3\x9e\x1c\x7f\xea\ +\x4d\xf1\x05\x35\xed\x85\xbc\x2a\xc0\xca\x08\x91\x67\x7f\x85\xbf\ +\x64\xa3\x7d\xc5\x2a\x73\x4d\xc8\x20\x8b\x9c\x4f\x2a\xbe\x13\xb8\ +\x61\x14\x24\x7f\xc5\xdf\x07\x03\xdf\x01\x24\x92\xae\x5b\xf9\xd9\ +\x0a\x13\xe7\x28\xc2\xfa\xec\x12\x3f\xbe\x1f\x79\xd4\x9f\x08\x6f\ +\x66\xab\xbb\xab\x1b\xf5\xef\xbf\xbb\xab\xff\x03\xff\xe0\x07\xdf\ +\ +\x00\x00\x12\xb2\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x61\x64\x64\x5f\x62\ +\x61\x6e\x64\x73\x65\x74\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\ +\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\ +\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ +\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x2d\x36\x32\x2e\x30\x31\x39\x38\x31\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x39\ +\x2e\x36\x30\x31\x37\x31\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x67\x33\x37\x31\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ +\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ +\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\ +\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ +\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ +\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ +\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ +\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\ +\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ +\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x32\x2e\x30\x34\x37\x32\x32\x33\x35\x37\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\ +\x39\x38\x34\x36\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x36\x2e\x37\x36\x34\x34\x39\x34\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x38\x2e\x39\ +\x34\x39\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x34\x32\x2e\x36\x31\x30\x34\x35\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x35\x33\ +\x36\x34\x37\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\x2c\ +\x30\x2e\x35\x33\x36\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ +\x37\x38\x39\x33\x37\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\ +\x33\x39\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x32\x2e\x37\x31\x30\x39\x37\x38\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\ +\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x32\x36\x2e\x30\x36\x32\x32\x38\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x33\x33\x2e\x37\x33\x32\x30\x34\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\ +\x37\x2e\x39\x31\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x39\x38\x34\x36\x35\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ +\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\ +\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ +\x2e\x39\x31\x34\x34\x32\x31\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x38\x32\x33\x34\ +\x33\x35\x34\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x33\x37\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x31\x39\x2e\x39\x38\x34\x36\x35\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\ +\x2e\x32\x31\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x32\x31\x2e\x38\x36\x33\x30\x39\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x31\x2e\x38\x32\x31\x39\x32\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ +\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x32\x2e\x39\x30\x36\x35\x38\x31\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\ +\x33\x36\x32\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\ +\x36\x38\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\ +\x2e\x37\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x30\x31\x31\ +\x30\x32\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\ +\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x2d\x33\x2e\x37\x38\x37\x36\x32\x39\x38\ +\x65\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x31\x39\x2e\x39\x30\x30\x39\x36\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x39\ +\x38\x34\x36\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x2e\x37\x38\x38\x33\x39\x38\x33\x39\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x33\x37\x30\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x33\x37\x31\x32\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x33\x37\x31\x37\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x39\ +\x35\x32\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x31\x32\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x31\ +\x2e\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x32\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x35\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\ +\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\ +\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ +\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x34\x2e\ +\x38\x37\x34\x39\x39\x39\x2c\x32\x32\x2e\x31\x32\x35\x20\x48\x20\ +\x32\x38\x2e\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x34\x2e\x32\x33\x34\x34\x36\x31\x37\x38\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\ +\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ +\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\ +\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x32\x31\x2e\x38\x37\x35\x2c\x31\x35\x2e\ +\x31\x32\x35\x20\x76\x20\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x06\x59\ +\x00\ +\x00\x4e\xd5\x78\x9c\xe5\x9c\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ +\x54\xed\x25\x41\x4b\xbd\x6d\x3d\x62\x3b\x87\x06\x01\x02\xf4\xd4\ +\xa6\xe8\x31\x90\x25\xda\x16\x56\x12\x0d\x8a\x5e\xdb\xf9\xf5\x21\ +\xa9\x87\x2d\x5b\x0b\xa4\x25\x55\x68\x97\x0a\x82\x40\x33\x43\x8a\ +\xfc\x34\x43\x0e\x29\x3a\x8b\x8f\xa7\x22\xd7\x9e\x21\xae\x32\x54\ +\x2e\x75\xdb\xb0\x74\x0d\x96\x09\x4a\xb3\x72\xbb\xd4\xff\xfe\xfa\ +\x19\x04\xba\x56\x91\xb8\x4c\xe3\x1c\x95\x70\xa9\x97\x48\xff\xb8\ +\x7a\x58\xfc\x02\x80\xf6\x3b\x86\x31\x81\xa9\x76\xcc\xc8\x4e\xfb\ +\x52\x3e\x55\x49\xbc\x87\xda\xbb\x1d\x21\xfb\xc8\x34\x8f\xc7\xa3\ +\x91\x35\x42\x03\xe1\xad\xf9\x5e\x03\x60\xf5\xf0\xb0\xa8\x9e\xb7\ +\x0f\x9a\xa6\xd1\xe7\x96\x55\x94\x26\x4b\xbd\x29\xb0\x3f\xe0\x9c\ +\x1b\xa6\x89\x09\x73\x58\xc0\x92\x54\xa6\x6d\xd8\xa6\x7e\x31\x4f\ +\x2e\xe6\x09\x7b\x7a\xf6\x0c\x13\x54\x14\xa8\xac\x78\xc9\xb2\x7a\ +\xbc\x32\xc6\xe9\xa6\xb3\x66\xad\x39\xba\xdc\xc8\x0e\xc3\xd0\xb4\ +\x1c\xd3\x71\x00\xb5\x00\xd5\xb9\x24\xf1\x09\xf4\x8b\xd2\x36\x0e\ +\x15\x75\x2c\xcb\x32\xa9\xee\x62\xf9\x73\x56\x51\x45\x81\xee\xe9\ +\xdf\xce\xbc\x15\x18\x15\x3a\xe0\x04\x6e\x68\x39\x68\x94\x90\x98\ +\x9f\xbe\x7e\xea\x94\xc0\x32\x52\x92\x5e\x55\xd3\xf2\xec\x3d\xb5\ +\x07\xb9\x8c\x0b\x58\xed\xe3\x04\x56\x66\x2b\xe7\xe5\x8f\x59\x4a\ +\x76\x4b\xdd\xf5\x0c\xdb\xa5\xd7\x8c\x0b\x77\x30\xdb\xee\xc8\xad\ +\x34\x4b\x97\x3a\x6d\xbd\x13\x06\xf5\xfd\x95\x73\xd8\xb5\x41\x53\ +\x71\xd4\x69\x2c\x23\x74\x0c\x5b\xc3\xf6\xcc\xf5\x6b\x9b\xb6\x0b\ +\x51\x8a\x12\xd6\x26\x5a\x25\x2c\xb2\xf8\x40\x50\x41\xdf\x5a\x92\ +\xe4\x71\x55\x65\x9b\x2c\xa1\x37\xa8\xdc\xe7\x87\x6d\x56\x7e\xeb\ +\x0b\xbf\x41\x8c\x58\xed\x46\x4b\xb2\x7b\x2c\x3c\xed\x11\x26\xe0\ +\x94\xee\x29\xcf\xb9\x3f\xa8\x3c\xb7\xca\x15\xd5\x2e\x52\xb8\xa9\ +\x98\x55\xdd\x39\x76\x47\x7b\xe7\xeb\x9a\xc9\xb5\x5d\x5b\x59\x43\ +\xd3\xe7\x0c\x1e\x2f\xb6\xeb\xb8\xaa\x01\x6a\xda\x3e\xde\x52\x67\ +\xcb\x11\x5e\xea\x8f\x1b\x7e\x35\x8a\x35\xc2\x29\xc4\xad\x6a\xce\ +\xaf\x9e\x0a\xd1\x17\x92\x91\x73\x1d\x5e\x4d\xdd\x6d\x7b\x59\xad\ +\x9d\xde\x1a\xd6\x57\xbb\x38\x45\xc7\xa5\xee\xdc\x2a\xbf\x23\x54\ +\x2c\xf5\x99\x31\x0b\x83\xd0\xb2\x6f\xb5\xc9\x69\xa9\x03\xdf\x35\ +\x7c\xdf\x0d\x6c\xf7\x4e\x4b\x9f\xe7\xd0\x06\xb9\xbe\x17\xdc\x2b\ +\x0f\x18\xd3\xf8\x03\x79\x7c\x86\xb4\x53\xfc\x9f\xb6\xfe\x6a\x87\ +\x8e\x5b\xcc\xe0\x10\x7c\x80\xb7\x25\x99\x06\xac\xd7\xe8\x34\xac\ +\xa6\xee\x70\x60\x91\x0d\x0e\x65\x46\x68\xf4\xec\x4f\xd7\xb5\x1e\ +\xb2\x14\x56\xc3\x05\xab\x32\xde\x83\x6d\x8e\xd6\x71\x3e\x6c\x70\ +\xcc\x4a\x0a\x09\x34\x8e\x6e\xbb\xdd\x3b\xb8\xb5\x68\xbd\xde\xb7\ +\x82\x17\x2c\x68\xdb\xef\xde\x43\xa3\x3a\xbf\xac\x2a\xe2\x53\x56\ +\x64\xdf\x21\x05\x63\x73\xb7\xa3\xae\xd5\xc3\x52\x17\xd3\x34\x72\ +\x66\x11\x7c\x3a\x33\x99\xde\x0a\x19\x4f\x26\x70\xc2\xd0\xef\x84\ +\x08\x67\x34\x30\xae\x9a\xd3\x8a\xce\xd7\x22\x16\xef\x74\xb8\x3e\ +\x71\xff\xe2\xde\xe7\xdf\xea\xce\xd7\xba\xc6\xed\xcd\x7b\xbf\xe7\ +\xf2\x02\x92\x38\x8d\x49\x7c\x09\x82\x56\x42\xdb\x66\xb5\x3d\xa3\ +\x43\x67\xf4\xe7\xa7\xcf\xab\xe6\x41\x8b\x24\x89\xfe\x41\xf8\xa9\ +\x7d\xae\xa6\x31\x83\x78\x8d\x0e\x94\xb4\xbe\xea\xc4\x8b\x34\x89\ +\xe8\x60\x47\x07\x81\x55\x56\x50\xd7\x66\xe3\xe4\xaf\x74\x70\x5b\ +\x98\x17\x45\xcf\x98\xc1\xba\x54\x5a\x57\x8b\x61\x3d\x6a\x0e\x4e\ +\x1d\x69\x52\x64\xac\x90\xf9\x17\xc9\xf2\xfc\x0b\x7b\x48\xd3\xe3\ +\xab\x4a\x33\x92\xc3\x8b\x70\x61\x36\xad\x6f\xfa\x66\x5e\x75\x6e\ +\x61\xb6\xbd\xe7\x77\xdb\x0b\x95\x5e\x50\x74\x2f\x3a\x8f\xd7\x90\ +\x7a\xe8\x1f\x4c\xa9\xdd\x69\xb7\x18\x1d\xf6\x05\x4a\x61\x53\xbc\ +\xa3\x09\x13\xd2\xbd\x32\x72\xce\xa9\x7e\x43\x5b\x1f\x3d\xae\x5d\ +\xf6\xe7\x03\xbb\x01\xcd\x30\x11\xd9\xf5\x2d\x3e\xe4\x74\xb8\x7b\ +\x86\x25\x4a\xd3\x0f\x15\xc1\xe8\x09\x46\x8f\x16\xbf\x9a\xdb\x3a\ +\x18\x22\xcb\xf0\xdc\xd0\x63\xef\xbe\x95\x53\x42\x10\xe7\xd4\x5b\ +\x49\xe4\xb5\xb2\x34\xa6\xc3\x0c\xc6\xf1\x39\x2a\xe9\x44\xdf\x4a\ +\xbb\x67\xf6\x1c\x95\x35\x77\x16\xb8\x21\xb0\x41\x00\x2e\xaa\x26\ +\xf6\x66\x86\xeb\x5e\xa6\x13\x76\xb5\x21\xe7\x19\x21\xd7\x78\x9d\ +\x86\x39\xad\x65\xdc\x38\x2d\xf5\x56\x70\xef\xca\xb8\x17\x07\x98\ +\xbb\xf4\xdc\x63\xd7\xbc\x7b\xc1\x2f\x83\xb4\xac\xcd\x86\x82\x99\ +\x32\xc8\x70\x0c\x90\x36\x1d\xff\xfb\x96\x6f\x9e\xa3\x0d\x66\x63\ +\x90\x0c\x8c\x80\xf7\xc5\x51\x87\xa4\x3f\x06\x47\xc7\x35\xe6\xea\ +\x20\xa4\xce\x38\x8a\x37\xda\x81\xd1\xcb\x34\x45\x51\xbe\x82\x89\ +\x26\x1c\xc7\x1f\x5d\xd7\xf0\x64\xce\x34\xd3\x26\x29\x48\xd0\xea\ +\x91\x33\x02\xb5\x7c\xd0\x13\xa4\x77\x6f\x3e\x46\xaa\x33\x71\x8c\ +\x81\x4c\x17\x94\x9d\xde\x4c\x9c\x9d\x25\xec\x82\x3d\x7a\xb2\x53\ +\x9a\xa9\xd3\x73\x65\xc2\x93\x98\xc7\x4c\x9d\x9b\xf0\xc4\xdb\x8f\ +\x59\xe5\x52\x17\xf1\x45\xf2\xe0\xcc\xa1\x56\xe6\xc2\x06\x3f\x61\ +\x8e\xfd\x08\x0e\x8c\x19\x37\x51\x88\x9f\xdc\x09\x44\x45\x0f\x04\ +\x8e\x4c\x82\xaa\x65\x7f\x6c\x21\xe7\x89\xfa\xa0\x33\xbf\x9d\x41\ +\xf8\x6a\xc4\x77\x15\x8a\xe6\x7a\x73\x41\x74\x62\x1e\x24\x49\x7d\ +\x52\x91\x8c\xb0\xd9\xa1\x11\xde\x30\x1c\xc4\x18\xdc\x6e\x36\xbc\ +\x79\x94\x21\xf0\x85\x47\xc7\xe1\xd8\x76\xeb\x4a\x94\x71\x4b\x0f\ +\x38\xa2\xeb\x64\xc7\x36\x6e\x84\x72\x43\x7b\xe2\x9b\xaf\x01\x10\ +\x5d\xed\xd9\x3d\x17\xb4\x95\xd9\xb6\xe6\x59\x8e\x27\xea\x7e\xf6\ +\x98\x63\xe1\xd4\x09\xba\xe2\x5b\xd5\x3d\x7c\x8e\xe4\x3c\x7b\xe2\ +\xfc\x6c\x30\x17\x9f\x92\x87\x86\x3f\xc5\x38\x5a\x74\x3e\x96\x1b\ +\xc7\xb6\xe4\x25\xf3\xc4\x01\xb2\x89\x78\x0e\x5c\xd1\x5d\x87\x41\ +\x5f\x94\x8d\x72\xf2\x39\x0d\xdb\x06\x03\xa1\x35\x06\x4b\xc5\xf2\ +\xc3\x66\x27\x47\xfc\x9c\x83\xca\x49\x76\xb3\x99\x03\xc2\xb9\x54\ +\x8a\x6a\x2d\x9e\x3d\x4f\x78\xc1\x77\xe5\x6f\xca\xee\xe2\x00\x51\ +\x1f\xec\x43\x54\xcb\x07\x59\x28\x8b\x66\x39\x7d\x7e\x12\xd7\x7a\ +\xaf\x80\x1f\xdf\x00\x13\xfe\xb2\xd2\x27\xa8\xde\xde\x97\x4f\xa7\ +\x12\xd1\x45\x5f\x9f\xa1\xec\xc5\xca\x2b\x80\xc8\x4e\xcb\x01\x6b\ +\x2e\x79\x4e\x91\x97\x69\xf7\xb1\xbd\x0a\xa4\x7c\x4f\x56\x78\x2f\ +\x0c\xb8\xfe\x6d\x72\xf8\xaf\x33\xc6\x56\x4a\x70\x5c\x56\xec\xac\ +\xff\x52\xaf\x92\x38\x87\xef\x80\xfd\x9b\xfd\xfe\xcd\x38\x30\x4f\ +\x2c\x45\xbf\x70\xdd\x8c\x04\x81\x21\xef\xfc\x36\x67\xf2\xd3\x0c\ +\xeb\x5f\x3a\xfd\x9f\x0c\x45\xb3\xf1\xc1\x33\x9e\x92\x4f\x2a\x4e\ +\x9f\x62\xed\x89\x63\xb0\x94\x7d\x6a\x62\xea\x2c\x05\x19\x0e\x9f\ +\xdc\x51\xce\x1f\x45\xc3\x7a\x10\xa3\xfc\x1f\xb7\x4c\x1c\xa3\xf8\ +\x6a\x7b\x90\xa3\xfc\x9f\xb6\x4c\x9c\xa3\xe8\x72\x7b\x90\xa2\xd4\ +\x1f\xb6\x4c\x1c\xa0\x37\x0e\x42\xd9\x47\x43\x5f\x01\x47\xf1\x55\ +\xe3\xb0\x33\x2a\x36\x4b\xd7\xfb\x40\x82\x24\x07\xcf\x9e\x48\xfd\ +\xf0\x3f\x79\x88\xcd\x0a\x7c\x14\x90\xea\xb9\x64\xb3\x1c\x1c\x83\ +\xa6\x3a\x6b\x42\xb9\x47\x29\x64\x7f\x60\x98\x38\x3c\xf1\xe3\xca\ +\xc3\x1f\x5c\x55\xa3\x18\x88\x9f\x27\x1b\x3e\x05\xa0\xd0\xec\xc2\ +\x92\x9d\x51\x4e\x35\x4a\x3f\x5d\x36\x69\x90\xf5\x87\xeb\x40\xee\ +\xf1\x46\x75\xa6\x93\x26\xe9\x16\xde\xd8\x19\x3e\x60\xa6\x10\xc6\ +\x60\xac\xd3\xde\xff\xe5\xc3\xd7\xc2\xdc\xae\x1e\x16\xec\xbf\x13\ +\x5a\x3d\xfc\x00\x35\xeb\x83\x36\ +\x00\x00\x0e\x9e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x65\x6c\x65\x63\ +\x74\x5f\x61\x6c\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ +\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x32\x2e\x36\x34\x36\x39\x32\x38\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x31\x36\x2e\x37\x30\x39\x34\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ +\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ +\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ \x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ -\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\ -\x30\x30\x32\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ \x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ \x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ \x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ @@ -19501,375 +8518,2003 @@ \x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ \x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ \x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ -\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ -\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ -\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x37\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\ +\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ \x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ \x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x70\x61\x74\x68\x36\x36\x33\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x31\x33\x33\x33\x33\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\ -\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x78\x3d\x22\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x79\x3d\x22\x32\x32\x2e\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ -\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\ -\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x34\ -\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ -\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ -\x2e\x30\x37\x32\x33\x31\x33\x35\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x38\x2e\x31\ -\x33\x33\x33\x33\x33\x2c\x32\x33\x2e\x33\x38\x36\x31\x38\x20\x31\ -\x31\x2e\x32\x36\x37\x31\x32\x36\x2c\x2d\x33\x2e\x35\x32\x33\x33\ -\x31\x31\x20\x63\x20\x30\x2e\x39\x38\x32\x35\x37\x34\x2c\x2d\x30\ -\x2e\x33\x30\x37\x32\x36\x20\x2d\x32\x2e\x35\x39\x37\x31\x38\x39\ -\x2c\x2d\x32\x2e\x38\x37\x39\x31\x38\x32\x20\x2d\x33\x2e\x34\x38\ -\x39\x35\x35\x37\x2c\x2d\x33\x2e\x36\x39\x38\x30\x38\x37\x20\x4c\ -\x20\x32\x33\x2e\x38\x33\x37\x38\x36\x38\x2c\x31\x34\x2e\x32\x36\ -\x32\x34\x30\x34\x20\x43\x20\x32\x32\x2e\x39\x34\x35\x34\x39\x35\ -\x2c\x31\x33\x2e\x34\x34\x33\x34\x39\x39\x20\x32\x30\x2e\x35\x35\ -\x35\x32\x34\x34\x2c\x31\x32\x2e\x34\x39\x32\x37\x34\x32\x20\x31\ -\x39\x2e\x35\x37\x32\x36\x36\x36\x2c\x31\x32\x2e\x38\x20\x4c\x20\ -\x38\x2e\x33\x30\x35\x35\x33\x39\x36\x2c\x31\x36\x2e\x33\x32\x33\ -\x33\x31\x32\x20\x43\x20\x37\x2e\x30\x35\x33\x36\x33\x36\x35\x2c\ -\x31\x36\x2e\x37\x31\x34\x37\x39\x20\x36\x2e\x37\x33\x38\x31\x31\ -\x32\x35\x2c\x31\x38\x2e\x30\x30\x31\x38\x32\x36\x20\x37\x2e\x36\ -\x33\x37\x33\x37\x31\x31\x2c\x31\x39\x2e\x30\x34\x38\x38\x20\x63\ -\x20\x30\x2c\x30\x20\x2d\x30\x2e\x33\x33\x34\x30\x38\x34\x34\x2c\ -\x31\x2e\x33\x36\x32\x37\x34\x32\x20\x33\x2e\x37\x36\x34\x30\x37\ -\x33\x39\x2c\x33\x2e\x35\x30\x36\x35\x31\x39\x20\x34\x2e\x30\x39\ -\x38\x31\x35\x39\x2c\x32\x2e\x31\x34\x33\x37\x37\x35\x20\x35\x2e\ -\x36\x30\x35\x31\x37\x37\x2c\x31\x2e\x31\x38\x33\x31\x39\x32\x20\ -\x36\x2e\x37\x33\x31\x38\x38\x38\x2c\x30\x2e\x38\x33\x30\x38\x36\ -\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x65\x63\x74\x34\x32\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ -\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x73\x73\x73\ -\x73\x73\x73\x63\x7a\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x32\x37\x39\x37\ -\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ -\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ -\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ -\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ -\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x64\x3d\x22\x6d\x20\x31\x32\x2e\x38\x2c\x31\x38\x2e\x31\x33\ -\x33\x33\x33\x33\x20\x63\x20\x30\x2c\x38\x20\x30\x2c\x35\x2e\x33\ -\x33\x33\x33\x33\x34\x20\x30\x2c\x35\x2e\x33\x33\x33\x33\x33\x34\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ -\x68\x33\x38\x34\x36\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ -\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x23\x65\x32\x62\x66\x33\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x64\x64\x63\x34\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x30\x2e\x37\x34\x36\x36\x36\x36\x36\x37\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ -\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x30\x2e\x36\x35\x35\x36\x37\x37\x38\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x30\x2e\x32\x36\x36\ -\x36\x36\x37\x2c\x31\x32\x2e\x38\x20\x63\x20\x30\x2c\x31\x36\x20\ -\x30\x2c\x31\x30\x2e\x36\x36\x36\x36\x36\x37\x20\x30\x2c\x31\x30\ -\x2e\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x36\x2d\x34\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ -\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\ -\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x32\x29\ -\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ -\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ -\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ -\x31\x31\x31\x38\x38\x32\x32\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ -\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x72\x65\x63\x74\x34\x32\x35\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x35\x37\x34\x31\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x36\x2e\x35\x36\x34\x33\x34\x39\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x31\x2e\x32\x37\x36\x32\x30\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x31\x34\ -\x2e\x39\x35\x39\x37\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x32\x2e\x38\x31\x33\x32\x39\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x33\x33\x34\x38\x33\ -\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\ -\x39\x38\x38\x39\x32\x32\x36\x39\x2c\x30\x2e\x31\x34\x38\x34\x33\ -\x31\x34\x39\x2c\x2d\x30\x2e\x32\x35\x32\x38\x31\x34\x36\x38\x2c\ -\x2d\x30\x2e\x39\x36\x37\x35\x31\x34\x37\x32\x2c\x30\x2c\x30\x29\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x65\x63\x65\x63\x65\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x30\x35\x33\x31\x36\x31\x31\ -\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x37\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x36\x2e\x37\x30\x30\x39\x32\x34\x39\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x2e\x31\x30\x38\ -\x37\x34\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x2d\x34\x2e\x38\x31\x37\x39\x39\x33\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x79\x3d\x22\x2d\x33\x30\x2e\x39\x37\x31\x36\x35\x39\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x2e\x38\ -\x34\x35\x39\x31\x38\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x30\x2e\x35\x34\x38\x33\x36\x31\x36\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x38\x37\x37\x30\ -\x39\x36\x34\x36\x2c\x30\x2e\x34\x38\x30\x33\x31\x34\x32\x38\x2c\ -\x2d\x30\x2e\x36\x36\x36\x36\x32\x37\x38\x2c\x2d\x30\x2e\x37\x34\ -\x35\x33\x39\x30\x37\x36\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\ +\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ +\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x64\x34\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x38\ +\x35\x31\x33\x39\x32\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\ +\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\ +\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\ +\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x32\x39\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x35\x2e\x33\ +\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x32\x2e\x32\x38\x32\x39\x32\x37\x33\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ +\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ +\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\ +\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\ +\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ +\x66\x64\x34\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x32\x2e\x33\x38\x35\x31\x33\x39\x32\x33\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\ +\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ +\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ +\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x35\x2d\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x31\x34\x2e\x39\x33\x33\x33\x33\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x32\x38\x32\x39\x32\ +\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\ +\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\ +\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\ +\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x64\x34\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x33\x38\x35\x31\ +\x33\x39\x32\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\ +\x38\x30\x31\x35\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\ +\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\ +\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x32\x39\x39\x35\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x34\x2e\ +\x35\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x32\x2e\x32\x38\x32\x39\x32\x37\x33\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0a\x36\ +\x00\ +\x00\x25\xab\x78\x9c\xd5\x59\x5b\x6f\xdb\x46\x16\x7e\xf7\xaf\xe0\ +\x2a\x2f\x0d\x56\xa4\xe6\x7e\x51\xec\x14\x68\x83\x16\x05\xba\x58\ +\xa0\x6d\xb0\x8f\x05\x45\x8e\x64\x6e\x28\x52\x20\x29\x5b\xca\xaf\ +\xdf\x6f\xa8\x0b\x49\x59\x4a\xec\x44\xdb\xec\x52\x30\x2c\xce\x39\ +\x73\x39\xf7\xef\x8c\x6e\xbf\xdf\x2c\xf3\xe0\xc1\x55\x75\x56\x16\ +\x77\x23\x1a\x91\x51\xe0\x8a\xa4\x4c\xb3\x62\x71\x37\x7a\xff\xc7\ +\x4f\xa1\x19\x05\x75\x13\x17\x69\x9c\x97\x85\xbb\x1b\x15\xe5\xe8\ +\xfb\xb7\x37\xb7\x7f\x0b\xc3\xe0\xc7\xca\xc5\x8d\x4b\x83\xc7\xac\ +\xb9\x0f\x7e\x29\x3e\xd4\x49\xbc\x72\xc1\x77\xf7\x4d\xb3\x9a\x4e\ +\x26\x8f\x8f\x8f\x51\xb6\x1f\x8c\xca\x6a\x31\x79\x1d\x84\xe1\xdb\ +\x9b\x9b\xdb\xfa\x61\x71\x13\x04\x01\xf6\x2d\xea\x69\x59\xcf\xee\ +\x46\xbd\x19\xe5\xca\x15\xf5\x63\xdc\x24\xf7\xb3\xb2\xfc\xd0\xce\ +\x5b\x57\xd9\x84\x11\x62\x27\xe0\x1d\x75\x33\xd3\xe4\x38\x71\xb5\ +\xae\xf2\x96\x35\x4d\x26\x2e\x77\x4b\x57\x34\xf5\x84\x46\x74\xd2\ +\x63\x4f\x3a\xf6\xc4\x9f\x3b\x7b\x70\x49\xb9\x5c\x96\x45\xdd\xce\ +\x2c\xea\x57\x3d\xe6\x2a\x9d\x0f\x4e\xf5\xc8\x5b\x26\x6a\xad\x9d\ +\x10\x36\x61\x2c\x04\x47\x58\x6f\x8b\x26\xde\x84\xc3\xa9\x90\xee\ +\xdc\x54\x08\x40\x26\xa0\x75\x9c\xcf\xe3\x9a\x6e\x72\x28\xf1\xe2\ +\x61\x5a\x6a\x7f\x77\x18\x6e\x85\xbf\xe3\x84\xc3\x40\x54\x97\xeb\ +\x2a\x71\x73\xcc\x74\x51\xe1\x9a\xc9\xbb\x3f\xde\x1d\x89\x21\x89\ +\xd2\x26\xed\x2d\x73\xb0\xdb\x60\xdf\x81\x31\x8b\x78\xe9\xea\x55\ +\x9c\xb8\x7a\x72\x18\x6f\xe7\x3f\x66\x69\x73\x7f\x37\xe2\x22\xa2\ +\x1c\x8f\x6c\x07\xef\x5d\xb6\xb8\x6f\x4e\x47\xb3\xf4\x6e\x04\x59\ +\x99\xb5\xba\x7d\xef\x39\x21\xdd\x31\xec\x17\x9e\x1e\x29\x24\xb2\ +\x2c\xa2\x41\x45\x25\xd7\x3b\x9e\x83\x08\xd3\xb4\x4c\xfc\x99\xb0\ +\xa4\x5b\x66\xf1\xba\x29\x97\xb0\x71\x92\xe4\x71\x5d\x67\xf3\x2c\ +\xc1\x4b\x59\xac\xf2\xf5\x22\x2b\xfe\xac\xe1\x1f\x59\xe1\x72\xfa\ +\x67\x53\x96\x79\x74\xd0\xf7\x71\x3b\xb7\x59\x95\x55\x13\x6e\xd2\ +\x15\xf4\xa8\xf4\x59\xe2\xf6\x40\x7c\x0b\xea\xed\xf1\x14\xfe\x08\ +\xe9\x43\xe6\x1e\xfd\x9c\x9d\x88\xb3\xb8\xde\xa9\x26\x08\x56\xf1\ +\x02\x4e\x97\x97\xd5\xdd\xe8\xd5\xbc\x7d\xf6\x84\x59\x59\xa5\xae\ +\x3a\x90\x54\xfb\x0c\x48\x25\x54\x9d\x35\xdb\x5d\x80\xee\xd7\x3e\ +\x9c\xc8\xaf\x7a\xa4\x93\xf3\xf4\xfa\x3e\x4e\xcb\xc7\xbb\x11\x3b\ +\x25\x7e\x2c\xcb\xe5\xdd\x48\x47\x96\x1a\x22\xa8\x3e\x25\x27\x9b\ +\xbb\x51\x68\x22\xc5\x89\x36\xc2\x3e\xa1\x62\x43\xa6\x23\x4e\x08\ +\xd3\xfc\x09\x71\x5d\x55\x50\x74\x98\xc7\x5b\x07\xa9\xda\x7f\x74\ +\xcf\x54\xdf\x97\x8f\x8b\xca\x6b\xa7\xa9\xd6\xee\x74\xa6\xa7\x84\ +\xb3\x59\xb9\x39\x4f\x86\xa5\xd7\x3e\xc4\xc3\x75\x91\x35\x08\xa3\ +\xd5\xa6\xbf\xea\x3a\x4b\x5d\x7d\x7e\x62\x5d\xc4\xab\x70\x91\x97\ +\xb3\x38\x3f\xcf\xf0\x98\x15\xd0\x52\xb8\xf7\x61\xca\x8f\x46\x38\ +\xe5\x38\x38\xb4\x26\xe6\x02\x07\xce\xfe\xc4\x10\x7b\xd2\xf6\x32\ +\x69\x19\x6f\xb2\x65\xf6\xd1\x41\x31\xb4\xf5\x2c\xf8\xd6\x40\x2d\ +\xbb\x69\x3b\xc7\xf2\xef\x50\xbd\x1c\x1d\x06\x9b\xad\x8f\xd8\xcd\ +\xd6\x13\x8e\x83\x65\x95\xc1\xe7\x7b\xc7\x39\x0c\x6d\xfb\x43\x3e\ +\x94\x91\xf1\x37\xad\x83\xb5\xee\xa7\x4f\x69\xdb\x3e\x2d\x98\xb4\ +\x7e\x3f\x79\xea\xf8\xed\x78\xea\xe6\x75\x17\x01\xfe\x0d\x51\x6e\ +\x0f\x12\x21\x67\xb9\xb8\xfa\xb9\x8a\xd3\x0c\x66\xec\x8b\x34\xa4\ +\x48\x23\x0f\x73\x7c\x8c\x35\xe5\xea\xc0\x8b\x43\x35\xdb\xdc\x07\ +\x3b\x06\xc3\x36\x6e\xa6\xaf\x6c\x12\xc7\x84\xbc\x69\x87\xf6\xf1\ +\x30\xa5\x6f\x46\xdd\x9c\x72\x3e\xaf\x5d\xd3\x17\x7b\x9f\x84\x30\ +\x43\x1a\x45\xf7\x52\x3d\x73\x37\xca\x53\x3a\x7b\xc6\x6e\xf4\xfc\ +\x6e\xfc\xb8\xdb\xed\x64\x28\xf6\x8b\xb5\xc4\xba\x2d\x50\x22\x11\ +\xef\x59\x81\x7d\xeb\x32\x87\x1b\x3c\x5f\xa0\xb9\x42\xf1\x39\x51\ +\x1f\x89\xb4\x31\x8c\x4b\xfe\x02\x3d\xb2\x2b\x4a\x46\xe5\x55\x24\ +\x9b\xcf\xf4\x4c\x7f\xb1\x63\x50\x7d\x35\x81\x34\x55\x2f\x38\x37\ +\xa1\x94\x09\xfa\xa5\xe7\xd6\xd4\x5c\x76\xe8\x8e\x8b\x99\x73\x0b\ +\x46\xca\xc2\x45\x49\x4f\xff\x67\x4f\x48\x67\x89\x4a\xd4\x93\x13\ +\xbe\x24\x8e\xa4\x12\x26\x36\x5f\x1a\x47\x9a\x91\x2b\xc6\x91\x0e\ +\x49\x78\x31\xe3\xf4\x3c\xdc\x86\x3a\xa4\x9f\xb1\xc3\x39\x7b\x92\ +\x44\xdb\xf9\xf3\xb5\xd5\xed\xc8\x29\x4e\x76\xce\x50\xf4\xd3\x3b\ +\xce\xd5\x7c\xfe\x24\xa6\xdf\x7c\x4e\x63\xfe\x2d\xce\x9f\x68\xec\ +\x58\xd8\xcb\x3c\x77\x09\x36\x8f\xf3\xc7\x78\x5b\x1f\x4f\xd0\x62\ +\xd1\xe9\x7d\xe5\x80\x9d\x5f\x5d\xd0\x6d\x5f\xfd\xc3\x6d\xb8\x91\ +\x5d\xc9\x59\xec\x07\xdf\xef\x2a\xfc\xba\x76\xd5\xef\x1e\x6c\xfe\ +\xb3\x78\x7f\x04\x53\x1d\xd7\x1f\x55\x5c\xd4\x40\xb6\x00\x32\x00\ +\x7d\x55\xb6\xf9\x2e\xe4\x11\xe3\xed\x67\xcc\x22\x41\xb9\x50\x66\ +\x0c\x90\x6b\x28\x51\x96\x31\xff\xd5\x0a\x69\x88\x96\x76\xac\x45\ +\xa4\x14\x91\x4c\x8d\x81\x73\x8c\x10\x46\x73\xf1\xfa\xb8\x85\xc7\ +\x3f\x54\x46\x5d\x18\x78\xc8\x43\x75\xa4\xad\x30\xb6\x3b\xef\xfc\ +\x94\x6d\x7e\x96\x0d\x30\x88\x9a\x48\x2a\x26\x3b\x13\x5c\x70\xcf\ +\xaf\x51\xb6\xcf\x32\x97\xfd\x9c\x1b\xc1\x5e\xa8\xe8\x7a\x85\x8e\ +\x29\xfd\x87\x6b\xee\x4b\x2c\xb7\x8a\x3b\x74\xb1\xa1\x77\x23\x13\ +\x31\x66\x8c\x22\x9d\x75\xb7\x18\xa5\x36\xb2\xca\xea\x4e\xf8\x0d\ +\x03\x58\x14\x11\x8a\x89\x2f\xb5\x47\x56\x76\x86\xf5\xb2\x61\x69\ +\x04\x5b\x4a\x61\xc5\x98\xe0\x43\x23\x26\x90\x24\x39\x1f\x53\x16\ +\x71\x66\x0d\x17\xe3\x90\xd9\x48\x31\xa8\x40\xbe\xfe\xaf\x2a\xd9\ +\x63\x93\x4f\x2a\x59\x5c\xcd\x9b\xe1\xb8\x9c\x09\xad\xac\x77\x5c\ +\xa6\xb4\xef\x12\x65\xeb\xcf\x8c\x2a\x66\x65\x3b\x0e\x54\x66\x8c\ +\xd6\x16\x4a\x91\x5c\x0a\xf4\x47\x63\xe8\x95\x58\x2d\xb8\x7d\x3d\ +\xb0\x17\xa5\x91\xa6\x42\xf5\x80\xa3\xb7\x17\x1a\x07\x2a\x29\x21\ +\xc2\xaa\x81\xc9\x38\x8d\x0c\xf0\x3d\xe1\x03\x93\xf5\xb9\x3f\xa7\ +\xe5\xb3\x65\x30\x94\x7f\x65\x21\x0c\xc9\xf3\x4a\x61\x28\xce\x2d\ +\xfa\x7f\x54\x0c\x43\xf9\x65\xe5\xf0\x6c\x18\x5e\x88\xd8\xb3\xc1\ +\x7d\x36\x0f\x5c\xce\x1b\x2f\x8f\xf0\x10\x21\x2e\x85\xe2\x14\xe9\ +\x9b\xa1\x23\xf5\x89\x9a\xbf\x7e\x61\x8c\x9d\x0b\x54\x4b\x9f\x9b\ +\x54\xc3\xce\x01\x2e\xa6\x8e\xa3\xf6\xe7\x59\xde\xb8\xea\xd9\xa9\ +\x66\xef\x0c\xad\x1f\x84\x40\xb9\xae\x5a\x95\x79\x7b\x69\x11\xee\ +\x56\xaa\xa7\xf5\x6f\x3f\xff\x30\x90\x64\x47\x90\x44\x74\xc8\xc0\ +\xb7\xeb\x3e\x36\x35\xcc\xa3\x44\x27\xd9\xa1\xa5\x8d\x08\x97\x96\ +\xdb\x5e\x30\xef\x26\x70\x45\x19\x23\xb2\x1b\x3f\x74\xb8\x98\xa1\ +\x19\x13\x82\x76\xe1\x3a\x77\x3f\xc7\xeb\xba\xce\xe2\xe2\x87\x7c\ +\x5d\xf5\xfc\xf0\x73\x32\x7a\x29\xd3\x77\xee\x21\x6b\xe5\xf2\x81\ +\x45\x95\x21\x4a\xf6\xfc\x68\x2f\xd8\x60\x07\x49\x64\x1f\xe4\xed\ +\xa4\xde\xb5\x9f\xbe\xb3\x6c\xbf\x2d\x5d\x13\xa7\x71\x13\x77\x4d\ +\xe7\x61\xc4\x5f\x4e\x1c\x1a\xcf\x2a\x9d\x4f\x7f\x7b\xf7\xd3\x51\ +\x92\x24\x99\xfe\xab\xac\x3e\x74\x9b\x7b\x86\x78\x56\xae\x71\xf6\ +\xa3\xbc\xbe\x9d\x4d\xa6\xde\x47\xe3\xe6\x6d\xb6\x8c\x17\xce\xdf\ +\xd0\xfd\x7d\xb3\xcc\xb1\xff\x91\x30\x60\xf6\x8d\x78\xb7\xe8\x6e\ +\xd9\xca\xed\x6e\xe0\xce\x5e\x5a\xa6\xc9\x32\xf3\x93\x26\xbf\x37\ +\x59\x9e\xff\xe2\x37\xe9\xe5\x8d\xfd\xa2\x59\x93\xbb\x5e\x32\x99\ +\xec\x4f\x7f\xd0\x4b\x4f\xb8\xdb\xc9\x41\xfa\xf6\x6d\x71\x33\xb4\ +\xcf\xa2\x2a\xd7\xab\x65\x99\xba\xfd\xad\xcc\xe9\x65\x44\x1e\xcf\ +\x5c\x7e\x37\xfa\xd5\xd3\x82\x83\x0f\xb5\xa1\xb3\xbb\xc3\xd9\xef\ +\xe8\xf2\x3c\x5b\xd5\xee\xc4\x83\x61\x9e\x7c\x0a\xd1\xbe\x7b\xf5\ +\x14\xdf\xbd\x7e\xe3\xa9\xbd\xcc\xd6\xbe\x56\xeb\xdc\x4d\xdd\x83\ +\x2b\xca\x34\x45\xea\xab\xca\x0f\xce\x63\xe5\x7d\x37\xea\x5f\x77\ +\x37\x32\xd3\xe3\x2b\x94\xe5\xaa\x3c\xc3\xbf\xa9\x38\x8c\xa5\x71\ +\x7d\x1f\x57\x55\xbc\x9d\x16\x65\xe1\x0e\xa3\xc7\xad\x06\x81\xb3\ +\x8a\x9b\x7b\xa5\x78\x07\x83\x5a\x98\x47\x76\x97\x93\x5d\x0c\xb4\ +\x58\x0f\xc5\xd2\x0f\x76\x85\xa1\xda\xf8\xac\xd8\xbd\xfa\x3b\x30\ +\x80\xcc\xce\x43\x2b\xf8\xfe\x45\xa5\x3c\xcd\x3e\x5f\xab\x94\x88\ +\x32\x60\x5a\xae\xae\xa5\x1c\x7f\x7c\xc1\x24\x09\xd9\x69\xf6\x60\ +\x80\x16\x42\x68\xfb\x24\x49\x20\x1d\x03\x4c\x5b\x36\xcc\x43\xc8\ +\xe4\x68\xe0\x4d\x4f\xcd\xdb\xf6\x32\x11\xe9\x84\xcb\x5e\x95\xf0\ +\x1a\xe4\x11\x8a\xd7\x89\x92\x8f\x95\xa0\xbb\xe0\x3a\x03\x8d\x14\ +\xe0\x34\xa4\x1f\x93\x48\x4b\x21\x95\x12\x2d\x1a\xd2\xd2\x68\xaa\ +\x35\x1b\x7b\x06\x2a\xa8\x95\x6d\x3d\xe9\x41\x42\xef\x03\xcf\xb6\ +\x92\x10\x5f\x6d\x25\xa4\x51\x4e\x01\xcc\x3e\x65\xa6\xc1\xea\x20\ +\xef\x0e\xd3\xa5\xf9\xae\xdc\xf9\x04\x17\x30\x8f\x06\xfd\x75\xdc\ +\x18\x5d\xc5\xee\x62\x3d\x80\xbf\x02\x21\x52\x06\x7c\xc8\x23\xc9\ +\x38\xa7\x34\x48\x02\xf4\x3b\x86\x49\x2d\xbc\x6a\x38\x4e\xa2\x68\ +\x10\xa2\x9c\x5a\x40\x23\x34\x46\x2c\x32\xda\x52\xc3\x02\x4c\x41\ +\xbf\x22\xa5\xf2\x93\x01\x7a\x88\xd1\xc1\xaf\x01\x93\x11\x18\x19\ +\xa1\x63\xe0\x49\x02\x32\x46\x7f\xf4\xa3\xc4\x5f\x0e\xd9\x31\xf6\ +\xb6\xc8\xe2\x5c\x04\x88\x03\x65\x10\xe7\x7a\xac\xd1\x7f\x59\x83\ +\x12\x14\xc0\x69\x34\x91\xd6\xa2\xd3\x82\xf7\x68\x0a\x0f\xc2\x9a\ +\x08\x36\xc1\x81\x57\x81\xdc\x7d\x85\x21\x42\x69\x1c\x13\x2e\xc3\ +\x24\x16\xe3\x30\x1b\xb7\x54\x68\xe3\x87\xa4\xd2\x82\x29\x0f\x6c\ +\x01\x71\x25\xe5\x41\x8b\x76\x0d\x6a\x87\x40\x77\xa7\x99\x04\x14\ +\x08\x60\x5c\x3f\x8e\x40\x25\x46\x60\xd5\x88\xa3\x09\x10\x3c\x80\ +\x63\x29\x41\xb4\x10\x63\xa8\x03\xa7\x64\x81\x00\x28\x86\x5f\x5a\ +\xcc\xa5\x80\xc9\x5a\x06\x32\x02\x18\xa6\x5a\x61\x16\x45\xab\x6d\ +\x69\xa0\x10\xf4\x50\x8d\x19\x7b\xe8\x4d\x80\x7e\x82\x8f\x67\x62\ +\x44\x9c\xc5\x03\x45\x01\x22\x8a\x78\xb2\xae\x1e\xe2\x66\x5d\xb9\ +\xc1\x3d\xeb\xf1\xbe\x14\xe9\xd7\x67\x7c\x60\x95\xba\x7d\x92\x8f\ +\xf5\xe7\x9d\xb3\x17\xbd\x97\xfc\x4c\x48\x1f\x04\xe6\xe8\x53\xde\ +\x95\x71\xb2\xe9\x6c\xdd\x34\xfd\xb1\x7f\x97\x59\x31\x6d\x9d\xf0\ +\x1a\x89\xa3\xf5\x47\x8b\xce\x83\x29\x60\x05\x38\x4a\x7b\x99\xb8\ +\xf3\x3d\x18\xde\xee\x1e\x7c\x97\x51\x9b\x63\xd9\xe0\xfb\x93\xe4\ +\x8c\x88\x53\xcf\xd6\xed\x35\xb4\x26\x99\xb6\x9a\x13\xf5\x0d\xb4\ +\x46\x45\x64\xdb\x0a\xe3\x9b\x58\xd3\xaa\xad\xd5\x9a\xe9\x34\xc4\ +\x7b\x5f\xcf\xea\x2a\xfc\x6b\xb5\xa5\xc5\xee\x67\x80\x6f\xa0\x2d\ +\x5f\x6a\x5b\x1d\xc1\xab\xda\x53\x20\x47\x78\x6d\x51\xb9\x77\x32\ +\xe6\x5f\x7c\x82\xf0\xcf\xf0\xe5\xbc\xea\xc4\xcb\x55\xf7\xa2\x0a\ +\x2f\xd8\xff\x6a\x85\xff\xba\xfa\xce\x50\x2c\x2c\x2a\xee\xa0\xba\ +\xdb\x88\x11\xa6\x0d\x57\xdf\xb8\xba\x5f\xb2\xd0\x2b\x97\xf8\xcf\ +\x57\x17\x73\xd4\x1e\x94\x17\x7a\x4d\x8b\x70\xa3\xf9\xa9\x45\xfc\ +\x05\x0e\x53\x4c\xe8\x27\x26\x41\xf5\xd6\xa8\x8f\x92\x0d\x20\x97\ +\x46\xad\xe5\x4a\xdb\xa1\x51\xd0\xad\xa3\xde\xb1\xde\xe8\xce\x00\ +\xbe\xc0\x8a\x21\x92\xf5\xb1\x82\x0a\x4f\x85\xfd\x84\x59\xfc\xf5\ +\x29\x87\xa3\x68\xd9\x16\x6a\xa9\x08\x63\x94\xb6\x86\x31\x16\xfd\ +\x96\x69\x6f\x58\x15\x45\xa0\x02\x9b\x0c\x0d\xf3\x89\xa6\x61\x90\ +\x78\xfc\xbd\xf5\xa9\xde\x71\x62\x6b\x85\x62\x4a\x5e\xb3\x11\xd0\ +\x5d\x1c\xf8\x36\x00\x09\x06\xa5\x40\x93\x4e\xe5\xbe\x0d\x50\x28\ +\x68\x10\x98\xd2\xa1\x0a\x2d\x60\x0a\x40\x0e\x1f\xe8\xb0\xbd\xf7\ +\x35\x86\xd2\x6b\x49\x8d\x72\xce\xd1\xb7\x5f\xcd\xdb\x76\x52\x87\ +\x27\x72\xf3\xc8\x0a\xab\x0c\x1b\xc8\x2d\x23\x2f\x88\xe2\x43\xd7\ +\x61\x0a\x29\x89\x72\x33\x8c\x72\x86\x42\xa6\x98\xc4\x0a\x57\x91\ +\x9b\x45\x04\x49\x4a\x48\x62\xae\x2d\x77\xef\x77\x88\xbd\xc5\xa9\ +\x17\x46\x9e\x48\xae\x24\xcc\x38\x90\x9b\x23\xe5\x71\x8d\x50\x1a\ +\xca\x6d\xa1\x39\x00\x58\xfd\xc9\x4c\x86\xd2\xa4\x29\xdf\xfd\x0e\ +\x41\x00\x8e\x99\xa1\x1e\x5e\x22\x5b\x32\x61\x81\x64\x5b\x0e\xc5\ +\x70\x8c\x7e\xc4\xdc\x4e\x16\x6f\x6f\x6e\xfd\x85\xc3\xdb\x9b\xff\ +\x00\x66\xa4\x62\x3a\ +\x00\x00\x0c\x45\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x6f\x76\x65\x5f\ +\x75\x70\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ +\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x2d\x32\x39\x2e\x32\x37\x34\x38\x32\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\ +\x31\x2e\x31\x35\x36\x39\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\ +\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ +\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ +\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ +\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ +\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ +\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ +\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ +\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ +\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ +\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\ +\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\ +\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\ +\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ +\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\ +\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ +\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\ +\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\ +\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\ +\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\ +\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\ +\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\ +\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\ +\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\ +\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\ +\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\ +\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\ +\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\ +\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\ +\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\ +\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\ +\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ +\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ +\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\ +\x3a\x23\x30\x30\x30\x30\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\x61\ +\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\ +\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ +\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x31\x35\x2e\x38\x31\x34\x32\x31\x37\x2c\x35\x32\ +\x2e\x39\x35\x36\x39\x39\x36\x20\x32\x2e\x36\x33\x33\x34\x37\x34\ +\x2c\x2d\x30\x2e\x30\x35\x32\x34\x39\x20\x30\x2e\x38\x30\x34\x31\ +\x31\x37\x2c\x30\x2e\x30\x34\x31\x36\x31\x20\x4c\x20\x31\x39\x2e\ +\x32\x2c\x32\x30\x2e\x32\x36\x36\x36\x36\x37\x20\x6c\x20\x34\x2e\ +\x31\x32\x35\x31\x30\x39\x2c\x2d\x30\x2e\x30\x31\x33\x31\x20\x2d\ +\x35\x2e\x39\x33\x32\x38\x34\x36\x2c\x2d\x31\x35\x2e\x33\x30\x31\ +\x37\x35\x30\x34\x20\x2d\x35\x2e\x37\x35\x34\x39\x36\x32\x2c\x31\ +\x35\x2e\x33\x33\x38\x37\x36\x35\x34\x20\x34\x2e\x31\x32\x35\x31\ +\x30\x39\x2c\x2d\x30\x2e\x30\x31\x33\x31\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\ +\x33\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\ +\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x07\x31\ +\x00\ +\x00\x20\x5c\x78\x9c\xed\x59\xdd\x8f\xe3\xb8\x0d\x7f\x9f\xbf\xc2\ +\xf5\xbe\xec\xa2\x91\xac\x0f\xcb\x92\xbc\xc9\x1c\x8a\x2e\x0e\x38\ +\xa0\x7d\x69\xaf\xe8\xb3\x63\x2b\x19\x77\x1c\x3b\xb0\x9d\x49\xb2\ +\x7f\x7d\x29\xc7\x5f\x49\x9c\xd9\xd9\x36\x77\x0b\x1c\xc6\xc1\x20\ +\x23\x92\x92\x48\x8a\x3f\x92\x72\xe6\x3f\x1d\x36\x99\xf3\x62\xca\ +\x2a\x2d\xf2\x85\x4b\x31\x71\x1d\x93\xc7\x45\x92\xe6\xeb\x85\xfb\ +\xaf\x5f\x7f\x46\xca\x75\xaa\x3a\xca\x93\x28\x2b\x72\xb3\x70\xf3\ +\xc2\xfd\xe9\xf1\x61\xfe\x27\x84\x9c\xbf\x96\x26\xaa\x4d\xe2\xec\ +\xd3\xfa\xc9\xf9\x25\x7f\xae\xe2\x68\x6b\x9c\x8f\x4f\x75\xbd\x0d\ +\x3d\x6f\xbf\xdf\xe3\xb4\x25\xe2\xa2\x5c\x7b\x9f\x1c\x84\x1e\x1f\ +\x1e\xe6\xd5\xcb\xfa\xc1\x71\x1c\xd8\x37\xaf\xc2\x24\x5e\xb8\xed\ +\x84\xed\xae\xcc\x1a\xc1\x24\xf6\x4c\x66\x36\x26\xaf\x2b\x8f\x62\ +\xea\xb9\x83\x78\x3c\x88\xc7\x76\xf7\xf4\xc5\xc4\xc5\x66\x53\xe4\ +\x55\x33\x33\xaf\x3e\x8c\x84\xcb\x64\xd5\x4b\x5b\x6d\xf6\xbc\x11\ +\xa2\x5a\x6b\x8f\x30\x8f\x31\x04\x12\xa8\x3a\xe6\x75\x74\x40\xe7\ +\x53\x41\xc7\xa9\xa9\x8c\x10\xe2\x01\x6f\x90\x7c\x9b\x54\x58\x81\ +\x43\xb7\xf0\xd7\x8b\x77\x04\x5c\x15\xbb\x32\x36\x2b\x98\x67\x70\ +\x6e\x6a\xef\xcb\xaf\x5f\x7a\x26\x22\x38\xa9\x93\xd1\x32\x9d\x3f\ +\xcf\x76\x3d\x73\x72\x1e\x6d\x4c\xb5\x8d\x62\x53\x79\x1d\xbd\x99\ +\xbf\x4f\x93\xfa\x69\xe1\x72\x1f\x53\x0e\x8f\x68\x88\x4f\x26\x5d\ +\x3f\xd5\x97\xd4\x34\x59\xb8\xa0\x3d\xd3\xea\x34\x1e\x05\x07\x3d\ +\x09\xb4\x0b\x87\x3d\x87\x60\xcd\x30\x75\x4a\x2a\xb8\x3c\xc9\x74\ +\x26\x84\x49\x11\x5b\x9d\x40\x63\x93\x6d\x71\xe7\x95\x7e\x09\x73\ +\xd8\x16\x65\x8d\x0e\xc9\x16\x7c\x13\xc8\x49\xe6\xb1\x63\x3e\x02\ +\x77\x9e\x98\x55\x65\xa5\x4e\x8a\xda\x11\x68\x2a\x5d\xc7\x6b\xb8\ +\xfd\xbe\x76\xd3\xe4\x25\x35\xfb\x41\x76\x19\x55\x27\x67\x38\xce\ +\x36\x5a\x43\xe0\x64\x45\xb9\x70\x3f\xac\x9a\xa7\x65\x2c\x8b\x32\ +\x31\x65\xc7\x0a\x9a\xe7\x8c\x55\x80\x73\xd3\xfa\x78\x82\x4a\xbb\ +\x76\xa7\xaf\x5d\xb5\xe7\x93\x69\x7e\xf5\x14\x25\xc5\x7e\xe1\xb2\ +\x4b\xe6\xd7\xa2\xd8\xc0\x51\x60\x2d\x34\x61\x44\x5d\xb2\xe3\xc3\ +\xc2\x45\x8a\x60\x46\xa8\xef\x5f\x73\x61\x43\x0e\xa7\x20\x09\xa3\ +\xe2\x8a\xb9\x2b\x4b\x00\x13\xca\xa2\xa3\x01\xab\x9a\x2f\xda\x0a\ +\x55\x4f\xc5\x7e\x5d\x5a\xef\xd4\xe5\xce\x5c\xce\xb4\x1c\xb4\x5c\ +\x16\x87\x69\x36\x9c\xed\xce\xc2\x14\xed\xf2\xb4\x06\x28\x6c\x0f\ +\xe3\x55\x77\x69\x62\xaa\xe9\x89\xfb\x34\x07\x27\xa0\x36\x28\x29\ +\xef\x7d\x7c\x29\xd1\x45\xa8\xbc\x76\x48\x2b\x01\xaa\x5d\xf9\xb9\ +\x65\x1d\x6f\xb3\x36\xd1\x21\xdd\xa4\x5f\x0d\xd8\x4d\x2f\x45\xaa\ +\x3c\xda\xa2\x75\x56\x2c\xa3\xac\xd5\xfe\xb1\x91\x98\x9f\xb9\xe5\ +\x34\xc9\x71\xea\xa3\x85\xe3\xe1\x68\x69\x6e\x47\xb4\xfe\xb4\x04\ +\x2e\x03\xd1\x13\x8b\x32\x5d\xa7\xf9\x48\xdf\x8e\x74\x1c\x93\x2c\ +\x78\x21\xf7\x1e\x9a\x00\x6b\xc2\x4f\x5e\xf2\x8e\x63\x5e\x1b\xf7\ +\xde\x75\xe0\x37\xf4\x8d\xa9\xa3\x24\xaa\xa3\x01\x05\x1d\x85\x69\ +\x4d\x3a\xcb\x20\x0f\x86\xff\xf8\xf2\xf3\x63\xbb\xd1\x3c\x8e\xc3\ +\x7f\x17\xe5\x73\xb7\xaf\xe3\x58\x81\x68\x59\xec\xe0\x28\xdc\xc7\ +\x9e\x3c\x4f\xe2\x10\x32\xd7\x26\xaa\x1f\xd3\x0d\xc4\xb6\x4d\x7a\ +\x7f\x86\x4c\x35\xf7\x06\xc6\x99\xb0\x75\xd6\xb0\xe8\x69\xd9\xd2\ +\x9c\x52\xe0\x64\x1d\x48\xe2\x4d\x6a\x27\x79\xff\xac\xd3\x2c\xfb\ +\xc5\x6e\xd2\x5a\x3c\x5a\x34\xad\x33\x33\x10\xe7\x5e\xab\x7d\x6b\ +\x9b\x37\x32\x6e\xee\x75\xd6\x37\xa3\xf5\xe0\x95\x33\x50\xf4\x07\ +\x9d\x45\x4b\x03\x41\xf0\x37\xcb\x74\xae\xb8\xeb\xb2\xd8\x6d\x37\ +\x45\x62\xda\xe9\x9d\x37\xe3\xb4\x8c\xb3\xde\xce\xaa\x3e\x66\x20\ +\xd1\xa4\x94\xf0\x03\x69\x9e\xcf\x49\x5a\x6d\x61\x0e\x24\xf4\x2c\ +\xcd\xcd\xe7\x02\x32\xe9\x2a\x2b\xf6\xe1\x4b\x5a\xa5\xcb\xcc\x7c\ +\x6e\xbe\xd3\x0c\x6c\xef\x49\x2b\x70\x40\xf8\x61\x15\xd8\x4f\x33\ +\x40\x6d\xaa\x09\xe9\x69\x58\xee\x32\x13\xe6\x45\xfe\x15\x92\xd4\ +\xe7\xaa\x2e\x8b\x67\x63\xf7\x0b\x62\x9d\xb4\xc3\x13\xe0\x42\xd2\ +\x0d\xed\xde\x60\x49\xb8\xdc\xd5\xf5\x98\xf6\x9f\x22\xcd\x43\x70\ +\xbc\x29\x3b\x6a\x33\xc8\x00\x32\x75\xc8\xb1\xe8\xa8\x49\x04\xd9\ +\xac\x2c\xc1\x0e\xd8\xd6\x8c\xa9\xc5\x6a\x55\x99\x3a\x64\x58\x71\ +\xa6\x08\x15\xaa\x63\x0e\x3a\x6f\xa2\xf2\xd9\x94\xa7\x99\x26\x8f\ +\xc0\x44\xb4\x8c\xe2\x67\xeb\xd4\x3c\x09\xa3\x18\x52\xcb\x2e\x83\ +\xfe\xe2\x0c\x54\xdb\xa8\x7e\xe2\x4c\xe8\x9e\x68\xd3\x22\x95\x27\ +\x34\xa8\x81\x6a\x21\x12\xf4\xc3\xb2\x19\x75\x21\xd2\x1d\x7b\x0b\ +\x53\x4e\x28\x75\x2f\x0e\x6b\xf0\x1e\x59\x31\x76\xa5\x7b\x0f\x81\ +\xb9\xd5\x67\x08\xe8\x3e\x32\xea\x32\xca\x2b\x0b\x00\x14\x43\x7a\ +\x34\xa5\x4d\x45\x0c\x07\x4c\x69\xed\xbb\x6f\x91\xb7\xc9\x9e\x62\ +\x29\xb5\x1c\x1b\x3b\x2a\xab\xc5\xd6\xe4\x67\xb9\xf5\x8c\x6b\xf2\ +\xc4\x16\x20\x45\x85\x14\x5a\xa8\x29\x11\xe8\xe9\xca\x7a\x9c\x78\ +\x20\x95\x75\x5a\x2c\xdc\xb2\xa8\xc1\xf5\x1f\x03\x1f\xd6\x80\xf4\ +\x4c\x3f\x8d\xc4\x60\xe9\xbf\x3b\x5c\x60\x11\x28\x3a\x43\x0a\xfb\ +\x92\x2b\x46\x03\xe7\x2f\x0e\xe5\x58\x35\x59\x69\xd6\xfd\xa7\x1c\ +\x02\x1f\xea\x70\x0a\x85\xcb\xf7\xa5\x3f\xa3\xe0\x06\x5f\x30\x25\ +\xa7\x94\x2a\xed\xb9\x75\x53\x27\x05\x0e\x83\xc0\xe4\x0a\xf6\xe4\ +\x07\x9d\x26\x25\x60\x09\x06\xbe\x85\x3a\xca\xf9\xf8\x30\xba\xf0\ +\x82\x43\x47\x0c\x8d\xcf\xe9\xae\x10\x1e\x41\xe5\x32\xc0\x4e\xf0\ +\x14\x58\xfb\x52\x11\x2d\xff\x2f\x98\xfa\xdf\x01\x52\xad\x02\xc2\ +\x7d\x25\xef\x00\xd2\x91\xa3\x4f\x95\x31\x2a\xe3\x51\xc6\xbe\x00\ +\xcc\xef\x1c\xce\x08\x62\x19\x33\x9f\x11\x71\x15\xcf\x10\x33\x82\ +\x68\x2d\x69\x30\xd3\x98\x52\x48\x59\x82\x4e\x46\xb4\x6c\x23\x1a\ +\x51\x48\x6e\x92\x0b\xad\x66\x54\x43\x70\x2b\x41\xc4\xb7\x42\x7a\ +\x3a\xe6\xdf\x12\xd2\xbd\x4e\xb7\x22\x1a\x31\x86\xa1\xdb\x08\xb8\ +\xba\x1d\xd2\x14\xa9\xf7\xa0\xfe\xed\x83\xfa\xd5\x2a\x00\x57\x3a\ +\xa6\x89\x94\x94\xcb\x37\x17\x02\x06\x85\x00\x92\x95\xfc\x81\x85\ +\x00\xd0\x41\x7d\x50\x5b\x5f\x17\x02\xd0\x0e\x2a\xb2\x0c\x2c\x42\ +\x02\x00\x10\x7f\x15\x36\x4c\x61\x1e\x28\x2d\x66\x8c\x63\xa9\x85\ +\x3f\x9d\xe5\xef\x82\x99\x4e\x9f\x5b\x90\xa1\x0a\x16\x10\x9a\xbe\ +\x52\x03\x10\x7d\x07\xcc\x1f\xb0\x0a\x48\x86\x89\x20\x92\x5f\x57\ +\x01\x81\x39\x64\x51\xc5\xe4\x0c\x51\x1f\x73\x2d\x84\xd2\xaf\x36\ +\x36\x48\xdb\x4e\x82\x13\xa5\x66\xc8\x07\x68\x4b\xc6\xd5\x64\xdb\ +\x71\xa7\xd6\xa6\xd7\xea\x66\x21\x68\xaa\x91\xcf\xc5\xab\x75\xe0\ +\xbd\xbd\xf9\xf1\x95\x80\x61\xa1\x18\x3f\xef\x84\xbf\x75\x23\x20\ +\xd0\xd8\x4a\xfe\x03\x0b\x01\x12\x1c\xfb\x54\xfb\x94\x5d\x81\x87\ +\xc2\xf2\x70\x0f\x93\xd2\xe6\xf6\x00\x24\xd4\xeb\x1d\x54\x80\x7d\ +\x9f\x03\x0e\xc5\x8c\x43\x2d\xe0\x3a\xe0\x93\xdd\xcd\x7d\x8a\x41\ +\xaf\xd2\x4d\xdc\x70\xc8\x09\x5a\x6b\xc2\x5e\xad\x07\x88\xbd\x03\ +\xe7\x0f\x57\x11\x20\x2e\xb0\x60\x92\xca\x8b\x98\xde\x38\x14\x82\ +\x54\x0a\x4a\xf8\x0c\xd9\x86\xc5\x0f\xa0\x07\x77\xa2\xd7\xea\x01\ +\xe4\xe7\x80\x07\x0c\xda\x21\x82\x89\x56\x7c\xba\x65\xbf\x53\x35\ +\xe8\x75\xba\x79\xd1\xc5\x01\x51\x50\x0c\xf4\x37\xaa\x01\xd2\xef\ +\x61\x7d\xf7\xb0\x9e\x7b\xeb\xf6\x1f\x93\x65\xe9\xb6\xfa\x8d\x5e\ +\x09\x12\xc2\xb8\x1f\xbf\xfd\x95\xa0\x11\xf6\x73\x7e\x08\x14\xfa\ +\x1e\x21\x29\xf3\xf9\xef\x74\x0a\xe4\x0e\xce\xef\x02\x19\xee\xe0\ +\x0c\x0d\x6d\x7e\xd3\xdb\x07\x58\x69\xdf\x67\x23\x6a\xf3\x4a\x10\ +\x43\xbf\xcf\x46\xef\xe4\x2d\xcc\x24\xf6\x2d\xca\xc4\x20\x6b\xd1\ +\x19\xe0\xd3\x8f\x3f\x62\x38\xce\xe9\x53\xbc\x8e\xf2\x29\x07\xdb\ +\x1f\x6e\x18\xa1\x4a\xaa\xef\x77\xdb\xf0\xde\xf1\xd2\xf2\x00\x1a\ +\x3d\x14\x5c\x5a\x2e\x14\xe7\xa3\x77\x9a\xb7\x2d\x87\xab\x9b\xb6\ +\x8f\xb8\xb0\xdc\xb6\xc0\x94\xde\xb6\x7c\xb4\xbd\x40\xa3\x9f\x27\ +\xbe\xcf\x21\xf6\xc5\xab\xa0\x8a\xde\xc3\x21\xe3\x33\x7f\x8b\xe5\ +\x01\x66\xf6\xa1\xfe\x77\x5a\x3e\xaa\x1d\x9b\xa8\x2e\xd3\xc3\x47\ +\xc8\xf2\x24\xe0\x52\x28\x39\x23\xd8\x3a\x53\xea\xc0\xde\x1e\x66\ +\xc4\x7e\x3e\x4d\x1d\x99\x44\xe2\x7f\xf5\x19\x23\x0a\x6e\xcd\xec\ +\x8e\x2e\x03\xe7\x04\xa3\x9e\xe7\x74\xc9\x08\xb0\x75\xa4\x1f\x5c\ +\x44\x0b\xd4\x12\x39\xba\x79\x58\x97\x49\x0c\xa1\x46\x44\x40\xfb\ +\x1f\xa2\x20\xe7\xcd\xed\x0f\x41\x8f\x0f\xff\x05\xb6\x74\x74\x2d\ +\ +\x00\x00\x16\xb0\ +\x00\ +\x01\xff\x66\x78\x9c\xed\x5d\x59\x73\xe3\xc8\x91\x7e\x9f\x5f\x41\ +\x73\x5e\x3c\x61\xa1\x84\x2a\xa0\x80\x02\x5b\x6a\x3f\x78\xc2\xb1\ +\x13\x61\xc7\x46\xd8\x5e\xef\xe3\x04\x45\x42\x12\xb7\x49\x42\x01\ +\x42\x57\xff\xfa\xad\xc2\x41\xf0\x48\xb5\xc5\x49\x30\xd1\x1a\x24\ +\x67\x3a\x28\xe2\x46\x7e\x95\x59\x79\x55\xe6\xd5\x9f\x5f\x56\xcb\ +\xd1\x53\x9a\x6f\x16\xd9\xfa\x7a\x2c\x85\x3f\x1e\xa5\xeb\x59\x36\ +\x5f\xac\xef\xae\xc7\xff\xf3\xaf\xbf\x7a\x66\x3c\xda\x14\xd3\xf5\ +\x7c\xba\xcc\xd6\xe9\xf5\x78\x9d\x8d\xff\xfc\xf9\x87\xab\x3f\x78\ +\xde\xe8\x2f\x79\x3a\x2d\xd2\xf9\xe8\x79\x51\xdc\x8f\x7e\x59\x7f\ +\xd9\xcc\xa6\x0f\xe9\xe8\x8f\xf7\x45\xf1\x30\xb9\xbc\x7c\x7e\x7e\ +\x16\x8b\x7a\xa3\xc8\xf2\xbb\xcb\x9f\x46\x9e\xf7\xf9\x87\x1f\xae\ +\x36\x4f\x77\x3f\x8c\x46\x23\x7b\xdf\xf5\x66\x32\x9f\x5d\x8f\xeb\ +\x13\x1e\x1e\xf3\x65\x79\xe0\x7c\x76\x99\x2e\xd3\x55\xba\x2e\x36\ +\x97\x52\xc8\xcb\x71\x7b\xf8\xac\x3d\x7c\xe6\xee\xbe\x78\x4a\x67\ +\xd9\x6a\x95\xad\x37\xe5\x99\xeb\xcd\x8f\x3b\x07\xe7\xf3\xdb\xed\ +\xd1\xee\x69\x9e\x83\xf2\x20\x99\x24\xc9\xa5\xaf\x2e\x95\xf2\xec\ +\x11\xde\xe6\x75\x5d\x4c\x5f\xbc\xfd\x53\xed\x33\x42\xa7\x2a\xdf\ +\xf7\x2f\xed\xbe\xf6\xc8\xf7\x1d\x35\xd9\x58\x82\x3e\xd8\x7f\xdb\ +\xc3\x9b\x0d\x62\x93\x3d\xe6\xb3\xf4\xd6\x9e\x97\x8a\x75\x5a\x5c\ +\xfe\xfc\xaf\x9f\xb7\x3b\x3d\x5f\xcc\x8b\xf9\xce\x65\x1a\x7a\xee\ +\xdd\x75\x8f\xc8\xeb\xe9\x2a\xdd\x3c\x4c\x67\xe9\xe6\xb2\xd9\x5e\ +\x9e\xff\xbc\x98\x17\xf7\xd7\xe3\x20\x14\x32\xb0\x1f\x5d\x6e\xbc\ +\x4f\x17\x77\xf7\xc5\xe1\xd6\xc5\xfc\x7a\x6c\x9f\x5e\x07\xca\x2f\ +\x7f\xef\x0c\x0e\x59\x1d\x50\x5f\x78\xb2\xdd\xe3\x8b\x44\x09\x39\ +\xca\xa5\x0e\xe2\xea\x98\xe6\x15\x26\xf3\x6c\xe6\x9e\xc9\x5e\x32\ +\x5d\x2d\xa6\x8f\x45\xb6\xb2\xa8\xcd\x66\xcb\xe9\x66\xb3\xb8\x5d\ +\xcc\xec\x8f\x6c\xfd\xb0\x7c\xbc\x5b\xac\x7f\xb5\x17\x2d\x8a\x34\ +\xff\x35\x9f\x6e\xdc\x57\x91\xae\x1e\x7e\xfd\xc7\x7f\xff\x22\x1a\ +\x52\x6e\xef\x9b\xbe\x3c\x64\x79\xe1\xbd\xcc\x1f\x2c\x41\xa3\x58\ +\x68\x70\xf7\x6b\xbb\xfb\xb3\xdd\x7f\x35\x4f\x6f\x37\xee\xb8\xea\ +\x0d\xdd\x2f\xfb\x8a\x6a\x3c\xba\x2c\xf7\x6e\x1f\xd8\x3d\xed\xfc\ +\x69\x91\x3e\xb7\xc7\xde\x4c\x37\x15\x15\x47\xa3\x87\xe9\x9d\x1d\ +\x71\xcb\x2c\xbf\x1e\xff\x78\x5b\x7e\xea\x1d\x37\x59\x3e\x4f\xf3\ +\x66\x57\x54\x7e\xf6\x76\x65\x16\x95\x45\xf1\x5a\xf1\x58\x7d\xed\ +\xe6\x89\xdd\x55\xb7\xfb\x7d\x78\xff\xe6\x7e\x3a\xcf\x9e\xaf\xc7\ +\xea\x70\xe7\xd7\x2c\x5b\x5d\x8f\x63\x91\x48\xe3\x87\x32\x3e\xdc\ +\x3d\x7b\xb9\x1e\x7b\x81\x14\x71\x12\x18\x63\x8e\xf6\xba\x07\x4a\ +\x84\x09\x74\x54\x23\xb7\xbb\xf3\x31\xcf\x2d\x17\x7a\xcb\xe9\x6b\ +\x6a\xdf\xaa\xfc\x0a\xea\x83\x36\xf7\xd9\xf3\x5d\xee\xa8\x53\xe4\ +\x8f\xe9\xe1\x99\x6e\x8f\x77\x73\x93\xbd\xc0\xbb\xed\xa0\x78\x74\ +\xfc\xed\x3d\xae\x17\x85\xe5\xa1\x87\x97\xdd\xab\x3e\x2e\xe6\xe9\ +\xe6\x8d\xeb\xba\x7d\xdf\xb8\xf0\xf3\x62\x6d\x89\xe4\xd5\xa3\x5d\ +\x06\x5b\x0c\x0e\x8f\x68\x86\x7e\xec\x1f\x91\xa4\x3e\xc2\xde\xe1\ +\x08\x87\x7a\xd7\xeb\xdb\xbb\x56\xd3\x97\xc5\x6a\xf1\x35\xb5\x74\ +\x91\xe5\xb0\xb3\x43\x6b\x8f\x2a\xd5\x69\xa3\x51\xf1\xea\xd8\xf8\ +\xe5\xd5\x6d\x1b\x37\x1b\x1d\x39\xdd\x06\x1d\x84\xd1\x76\x63\x96\ +\x2f\x2c\x77\xec\x3c\x4e\xb3\xe9\x75\x77\x93\x63\x7a\x2b\xb3\x5f\ +\xca\xf1\x55\x8e\xbe\xf8\x70\xdf\xeb\xee\xbe\x7a\xd8\x5f\x1e\x8f\ +\xfb\x72\xfb\x2a\x2d\xa6\xf3\x69\x31\x6d\x99\xa0\xd9\x62\x99\x46\ +\x37\x6f\x66\xe5\xe7\xe4\x1f\x3f\xff\xf5\x73\x7d\xa3\xab\xd9\x6c\ +\xf2\xbf\x59\xfe\xa5\xb9\xef\x68\xe4\x0e\x98\xde\x64\x8f\x96\xd2\ +\xe3\xcf\xdb\xcd\x57\xf3\xd9\xc4\x4a\x3c\x2b\x09\x3e\x2f\x56\x76\ +\x68\x3b\x61\xf9\x27\x2b\xe1\xae\x2e\xdb\x1d\x7b\x07\x3b\x62\xb5\ +\x17\xad\x2e\x9b\xa7\x95\xe8\x04\xe7\x8f\xf9\x6c\xb5\x70\x27\x5d\ +\xfe\xb3\x58\x2c\x97\xbf\xb8\x9b\xd4\x6f\xbc\x73\xd1\x45\xb1\x4c\ +\xdb\x8d\x57\x97\xf5\xd3\xd7\xef\x76\xb9\xf3\x72\x57\x97\xcd\xdb\ +\x97\xbf\xee\x5a\xaa\x94\x3c\x71\xc4\x38\xcb\xe9\x4d\xba\xbc\x1e\ +\xff\xcd\xed\x1c\x1d\xed\xbd\xcb\xb3\xc7\x87\x55\x36\x4f\xeb\xd3\ +\x1b\x2c\xee\xfe\xd3\x71\x07\xb7\x0d\xde\xba\xad\x9d\x15\x97\xcb\ +\x6c\x0b\x52\x3a\x2b\xb6\x23\xa1\x78\x5d\xda\xcb\x95\x62\x6a\xf2\ +\xa3\x5f\x7e\x3e\xcd\x17\x9b\x07\x7b\x41\x3b\xbb\x2c\x17\xeb\xf4\ +\x53\x66\xc5\xfa\xed\x32\x7b\x9e\x3c\x2d\x36\x8b\x9b\x65\xfa\xa9\ +\xfc\x5e\x2c\x2d\x41\xb7\x9b\x6a\x61\x35\xb1\x82\xdf\x24\xe5\xe7\ +\xd3\xad\x25\xf4\xa4\x96\x89\xe5\x0f\xaf\x39\x48\x56\x3f\xf3\xc7\ +\x65\x3a\x59\x67\xeb\xaf\x56\x16\x7e\xda\x14\x79\xf6\x25\x75\xc7\ +\x1b\x6d\x1f\xa1\xfa\x59\xf1\xed\x44\x0b\x99\xc8\x30\x8a\x8c\x6c\ +\xb6\xbb\xe7\xb2\x6f\x38\xb9\x79\x2c\x8a\xdd\x6d\xff\x97\x2d\xd6\ +\x13\x8b\x74\x9a\x37\x5b\xcb\x1f\x4b\xcb\x82\xc5\x24\x6c\xb6\xcd\ +\xa7\x56\x76\xe6\xb9\x7d\x43\x7b\xf7\x74\x77\x6b\x76\x7b\xbb\x49\ +\x8b\x89\xb2\xf2\x4f\x19\x5f\x6a\xd3\xec\x6c\x1f\x7d\x35\xcd\xbf\ +\xa4\x79\x75\x66\xba\x9e\xda\x97\xf7\x6e\xa6\xb3\x2f\x0e\x9b\xf5\ +\x7c\x32\x9d\x59\x41\xf6\xb8\xb4\x6a\xd0\x1e\x0f\x3b\x92\x07\x41\ +\xdc\x72\x67\x2d\x90\xa2\x44\xb8\x79\x36\x68\x99\xbb\x91\x43\xda\ +\x88\x92\x31\xcd\x76\x8f\x13\xdb\x2a\x12\x7b\x33\xc9\x68\x64\x79\ +\xd8\x93\x81\x30\xbb\x4c\x6c\x31\x7e\x98\x16\xf7\x07\x18\x97\x78\ +\xec\xbc\xf0\x16\xee\x3d\x5a\xab\x6a\xe6\x0f\xc2\xf0\x9c\xb4\xde\ +\x92\x73\xfb\x1e\x96\x48\x7f\x1f\x6d\xa5\xd1\x85\xb7\xfd\x73\xf4\ +\xef\x51\x10\x54\x3f\xe2\x3d\x9a\xba\x57\x54\x49\xd2\x92\xa2\x9d\ +\xa6\xb2\xb5\x7d\xe4\x22\xcb\x3d\x3b\x61\x3d\x4d\x8b\xc7\x3c\xdd\ +\x93\x8c\x5b\x09\x67\x59\xc9\x09\x05\x3b\xb7\xcc\x66\x1f\x9d\x76\ +\x81\x16\xea\x62\x4b\xa9\xd1\x7f\x8d\x8e\xc5\xfe\x0e\xd5\xcc\xf7\ +\x43\x35\x29\x2c\x88\xbe\xd2\xe6\xe1\xe5\x74\xb2\x81\xc4\x58\x8d\ +\x1a\x24\x82\x0b\x15\x8b\xb8\xfc\x6b\x34\xdb\x6e\x0d\x2f\xfc\xb7\ +\xfe\x3e\xa2\x55\x10\xc7\xca\xf3\xdf\x4d\xad\x4e\x06\x91\x8c\x75\ +\x28\xb5\xee\x90\x1e\x91\x08\x2f\x1a\xa5\xde\x51\xc2\xbf\xf0\x42\ +\xa1\xca\xe1\xf1\xd6\xdf\xc7\x94\x30\xe1\x87\xa7\x83\x94\xf5\x68\ +\xe8\x84\x1a\xde\xfb\xb9\xe8\x3b\xa5\x87\x52\x1d\x0d\x0c\x2f\xf9\ +\xf0\xa4\x88\x3b\x1d\x1a\x1f\x9e\x55\xb6\x53\x49\x37\xf4\x08\x3e\ +\x3a\x3d\x64\xdc\x29\x3d\xde\xaf\xb6\xfc\x47\x7a\x94\x3a\xf6\x96\ +\x06\xbd\x4c\xb2\x56\x8c\xa0\xe6\x57\x4f\xfd\x9e\xc8\xb1\x1d\x2a\ +\x38\x9a\x48\x42\x96\x39\x33\x41\x64\x17\x4a\x18\xa9\x0c\x39\x2f\ +\x41\x22\x2c\xbf\x84\xbf\x1b\x52\xb4\x86\x1e\x8a\x20\xbf\x41\xff\ +\x38\x87\x1f\xa4\x91\x40\xe5\xf9\xef\x76\x7a\x40\x54\xf7\x4f\xa7\ +\xf5\x6f\xf2\x75\xf8\x47\x48\x21\x5c\x1c\xc6\x6f\x05\x79\xe3\x73\ +\x15\xed\xa6\xc6\xb9\xe1\x8b\x44\x86\xca\xe8\xb8\xdd\xe5\xfc\x94\ +\x81\x08\x8f\x9c\x1b\x8d\xe8\xd0\x8c\xdb\x79\x71\xdb\x11\x29\xa7\ +\x23\xa7\x1b\x07\x14\x23\xd7\x03\x72\x09\x02\xb9\x50\x44\xc7\xc8\ +\x69\x11\x24\x7e\x18\x47\x8c\xdc\xb9\x79\x6e\xc7\x85\x70\x3a\x76\ +\xb5\x9a\x69\x18\xbb\x3e\xb0\xc3\xcc\x74\x10\xd7\x25\xa2\xc4\x2d\ +\x50\x8c\xdc\xd9\xb9\x2e\xea\x98\xeb\x18\x3b\xb2\xb9\x6e\xc7\x0a\ +\xec\x48\x4f\x09\x84\x8e\x64\xe2\xb3\x9e\x42\x30\xdb\xa1\x74\x15\ +\x73\xe8\x51\x63\xf4\x28\xe7\xbb\xae\x19\xcf\x08\x3f\xb6\xd0\xc9\ +\x84\xa1\x3b\x3b\xe3\x75\xcd\x76\x8c\x1d\xdd\x84\x87\x50\x34\x95\ +\x0f\xe4\x8b\xb0\x61\x4e\x3a\xe1\xc9\xae\x67\x3c\x86\x8f\x08\x3e\ +\x8c\x95\x00\xfa\x32\x59\x57\x21\x63\x3c\x84\xb2\x02\x0b\x4d\xc6\ +\x8e\x6c\xc2\xc3\x48\xcc\xa4\xe2\x3b\xf6\xac\xf4\x36\xe1\x21\xa4\ +\xa6\x92\x80\x99\x40\x8a\x9e\x3b\xdb\x0c\x15\xbd\x04\x10\x9a\x87\ +\x39\xa4\x0d\x80\xc7\x7b\x2a\xfc\xaa\x38\xed\x9e\xe4\xf4\x1b\x67\ +\x27\xe3\x77\xf6\x59\x0f\x8d\x60\x00\xc8\x4f\x46\x90\x6e\xee\x03\ +\xa4\xe7\x69\x00\x2a\xb1\xcf\x7d\xa1\x48\x4a\x9e\x64\xec\x08\xe6\ +\x3e\x8d\x45\x2f\x14\xba\x42\x8b\x21\xec\xc3\xc5\x09\x99\x0d\x28\ +\xf6\x33\x35\x9e\x86\xb1\x3b\x7f\x50\x0f\x32\x1c\xf0\xec\xc7\x10\ +\x12\xc6\xf6\xf0\x12\x14\x54\x60\x94\x60\xf4\x48\x9c\x9d\x50\xa0\ +\xe1\x34\xfc\xb4\x88\x18\x3a\xf2\xd0\x1e\x1e\x37\x88\xef\x22\x11\ +\x96\x64\x92\x8c\xe0\xf9\x23\x7c\x78\xd3\xe1\x80\xf5\x18\x3d\xc2\ +\x18\x1f\x1e\xbd\x7a\xfd\x1a\xfb\x5e\x7a\x0c\xf5\xe1\x35\xd0\xc3\ +\xe9\x8f\x01\xa4\x0a\xf6\xe1\x6d\x3f\xd0\xfb\xc9\xfa\x0b\x89\xe3\ +\xd3\x8b\xcf\x22\x3f\x19\x3d\x92\x80\x1f\x5e\xfd\x84\x0a\xa3\xb0\ +\xe5\x4e\x1a\xf7\xc3\xdb\xee\x46\xc4\x65\xed\x20\x06\xb1\x0f\x10\ +\xb1\xf3\x5f\xab\xab\xec\x4a\xd0\x44\x28\x36\x22\x88\x26\x41\x60\ +\x09\xdf\x69\x08\xba\xe9\x8e\xc1\xeb\x65\x0e\xc4\xea\x2f\x4d\x5a\ +\xe0\x9e\xfe\xd2\x7a\x65\x18\x40\x82\x19\x10\x3b\x01\xb6\x85\xdc\ +\x18\xc3\x5e\xc2\x7f\x40\xaa\x35\x9e\x09\xdb\x15\x63\x0c\xe0\xf9\ +\x63\x80\x68\x39\x0a\xf1\x20\x43\x48\x19\x03\xc4\xba\x42\x0f\xd5\ +\x98\xd6\x31\xc3\xe8\x51\xc4\x00\x8f\xca\x9c\x9e\x8a\xdf\x36\xe1\ +\x85\x41\xec\x27\x1a\x88\x46\xf0\xd0\x90\xe0\x14\x26\xc2\x40\xe0\ +\x59\xf8\x8f\x21\xa4\x8c\x06\xa2\xb5\x18\xb0\x36\x08\x9b\xf3\xb4\ +\xd1\x40\xb4\x39\x01\x32\x22\xa3\x48\x17\x12\x44\x8b\x52\xc8\x27\ +\xca\xaa\x0c\x65\x60\x10\xed\x94\x81\x44\x29\x43\x48\x1a\x1d\x44\ +\x63\xb8\x9f\x54\xc1\xd6\x3c\x69\x5c\x10\x2d\x44\x4d\x5d\xff\x93\ +\x41\xec\x69\x51\x12\x3a\xaf\x09\x86\x90\xa4\x48\xdd\xa0\xb1\x2b\ +\x17\x25\xa1\xf5\x50\xe5\x43\x75\x28\x18\x3d\x0a\x67\xa8\x46\xe7\ +\xc6\xb4\x06\xc3\x2e\x7a\xc7\x3d\x83\x18\xc4\x73\xae\x8b\xc0\x33\ +\x21\x98\x5e\xc8\x30\xd2\x19\x83\x78\x4e\x04\xbd\x32\x0c\x21\x65\ +\x9a\x28\x3e\x51\x14\x5c\x61\xc6\x20\x12\x6a\xa3\xe8\x4c\x35\x5e\ +\x62\xd6\x93\x22\x8a\x36\xe4\x41\x3b\x82\x01\xa4\x53\x63\xce\xa3\ +\x8d\xf2\x32\x17\x42\x35\x06\xeb\x8f\x01\xf3\xb4\x75\xa5\x9d\xd2\ +\x94\x25\x1c\x34\x84\xb5\x1a\x83\xce\xb6\xff\x0e\x8a\x35\x9d\xd6\ +\x1b\xf8\x77\x85\x62\x12\x40\xbd\x1f\x42\xed\xfe\xd3\x00\x82\x81\ +\x1f\xc4\xf6\xff\x03\xb7\x4c\xe2\x0e\xdf\xd7\x66\xb4\x88\x23\x95\ +\x44\x44\x91\x89\x01\x23\xe8\xca\x6d\x41\xb9\x6a\xa7\x61\x68\x0d\ +\x07\x77\x3c\x63\xd8\x9b\x35\x01\xac\x9a\x38\x0d\xc2\x83\x9a\x3f\ +\x8e\x2d\x63\xfb\x21\xa9\x8d\x3d\x68\xf4\x2a\xa3\x02\xd0\x48\x4f\ +\xc3\xcf\xaa\x2e\x7e\xe2\x27\x8a\x41\xec\xa9\xe8\x16\x14\xa3\x47\ +\xb1\xa0\x0c\x84\xd4\xf6\xc3\x6a\xcc\xf9\x59\x30\xf2\xc0\xb2\x07\ +\x78\x16\x64\x10\x89\xe3\x4c\x80\x5b\xad\x03\x5d\xc6\x08\x77\x60\ +\xc4\x82\x94\xca\x43\x83\x66\xc6\xc8\x6a\x9f\x41\x14\x18\x86\xb1\ +\xaf\x62\x5c\x90\x87\xbb\x03\x56\xf4\x85\x0e\x8d\x0c\x89\x9c\xa5\ +\x03\xc6\xb0\x2c\xc7\x85\xb7\xef\x41\x46\x64\x10\x89\x4b\x3a\x9d\ +\x49\xa0\xb2\x8d\x4f\xe8\xf2\x46\x1b\x18\xa0\xab\x8d\xe7\x44\xca\ +\x55\x4d\xe8\x49\x51\x2a\xa1\xa4\xb1\xff\xed\x81\x98\x88\x28\x0e\ +\xfd\x98\xa8\xbd\xc4\x80\x41\x2c\xf3\x48\xa1\xe0\xd3\x69\x20\x46\ +\x42\x5b\x0c\xd9\x59\xd3\x67\x18\x1f\x4a\xa2\x39\x0d\xc5\x44\x84\ +\xd6\xde\x97\x8c\x62\x8f\xf6\x3e\x5e\xa0\x1a\x61\xa7\xbf\x20\xe2\ +\x59\xb1\x57\x83\x1f\x2c\x1e\xdb\x81\x7a\xc3\x33\x23\x65\x6e\x29\ +\xda\xcc\xb0\x16\x85\x54\xb1\x8a\x25\x73\x63\x8f\x69\x19\xf8\x70\ +\x14\xe8\xba\x61\x5e\xa4\xcc\x2f\x45\x83\x28\x03\x8b\x97\x65\xc6\ +\x3e\xd7\x1d\x0e\x18\xc4\x26\xdb\xf4\x2c\xd6\x06\xc3\x48\xab\xa7\ +\x2a\x74\x86\x06\x3c\x33\x86\xf6\x22\x89\x8a\x88\xea\x28\x0c\x18\ +\xc6\x6d\xea\x30\xda\x23\x0e\x1b\x1c\x0c\x24\x71\xe6\x29\x3e\x65\ +\xea\x3b\xc8\x5c\x1c\x70\x06\xb1\xcb\x3d\x45\xf7\x1b\xe1\x86\x3f\ +\xbd\x27\x9f\xa2\x97\x94\x72\xc7\x9f\x9e\xe0\x2b\x93\xde\x80\xd9\ +\x10\xdf\xae\x30\xac\x97\xea\x13\x19\xfc\x03\xc6\xb0\x4a\x7d\x43\ +\x2f\xc3\x80\x3a\x57\x30\x88\xb4\x26\x06\x9a\x13\x0f\x04\x29\x37\ +\xad\xa0\xb6\x2d\xd0\x08\x42\xed\x7f\x18\x46\xd2\xa4\xb7\xae\x9b\ +\xa7\xa9\x7a\xad\x30\x1b\x14\xe7\xe7\x42\xe7\x36\x3d\x4b\x0b\x43\ +\x06\x91\x6e\x2a\xec\xa4\x0b\x5e\x02\xd4\xcf\x67\xc3\x82\x3c\x69\ +\x11\xbd\xc8\x1b\x62\x46\xc6\x91\x32\x24\x7c\x96\x4a\x35\xac\xd3\ +\xd0\x7a\x4b\xd1\x93\x22\x24\x4f\x19\x44\xba\x49\x51\x76\xd0\x9c\ +\x0b\xac\x98\xc1\x46\x3e\xe5\xa4\x18\x75\x50\x07\x33\xf0\xab\x7a\ +\xec\x8a\x61\xec\x37\x8e\x88\x6d\x74\x08\xd6\x3e\x61\xe5\x86\xb4\ +\x08\x11\x7a\x66\x04\xb9\xb1\x3d\x92\x41\x24\x0a\x06\xa3\x3d\xe0\ +\x1c\x49\xec\x39\x18\x8c\x46\xf0\xc0\xf1\xc6\xe5\xdc\x48\xc3\xc0\ +\xe8\xe6\xe9\x90\xa9\xcf\x18\x92\xc6\x82\xd1\x18\x42\x61\x44\x36\ +\x13\x69\x63\xc1\x68\x10\x21\x33\x91\x41\xa4\x8d\x05\xa3\x6d\x0b\ +\x50\x9a\x72\x89\x5a\x3a\xfb\x10\xad\xce\x40\x2e\x37\x46\x90\x62\ +\x2a\x2c\xc3\xc0\x67\xe1\x40\x36\x28\x88\x8b\x9f\x9c\xc5\xf1\xcd\ +\x28\xd2\x46\x83\xd1\x3e\x9a\x7d\xe7\x0c\xdb\x14\xd4\x61\x60\x74\ +\x5e\x14\x38\x17\x32\x8e\x84\x9e\xd2\xae\xb3\xbc\x59\x93\x21\xf3\ +\x8e\x62\x93\x30\x0e\xc4\x27\x03\x47\x31\xef\xb9\x80\xef\x59\x62\ +\x13\x6c\xc9\x93\x07\x7c\xd1\x38\x06\xf5\x56\xc6\xb1\xdf\x88\xef\ +\x59\x96\xab\xb1\x1e\x43\x1b\xf1\xc5\x26\x78\x83\xdc\xc8\x8d\x67\ +\xc8\x23\xbe\x68\x3f\x37\xc7\x0b\xfb\xd2\x6e\xf0\xd1\xc2\x44\x44\ +\x25\x45\xf6\xfd\xdb\xdb\xae\x5e\x04\x08\xde\xde\x96\xe7\x0f\x13\ +\xc1\x32\xe2\x8b\x6e\xa3\x27\xa1\x18\x05\x25\x86\x83\xe6\x42\x17\ +\xf1\x45\xf7\xb0\xdc\xca\xcc\x5d\x08\x69\x4b\xd3\x0c\x18\xc2\x2a\ +\xe0\x8b\xf5\xae\x95\x16\x3d\xe3\xd7\xdf\xba\x5f\x34\x17\x42\x82\ +\xb4\xcd\x2e\x65\x14\x69\xec\x43\xac\x9f\xad\x6d\xdf\xcc\x30\xf6\ +\x15\xf6\xc5\x46\x7d\x61\x9d\x26\xac\xfc\x70\x01\x63\x48\x12\xf5\ +\x45\x2b\xa6\x10\x23\x32\x88\xb4\x41\x5f\x6c\xc0\x49\x1e\x96\x2e\ +\x65\xb3\x82\xb8\x61\x09\x5a\x96\x82\x6c\xc8\x40\x12\x7a\x4b\xb1\ +\xa6\x05\xe8\xa6\x61\x95\x86\xd6\x57\xda\xad\x24\x65\xf4\x68\x83\ +\xc0\xd8\x70\x45\xab\xb7\xb0\x89\xdf\x63\x10\x18\xeb\xf0\x6e\x11\ +\x63\x18\x7b\x8d\x01\x63\x81\x6c\xe3\xf6\xbb\x42\xd5\xaf\xd7\x6f\ +\x33\x90\x24\x31\xe0\xf3\x70\xe3\x56\x5f\x65\x10\x89\x62\xc0\xd8\ +\x92\x18\xdf\x83\xe7\x74\xc0\xa5\xbc\x5d\x09\x68\x74\xdb\xa0\xfe\ +\xcb\xb1\x73\x28\xb8\x83\x36\xb3\x60\x31\x76\x2e\xaa\x4f\xd8\x70\ +\x26\x84\x2c\x45\x74\x43\x3d\x6e\x1a\x44\xa9\xa3\x6a\x58\x43\x3d\ +\x8d\x15\x95\x38\x4c\xc9\x60\x04\xe9\x16\xe1\xe3\xdb\x05\x41\x5c\ +\x28\x85\xd1\xd2\x68\xa2\xe8\xc5\x80\x31\xac\x72\x32\xc0\x65\xf8\ +\x38\x2e\x64\x04\x49\xb3\x32\x12\x70\xcd\x53\x07\x3a\x0d\x37\xee\ +\x22\xf6\xd9\x74\xc0\x8b\x60\x37\x44\x06\x92\x32\x33\x23\x38\x4f\ +\x7f\xd9\x44\xa8\xd0\x7e\x34\xa3\x78\x7e\x76\x2c\x57\xe4\xe3\x61\ +\x84\x98\x91\x61\xa4\x8f\xef\xa3\x7b\x05\xc3\x62\x95\x6d\x7e\x42\ +\x57\x38\xbe\x8b\x1e\xec\x7e\xa3\x9c\x1b\x07\xed\x7e\x4b\x4a\x73\ +\xc3\x87\x3c\xe1\x1d\xf4\x0a\x66\xcb\x9f\xd4\x77\xa3\xbc\x18\xdf\ +\x9d\x14\x6a\x16\xcc\x38\xd2\xda\x8e\x5d\x34\xef\x06\xdb\x05\xb3\ +\xcd\x41\x6c\x3c\x2a\x38\x9f\xb8\x83\x29\xd2\x08\x77\x20\x55\xc5\ +\xf6\x01\x43\xe9\xf4\x1c\xe7\x05\x40\x07\x1a\x95\x50\xd2\x8a\x56\ +\xe6\xc8\x3e\x83\xfe\x8e\x27\xcf\xe2\x97\x63\x7e\xa4\xd5\x75\xb4\ +\xd5\x5a\xd1\xca\x0e\xa8\xb5\xd2\xb6\xf0\x1e\x30\x92\x95\xb6\x53\ +\xb2\xe6\x59\x64\x6b\x20\xa4\xb6\x1f\xa2\x84\xaa\x01\x03\xd9\xa6\ +\x37\x9a\x33\x29\xae\x0c\x25\x75\x6e\x5c\x88\x0f\x24\x73\x66\x55\ +\xaf\x48\x02\x42\x55\x1d\x21\x67\x75\x19\x19\x2a\xa3\x63\xb5\x07\ +\x5d\x08\x15\x66\x50\x22\x0a\xe3\x48\x92\xa8\x38\xc3\x86\xce\x33\ +\x80\x43\xee\xdd\xe0\x81\xd9\xc5\x0c\x1e\x59\x16\x0e\x60\x29\xbe\ +\x1b\x3b\x0d\x97\xaa\x35\x32\xf1\x49\x8a\x83\x0d\x1a\x3a\x97\x7c\ +\x03\xe8\x2f\xef\x06\xcf\x34\xcb\x30\x18\xbc\x7e\xd6\x7d\x03\x06\ +\xe1\x7b\xc1\x53\x12\x6e\x98\xc0\x52\x93\x32\x2e\x8c\x99\xf6\x12\ +\xa8\x3a\x26\x03\x48\xb8\xdc\x14\x31\xf1\x29\x1f\xe8\xfd\xc4\xb2\ +\x93\x74\x99\x29\x10\xcb\x7f\x37\x7c\x01\xa4\x73\x32\x7c\x44\x2a\ +\x27\x46\x6c\x82\xa6\x5e\x2c\x12\xe3\x27\x21\x8b\x4d\x02\xce\xc3\ +\x98\x0b\x6f\x2c\xeb\x66\xf0\x88\xe6\xbc\x18\xc3\x79\x90\xad\x67\ +\xd5\xd0\x28\x70\xe8\x31\x78\x04\x73\x1e\x10\x0a\x44\x19\x7b\x8c\ +\x1e\x9d\x97\x05\x61\xeb\xc1\x5e\x96\x48\x48\xad\x68\x1a\x22\x0c\ +\x1a\xba\x10\xa7\x6a\xc2\x5e\x16\x06\x8f\x2e\x66\x1b\x61\x7c\x64\ +\xa0\xc6\x92\x08\x2b\x34\xb5\xe2\xa0\x10\x89\x9b\xa5\x7b\x2f\x0b\ +\xe3\x47\xb7\x96\x09\xa3\xb3\x80\xcc\x17\x8a\xc0\x4a\x4e\xc6\xee\ +\xfc\xbc\x07\x2e\xae\xc7\x71\x1e\x83\x47\x17\x5d\x00\x16\x2c\xe1\ +\xa2\x0b\x6c\xa8\xd3\x46\x17\x30\x9e\x16\x90\xfb\x18\x40\xb2\x24\ +\xec\xce\x5d\x9c\xac\xb3\x10\xa6\x94\x75\x1e\x98\x65\xf4\x08\xe3\ +\x7a\x08\x95\x13\x8e\xeb\xb1\xb5\x4e\x19\xd7\xf3\x11\x99\x80\x70\ +\x60\x8f\xf1\xa3\xca\xe1\x44\xcd\x7b\xa0\x9b\xd3\x08\x63\x05\x67\ +\xc0\x3a\x0b\x01\xf3\xc5\xd0\xe2\x3f\x9c\xa3\x93\xe1\xa3\xcb\xe3\ +\x44\x99\xeb\xdf\xaa\xb8\xcd\xf1\x21\x8a\x20\x03\xd8\x71\x19\x6b\ +\xf0\x31\x7e\x74\xd9\x9c\x98\xc9\x0f\x56\x5c\x58\x7a\x12\xe7\x73\ +\x76\x6f\x3b\x30\x84\x94\x19\x9d\xd0\xd2\x4c\xac\xd3\x93\x45\x28\ +\x65\x52\x27\x4a\x88\x86\x90\x0a\x4a\x89\xa0\x3b\x7b\xc0\x8d\x0a\ +\xaa\x75\xb5\x80\x1a\x83\x6b\xd1\xcb\xcd\x08\x49\xab\x16\x6a\x74\ +\x6f\xd7\x03\x00\xdb\x2e\x30\x0c\xe0\xf9\xf5\x50\x30\x5d\xa9\x83\ +\x2e\x5a\x0e\x54\xc6\x8f\xa8\xde\x24\xba\x4b\xf6\xa1\x0c\x65\xf4\ +\x68\x42\x47\x60\x4d\xbb\x0e\xb8\x8f\xe7\x40\xda\x46\x84\x68\x06\ +\x04\xfb\xb9\xfa\x4d\x68\x97\x51\xa4\xe9\x44\x88\x56\x65\x0e\x57\ +\xf8\x31\x7e\x84\x9d\xeb\xba\x6d\xe6\x1a\x57\x2e\x52\x2a\xf4\x06\ +\x5d\x96\xa7\x6e\x0b\x82\x2e\xd4\xab\x84\xf6\x13\x3f\xd9\x63\x42\ +\x2d\x94\x31\x86\x4b\xd7\xd1\x58\x83\x06\x5d\xf9\xdc\x4e\x85\x49\ +\x14\x44\x81\x3e\x50\x48\x23\x23\x43\x43\x54\xa5\x77\xc0\xa2\xb4\ +\xec\x59\xa7\xf0\x5d\x40\xd9\xa8\xef\x55\x9a\x6a\x7c\x73\x6c\x48\ +\x25\x8d\x44\x58\xd2\x8a\xa8\x03\xc1\x80\x61\xac\xea\x47\x82\xab\ +\x38\x71\xa6\x3d\x2b\xa5\xc4\x0e\x6e\x83\x37\x2b\x40\x1b\x9f\x81\ +\xa4\xec\xb1\x04\x76\xca\x3a\x09\xc5\xb6\x91\xf9\x0e\x8a\xba\xea\ +\xa7\x1c\x90\xd4\x11\x19\x34\x8a\x95\x7e\x1a\xe1\x99\x31\x11\xaa\ +\x9a\x02\x19\xc6\xde\x62\x16\x60\xd2\x3d\xbe\x4d\x3d\x6b\xa9\xe4\ +\xa1\x0b\x1f\xaf\xa8\x42\xb3\x23\x23\x49\x1b\xc6\x88\xf0\x8a\x2a\ +\x98\x53\xca\x4a\x0e\x69\x20\x23\xc6\x87\x12\xf7\xd4\x1b\xb6\x17\ +\xa9\x43\x18\x0a\xaf\xe0\x18\x21\x8f\xe4\x29\x03\x49\x1b\xcb\x00\ +\xd3\xf3\x4f\x33\x37\x0e\x9a\x64\x07\x82\x9d\xa7\x67\x17\xa2\x65\ +\xcf\x0f\x4e\xc6\xf8\x78\xc8\x95\x6e\xef\x0e\x92\x11\x39\x17\xaa\ +\x2f\x27\x8d\xf3\x97\x26\x78\xb3\x90\x13\x31\xfa\x0f\x5e\x74\xc0\ +\x87\x9c\x88\xd1\x63\xd4\x22\x3c\x8f\x4d\xcf\x59\x6d\xd4\xa1\x0b\ +\x8d\x67\xc4\x37\xaa\x72\x31\x90\x84\xa1\x0b\xb0\x07\x1d\xfb\xd8\ +\x3e\x0e\x8c\x75\x6e\x4d\x74\x1e\x76\x24\xc5\x71\xd0\xab\xd6\xaa\ +\xe0\x45\x84\xd7\x52\xa1\x18\x14\x9b\x19\x94\x71\x0b\x70\xfd\x76\ +\x07\x53\x23\x83\x48\xe3\x62\x53\xdd\xfb\x69\x28\xb5\x9a\x41\x8b\ +\xd1\x2a\xe4\xe4\xe3\x67\x43\x50\x8c\xb2\x72\x4a\x1a\x72\xea\x20\ +\x23\x03\x0a\x58\xb0\xcd\x4f\x1e\x79\x02\xeb\x58\xe2\x53\xa4\x18\ +\x49\xda\xd0\x93\x44\xab\xa7\x20\x8c\xc4\xeb\x69\x06\x0c\xe3\xb6\ +\xcd\x75\xc2\xb1\xa8\x8f\x88\x5f\x80\x76\x9f\xb6\x16\xfd\x0e\x76\ +\x2a\x68\x8a\x7e\x31\x80\x67\x67\x40\xb0\xc3\xfc\x69\xac\xe7\x03\ +\x85\x9d\x19\x43\x3a\xe5\x14\x9f\x0b\x95\x88\xa8\x24\xc9\x5e\x1e\ +\x86\x8a\x45\xec\x78\x93\x2b\x0c\x91\x28\xa6\x1a\xaa\x52\x7a\x1a\ +\x23\xca\x06\x30\x46\xb1\xaf\xa6\x4c\x78\x8f\x29\x28\x4d\xb5\x88\ +\x18\x3f\x92\x58\xa2\x8f\x2f\x33\x74\xa0\x8a\x32\x78\x44\x01\x0b\ +\xb0\xcc\x25\x3e\x7a\xc8\xaa\x0c\x71\xcc\x42\x75\x5e\x6a\x8f\x21\ +\x24\xf4\xcc\xf8\xe8\x39\x10\xb6\x0a\x59\x8c\xd2\x78\x64\x3a\xa8\ +\x2e\x04\x8a\x51\x32\xfc\x06\x5c\xdb\x24\x29\x6b\xcd\x02\xe2\xf3\ +\xa4\xca\x26\xa0\x5b\xd4\xe2\xa7\x42\xfb\x61\x10\x29\xa6\x41\x0d\ +\xe7\x96\x9e\x06\x63\x20\x64\xac\x63\x7d\x28\x46\x19\x46\xb2\x5c\ +\x28\xdf\xd9\x84\x48\x18\xad\x45\xe8\x9b\xd0\x84\x87\xfe\xb5\x24\ +\xf4\x63\x9a\x02\xec\x83\x86\x31\x29\x33\xbd\xc1\x18\xfe\x69\x30\ +\x86\x22\xb4\x28\x9a\xc3\x49\x91\xb9\x91\x50\xa8\x3a\x23\x11\x5d\ +\xbc\x2d\x16\x81\x95\xaa\x31\xcf\x8e\x3d\xba\x69\xea\xea\x0a\x58\ +\x28\x8d\x30\x52\x49\xa5\x58\xb4\xf6\x18\xff\xf5\xc0\xd5\x50\xa7\ +\xa9\x3a\x52\xc4\xca\x21\xd9\x23\x90\x03\x36\x1b\x93\x00\xee\xaa\ +\x7d\x92\xd5\xd8\xe6\x5d\xb0\xe7\xa6\xaf\x85\xa5\xf8\x6a\x7c\x30\ +\x8a\x1c\x84\xa2\xad\xc6\x17\xa0\x7d\x38\x70\x48\x98\x7d\x70\x74\ +\x0a\x4e\x07\x69\xc3\x60\x40\x98\x31\xa4\x09\x47\x45\xf6\xdf\x59\ +\x6a\x9b\xf2\x9c\x48\xbe\x88\xa6\x8b\x95\x89\x20\x33\x32\x94\x84\ +\x29\xc3\x60\xcd\xef\x0e\xb4\x1b\x96\xa8\x54\xb6\xa2\xc2\x67\x67\ +\x80\x12\x95\x11\x24\xb3\xf6\xb5\x2b\xc2\xf7\xb1\x95\xd3\x01\xbb\ +\x6c\xaa\x00\xa3\x82\x72\x15\x3b\x70\xa2\xb2\xe7\x8d\x38\xc4\xd8\ +\x41\x90\x11\x8c\x15\x33\x90\xc4\xd1\xa9\x18\x32\xf8\x4f\xe3\x48\ +\x29\x74\x90\x04\x09\xfb\xc2\x7b\x8e\x4f\x81\x0b\xf6\x3b\x08\x35\ +\x52\x42\x39\xe8\x55\xdf\x89\x17\xa3\x3a\xae\x5b\x15\x15\x74\xdb\ +\x24\x7e\x18\x93\x68\x38\x83\x46\xcf\x31\xa2\xc2\x34\x5c\x97\x11\ +\xb0\xca\x9b\xe1\xa3\x5c\x85\x91\x60\xda\xad\xc3\xd9\x8b\xa1\xf0\ +\xe3\x48\xd2\xb4\x67\x1b\x34\x80\x95\xfb\x1b\xb4\x11\xdf\x8d\x60\ +\x5c\x75\xb9\x08\x19\xc1\x7e\x5c\x6d\xa0\x36\xfa\x6e\xf4\x54\x95\ +\xfe\xcd\xe8\xf5\xe6\xa6\x31\x90\x7d\xff\x6e\xfc\x12\x48\x7d\x39\ +\xc6\xef\x6e\xf7\xf6\x77\x41\xa0\xdb\x31\x53\xe4\xd3\xf5\xe6\x36\ +\xcb\x57\xd7\xe3\xd5\xb4\xc8\x17\x2f\x7f\xf4\x85\x36\xb1\xbe\xf0\ +\xdd\x7f\x22\x0e\xc3\x38\x91\x51\x7c\xa1\x13\x61\x94\x8c\x4d\x74\ +\x61\x84\x7d\x0a\xad\x13\xfd\xd3\xf8\x73\x7d\x95\xbd\x01\x02\x5f\ +\x33\xd6\x26\x49\x4c\xa4\xec\x35\x23\x2d\xfd\x44\xa9\xe0\xc2\xb3\ +\x9b\xe3\xd8\x6a\xd5\x52\xba\xcd\x2a\x91\x2a\x52\xc6\xdd\xf7\xa7\ +\x71\x7b\xb5\xfc\xb5\x74\x4d\xd9\x81\x1a\x05\xc9\xee\x76\x67\x12\ +\x5b\xed\x3b\x8a\x64\x2c\x77\xb6\xbb\xba\xe6\x46\x84\xbe\x4a\x76\ +\x0c\xac\x92\x5c\x9e\x53\x0d\xb4\x8c\x77\x9c\x59\x2d\x85\x8d\x30\ +\x3a\xf1\xb5\xd9\xdd\xd7\x00\x12\x8a\xc8\xd8\x57\xd7\x3b\xbb\x1a\ +\x20\xed\x5d\x5c\x3b\xaf\x60\x67\x57\xcd\x21\xd5\x00\x4f\x93\xe9\ +\x8d\x8c\xde\x1e\xe0\xe9\x53\xba\xce\xe6\xf3\xed\x00\x97\x66\x1e\ +\x59\xcb\x0c\x1e\xe0\xef\x1f\xb6\xdb\x5b\x6d\x07\xc1\xbb\x50\x4a\ +\x54\x28\x75\x94\xc4\x16\x8e\xc0\x28\x5f\xaa\x44\x97\x28\x39\xbc\ +\xa4\x31\x6e\x40\xf8\x61\x62\x74\x10\xc2\x28\xc5\x46\x6b\x65\xcc\ +\x01\x4a\xd2\x5e\xd7\xb7\xdb\x93\x7d\x94\x12\x11\xd9\xa1\x28\x75\ +\x78\x80\x52\xa8\xed\x5d\x7c\x3b\xda\x01\x94\xa4\x16\xbe\x1d\x8e\ +\x3a\x00\x50\xb2\x56\xb5\x7d\x5e\x23\xdf\x46\x29\xfe\x80\x30\x39\ +\xc2\x5a\x96\xb4\xe6\xa4\x1d\xe6\x87\xe3\xdf\x0e\x4c\x99\x44\x3a\ +\x50\xfb\x94\x3d\xae\x7e\x54\x51\x36\xd2\xb5\x8b\x17\xa0\x6c\x58\ +\x3b\x97\x92\x63\xca\xb6\x39\x25\x6f\x53\xd6\x33\xc3\x20\xad\x77\ +\xec\x10\x3f\x3b\x6d\x3f\x26\x65\x03\x61\xfc\xd0\x8a\x4d\x7d\x40\ +\xd8\x40\x68\x1d\xe8\x38\x89\xde\x4b\x58\x53\x52\x2f\x06\xe8\xba\ +\x07\x4e\x43\x50\x79\xa8\x91\x1e\x12\xf4\x23\x90\xf3\x61\x5a\xdc\ +\xef\x3c\x66\x36\x5f\x3c\xd8\x7f\xf6\xbc\x79\x5a\xbc\x3e\xa4\x1b\ +\xab\x80\xbd\xf1\xd9\x7d\xed\xf5\x97\x8d\xd5\x87\xd2\xc9\x2c\x5b\ +\x5b\xcd\xa8\xc8\x72\x6f\xf6\x98\x3f\x4d\x8b\xc7\xdc\xbe\xb4\xff\ +\x06\x81\x76\x36\xdb\xad\xab\x91\xb5\xf1\x44\x50\xc6\x85\x2e\x3c\ +\x69\x27\x80\xd1\xd3\x48\x0a\x39\x0a\x54\xf9\x75\xbf\xfb\xe3\xdf\ +\x23\xd7\x61\x64\xf4\xb7\x91\x17\x68\xa1\x2e\x1a\x87\x75\x3c\x72\ +\x32\xbd\x8a\x05\x5e\x34\x2b\x0e\x03\x7b\x1d\x2f\xda\x39\xda\xdb\ +\x46\x7c\xcb\x0d\xb2\xbe\xa5\x1d\x16\xee\xc8\xea\x5e\xe5\x97\x67\ +\xef\xf6\x75\xb4\x1a\x29\x77\x0b\xa1\xec\x66\x65\x95\x13\x77\x9d\ +\xd0\x5c\x6c\x83\x58\xf6\x61\xdc\xa9\xcb\x91\x5b\xe6\x5f\xde\xf0\ +\xc2\xe5\x05\xb8\x8b\x94\x87\x7f\x3d\x1e\x06\xfb\x3a\xed\x6d\xb6\ +\x2e\xbc\x72\x8f\x25\x7b\xbe\x9a\x2e\xab\x2d\x4f\xd3\x7c\x31\x5d\ +\x17\x7b\xdb\x9e\xcb\xf1\xb8\xb7\xc9\x82\x9b\x16\xb3\xfb\xfd\x6d\ +\x8b\xaf\xe9\x64\x95\xce\x17\x8f\xab\x4f\x4e\x2f\xf5\xee\x8f\xcf\ +\xbb\x9d\xae\x16\xcb\xd7\xc9\x3f\xed\xdc\xfc\xc9\x6b\x00\xf4\xaa\ +\xd3\x1f\xd2\xd9\xe2\x76\x31\x9b\x16\x8b\x6c\x5d\x1d\x51\xa4\x2f\ +\x85\x3d\x6a\x9e\xae\x9d\x7a\x5a\xfe\x9a\x2e\x17\x77\xeb\xc9\xa6\ +\x98\xe6\x45\xb5\x61\x9e\xce\xb2\xbc\x3a\xa7\x1c\x76\x07\x1b\x4b\ +\x0d\xb9\xda\xb3\x4c\x0b\x3b\x68\xed\x7d\xec\x80\x5c\xdf\x35\x8f\ +\xf5\x9c\xe5\xf3\xc3\x6d\xe5\x35\xb6\x0a\x44\x75\xf6\x73\xbe\x28\ +\xec\x21\xde\xca\x8e\xd1\xc9\x32\xf7\x8a\x1b\x6b\x16\xb8\x41\xe5\ +\xee\xbc\x2c\xf2\x4f\x37\xd3\x4d\x5a\xbe\xf6\xe6\x7e\x71\x5b\x4c\ +\x9a\x9f\xf5\x63\xaf\x67\xf7\x96\xf8\xd5\x73\xff\x66\x73\xa2\x66\ +\xc9\xf7\xb2\xf0\x2e\x1b\x56\xfc\xab\xdc\x3a\x2e\xab\xf7\x98\xe0\ +\xfd\xba\xfd\x9b\x6c\x7b\x1a\xff\xb9\x73\x83\x64\x4f\xfc\x55\xfc\ +\x17\x26\xd5\x98\x8e\x2f\x5a\x0e\x99\x8d\x2c\xeb\x5c\x34\x1d\x98\ +\x82\x6f\xfd\x7a\x4b\xdc\x19\x30\x42\xde\x08\xb7\x5b\xc0\xd0\x92\ +\xc2\x84\xb1\x56\xbe\x09\x1e\x5e\x4e\xb7\xb9\xde\x21\xe7\x7e\x13\ +\xc1\xa2\x63\x82\xa9\xba\xb0\xc7\x1e\xc1\xbc\x7d\x1a\x7d\xf3\xe7\ +\x5b\x34\xf3\xfd\x28\x90\x47\xe3\xeb\x5b\x34\x53\xb5\x26\x16\x86\ +\xdf\x13\xcd\x42\x4f\x7d\x63\x98\x79\x81\x95\xaa\xdb\x11\x76\xf8\ +\xfd\xbb\x1f\x4f\x9e\xfc\xc6\x88\xaa\x69\xd3\x0c\x97\xe3\x3f\x06\ +\x30\x74\x00\x02\x05\x49\x9d\x5d\x67\x75\x84\x3a\xfb\x2e\xd8\x0e\ +\xa1\x20\x71\x9f\xf8\x5b\xbf\x06\x30\xa8\x20\xaa\x05\x5b\x96\xdb\ +\xa5\x9a\xb7\x4f\xa8\x6f\xfe\x1c\xc2\x70\x8b\x8f\x08\x17\xcb\x76\ +\xb8\x29\xab\xcc\x0d\x59\x58\x79\x80\xc6\xae\xdb\x71\x55\x91\x67\ +\xd8\xf2\xea\x98\x42\xb1\x6f\xdf\xde\xd5\xfa\x1e\xf6\xd0\x39\x56\ +\x36\xa3\x2d\x59\x86\x3d\x64\x8e\xf5\xa3\x76\x8a\xdb\xba\xd7\x86\ +\x3d\x78\x8e\x15\xef\x76\x3e\xdb\x25\xd1\x47\x1c\x48\x57\x97\x77\ +\xee\x8f\xf2\xeb\xea\x72\xf3\x64\xbf\xfe\x1f\x0e\xa2\x7a\x19\ +\x00\x00\x14\x49\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\ +\x0b\x13\x01\x00\x9a\x9c\x18\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xdd\x08\x11\x15\x26\x08\x6d\x49\xb4\xe7\x00\x00\x00\x19\x74\x45\ +\x58\x74\x43\x6f\x6d\x6d\x65\x6e\x74\x00\x43\x72\x65\x61\x74\x65\ +\x64\x20\x77\x69\x74\x68\x20\x47\x49\x4d\x50\x57\x81\x0e\x17\x00\ +\x00\x13\xb1\x49\x44\x41\x54\x68\xde\xed\x9b\x69\xac\x5d\xd5\x75\ +\xc7\x7f\x6b\x9f\xe1\x0e\xef\x79\x7c\x1e\x62\x0c\xc6\x53\x08\x83\ +\x6d\x0c\x24\x81\xb4\x0c\xcd\xd0\xd0\x14\xda\x8c\x2d\x49\x54\x94\ +\x34\x52\xa4\x56\x8d\x54\x94\xa0\x14\x45\x95\x9a\x2f\x19\xd4\x08\ +\x21\x94\x34\x49\x45\x5b\x29\x80\x4a\x49\x49\x43\xa2\x26\xa4\x19\ +\x4a\x08\x04\xcc\x10\x1c\x08\x60\x0c\xd8\xc6\xf6\xf3\xf3\xb3\xdf\ +\x3c\xdc\x7b\xcf\xb0\xf7\x5e\xfd\x70\xce\xbd\xef\xde\xf7\x3c\x12\ +\x42\x3f\x24\x47\xba\xda\xf7\xbc\x7b\xd6\xde\x67\xed\x35\xfe\xd7\ +\x5e\x0f\x7e\xcb\x2e\xb9\xe4\x9e\x45\xd5\xd7\x64\x25\x9d\xfb\x28\ +\x80\x2f\x46\xe9\xba\x6f\x3f\xa7\x5a\xfe\xde\xa6\xa1\x9b\x56\x41\ +\xa5\xeb\x79\xed\x79\xae\x4d\xdb\x5e\xa7\xb6\x31\x48\x9f\xb8\x76\ +\xaa\x3d\x0b\x21\x70\xcb\xff\xfb\xb6\x6b\xd7\x57\xed\xbd\x7f\x45\ +\x9b\x3a\x77\xd5\xa7\x7f\x61\xff\x11\x78\xb6\x9b\xe1\xbf\x7a\xad\ +\x18\xd2\xf9\x0c\x6a\xef\xfb\xa9\x6f\xff\x28\xc7\xa0\x57\x14\x29\ +\x99\xd2\x79\xf4\x82\xaa\x22\xf3\x18\x16\x81\x7c\xd4\xaf\x5f\xfb\ +\xa1\xca\x7b\x0f\xdd\x95\x8e\xb7\x19\x7e\x6d\x98\xd5\x5e\xb5\xee\ +\x5c\x7e\xde\xbd\xca\x31\x9e\x53\x54\xa5\x98\xa4\x33\x76\x99\x46\ +\xb9\x01\x3a\x6f\x3d\x11\x50\xcf\x5a\x0c\x51\xb7\x84\x5f\x53\xfb\ +\x5d\xb0\x01\x2c\xdc\x10\x9d\x67\xef\xe2\xa5\x6b\x1e\x9d\x23\xf3\ +\x0b\x6d\x7c\xc1\xe6\x82\xeb\x5e\xe9\xb4\x18\x5e\xa9\x55\xd6\x50\ +\x27\x44\x30\x08\x1e\xed\x8c\x85\x62\x49\xa9\x78\xe5\xa8\x82\xd7\ +\xb9\x7b\x04\x0c\x82\xd3\x92\x4e\x8a\xbf\x89\x2f\xe6\xe8\xd0\x99\ +\x39\x69\xab\x2a\x6a\xc0\x28\x9d\xf5\x9c\x2f\xd6\x33\x08\xea\x0b\ +\x13\xf0\xe5\x7a\x28\xe4\xea\xd9\x93\xcd\x30\xab\xf9\x02\x1e\x4e\ +\x8b\xe1\x4b\x59\xcd\xd5\x66\x29\x15\x00\xad\x83\xb4\x40\xab\xc5\ +\x88\x01\x8d\x41\x72\xd0\x10\x24\x29\x7e\xc3\x82\x46\x20\x59\xa9\ +\x7f\x35\x20\x01\x6a\x40\x13\x6d\xd3\x91\x97\xaf\x93\x00\x95\xf2\ +\xd9\xa0\xa0\xc7\x95\xcf\xcf\xd1\x15\x76\x5e\x05\xd2\x92\xbe\x05\ +\xc4\x18\x84\x69\x6f\xf9\x97\xc9\x7d\xec\xcc\x27\x5e\x01\xc3\x5d\ +\x3e\xa4\x26\x86\xf3\x09\xa8\x1a\x43\xd3\x47\xd4\x4d\x4e\xd3\xc7\ +\xd4\x8d\x45\x55\x48\x09\x89\x44\x71\x12\x12\x4b\x4c\xa6\x21\x01\ +\x90\x6b\x48\x45\x3c\x22\xda\x79\xbe\xa0\x8f\x50\x85\x44\x23\x2a\ +\xe2\xc9\x29\x47\x0d\x11\x3c\x8e\x80\x08\x30\xd2\x5e\x6f\x8e\x0e\ +\xa0\xe5\x23\xaa\x62\x49\x35\xa2\x6a\x1c\x56\x43\x14\x98\x71\x42\ +\x9f\x84\xc7\xf4\xf6\x27\x67\x58\xe0\xe3\x9c\xc3\x66\xea\x2c\xa7\ +\x1f\xab\x4a\xe2\x21\xd3\x0a\xc6\xfb\x72\x74\x78\x02\x72\x8d\x70\ +\x84\x38\x02\x14\x21\xd5\x0a\x01\xc5\x8b\x78\x02\x8c\xba\x05\x74\ +\x8a\x21\xd3\x0a\x8a\xc1\x6a\x04\x06\x32\x8d\x31\x28\x0e\x83\xc3\ +\x12\x74\xe8\xb4\x43\xdf\x9e\x1f\x8a\xe7\x45\x95\x5c\x23\x40\x48\ +\xb0\x18\x91\x63\x85\xa9\x53\x53\xe9\xcd\xd4\xb9\xd4\x54\xc9\x34\ +\xa0\x22\x09\x06\x8f\x25\x26\x92\x0c\x4b\x48\x2c\x19\x8e\xa0\x98\ +\x50\x72\x8c\x86\x44\x9a\xd1\x72\x01\x5e\x1d\x56\x05\x63\x2c\x91\ +\xc9\x09\x25\x22\x92\x8c\x96\x8b\x09\x4c\x86\x18\x83\xc7\x60\x34\ +\x23\x77\x06\xe3\x1c\x16\x47\x64\x1c\xa1\x31\x44\x62\x09\xb0\xe4\ +\x44\xe5\x7a\xc5\x08\x52\x68\x80\x64\x78\x0c\x11\x19\x94\x0e\xdc\ +\xe0\xf0\xea\x4f\x4f\xc2\x2b\xb5\xca\xa5\xac\xa6\x26\x86\xe5\xf4\ +\x93\x69\x40\xae\x31\x82\x22\x14\xbb\x19\x50\x21\xd7\x98\x14\x87\ +\xc7\x90\x6b\x84\xc7\x90\xba\x80\xe7\x26\xfa\xf8\xde\xbe\x35\x0c\ +\xcd\xc6\x28\xc2\x9a\xbe\x84\x2b\xd6\x8e\xb3\x65\x75\x4a\x10\x3a\ +\xee\xdc\x75\x26\x97\xac\x1c\x63\xdb\xaa\x19\x12\x1f\xf3\xb3\x03\ +\x2b\xf8\xd9\xe0\x00\x2d\x2b\xf4\xc5\x9e\x6d\x2b\x66\x79\xd7\xc6\ +\x11\xfa\xa2\x80\x80\x90\x5c\x63\x0c\xbe\xb3\xae\x22\x0b\xfe\x96\ +\x13\xa1\x08\x5e\x2d\x81\x9a\x63\xf2\x75\x5c\x86\xd7\x50\xe7\x6a\ +\xb3\x94\xf3\x09\xb0\xaa\x54\x24\x41\x50\x2a\x92\x62\x4a\xfb\xaa\ +\x48\x82\x23\xa0\x2a\x2d\x1c\x01\x82\x12\x92\xf1\xe8\xf0\x4a\xbe\ +\xf0\xd8\x66\xde\x73\xd9\x19\x7c\xe0\x8d\x1b\x31\x62\xd8\xb9\xeb\ +\x65\x9e\x1c\x7c\x99\x95\xfd\x7b\x59\xb9\x74\x9c\xff\x3d\xb4\x96\ +\x15\x4b\xfb\xb8\xd4\xec\xe4\xbe\x7d\xab\xf8\xa7\x9d\xeb\xf9\xcc\ +\x75\x17\xb0\x69\xed\x52\xf6\x0f\x4f\xf0\xfc\x4b\xfb\x68\xda\x49\ +\x96\xc7\xb3\x84\x58\x3c\x86\xaa\xb4\xf0\x18\x2a\x92\x94\xdb\x2e\ +\x54\x24\x05\x28\xdf\xcf\x03\x42\x0b\x8b\xa3\x4b\xc2\x72\x0a\x0c\ +\x5b\x3c\x11\x50\x35\x86\xc4\x83\xc1\x23\x68\x31\x8a\x62\xd4\x63\ +\xca\x51\x84\xe2\x1e\x8f\xf5\xf0\xe5\xa7\xce\xe1\xe3\xef\xbf\x82\ +\xeb\xce\x3d\x82\x3f\xfc\x1d\xac\x1a\xce\xbb\xe8\x0d\x98\xcb\xb7\ +\x33\xbb\x77\x1c\xd3\x38\x4c\x5c\xeb\x27\xec\x8b\x30\x38\x1e\x38\ +\xba\x89\x6b\xaf\xdc\xc2\xdb\x56\x3f\x47\x34\xb5\x87\x0d\x2b\xce\ +\xe6\xed\x1b\x37\x90\xee\xaf\x60\x5a\xc5\xfc\xa2\xda\x59\xcf\x88\ +\x16\x99\x55\xfb\x7d\x98\x7b\x87\x82\x3b\xc5\xfb\xb9\x84\xec\x84\ +\x12\xbe\x52\x57\xf1\x69\xb9\x10\xc4\x22\x6a\x68\xfa\x9c\x4c\x2b\ +\x58\xe2\xd2\x29\x05\x18\xf5\xb4\xb4\x86\x7a\x21\xd5\x2a\x78\x4a\ +\xa7\x15\x32\xd4\xa8\xb0\x7f\x42\xb8\x66\xed\x0b\x4c\x3e\xfb\x43\ +\x04\x47\xc3\xc6\xc8\xd1\x41\x22\xb1\xa8\xa9\xe0\x83\x3e\x50\xf0\ +\x5e\x68\x68\x1f\xdb\xce\xdb\xc4\x7d\x8f\xed\x66\x53\xe3\x45\xd6\ +\xd4\x9b\x2c\xab\x3f\xc3\x9a\xfe\x5f\xe0\x35\x20\x90\x3e\x02\x75\ +\x24\xe5\x7a\x89\x56\xd1\x32\x11\x49\xb5\x5a\x9a\x52\x8c\xfa\xc2\ +\xe9\x29\x14\x3e\x40\x82\x53\xb3\xe1\x1c\x47\x4d\x9a\x04\x52\x78\ +\xd0\x58\x32\x8c\xf7\x44\x92\x11\x50\x29\x9c\x96\x28\xea\x85\x3e\ +\xd3\x00\x0f\x75\xd3\xc4\xa9\x21\x20\x66\xc6\xaf\xa2\x12\x87\xf4\ +\x0f\x7f\x87\xd4\x40\x2b\x83\x1d\x87\x06\xd8\x3b\x59\xa3\x6a\x2c\ +\x57\xad\x9b\x64\xeb\xf2\x46\x91\x38\x88\x23\xd6\x26\x7f\xbe\x35\ +\x61\xb2\xb5\x9e\x7b\x77\xa5\xd4\xc3\x94\x8a\x64\x5c\xbe\xe6\x30\ +\x7f\xb4\x61\x8c\xaa\xc9\x09\xc5\x81\x87\x9a\x34\x01\xe8\x33\x8d\ +\x22\x75\x44\xa9\x4a\x8b\x14\x47\xcd\xb4\xc8\x4b\x86\x13\xef\xc8\ +\xd5\x9d\x9a\x97\x8e\x08\x68\x69\x9d\x00\x47\x23\x0b\x18\x9a\x59\ +\xc2\xa6\xe5\x16\x5b\x3a\x8e\xb6\x84\xdb\x92\x4d\xb5\x8a\x78\xed\ +\x38\xad\xbe\xc5\x03\xe4\xd6\x31\x9d\x06\x78\x89\xc9\xc2\x2a\xcb\ +\xcf\xbc\x80\x3d\x52\xe3\xa7\x2f\x4c\xb3\x7e\xcd\x38\x1b\x7d\xf1\ +\xe2\x5e\x03\x9a\xf4\xc3\xd0\xfd\xdc\x78\xf5\x9f\x71\xf0\xaa\xab\ +\x39\x70\x78\x9c\x27\x5f\x1c\xe1\x8e\x27\x17\xd3\x57\xd9\xcb\xe5\ +\x67\x8e\xcd\x49\x18\xe9\xac\xd7\x0e\x4b\x73\x12\x16\x2c\x45\x5c\ +\xb7\x58\xa2\x32\x6a\x9c\x82\x84\x2d\x75\xd3\x24\xc0\x72\xe7\xee\ +\xb3\x79\xc7\xba\x23\x38\xeb\xcb\x50\xa0\x40\x82\x31\x8a\x7a\x83\ +\xd3\x14\xa7\x82\x37\x29\xd5\xd0\x13\x4a\x85\x8d\xf5\xa3\xac\x5a\ +\x76\x1e\x0f\x1c\x58\xc2\x3b\x37\x8c\xb1\x28\xc8\xb8\x7c\xf5\x38\ +\xaf\x5f\x77\x01\x43\xb3\x55\xe2\x9a\x2d\x34\x03\xc5\x88\xa3\x2e\ +\x4d\x9c\xcd\xe1\xe9\x5b\x58\xd3\xb7\x81\x0d\x8b\x56\xf1\x96\x3f\ +\xd8\xc6\x81\xf1\x33\xd9\xdd\xb2\xbc\x53\x0e\x10\x88\xef\x68\x92\ +\x78\xa5\x6e\x8a\x0d\x13\xef\xa9\x49\x8b\x94\x2a\x55\x93\x90\x6b\ +\x08\x02\x69\xb7\x84\x4f\xc6\xb0\x20\x38\x35\x20\x01\xc3\x8d\x2a\ +\xcd\x2c\xe4\xae\xdd\x67\xb0\x7d\xe5\x24\x0d\x5b\x01\x6f\xa9\x04\ +\x0e\x27\x31\xcf\x1c\xad\x71\xf6\xd2\x8c\x46\x0a\x1f\x3e\x7f\x88\ +\x7a\x6c\x08\xd3\x61\x3e\xf1\xbe\xeb\xf9\xea\x37\x67\x98\xce\xf6\ +\x71\xc9\xea\x09\xcc\xc4\xf3\x3c\x72\x74\x96\xc1\x23\xeb\x30\x1b\ +\xc0\xa9\x21\xb3\x1e\xe7\xc1\x18\xc3\x5d\xbb\x5e\xc7\x40\xa5\xc5\ +\xfa\xa5\x53\xf4\x99\x61\x76\x1c\x39\xcc\xde\x43\x17\x70\xcd\x3b\ +\xd6\xe1\x09\x10\x2d\x34\xc8\xa9\xc1\x13\xe0\xd5\x14\xe1\x87\x00\ +\x57\x7e\x54\x85\xa6\x87\x59\xe7\x19\x77\x96\xcc\xfb\x36\xa8\xea\ +\x01\x9b\x0b\x18\x0e\x28\xe2\xad\xc7\xb1\xb2\xcf\x72\xee\xca\x84\ +\x47\x8e\x5a\x2e\x3f\x73\x86\xef\xef\xab\xb3\x61\x69\x8b\xbd\x93\ +\x55\x36\x2f\xcf\x69\x64\xc2\x95\x67\x37\x78\xf8\x60\x9d\x5c\x63\ +\x72\x35\xa8\xcb\xb9\x62\xe9\x93\xd4\xae\x7f\x07\x0f\x3c\xf4\x10\ +\x4f\x3c\x3b\x89\x02\x03\xcb\x97\xf3\xb1\x6b\x2e\x62\x6b\x65\x07\ +\xd9\x64\xcc\x55\xdb\xd7\x71\xd6\xc0\x41\x32\x1f\xb2\xe8\x8c\x0b\ +\x79\xfc\xe5\x19\x7e\x72\xb8\x89\xa8\xa3\x6f\xf1\x32\x3e\x76\xed\ +\xc5\xbc\x69\xd1\x0e\xb2\x91\x98\x80\x00\xab\x11\x19\x15\x72\x0d\ +\xc9\x28\x62\x7b\xf1\x37\x8f\xd5\x88\x94\x98\x3d\x99\xe5\xbf\xa7\ +\x26\x78\x31\x19\x67\x5f\x3a\xd3\x9b\x2e\x1e\x8f\x61\x8f\x27\x92\ +\x9c\x00\xc7\xb6\x15\x53\x84\xe4\x6c\x59\x31\x43\x2d\x4c\x79\xfd\ +\xb2\x59\x32\xeb\xd8\xbe\x62\x92\x5a\x25\x24\x1c\x68\x51\x0b\x95\ +\xf3\x97\x4f\xd1\x17\xa6\x04\x12\x12\x4a\x8e\x0c\xff\x94\xb7\xad\ +\x99\x62\xdb\xbb\x2f\xa6\xe5\x62\x54\x85\x7a\xd0\x60\x49\x6b\x07\ +\xe9\xc8\x33\x44\x92\xf3\x91\x37\x7b\xaa\x13\x87\x09\x27\x32\xfe\ +\xf0\x1c\xc7\xe5\xdb\xb7\x92\xfa\x1a\xa6\xcc\xb2\x96\xa4\x3b\x71\ +\x87\x1e\x23\x94\x7c\x5e\xa6\x55\xac\x51\x64\x5a\x21\x91\x64\xe4\ +\x0a\x42\xca\x84\x6d\xf2\x78\xe3\x30\x07\xf3\x19\x50\x10\xd1\x53\ +\x53\x69\x4b\x88\x22\x5c\xb2\xa6\x81\x97\x90\x0b\x57\x37\x11\x42\ +\xce\x5b\x91\x50\x91\x14\x11\x4f\xcb\xd7\x59\xb7\xa8\x45\xcb\xd7\ +\xd8\xb2\xaa\x89\xd7\x80\xbc\x54\x3f\xa7\x9e\x6c\xe8\x61\xaa\xf1\ +\x1e\xfa\xc3\x0a\x8e\x80\xc0\xcd\xe0\xb3\x09\xac\xab\xe0\x4c\x88\ +\xd9\xff\x1d\x8c\x4e\xe1\x34\xc4\x1f\xd9\xc1\xe2\x78\x27\x36\xa8\ +\x53\x91\x8c\xcc\x7a\x6c\x3a\x89\x57\x2d\x5e\x51\x0a\x07\xe7\x08\ +\x71\x1a\xe0\x24\x44\x15\x9c\x06\xa4\x04\xbc\x94\xe6\x3c\x38\x3b\ +\xc2\xa8\xcb\x99\x76\x49\x17\x96\x96\x93\x33\xec\x70\x54\x25\x21\ +\x28\xd3\xc5\x48\x72\x14\x21\x26\x2b\x33\xad\x04\x11\x70\x12\x52\ +\x91\x14\x27\x86\x8a\x64\x05\x9a\x55\x4f\x2c\x79\x27\xbf\x26\x3b\ +\x42\x98\x59\x32\x8d\xa8\x48\x86\x88\xe2\x84\x82\xce\x4e\x50\x31\ +\x4d\x54\x0a\x24\x58\x49\x47\x11\x62\x22\x49\x41\xa3\x22\x89\x91\ +\x80\x88\x1c\x23\x8a\x93\x80\x8a\x49\x71\x3e\x28\xb2\x2b\x01\xf5\ +\x86\xaa\xa4\xec\xcd\x66\xf9\xc6\xc4\xcb\xf3\x8a\x07\x65\xc9\xa3\ +\xd0\x67\x39\xa1\x0d\x27\x5a\x25\xc0\x75\xd2\xb7\xb6\xfb\xcf\x34\ +\x2e\xb5\xc0\x93\x69\xdc\x41\x31\x81\xba\x52\xc2\x51\x29\x89\xa0\ +\x4c\x0c\x2a\x58\xc2\x42\x63\xd4\x60\x68\x3f\xdf\xa6\xb7\xa8\x1a\ +\x52\x2d\x73\x63\x22\x04\x2d\xd0\x0f\xa5\xa3\x22\x24\xc4\x76\xa1\ +\xac\x62\xdd\x5c\x95\x9d\xad\x9c\x23\xf9\x0c\xbb\x92\x66\x2f\xb3\ +\x85\x3e\xa3\x99\x82\x47\x4e\x98\x5a\x2a\x4a\x88\xed\x48\xb8\xfd\ +\x3d\x10\x4b\x40\x40\x20\x16\x83\x12\x88\x23\xc0\x12\x88\x23\xc4\ +\xe2\x44\xf1\x6a\x08\xc4\x82\x42\x48\x11\xbb\x03\x29\xb0\x72\x41\ +\xef\xe6\xd1\x39\xbc\x78\x82\xf2\x39\xaf\xc5\x7a\x8e\xa0\x93\xaf\ +\x87\x25\x5a\x32\xe2\xe6\xe6\xc0\xe2\x54\x79\x60\x76\x82\xfb\x67\ +\x0e\x90\xf6\x24\x19\x85\xdd\xfa\x5c\xc9\xc7\x3c\x6a\xf5\x16\x84\ +\xc9\xe3\x32\x6c\xda\xa8\x47\x4c\x47\x4d\xad\x86\x08\x8a\xd5\x10\ +\x43\x81\x50\xac\x86\xe4\x44\xe5\x18\xe3\xdb\x78\x16\x70\x04\x64\ +\x1a\x95\x92\x2d\xbc\x69\x21\xb1\x60\x1e\x5d\x54\xd2\x85\x9d\x39\ +\x33\x0a\x3a\x41\xf1\x1a\x94\xe1\xc7\xe0\xca\x75\x12\x1f\x30\xe1\ +\x95\x54\x95\xc1\x7c\x9a\x71\x97\xcc\xcb\x99\xa5\xcd\xac\xda\x59\ +\xfd\xa4\x4b\xf4\xdf\x86\xee\x4a\x53\x80\x4b\xee\x59\x24\xc7\xb4\ +\xe1\x48\xb2\x22\xb5\xd4\xc2\x3e\x7d\x89\x3b\x15\x21\x2e\xd1\x92\ +\x25\x2a\x71\x70\x48\x2c\xe9\x02\x3c\x5c\x91\x0c\x2d\x25\x2e\x68\ +\x99\x9a\xba\x2e\xfc\x1c\x11\x4b\x8a\xa7\xd8\xd8\x22\xb1\x81\x8a\ +\x64\xa0\x82\x88\xc7\x77\x49\xd8\x96\xeb\x8c\x58\xcb\x67\x0e\xff\ +\x0a\x03\x1c\xce\xd2\x52\x8d\xcb\x6a\x26\x8a\xcf\x69\x33\x7b\xa3\ +\x6b\xe9\xd7\x86\xfe\xa3\x60\xf6\x84\x2a\x1d\x48\x11\xd2\xbd\x68\ +\x89\x8c\x8a\xf0\x6e\xca\x50\x5f\x20\x13\x47\x20\xbe\x83\x5e\x50\ +\x87\x2b\x7f\x57\x91\x82\xae\x4c\x0b\x3c\x41\x41\x5f\xa2\x9d\x82\ +\xae\xb8\x17\x9d\x9b\xd7\xe1\x3a\x74\x06\x0f\x22\x18\x5c\x29\xe3\ +\x82\x0e\x84\xfd\x79\x73\x5e\x25\xb4\x30\x52\xb5\x90\x8f\x7b\x6f\ +\x67\xf4\x26\xd7\xd2\x2f\x0f\xdd\x9d\xf6\x54\xf1\x7e\xf1\x81\x19\ +\x3d\x46\x2e\x1d\xd2\xf4\xf5\x52\xc2\x82\x95\x36\x5a\x8a\x7a\x72\ +\xe9\x64\x01\x5a\x2a\x4c\x21\x27\x2a\x43\x47\x50\x38\x28\x29\x4a\ +\x3c\x96\xf0\x04\x74\xc5\xbc\x56\x23\xbc\x2f\x4a\x45\xd2\xf1\x09\ +\x31\x01\x8e\x07\x1b\x39\xcf\x24\x93\x8c\xe6\x49\x6f\x39\xb7\x9d\ +\x3f\x58\xc8\xc7\xbc\xcd\xa7\xf5\xb3\x76\x5a\x6f\x1e\xfe\xaf\xd4\ +\xb7\xd5\xb8\xcd\xec\xc9\xd1\x92\xcc\x47\x4b\xae\x07\x2d\x55\x69\ +\x60\x15\x62\x69\xe1\x55\x30\xc4\xc4\x92\x77\x42\x56\xa0\x1e\xbc\ +\x45\x7d\x4c\x28\x19\xa1\xf1\x78\x7a\x51\x96\x57\x21\xc5\x11\x4b\ +\x4a\x4e\x4c\xd5\x24\xa5\x97\x9e\x73\x5a\xa1\x38\x9e\x4f\x27\xf9\ +\xe6\xc4\x1e\xb2\xb2\x74\x53\x14\xdf\x8b\xba\x95\x5a\xb0\x13\x2e\ +\xcb\x27\xf5\x8b\x83\xb7\x27\x9f\x3b\x51\xb9\xea\x38\x68\xa9\x8f\ +\x80\x22\x64\x58\x09\xbb\x24\x3c\x87\x87\x9b\xbe\xca\x37\x5f\x78\ +\x1d\xc3\xcd\x1a\xd5\x20\xa7\x1a\x28\xe7\xae\x68\xb2\x7d\xd5\x14\ +\x22\x85\x84\x87\x1a\x75\xee\xdb\x3b\xc0\xaf\x46\xfa\x11\x94\xb5\ +\x8b\x12\xde\xb9\x71\x9a\xad\x03\x90\xf4\xa0\xac\x18\x47\x58\x14\ +\xfb\x7c\x71\x2f\xe2\xc9\xbc\x30\x6c\x9b\x38\xf5\x8c\xe6\x29\x16\ +\xed\x39\x5e\x41\x41\x9d\x92\x4f\xf8\x24\x1b\xd7\x5b\x07\x6f\x4f\ +\xfe\x61\x3e\x3f\x6d\xc9\x1e\x9b\x61\x85\x5c\x2d\xf5\xa0\x51\xda\ +\x70\x5b\xc2\x8e\x58\xb2\x02\x95\x48\x82\x88\x62\xbd\xf0\xe3\xa1\ +\xf5\x2c\x5f\x5c\xe3\x2d\x1b\x2b\xec\x1f\x69\xf1\xa5\xc7\x66\x79\ +\xdf\xa6\x03\x5c\xbf\x65\x08\x75\x96\x2f\x3d\x7e\x01\xd5\xfe\x15\ +\x7c\xf4\xbd\x5b\xa8\xc5\xc2\xa3\xcf\xec\xe7\x85\xd9\xbd\x5c\xb6\ +\x72\xb0\x83\x7a\x54\x85\xa4\xd4\x9c\x8c\x98\xaa\x49\xc9\xd4\x62\ +\xf0\xcc\xaa\xe7\x0b\x47\x9e\xe3\xb9\x74\xa6\xf7\x7c\xaa\xad\xd2\ +\x0e\xf2\x09\x6d\x66\x63\xfa\xf5\xc1\x3b\x92\x9b\xda\x6c\xcc\x57\ +\xe3\x13\x32\x2c\x08\x5e\x0d\x22\x1e\x55\x29\xe7\x36\x1d\x6f\x5a\ +\x54\x18\x3d\x2a\x01\x95\xbe\x65\x5c\xb9\x7d\x15\xd7\x9d\x7b\x04\ +\xfa\xcf\xe1\xae\xa7\xea\xfc\xf0\xc1\x27\xf8\xa0\x1b\xe6\x85\xf1\ +\x65\xb4\xa2\xb5\xdc\xf0\xa7\xe7\xb0\xc9\x3e\x4c\xa8\x0d\xde\xf8\ +\xd6\x0b\x49\xd3\x4d\xf8\xbd\x4f\x14\xf3\xa9\xf4\xcc\xab\x18\x54\ +\x21\xf5\x4a\xae\x9e\x69\xef\xba\xb2\x86\xc2\x13\x4b\x69\xbb\xa5\ +\x64\x9b\xd9\xa8\xde\x36\x78\x47\xf2\xa9\xf9\x52\x6d\x33\x7d\x7c\ +\x86\xcb\xbd\x08\x35\x28\xeb\xc9\x45\x3e\xad\x2a\x64\x5d\x40\xbb\ +\x3c\xab\x23\xf7\x31\xaa\xca\xec\xd8\x41\x1a\x2f\xfd\x98\x96\x0d\ +\x98\x1e\x79\x2b\x95\xbe\xa5\xa4\xd4\xe8\x5f\xb9\x01\xdd\x6d\xd8\ +\xf1\xc8\x03\xc8\xf2\x7d\xf4\x47\x29\x8b\x87\x77\xe3\x4c\x95\xaa\ +\x54\xc9\x35\x26\x29\xb3\xb9\xac\xcc\xb4\xda\xf1\xfa\xd9\x34\xe7\ +\x47\xb3\x13\xec\x4b\x27\xd9\xd7\xf1\xc8\xe5\x71\x0d\x52\x4a\xb6\ +\xc3\xec\x0d\xc7\x92\xec\xb1\xa4\x3b\xc7\x70\x57\x5a\x66\x29\xd4\ +\xb7\xc8\x90\x0c\x95\x32\x56\xb6\xe3\x64\x3b\x0e\x67\x12\xe3\xbd\ +\xb2\x7b\xd8\xf2\x93\xd6\x62\x5e\x9a\x5a\xc2\xc3\x23\x09\x1f\x7c\ +\xdb\xd9\xd4\x83\x9c\x81\x45\x23\x5c\x73\xd9\x15\xdc\x7e\xdf\x24\ +\xdf\x0f\x36\xb3\x6e\x71\x8b\x37\xad\x1a\xe5\xf7\xcf\x9a\x61\x71\ +\x2d\xc5\x11\x52\x91\xa4\x23\xe1\x58\x52\x9c\x3a\x22\x12\x46\x6d\ +\x83\x87\x66\x0f\x71\xd4\x36\x7a\x0f\xd1\x55\x50\xab\xe4\xe3\x3e\ +\x29\xd5\xf8\x94\x25\x3b\xc7\xf0\xbc\x53\xbd\x80\x76\x31\xcc\x60\ +\xb5\x88\xa7\xed\x0c\xca\x96\x49\xbd\x94\x59\x91\x57\x18\x9c\x0e\ +\x79\x4c\xb6\xf0\xf2\x54\xc4\x92\xa5\x4b\xb8\x68\xd9\x20\xf9\x94\ +\xc1\xcc\x0c\xf3\xfe\x73\x86\xb9\xfa\xf7\x3e\xcc\xe3\xcf\xee\xe7\ +\xe9\xe7\xf7\xf1\xb5\x47\x0f\xf1\xcc\xc4\x34\x7f\xff\xe6\x67\xcb\ +\xac\x2a\xee\x9c\x38\x38\x75\xbc\x98\x39\x9e\x4a\x26\x39\x98\x25\ +\xb4\x7c\xd6\x75\x5a\x58\x24\x15\x45\x9c\xd5\x2c\x1b\xd7\x5b\xdb\ +\x36\xbb\xfd\x8e\x7e\xf9\xe5\xf5\xb3\x7a\x3c\x27\xb5\x30\x93\xec\ +\x76\x04\xbe\x90\x70\xd5\xb4\xa8\x48\x8b\x47\x07\xeb\x04\x9a\x61\ +\x5d\x86\xda\x14\xe3\x53\xaa\xd2\xa2\x6a\x52\x62\x49\x89\x42\xe1\ +\xfd\x57\xbd\x81\xcf\xff\xe5\xc5\xfc\xeb\xa7\xaf\x66\xa0\x3f\xe4\ +\x9f\xff\xe7\x20\x91\x16\x30\x52\xf7\x7e\x8b\x25\x4f\xdd\xc4\xdb\ +\x97\xec\xe0\xef\xfe\x78\x31\x9f\xfb\x9b\x6b\xf9\xc1\x9e\x45\x54\ +\x4d\x42\x2c\x29\x55\x53\xcc\x57\x91\x84\x3e\x49\x78\x2a\x19\xe1\ +\x2b\xa3\x2f\x72\xef\xd4\x41\x66\x7c\xde\x03\xde\x35\x17\xb2\x31\ +\x6f\xb3\x71\xff\xc5\xc1\xdb\xe7\x1c\xd4\x2f\xaf\x9f\xd5\x4b\xee\ +\x59\x24\x27\x93\x6c\x47\xc2\x3a\xef\x40\xda\x74\x6c\xd8\x71\xff\ +\xc1\x95\x0c\xd4\x72\x1e\x3c\xb4\x82\xb3\xfa\x9b\x2c\xad\x2b\x97\ +\xaf\x19\xed\x20\x1a\xeb\x3c\xd3\x87\x77\xd1\xd4\x1f\xe2\x4d\x9d\ +\x77\xbf\xf9\x23\xdc\x72\xef\xeb\xf8\xe9\xe0\x11\xde\xb2\x66\x94\ +\x97\x67\x16\xb1\x38\xca\xa8\x4e\x3f\x8e\xd9\xf3\x08\x7b\x46\x2f\ +\x66\xf5\xc0\x32\x32\x8d\xc9\x35\x26\x53\x4b\xea\x0b\x9b\x1d\xb3\ +\x0d\x0e\x66\x49\x6f\x97\x40\xa9\xca\x9a\x2b\xd9\xa8\xf7\xf9\x94\ +\x7e\xf6\x78\x71\xf6\x64\x92\xed\x55\xe9\x2e\x3b\xd6\xc2\x57\x62\ +\xf0\x6c\x5e\xda\x64\x75\x3d\xa1\x16\x7a\x36\x2f\x6b\xb0\x6f\x7a\ +\x11\x22\xa5\x3f\x35\x9e\xb5\x2b\xfa\x59\xda\x3f\x83\xc1\xa3\xbe\ +\xc5\xeb\x79\x92\xcb\xb6\x6e\x61\xdf\x6c\x93\x33\x66\x73\xbe\x7f\ +\x70\x3d\x81\x4f\x59\x14\x67\xe4\x1e\x7e\x39\x51\xe1\xaf\xdf\x73\ +\x11\xd2\xfa\x5e\x39\x8f\x27\x57\xcf\x8f\x66\x27\x78\xa8\x71\xa8\ +\x4b\x8d\x3b\x4e\x19\xcd\x20\x1b\xf5\x6a\xa7\xf5\x26\x3b\xad\x37\ +\x9f\x8e\x83\x3a\x25\xa7\x65\xca\x43\x2a\x50\xb6\xad\x6a\x30\xd2\ +\xaa\x72\xce\x40\x8b\xe9\x2c\xe2\xbc\x81\x26\x4e\x43\x54\x8a\xb3\ +\xdb\xbf\xb8\x62\x05\xfd\xc9\x24\x6e\x3a\xc4\xab\xa1\xd2\xdc\xc3\ +\x87\x2e\xde\xc2\xf0\xf8\x5a\xce\x70\xa3\x5c\xb3\x7e\x3b\xbb\x0f\ +\xcd\x32\x31\xdd\xa4\x3f\x0e\xf9\xd4\xd5\xe7\xb3\xd9\x3c\x85\x3b\ +\x18\x90\x79\x61\xb6\x0c\x3d\x2f\x67\x93\x1c\xb5\xb3\xbd\xed\x0e\ +\xd2\x91\xac\xda\x19\xbd\x11\xe1\x2b\xc3\xdf\x4e\xfd\xe9\x38\xa8\ +\x53\x72\x5a\x1e\x25\x24\x27\x10\xc7\x96\x15\xd3\x54\x24\x21\xd1\ +\x84\x48\x72\x52\xad\x14\x68\x08\x4f\x68\x32\xce\xcb\x7e\x40\x2b\ +\x4b\x08\xc9\xf1\x12\xe0\xed\x34\x2b\xc6\xbe\xcb\xf2\xea\x6a\xa2\ +\xd9\xfd\x2c\x96\x80\x6d\x5b\x37\xe0\xa3\x65\x04\xbe\x81\x8e\xdd\ +\xc3\xec\xf8\x01\x6a\x62\x19\xb6\x4d\xbe\x70\xf4\x39\x8c\x08\x7b\ +\xb3\xe6\x1c\xb3\xa5\xd9\xfa\x1c\xb2\x11\xaf\x76\x46\x3f\xe9\x9a\ +\xfa\xb5\xa1\xbb\xd3\xac\x2d\xd9\xb6\x44\x4f\x47\xb2\x3d\x12\xee\ +\xb6\x1b\x2f\xbe\x03\xb4\x8d\x18\x8c\x28\x81\x96\xa0\xbd\xac\x3e\ +\x88\x40\xa0\x0e\x33\xb5\x0b\xf1\x75\x02\xe3\x11\x55\x02\x02\x4c\ +\x6b\x18\x6d\x8d\x62\x24\x43\x26\x9f\xc3\x4f\x3e\x5d\xa6\x8a\x69\ +\x59\x58\xed\x23\x14\x87\x53\xcf\xae\x6c\xa6\xab\x7b\xa7\xcb\x74\ +\xe7\x98\xbd\x51\x9d\x7e\x7d\xe8\xee\x5e\x88\xd7\xcd\xf4\x69\x33\ +\x3c\xbf\xbb\x26\x22\xa4\xe5\xfb\x08\xc4\xe1\x55\x8a\x94\x52\x8b\ +\xa3\xc8\xa2\x7c\x6b\x10\x55\x12\xad\x81\xa7\x33\xb6\x0b\x00\x9d\ +\x32\x4f\x89\x96\x8c\x38\x5c\x1b\x2d\xe1\x79\xb0\x99\xf3\x7c\x3a\ +\xc9\x98\x4b\x7b\xdb\x96\x7c\x8f\x1a\x7b\x3b\xad\x37\x29\xfa\x95\ +\xc1\xdb\x0b\xc9\x9e\xae\x73\x3a\x65\x95\xce\xd5\x51\x95\x56\x51\ +\x72\x29\x0b\x74\xe2\x0b\x00\x6f\xf0\x54\xa5\xd5\x41\x4b\x35\x69\ +\xa2\x48\xe7\x6c\x29\xa3\x42\x54\x16\x05\x2a\x26\xc5\xf8\x42\x5b\ +\x72\x62\x62\x49\x09\xc4\xf3\x4c\x32\xc9\x7f\x4e\xee\xc1\x96\x79\ +\x53\x8f\xcd\x5a\x25\x1b\xf5\x36\x9f\xd4\xcf\xda\x29\x7f\xf3\xf0\ +\xbd\x99\x3f\x59\x6e\xfc\x8a\x54\xba\xbb\x75\x28\xf5\xca\x7e\x27\ +\x40\xc8\x32\x13\xd3\x3f\x0f\x2d\xb5\x73\xe9\x44\xab\x9d\x13\xbc\ +\x02\xf5\x14\xa7\x87\xb6\x5d\x4a\xf5\x41\x51\x70\xc3\x91\xf8\x80\ +\x11\x67\x01\x61\xd4\x25\x64\xf8\x85\x6d\x4b\x16\xb2\x51\xcd\xf2\ +\x89\x93\x43\xbc\x5f\xab\xd7\xf2\xa2\x3b\x17\x69\x6f\xc5\xaf\x18\ +\x2f\x94\xe5\x7c\xa2\x76\x16\x5b\xa3\x88\xc4\x57\x89\x24\x23\xd3\ +\xb9\xd3\xc3\x86\xef\xa3\xcf\x34\x68\xfa\x7a\x89\x6b\x8b\xaa\x66\ +\x28\x79\x99\x36\xa6\x65\x3c\xb7\x0c\xe5\xca\xdf\x1e\xf9\x15\xfb\ +\xb3\xf9\xd5\xc5\xd2\x6f\x58\x25\x1f\xd3\x24\x1b\xf5\xb7\x76\xa3\ +\x9e\xdf\xc4\x65\xe6\x57\x0e\xba\xef\x33\x2d\x50\x8b\xed\x40\x86\ +\xf2\xd3\xd5\x00\xd6\x2e\x76\xb7\x7f\xa3\xeb\xf7\x5c\x95\x4c\x95\ +\x14\xc5\x1c\xab\x0b\xaf\x0d\xde\xc7\x7c\x33\x1b\xf5\x5f\x9d\x0f\ +\xf1\x5e\x49\xd8\x39\x75\x95\x6e\xe7\xad\x65\x78\x78\xd1\x4d\x73\ +\x5b\x73\x98\x88\x80\x8f\xd6\x37\xf2\x86\xb0\x56\x1c\x4b\x96\xed\ +\x63\xa9\x56\xcb\xb1\x82\x78\x5f\x56\x24\xa3\xce\xe9\x80\x7a\xc3\ +\xce\x24\xe7\x67\x8d\x09\x06\xf3\x69\x0e\xe7\xe9\xdc\xc6\xea\x1c\ +\xb3\xd9\xb8\x6f\x66\x23\x7a\xdb\xe0\x9d\xa7\x0f\x04\x7e\x6d\x2f\ +\xdd\xe9\x67\x44\x68\x78\xcb\x93\x7a\x04\x80\xf7\xf8\x01\xaa\xd2\ +\x87\xaa\xa3\x5a\x3a\xaf\xee\x9e\x8b\x5a\xd9\xe3\x91\x51\x94\x82\ +\x52\x02\xaa\x92\x72\x24\x9f\xe1\xfe\xc6\x01\xc6\xdb\xc7\x1f\xc7\ +\x62\xf6\xa8\xbb\x6d\xf0\xce\xf4\x86\x5f\x37\x83\x3a\x2d\x95\x9e\ +\x83\x5f\xda\x01\x11\xdd\xb1\xf9\xe9\xac\xc1\x77\x5b\x33\x3c\x6f\ +\x3d\x0d\x1f\x91\x68\xd9\xbd\xa3\xd5\xce\xd8\xfe\xde\xf4\x31\xbb\ +\x33\xcf\xb7\xa6\x67\xd9\x95\x35\x49\xbd\x2b\xa6\xed\xee\x85\x74\ +\x90\x8d\xfb\x24\x1b\x71\x5f\x1f\xbc\x33\xbd\xe1\x4f\x74\x40\x5e\ +\xad\xb0\x73\x8a\xb9\xb4\x42\xa7\x81\x53\x7a\xc3\x85\xc2\xbf\xb7\ +\xf6\x02\xf0\xe1\xda\x46\xb6\x45\xcb\xa8\x18\x83\x7a\x43\xcd\xb4\ +\x8a\x62\x9e\x49\xf0\x2a\x64\x54\x10\x12\x1e\x6a\x8e\xf0\x8d\xc9\ +\x97\x3b\xf4\xed\x2a\x45\x11\x67\x21\x1b\x75\x59\x36\xaa\xb7\x0e\ +\xde\x91\xde\x74\x9d\xae\x94\xdd\xb7\xb7\x78\x35\x63\xed\x49\x6c\ +\x58\x3b\x4d\x22\x1d\x4e\x17\x38\x98\x42\xd5\xc7\x5c\xca\xcf\xd3\ +\x84\x8a\x40\xa0\xe0\x68\x61\x00\xa7\x4d\x84\x00\x83\x23\xd1\x94\ +\x51\x9b\x2f\x2c\xa5\xb6\x99\x1d\x71\x36\x1b\xd7\x2f\x0e\xde\x51\ +\x14\xdc\xee\x96\x11\x7d\xb5\x63\xed\x89\x19\x16\x29\xba\x57\x3b\ +\x1e\x77\xde\x99\x79\x79\x2b\x0a\x3f\x4f\x8f\xf0\x62\x3e\x8b\x60\ +\xf0\xea\x31\x5a\x8c\x82\xe9\xb4\xe2\x7b\x55\x46\x5d\xb3\x33\x45\ +\x7b\x26\x9f\x2a\xe9\x88\xfa\x7c\xb2\x80\x78\x6f\x3f\xb0\x4c\x7e\ +\xb2\x6e\x42\x5f\x2b\xc9\x76\x44\x77\xfe\xcd\x7d\x7a\xdc\x3e\xe6\ +\x6e\x09\x9d\xa8\x2f\xb9\xeb\x59\xa1\x97\xa6\xfd\xdd\x4e\x79\xec\ +\xb4\x7e\x3a\x9f\xf2\x37\x0f\x7f\xfb\xd5\xcf\xa0\x4e\x59\xc2\xc9\ +\x21\xff\xf9\xe3\xfd\xff\x01\xf3\x7a\x24\xda\xff\x94\xd1\xd3\xd4\ +\x2d\xf3\x36\x03\x16\x74\xa7\xa3\x84\xae\xa9\xcf\xf9\x54\xef\x6a\ +\x33\xfb\x9b\x0c\x3d\x27\x94\xf0\xaa\x77\xc5\xf5\x9e\x83\x72\xe9\ +\xd5\x68\x99\xff\x45\x7a\xff\xa7\xe0\x18\x6d\x14\x0b\x9e\x17\x83\ +\x1c\xbe\x27\x6b\xf0\xdb\x7a\xfd\xa6\xb2\xa8\xdf\x5d\xbf\xbb\x7e\ +\x0b\xaf\xff\x03\x05\xf2\x7b\x06\xf0\x22\xce\x4f\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x13\x72\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x72\x64\x65\x72\ +\x5f\x62\x79\x5f\x6e\x61\x6d\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\ +\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\ +\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\ +\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\ +\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\ +\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\ +\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x39\x2e\x34\x30\x30\x32\x35\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x31\x38\x2e\x39\x32\x37\x30\x34\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\ +\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\ +\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\ +\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\ +\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\ +\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\ +\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\ +\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ +\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ +\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ +\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ +\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ +\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ +\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ +\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ +\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\ +\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x33\x30\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x36\x2e\x30\x39\x35\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ +\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\ +\x3a\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\ +\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\ +\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\ +\x65\x72\x69\x66\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\ +\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\ +\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\ +\x30\x30\x30\x66\x66\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\ \x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ -\x33\x30\x32\x30\x32\x38\x38\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ -\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x38\x2e\x35\x37\x38\ -\x36\x30\x38\x33\x2c\x31\x32\x2e\x38\x20\x63\x20\x30\x2c\x38\x20\ -\x30\x2c\x35\x2e\x33\x33\x33\x33\x33\x33\x20\x30\x2c\x35\x2e\x33\ -\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x36\x2d\x33\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x05\xe1\ +\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x31\x32\x2e\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x74\x65\x78\x74\x32\x39\x39\x35\x22\x3e\x3c\x74\ +\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x74\x73\x70\x61\x6e\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\ +\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\ +\x38\x34\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\ +\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ +\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x32\x22\x3e\x61\x3c\x2f\x74\x73\x70\x61\x6e\x3e\ +\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\ +\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ +\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ +\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\ +\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\ +\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\ +\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ +\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\ +\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\ +\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\ +\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x38\x2e\ +\x35\x33\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x32\x39\x39\ +\x39\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\ +\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x30\x30\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x38\x2e\x35\x33\ +\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\ +\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\ +\x38\x34\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\ +\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\ +\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x32\x22\x3e\x62\x3c\x2f\x74\x73\x70\x61\x6e\x3e\ +\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\ +\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x38\x2e\x35\x33\x33\x33\x33\x33\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x35\x31\x2e\x39\x38\x37\x36\x32\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x74\x73\x70\x61\x6e\x33\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\ +\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\x38\x34\x32\ +\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\ +\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ +\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x32\x22\x3e\xc2\xa0\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ +\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\ +\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\ +\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ +\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\ +\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\ +\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\ +\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\x65\x74\ +\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ +\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\ +\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x66\x66\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x31\x2e\x33\ +\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ +\x22\x32\x38\x2e\x37\x39\x39\x39\x39\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\x30\x30\x35\x22\ +\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\ +\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x32\x31\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x38\x2e\x37\x39\x39\x39\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x74\x73\x70\x61\x6e\x33\x30\x30\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ +\x2d\x73\x69\x7a\x65\x3a\x31\x38\x2e\x35\x35\x30\x30\x39\x38\x34\ +\x32\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ +\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ +\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x32\x22\x3e\x63\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\ +\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ +\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\ +\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\ +\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\ +\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\ +\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\ +\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\ +\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\ +\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\ +\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\ +\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\ +\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\ +\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\ +\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\ +\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\ +\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\ +\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\ +\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\ +\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\ +\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\ +\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\ +\x61\x63\x61\x37\x39\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\x61\x72\x6b\ +\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\ +\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\ +\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x4d\x20\x37\x2e\x32\x38\x34\x38\x33\x37\x31\x2c\x2d\x31\x32\x2e\ +\x34\x31\x35\x34\x38\x34\x20\x35\x2e\x33\x31\x38\x32\x30\x35\x37\ +\x2c\x2d\x31\x30\x2e\x37\x37\x34\x32\x31\x35\x20\x33\x2e\x33\x35\ +\x31\x35\x37\x35\x33\x2c\x2d\x39\x2e\x31\x33\x32\x39\x34\x37\x34\ +\x20\x32\x30\x2e\x38\x30\x30\x35\x35\x33\x2c\x31\x32\x2e\x32\x32\ +\x33\x39\x31\x36\x20\x31\x36\x2e\x30\x30\x31\x31\x30\x34\x2c\x31\ +\x34\x2e\x38\x34\x37\x38\x33\x33\x20\x32\x37\x2e\x37\x33\x30\x30\ +\x33\x35\x2c\x31\x37\x2e\x34\x39\x32\x38\x37\x36\x20\x33\x30\x2e\ +\x35\x36\x38\x33\x33\x33\x2c\x35\x2e\x34\x35\x33\x36\x33\x37\x33\ +\x20\x32\x35\x2e\x36\x2c\x39\x2e\x36\x20\x5a\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ +\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x10\x81\ \x00\ -\x00\x17\x33\x78\x9c\xed\x58\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ -\x14\x0c\x58\xb1\xea\x42\xdd\x2c\x29\xb6\xfb\xb0\xa2\x58\x81\xf5\ -\x65\xeb\xb6\xc7\x82\x96\x68\x9b\x8b\x24\x0a\x14\x15\xdb\xf9\xf5\ -\x3b\xa4\xee\xb6\x53\xa4\x18\x96\x3e\xb4\x02\x02\x45\xe7\x42\x9e\ -\xf3\x9d\xef\x1c\x32\x59\xbe\x39\x16\x39\x7a\xa0\xa2\x66\xbc\x5c\ -\x19\xd8\x72\x0c\x44\xcb\x94\x67\xac\xdc\xad\x8c\x3f\x3f\xbe\x33\ -\x23\x03\xd5\x92\x94\x19\xc9\x79\x49\x57\x46\xc9\x8d\x37\xeb\x9b\ -\xe5\x0f\xa6\x89\x7e\x11\x94\x48\x9a\xa1\x03\x93\x7b\xf4\xbe\xbc\ -\xaf\x53\x52\x51\xf4\xd3\x5e\xca\x2a\xb1\xed\xc3\xe1\x60\xb1\x4e\ -\x68\x71\xb1\xb3\x5f\x21\xd3\x5c\xdf\xdc\x2c\xeb\x87\xdd\x0d\x42\ -\x08\xf6\x2d\xeb\x24\x4b\x57\x46\xe7\x50\x35\x22\xd7\x86\x59\x6a\ -\xd3\x9c\x16\xb4\x94\xb5\x8d\x2d\x6c\x1b\xa3\x79\x3a\x9a\xa7\x6a\ -\x77\xf6\x40\x53\x5e\x14\xbc\xac\xb5\x67\x59\xdf\x4e\x8c\x45\xb6\ -\x1d\xac\x55\x34\x07\x4f\x1b\xe1\x38\x8e\x6d\xc7\xb5\x5d\xd7\x04\ -\x0b\xb3\x3e\x95\x92\x1c\xcd\xb9\x2b\xc4\x78\xcd\xd5\x75\x1c\xc7\ -\x06\xdd\x68\xf9\x3c\xab\xa4\x06\x40\x2b\xf8\x19\xcc\x7b\x81\x55\ -\xf3\x46\xa4\x74\x0b\x7e\xd4\x2a\xa9\xb4\xdf\x7e\x7c\x3b\x28\x4d\ -\xc7\xca\x64\x36\x59\xa6\xc7\x73\xb6\xeb\x0c\xe4\x92\x14\xb4\xae\ -\x48\x4a\x6b\xbb\x97\x6b\xff\x03\xcb\xe4\x7e\x65\x78\xbe\x85\x3d\ -\x78\x02\x2d\xdc\x53\xb6\xdb\xcb\x73\x29\xcb\x56\x06\x44\xef\xc6\ -\x51\xfb\x3d\x21\x07\x6e\x0d\xba\x85\x93\x41\xe3\x58\xb1\x6b\x61\ -\x24\x70\xe0\x2d\x5a\x9b\x3e\x85\x24\xe3\xa9\x8a\x09\x96\xa4\x05\ -\x23\x8d\xe4\x05\x54\x2d\x4d\x73\x52\xd7\x6c\xcb\x52\xf8\xe0\x65\ -\x95\x37\x3b\x56\x7e\x12\xb4\xe2\x42\x7e\x92\x9c\xe7\x56\x0f\xdf\ -\xb0\x17\x3d\x2a\xa5\x79\xcc\x2a\x00\x31\x5c\x5c\x55\x9e\x7a\xe5\ -\x1a\xb4\xcb\x8c\x6e\x6b\x65\xd5\x66\xa4\xbe\x20\xa5\x85\x81\x6c\ -\xad\x1d\x02\x54\xd1\x65\x0f\x8c\x1e\x46\xdb\x0d\xa9\x5b\xd4\x10\ -\xaa\xc8\x0e\x18\x96\x73\xb1\x32\x6e\xb7\xfa\xe9\x14\x1b\x2e\x32\ -\x2a\x7a\x55\xa8\x9f\x99\x8a\x43\x15\x98\x3c\xb5\x3d\xd5\xad\xdd\ -\xc7\xab\x56\x1d\xf4\xce\x75\x7d\xbd\x27\x19\x3f\xac\x0c\xf7\x5c\ -\xf9\xc8\x79\xb1\x32\x02\x2b\x88\xa3\xd8\xc1\xe7\xda\xf4\x08\x3b\ -\x42\xa5\x42\xd7\xc7\xde\x85\x52\x87\x13\xb8\x91\x87\xfd\xe8\x42\ -\xd9\x08\x01\x3d\x67\xe6\xe4\x44\x21\x27\xfd\xea\x97\xaf\xf7\xfc\ -\xb0\x13\x0a\x1b\x29\x1a\x7a\xee\xa9\x34\xe6\x66\xc3\x8f\xd7\xd5\ -\x40\x81\x46\x75\xb3\xd9\x94\x4c\x42\xc7\x54\xc7\xe9\xaa\x0d\xcb\ -\x68\x7d\xdd\xb1\x2e\x49\x65\xee\x72\xbe\x21\xf9\x75\x83\x03\x2b\ -\x01\x23\xb3\x23\x37\xf6\x86\x12\x9c\x5b\xf4\x4c\x5f\x38\x17\x69\ -\x77\x16\x10\xfb\x45\x19\x3a\xd5\xe9\x69\x55\x41\x8e\xac\x60\x8f\ -\x14\x80\xc1\x9a\x75\xc0\xac\x19\x2c\xad\x1b\x42\xf2\xa4\xba\xf6\ -\x78\x52\x32\xa3\x17\x2a\x3c\x95\xc0\x8d\xe3\xc5\x20\xe4\x82\x41\ -\x33\x4c\xc2\xe9\x45\xa7\xa9\x48\xf5\x38\x8c\xe8\xa3\xa6\x97\x26\ -\xdf\xe2\x5c\x77\x9a\xea\x3a\xd6\xdb\x97\xb4\xd7\xf2\x82\x4a\x92\ -\x11\x49\xc6\x1e\xe8\x25\x10\x9b\xd3\x67\x06\xe3\x32\xf9\xfd\xed\ -\xbb\x75\xb7\xd1\x32\x4d\x93\xbf\xb9\xb8\xef\xf7\x45\x48\x19\x90\ -\x0d\x6f\x00\x69\x63\x3d\x88\x97\x59\x9a\xc0\x80\x83\xc6\x5f\xb3\ -\x02\x98\xad\x66\xe3\xcf\x30\xd0\x96\xf6\xa8\x98\x19\x2b\xb0\xc6\ -\x45\xdb\x65\x05\x6d\x27\xe5\xd5\xe3\x22\x4b\x0b\xa6\x9c\xec\x3f\ -\x24\xcb\xf3\xf7\x6a\x93\x2e\xe3\xc9\xa2\x4c\xe6\x74\x14\x2e\xed\ -\x2e\xfa\x2e\x37\x7b\x92\xdc\xd2\xee\xb3\xd7\x5f\xbb\x11\x95\x59\ -\x53\x0c\x85\xce\xc9\x86\x02\x43\x7f\x53\x4a\x74\xa1\xdd\x09\xde\ -\x54\x05\xcf\x68\xe7\x3e\xa0\x49\x53\x39\x94\x4c\x9e\x72\xd0\xeb\ -\x71\x92\xdc\x3a\xfa\xb9\xcb\x58\x5d\x81\x07\x4c\xfd\x9c\x95\xf4\ -\x8e\xc3\xb8\xdd\xe6\xfc\x90\x3c\xb0\x9a\x6d\x72\x7a\xa7\xdf\x2c\ -\x87\xcc\x07\xd1\x16\xd2\x4f\x6e\xb7\xd1\x36\x4e\x1d\xfd\x61\x76\ -\x63\x26\xc1\xed\xa7\x68\x72\x9a\x94\xbc\x7c\x84\x01\x75\x57\x4b\ -\xc1\xef\x69\xd2\x0d\xb6\xee\xb3\xed\xa6\xc4\x6d\x8f\x04\xcf\xf7\ -\x7b\xb9\x0a\x02\x12\x4a\x36\x8d\x94\x53\xd9\x3f\x9c\x95\x09\xe0\ -\x4f\x45\x2f\xd5\x1f\x39\x34\x86\x4c\x06\xef\x8c\xc0\x40\x13\x02\ -\xd2\x81\xdd\xe9\x54\xca\xb7\xdb\x9a\xca\xc4\xe9\x65\x63\xc4\x05\ -\x11\xf7\x54\xb4\x0e\xb4\x24\x90\xa0\xb9\x21\xe9\xbd\x02\xb4\xcc\ -\x12\x92\xc2\x58\x69\x72\xb8\x82\xcc\x1a\x4a\xc1\xea\xc1\x80\x1b\ -\x84\xfd\xd1\x17\x58\xea\x60\x76\x46\xc5\x70\xfc\x5d\x68\xa0\xad\ -\x4c\x6c\x79\xae\x1b\x86\xb1\x3f\x48\xf5\xac\x6e\x51\x89\xdd\x41\ -\x2a\xc0\xd8\xb7\x22\x2f\x8c\x70\xe8\x8d\x52\x30\xf6\xac\x28\x76\ -\xe3\xc0\x0f\x07\x2e\x2e\x2b\x22\xf7\x67\x35\xd7\x25\x9b\x60\x32\ -\x94\x7f\x56\x8e\xd0\xf2\xda\x4e\x8e\xff\xcf\x72\x0c\xd0\x0f\x79\ -\xa8\x49\x80\xe0\x1e\xe2\x06\xe1\x6b\xdc\xc2\xe4\x2c\xd0\x1e\x79\ -\x91\xe5\xa3\xbf\xd4\x2b\xd0\x2c\x01\x91\xa9\x65\x8f\xb3\x62\xa8\ -\x7c\xbd\x08\x8f\xb3\x69\x3c\x6d\x78\x09\xf1\x4b\x2e\x4c\x38\x77\ -\x1e\x88\x6c\x04\x55\xf3\xed\xbf\x23\x85\x2d\x3f\xf4\x17\xe1\x22\ -\xc2\x2f\x8e\xd4\x07\x84\x3d\x4b\x91\x26\x5c\xbc\x0e\x3b\x60\x30\ -\xa0\x14\xb8\x56\x1c\xbb\x41\xec\x5d\xc3\x26\xfe\x36\xb0\x01\x16\ -\x75\x1d\x35\xc5\x66\x8f\x7c\xcf\x0a\x87\xbb\xc8\x14\x18\xd7\xfb\ -\x36\x80\xf9\x80\x9c\xd7\xae\xda\x1f\x9e\x08\xfd\x8a\x7c\x17\x60\ -\x52\xf8\x5c\xc3\x24\xf8\x72\x4c\x24\x3d\x0e\xc7\x0c\x1c\xba\x89\ -\xfe\xeb\x00\x16\x84\x03\x95\x8a\x87\x71\x76\xf6\x78\x71\xb8\xa8\ -\xe9\xdf\x21\x74\x38\x9a\xf3\x3b\x2d\x39\xe8\x59\x39\x13\xd5\x70\ -\xef\x49\xb0\x6b\x45\x1a\x4f\x1c\x57\xc7\x3b\x05\x50\x77\xd7\x4a\ -\x9c\x1f\x5b\xb3\x2d\x29\x58\x7e\x4a\x6a\x52\xd6\x26\xec\xc8\xb6\ -\x77\x39\x95\x80\x98\xd9\x5d\x53\x12\x07\x1c\x0f\x70\x65\x9e\x09\ -\xda\x83\xac\x2b\xd5\xd9\x41\xd6\x15\x72\x8a\x6c\x5f\xc5\xee\xba\ -\xe3\x4e\x27\x39\x0e\x2d\x98\xc2\x8b\xc5\x6c\x90\xbb\x91\xe5\xc0\ -\x64\x0e\xf1\x0c\x65\x85\x15\x9c\x1d\x23\xf4\x52\x40\xd8\xea\x8a\ -\x02\x7f\xbf\xa4\x24\xa7\x3f\x39\x6a\xa6\x47\x6e\x14\x78\x30\x0e\ -\x31\xcc\x43\x2f\x88\x5f\x19\xeb\xa5\x84\xe0\xcb\xf1\xce\x32\x5c\ -\xb3\x04\x57\xa0\x2a\x5c\x8c\x51\xab\xb7\x52\x0e\xb0\x57\x30\x91\ -\x5f\x0d\xf6\x89\x70\xcf\x0a\xa6\x6a\x11\x59\x51\x14\x85\x4e\x80\ -\xdd\xb3\x52\xc0\xe0\x0e\x9e\x2a\xc6\x53\x00\xae\xb1\xeb\x2d\x6d\ -\x1d\xe5\x1a\xde\x00\xcc\x77\x3e\x7d\x86\x4f\xd8\xb7\x16\x2e\x5e\ -\x04\xde\x55\x3e\x99\xc1\x4b\x32\xca\x8c\x9f\xc5\xa9\xcb\x90\xbf\ -\x73\xea\x6b\x71\xca\xb7\x7c\xdf\xf7\x9c\x2f\xa1\x94\xf3\xa2\x94\ -\x0a\xe7\x94\xba\x88\xf7\xab\x31\xea\x3b\x9f\x9e\xcb\xa7\xcf\x1f\ -\x79\xa6\xf3\xc2\x43\x2a\x34\xfd\xe7\x70\xea\x6b\x9c\x7c\x97\x9c\ -\x5a\xda\xbb\xf5\xcd\x52\xfd\xe3\x62\x7d\xf3\x2f\x01\x81\xea\x10\ +\x01\x72\x36\x78\x9c\xed\x9d\x4b\x93\xe3\xb6\x11\x80\xef\xfb\x2b\ +\x14\xed\xc5\xae\x2c\x21\x3c\xf8\x82\x76\x66\x7d\xb0\x2b\x15\x57\ +\x25\x97\xc4\x49\x8e\x2e\x8e\xc4\xd1\x28\x2b\x89\x13\x8a\x9a\x87\ +\x7f\x7d\x00\xbe\x44\x52\xe4\xec\x7a\x85\x26\x66\xe4\xd6\xd8\xb5\ +\x12\x41\x89\x24\x3e\x74\xa3\xbb\xd1\x00\xae\x7e\x78\xda\x6e\x26\ +\x0f\x71\xba\x5f\x27\xbb\xeb\x29\x23\x74\x3a\x89\x77\x8b\x64\xb9\ +\xde\xad\xae\xa7\xff\xfa\xe5\x2f\x4e\x38\x9d\xec\xb3\x68\xb7\x8c\ +\x36\xc9\x2e\xbe\x9e\xee\x92\xe9\x0f\x9f\xde\x5d\xfd\xc9\x71\x26\ +\x3f\xa6\x71\x94\xc5\xcb\xc9\xe3\x3a\xbb\x9b\xfc\xbc\xfb\xbc\x5f\ +\x44\xf7\xf1\xe4\xbb\xbb\x2c\xbb\x9f\xcf\x66\x8f\x8f\x8f\x64\x5d\ +\x1e\x24\x49\xba\x9a\x7d\x3f\x71\x9c\x4f\xef\xde\x5d\xed\x1f\x56\ +\xef\x26\x93\x89\xba\xee\x6e\x3f\x5f\x2e\xae\xa7\xe5\x17\xee\x0f\ +\xe9\x26\x3f\x71\xb9\x98\xc5\x9b\x78\x1b\xef\xb2\xfd\x8c\x11\x36\ +\x9b\x1e\x4f\x5f\x1c\x4f\x5f\xe8\xab\xaf\x1f\xe2\x45\xb2\xdd\x26\ +\xbb\x7d\xfe\xcd\xdd\xfe\x7d\xe3\xe4\x74\x79\x5b\x9f\xad\xef\xe6\ +\x51\xe4\x27\x31\x29\xe5\x8c\xf2\x19\xe7\x8e\x3a\xc3\xd9\x3f\xef\ +\xb2\xe8\xc9\x69\x7f\x55\xdd\x63\xdf\x57\x39\xa5\x74\xa6\xca\x8e\ +\x67\x7e\xdd\x59\xf3\xbd\xaa\xd0\x7b\xf5\x7f\x7d\x7a\x75\x80\xec\ +\x93\x43\xba\x88\x6f\xd5\xf7\x62\xb2\x8b\xb3\xd9\x4f\xbf\xfc\x54\ +\x17\x3a\x94\x2c\xb3\x65\xe3\x67\xaa\xfa\x6c\x5d\xb5\x55\xc9\xbb\ +\x68\x1b\xef\xef\xa3\x45\xbc\x9f\x55\xc7\xf3\xef\x3f\xae\x97\xd9\ +\xdd\xf5\x54\xb8\x84\x09\xf5\xf2\xf2\x83\x77\xf1\x7a\x75\x97\x75\ +\x8f\xae\x97\xd7\x53\x75\xf7\x5c\x86\xc5\xe7\x46\xe3\x60\xc5\x09\ +\xe5\x0f\xcf\xeb\x12\x4a\x24\x27\x6c\x92\x32\x4f\x04\xc5\x39\xd5\ +\x23\xcc\x97\xc9\x42\xdf\x93\xfa\xc9\x78\xbb\x8e\x0e\x59\xb2\x55\ +\xd4\x16\x8b\x4d\xb4\xdf\xaf\x6f\xd7\x0b\xf5\x21\xd9\xdd\x6f\x0e\ +\xab\xf5\xee\x57\xf5\xa3\x59\x16\xa7\xbf\x66\x49\xb2\x21\x55\xfd\ +\xd5\x17\x8b\x9f\xee\x93\x34\x73\x9e\x96\xf7\xaa\x16\xfd\xa0\xb7\ +\xf0\xb9\x2a\xfc\xa4\x4a\xaf\x96\xf1\xed\x5e\x9f\x55\x3c\x92\xfe\ +\xa4\x9e\x29\x98\x4e\x66\x79\x69\x7d\x87\xfa\xf6\x96\x0f\xeb\xf8\ +\xf1\x78\xee\x4d\xb4\x2f\xaa\x6d\x32\xb9\x8f\x56\xaa\x89\x6d\x92\ +\xf4\x7a\xfa\xfe\x36\x7f\x95\x05\x37\x49\xba\x8c\xd3\xaa\xc8\xcf\ +\x5f\xad\xa2\x44\x61\x58\x67\xcf\x85\x50\x95\xbf\x5d\xdd\xaf\xfe\ +\xd5\xba\x9c\xf6\x97\xef\xef\xa2\x65\xf2\x78\x3d\xe5\xdd\xc2\xdf\ +\x92\x64\xab\xa0\x11\xe9\x49\xca\xa9\xec\x16\x2f\x9e\xae\xa7\x8e\ +\x2b\x09\x0b\x28\x2b\x11\x36\x4b\xd5\x05\x43\x97\x78\x4c\x06\x9e\ +\x38\x29\x3c\xa4\xa9\x12\x3b\x67\x13\x3d\xc7\xea\xa9\xf2\x7f\x58\ +\x79\xd2\xfe\x2e\x79\x5c\xa5\xba\x76\xb2\xf4\x10\x77\xbf\xa9\x4b\ +\x9c\x9b\x9b\xe4\xa9\xbf\x58\xb5\x82\x83\x16\x68\xe7\xb0\x5b\x67\ +\x4a\x68\xee\x9f\x9a\xbf\x7a\x58\x2f\xe3\x7d\xff\x17\x1f\xd7\x3b\ +\x55\x09\x4e\xd9\x7c\x99\xa8\xeb\xb8\x7b\x46\xd5\x96\x03\x1a\x0e\ +\x9c\xa1\x6e\xed\xa4\x9e\xcb\xa2\xe7\xe1\xa2\x6d\xf4\xb4\xde\xae\ +\x7f\x8b\xd5\x73\xb3\xee\x29\xfb\x5d\x74\xef\xac\x36\xc9\x4d\xb4\ +\x29\xef\xfe\x53\x7e\xc6\x55\xab\x5a\x8a\x2f\x4d\x26\xd9\xb3\x16\ +\xdc\xa7\x67\x7d\x6c\x5a\x1d\xd4\xf5\xa9\x0f\x88\xc0\xf7\xea\x83\ +\x49\xba\x56\xf2\xd0\xb8\xdf\xea\xd0\x73\xf3\x90\x16\x73\xa5\xa5\ +\x9f\xf2\x06\x96\x37\xbf\xa0\x5b\xf6\xdc\x2c\x2b\xdb\xfd\xec\xb4\ +\xe1\xe7\xc7\xb7\x71\x16\x2d\xa3\x2c\x3a\x4a\x41\x75\x84\x4b\x49\ +\xab\x27\x53\x1a\x73\xfe\x8f\x9f\xfe\xf2\xa9\xbc\xd0\xd5\x62\x31\ +\xff\x4f\x92\x7e\xae\xae\x3b\x99\xe8\x13\xa2\x9b\xe4\xa0\x50\x4c\ +\x3f\xd5\x87\xaf\x96\x8b\xb9\xd2\x71\x4a\xf6\x3f\xad\xb7\xaa\x6d\ +\x6b\xf5\xf8\x67\xa5\xd3\xae\x66\xc7\x82\xd6\xc9\xba\xb2\x8e\x3f\ +\x5a\xfc\x6c\x1a\x17\xca\xb2\xb7\xc7\x58\x2e\xb6\x6b\xfd\xa5\xd9\ +\x3f\xb3\xf5\x66\xf3\xb3\xbe\x48\xf9\xc4\x8d\x1f\x5d\x67\x9b\xf8\ +\x78\xf0\x6a\x56\xde\x7d\xf9\x6c\xb3\xc6\xc3\x5d\xcd\xaa\xa7\xcf\ +\x3f\xad\x8e\xb5\xd2\x12\x8a\x1a\xf4\x26\xba\x89\x55\x23\xf8\x9b\ +\x2e\x9c\x9c\x94\xae\xd2\xe4\x70\xbf\x4d\x96\x71\xf9\xf5\xba\x36\ +\xe3\x45\x56\x23\xcb\x9e\x37\xaa\xfc\x56\xdd\xfd\xfc\xfd\x2d\xd5\ +\x7f\x1f\xf5\x07\xa7\xd4\x13\x73\x56\x7c\x4c\x0f\x1b\xa5\xef\x1e\ +\xe2\x5d\xb2\x5c\x7e\xdc\x67\x69\xf2\x39\x9e\xbf\xa7\xd4\x0d\x29\ +\x2d\x3f\x16\xd2\x32\xaf\x3f\x6e\xd6\xbb\x58\xdd\xc6\x7c\xff\xbf\ +\x43\x94\xc6\xcd\xa3\xff\x4d\xd6\xbb\xb9\xaa\xb7\x38\xad\x8e\xe6\ +\x1f\x36\xaa\xc5\x67\x73\xb7\x3a\xb6\x8c\x94\x2a\x4a\xd3\xe8\x79\ +\xbe\x53\x26\x40\xf3\x68\x72\x7b\xbb\x8f\xb3\xe3\x95\xaa\x5b\xa5\ +\x44\x94\xaf\x56\x43\xd7\x8f\x2b\xa4\x64\xf5\xc1\xde\x5e\x49\xbf\ +\xfa\x7b\x26\xfd\x6a\x49\x85\x6a\xdf\x92\xb8\x81\x90\x54\xf8\xb1\ +\xc3\xfc\xba\x20\x6d\x9d\x96\x3e\x6b\x75\x29\x54\xef\xe4\xcb\xb0\ +\x6e\x15\x57\xf7\x51\x76\xd7\x57\xfb\x8d\xa7\xd4\x35\x4b\x6f\x39\ +\x6f\xd7\x2c\x2f\x6e\x4a\xb8\x6e\xb7\x8a\x6f\x0e\x59\x66\xaa\x82\ +\x6b\xee\xf5\x73\xa8\x2a\xfc\xfb\x84\x7e\xa0\x93\x7f\x4f\xaa\x8a\ +\x69\x57\xb0\x7e\x22\x25\xad\xc7\x7a\x38\x6a\xf6\x64\xa7\xee\x30\ +\x4b\x52\x47\xe9\xf8\x87\x28\x3b\xa4\x71\x4b\x97\xd4\x3a\x41\x35\ +\x52\x2d\x46\x4a\x1d\x2f\x16\x6f\xbd\xaa\xea\x4a\xfa\x50\xbf\x9b\ +\xfc\x75\x42\xfb\xaa\x2c\x7c\x3d\x55\xc6\x88\x22\x48\xb9\x17\xde\ +\x3f\xfd\xfe\x3a\x1b\xa8\x89\xba\x17\xf8\xc0\x43\x12\x4e\x7e\x9c\ +\x08\xc2\x8b\xb7\x27\x6f\x4e\x6a\x47\x04\x01\x77\xe8\x57\xd7\x8f\ +\x91\x36\xc3\x02\xcf\x65\x9e\x67\xac\x06\xb6\x13\xaf\x52\x49\x1f\ +\x84\x47\xf8\x64\xa1\xe4\xc8\x71\x09\xcf\x2b\x65\xe8\xfd\x69\x55\ +\x84\xee\x9b\xaf\x08\x46\x49\xd9\x14\xce\xac\x08\xe7\xeb\x65\xe6\ +\x8b\x55\xf1\x7e\xc1\x97\xf4\xd6\xef\x76\x78\xa3\x57\x0e\x67\xc4\ +\x4c\x2b\x71\xe4\x5b\x6f\x27\xdc\x37\xd5\x4e\xde\xbc\xc8\x08\x7e\ +\x76\x1d\x88\xb7\x5e\x07\xcc\x3f\xbb\x0e\xbe\xde\x2c\xf9\xb2\xbe\ +\xd0\x8e\x78\x6d\xf0\x8e\xd5\x8f\x6e\x9b\xfd\xa8\x20\x6e\xf1\xdc\ +\x8b\x49\x65\xe4\x08\x65\x9a\x0d\xbc\x1f\xe8\x55\x1d\x7e\x49\x75\ +\xc2\xc2\xca\xca\x3a\xab\x4e\xd8\x88\xb2\x02\x6b\x6c\x31\x5e\x1b\ +\x5b\xf9\xdb\x93\x37\x43\x55\x30\xa6\xba\x80\x6d\x13\x41\x21\x26\ +\xe7\xca\x89\x7b\x31\x15\x52\x3f\xec\x79\x15\xf2\x0d\xf6\xc5\xaa\ +\x15\x74\x72\x79\x78\x6c\x7e\x2d\x3d\xe2\x7a\xfa\xaf\x63\x8b\xd5\ +\xa7\x66\x69\xb4\xdb\xeb\x90\x8d\x0e\x79\xa9\xb7\x9b\x28\x8b\xbf\ +\x73\x24\x91\x61\xa0\xfe\xdc\x0f\x9e\x20\x21\x0d\x5c\x1a\x7e\x5f\ +\xc7\x7f\x8e\x57\xae\xae\x4d\xe5\x11\xe8\x57\x5d\xbd\x11\xc8\x69\ +\x06\x4d\x1a\xdf\xce\x23\xb1\x39\x50\xf5\xfa\xb8\x5c\xef\xef\x37\ +\xca\x4b\x5c\xef\x34\xa6\x8f\xc9\x43\x9c\xde\x6e\x92\xc7\xf9\xc3\ +\x7a\xbf\xbe\xd9\xc4\x1f\xf3\x7f\xd7\x1b\xfd\xe3\xd5\xa1\x17\x2e\ +\xdf\x88\xbc\xa8\xd6\xf3\x5b\x9c\x26\xc7\x06\x14\xd0\xc0\xbb\xfd\ +\x42\xe4\xc5\xa4\xaf\xfb\x52\xdc\x85\x7d\xdc\x46\xe9\xe7\x38\x2d\ +\xbe\x10\xef\x22\xf5\x5c\xce\x4d\xb4\xf8\xac\x03\x50\xbb\xe5\x3c\ +\x5a\x2c\x0e\xdb\x83\x26\x36\x6d\xd6\x60\x1d\x9b\x09\x29\x77\xb8\ +\x68\x95\x55\x91\x57\xc2\x5b\x87\xab\x00\x0d\x25\x92\xa9\x96\xe4\ +\x05\xed\xe2\xa7\xeb\xa9\xea\x20\x03\xce\xd4\x5f\xab\xe0\xf9\x7a\ +\xea\x70\x49\x02\xa1\x4a\xc2\x76\x80\x0e\xb9\x82\x72\x75\x1b\x2a\ +\xe3\x3c\xb0\x3e\x61\x08\xf6\xf5\x80\xe5\x62\x88\x6c\x77\x54\xa0\ +\xc9\xb7\xbf\x54\xe1\x15\xca\x05\xd6\x78\xd9\x09\x5e\x55\xe2\xe6\ +\x9a\x1d\xf1\x8e\x2b\xb7\x0d\xcf\xc9\x00\x5f\xe5\xb8\xe8\x3a\x75\ +\x91\xef\xab\xe0\xeb\x3b\xa2\x11\x21\x31\xc0\xd7\x27\x7e\x5e\xa7\ +\xa7\x7c\x39\x71\x15\xde\xc0\x43\xbe\x23\xf2\x95\xc2\x09\x8d\xca\ +\x2f\xea\xe7\x57\xc5\xd7\x75\x84\x70\x38\x2a\xe8\x8b\x05\xcc\x95\ +\x82\xf6\x42\x93\x80\x39\x11\xb9\xb3\x7c\x0a\x58\x10\x4f\x13\x66\ +\x08\x78\x54\x09\xf6\x1d\xe6\x78\x26\x09\xbb\xc4\xd3\x3a\xba\x47\ +\x84\x91\xb0\x25\x17\xc9\x61\xe3\xe8\x68\x8f\xf8\xda\xc8\xe2\x08\ +\x78\x6c\x27\xc9\xac\x9b\xe4\x11\x4f\x2b\x69\xf9\x46\x09\x17\xd7\ +\xbb\x1c\xc2\xd2\xc9\x5d\x25\x93\x84\x83\x22\x40\x89\x66\xd6\xab\ +\x00\xec\x3a\xa1\x23\x99\xea\x88\x8d\x3a\xc3\xc3\x52\x8c\x90\xad\ +\x48\x31\x53\xff\x07\x26\x09\x0f\x87\x3b\xde\x84\xa9\x75\x69\x7a\ +\x5a\x8b\xb1\xef\x78\x66\x3d\xe2\x90\x68\x77\x09\xfd\xa5\xd7\x83\ +\x58\xe6\x7f\xae\x41\xc8\x5c\x12\x36\xe0\x15\xbf\x09\x55\x7d\x69\ +\x82\x9c\xc7\xa5\xcd\x9a\xd4\x83\x62\xec\x13\x6d\x50\x8b\xd7\x0d\ +\xf8\xf2\xc4\x58\x38\x81\x13\x78\x66\x23\x1f\x18\x9d\x7e\x55\x90\ +\x8b\xc8\x87\x49\x3d\xfd\xd6\x4d\xea\x4b\xd3\xd3\x45\xe8\xc3\xec\ +\x10\xd3\xdb\xf6\x8c\x2f\x8d\x70\xd1\x13\x9b\x0c\x5f\xba\x7a\xc2\ +\x76\xbf\x96\xc6\x31\x62\x6b\x32\xec\x99\x8c\x7c\x70\x3a\xe4\x17\ +\x2b\x43\x9b\x23\x62\x3b\x91\x0f\x66\x32\x80\xc9\xd9\x60\x86\x65\ +\x40\x18\xfa\xc5\x76\xf4\xb4\xc9\xc0\x07\x17\x24\xd4\xb5\xea\x9f\ +\xea\x69\x4a\x84\x26\x8c\x80\x47\x4f\xf5\x30\x9a\x6d\x89\x6a\xfa\ +\xb5\x21\xce\x73\x01\x8c\x5a\x5b\xc3\x7a\xfa\x6d\xd8\xd3\x97\xc6\ +\x58\xea\x84\x1e\x27\x34\xab\xa9\x87\xe5\x18\xfb\x62\x6b\x71\x0f\ +\xb3\xaa\x3a\x1c\x9a\xf7\x80\x4e\x93\xc5\x9c\x0f\xa3\xe3\xc5\x4a\ +\x58\xe9\x40\x5e\x0f\x32\xb6\x97\xf5\xe1\x98\x4c\xbf\xe4\xee\x50\ +\xf0\x03\x4d\x2e\xbb\x89\x1f\x66\xad\x2e\x9e\x8f\x36\xf5\x8c\x27\ +\x22\x66\x8b\xa9\x1f\x46\x53\xb8\x5e\xf0\x8f\xd1\xb2\xb6\x99\xfc\ +\x61\xb6\x53\xf6\x8a\xc9\xe5\x6f\x75\xc4\xe9\xd2\x28\x97\x99\x01\ +\x66\x67\x9d\x52\xc2\x07\xd2\xb8\x5c\xe2\x6b\xc6\x01\x32\x1e\x7b\ +\xd2\x8b\x34\x6b\x77\x61\xb8\xfa\x75\x21\x2e\x52\x03\xcc\x76\xc8\ +\x68\x74\xbd\x2a\xc6\x55\x72\x80\xd1\x3c\x2e\x74\xa0\x5e\x17\xe4\ +\x32\x3f\xc0\xac\xb2\x1e\x0e\x76\x9d\x8e\x3c\x5d\xcd\x56\xd5\x12\ +\xca\xd5\x9b\xee\x5a\x43\xec\xd8\xb1\xf7\x2e\x20\xa4\xba\x80\xa0\ +\x5c\x78\x91\x12\x99\xbf\x6b\xac\x1f\xd4\x6e\x40\x65\x97\xc1\x03\ +\x9f\x35\x4d\x10\xbd\xec\x39\x57\xf6\xa0\x7e\x35\x9b\xe6\x8b\x2b\ +\x9a\xf4\xae\x82\xd2\xf6\x5b\x1a\x05\x66\x1b\x2e\x8b\xd8\x8d\x1b\ +\x5d\x7e\xc3\x6d\x34\x94\xaf\x05\x49\xcd\xf1\x73\x5b\x72\x81\x04\ +\xcd\x13\xac\x56\x42\xec\xc8\xa2\xff\x82\x2c\xf6\xe9\x9d\x17\x14\ +\x56\x0b\xa8\x40\x9c\x36\x70\x96\x6b\x7b\xfa\xd2\x30\x4e\x65\x80\ +\xf6\xac\x05\x87\x44\xcd\x11\x65\xca\x2a\xeb\x0a\xa2\x26\x5a\x2d\ +\x89\xed\x19\x26\xda\x9e\xe0\x85\x40\x47\x03\x2a\x5a\xbd\xa0\x19\ +\xe1\x0c\x1d\xdf\x43\x9a\xa0\x0a\xd7\x23\xfe\x48\x92\xc9\x5b\x39\ +\x0f\xc8\x72\x0c\x96\x10\x42\xe9\xa3\x86\x05\xe6\x58\xee\x03\xe0\ +\x8e\x64\x04\xe9\x94\x24\x1f\x91\xda\x40\x5a\xef\x50\x03\xd0\x75\ +\xca\xd6\x38\x18\x42\x85\x88\x1e\x04\x63\xca\x29\x17\x48\xd4\x0e\ +\x51\x38\x31\x45\x21\xb5\x13\x51\xe8\x8b\xf1\x9d\xd7\x87\x72\x34\ +\x8b\xec\xc4\x86\x40\xfb\x50\x86\x4e\x8b\x1d\xcb\x08\x2a\x80\xeb\ +\x3b\x02\x35\xae\x0d\xa2\xa6\x35\xae\x5e\x41\x02\x83\x43\x63\x07\ +\x14\xfa\xb0\x98\xe9\x3f\x99\x23\x11\x27\x2c\xce\x90\x04\x52\xbf\ +\x60\x05\x53\x67\x04\xe0\xb8\x35\x2c\x49\x4e\xa4\xe4\x9e\xe4\x1d\ +\xe9\x74\x49\xe8\xea\xbf\xfe\xd0\xad\xa0\x22\x50\xff\xf5\x21\x2d\ +\xd2\x58\xbc\x61\x5d\x2b\x5b\xfb\x82\x21\x54\x98\x7e\xd3\x0f\xd5\ +\xab\x6b\xdf\x52\x92\x33\x0d\x06\x4c\xa1\x6f\xa7\x2a\xf3\xe9\xa6\ +\x68\x0d\xc1\x52\x75\x09\x97\x3e\x97\x5d\xaa\x8c\x48\xa1\xfe\x5c\ +\xd3\x50\x73\xed\xdb\x9a\xcb\x82\x50\xc7\x19\x69\x11\x39\x50\x01\ +\x20\xa4\xd8\x9f\x8e\xcf\x13\x4c\xeb\xea\xb0\x82\xa7\xae\x88\x8a\ +\x17\xdc\xda\xe5\xc5\xd4\x8d\x71\x14\x6f\x31\xb1\x9f\x3b\x98\x4f\ +\x64\x25\x0a\x58\x6f\xf5\x6a\xda\x31\x45\xe5\x6b\x89\x28\x54\x1e\ +\x4a\xbe\x90\x0e\x86\x1a\xc6\xee\x50\xa1\x02\xba\x7a\xb2\x18\x7a\ +\xa6\x63\xd3\x84\x4b\xc8\xf5\x3b\x93\x49\x90\xe7\x68\x63\x2e\x70\ +\x39\xb9\xf9\x9a\x47\x28\xa5\x56\xa8\xc2\x24\xe6\x4a\x4c\x5d\xb0\ +\x95\x8d\x02\x96\xa0\x2b\x3a\xbb\x2a\x20\xd3\xd1\x98\x42\x08\x69\ +\xbe\xac\x2f\xe2\xb4\xe1\xbb\xc0\x0d\x93\xea\x08\x2f\xa6\xa4\x58\ +\xe9\x48\xa1\x42\x0c\xdd\x35\xc6\x10\xe9\x68\x48\xa1\xe4\xb4\xd8\ +\xde\x04\xe5\x74\x64\xb7\xd4\x7c\x8e\x51\xb1\xa4\x14\x46\x00\xa1\ +\xd3\x19\xba\x82\x19\x12\x2f\x17\xd8\x10\x80\x68\xb1\x7d\x18\x32\ +\xbd\x94\x64\x23\x8a\x2c\xed\xa4\x1b\x41\x8f\x91\xaa\x2e\x14\xed\ +\x22\xe8\xec\x14\x3f\xf4\x02\xf6\x15\xb3\x23\xbe\x7d\x05\x14\x9c\ +\x5b\x08\x6d\xdb\xd2\x2e\x97\xc2\xb6\xed\x0b\x29\x7c\xeb\x42\x44\ +\x4e\x80\xd3\x5b\x60\x31\xfa\xc4\xd3\x64\x4e\x33\xae\x0d\x62\xe4\ +\xa8\x50\xc1\xbb\x4a\xad\x4f\x5d\x01\xa6\x50\xf3\xd9\xda\x68\xf0\ +\x40\x1b\xaf\x22\x47\x03\x46\x91\x0b\x8c\x0e\xc0\x47\x07\x74\x35\ +\x72\x38\x86\x9d\x65\x88\x11\xe2\x9b\x9f\x62\x5f\x85\x07\xd0\x64\ +\xbd\xb0\x79\xf6\x02\x7d\xc9\x4b\x83\x5a\x64\x95\xb8\x38\xd7\xc1\ +\x0a\x56\x88\x50\xbb\xd6\xbc\x1e\xea\x5e\x3b\xeb\xf7\x41\x45\xdc\ +\x05\x0a\xa8\x1d\xa0\x50\x09\xb7\x7a\xcd\x54\x4c\xfd\x02\x66\xea\ +\x96\xeb\x90\x8f\x94\x82\xd0\xdd\x1b\xc9\x32\xd2\xe2\x7a\x7f\x0c\ +\xa4\x70\xd3\x1c\xf4\xea\xa9\xaf\x29\x01\xec\x22\xa9\x06\x05\x87\ +\x70\x24\xe5\x9b\x47\xff\xd0\x93\xb1\x03\x15\x36\xea\x40\x31\xf7\ +\xd6\x8e\xa1\x04\xe7\xa0\x72\x4c\x02\xb3\x05\x15\x54\x56\x99\x8e\ +\xfd\x22\x57\x1b\x3a\x18\xca\x4d\xd5\xeb\xc2\x61\xbf\x6a\x87\x29\ +\x64\xd8\x17\xd7\x59\x80\x86\x1a\x92\x40\xe7\x86\x79\x27\x16\xb0\ +\x0c\x59\xc8\x82\x7e\x57\xf5\xec\xb5\xa8\x50\xff\x82\xcb\xaa\xcb\ +\xd5\xeb\x44\x54\x7d\x05\x35\xa4\x10\xcb\xdc\xe8\x4d\xb8\x91\xaa\ +\x15\x6b\x49\x16\x63\xe5\xd4\xb8\x09\x2c\x30\xd3\xda\x56\x60\x09\ +\x8a\x69\xb1\x7e\xc6\x6b\x8a\xea\x53\x7a\xcb\xf9\xa5\x51\x1d\xb0\ +\x95\xe0\x22\xc0\xc5\x1c\x7d\x34\x97\xec\x70\x85\x0c\x03\xe7\x73\ +\xf5\xb1\x6b\xbd\x94\x7d\xd1\xca\x49\xc0\xaf\x49\x03\xff\x91\x80\ +\x82\x4a\x2a\x53\x56\x70\x67\x5b\x74\x44\x3b\x9a\x12\x86\x32\x99\ +\xf2\x19\xde\x28\xaf\x76\x02\x11\x50\x2e\x6b\x63\x92\x1a\x6e\xfd\ +\x02\x8c\xd6\x27\x7a\x9b\x6e\x7a\xba\x48\x6b\xe1\xf9\xf4\x46\x0e\ +\xbf\x7d\xc2\x9a\x83\xfb\x3c\xc3\xcb\xaa\x27\xa9\xdb\x0a\x0e\x7e\ +\x29\x12\x7c\xd6\x7c\x19\x94\x50\x63\x40\xaf\x66\xab\xf2\xcd\xea\ +\x5d\xa3\xc2\x57\x2e\x6b\x60\xcb\xd2\x68\xb7\xbf\x4d\xd2\xed\xf5\ +\x34\x7f\xab\x7f\xe1\x3b\xc7\x0d\x49\xd1\x51\x7e\x70\x05\x09\xf3\ +\x89\x52\xdf\x4f\x5f\x68\x26\xc2\x25\x1a\x38\xed\x4c\x22\xf7\xca\ +\x9f\xe9\x1b\x03\xfa\xe6\x56\x02\x37\x4e\xeb\x2e\x7c\x7f\xc9\xfe\ +\x38\x0d\xa4\x1f\x25\x57\xfd\xa9\xe2\xcd\xc1\x51\x42\x5a\xcf\x88\ +\x52\xa3\xf4\x09\xd3\x60\x3a\x8e\x91\x27\x49\xa8\x51\xf6\xf9\x45\ +\x67\xf4\xc5\x70\x61\x0b\x84\xa9\x61\x2a\x77\xd6\xe3\x22\xe8\xaa\ +\x58\x59\x78\xb9\xc6\x63\x17\x28\x9b\x36\x70\xfa\xec\x74\x9d\x3a\ +\x53\x63\x01\x08\x14\x14\xa8\x62\x90\x1b\x4a\x1d\xa0\xb4\x48\x30\ +\x35\x1f\x5b\x44\x7d\x6b\x85\x27\x2f\xf3\x9a\x00\x82\x8a\x70\x29\ +\xe0\x48\x54\x13\x15\x84\x33\xe5\xcc\x86\xe3\xa8\x5c\x09\xba\xef\ +\x25\x12\x7d\x81\xa8\x20\x9e\x5e\xd1\x0c\x68\x4d\x3a\x64\x6a\xc3\ +\x30\x82\x64\xca\x00\x43\xfe\x08\x75\x58\x50\xa1\x9c\x17\x1f\x23\ +\x0b\xe0\xeb\xee\x48\x25\xa4\x27\x91\x05\xbf\x08\x0b\x83\x4c\x91\ +\x03\x4c\x78\x41\xa6\x5a\x46\x29\xa1\x5a\x46\x83\x71\x98\xe6\x89\ +\xa4\x48\xd4\x06\xd1\xb0\x9c\x72\x03\xe1\xc2\x60\x78\x1e\x3c\x3c\ +\xcf\xb4\xe6\xed\x86\xe7\x81\x7a\xd2\x2a\x2b\x0d\xa9\xda\xa0\x0a\ +\x18\x0d\x74\x02\xc0\x91\x56\x64\x3a\x7e\xc0\xbe\x64\x8a\x11\x07\ +\xe8\x2e\x95\x7b\x3e\x0d\xdd\x93\x2e\x55\xe6\x59\x48\x86\x53\x97\ +\x24\xe4\x86\x23\x08\x74\x18\xa8\xd2\xbc\xa1\x46\xd3\x6f\x23\x9d\ +\x93\x8b\x26\x20\x67\xc4\x21\xd2\x62\x41\x51\xea\x32\xde\xdd\xeb\ +\xe9\xe5\x91\x98\xf3\x66\xc4\xc1\x2d\x08\x81\x44\x5f\x20\x2a\x14\ +\x36\x49\xfb\x57\x0e\x38\x37\x5f\x14\xc3\xbc\xd0\x16\x6f\xe8\x0b\ +\x57\xb2\x71\x84\x94\xe3\x60\x8c\x2d\xa2\x50\x42\xaa\xe7\x21\x63\ +\x00\x09\x7a\x49\x51\xdf\x0d\xfd\xe0\x74\xc4\x14\xc4\x38\x2a\xa6\ +\x36\x62\xe6\x91\x1d\xa8\x2e\x09\x7c\xe1\x0f\xac\xed\x71\x5e\x6f\ +\xaa\x23\x48\x28\xaa\xd0\xd1\x06\x37\xa0\xa1\x1c\x49\x54\xf3\x2d\ +\x88\x51\x50\xad\x20\x05\x13\x54\x09\xba\x62\x21\x32\x7d\x21\xdc\ +\x00\xa9\x7c\x19\x1a\x4a\x96\xfa\x54\xa8\xb0\xa0\x8f\xde\x8c\xa5\ +\x90\x83\x17\x10\x57\x39\x33\x60\xfb\x28\x22\x54\x1b\x62\xea\x13\ +\xaa\x94\xef\xc0\x80\xf8\xd9\xfe\x0c\xda\x49\xe0\x1b\xf2\x09\xd7\ +\x95\x81\x18\x47\xf9\xd6\x43\xe2\x18\xc7\xb7\xc2\x15\x70\x68\x46\ +\x0f\xa0\x62\xe0\x17\x7c\x5e\x85\xe7\xc9\x20\x1c\x49\x07\x1f\xf7\ +\x11\x47\xcf\xe6\x92\x46\xc6\xab\x74\x07\x1c\x7a\xbb\xa8\x74\x7c\ +\x89\x8e\xcd\x65\xcd\x99\xd1\xae\x2a\x26\x0f\x5e\xd6\x54\xe2\xaa\ +\x47\x45\xfb\xf7\x92\x54\x6f\xdd\xa3\xa2\x01\x7c\x49\x06\xb0\x4e\ +\x21\x44\x49\xb5\x83\x14\xce\xf6\x85\xdd\x5c\x0a\xa1\xbe\x10\x56\ +\x82\x89\x00\xe7\x59\x84\x68\x29\xd9\x89\x28\x01\x25\x9d\x95\x89\ +\x84\xd8\xa1\x02\x6b\x5f\x97\x30\x3f\x60\xf2\x77\xad\xbc\x72\x76\ +\xe6\x19\x52\xb5\x33\xc5\x18\x6a\xa6\x45\x99\x7b\x86\x2a\xd8\x0a\ +\x56\xb8\xa0\x7e\x99\x7d\x86\xe2\x0a\xbe\xd6\x60\x10\xb8\x7e\x77\ +\x11\x76\x28\x71\x2d\xf2\xcf\xd0\xaf\xb1\x02\x15\x4e\x58\xf3\x0c\ +\x34\xa4\x6a\xc5\x5b\x05\x55\xc1\x79\x0e\x1a\x66\xa1\xd9\x5a\x95\ +\x05\x24\xb2\x94\x67\xa1\xe1\xf8\xdb\x45\xa5\x2c\x35\x92\x5b\x70\ +\x20\xee\xa2\x72\x46\xeb\xf4\x16\xf4\x70\x2e\x2a\xbe\x7f\x4c\x84\ +\xc0\x05\xb2\xc0\x47\xce\x85\x5e\x18\xbf\xb3\xb9\x09\xc0\x72\xea\ +\x5a\xff\x62\x74\x1f\x7a\x70\xb5\x6f\xd3\x30\x90\x1d\x2b\x18\x7a\ +\x34\x56\x60\xfa\xd5\x98\xb7\x39\x98\xc5\x4a\x84\x68\xf3\xc2\x5a\ +\x46\x2e\x51\x95\x2d\xbd\xee\xc8\x9b\x3f\xbc\x6e\xdd\x39\x7b\x48\ +\x21\x4c\x50\x98\x65\xf7\x78\xba\xac\xa4\x79\x98\x28\x99\xf0\x03\ +\xa8\x5c\x09\x26\xef\x26\xf9\x06\xc3\xa9\x66\x67\x48\x26\xe4\x66\ +\x60\x88\xb3\x70\x55\xfc\x3c\x62\x34\x02\x4e\x1c\x06\x87\x8f\xfe\ +\xd1\xbc\xdb\x1c\xc5\x3d\xc1\x50\xae\x15\x98\x40\x8a\x16\x3d\x14\ +\x4b\x1d\x27\xc4\x56\x6c\xb8\x66\xa4\x25\x93\x16\x26\x76\x80\xfe\ +\x89\x0d\x98\x60\xb1\x03\x8a\xb3\xc1\xa1\x87\x55\x58\xef\x18\x28\ +\x40\xec\x20\xc0\x31\xb2\x71\x46\xb4\x7b\x72\xb0\x8d\x9b\x41\x3e\ +\xce\x68\xb2\x23\x9b\x00\xaa\x36\x1f\x40\xc1\xe8\x81\x15\x4d\x0b\ +\xb1\x51\x74\xee\xa2\x04\x68\x0a\xd9\xd1\xb6\x10\x11\x04\x86\x9b\ +\x74\x59\xc2\xe9\x73\x90\x61\x14\x3d\x7d\x09\x15\xae\x8d\x2d\x69\ +\x95\x35\x74\x32\xfa\x69\x6e\x42\x30\x45\xa3\xc8\xce\x3e\x31\x80\ +\xbb\x74\xf9\x7a\xb1\x39\x1f\xc5\x15\x58\xff\xd2\xa1\x29\x11\x2f\ +\x80\x3d\x77\x06\x29\x0a\xab\x0d\xa6\xca\x85\x61\x81\x17\x78\xfd\ +\x6b\x32\x9c\x3f\x83\x14\xa9\xc2\x52\xe5\x84\x06\xa1\xa0\xdd\xcc\ +\x3e\x9f\x84\x8c\x33\x0e\x31\x2f\xb8\x4a\xb2\x46\x1b\xd8\x0a\x59\ +\x49\x02\x05\xd6\xfc\x32\xae\x55\x8e\x35\x8e\xc0\x58\xc1\x0a\xd4\ +\xb5\xd6\x13\xf9\x51\x11\x03\x73\x65\x44\x6a\xff\xf3\x34\x21\x25\ +\xd0\x7b\x26\xf6\xcd\x89\x38\x67\x98\x14\xc3\xf7\xc6\x70\x5e\xcd\ +\x56\xfa\x4d\xfe\xcf\xd5\x6c\xff\xa0\xfe\xf9\x3f\xa7\x5f\x0b\x56\ \ -\x00\x00\x05\xe1\ +\x00\x00\x07\x5e\ \x00\ -\x00\x17\x33\x78\x9c\xed\x58\x5b\x6f\xdb\x36\x14\x7e\xcf\xaf\xe0\ -\x14\x0c\x58\xb1\xea\x42\xdd\x2c\x29\xb6\xfb\xb0\xa2\x58\x81\xf5\ -\x65\xeb\xb6\xc7\x82\x96\x68\x9b\x8b\x24\x0a\x14\x15\xdb\xf9\xf5\ -\x3b\xa4\xee\xb6\x53\xa4\x18\x96\x3e\xb4\x02\x02\x45\xe7\x42\x9e\ -\xf3\x9d\xef\x1c\x32\x59\xbe\x39\x16\x39\x7a\xa0\xa2\x66\xbc\x5c\ -\x19\xd8\x72\x0c\x44\xcb\x94\x67\xac\xdc\xad\x8c\x3f\x3f\xbe\x33\ -\x23\x03\xd5\x92\x94\x19\xc9\x79\x49\x57\x46\xc9\x8d\x37\xeb\x9b\ -\xe5\x0f\xa6\x89\x7e\x11\x94\x48\x9a\xa1\x03\x93\x7b\xf4\xbe\xbc\ -\xaf\x53\x52\x51\xf4\xd3\x5e\xca\x2a\xb1\xed\xc3\xe1\x60\xb1\x4e\ -\x68\x71\xb1\xb3\x5f\x21\xd3\x5c\xdf\xdc\x2c\xeb\x87\xdd\x0d\x42\ -\x08\xf6\x2d\xeb\x24\x4b\x57\x46\xe7\x50\x35\x22\xd7\x86\x59\x6a\ -\xd3\x9c\x16\xb4\x94\xb5\x8d\x2d\x6c\x1b\xa3\x79\x3a\x9a\xa7\x6a\ -\x77\xf6\x40\x53\x5e\x14\xbc\xac\xb5\x67\x59\xdf\x4e\x8c\x45\xb6\ -\x1d\xac\x55\x34\x07\x4f\x1b\xe1\x38\x8e\x6d\xc7\xb5\x5d\xd7\x04\ -\x0b\xb3\x3e\x95\x92\x1c\xcd\xb9\x2b\xc4\x78\xcd\xd5\x75\x1c\xc7\ -\x06\xdd\x68\xf9\x3c\xab\xa4\x06\x40\x2b\xf8\x19\xcc\x7b\x81\x55\ -\xf3\x46\xa4\x74\x0b\x7e\xd4\x2a\xa9\xb4\xdf\x7e\x7c\x3b\x28\x4d\ -\xc7\xca\x64\x36\x59\xa6\xc7\x73\xb6\xeb\x0c\xe4\x92\x14\xb4\xae\ -\x48\x4a\x6b\xbb\x97\x6b\xff\x03\xcb\xe4\x7e\x65\x78\xbe\x85\x3d\ -\x78\x02\x2d\xdc\x53\xb6\xdb\xcb\x73\x29\xcb\x56\x06\x44\xef\xc6\ -\x51\xfb\x3d\x21\x07\x6e\x0d\xba\x85\x93\x41\xe3\x58\xb1\x6b\x61\ -\x24\x70\xe0\x2d\x5a\x9b\x3e\x85\x24\xe3\xa9\x8a\x09\x96\xa4\x05\ -\x23\x8d\xe4\x05\x54\x2d\x4d\x73\x52\xd7\x6c\xcb\x52\xf8\xe0\x65\ -\x95\x37\x3b\x56\x7e\x12\xb4\xe2\x42\x7e\x92\x9c\xe7\x56\x0f\xdf\ -\xb0\x17\x3d\x2a\xa5\x79\xcc\x2a\x00\x31\x5c\x5c\x55\x9e\x7a\xe5\ -\x1a\xb4\xcb\x8c\x6e\x6b\x65\xd5\x66\xa4\xbe\x20\xa5\x85\x81\x6c\ -\xad\x1d\x02\x54\xd1\x65\x0f\x8c\x1e\x46\xdb\x0d\xa9\x5b\xd4\x10\ -\xaa\xc8\x0e\x18\x96\x73\xb1\x32\x6e\xb7\xfa\xe9\x14\x1b\x2e\x32\ -\x2a\x7a\x55\xa8\x9f\x99\x8a\x43\x15\x98\x3c\xb5\x3d\xd5\xad\xdd\ -\xc7\xab\x56\x1d\xf4\xce\x75\x7d\xbd\x27\x19\x3f\xac\x0c\xf7\x5c\ -\xf9\xc8\x79\xb1\x32\x02\x2b\x88\xa3\xd8\xc1\xe7\xda\xf4\x08\x3b\ -\x42\xa5\x42\xd7\xc7\xde\x85\x52\x87\x13\xb8\x91\x87\xfd\xe8\x42\ -\xd9\x08\x01\x3d\x67\xe6\xe4\x44\x21\x27\xfd\xea\x97\xaf\xf7\xfc\ -\xb0\x13\x0a\x1b\x29\x1a\x7a\xee\xa9\x34\xe6\x66\xc3\x8f\xd7\xd5\ -\x40\x81\x46\x75\xb3\xd9\x94\x4c\x42\xc7\x54\xc7\xe9\xaa\x0d\xcb\ -\x68\x7d\xdd\xb1\x2e\x49\x65\xee\x72\xbe\x21\xf9\x75\x83\x03\x2b\ -\x01\x23\xb3\x23\x37\xf6\x86\x12\x9c\x5b\xf4\x4c\x5f\x38\x17\x69\ -\x77\x16\x10\xfb\x45\x19\x3a\xd5\xe9\x69\x55\x41\x8e\xac\x60\x8f\ -\x14\x80\xc1\x9a\x75\xc0\xac\x19\x2c\xad\x1b\x42\xf2\xa4\xba\xf6\ -\x78\x52\x32\xa3\x17\x2a\x3c\x95\xc0\x8d\xe3\xc5\x20\xe4\x82\x41\ -\x33\x4c\xc2\xe9\x45\xa7\xa9\x48\xf5\x38\x8c\xe8\xa3\xa6\x97\x26\ -\xdf\xe2\x5c\x77\x9a\xea\x3a\xd6\xdb\x97\xb4\xd7\xf2\x82\x4a\x92\ -\x11\x49\xc6\x1e\xe8\x25\x10\x9b\xd3\x67\x06\xe3\x32\xf9\xfd\xed\ -\xbb\x75\xb7\xd1\x32\x4d\x93\xbf\xb9\xb8\xef\xf7\x45\x48\x19\x90\ -\x0d\x6f\x00\x69\x63\x3d\x88\x97\x59\x9a\xc0\x80\x83\xc6\x5f\xb3\ -\x02\x98\xad\x66\xe3\xcf\x30\xd0\x96\xf6\xa8\x98\x19\x2b\xb0\xc6\ -\x45\xdb\x65\x05\x6d\x27\xe5\xd5\xe3\x22\x4b\x0b\xa6\x9c\xec\x3f\ -\x24\xcb\xf3\xf7\x6a\x93\x2e\xe3\xc9\xa2\x4c\xe6\x74\x14\x2e\xed\ -\x2e\xfa\x2e\x37\x7b\x92\xdc\xd2\xee\xb3\xd7\x5f\xbb\x11\x95\x59\ -\x53\x0c\x85\xce\xc9\x86\x02\x43\x7f\x53\x4a\x74\xa1\xdd\x09\xde\ -\x54\x05\xcf\x68\xe7\x3e\xa0\x49\x53\x39\x94\x4c\x9e\x72\xd0\xeb\ -\x71\x92\xdc\x3a\xfa\xb9\xcb\x58\x5d\x81\x07\x4c\xfd\x9c\x95\xf4\ -\x8e\xc3\xb8\xdd\xe6\xfc\x90\x3c\xb0\x9a\x6d\x72\x7a\xa7\xdf\x2c\ -\x87\xcc\x07\xd1\x16\xd2\x4f\x6e\xb7\xd1\x36\x4e\x1d\xfd\x61\x76\ -\x63\x26\xc1\xed\xa7\x68\x72\x9a\x94\xbc\x7c\x84\x01\x75\x57\x4b\ -\xc1\xef\x69\xd2\x0d\xb6\xee\xb3\xed\xa6\xc4\x6d\x8f\x04\xcf\xf7\ -\x7b\xb9\x0a\x02\x12\x4a\x36\x8d\x94\x53\xd9\x3f\x9c\x95\x09\xe0\ -\x4f\x45\x2f\xd5\x1f\x39\x34\x86\x4c\x06\xef\x8c\xc0\x40\x13\x02\ -\xd2\x81\xdd\xe9\x54\xca\xb7\xdb\x9a\xca\xc4\xe9\x65\x63\xc4\x05\ -\x11\xf7\x54\xb4\x0e\xb4\x24\x90\xa0\xb9\x21\xe9\xbd\x02\xb4\xcc\ -\x12\x92\xc2\x58\x69\x72\xb8\x82\xcc\x1a\x4a\xc1\xea\xc1\x80\x1b\ -\x84\xfd\xd1\x17\x58\xea\x60\x76\x46\xc5\x70\xfc\x5d\x68\xa0\xad\ -\x4c\x6c\x79\xae\x1b\x86\xb1\x3f\x48\xf5\xac\x6e\x51\x89\xdd\x41\ -\x2a\xc0\xd8\xb7\x22\x2f\x8c\x70\xe8\x8d\x52\x30\xf6\xac\x28\x76\ -\xe3\xc0\x0f\x07\x2e\x2e\x2b\x22\xf7\x67\x35\xd7\x25\x9b\x60\x32\ -\x94\x7f\x56\x8e\xd0\xf2\xda\x4e\x8e\xff\xcf\x72\x0c\xd0\x0f\x79\ -\xa8\x49\x80\xe0\x1e\xe2\x06\xe1\x6b\xdc\xc2\xe4\x2c\xd0\x1e\x79\ -\x91\xe5\xa3\xbf\xd4\x2b\xd0\x2c\x01\x91\xa9\x65\x8f\xb3\x62\xa8\ -\x7c\xbd\x08\x8f\xb3\x69\x3c\x6d\x78\x09\xf1\x4b\x2e\x4c\x38\x77\ -\x1e\x88\x6c\x04\x55\xf3\xed\xbf\x23\x85\x2d\x3f\xf4\x17\xe1\x22\ -\xc2\x2f\x8e\xd4\x07\x84\x3d\x4b\x91\x26\x5c\xbc\x0e\x3b\x60\x30\ -\xa0\x14\xb8\x56\x1c\xbb\x41\xec\x5d\xc3\x26\xfe\x36\xb0\x01\x16\ -\x75\x1d\x35\xc5\x66\x8f\x7c\xcf\x0a\x87\xbb\xc8\x14\x18\xd7\xfb\ -\x36\x80\xf9\x80\x9c\xd7\xae\xda\x1f\x9e\x08\xfd\x8a\x7c\x17\x60\ -\x52\xf8\x5c\xc3\x24\xf8\x72\x4c\x24\x3d\x0e\xc7\x0c\x1c\xba\x89\ -\xfe\xeb\x00\x16\x84\x03\x95\x8a\x87\x71\x76\xf6\x78\x71\xb8\xa8\ -\xe9\xdf\x21\x74\x38\x9a\xf3\x3b\x2d\x39\xe8\x59\x39\x13\xd5\x70\ -\xef\x49\xb0\x6b\x45\x1a\x4f\x1c\x57\xc7\x3b\x05\x50\x77\xd7\x4a\ -\x9c\x1f\x5b\xb3\x2d\x29\x58\x7e\x4a\x6a\x52\xd6\x26\xec\xc8\xb6\ -\x77\x39\x95\x80\x98\xd9\x5d\x53\x12\x07\x1c\x0f\x70\x65\x9e\x09\ -\xda\x83\xac\x2b\xd5\xd9\x41\xd6\x15\x72\x8a\x6c\x5f\xc5\xee\xba\ -\xe3\x4e\x27\x39\x0e\x2d\x98\xc2\x8b\xc5\x6c\x90\xbb\x91\xe5\xc0\ -\x64\x0e\xf1\x0c\x65\x85\x15\x9c\x1d\x23\xf4\x52\x40\xd8\xea\x8a\ -\x02\x7f\xbf\xa4\x24\xa7\x3f\x39\x6a\xa6\x47\x6e\x14\x78\x30\x0e\ -\x31\xcc\x43\x2f\x88\x5f\x19\xeb\xa5\x84\xe0\xcb\xf1\xce\x32\x5c\ -\xb3\x04\x57\xa0\x2a\x5c\x8c\x51\xab\xb7\x52\x0e\xb0\x57\x30\x91\ -\x5f\x0d\xf6\x89\x70\xcf\x0a\xa6\x6a\x11\x59\x51\x14\x85\x4e\x80\ -\xdd\xb3\x52\xc0\xe0\x0e\x9e\x2a\xc6\x53\x00\xae\xb1\xeb\x2d\x6d\ -\x1d\xe5\x1a\xde\x00\xcc\x77\x3e\x7d\x86\x4f\xd8\xb7\x16\x2e\x5e\ -\x04\xde\x55\x3e\x99\xc1\x4b\x32\xca\x8c\x9f\xc5\xa9\xcb\x90\xbf\ -\x73\xea\x6b\x71\xca\xb7\x7c\xdf\xf7\x9c\x2f\xa1\x94\xf3\xa2\x94\ -\x0a\xe7\x94\xba\x88\xf7\xab\x31\xea\x3b\x9f\x9e\xcb\xa7\xcf\x1f\ -\x79\xa6\xf3\xc2\x43\x2a\x34\xfd\xe7\x70\xea\x6b\x9c\x7c\x97\x9c\ -\x5a\xda\xbb\xf5\xcd\x52\xfd\xe3\x62\x7d\xf3\x2f\x01\x81\xea\x10\ -\ -\x00\x00\x0c\x45\ +\x00\x55\x31\x78\x9c\xe5\x9c\xdd\x93\x9b\x36\x10\xc0\xdf\xef\xaf\ +\xa0\xe4\xa5\x9d\x46\x7c\x63\x30\xb1\x9d\x87\x64\x3a\xcd\x4c\xfb\ +\xd2\xa6\xed\x63\x46\x06\xd9\x47\x03\xc8\x23\xe4\xb3\x9d\xbf\xbe\ +\x12\x5f\x06\xc3\xb5\xc9\x48\xee\xe8\x6c\xcf\xdc\x04\xb4\x42\x48\ +\x3f\x76\xb5\xbb\x12\x61\xf1\xf6\x98\x67\xda\x13\x22\x65\x8a\x8b\ +\xa5\x6e\x1b\x96\xae\xa1\x22\xc6\x49\x5a\x6c\x97\xfa\x1f\x1f\x7f\ +\x02\xa1\xae\x95\x14\x16\x09\xcc\x70\x81\x96\x7a\x81\xf5\xb7\xab\ +\x87\xc5\x77\x00\x68\xef\x08\x82\x14\x25\xda\x21\xa5\x8f\xda\x87\ +\xe2\x73\x19\xc3\x1d\xd2\xbe\x7f\xa4\x74\x17\x99\xe6\xe1\x70\x30\ +\xd2\xa6\xd0\xc0\x64\x6b\xfe\xa0\x01\xb0\x7a\x78\x58\x94\x4f\xdb\ +\x07\x4d\xd3\xd8\x7d\x8b\x32\x4a\xe2\xa5\xde\x5c\xb0\xdb\x93\xac\ +\xaa\x98\xc4\x26\xca\x50\x8e\x0a\x5a\x9a\xb6\x61\x9b\xfa\xb9\x7a\ +\x7c\xae\x1e\xf3\xbb\xa7\x4f\x28\xc6\x79\x8e\x8b\xb2\xba\xb2\x28\ +\x5f\xf5\x2a\x93\x64\xd3\xd5\xe6\xbd\x39\xb8\x55\x25\x7b\x3e\x9f\ +\x9b\x96\x63\x3a\x0e\x60\x35\x40\x79\x2a\x28\x3c\x82\xe1\xa5\xac\ +\x8f\x53\x97\x3a\x96\x65\x99\x4c\x76\xae\xf9\x75\xb5\xa2\x92\x01\ +\xdd\xb1\xbf\xae\x7a\x5b\x60\x94\x78\x4f\x62\xb4\x61\xd7\x21\xa3\ +\x40\xd4\x7c\xff\xf1\x7d\x27\x04\x96\x91\xd0\xa4\xd7\x4c\xcb\x73\ +\x70\xd7\x01\xe4\x02\xe6\xa8\xdc\xc1\x18\x95\x66\x5b\x5e\x5d\x7f\ +\x48\x13\xfa\xb8\xd4\x5d\xcf\xb0\x5d\xf6\xf3\xab\xc2\x47\x94\x6e\ +\x1f\xe9\x65\x69\x9a\x2c\x75\xd6\x7b\x67\x1e\xd6\xe7\x3d\xe5\xb0\ +\xeb\x0a\x4d\xc3\x51\x27\xb1\x8c\xb9\x63\xd8\x1a\xb1\x7d\x37\xa8\ +\xeb\xb4\x43\x88\x12\x1c\xf3\x3e\xb1\x26\x51\x9e\xc2\x3d\xc5\x39\ +\x7b\x6a\x71\x9c\xc1\xb2\x4c\x37\x69\xcc\x4e\x70\xb1\xcb\xf6\xdb\ +\xb4\xf8\xc4\x1a\xa5\x14\x91\x4f\xe5\x23\x3e\x7c\x22\xb0\x64\xc7\ +\x46\x8b\xb1\xbb\x27\x3a\xee\x30\xa1\xe0\x98\xec\x18\xcc\x59\x30\ +\x29\x3c\xb5\xc2\x15\x93\x2e\x12\xb4\x29\x79\xad\x7a\x64\xfc\x8c\ +\x0d\x2d\xd0\x35\xb3\x92\x76\x1d\xe5\xbd\x4c\x9e\x52\x74\x38\xd7\ +\x5d\xc3\xb2\xa6\xa7\x69\x3b\xb8\x65\x9a\x96\x61\xb2\xd4\x5f\x6d\ +\xaa\x5f\x23\x58\x63\x92\x20\xd2\x8a\x66\xd5\x6f\x20\xc2\xec\x69\ +\xa4\xf4\x54\xdb\x56\xd3\x76\xdb\x5f\xde\x6a\x27\xb7\xa6\xe5\xe5\ +\x23\x4c\xf0\x61\xa9\x3b\x97\xc2\x2f\x18\xe7\x4b\xdd\x37\xfc\x79\ +\x38\xb7\xec\x4b\x69\x7c\x5c\xea\xc0\x0e\x0c\xd7\xf5\xac\xae\x47\ +\x67\x29\xef\x0f\x7b\x9e\x76\xe8\x05\xa3\x86\xe3\x3d\x21\xcc\xf8\ +\x40\x06\x4f\x88\x0d\xaa\xfa\xa7\x6d\x9f\x3f\x9b\x2d\xe1\x70\x28\ +\xd9\xa3\xcb\x2b\xb9\x04\xac\xd7\xf8\x38\x2d\x66\xba\xb0\xe7\x66\ +\x0d\xf6\x45\x4a\x99\xe9\xec\x8e\xfd\x56\xf7\x69\x82\xca\xe9\x0b\ +\x0f\x69\xc1\x18\x80\x46\x89\x6d\x77\x3c\xa0\xa6\x46\xab\xd1\x81\ +\x15\x3e\x53\x83\x75\x6d\x84\xb9\x11\x9d\x9e\x17\xe5\xf0\x98\xe6\ +\xe9\x17\xc4\xc6\x3d\x22\x5d\x16\x70\x07\xb6\x19\x5e\xc3\xac\xe9\ +\xfd\xaa\xaa\xb1\x18\x60\xa9\x2f\xd2\x34\x7a\xe2\xe6\x7b\x3c\xf1\ +\x32\xbd\x2d\xe4\x3c\x79\x81\x1b\xcc\xfc\xae\x10\x93\x94\x59\x45\ +\xaf\xbf\x6d\xd1\xa9\x5f\xc4\x8d\x9d\xcd\xd5\xc7\x4a\xbf\x2a\xed\ +\x0b\x2e\x65\xa7\xbe\xac\x51\x7b\x73\xac\xf7\x55\x79\x8e\x28\x4c\ +\x20\x85\x67\x23\x68\x4b\x9c\xf9\xdc\x6a\x47\xc6\xe6\xcd\xe8\xb7\ +\xf7\x3f\xad\x9a\x1b\x2d\xe2\x38\xfa\x0b\x93\xcf\xed\x7d\x35\x8d\ +\x57\x80\x6b\xbc\x67\x8f\x42\x5f\x75\xc5\x8b\x24\x8e\xd8\x4c\xc7\ +\x66\x80\x55\x9a\x33\xd5\xe6\x93\xe4\x8f\x6c\x66\x5b\x98\x67\xc1\ +\xa0\x32\x87\x75\x6e\xb4\x6e\x96\xa0\x7a\xca\x9c\xf4\x1b\x49\x9c\ +\xa7\xfc\x22\xf3\x77\x9a\x66\xd9\x07\x7e\x93\x66\xc4\xbd\x46\x53\ +\x9a\xa1\x73\xe1\xc2\x6c\x7a\xdf\x8c\xcd\xec\x0d\x6e\x61\xb6\xa3\ +\xaf\xce\xb6\x67\x2a\x03\xa3\xe8\x1e\x74\x06\xd7\x88\x29\xc1\x2f\ +\x5c\xa8\x8d\xa4\x5b\x82\xf7\xbb\x1c\x27\xa8\xb9\xbc\xa3\x89\x62\ +\xda\x3d\x32\x7a\xca\x98\x7c\xc3\x7a\x1f\xbd\xb2\xac\x38\xde\x6c\ +\xde\xf0\x13\xd0\x4c\x13\x91\x5d\x9f\x92\x7d\xc6\xa6\xbb\x27\x54\ +\xe0\x24\x79\x53\x52\x82\x3f\xa3\xa8\x99\x98\x9a\xd3\xda\x5a\x22\ +\xab\x3d\x65\x60\x10\xc9\x98\x16\xd3\xc8\x6b\xcb\x12\xc8\x66\x17\ +\x42\xe0\x29\x2a\x98\x73\x6f\x4b\xbb\x5b\x0d\xf4\x93\xf7\xd2\x0f\ +\xdd\x79\x57\xd8\x58\xa3\x67\x38\x95\x6a\x9d\x05\xad\x11\x8e\x25\ +\x03\x65\x3e\x4d\xd5\x20\x83\x2a\xa4\x52\x5d\xcf\xe1\x3f\xb7\x7b\ +\x90\xff\x06\x0c\xc2\xc4\x53\x0c\x18\xb0\x05\x91\x8d\x0b\xaf\x82\ +\xce\xf3\x7c\x5f\x39\x74\xc0\x12\x84\x67\x3b\x46\x78\x4d\x6e\x9b\ +\x8d\x03\x1d\xa8\x1c\x37\x57\x14\x5b\x50\x7b\x8c\x7b\x64\x07\x42\ +\xe0\x0b\xe2\x73\x7c\x63\x76\x8f\xe4\x2c\x20\xaa\x78\xce\xdc\x08\ +\x87\x51\xcc\xfd\xf8\x09\xe0\x5d\xc3\x53\x58\xd2\xa0\xb1\xe9\xc0\ +\x52\x0f\x5a\x28\xec\x60\x43\xc3\xe7\xe9\xaf\x1b\x5e\x07\x9b\xa2\ +\x8e\x15\x04\x82\xd8\x2e\x5d\xab\x2c\x62\x9b\xcd\x7c\xae\x20\x31\ +\x17\xcc\x44\x81\x4d\x39\xd5\x1b\xa7\x06\x02\xe0\x08\x62\x73\x6c\ +\xa3\x32\x4f\xef\x9e\xb0\xb1\x18\x04\x88\xe6\x5a\x97\x51\x88\xbc\ +\x29\x4d\xc1\xbc\x14\x84\x82\xb4\x06\x99\xe9\x60\x6e\xbb\xcd\x60\ +\x23\x14\x05\x36\x19\x6d\x48\x05\xa7\xaa\xe7\x14\x76\x04\x17\x9e\ +\x53\x22\xb4\xd0\xe2\x3f\xe5\xa0\xb9\xc2\x5e\x60\xd2\x79\xde\x3e\ +\x38\xe6\x3f\x85\x53\xaa\x29\xff\x79\x07\xe4\xb8\x0b\x15\x9d\xe3\ +\x2e\x5d\xe8\x1d\x60\x63\x39\xbc\x70\x6a\x30\x99\xc5\x4b\x75\x0d\ +\x2a\x46\x20\x96\x70\x02\x3f\x88\x41\xc6\x69\xe9\x6d\x06\x22\x9e\ +\xb0\x6f\x98\x8c\x44\xe4\xe3\x53\x76\xfd\x43\x78\xbd\x72\x72\x05\ +\x44\x3e\x40\x55\xe3\xb9\x40\x38\xd5\xba\x8c\xe8\x64\xb3\x4b\x3c\ +\x25\x9d\x85\x0b\x66\xd7\x09\xec\xee\x84\x1f\x5f\x1d\x11\x77\xb6\ +\x53\xf1\xdd\xbd\x00\xe4\xd1\x8a\x23\xbc\x02\x3c\x19\xaf\xc8\x46\ +\xc8\xdd\x87\x7a\x08\x2d\xd1\xf4\x62\x10\xb3\x8c\x75\xf1\x16\x99\ +\xd9\xc2\x2b\x00\x93\x11\xcb\xbd\xc0\x0b\x85\xa7\xbc\xc9\x78\x45\ +\x36\x3e\xcb\x62\x37\x50\x0f\x1f\x9b\xef\x84\x77\x6e\xa6\x5c\xae\ +\x7c\x7c\x9e\x07\x15\xdc\xa3\x0e\xc4\x77\xf7\xa7\x1c\xae\x6c\x7c\ +\x61\xc0\xb2\x35\xa4\x1e\xbe\x6a\x79\xe0\x2a\xbb\xfc\xb2\x09\xf2\ +\x6c\x43\xbd\xe9\x4f\x7c\xdf\x75\xb8\x51\x31\x32\xe5\x5b\x84\xd6\ +\x64\xb9\x57\x49\x73\xef\x85\x20\x4f\x73\x45\xd7\xa7\x46\x1b\x17\ +\x92\xd9\x29\xeb\x72\x67\xc2\x4e\x63\x7a\xff\x42\x32\x3f\x07\x06\ +\x1b\xf5\xd6\x45\x9b\xdd\x6c\xf1\x8d\x8c\xcb\xc5\x78\xc9\xf4\x54\ +\x76\xb9\x8e\xf0\x9b\xb0\xd3\x6b\xf2\x92\x11\xae\xe3\xc4\xf5\x55\ +\x54\x40\xf1\xb7\xc4\xa6\x53\xb6\x11\xd4\x1b\xe5\xc7\xcc\xf7\x3a\ +\x49\xdb\x9d\x00\xb4\x98\x0b\x91\xfd\xda\x80\x6c\x76\xca\x7a\x5f\ +\xe7\x3a\xde\x57\x3e\x3f\x55\x33\x5e\x57\x38\xf2\x9b\xce\x79\x25\ +\x03\x54\x39\x7c\x91\xff\x9f\x02\x64\xd3\x0b\x43\x08\xd5\x4b\x3c\ +\x2c\xe0\x09\xbb\xde\xe1\x12\x73\x1f\xe3\x2d\x12\xab\x76\xc4\x85\ +\xbd\xed\x74\xb8\x72\xfb\xec\xaa\xdd\x5c\xe1\x54\x63\xe4\x6a\xe5\ +\x81\x53\xd6\xcb\xce\x24\x24\x19\xd3\x7e\x56\x26\x3c\x55\x5d\x2c\ +\xb3\xd8\xeb\xec\xe4\x4a\xa4\xa7\xb2\x7f\xe5\x9e\x42\x38\xc5\xbd\ +\xf4\xb0\x12\xa7\x3b\xa5\xd7\x06\xec\xeb\xec\x80\x7f\x3b\xbf\x1d\ +\xa4\x8f\x53\xfc\x7a\x63\xe2\x46\x5c\xbd\x4b\x30\x60\xe3\xd4\x9f\ +\x20\x71\xbd\x0e\x48\x96\x16\x28\x86\xbb\x68\xbd\xa7\xb4\x5f\xf6\ +\x37\x4e\x8b\xa8\x22\x28\x03\x27\xa3\xf9\xab\x66\xbd\xb6\xb4\x3f\ +\xb5\xf6\x33\x28\xee\x80\x35\x1f\x91\x33\x9f\x9f\x39\x9c\xbf\x93\ +\x81\x0b\xd6\x43\x8a\x09\x88\xf7\xe4\x09\xd2\x3d\x41\x83\x2f\x33\ +\x74\x5f\x58\xc0\x09\xe2\x1f\x25\x28\x97\x7a\x1c\xbf\x74\x54\x1d\ +\xa4\xd7\xdd\x91\xf6\xb3\x66\x4d\x21\x0b\xd5\x41\x66\x1b\xec\x09\ +\x5a\x8e\x1f\xee\x8e\xdf\xce\xec\x19\x12\xdd\x37\x35\x5e\x3b\xa1\ +\x11\x6a\xef\x34\xd7\x70\xea\xc3\xd1\xc1\x88\x8e\x1b\x04\x7d\x5f\ +\xfb\x5f\x7c\xa4\xe8\x8c\x1d\xf8\x9e\xed\xfb\xd2\x08\xe4\x9a\x5f\ +\x7b\x2b\xae\x0b\xbe\xe1\x68\x31\xb3\x23\xd0\x4c\x2e\xc1\x73\xc7\ +\x63\x14\xa1\xf7\xe2\x41\xd8\x96\xd1\xa8\x82\x20\x08\xf0\xf5\x36\ +\xa3\x28\x8a\x36\x84\x11\xd6\x89\xde\x2b\x99\x2f\x15\xc5\x4c\x96\ +\x56\xbc\x78\x03\x71\x1d\x61\x06\xee\x4b\x67\x60\xcf\x84\x19\x7c\ +\x7d\x10\xa2\xa2\xcb\xcc\xfb\x2e\xd3\x35\xbc\x7a\xd0\xb1\xd6\xc6\ +\x33\x2e\x8b\xc2\x9e\x39\x7e\xc6\x81\xf6\xde\x3d\x7e\xe9\x40\xec\ +\xb0\x8d\xa6\x84\x80\xd8\x2f\x1a\x48\x3f\xa8\xe2\x2b\x30\x4d\x50\ +\x55\x1d\x8e\x0e\x9e\x43\xf0\x7f\x4e\x14\xd7\xd5\x89\xa0\xb6\x11\ +\x51\x23\xf1\x6e\x06\x48\x37\x58\x31\x20\xdf\x1a\x59\x2c\xcc\xed\ +\xea\x61\xc1\xbf\x56\xb7\x7a\xf8\x07\x3d\x1f\xd6\xd0\ +\x00\x00\x0a\x5a\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -19911,300 +10556,133 @@ \x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ \x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ \x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x6f\x76\x65\x5f\ -\x75\x70\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ -\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ -\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ -\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ -\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ -\x22\x2d\x32\x39\x2e\x32\x37\x34\x38\x32\x36\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\ -\x31\x2e\x31\x35\x36\x39\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ -\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ -\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ -\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ -\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ -\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ -\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\ -\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ -\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ -\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ -\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ -\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ -\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ -\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ -\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ -\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ -\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ -\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ -\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ -\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ -\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ -\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ -\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ -\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ -\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ -\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\ -\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\ -\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\ -\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ -\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\ -\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ -\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\ -\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\ -\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\ -\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\ -\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\ -\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\ -\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\ -\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\ -\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\ -\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\ -\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\ -\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\ -\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\ -\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\ -\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\ -\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6e\x65\x77\x5f\x66\ +\x69\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x2d\x34\x36\x2e\x36\x38\x35\x31\x38\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x36\x2e\x31\x38\x33\x33\x38\x38\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ +\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ +\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x66\x32\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x33\x30\x36\x33\x39\x34\x35\x38\x70\ +\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x33\x33\x33\x33\ +\x33\x33\x33\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\x48\x20\ +\x33\x32\x20\x56\x20\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x48\ +\x20\x35\x2e\x33\x33\x33\x33\x33\x33\x33\x20\x5a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\ +\x38\x2d\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\ \x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\ \x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\ \x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\ -\x3a\x23\x30\x30\x30\x30\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x3a\x23\x66\x66\x66\x66\x31\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ \x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ \x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\x61\ -\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\ -\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ -\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x31\x35\x2e\x38\x31\x34\x32\x31\x37\x2c\x35\x32\ -\x2e\x39\x35\x36\x39\x39\x36\x20\x32\x2e\x36\x33\x33\x34\x37\x34\ -\x2c\x2d\x30\x2e\x30\x35\x32\x34\x39\x20\x30\x2e\x38\x30\x34\x31\ -\x31\x37\x2c\x30\x2e\x30\x34\x31\x36\x31\x20\x4c\x20\x31\x39\x2e\ -\x32\x2c\x32\x30\x2e\x32\x36\x36\x36\x36\x37\x20\x6c\x20\x34\x2e\ -\x31\x32\x35\x31\x30\x39\x2c\x2d\x30\x2e\x30\x31\x33\x31\x20\x2d\ -\x35\x2e\x39\x33\x32\x38\x34\x36\x2c\x2d\x31\x35\x2e\x33\x30\x31\ -\x37\x35\x30\x34\x20\x2d\x35\x2e\x37\x35\x34\x39\x36\x32\x2c\x31\ -\x35\x2e\x33\x33\x38\x37\x36\x35\x34\x20\x34\x2e\x31\x32\x35\x31\ -\x30\x39\x2c\x2d\x30\x2e\x30\x31\x33\x31\x20\x7a\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\ -\x33\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ -\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\ -\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ -\x76\x67\x3e\x0a\ -\x00\x00\x08\x5d\ -\x00\ -\x00\x5c\xbe\x78\x9c\xe5\x5c\x59\x8f\xe3\xb8\x11\x7e\xef\x5f\xa1\ -\x68\x10\xec\x0e\xd2\xba\xa8\x5b\x6d\x7b\x81\x64\xb0\xc0\x22\x9b\ -\x97\xec\x06\x79\x5c\xb0\x25\xda\x2d\x8c\x0e\x83\xa2\xdb\xf6\xfc\ -\xfa\x14\x75\xdb\x6d\x6a\x73\x34\xa7\xd3\x1c\x0f\x66\x7a\x54\x55\ -\xbc\xbe\x2a\x92\x9f\x4b\x6c\xae\x7e\x38\x95\x85\xf6\x4c\x68\x93\ -\xd7\xd5\x5a\x77\x4c\x5b\xd7\x48\x95\xd6\x59\x5e\xed\xd6\xfa\x3f\ -\x7e\xfd\xd1\x88\x74\xad\x61\xb8\xca\x70\x51\x57\x64\xad\x57\xb5\ -\xfe\xc3\xe6\x6e\xf5\x07\xc3\xd0\xfe\x42\x09\x66\x24\xd3\x8e\x39\ -\x7b\xd2\x7e\xaa\x3e\x37\x29\xde\x13\xed\xfb\x27\xc6\xf6\x89\x65\ -\x1d\x8f\x47\x33\xef\x85\x66\x4d\x77\xd6\x47\xcd\x30\x36\x77\x77\ -\xab\xe6\x79\x77\xa7\x69\x1a\xb4\x5b\x35\x49\x96\xae\xf5\xbe\xc0\ -\xfe\x40\x8b\xd6\x30\x4b\x2d\x52\x90\x92\x54\xac\xb1\x1c\xd3\xb1\ -\xf4\xc9\x3c\x9d\xcc\x53\xde\x7a\xfe\x4c\xd2\xba\x2c\xeb\xaa\x69\ -\x4b\x56\xcd\x87\x99\x31\xcd\xb6\xa3\x35\xef\xcd\xd1\x6d\x8d\x9c\ -\x38\x8e\x2d\x1b\x59\x08\x19\x60\x61\x34\xe7\x8a\xe1\x93\x71\x59\ -\x14\xfa\x78\xab\x28\xb2\x6d\xdb\x02\xdd\x64\xf9\xef\x59\x25\x0d\ -\x00\xba\x87\xbf\xa3\xf9\x20\x30\x9b\xfa\x40\x53\xb2\x85\x72\xc4\ -\xac\x08\xb3\x3e\xfd\xfa\x69\x54\x1a\xb6\x99\xb1\x6c\x56\xcd\x80\ -\xe7\x45\xab\x17\x20\x57\xb8\x24\xcd\x1e\xa7\xa4\xb1\x06\x79\x5b\ -\xfe\x98\x67\xec\x69\xad\xbb\x9e\xe9\xb8\xf0\xf1\x5b\xe1\x13\xc9\ -\x77\x4f\xec\x5a\x9a\x67\x6b\x1d\x7a\x8f\xe2\xa8\x7b\x9e\x05\x87\ -\xd3\x19\xf4\x15\x27\xa3\xc6\x36\x63\x64\x3a\x1a\x75\x7c\x37\xec\ -\x6c\x86\x21\x24\x59\x9d\xf2\x3e\x41\x95\xa4\xcc\xf1\x81\xd5\x25\ -\x78\x2d\x4d\x0b\xdc\x34\xf9\x36\x4f\xe1\xa1\xae\xf6\xc5\x61\x97\ -\x57\xbf\x7d\x2e\x8b\xdf\x70\x96\x99\x03\x74\x63\x3b\xe4\xb4\xaf\ -\x29\x33\x4e\xd9\x1e\x00\x0c\xc2\x9b\xca\xf3\xa0\xdc\x80\x76\x95\ -\x91\x6d\xc3\xad\xba\xd1\xf0\x27\x18\x4e\xa8\x6b\x56\xab\x1d\x3b\ -\xc7\x7b\x96\x3d\xe7\xe4\x38\xd9\x3e\xe2\xa6\x43\x4c\xd3\xf6\x78\ -\x07\xd1\x55\xd4\x74\xad\x7f\xd8\xb6\x9f\x5e\xf1\x58\xd3\x8c\xd0\ -\x41\x15\xb4\x9f\x0b\x55\x0d\x1e\xc8\xd9\xb9\x9b\x4f\x7d\xdd\x43\ -\x7f\x79\xad\xa3\xde\xbe\xad\x6f\x9e\x70\x56\x1f\xd7\x3a\xba\x56\ -\x7e\xa9\xeb\x12\xfc\x65\xc6\x7e\x6c\x23\x3b\xbe\x56\xa7\xa7\xb5\ -\x6e\x38\x1e\xb4\xea\xc2\xbf\x2f\xb4\xd0\xa0\x17\x9a\x76\x80\xe2\ -\xde\xd5\x73\xe5\x81\x52\x98\x71\x46\x81\xcf\x04\x46\xd5\xfe\x18\ -\x6a\x68\x9e\xea\xe3\x8e\x72\x74\x18\x3d\x90\xeb\x92\x5c\x63\x3c\ -\x3e\xd6\xa7\xdb\x6a\x08\x80\x03\x9f\xcb\xc6\xa1\xca\x19\xcc\x97\ -\xfd\x69\x5e\xeb\x21\xcf\x08\x08\xb7\xb8\x68\x5e\x94\x3c\xe6\x15\ -\xa0\x60\xf4\xa1\xeb\xb8\x23\xc8\xd7\x16\x43\x1c\x87\x76\x24\xb0\ -\x80\xbe\xbd\x00\xba\x57\x9d\xc5\xaa\x12\x9f\xf2\x32\xff\x42\x60\ -\xe0\x4e\x1b\x57\x10\x3b\x17\xc3\xee\x8a\x69\x1a\x3b\xf3\x39\x79\ -\x3a\x73\x99\x3e\x08\x39\x5e\x5c\xe0\x86\x81\x3f\x0a\x6b\x9a\x43\ -\xa8\xcf\xba\x33\x88\xce\x73\x11\x9f\xc1\xb0\x00\x9f\xda\x00\x6a\ -\xc3\x2b\xbc\xd6\x9d\xe7\xba\x3e\xae\xad\x97\x81\xdd\xca\x4b\xc2\ -\x70\x86\x19\x9e\xa2\x7c\x90\xa0\x38\xb6\x87\x91\xc1\x62\x98\xfc\ -\xfd\xd3\x8f\x9b\xbe\xa1\x55\x9a\x26\xff\xac\xe9\xe7\xa1\x5d\x4d\ -\xe3\x06\xf8\xb1\x3e\x00\xd2\xfa\x66\x14\xaf\xb2\x34\x81\xe5\x0b\ -\xa6\xf5\x26\x2f\x21\x76\xf9\xca\xf7\x27\x58\xae\x56\xd6\xa4\xb8\ -\x30\xe6\x60\x4d\x95\x76\xd5\x52\xd2\xad\x83\x37\x37\x83\x2c\x2d\ -\x73\x5e\xc8\xfa\x85\xe5\x45\xf1\x13\x6f\xa4\x1f\xf1\xac\xd2\x9c\ -\x15\x64\x12\xae\xac\xbe\xf7\xfd\xd8\xac\xd9\xe0\x56\xd6\x30\xfa\ -\xf6\x69\x37\xa1\x72\x11\xf4\xa3\xa3\x0b\xfc\x48\x8a\xb5\xfe\x33\ -\x57\x6a\x2f\xb4\x3b\x5a\x1f\xf6\x65\x9d\x91\xbe\xf8\x80\xe6\xee\ -\x22\x0c\xbc\xd0\x46\xa3\x07\x19\xc5\x55\xc3\x91\x01\x3f\x60\x46\ -\xf3\xd3\xf7\x8e\x09\x7b\x46\x18\x7a\xd1\xbd\x6d\xa2\xc8\x0b\x42\ -\xe4\x85\xf7\xb0\xfa\xfb\x0e\x8a\x1d\x58\xb8\x40\x0c\x7e\xf6\x5c\ -\xcf\x8f\xef\x23\x64\xda\x20\x0c\xd1\xbd\x8b\x4c\xb0\x0b\x1d\xff\ -\xe3\xe8\x8e\x15\x25\x29\x9b\x79\xac\x8d\x12\x0f\xf1\x8f\xab\xcf\ -\xe4\x17\x01\xa8\x69\x67\xbe\x6c\xb4\x6d\x04\x41\x3c\x93\xf3\xe5\ -\x24\xb4\x4d\x0f\x36\xb4\x59\xff\xa7\x8d\xc3\x33\xd1\x8b\x32\xfd\ -\x74\xbd\xa5\xe2\x50\xf0\x0e\xfa\x91\x3b\x17\x37\xec\x5c\x00\x7c\ -\x5b\x70\x6e\xf2\xc1\xb6\xd3\x74\xbb\x7d\xe0\x0f\x46\xbf\x4c\x26\ -\x4e\xf7\x48\x0f\x05\x2c\xf7\xcf\xa4\xaa\xb3\xec\xa1\x61\xb4\xfe\ -\x4c\x92\x7e\x61\xee\x1f\xbb\xb5\x22\xb1\x87\x47\x88\x1b\x42\x0b\ -\x98\xc3\x2c\xf1\x06\x59\x86\x61\x75\xa5\x14\x9f\x93\x0a\x08\xcd\ -\x20\x1d\x9b\x9a\x45\x96\x04\x30\x83\xa0\xdb\x69\xe3\xd7\x05\xd3\ -\x70\xc4\x70\x62\x9c\x79\xca\xc2\xe9\x98\xd1\xb5\xfc\x55\xe0\x34\ -\x22\x31\xa0\x41\x10\xd9\xaa\x02\xea\x87\x66\x20\x61\xb2\x03\xa0\ -\xb6\x18\x50\xcf\xf3\x7d\x65\x01\x75\x4d\x3e\xdf\xdd\x57\x07\xd4\ -\x15\xe1\xb9\xdd\x22\x8c\xb0\xaa\x78\x7a\x71\x4f\x7a\x5e\x3d\x40\ -\xc3\x6f\x14\x50\xcf\x8c\xf8\x8c\x77\x5f\x7f\x09\x35\xfc\x6f\x14\ -\x52\x20\x6e\xed\xa4\x7f\xfd\x45\xd4\x50\x7d\xda\x7b\x66\x3c\x65\ -\x22\x26\x48\xa5\xf1\x26\xc3\x53\x9c\x39\x89\x00\x95\xc7\x9c\x96\ -\xc8\xa8\x12\xdc\x49\x00\xa9\x44\xee\x24\xde\x9c\x14\x61\x4f\x22\ -\x48\xa5\xb1\x27\x23\x10\x2f\xa4\x71\xac\x2e\xa2\x12\xf9\x93\x81\ -\xbe\x51\x48\x65\x32\x28\x43\x98\x28\x51\x03\x54\xd4\xed\xeb\x1e\ -\xba\x02\x55\x52\xd6\x69\xe9\x7b\xbd\x0a\x79\x27\x11\x9c\xf2\xf8\ -\x53\xb4\x80\xa8\x0a\x04\x4a\x88\xa8\x44\x02\xb5\x90\x1c\x55\x81\ -\x40\x89\x20\x95\x49\xa0\x84\xdb\xbd\x1a\x04\x4a\x08\xa9\x3c\x02\ -\x25\xdc\xed\xdb\xcd\x50\xd9\x20\x95\x49\xa0\x84\x5f\xee\x15\x87\ -\x54\x2a\x81\x12\xee\x4f\x8a\x83\x2a\x33\x09\x25\xfe\x3e\xaa\x06\ -\xa8\x41\x47\x3e\xed\xe0\x0a\x54\x59\xac\xd4\x5e\x4a\x43\xa9\xc0\ -\x4b\x45\x80\x4a\xcc\xeb\x89\x37\x28\x35\x88\xa9\x10\x52\x99\x99\ -\x3d\x71\x4a\x5f\x0d\x6a\x2a\x02\x55\x6a\x6e\x6f\x89\xef\xab\x40\ -\x4e\x85\xa0\x4a\xcc\xee\x89\x67\x7f\xe6\xa9\xbc\x43\x49\xcd\xef\ -\x89\xb7\x7d\xc5\x41\x95\x9b\xe1\x13\x9f\x8d\x50\x1c\x56\xa9\x14\ -\x15\x89\xdf\x43\x29\x01\xeb\x57\xe7\xa8\xc2\x6f\xa7\x7c\xe3\x57\ -\x16\x4e\x79\x0c\x55\x98\x92\x52\x1b\x4f\x89\xf4\x54\xb8\x3d\x29\ -\x8d\xa8\x4c\x6e\x2a\x4c\x9e\xa8\x8d\xa8\xc4\xac\xe9\xc2\x9b\x7c\ -\xd7\x7d\xf7\x5f\xa0\xde\x82\x96\x2e\x7c\x25\xf5\x3c\xfc\xde\x8f\ -\x44\xbd\x0d\x27\x15\xee\xf5\x08\x87\xdb\x77\x9f\x8e\x7a\x1b\x42\ -\x1a\x8a\xd3\xfb\x21\xc6\x19\x79\xe7\xa0\x7e\xed\x37\xf9\x0b\x87\ -\xa2\x78\xd2\xe4\xdd\x6f\x4e\x5f\xff\x55\xbe\x27\xa6\xa4\x6a\x23\ -\x2a\x37\x63\x2a\xdc\x9f\x94\x06\x55\x6e\xc6\x54\xf8\xba\x44\x6d\ -\x4c\x65\x26\x4c\x17\x68\x94\x02\xc4\xf4\x2d\x5e\xe7\xa3\xe5\x53\ -\x27\xef\x9e\x9a\xbe\xcd\xfb\xfc\x58\x71\x72\xfa\x36\x2f\xf4\x91\ -\x38\x09\xad\x04\x3b\x1d\x0e\xef\xba\x57\xa8\xca\x3c\x18\x29\x4e\ -\x40\x3f\xa6\x99\xeb\xbf\xf7\x40\x15\x42\x2a\xf3\x64\xa4\x98\xf4\ -\x2b\x8d\xa9\xd4\xa3\x91\xe2\x6d\x4a\x6d\x4c\x25\x66\xf9\x14\x67\ -\x53\x22\x48\xa5\x1e\x8e\x5c\x3a\x23\xa5\x00\x9b\x12\x62\x2a\xf7\ -\x74\xa4\x38\x52\x95\x60\x53\xc3\xef\xe8\x86\x57\xa8\x4a\x3c\xc9\ -\x27\xde\xf6\xa3\x08\xe3\x77\xff\xe5\x54\x84\xa8\xd4\xa3\x7c\x0b\ -\x07\x4e\x95\xc6\x54\x6e\x66\x6a\x81\xf3\xab\x8c\xaa\xe4\xc3\x7c\ -\x0b\xc7\xf8\x95\x46\x55\xea\x69\xbe\xa5\xfb\x63\x54\x20\x54\x02\ -\x50\x25\x1f\xe7\x5b\xfe\xbd\xf2\xf7\x4f\xa9\x44\xa8\xca\x3e\xcf\ -\x27\x8e\x56\xa5\x49\x95\xf4\x03\x7d\x0b\xd4\xea\xff\x25\x49\xb5\ -\xb2\x76\xc3\x7d\x8a\x33\x78\x6f\x5c\xf9\x77\x6f\xf3\x1b\xfe\x60\ -\x23\x8a\x62\xe4\xc1\x93\x19\xc6\xb1\x8b\xe2\x98\x2b\xec\x8f\xe3\ -\x38\xb9\x5b\x62\x33\x02\x55\xe0\x4f\x78\x73\xa7\x04\x66\xe0\x04\ -\x91\x1b\x4d\x04\xbe\xff\x2d\xf5\x20\x8c\xe2\x60\x5a\x86\xdb\x5b\ -\x24\x23\x2f\x70\x62\x7b\x32\x1d\xdc\x12\xf8\xa6\x1b\x45\x8e\x3d\ -\x55\xdd\x3b\xc5\xf7\x4d\x1f\xaa\xf7\xa6\x95\x67\x70\x89\x1b\x86\ -\x93\x1b\x2e\x9c\x40\x02\xfe\xe7\xd2\x09\x30\x44\xc7\xb3\x63\x37\ -\x0e\xfe\x43\x6f\xf8\x40\xd0\x5d\x3b\xb4\x3d\xff\x7f\x71\xcb\xd8\ -\xf9\xa5\xbb\x64\x6f\x19\x8c\xf7\xc9\x8e\x8e\x65\xe4\x34\xfa\xf3\ -\x54\x16\x49\x7b\xcd\xee\x5a\xdf\x53\xd2\x10\xfa\x4c\x5e\x40\x52\ -\x57\xcc\x68\xff\x0f\x5d\xa3\x25\x2e\x1e\x5a\xc9\xb1\x05\x3e\x79\ -\xac\x8b\xac\x13\x34\xf9\x17\x92\x38\xa8\x5b\x91\x6c\x27\xde\x9f\ -\x1e\x8a\xbc\x22\xfd\xa5\xa6\x89\xfd\xc7\xce\x6c\x8b\xcb\xbc\x38\ -\x27\x0d\xc4\x91\x01\xed\xe5\xdb\x07\x63\xe8\xb2\xd1\xd5\xb3\x27\ -\xe9\x78\xa3\x6e\xf2\xdd\x2f\x60\xa8\xfd\x19\x5a\xf9\xee\xa1\x20\ -\x0c\x80\x33\xfa\x8b\x43\x13\x1b\x5a\x38\xd6\x34\xbb\x10\x0c\xab\ -\xfe\xad\x83\xb1\x4b\x5e\x1a\xef\x20\x45\x62\xec\xbb\x6b\x4c\x63\ -\x3f\xf0\x23\x6f\x1e\xab\x08\x99\x21\xf2\x90\xeb\x5d\x84\x18\x87\ -\xd9\x0d\x63\x5f\xdf\xac\x18\xf4\xb0\x9a\x4d\xf8\xe1\x76\x53\x5a\ -\x73\x80\x39\x4a\x57\x2b\x46\x5b\x00\x0a\x5f\x2d\x4c\x2f\x5b\x17\ -\xb4\xff\x7b\xce\x7b\xc6\x34\xc7\x15\xfb\x1d\x87\x32\x4a\x58\xfa\ -\x74\x61\xd4\x39\xb9\x67\x48\xae\x8d\xae\x9c\xec\x98\xc8\xff\xef\ -\xdc\x3c\x19\xde\xf7\xde\x9e\x77\xd4\x28\xf2\x1d\x66\x07\x88\xd0\ -\x5b\xc3\x30\xa0\xd6\xdb\x8a\xea\x50\x42\x95\xe9\x85\x6e\x4b\xda\ -\x9a\xa0\x31\xc6\x20\x6a\xc6\x82\xdc\x5f\x06\x86\x86\xaa\xa4\x61\ -\x98\xb2\x87\x23\xcd\xb9\x81\xc1\x2f\x45\x4d\x0a\x6a\xb0\xc7\xde\ -\xa6\x4a\x9f\x6a\xda\x1b\xf5\x31\x35\x9f\xb4\xd7\x01\xa5\x6f\xfe\ -\xfa\xb7\x9f\x57\x56\xeb\xd3\x0d\xfc\x84\x3a\xba\xeb\x5b\x61\x81\ -\x5d\xf1\x5b\x66\x37\x77\xff\x02\x1c\x7f\x12\x5b\ -\x00\x00\x16\x64\ +\x3a\x23\x63\x36\x62\x36\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x30\x39\x30\x39\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ +\x66\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\ +\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\ +\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x32\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x36\x2e\x36\x36\ +\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x31\x31\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x39\x38\x31\x38\x31\x38\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x34\ +\x30\x30\x30\x30\x30\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x16\x70\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -20247,325 +10725,998 @@ \x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ \x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ \x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x73\ -\x65\x74\x5f\x63\x75\x6d\x75\x6c\x61\x74\x69\x76\x65\x5f\x73\x74\ -\x72\x65\x74\x63\x68\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x65\x74\x5f\x73\x74\x64\x5f\x64\x65\x76\x5f\x73\x74\x72\x65\x74\ +\x63\x68\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ \x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\ -\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ -\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ -\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\ -\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\ -\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\ -\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\ -\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\ -\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x31\x2e\x31\x32\x37\ -\x38\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x63\x79\x3d\x22\x31\x37\x2e\x39\x39\x37\x31\x35\x36\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x2d\x31\x37\x2e\x36\x32\x38\x30\x38\x34\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ -\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\ -\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\ -\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\ -\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\ -\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\ -\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\ -\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\ -\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ -\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ -\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ -\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\ -\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\ -\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\ -\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\ -\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\ -\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\ -\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\ -\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ -\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ -\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\ -\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\ -\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\ -\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ -\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x66\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\ -\x38\x33\x37\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ -\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ -\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\x2e\x34\x35\ -\x31\x31\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\ -\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ -\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\ -\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\x2c\x30\x2e\x35\x33\x36\ -\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ -\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x38\x39\x33\x37\ -\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\x39\x38\x2c\x30\ -\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ -\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x37\x2e\x37\x39\ -\x39\x37\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x33\x35\x2e\x39\x38\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\ -\x33\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ -\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x66\x69\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\x69\ -\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ -\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ -\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\ -\x30\x34\x39\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ -\x6c\x3a\x23\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\ -\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ -\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ -\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\ -\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ -\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ -\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ -\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\ -\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x32\x33\x2e\x33\x32\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x79\x3d\x22\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ -\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ -\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ -\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\ -\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\ -\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ -\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ -\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\ -\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\x30\ -\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\x34\ -\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ +\x63\x79\x3d\x22\x31\x37\x2e\x39\x39\x37\x31\x35\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ +\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ +\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ +\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x66\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x38\x33\x37\ +\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\ +\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\x2e\x34\x35\x31\x31\x34\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ \x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x79\x3d\x22\x2d\x34\x2e\x30\x34\x30\x31\x33\x38\x34\x65\x2d\x31\ -\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x33\x2e\ -\x38\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\ +\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\ +\x34\x33\x36\x37\x38\x34\x38\x2c\x30\x2e\x35\x33\x36\x38\x34\x38\ +\x37\x39\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x38\x39\x33\x37\x32\x39\x33\ +\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\x39\x38\x2c\x30\x2c\x30\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\ +\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x37\x2e\x37\x39\x39\x37\x36\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x35\x2e\ +\x39\x38\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\ \x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ \x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ \x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x65\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\ +\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\x69\x6c\x6c\x2d\ \x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ \x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ \x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\ -\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\ +\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ \x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ \x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ -\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ -\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\ -\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\ -\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ -\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\ -\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\ -\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\ -\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ -\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\ -\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\ -\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\ -\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\ -\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\ -\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\ -\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\ -\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\ -\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\ -\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\ -\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\ -\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\ -\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\ -\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\ -\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\ -\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\ -\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\ -\x36\x32\x37\x65\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ -\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ -\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\ -\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\ -\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\ -\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ -\x3d\x22\x6d\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x20\x63\x20\x2d\x34\x2e\x30\x37\x34\x32\x30\x34\x2c\x30\x2e\x30\ -\x30\x31\x34\x20\x2d\x38\x2e\x33\x37\x31\x35\x35\x35\x35\x2c\x33\ -\x2e\x39\x39\x32\x38\x32\x33\x36\x20\x2d\x39\x2e\x36\x2c\x36\x2e\ -\x34\x20\x43\x20\x35\x2e\x31\x37\x31\x35\x35\x35\x35\x2c\x39\x2e\ -\x38\x37\x33\x38\x34\x33\x20\x33\x2e\x30\x38\x34\x32\x38\x33\x2c\ -\x31\x38\x2e\x39\x31\x31\x35\x36\x34\x20\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x2c\x32\x35\x2e\x36\x20\x30\x2e\x30\x35\x37\x38\x35\ -\x38\x36\x37\x2c\x32\x38\x2e\x39\x34\x34\x32\x31\x38\x20\x2d\x31\ -\x2e\x38\x30\x38\x38\x30\x38\x2c\x33\x30\x2e\x32\x37\x37\x35\x35\ -\x31\x20\x2d\x32\x2e\x33\x35\x36\x36\x30\x36\x2c\x33\x30\x2e\x37\ -\x37\x34\x38\x33\x20\x2d\x32\x2e\x39\x30\x34\x34\x30\x34\x31\x2c\ -\x33\x31\x2e\x32\x37\x32\x31\x30\x39\x20\x2d\x33\x2e\x32\x2c\x33\ -\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x32\x2c\x33\x30\ -\x2e\x39\x33\x33\x33\x33\x33\x20\x63\x20\x30\x2e\x37\x30\x36\x38\ -\x37\x35\x37\x2c\x30\x2e\x31\x35\x38\x36\x32\x39\x20\x30\x2e\x34\ -\x34\x30\x34\x38\x31\x33\x2c\x31\x2e\x30\x31\x35\x33\x37\x32\x20\ -\x30\x2e\x31\x33\x30\x35\x36\x35\x31\x2c\x31\x2e\x38\x30\x34\x30\ -\x38\x37\x20\x2d\x30\x2e\x33\x30\x39\x39\x31\x36\x32\x2c\x30\x2e\ -\x37\x38\x38\x37\x31\x33\x20\x2d\x30\x2e\x36\x36\x33\x33\x35\x34\ -\x31\x2c\x31\x2e\x35\x30\x39\x33\x39\x39\x20\x2d\x30\x2e\x31\x33\ -\x30\x35\x36\x35\x31\x2c\x31\x2e\x33\x39\x35\x39\x31\x33\x20\x30\ -\x2c\x30\x20\x30\x2e\x32\x36\x30\x34\x35\x35\x36\x2c\x31\x2e\x35\ -\x33\x32\x30\x34\x31\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x2c\ -\x30\x20\x31\x2e\x38\x37\x32\x38\x37\x37\x37\x36\x2c\x2d\x31\x2e\ -\x35\x33\x32\x30\x34\x20\x35\x2e\x33\x35\x38\x31\x37\x37\x36\x2c\ -\x2d\x33\x2e\x39\x39\x34\x38\x32\x37\x20\x36\x2e\x34\x2c\x2d\x38\ -\x2e\x35\x33\x33\x33\x33\x33\x20\x43\x20\x37\x2e\x34\x31\x36\x39\ -\x37\x38\x31\x2c\x31\x36\x2e\x35\x32\x32\x39\x38\x38\x20\x39\x2e\ -\x35\x37\x36\x37\x38\x34\x2c\x35\x2e\x32\x38\x32\x39\x30\x35\x31\ -\x20\x31\x36\x2e\x31\x37\x35\x35\x34\x39\x2c\x35\x2e\x33\x32\x34\ -\x32\x38\x35\x20\x32\x32\x2e\x34\x2c\x36\x2e\x34\x20\x32\x31\x2e\ -\x33\x33\x33\x33\x33\x33\x2c\x39\x2e\x36\x20\x32\x36\x2e\x36\x36\ -\x36\x36\x36\x37\x2c\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\x63\ -\x20\x32\x2e\x34\x31\x37\x33\x38\x34\x2c\x36\x2e\x32\x38\x35\x32\ -\x20\x36\x2e\x34\x2c\x39\x2e\x36\x20\x31\x30\x2e\x36\x36\x36\x36\ -\x36\x36\x2c\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x20\x36\x2e\x34\ -\x2c\x31\x2e\x30\x36\x36\x36\x36\x37\x20\x35\x2e\x33\x33\x33\x33\ -\x33\x34\x2c\x30\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x30\x20\ -\x43\x20\x34\x34\x2e\x38\x2c\x33\x32\x20\x34\x33\x2e\x37\x33\x33\ -\x33\x33\x33\x2c\x33\x35\x2e\x32\x20\x34\x32\x2e\x36\x36\x36\x36\ -\x36\x37\x2c\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x34\x31\x2e\ -\x39\x32\x34\x35\x30\x33\x2c\x33\x31\x2e\x31\x38\x30\x37\x32\x31\ -\x20\x33\x35\x2e\x30\x35\x38\x33\x34\x37\x2c\x33\x32\x2e\x33\x32\ -\x36\x32\x35\x32\x20\x33\x32\x2c\x32\x35\x2e\x36\x20\x32\x38\x2e\ -\x39\x34\x31\x36\x35\x33\x2c\x31\x38\x2e\x38\x37\x33\x37\x34\x38\ -\x20\x32\x37\x2e\x34\x38\x30\x35\x39\x35\x2c\x31\x31\x2e\x33\x30\ -\x39\x36\x35\x33\x20\x32\x35\x2e\x36\x2c\x37\x2e\x34\x36\x36\x36\ -\x36\x36\x37\x20\x32\x33\x2e\x37\x31\x39\x34\x30\x35\x2c\x33\x2e\ -\x36\x32\x33\x36\x38\x20\x32\x31\x2e\x37\x35\x39\x31\x38\x37\x2c\ -\x31\x2e\x31\x31\x34\x34\x33\x35\x35\x20\x31\x36\x2c\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ -\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ -\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ -\x3d\x22\x63\x7a\x73\x73\x63\x73\x63\x73\x73\x63\x73\x63\x63\x63\ -\x73\x7a\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\ -\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\ -\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\ -\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\ -\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\ -\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\ -\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\ -\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\ -\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\ -\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ -\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\ -\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x38\x39\ -\x38\x39\x38\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x2e\x32\x36\x36\x36\x36\ -\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\ -\x74\x33\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\ -\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ -\x34\x2e\x32\x36\x36\x36\x36\x36\x39\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\ -\x73\x69\x7a\x65\x3a\x32\x35\x2e\x36\x30\x30\x30\x30\x30\x33\x38\ -\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\ -\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ -\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ -\x37\x32\x22\x3e\x25\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\ -\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x16\x70\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\x39\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ +\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x33\x2e\ +\x33\x32\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ +\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\x35\x30\x38\ +\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\x30\x2c\x30\ +\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ +\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\x30\x33\x34\x38\ +\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\x34\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ +\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x2d\x34\x2e\x30\x34\x30\x31\x33\x38\x34\x65\x2d\x31\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x33\x2e\x38\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\ +\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x65\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\ +\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\ +\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\ +\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ +\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\ +\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\ +\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\ +\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\ +\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\ +\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\ +\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\ +\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\ +\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\ +\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\ +\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\ +\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ +\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ +\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x38\x30\x30\x30\x30\ +\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\ +\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ +\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ +\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ +\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x20\x63\x20\ +\x2d\x34\x2e\x30\x37\x34\x32\x30\x34\x2c\x30\x2e\x30\x30\x31\x34\ +\x20\x2d\x38\x2e\x33\x37\x31\x35\x35\x35\x35\x2c\x33\x2e\x39\x39\ +\x32\x38\x32\x33\x36\x20\x2d\x39\x2e\x36\x2c\x36\x2e\x34\x20\x43\ +\x20\x35\x2e\x31\x37\x31\x35\x35\x35\x35\x2c\x39\x2e\x38\x37\x33\ +\x38\x34\x33\x20\x33\x2e\x30\x38\x34\x32\x38\x33\x2c\x31\x38\x2e\ +\x39\x31\x31\x35\x36\x34\x20\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x2c\x32\x35\x2e\x36\x20\x30\x2e\x30\x35\x37\x38\x35\x38\x36\x37\ +\x2c\x32\x38\x2e\x39\x34\x34\x32\x31\x38\x20\x2d\x31\x2e\x38\x30\ +\x38\x38\x30\x38\x2c\x33\x30\x2e\x32\x37\x37\x35\x35\x31\x20\x2d\ +\x32\x2e\x33\x35\x36\x36\x30\x36\x2c\x33\x30\x2e\x37\x37\x34\x38\ +\x33\x20\x2d\x32\x2e\x39\x30\x34\x34\x30\x34\x31\x2c\x33\x31\x2e\ +\x32\x37\x32\x31\x30\x39\x20\x2d\x33\x2e\x32\x2c\x33\x30\x2e\x39\ +\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x32\x2c\x33\x30\x2e\x39\x33\ +\x33\x33\x33\x33\x20\x63\x20\x30\x2e\x37\x30\x36\x38\x37\x35\x37\ +\x2c\x30\x2e\x31\x35\x38\x36\x32\x39\x20\x30\x2e\x34\x34\x30\x34\ +\x38\x31\x33\x2c\x31\x2e\x30\x31\x35\x33\x37\x32\x20\x30\x2e\x31\ +\x33\x30\x35\x36\x35\x31\x2c\x31\x2e\x38\x30\x34\x30\x38\x37\x20\ +\x2d\x30\x2e\x33\x30\x39\x39\x31\x36\x32\x2c\x30\x2e\x37\x38\x38\ +\x37\x31\x33\x20\x2d\x30\x2e\x36\x36\x33\x33\x35\x34\x31\x2c\x31\ +\x2e\x35\x30\x39\x33\x39\x39\x20\x2d\x30\x2e\x31\x33\x30\x35\x36\ +\x35\x31\x2c\x31\x2e\x33\x39\x35\x39\x31\x33\x20\x30\x2c\x30\x20\ +\x30\x2e\x32\x36\x30\x34\x35\x35\x36\x2c\x31\x2e\x35\x33\x32\x30\ +\x34\x31\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x2c\x30\x20\x31\ +\x2e\x38\x37\x32\x38\x37\x37\x37\x36\x2c\x2d\x31\x2e\x35\x33\x32\ +\x30\x34\x20\x35\x2e\x33\x35\x38\x31\x37\x37\x36\x2c\x2d\x33\x2e\ +\x39\x39\x34\x38\x32\x37\x20\x36\x2e\x34\x2c\x2d\x38\x2e\x35\x33\ +\x33\x33\x33\x33\x20\x43\x20\x37\x2e\x34\x31\x36\x39\x37\x38\x31\ +\x2c\x31\x36\x2e\x35\x32\x32\x39\x38\x38\x20\x39\x2e\x35\x37\x36\ +\x37\x38\x34\x2c\x35\x2e\x32\x38\x32\x39\x30\x35\x31\x20\x31\x36\ +\x2e\x31\x37\x35\x35\x34\x39\x2c\x35\x2e\x33\x32\x34\x32\x38\x35\ +\x20\x32\x32\x2e\x34\x2c\x36\x2e\x34\x20\x32\x31\x2e\x33\x33\x33\ +\x33\x33\x33\x2c\x39\x2e\x36\x20\x32\x36\x2e\x36\x36\x36\x36\x36\ +\x37\x2c\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\x63\x20\x32\x2e\ +\x34\x31\x37\x33\x38\x34\x2c\x36\x2e\x32\x38\x35\x32\x20\x36\x2e\ +\x34\x2c\x39\x2e\x36\x20\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x2c\ +\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x20\x36\x2e\x34\x2c\x31\x2e\ +\x30\x36\x36\x36\x36\x37\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\ +\x30\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x30\x20\x43\x20\x34\ +\x34\x2e\x38\x2c\x33\x32\x20\x34\x33\x2e\x37\x33\x33\x33\x33\x33\ +\x2c\x33\x35\x2e\x32\x20\x34\x32\x2e\x36\x36\x36\x36\x36\x37\x2c\ +\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x34\x31\x2e\x39\x32\x34\ +\x35\x30\x33\x2c\x33\x31\x2e\x31\x38\x30\x37\x32\x31\x20\x33\x35\ +\x2e\x30\x35\x38\x33\x34\x37\x2c\x33\x32\x2e\x33\x32\x36\x32\x35\ +\x32\x20\x33\x32\x2c\x32\x35\x2e\x36\x20\x32\x38\x2e\x39\x34\x31\ +\x36\x35\x33\x2c\x31\x38\x2e\x38\x37\x33\x37\x34\x38\x20\x32\x37\ +\x2e\x34\x38\x30\x35\x39\x35\x2c\x31\x31\x2e\x33\x30\x39\x36\x35\ +\x33\x20\x32\x35\x2e\x36\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\ +\x20\x32\x33\x2e\x37\x31\x39\x34\x30\x35\x2c\x33\x2e\x36\x32\x33\ +\x36\x38\x20\x32\x31\x2e\x37\x35\x39\x31\x38\x37\x2c\x31\x2e\x31\ +\x31\x34\x34\x33\x35\x35\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ +\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ +\x7a\x73\x73\x63\x73\x63\x73\x73\x63\x73\x63\x63\x63\x73\x7a\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\ +\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\ +\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ +\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\ +\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ +\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\ +\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\ +\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\ +\x64\x27\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\ +\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\ +\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x39\x33\ +\x33\x33\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x74\x65\x78\x74\x33\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\ +\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\ +\x61\x6e\x33\x37\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x39\x33\ +\x33\x33\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\ +\x32\x35\x2e\x36\x30\x30\x30\x30\x30\x33\x38\x70\x78\x3b\x6c\x69\ +\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\ +\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\ +\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x22\x3e\xcf\ +\x83\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\ +\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\xd9\ +\x00\ +\x00\x28\xf8\x78\x9c\xe5\x5a\xd9\x6e\xdb\x48\x16\x7d\xf7\x57\xd4\ +\x28\x2f\x33\x18\xb1\x54\xfb\xa2\xc8\xee\x87\x34\x1a\x68\xa0\xe7\ +\x65\xba\x07\xf3\x18\xd0\x24\x6d\x73\x42\x91\x02\x49\x79\xc9\xd7\ +\xf7\x29\x6e\x92\x6c\x39\xf0\xc4\x71\x3a\x89\x69\x18\x22\xef\x52\ +\x75\xeb\xd4\xb9\xf7\x16\x65\xaf\x7e\xba\x5d\x17\xe4\x3a\xab\x9b\ +\xbc\x2a\x4f\x67\x9c\xb2\x19\xc9\xca\xa4\x4a\xf3\xf2\xf2\x74\xf6\ +\x9f\x3f\x7e\x89\xdc\x8c\x34\x6d\x5c\xa6\x71\x51\x95\xd9\xe9\xac\ +\xac\x66\x3f\x9d\x9d\xac\xfe\x16\x45\xe4\x5d\x9d\xc5\x6d\x96\x92\ +\x9b\xbc\xbd\x22\xbf\x96\x1f\x9a\x24\xde\x64\xe4\xef\x57\x6d\xbb\ +\x59\x2e\x16\x37\x37\x37\x34\x1f\x84\xb4\xaa\x2f\x17\xff\x20\x51\ +\x74\x76\x72\xb2\x6a\xae\x2f\x4f\x08\x21\x98\xb7\x6c\x96\x69\x72\ +\x3a\x1b\x1c\x36\xdb\xba\xe8\x0c\xd3\x64\x91\x15\xd9\x3a\x2b\xdb\ +\x66\xc1\x29\x5f\xcc\x76\xe6\xc9\xce\x3c\x09\xb3\xe7\xd7\x59\x52\ +\xad\xd7\x55\xd9\x74\x9e\x65\xf3\x66\xcf\xb8\x4e\x2f\x26\xeb\x10\ +\xcd\x8d\xec\x8c\xb8\xf7\x7e\xc1\xc4\x42\x88\x08\x16\x51\x73\x57\ +\xb6\xf1\x6d\x74\xe8\x8a\x18\x8f\xb9\x0a\xc6\xd8\x02\xba\x9d\xe5\ +\xd3\xac\x96\x0d\x00\xdd\xe0\x77\x32\x1f\x05\xb4\xa9\xb6\x75\x92\ +\x5d\xc0\x2f\xa3\x65\xd6\x2e\x7e\xfe\xe3\xe7\x49\x19\x31\x9a\xb6\ +\xe9\xde\x30\x23\x9e\x07\xb3\x1e\x80\x5c\xc6\xeb\xac\xd9\xc4\x49\ +\xd6\x2c\x46\x79\xe7\x7f\x93\xa7\xed\xd5\xe9\x4c\x2a\xca\x25\x2e\ +\xdd\x09\xaf\xb2\xfc\xf2\xaa\xbd\x2f\xcd\xd3\xd3\x19\xa2\x17\xde\ +\xf5\xcf\x7b\xe4\xe0\xbd\xc1\x30\xf0\x72\xd2\x30\xea\x05\xe5\xa4\ +\xe6\x5a\xda\xde\x66\x5c\xc2\x32\xad\x92\x10\x13\x86\xcc\xd6\x79\ +\xbc\x6d\xab\x35\x76\x2d\x49\x8a\xb8\x69\xf2\x8b\x3c\xc1\x43\x55\ +\x6e\x8a\xed\x65\x5e\xbe\xff\xed\xdd\xef\xef\xdb\xab\x3a\x6b\xae\ +\xaa\x22\x7d\xdf\x56\x55\x41\x47\x14\xa7\x29\xb3\xdb\x4d\x55\xb7\ +\xd1\x6d\xba\x01\x96\xc6\x1e\x55\xde\x8d\xca\x33\x68\x57\x69\x76\ +\xd1\x04\xab\x7e\x61\xe1\x09\x2b\xb3\x33\xb2\xe8\xb4\x53\x9c\x21\ +\xc8\xf4\x3a\xcf\x6e\x76\xb6\xe7\x71\xd3\x83\x47\xc8\x26\xbe\x04\ +\xd1\x8a\xaa\x3e\x9d\xbd\xb9\xe8\xae\x41\x71\x5e\xd5\x69\x56\x8f\ +\x2a\xd3\x5d\x07\xaa\x0a\x9b\x91\xb7\x77\x7d\x6a\x0d\x63\x8f\xf1\ +\x86\x51\x27\x3d\x3b\xae\x6f\xae\xe2\xb4\xba\x39\x9d\x89\xfb\xca\ +\x8f\x55\xb5\x3e\x9d\x69\xaa\xbd\xf3\x8c\xdf\xd7\x26\xb7\xa7\xb3\ +\x48\x7b\xea\xbc\x12\xd6\x3e\xd0\x62\x3e\xa1\xa9\xf2\x4e\xf0\x87\ +\xca\x6d\x5d\x23\xf7\xa2\x22\xbe\xcb\xb0\xa8\xee\x63\x1c\x1f\x5b\ +\x73\x73\x59\x07\x70\xda\x7a\x9b\xdd\xf7\x0c\x9a\xe8\xfc\xbc\xba\ +\x3d\xae\x06\x15\xb6\x21\xab\xa3\x6d\x99\xb7\xc8\x9c\xcd\xed\xfe\ +\xa8\xdb\x3c\xcd\x9a\xe3\x8e\x4d\x19\x6f\xa2\xcb\xa2\x3a\x8f\x8b\ +\xe3\x06\x37\x79\x09\x90\xa2\x81\xe4\x5c\x4e\x7b\x70\xdf\x62\x64\ +\xbc\x65\xee\x11\x0b\xc4\xfe\x60\x1f\x06\xd5\xdd\xe3\xaa\x75\x7c\ +\x9b\xaf\xf3\x8f\x19\x80\x79\xb0\x15\xdd\xca\xf6\x61\x39\xeb\x0c\ +\x56\x07\xb0\xf5\x3e\x84\xb4\x77\x21\xbb\x6f\xef\x82\x6c\x36\x0a\ +\x03\xde\x41\x20\xbc\xb7\x93\xb0\xaa\x73\x24\xcd\x5e\xb8\xa3\xe8\ +\x6e\x5f\x14\x6a\x01\x4a\xf9\x6d\xc7\xbf\x8e\x9d\xf6\xbe\xee\x6e\ +\x5f\x37\xa4\xc5\xe2\x61\x5e\x74\xf2\x75\xd6\xc6\x69\xdc\xc6\xbb\ +\x24\x19\x25\x88\x8d\x8d\x2b\x43\x59\x5d\xfe\xfb\xe7\x5f\xce\x86\ +\x89\x56\x49\xb2\xfc\x6f\x55\x7f\x18\xe7\x25\x24\x18\xc4\xe7\xd5\ +\x16\x3b\x31\x3b\x9b\xc4\xab\x34\x59\xa2\x10\xa2\x40\x9c\xe5\x6b\ +\x50\x3f\xd4\xd0\x7f\xa2\xf0\xad\x16\x3b\xc5\x81\x71\x00\x6b\x37\ +\x68\x3f\x2c\xca\x47\x57\x51\x8f\xb6\x95\x34\x59\xe7\xc1\x69\xf1\ +\x7b\x9b\x17\xc5\xaf\x61\x92\x61\xc5\x7b\x83\xe6\x6d\x91\xed\x84\ +\xab\xc5\x10\xfd\xb0\xb6\xc5\xde\xe2\x56\x8b\x71\xf5\xdd\xd3\xe5\ +\x0e\x95\x83\xa4\x99\x36\xba\x88\xcf\x33\x30\xf8\xb7\xa0\x24\x0f\ +\x79\x52\x57\xdb\xcd\xba\x4a\xb3\xc1\x7d\x42\x33\x4b\xda\x69\xcb\ +\xda\xbb\x02\xfa\xae\xde\x2c\xdf\xb0\xee\x7a\x9b\xe6\xcd\x06\x1e\ +\xe8\x0e\x45\x5e\x66\x6f\x2b\x94\xe5\x8b\xa2\xba\x59\x5e\xe7\x4d\ +\x7e\x5e\x64\x6f\xbb\xcf\xbc\xc0\xca\x27\xd1\x05\x96\xbf\x1c\x2a\ +\x59\xf7\x10\x0d\x75\x68\xc9\xfb\xc7\x7a\x5b\x64\xcb\xb2\x2a\x3f\ +\xa2\x82\xbd\x6d\xda\xba\xfa\x90\x2d\xdf\xa4\xe7\x81\x24\xc3\x63\ +\x9f\x6d\xcb\x89\x3a\x62\x94\x87\x20\xb0\xa0\xe5\xf9\xb6\x6d\xf7\ +\x65\xff\xab\xf2\x72\x09\xfc\xb3\x7a\x94\x76\x0f\x05\x12\xa7\x5d\ +\xaa\x51\x96\xc6\xa8\x78\x75\x8d\xe5\x60\xf6\x6c\x5f\x5a\x5d\x5c\ +\x34\x59\xbb\x64\xa3\x6c\x17\xf1\x3a\xae\x3f\x64\x75\xef\x90\x95\ +\x31\x16\x18\x9d\xc7\xc9\x87\x00\x68\x99\x2e\xe3\x04\x65\x67\x5b\ +\xe0\xa8\x72\x90\x50\x01\x56\xe9\xb8\x9e\x84\x63\x8b\xb4\x34\xf4\ +\x42\x29\x26\xc5\xd4\x26\x1f\x68\x0e\xb2\x0f\x79\x14\x49\xba\x53\ +\xd6\x10\x48\x2a\xd1\x13\x8d\x77\x13\xcd\x56\x9b\xb8\xbd\xba\xb7\ +\x9d\xfd\x6e\x88\xf8\xe2\x42\xc4\xf7\x77\x63\xc4\x3e\xec\x34\x4f\ +\x0e\xb1\x67\x2f\x09\xf9\x14\xc2\xb4\x20\x80\xf6\x2f\xa2\x38\x35\ +\xca\x70\x35\xe7\x8a\x7a\xaf\x99\xd3\xe4\x1d\x01\x32\xca\x72\xe6\ +\xed\x5c\x30\x2a\x85\x36\xda\x11\x61\xa9\x55\xde\x58\x37\xe7\x96\ +\x32\xaf\x5d\x90\xf1\x1e\x41\xd9\x79\x77\x77\x04\x5a\x6f\x24\x2a\ +\xdb\x9c\x4b\x6a\xbd\xb5\x1a\x32\x43\xa5\x71\x5a\xdb\xb9\xa3\xd6\ +\x72\xc5\x0c\x64\x82\x3a\x21\xb9\x13\x90\x69\x26\xb4\xe2\xc4\x51\ +\xe9\x98\x93\x5e\x43\xc4\x0d\x66\x95\x8e\x28\xea\xd0\xf3\xd0\x11\ +\xc3\xb4\x5c\x39\xe6\x1d\xe9\x38\x6a\xd1\x27\xc3\xb4\xce\x30\xce\ +\x38\x89\x04\x3a\xa7\x12\xcc\xc3\x50\x50\x63\x9c\xb3\x96\x44\x9c\ +\x7a\xf8\x08\x26\xe7\x3a\xf8\x08\x2d\x14\xbc\x39\x97\x4c\x33\x2c\ +\x0e\x32\xc6\x9d\xd2\x04\x6d\x57\x38\xe3\xb5\x9e\x63\x1c\x29\xd0\ +\x70\x60\x27\x31\x0c\x33\x4e\xcd\x71\x1c\xf2\x4e\x39\xab\x2c\xe1\ +\x1e\x0b\xf0\x1a\x21\xe2\x80\x24\xac\x91\x5a\x10\x29\xa9\x36\x58\ +\x15\x9f\x2b\x8a\x4f\xcf\x6c\x27\x52\xce\x58\x33\x8f\x02\xbe\x12\ +\x9b\xad\x89\x74\x54\x75\x50\xc3\xb5\x43\xda\x93\x84\x48\x0a\x11\ +\x7e\x20\xb4\x5c\x38\xe1\x1c\x82\xf1\x9c\x3b\xa9\xe7\x1e\xe8\x5a\ +\x84\xc0\x61\x25\xc2\xb2\xac\x0f\x17\x27\x1f\x0f\x98\x1f\x18\x28\ +\x61\x1f\xed\xb8\xbb\x6b\xfe\x55\x09\x2a\xb5\x55\x1d\xe1\x18\x70\ +\x1d\xb7\xdb\x3a\x3b\x68\x27\x53\x5b\x40\x9d\x0a\x95\x14\x1d\x3b\ +\x0e\x57\xd3\xc4\x4f\xa1\x78\x12\x33\x91\x3c\x4e\x71\x25\xbf\x09\ +\x8a\x33\xaa\x7b\x96\x7a\x6a\x02\xbb\xc1\x46\xed\x84\xef\x49\xcb\ +\xb4\x95\x44\x18\x6a\xc0\x50\x0b\xf2\x70\x6a\x19\xb3\x41\xc6\xa8\ +\x10\x4c\x0b\x0b\x37\x30\x51\x28\xab\x03\x91\x9d\xe6\xdc\x83\xa0\ +\x8a\x09\x90\x10\x34\xd1\x54\x80\xd9\x7a\x8e\xda\x00\x3e\x08\xce\ +\x49\x18\x83\x33\xd9\xc9\x38\xb3\x4a\x23\x55\x2c\x15\xc6\x31\x29\ +\xba\x8d\xb6\x4c\x23\x1d\xb0\xab\xd6\x82\xa9\xd2\x77\xb3\x6a\xc9\ +\xb8\x24\x78\x47\x60\xca\x84\x08\x30\xad\x32\x9a\x21\x11\x08\xea\ +\x90\x65\x96\x71\xed\xe6\x18\xc7\x4a\xeb\xb9\x0b\x42\x06\x06\x0a\ +\x04\x1d\x85\x2c\x75\x0e\xbf\x9a\x08\x90\x0c\x19\x61\x6c\x16\xa9\ +\x39\x6c\xa4\x44\xf6\x80\x92\x8a\x2a\xf8\x23\x67\x22\x24\x32\x07\ +\x99\xbd\x08\x39\xa8\x95\x45\xa6\xcc\x23\x45\xa5\x37\xda\x5b\x64\ +\x97\xa3\xa1\xfe\x3b\x17\xbc\x05\x96\xa8\x99\x24\x12\xc3\x6a\x85\ +\x57\x8a\x30\x97\x45\xde\x5a\xa7\x4d\x27\x05\x94\x36\x8c\xc9\x42\ +\xee\x06\xaa\xda\xb1\x26\x04\xf7\x63\x0c\x37\x7e\xa4\xb8\x99\x28\ +\xee\x46\x8a\xbb\x47\xc8\xfd\xf5\xa9\xed\x7c\xcc\x3e\x55\xbd\x19\ +\xfb\xab\xa9\xbd\x26\xa1\xd2\xe1\xd2\x66\x8e\x5d\xe3\x7d\x01\x4e\ +\x20\x15\xd8\x6a\xcb\x7c\xa8\x66\xd8\x52\x8e\x9a\x69\xc2\x8d\xee\ +\xb6\x1a\x75\x4d\x70\x83\x32\xc2\x59\xef\x6e\x55\xbf\x57\x9a\x1a\ +\x6f\x98\xf2\x28\x78\x46\x63\xab\x38\xf1\xe0\x36\x0b\xc5\x17\x37\ +\x1e\xd9\x0c\xba\x0f\x85\x5e\x85\xb2\xdd\xdd\x84\x8c\x92\xc1\x0e\ +\x8e\xa2\xab\x51\x42\x81\x30\x8a\xe2\x43\x86\xc6\x82\xf2\xe9\xc0\ +\x7d\x13\x0a\xa0\x1f\xda\x45\xd8\x68\x05\x16\x30\x8d\x3a\x39\xe7\ +\xe1\xdd\x45\x6b\x98\x40\x86\xd0\x15\x22\x12\xa8\xb4\x20\xae\xf4\ +\xc8\xdf\xb9\xd4\x1d\x95\xc0\x52\xe1\xa5\x33\x02\x95\x16\xac\x0c\ +\xeb\x8a\x10\x90\x46\x7a\xa2\x9c\xa3\xfa\x1a\xcf\x3c\x72\xa8\xa7\ +\x30\x16\x36\x67\x68\x0c\x88\x49\x63\x78\x21\x00\x87\xa6\xc8\x12\ +\xe9\x3a\xa3\x2e\x23\xac\x92\xc1\x13\xdc\x86\xd1\x9e\xa7\x0a\xae\ +\x32\xe0\x60\x25\x1a\x51\x00\xc8\x23\x7d\x91\x34\x21\xa7\x7c\x07\ +\x2f\xa4\x21\x83\xd0\xbc\x90\xf4\x0c\x0f\xb6\x3f\x3c\xd9\xe3\x1c\ +\x96\x91\xfb\xda\x2c\x66\x88\xc7\x7d\x92\xc5\x38\x2f\xfe\xe5\x2c\ +\x9e\xce\x9c\x73\xa1\x86\x52\xbd\x63\x31\xe7\x47\x58\x2c\x8f\xb0\ +\xd8\xc8\xe7\xb2\x18\xad\xba\x67\xb1\x47\x83\xee\x59\x2c\x42\xf7\ +\xee\x58\x8c\xb2\x36\xb0\x78\x2a\x70\x38\x0c\x08\xa2\x50\x39\x7b\ +\x16\xe3\x34\xe4\x06\x16\xa3\xfd\xf7\x2c\x46\xaf\xe1\x3d\x8b\x43\ +\xf7\x9f\x87\xd3\xd6\x73\x79\x0c\x8b\x89\xc7\x6e\x8f\xc6\xfc\x08\ +\x8d\x81\xc9\x3e\x8d\x8f\xb0\x98\xeb\xff\x93\xc4\x5f\x9b\xc2\x3c\ +\x11\x4a\x88\x1d\x67\xd3\xf0\x73\xc8\x59\x89\x33\x22\x9a\x31\x3a\ +\xe9\xf3\xc8\x1b\x76\x1d\x97\xe3\x9f\x75\xcc\xd8\x63\x31\xda\x62\ +\xe0\x13\x3a\x5a\x77\xfb\xe0\xe6\x21\xb0\xd6\x8a\x88\x45\xe2\xc9\ +\xe0\xfe\x30\xb8\xed\x67\xff\x8e\x7a\x21\xfb\xf9\x90\x65\xec\xb1\ +\xfb\xc7\x50\xe4\xaf\x1c\x45\x9c\x25\x77\x35\xf4\xb3\x51\x7c\x7a\ +\xa2\xff\x30\x28\xee\xe7\xb0\x99\x52\xd8\x0c\x89\xbb\xf7\xf9\x18\ +\x66\xea\xf5\x61\x76\xc0\xbc\xf1\xee\x79\xcc\xf3\x2f\x88\xe2\x91\ +\x73\xfb\xb7\x81\xa2\x1e\x0e\x15\x72\x3e\xfe\xf5\x26\xe4\x2f\x0b\ +\x2f\x66\xa2\x03\xf5\xb1\xfb\x23\x4d\x5a\x3d\xfd\x8b\x80\x1f\x08\ +\xc1\xf0\x4e\xf1\x45\xc0\x8b\xcc\x6b\x84\x4f\xb8\x2f\x05\xdf\x4b\ +\x9e\x62\xbe\x5d\xf8\xa6\xaf\x42\xbf\x08\x86\xf6\x75\x77\x92\xf0\ +\x65\xf3\xf3\xcf\x30\xaf\x91\x87\xd1\xbd\xd7\x90\x1d\x7e\x6a\x0f\ +\xb3\x7b\xf7\x8f\xbe\x8f\xbc\xe8\x29\xf0\x7b\xc0\xf0\xd8\x2b\xc9\ +\x67\x00\xc9\x5f\xe7\xa1\x26\xfa\xf4\x5b\xc9\x67\x00\x29\x5f\xf4\ +\xed\xee\x7b\x00\x12\xaf\x1f\x5d\x98\xfc\x79\x40\xaa\x17\x7d\x59\ +\xf9\x1e\x80\x1c\xef\xdc\xf3\x80\xf4\xaf\x9e\x91\xc7\x9a\xf5\xe7\ +\xd4\xc8\xa7\xff\x8d\x67\xfc\xaf\x96\xcb\xb3\x93\x55\xf8\xaf\x92\ +\xb3\x93\x3f\x01\x78\x38\x9b\x3d\ +\x00\x00\x08\x74\ +\x00\ +\x00\x40\xa3\x78\x9c\xed\x5b\x59\x8f\xab\xc8\x15\x7e\xef\x5f\x41\ +\x7c\x15\x69\x46\x69\x8a\xda\x58\xdb\xf6\x3c\xe4\x6a\x94\x91\x66\ +\x5e\x92\x49\xf2\x38\xc2\x50\x76\x93\xc6\x94\x05\x78\xbb\xbf\x26\ +\xbf\x25\xbf\x2c\xa7\xca\x80\xc1\xc6\x69\x7b\xda\xd7\x69\x5f\x35\ +\x52\xcb\x70\xce\xa9\xe5\x7c\x67\x65\xe9\xe1\x0f\x9b\x79\x6a\xac\ +\x44\x5e\x24\x32\x1b\x0d\x08\xc2\x03\x43\x64\x91\x8c\x93\x6c\x36\ +\x1a\xfc\xfd\xd7\x1f\x4d\x6f\x60\x14\x65\x98\xc5\x61\x2a\x33\x31\ +\x1a\x64\x72\xf0\xc3\xf8\x61\xf8\x07\xd3\x34\xfe\x9c\x8b\xb0\x14\ +\xb1\xb1\x4e\xca\x67\xe3\xa7\xec\xa5\x88\xc2\x85\x30\xbe\x7b\x2e\ +\xcb\x45\x60\x59\xeb\xf5\x1a\x25\x15\x11\xc9\x7c\x66\x7d\x6f\x98\ +\xe6\xf8\xe1\x61\x58\xac\x66\x0f\x86\x61\xc0\xba\x59\x11\xc4\xd1\ +\x68\x50\x0d\x58\x2c\xf3\x54\x0b\xc6\x91\x25\x52\x31\x17\x59\x59\ +\x58\x04\x11\x6b\xb0\x17\x8f\xf6\xe2\x91\x5a\x3d\x59\x89\x48\xce\ +\xe7\x32\x2b\xf4\xc8\xac\xf8\xd4\x12\xce\xe3\x69\x23\xad\x76\xb3\ +\x66\x5a\x88\xf8\xbe\x6f\x61\x6a\x51\x6a\x82\x84\x59\x6c\xb3\x32\ +\xdc\x98\xdd\xa1\xb0\xc7\xbe\xa1\x14\x63\x6c\x01\x6f\x2f\x79\x9e\ +\x54\x50\x00\xa0\x0b\xf8\x6b\xc4\x6b\x02\x2a\xe4\x32\x8f\xc4\x14\ +\xc6\x09\x94\x89\xd2\xfa\xfc\xeb\xe7\x86\x69\x62\x14\x97\x71\x6b\ +\x9a\x1a\xcf\xce\xaa\x1d\x90\xb3\x70\x2e\x8a\x45\x18\x89\xc2\xaa\ +\xe9\x7a\xfc\x3a\x89\xcb\xe7\xd1\x80\x71\x44\x18\x1c\xb6\x26\x3e\ +\x8b\x64\xf6\x5c\x1e\x52\x93\x78\x34\x80\xdd\x53\xdf\xdb\x5d\xb7\ +\x9c\x83\xec\x04\xaa\x89\x83\x86\x83\x91\x4f\x11\x31\x72\x62\x33\ +\x77\x27\x53\xab\x10\xc4\x32\x52\x7b\x82\x29\xc5\x3c\x09\x97\xa5\ +\x9c\x83\xd5\xa2\x28\x0d\x8b\x22\x99\x26\x11\x5c\xc8\x6c\x91\x2e\ +\x67\x49\xf6\x5b\x18\x45\xcb\x3c\x8c\xb6\xbf\x95\x52\xa6\xa8\x06\ +\xb0\x59\x4d\x6c\x16\x32\x2f\xcd\x4d\xbc\x00\x18\x1d\xb7\x97\xb9\ +\xad\x99\x63\xe0\x0e\x63\x31\x2d\x94\xd4\x4e\x27\x75\x05\x4a\xb9\ +\x03\xc3\xd2\xdc\x66\x8b\x6a\x7f\xf1\x2a\x11\xeb\xbd\xec\x24\x2c\ +\x76\xb8\x19\xc6\x22\x9c\x81\x8f\xa5\x32\x1f\x0d\x3e\x4d\xf5\x51\ +\x31\x26\x32\x8f\x45\x5e\xb3\x1c\x7d\x74\x58\x12\xec\x90\x94\xdb\ +\x5d\x54\x55\x73\xd7\xfb\x55\xb3\x36\x7c\xdc\xcf\x2f\x9e\xc3\x58\ +\xae\x47\x03\x7a\xc8\xfc\x22\xe5\x7c\x34\xb0\x91\xed\x7b\x3e\x26\ +\x87\xdc\x68\x33\x1a\x98\x8c\x21\xee\x71\x97\x7a\x47\x5c\x58\x8f\ +\x12\xe4\x3a\x8c\x91\xa3\x89\x01\xff\x1c\xc2\xce\x4c\xc3\xad\x00\ +\xa5\xf4\x4f\x3d\x7f\xf1\x2c\xd7\xb3\x5c\x81\x53\xe6\x4b\x71\x38\ +\x52\x71\xcc\xc9\x44\x6e\xfa\xd9\xe0\x05\x4b\x15\xd0\xe6\x32\x4b\ +\x4a\x08\x9a\xc5\xa6\x3d\xeb\x32\x89\x45\xd1\x3f\xb0\xc8\xc2\x85\ +\x39\x4b\xe5\x24\x4c\xfb\x05\xd6\x49\x06\x20\x99\x95\x7f\x13\xd6\ +\xd8\xe0\x50\xa2\x76\x76\x17\x1f\x61\x52\x49\xc0\xde\x8f\xec\x50\ +\xb1\xb6\xa7\x59\xf3\x70\x93\xcc\x93\x2f\x02\x80\x21\xda\xed\xc0\ +\xb5\x3a\xb0\xec\x86\x19\x46\xb9\x55\x81\xbb\xd9\x2a\xda\xa0\x26\ +\x2a\x3c\x15\x81\xfa\xbe\xdb\x10\x65\x9e\x40\x3c\xb4\xb6\x53\x93\ +\xb6\x6d\x92\x0a\x73\xc8\xd2\x1b\xed\x5f\xda\xfb\xdc\x43\xde\xb6\ +\xcd\xab\xdc\xde\x3a\xf6\x7b\x4d\x9f\x8b\x32\x8c\xc3\x32\xdc\x07\ +\x41\x4d\x81\xbd\xe1\x5a\x33\xc8\x98\xc1\x5f\x3f\xff\x38\xae\x16\ +\x1a\x46\x51\xf0\x4f\x99\xbf\xd4\xeb\x1a\x86\x12\x08\x27\x72\x09\ +\x48\x0f\xc6\x0d\x79\x18\x47\x01\xe4\x38\x88\xfd\x71\x32\x07\xd7\ +\x56\xe9\xf1\x4f\x90\xd3\x86\xd6\x9e\xd1\x11\x56\x60\xed\x27\xdd\ +\x4d\x9b\x8b\x5d\xb2\xec\xad\x18\x71\x34\x4f\xd4\x20\xeb\x6f\x65\ +\x92\xa6\x3f\xa9\x45\x2a\x8d\x5b\x93\x26\x65\x2a\xf6\xc4\xa1\x55\ +\xed\xbe\xd2\xcd\x6a\x29\x37\xb4\x6a\xed\xf5\xd5\x6c\x8f\x4a\x27\ +\x28\x1a\x43\xa7\xe1\x44\x80\x87\xfe\xac\x98\xc6\x11\x77\x96\xcb\ +\xe5\x62\x2e\x63\x51\x0d\x6f\xd0\x14\x51\xd9\x98\xac\xdc\xa6\xc0\ +\xd7\xf9\x24\xf8\x84\xf5\xf1\x14\x27\xc5\x02\x46\x40\xe2\x4f\x93\ +\x4c\x3c\x49\xc8\xb8\xd3\x54\xae\x83\x55\x52\x24\x93\x54\x3c\xe9\ +\xdf\x24\x05\xcd\x1b\xd2\x14\xd4\x0f\xaa\x4c\xa5\x2f\xcc\x2a\xcf\ +\x04\x64\x77\x99\x2f\x53\x11\x64\x32\xfb\x02\x19\xea\xa9\x28\x73\ +\xf9\x22\xb4\xfc\x64\x3a\xa9\x2e\x77\xd1\x14\x40\x56\xc7\xcc\x73\ +\x99\xcb\x6b\xba\xda\x04\x28\x14\x4c\x96\x65\xd9\xa6\xfd\x4b\x26\ +\x59\x00\xf8\x8b\xbc\xa6\xea\x8b\x14\x02\xa3\x0c\x9a\xd1\x71\x08\ +\x19\x2d\xcf\x41\x1d\x58\x5d\xb4\xa9\x72\x3a\x2d\x44\x19\xe0\x9a\ +\xb6\xdf\xf1\x3c\xcc\x5f\x44\xbe\x1b\x20\xb2\x10\x14\x34\x27\x61\ +\xf4\xa2\x00\xcd\xe2\x40\x55\x8c\xf9\x32\x85\x2e\xa4\x13\x50\x0a\ +\x56\xe6\x7a\xc4\xc4\xe6\x3e\x5c\xea\x0c\xc1\x91\x47\xb8\x47\x9c\ +\x86\x51\x27\x06\x62\x23\x46\x3c\x9b\x78\x0d\x07\x42\x8b\x62\xe4\ +\x72\xec\x72\xda\x10\x21\xa6\x18\x45\x98\xfa\x0e\xf5\x1b\x62\x0e\ +\xa2\x2e\x72\x6c\x0c\xc1\xd6\xa2\xea\x78\xad\x1d\xee\x9d\x5b\x9b\ +\x20\xc6\x61\xf7\x84\x93\xfb\xb5\xb6\x6b\x7a\x47\xf6\x76\x90\x36\ +\x95\x7b\x64\x6f\x86\x91\xc3\x5c\x5c\x75\x3d\x95\xbd\x39\xe2\xfa\ +\xe8\xd8\x9b\x78\x88\x60\x10\xe5\x1d\x7b\x7b\x88\x13\x1b\xbb\x8c\ +\xdf\xab\xbd\xa9\xeb\x51\x50\xca\xbb\x63\x7b\x9f\x1f\xdd\xbd\xd6\ +\x66\xd0\x43\xa9\x83\xb5\xad\x4d\x91\xab\xb2\x00\x77\xbe\xa5\xe8\ +\xfe\x06\x72\xf9\xd7\xc8\xe4\xb5\xad\xf9\x7b\xb1\xb5\x43\xa6\x53\ +\xc6\xdf\x6a\x6b\x8f\xb8\xb6\xc7\x6d\xf7\x5e\x6d\x4d\x4c\xe7\x02\ +\x6b\x53\x64\xab\xbb\x57\xfe\x6a\x64\xbf\xbb\xba\x7d\x25\x6b\x3b\ +\xc4\xc3\xbe\xcb\xee\xd6\xda\x17\xd8\x9a\x21\x9f\xda\x3e\x75\x5f\ +\x8d\xec\xfe\x9a\x7d\xf7\xb6\xbe\xf3\x2c\xfe\xc6\x1c\x6e\xef\xac\ +\x6f\xbb\x3d\x39\xdc\x26\x6f\xb6\xf4\xe9\x72\x8b\x5b\x86\x12\x2b\ +\x91\xc9\x38\x6e\x0c\x55\x39\x46\xc7\x50\x0e\xf2\x98\x43\x09\xa6\ +\xf6\xe5\xf0\x37\x50\x1f\x21\x08\x37\xe2\xfe\x21\x82\x36\x46\xaa\ +\xad\x69\xe9\x59\x23\xc8\x3d\x1d\x16\xac\x5b\x05\x91\xca\x7f\xed\ +\x14\xa8\x9f\x11\xb0\x1d\xae\x07\xfd\x2d\x03\x6f\xf3\x6d\xda\x41\ +\xd0\x46\xae\x6f\x33\x9f\xed\x27\x68\xee\x72\xcb\x3c\xcc\x0a\x75\ +\x33\x6f\x46\x22\x03\x6d\xd5\x03\x15\xd3\x41\x2e\x71\xa0\xc9\x74\ +\xcf\x90\xdf\x6a\x79\xee\x7b\xae\xe3\xd8\x7b\x4b\x2d\xc2\xf2\xb9\ +\xcf\x52\x2d\xd0\xfa\xad\x40\x10\x67\x0e\xe3\xbe\xc3\x16\x9b\xcb\ +\x03\xe6\xd8\x0e\xea\x99\x88\x51\x67\x9b\x47\x8e\x88\xab\x0e\xcf\ +\x58\x19\x9c\x20\x7d\xee\x52\x03\x77\xcc\xa6\xf6\xce\x5c\x97\x1d\ +\x6b\x1f\xc9\x0c\x76\x52\xca\xdc\x8c\x96\xf9\x2a\x2c\x97\xb9\xe8\ +\xf8\xe7\x7b\xd2\xfa\x17\xa3\xae\xa7\x76\x4b\xed\x7f\x18\x1c\x02\ +\x52\x53\xfb\x74\xb6\xef\x5d\xe7\xfa\x5e\xd0\x7e\xac\x8b\x89\x6d\ +\xfc\xc5\x80\xb0\xf2\xd4\xe1\xf7\xe9\xdc\xe3\xe5\xf7\xaa\x73\xd3\ +\x2c\xbd\xa6\x73\x4f\x26\x78\x4d\xe7\x52\x6c\x9a\xdc\xbb\x99\xa7\ +\x81\x7e\x63\x01\x13\xe6\xa2\x10\xf9\x6a\x5f\x3a\x6a\x3c\x64\x56\ +\x9a\xfa\x1c\x50\xc9\xe7\x61\xfa\xa4\x29\x6b\x9d\xe8\x3a\xa4\x22\ +\xf9\x22\x02\x68\x08\x3d\x8d\x17\xf1\x01\x19\xa5\x7e\xf5\xf0\x37\ +\xc0\x7f\xdc\x89\x4d\xc3\x79\x92\x6e\x83\x02\xf2\x8f\x09\x2b\x26\ +\xd3\xa7\x54\x94\x2a\x03\x55\xcf\x4d\x03\x0c\x03\xd7\x32\x8f\x3b\ +\x84\x5d\x79\xa8\x4c\x71\x50\xc7\x2b\x43\xb5\xf3\x78\x6d\x25\xdc\ +\x79\x35\xa0\xb3\xb0\x87\x74\xcb\xe6\xf0\x4e\x16\x56\xa9\xd5\x87\ +\xb6\xbd\x03\xb2\x82\x8a\x79\x64\x0f\x72\x93\x35\x47\x03\x00\x3b\ +\x15\xdf\xc1\x0a\x8c\x70\x4a\xe8\x23\xb4\x07\x0e\x24\x67\xe7\xfb\ +\x63\x8b\xf4\xbd\x3c\xe9\x13\xd8\xbf\x40\x19\x96\xa0\x7b\xb6\x7f\ +\x06\xdb\x3c\x36\xce\xa5\xb2\x89\x82\x75\xb0\xe7\xea\xad\xaa\x01\ +\xcc\xa3\xa4\x45\xef\x55\xf6\x84\xba\x07\xf6\xae\x4c\x09\xcd\x1e\ +\xe1\xf6\x81\x21\x09\x82\xca\x7a\xc2\x94\x27\xe0\x1f\xbb\x43\x4b\ +\xef\x70\x0c\xbf\x00\xea\x87\x2b\xee\x1a\x02\x40\xd8\x23\xb6\xdf\ +\x71\x45\x86\x11\x71\xda\x77\x54\x6d\x4f\x34\xe9\x65\xbe\xf8\x16\ +\x4f\x32\x59\xd7\x97\x8e\x77\xdb\xbf\xdf\xaf\xec\x4a\xde\x87\x2b\ +\xf5\xb8\x12\x73\x11\xe3\x36\xf6\x3a\xbd\x25\xe7\xc8\xa6\x8e\x77\ +\xca\x95\xcc\x0b\x13\xdb\xdb\x9c\xa9\xf5\xc0\xf0\xc4\x8e\xfb\xf7\ +\xfc\x95\xdd\x89\x36\xee\x74\x91\x72\xa7\x15\x70\x30\x72\x3c\x1b\ +\xba\xd1\x1b\x69\xd0\x0b\x38\xb4\xf0\xe3\xff\xfc\xfb\x23\x52\xce\ +\x4d\xba\xff\xbb\xfe\x43\xa8\xe0\x9b\x86\xca\x79\x99\xf7\xe6\x55\ +\x1c\x7f\x38\xd4\xb9\xa9\xf7\x75\x87\xba\x71\xf6\x3d\x37\xff\xde\ +\xdc\xa9\xf8\x87\x53\x9d\x7b\x97\xf2\x4a\x6b\x68\xde\xb8\x3d\x34\ +\x5d\x93\x76\x7d\xea\xc4\xed\xc6\xad\x5b\xc4\xdf\x5f\xd3\x4f\x28\ +\xc0\x1d\xc4\x28\xa5\x8e\xff\xff\xad\xe9\x00\xf7\x47\x55\xbf\xa0\ +\xaa\xbf\xda\xff\xde\xba\x03\x36\xc9\x59\x85\xfd\xd6\x3d\x30\xf9\ +\xdd\xf1\x72\x42\x81\x77\xd2\x03\x9b\xce\x47\xbc\x5c\x52\x5f\x5e\ +\x8f\x17\x76\xe3\x78\x71\xce\x4b\xcf\x37\x8e\x17\xf7\xda\xf5\xe5\ +\xbd\xc4\x0b\xfe\x88\x97\x4b\x9a\xfc\xd7\xfb\xb1\x56\x62\xbc\x4d\ +\xc0\xf0\xae\xbf\x9d\x68\xf2\x6f\xdd\x90\xe1\x6b\x3f\x64\x79\x2f\ +\x0d\x19\x3b\x19\x30\x67\xbd\x5a\xaa\x5e\x77\x7f\xfd\x17\xa7\x84\ +\x21\xa6\x8f\x47\x6c\x44\x06\x6e\xbd\x48\x3c\x75\xbe\xea\x79\x99\ +\xca\x71\xeb\x85\xf6\x75\x5f\xb2\xdd\x0c\x09\xea\xa0\xdd\x37\xf9\ +\x6f\x46\xa2\x75\xf3\x73\xaf\x58\xf8\x48\x7d\x90\xf0\x76\xa7\x30\ +\x29\xbf\x77\x2c\x38\xbe\x02\x0a\xad\xc7\x84\xf7\x0a\x43\xf5\x91\ +\xca\x55\x7c\xc2\xbc\x7f\xaf\xa8\xbe\x7a\x72\xae\x03\x87\x79\xff\ +\xe9\xb3\x76\x0f\x0f\xb1\xdd\x47\x29\x1d\x5c\xec\x93\xe7\x27\x71\ +\x21\xf7\x0e\xc9\xfe\xb3\x0d\xb8\x1b\xa6\xea\x93\x3a\xda\xc6\xc4\ +\x3b\x71\x7a\x1a\x90\xfb\x2f\x2c\x76\xd5\x6d\xb0\x47\xe6\x20\xaa\ +\xcb\xed\x1b\x21\xb9\xfb\xc0\x81\x49\xf5\xd7\x96\x57\xf4\x92\xfb\ +\x07\x85\x21\x7a\x35\x0f\xf9\x06\x8a\x6f\xf3\xff\xa2\x57\x04\xc5\ +\xbb\x18\x96\xa1\x35\x1b\x3f\x0c\xd5\x7f\x89\x8e\x1f\xfe\x0b\x5f\ +\x2f\x09\x26\ +\x00\x00\x08\xae\ +\x00\ +\x00\x1e\xc0\x78\x9c\xed\x59\x5b\x8f\xe2\x56\x12\x7e\xef\x5f\xe1\ +\x65\x5e\x12\x2d\x36\xe7\x7e\xa1\xe9\x8e\xb4\x19\x45\x8a\x94\x7d\ +\xd9\x4d\x94\xc7\xc8\xd8\x07\xda\x3b\xc6\x46\xb6\x69\x60\x7e\x7d\ +\xbe\x63\x63\x03\x0d\xcc\xcc\x6a\x7a\xd4\x59\x69\x21\x33\x83\xab\ +\xea\x5c\xea\x3b\x5f\xd5\xa9\x72\x66\x3f\xec\x56\x79\xf0\xec\xaa\ +\x3a\x2b\x8b\x87\x11\x8d\xc8\x28\x70\x45\x52\xa6\x59\xb1\x7c\x18\ +\xfd\xf6\xeb\x4f\xa1\x19\x05\x75\x13\x17\x69\x9c\x97\x85\x7b\x18\ +\x15\xe5\xe8\x87\xc7\xbb\xd9\xdf\xc2\x30\xf8\xb1\x72\x71\xe3\xd2\ +\x60\x9b\x35\x4f\xc1\xcf\xc5\x87\x3a\x89\xd7\x2e\xf8\xee\xa9\x69\ +\xd6\xd3\xc9\x64\xbb\xdd\x46\xd9\x41\x18\x95\xd5\x72\xf2\x7d\x10\ +\x86\x8f\x77\x77\xb3\xfa\x79\x79\x17\x04\x01\xd6\x2d\xea\x69\x9a\ +\x3c\x8c\x0e\x03\xd6\x9b\x2a\x6f\x0d\xd3\x64\xe2\x72\xb7\x72\x45\ +\x53\x4f\x68\x44\x27\xa3\xa3\x79\x72\x34\x4f\xfc\xea\xd9\xb3\x4b\ +\xca\xd5\xaa\x2c\xea\x76\x64\x51\xbf\x3b\x31\xae\xd2\xc5\x60\xed\ +\x77\xb3\xe5\xad\x11\xb5\xd6\x4e\x08\x9b\x30\x16\xc2\x22\xac\xf7\ +\x45\x13\xef\xc2\xf3\xa1\xd8\xe3\xb5\xa1\x8c\x10\x32\x81\xee\x68\ +\xf9\x65\x56\xd3\x1a\x80\xae\xf1\x67\x30\xef\x05\x51\x5d\x6e\xaa\ +\xc4\x2d\x30\xce\x45\x85\x6b\x26\xef\x7f\x7d\x3f\x28\x43\x12\xa5\ +\x4d\x7a\x32\x4d\x8f\xe7\xd9\xaa\x67\x20\x17\xf1\xca\xd5\xeb\x38\ +\x71\xf5\xa4\x97\xb7\xe3\xb7\x59\xda\x3c\x3d\x8c\xb8\x88\x28\xc7\ +\x47\xb6\xc2\x27\x97\x2d\x9f\x9a\x97\xd2\x2c\x7d\x18\x61\xf7\xcc\ +\x9a\xee\xf9\x84\x1c\xb4\x33\x38\x4c\x3c\x1d\x34\x24\xb2\x2c\xa2\ +\x41\x45\x25\xd7\x9d\x4d\xef\xc2\x34\x2d\x13\xbf\x27\x4c\xe9\x56\ +\x59\xbc\x69\xca\x15\x4e\x2d\x49\xf2\xb8\xae\xb3\x45\x96\xe0\xa1\ +\x2c\xd6\xf9\x66\x99\x15\x7f\x54\x65\xf6\x47\xb9\xf6\x82\x3a\xea\ +\xe1\x1b\xd6\x72\xbb\x75\x59\x35\xe1\x2e\x5d\x03\x44\xa5\xaf\x2a\ +\xf7\xa7\xca\xe7\xcc\x6d\xff\x51\xee\xb0\xb9\x80\x04\x9c\xe1\xbf\ +\xd1\x23\xe4\xb3\xd4\x2d\x6a\xaf\xef\x1c\xf5\x4f\xf0\x54\x8f\x82\ +\x49\xab\x1d\xf6\xed\x37\x9d\xfa\x39\x8e\xb6\xf3\xb8\xee\xc0\x0c\ +\x82\x75\xbc\x04\xf1\xf2\xb2\x7a\x18\xbd\x5b\xb4\x9f\x83\x62\x5e\ +\x56\xa9\xab\x7a\x95\x6a\x3f\x67\xaa\x12\x87\x93\x35\xfb\x2e\xd4\ +\x0e\x73\xf7\x6e\xf8\x59\x07\x3d\xb9\xae\xaf\x9f\xe2\xb4\xdc\x3e\ +\x8c\xd8\x4b\xe5\xc7\xb2\x5c\x3d\x8c\x74\x64\xa9\x21\x82\xea\x97\ +\xea\x04\x48\x84\x3a\xa2\x4c\x2b\xaa\x2e\x06\x27\x58\x90\xe9\x48\ +\x50\x6e\xe5\x85\x6e\x53\x55\x88\xc5\x30\x8f\xf7\x0e\x4e\xb5\xff\ +\xd0\x83\x51\xfd\x54\x6e\x97\x95\x07\xa7\xa9\x36\xee\xe5\x48\xaf\ +\x09\xe7\x73\x7f\x08\xd7\xd4\xa0\xc6\xc6\x47\x79\xb8\x29\xb2\x06\ +\x91\xb4\xde\x9d\xce\xba\xc9\x52\x57\x5f\x1f\x58\x17\xf1\x3a\x5c\ +\xe6\xe5\x3c\xce\xaf\x1b\x6c\xb3\x02\x20\x85\x07\xd2\x53\x3e\x9c\ +\xc1\x4b\x8b\x3e\x02\x34\xb1\x37\x2c\x3c\x81\x6e\xa8\xf6\xb7\x55\ +\xab\x78\x97\xad\xb2\x8f\x0e\xc0\xd0\x96\x76\xa0\xd6\x19\x2c\xdd\ +\xb0\x20\x68\xf6\x3e\x9a\x77\x7b\x2f\x1b\xf5\x42\x8f\xa7\x17\x30\ +\x6b\xf5\x20\x2c\xab\x0c\x41\x72\xb2\x9d\x5e\xb4\x3f\x15\xf9\xd8\ +\x47\xea\xde\xf9\x75\x5f\xc8\x3c\xe7\x7a\x9a\x4f\x2e\x79\xde\xca\ +\x57\xae\x89\xd3\xb8\x89\x8f\xa4\xef\x25\xd8\x0b\xe9\x3d\x41\xda\ +\x9c\xfe\xeb\xfd\x4f\x8f\x87\x05\x66\x49\x32\xfd\xbd\xac\x3e\xf4\ +\xeb\x05\x81\x37\x88\xe7\xe5\x06\xc8\x8e\x1e\x07\xf1\x2c\x4d\xa6\ +\x48\x74\x48\x00\x8f\xd9\x0a\x54\xf6\x39\xf2\xef\x48\x6c\xb3\xc9\ +\x51\x71\x66\xec\xc1\x39\x4e\xda\x4d\x5b\xb9\x2e\x63\x5e\xbd\x36\ +\xd2\x64\x95\xf9\x41\x93\x7f\x37\x59\x9e\xff\xec\x17\x39\x78\x7c\ +\x32\x69\xd6\xe4\xee\xb1\x5d\xb3\xfb\xd9\x7b\x31\x39\xb8\x71\x70\ +\x72\x72\xe2\xe5\x6c\xd2\xc3\xd0\x3e\x2d\x8f\xf0\x9c\x45\xc3\x70\ +\xc2\x79\x3c\x77\xa0\xe6\x2f\x5e\x19\x5c\x68\x97\x55\xb9\x59\xaf\ +\xca\xd4\x1d\x86\x0f\xb0\xba\xa4\x19\xce\xac\xd9\xe7\xd0\x2f\xe0\ +\xc6\xf4\x9d\xb3\xf1\x9c\xaa\x7b\xff\x10\x1e\xf2\xc3\x94\x76\x8f\ +\xd5\x26\x47\xfa\x7b\x76\x45\x99\xa6\xf7\x75\x53\x95\x1f\xdc\xf4\ +\x1d\x35\xa9\x5a\x2c\x0e\x8f\x5d\x14\x4c\x59\x44\xb8\x25\x5a\x08\ +\xd6\xcb\x01\x95\xab\x72\xd0\xb4\x99\x8a\x5e\x96\xc6\xc8\x2f\x55\ +\x15\xef\xa7\x05\x6e\xfb\x5e\x3a\xac\x79\xc6\x50\xbf\x5d\xb0\xc2\ +\x0e\xc2\xfe\x8e\x39\xb2\x71\xb8\x60\x8e\xa2\x33\x66\xee\x4f\x1f\ +\x2a\xa8\x44\x04\xca\x33\x76\x22\x84\x09\x8f\xa4\xd2\x44\x73\x35\ +\x9c\xe5\x6c\x1d\x37\x4f\x57\xa1\xb2\xed\x67\x40\xa2\xcb\xcd\xe7\ +\x48\x70\x20\xa1\xa5\x64\x6a\xbd\xeb\x15\x79\x56\x38\x1c\xcd\x74\ +\xbe\x69\x9a\x53\xd9\x7f\xca\xac\x98\xb6\x38\xdd\x86\xc2\xc7\x48\ +\x40\xd5\x58\x07\x49\x40\xc6\xd4\x1c\xff\x3a\x43\xcb\xef\x98\x6b\ +\x65\x43\x75\x14\x0f\x19\xb6\x2c\xb0\x7e\x53\x56\x21\x72\xed\x73\ +\xdc\x6c\x2a\xe7\x63\xfa\xf3\xde\x1a\xe2\xbf\x9f\xf1\x96\x2b\xa1\ +\xb5\x52\xf4\x15\xdd\xd5\x63\x2a\x71\x28\x02\x5f\x78\x4d\xcd\x98\ +\x1c\xff\xba\xf4\xda\x08\xfd\x8a\x3e\x0b\xc3\x35\xd7\x83\xcf\x4c\ +\xf8\xef\x4b\x9f\x19\xb7\x42\x0b\xfe\xdf\x3b\xfc\x35\x41\x01\x7f\ +\xff\x19\x50\x11\x11\xad\xb5\xe5\x63\xaa\x22\x49\x95\xd6\x01\x93\ +\x91\x11\x42\x80\x23\x32\xa2\x82\x58\x4b\xe9\x25\x48\x38\xc7\x57\ +\x04\x09\x15\xe8\x82\xb1\x2f\xcf\x18\xd7\x50\x44\x01\x22\x85\x20\ +\xc6\x7e\x0a\x9b\xdb\x28\x08\x61\x0c\x67\x63\x46\x23\x25\x24\x67\ +\x36\xd0\x91\xe2\xd6\x30\x39\x46\xa1\x21\x35\x15\x8c\x07\x3f\x42\ +\x48\x84\x22\x4c\x8f\x99\x89\x88\x31\x08\xfd\x40\x46\x8a\x31\x8c\ +\x1d\x7b\xdc\x94\xb1\xd4\x42\x44\xac\xc4\x91\x7a\x11\x52\x8e\x30\ +\x32\xf8\x25\xe0\x91\xd1\xf0\x13\x4b\xf0\xc8\x82\xe0\x42\x62\x3e\ +\xd0\x5d\x30\x49\xa5\x17\x0a\xa2\x19\xb1\x10\x51\xae\x09\x97\x7e\ +\x2b\xd6\x4a\xcc\x0d\x91\x06\xe0\xdd\xee\x84\x36\x82\xe9\x20\x0f\ +\x54\x64\x88\x25\x44\x8f\x43\x89\x72\x56\x11\xcb\x7d\x44\x47\x5a\ +\x2a\x29\xcd\x18\xb5\xb8\x92\x46\x48\x15\xa0\xd2\x25\xd4\x08\xeb\ +\x45\x9a\x2a\x82\xcd\x30\x1c\xb0\x31\x52\x79\x11\x65\x0c\xf5\x17\ +\x12\x00\xc2\x21\x02\xa8\x98\xdc\x8b\x89\xa2\x84\xc1\x90\x69\x69\ +\xe8\x98\x61\x73\x4a\x19\xe4\x89\xc8\x48\x8a\x08\xf1\x12\x70\x05\ +\xdb\x85\xad\xe4\x88\x58\x36\x06\x8d\xa9\xd4\x1c\x22\xea\x7f\x29\ +\xcd\x21\x42\xc0\x73\x61\x82\x8f\x17\xa9\x18\x4b\xc9\x2f\x66\xd0\ +\x40\x9a\xa1\x0c\xc0\x75\xe4\x6f\x4e\x54\x5c\x75\xfb\x49\x3e\xd6\ +\x47\x9e\xb9\x3c\xcf\xd6\xb5\xbb\x4a\xb5\x03\x75\xbe\x98\x6a\xd7\ +\x92\x14\x5c\x06\xd7\x08\xdc\x7f\xad\xcb\xa9\x8d\x29\xcb\x78\xc8\ +\x07\x71\x53\xc5\x45\xed\xcb\x0c\x64\xb0\xb8\xa9\xb2\xdd\x77\xfe\ +\x58\xa4\x54\x8c\xb2\xf6\x7c\xad\xc5\xf9\x52\xb0\xcc\xff\xd6\x4a\ +\x70\x21\xa5\xff\x0d\xec\x0d\x28\x24\xc7\x38\xd3\xef\x87\xe9\xda\ +\x82\x1a\x2c\x63\x4a\x58\x75\x5c\xc5\x57\xd2\xa1\xf0\x7c\x50\x18\ +\x73\x76\xb9\xf9\x54\xcc\x38\xe1\x67\x97\x1b\x8b\x2c\x98\xc1\xe9\ +\xe7\x83\xfa\xc4\xe9\x36\xc0\xf1\x79\x89\x22\x3a\x4f\xce\xd8\x9b\ +\xa4\x3d\x10\xd9\x52\x2e\xad\xbf\x19\x04\x27\x0c\xd1\x83\x4c\x68\ +\x18\x97\x6d\x94\x71\xa9\xb8\xd1\x17\x47\x24\x8d\x55\xe1\xe9\x21\ +\x7d\x4d\xea\x6b\xbb\xae\x01\x9a\x34\xab\xd7\x28\xaf\xd0\x33\x7b\ +\x97\xef\x4b\x34\xab\x8b\xbc\xdc\x4e\x9f\xb3\x3a\x9b\xe7\xee\xbe\ +\xfd\x37\xcb\xbd\x2f\xbd\xe8\x12\xe6\xb9\xf3\xdf\x97\x30\x6b\xf4\ +\x58\x08\x63\xf1\x2d\x71\xf6\xd2\x72\xb1\xa8\x5d\x33\x25\x17\xd8\ +\xdf\xaf\xe2\xea\x83\xab\xba\x01\xae\x88\xb1\xf9\x70\x1e\x27\x1f\ +\x7c\x65\x59\xa4\xd3\x38\x41\x63\xb5\xc9\xe3\xc6\x5d\x64\x65\x85\ +\xcb\x53\xd1\x31\xb5\x91\x30\xd6\x58\x1d\x58\xa4\x67\xa6\x6c\x9b\ +\x45\xa5\xb0\xf2\xd6\x11\xd1\x57\xbc\x9d\x98\xa2\x48\x96\x2f\x53\ +\x46\x8f\x79\xa2\xfd\xf7\x2d\x30\xbf\x55\xdc\xb1\xc8\x67\x03\x0f\ +\x1b\xae\x74\x8b\xe4\x1f\x84\xbe\x50\x45\xc2\x1e\x83\xe3\xd2\x2a\ +\x22\x6e\xc2\x16\xda\xd7\x03\xee\x0b\x32\x80\x36\xcc\x68\x66\xd4\ +\x1b\xa4\x80\x63\x99\xe3\x5f\x24\x28\x2a\x94\xf5\x05\x21\xbd\x49\ +\xa9\x57\x44\xe6\x46\xc1\x73\x82\x95\xd7\xfe\x65\x8a\x44\xe6\x19\ +\x65\x88\x42\x4d\x82\xb2\x82\x4a\xcb\xa5\xcf\xa0\xb8\x48\x8d\x46\ +\x06\xc5\xb5\xc4\x04\xd5\x97\xe9\xd2\x57\x89\xe1\x2b\x16\xd3\x7f\ +\x65\x42\xb5\x71\x87\x68\xb3\x40\xc9\xa2\xd4\x63\x82\x5b\x1a\x18\ +\xdc\x24\x04\x25\x16\x38\x86\x8a\x8a\x6a\x66\x6f\xb2\xeb\x35\x3b\ +\xad\x33\xa0\xae\x55\x30\x34\x22\xa8\x68\x95\xa0\xf4\x2d\x80\x22\ +\x91\x90\x8c\x0a\x04\x1b\x9a\x5b\xe9\x21\xeb\x81\xe2\x3d\x50\x97\ +\xe5\xd1\x80\x93\x0d\xd9\x57\x22\xd5\x57\x91\xdd\xdb\xac\xb8\x4a\ +\x46\xdf\xe4\x6a\xfe\x6c\x5b\x03\xac\x3e\xba\xaa\x3c\xb6\x35\xdc\ +\xc8\x23\x75\x0f\x94\xfe\x1f\xba\xb5\x8f\x95\xec\xc9\x6b\x96\x01\ +\xed\xb6\x02\x45\x68\xa0\x6d\xa2\xea\x8a\x1a\xd5\xa5\x8d\x38\x30\ +\x30\xea\xca\xe8\xae\x22\xd5\x16\xdd\xd2\x95\xc1\xdd\x7b\x17\x8b\ +\x89\xb9\xe1\xe7\x6c\x0b\x95\xef\xc6\xf4\x78\x98\x3b\x88\x83\x7e\ +\xa2\xf1\x30\x26\xf0\xaf\xdd\x69\x10\xfa\x56\x0b\x5d\x92\x90\x9d\ +\x0a\xcd\x11\xfd\xa4\xb5\x11\xaa\xed\xdf\xfc\x4f\xa2\x34\x7a\xc3\ +\xdb\xe6\x1c\x9d\x22\xca\x18\x36\xc6\x75\x8c\xc2\x97\x23\x9f\xa3\ +\x8f\x43\x0b\xa6\x14\x21\xc6\x9b\x53\x8d\x84\x2a\x4f\xba\xa5\xc1\ +\xc1\xba\x89\xab\xe6\x6a\x2b\xe4\x8a\xd4\xbf\x88\x42\x7b\x86\xc5\ +\x8f\xd0\x5c\x6f\x1f\xd0\x9f\xe2\x0a\x51\x5d\xfb\xa0\x51\xd7\x08\ +\x3e\x6e\x7f\xa2\x5c\x91\x5d\xdf\x87\x46\x58\x2b\xdb\x35\x0f\xff\ +\x0f\x9f\xb7\x0a\x9f\xf0\x46\x00\xa1\x37\x31\x56\xa0\xeb\xbb\x1e\ +\x40\x21\x13\xe8\xda\xa4\x22\xd7\x62\xe4\x10\x41\xd4\x72\xa2\x6f\ +\x87\x90\x7f\x1f\x70\x1e\x41\xa8\x94\x40\x2e\xca\xd0\x69\x0e\xd3\ +\x1f\x82\xa8\x9d\x6b\xdc\x0f\x3b\x0d\x22\x25\x4d\xa7\x00\xa7\xd5\ +\x27\x6d\xfd\x5b\x0a\x34\x62\x6d\x04\x69\x4e\x6f\xdb\xb6\xf1\xc3\ +\xb9\x38\xc4\x0f\xa6\x3e\x84\x8f\xb4\x86\xb5\xe1\x83\x82\xee\x5b\ +\x46\x0f\x91\x86\x09\x22\xda\x88\x41\xf7\xcd\x49\xd7\x7b\xfb\xdf\ +\x92\xb6\x3d\x39\xf1\xef\xa0\x38\xb2\xcd\x49\xf8\xcc\x26\xcb\xc7\ +\xbb\x99\xff\xbf\x07\x8f\x77\x7f\x02\x11\xca\xfc\x10\ +\x00\x00\x07\x56\ +\x00\ +\x00\x62\xc2\x78\x9c\xed\x5c\xdd\x8f\x9b\x38\x10\x7f\xdf\xbf\x82\ +\xa3\x2f\xad\xee\x0c\x18\x08\x5f\x4d\xb6\x0f\x57\x55\xaa\x74\x4f\ +\x77\x3d\xdd\x63\xe5\x05\x27\x8b\x4a\x20\x02\xb2\x49\xfa\xd7\xdf\ +\x98\xaf\x40\xc2\x56\x6d\x6d\xee\xdc\x12\xa4\x6a\x8b\x67\x0c\xe6\ +\x37\xbf\xb1\x67\x3c\x84\xe5\x9b\xe3\x36\x51\x9e\x68\x5e\xc4\x59\ +\xba\x52\xb1\x66\xa8\x0a\x4d\xc3\x2c\x8a\xd3\xcd\x4a\xfd\xfb\xc3\ +\x3b\xe4\xa9\x4a\x51\x92\x34\x22\x49\x96\xd2\x95\x9a\x66\xea\x9b\ +\xfb\xbb\xe5\x2f\x08\x29\xbf\xe7\x94\x94\x34\x52\x0e\x71\xf9\xa8\ +\xbc\x4f\x3f\x15\x21\xd9\x51\xe5\xe5\x63\x59\xee\x02\x5d\x3f\x1c\ +\x0e\x5a\xdc\x34\x6a\x59\xbe\xd1\x5f\x29\x08\xdd\xdf\xdd\x2d\x8b\ +\xa7\xcd\x9d\xa2\x28\x70\xdf\xb4\x08\xa2\x70\xa5\x36\x1d\x76\xfb\ +\x3c\xa9\x14\xa3\x50\xa7\x09\xdd\xd2\xb4\x2c\x74\xac\x61\x5d\x3d\ +\xab\x87\x67\xf5\x90\xdd\x3d\x7e\xa2\x61\xb6\xdd\x66\x69\x51\xf5\ +\x4c\x8b\x17\x3d\xe5\x3c\x5a\x77\xda\x6c\x34\x07\xab\x52\xc2\xbe\ +\xef\xeb\x86\xa9\x9b\x26\x02\x0d\x54\x9c\xd2\x92\x1c\xd1\xb0\x2b\ +\x8c\x71\xac\xab\x69\x18\x86\x0e\xb2\xb3\xe6\xd7\x69\x05\x05\x00\ +\xba\x83\x7f\x9d\x7a\xdb\xa0\x15\xd9\x3e\x0f\xe9\x1a\xfa\x51\x2d\ +\xa5\xa5\xfe\xf6\xc3\xdb\x4e\x88\x0c\x2d\x2a\xa3\xde\x65\x5a\x3c\ +\x07\x77\x1d\x80\x9c\x92\x2d\x2d\x76\x24\xa4\x85\xde\xb6\x57\xfd\ +\x0f\x71\x54\x3e\xae\x54\xcb\xd6\xb0\x05\xc7\xa2\x6a\x7c\xa4\xf1\ +\xe6\xb1\xbc\x6c\x8d\xa3\x95\x0a\xa3\x37\x7d\xaf\x3e\xef\x91\x03\ +\xd7\x0a\xcd\x85\x83\x4e\x62\x68\xbe\xa9\x61\x25\xc7\x0b\xcb\xad\ +\x75\xda\x47\x08\xa2\x2c\x64\x63\x82\x4b\xd2\x6d\x4c\xf6\x65\xb6\ +\x05\xab\x85\x61\x42\x8a\x22\x5e\xc7\x21\x9c\x64\xe9\x2e\xd9\x6f\ +\xe2\xf4\x23\x8d\xe2\xf2\x63\x4e\x8a\x92\xe6\x5a\x0b\x5f\x77\x2f\ +\x7a\xdc\x65\x79\x89\x8e\xd1\x0e\x40\x74\xdc\x51\xe1\xa9\x15\xde\ +\x83\x74\x19\xd1\x75\xc1\xb4\xea\x27\x62\x67\xf0\x48\xae\xaa\xe8\ +\x95\xb4\x1b\x20\x1b\x5d\xf4\x14\xd3\xc3\x59\xf7\x81\x14\x35\x6a\ +\x8a\xb2\x23\x1b\x60\x58\x92\xe5\x2b\xf5\xc5\xba\x3a\x1a\xc1\x43\ +\x96\x47\x34\x6f\x45\x4e\x75\x0c\x44\x19\x58\x21\x2e\x4f\xb5\x4f\ +\x35\xd7\x6e\xc7\xcb\xae\xda\xc9\x8d\x71\x79\xf1\x48\xa2\xec\xb0\ +\x52\xcd\x4b\xe1\xe7\x2c\xdb\xae\x54\x57\xf3\xb1\x67\xd8\xd8\xbd\ +\x14\x87\xc7\x95\x8a\xb0\xab\x99\x9e\xe3\x76\x43\x3a\x4b\xe1\x86\ +\x0b\xcd\xf6\x1d\xc3\xc7\xf8\x4a\xb8\xcf\x73\xf0\x3a\x94\x90\x13\ +\x85\xa7\xaa\xfe\xb4\x4a\xc5\x63\x76\xd8\xe4\x0c\x9d\x32\xdf\xd3\ +\xcb\x9e\x4c\x82\x1e\x1e\xb2\xe3\xb8\x18\x48\xb0\x67\xfe\x8c\xf6\ +\x69\x5c\x82\xcf\xec\x8e\xfd\xab\xee\xe3\x88\x16\xe3\x1d\x8b\x94\ +\xec\xd0\x26\xc9\x1e\x48\x32\xae\x70\x88\x53\x40\x09\x35\xf4\xc6\ +\xd6\xf5\x13\x37\x1a\x2d\xd7\x5d\xc3\x7b\x46\x03\xc6\x7e\x65\x88\ +\x46\x74\x7a\x5e\xb4\x25\xc7\x78\x1b\x7f\xa6\x00\x0c\xae\x78\x07\ +\xdc\x1a\xc0\x52\x77\x53\x94\xf2\xc4\xfc\xf6\x78\x62\x6d\x6a\xdb\ +\xc8\xf0\x64\x0d\xa6\xef\xbb\x5d\x63\x96\xc7\xe0\x0e\xbd\xe1\xb4\ +\x4d\xa7\x7e\x13\xf3\x72\x98\xa4\x8f\x15\xc1\x2a\xfa\xb9\x97\xb2\ +\x53\x5f\xd6\xf0\x5e\xbf\x26\x7e\xd5\xbe\xa5\x25\x89\x48\x49\xce\ +\x5e\xd0\xb6\xc0\xd8\x8c\xf6\xc9\x60\xc2\x0c\xfe\x7c\xfb\xee\xbe\ +\xb9\xd1\x32\x0c\x83\x7f\xb2\xfc\x53\x7b\x5f\x45\x61\x0a\xe4\x21\ +\xdb\x03\xd2\xea\x7d\xd7\xbc\x8c\xc2\x00\xa6\x38\x70\xfd\xfb\x78\ +\x0b\xdc\x66\xb3\xe3\xaf\x30\xa5\x2d\xf5\xb3\x60\xa0\xcc\xc0\x3a\ +\x5f\xb4\xbe\x6c\x4e\xeb\xb9\x72\x74\xc1\x88\xc2\x6d\xcc\x3a\xe9\ +\x7f\x95\x71\x92\xbc\x67\x37\x69\x9e\xb8\x77\xd1\xb8\x4c\xe8\xb9\ +\x71\xa9\x37\xa3\x6f\x9e\x4d\xef\x3d\xdc\x52\x6f\x9f\xbe\x3a\xdb\ +\x9c\x51\x19\x38\x45\x67\xe8\x84\x3c\x50\x60\xe8\x1f\x4c\xa8\x5c\ +\x49\x37\x79\xb6\xdf\x6d\xb3\x88\x36\xdd\x3b\x34\x69\x58\x76\x26\ +\x2b\x4f\x09\xc8\xd7\x30\xfa\xe0\x85\x61\x10\xe2\x79\xaf\xd9\x09\ +\x6a\xe6\x89\x00\xd7\xa7\xf9\x3e\x81\xf9\xee\x89\xa6\x59\x14\xbd\ +\x2e\xca\x3c\xfb\x44\x03\x98\x99\x1c\x62\x18\xcd\x69\xed\x0c\x81\ +\xa1\x59\x6c\x21\x32\x0c\xb3\x6d\x07\x84\x68\x9e\x00\x5b\xcb\xc0\ +\x6e\xdb\x22\x02\xf3\x4c\x9e\x93\x53\x90\xc2\xf2\xde\xb6\x76\xf7\ +\x1c\x10\x95\x0d\x77\xe1\x59\x3e\xc2\xc8\xeb\x04\x8d\xe7\x2d\x34\ +\xcb\x3a\x2f\x21\xec\x68\x1d\xce\xd6\xfc\x4a\x62\x77\x12\x46\x59\ +\x43\xbb\xa0\x2c\x70\xd5\xd2\xbc\xc1\x3c\x0a\x66\x1f\x38\x41\x5e\ +\xf1\xd9\xb1\xd9\xe1\x74\xd6\xfd\x91\x51\x44\x78\x0a\x1c\xd1\xf5\ +\x84\xf0\xd3\x03\xe9\x4f\x01\x24\xb6\x34\x77\xa8\xf9\xd3\xe3\x88\ +\xd1\x62\x0a\x24\x3d\xcd\xab\x07\x3d\x1f\x24\xdd\x29\x70\x34\x2d\ +\x6d\x4e\xb3\x23\x5a\x4c\xc2\x46\xec\x69\x73\x5b\x68\xfc\x69\xf8\ +\x68\x59\x9a\x3d\xb3\x95\x06\x48\x89\x8c\x49\x7c\xdb\xd3\x16\x95\ +\xaa\x30\x2c\xd7\xeb\x30\x94\x15\x4b\x4e\x04\x8d\x01\x0b\x85\x07\ +\x8e\x91\x4d\x88\xac\xc8\x71\x07\x8d\xd7\xea\x33\xc4\x10\xd9\x53\ +\xa0\x38\x41\xe8\x2d\xb3\x13\x73\xe7\x81\x03\x37\x16\x1f\x6e\x4b\ +\x4e\x41\x8f\x17\xbe\x51\x0e\x8a\x87\x51\x6a\x0a\x1a\xdc\x9e\x3c\ +\x20\xa1\xf8\x4c\x45\x72\x12\xda\xc8\x9c\x82\x85\xe2\x71\x94\x9b\ +\x85\x96\x48\x12\x0a\x4d\xf3\x24\xe7\x9f\x33\x05\xfb\x84\x02\x28\ +\x37\xf1\xb8\x13\xbb\xe1\x1a\x2c\x3c\x35\x96\x9c\x7e\xf6\x34\x04\ +\x9c\x1d\x8e\x1e\xff\x66\xf6\x78\x5e\x22\x7c\x87\x41\x72\x77\xb6\ +\xb9\x71\x1c\x2e\x25\xc2\x77\x15\x24\x27\x22\xc4\x33\xdc\x53\xe2\ +\xf8\x9a\x32\xab\xfd\x99\x9a\x89\x62\x63\xeb\x39\xfa\x32\x77\x74\ +\x3d\x40\x70\x82\xfd\x05\x0f\x2e\x28\x2d\x84\x6c\xc3\xd5\xe6\xe5\ +\xa0\xe9\x5c\xae\xc5\xd5\x7e\x97\x6b\x89\xf5\x66\xe9\x81\xc4\xdc\ +\xf3\xe2\x28\x92\xc0\x49\x71\x49\x9e\xf4\x20\xfa\xdc\x9b\xff\xa3\ +\x20\x62\x91\x09\x8b\xf4\x20\xb2\x1a\x0a\x6f\x65\x6f\x14\x46\xef\ +\xb2\xae\xf2\xd3\x43\xe9\x72\x2f\x30\xa3\x40\x9a\xc2\x97\x6a\xe9\ +\x91\x64\xd5\x66\x64\xf0\x66\x83\xe3\xde\x2d\x3c\x74\x94\x1e\x4d\ +\x7f\x2a\x66\x42\x10\x59\x69\xce\x68\xcd\xa9\x4a\xce\xdc\xa1\xf8\ +\xb8\x9f\x7b\x9a\xb8\x3a\x81\xd4\x40\x72\xbf\xff\x30\x71\xf8\xb8\ +\x58\xd8\xb6\xb4\xe0\xf1\xa7\x31\x26\xd6\x2e\x1a\xe7\x88\xa2\x8d\ +\x4c\xde\x9a\xdf\x28\x90\xf3\x89\xc1\x3d\xc4\x5b\x69\xc1\xd3\x05\ +\xde\x92\xb3\xcf\xe3\x07\x6f\x94\x7d\xf3\x49\x5e\xaa\x2d\x1d\x9b\ +\xfb\xed\xf7\x69\x73\x16\xc9\x59\xc8\x36\x68\x27\x99\x04\xe7\x95\ +\xfc\x19\x96\xe0\x90\x46\x7c\xca\x27\x39\x11\x1d\xfe\x3d\x88\x31\ +\x1a\xce\x2c\x75\x36\x20\xd1\x13\x3b\x21\x8a\xcf\x96\x25\x27\xa2\ +\x0d\x54\xb4\x78\xab\x7e\xe3\x2b\xf3\xdc\xa0\x64\x65\x68\xe4\x73\ +\x6f\xd1\x8e\x26\x2b\xf3\xda\x78\xa8\xab\x57\x9e\xd8\x68\x5b\xe8\ +\x76\x83\xe4\x54\xac\x0a\xd1\xdc\xc5\xfc\xf1\x25\x66\x36\xbb\x36\ +\x4d\x15\x9a\xff\x57\x69\x73\xde\x43\x6c\x0a\xd1\xc8\xe7\xdd\xdc\ +\xc6\xd3\x15\xfe\xa4\xff\xdd\x8f\xcd\xff\xa2\x6c\x8f\x6f\x93\x6c\ +\x7e\x49\x8f\x21\x86\x09\x91\x97\x83\x43\x10\xe7\xc5\x41\xe6\xca\ +\xbc\xb1\xf6\x10\x3f\xa1\x5b\x37\xd2\xe3\x57\xd5\x9d\xb9\x97\xe4\ +\x21\x82\xc2\x77\x1d\xa4\x47\xd1\x15\xf0\x86\xdd\x10\x43\xf1\x29\ +\xb3\xf4\x20\x36\xd5\x66\xc1\x6b\x8a\xf8\x7c\x4f\x7a\x20\xab\x42\ +\x33\xf7\xbe\xf6\xc5\xd2\x2c\x3c\x3e\x94\x1e\xc6\xa6\xc6\xcc\x5d\ +\x65\xbe\x70\xec\x6f\x4e\x54\x36\xfd\x11\x6e\x2c\x13\x9f\x7f\x29\ +\x5c\xe6\x24\x2d\xd8\xd7\x82\xd8\xa7\xa0\xe0\xbf\x09\x29\xe9\x4b\ +\x30\x55\xf5\x46\xa4\xfb\x5b\x93\x28\x59\xd6\x2b\x75\xd4\x08\x00\ +\xaa\xd3\x81\x1a\x34\x5f\xf3\xba\x46\xa8\xfb\x3c\x50\xdf\x9a\x5f\ +\xf8\xd6\xd8\xf3\x2a\xc7\x6b\x95\xe1\x43\xf7\xda\x07\xd0\xd4\xae\ +\x8c\xeb\x5f\xe4\xf6\xbb\x57\x9f\xf6\xc2\x97\x3f\xef\xfb\x92\x45\ +\xbe\x60\xc6\xd1\x99\xbd\xdf\x73\x0c\xbd\x6f\xa0\x70\x1f\xde\x96\ +\xc2\x5e\x3d\x3b\x2d\x78\x28\xdc\xfb\x82\xd3\xff\x6c\x22\x67\x04\ +\xee\xa9\x4d\x54\xaf\x1b\x37\x2b\x7d\xbd\x95\xcc\x11\x6b\x4c\x6d\ +\x25\xff\xe6\x4a\xdf\x66\x24\xec\x68\xae\xcf\x8e\xff\xd6\x95\x60\ +\xc9\xf3\x6f\x66\xe2\x5f\x94\x4c\x53\x13\x6d\x21\xc3\xea\xa5\xba\ +\x37\xd3\x7c\x7f\xbc\xe0\xd6\x01\x92\x27\xdc\x83\x1c\xe4\xdc\x0c\ +\xc4\x1f\x2d\x4c\xe1\x3b\x83\x97\x6f\x6f\xb6\xf9\xfe\x48\x6e\x32\ +\xe7\xa9\x6a\xbe\x37\x13\x09\x08\xe3\x26\x33\x51\x5d\x4b\xbe\xd9\ +\x88\x3f\x8a\x9b\x64\x8a\xb3\x07\xdf\xa1\xbd\x59\xe7\xfb\x63\xec\ +\x09\x27\x39\x56\x02\x77\x6f\x46\xe2\x9f\xe6\x26\x73\x21\xfb\x47\ +\x72\xa2\xa5\xbe\xa9\x3f\xcf\x0d\x7f\x96\xec\x2b\xe2\xf7\x77\xff\ +\x02\x60\x10\xdc\xe1\ +\x00\x00\x07\xf6\ +\x00\ +\x00\x1f\x0c\x78\x9c\xdd\x59\x59\x6f\xe3\x46\x12\x7e\xf7\xaf\xe0\ +\xd2\x0f\x49\xb0\x26\xd9\xf7\xc1\x91\x14\x20\x3b\x18\x20\xc0\xe6\ +\x25\x9b\xc5\x3e\x06\x14\xd9\x92\xb9\x43\x91\x02\xd9\xb2\xa4\xf9\ +\xf5\xa9\xe6\xa9\xcb\xce\x6c\xe2\x9d\x99\x8c\x60\xc3\x66\x1d\xdd\ +\x55\x5f\x7d\x5d\xdd\x6c\xcd\xbe\x3f\x6c\x0a\xef\xc9\xd4\x4d\x5e\ +\x95\x73\x1f\x87\xc8\xf7\x4c\x99\x56\x59\x5e\xae\xe7\xfe\xbf\x7f\ +\x79\x17\x28\xdf\x6b\x6c\x52\x66\x49\x51\x95\x66\xee\x97\x95\xff\ +\xfd\xe2\x6e\xf6\xb7\x20\xf0\xfe\x51\x9b\xc4\x9a\xcc\xdb\xe7\xf6\ +\xd1\xfb\xb1\x7c\xdf\xa4\xc9\xd6\x78\xdf\x3e\x5a\xbb\x8d\xa3\x68\ +\xbf\xdf\x87\x79\x2f\x0c\xab\x7a\x1d\x7d\xe7\x05\xc1\xe2\xee\x6e\ +\xd6\x3c\xad\xef\x3c\xcf\x83\x79\xcb\x26\xce\xd2\xb9\xdf\x3b\x6c\ +\x77\x75\xd1\x1a\x66\x69\x64\x0a\xb3\x31\xa5\x6d\x22\x1c\xe2\xc8\ +\x9f\xcc\xd3\xc9\x3c\x75\xb3\xe7\x4f\x26\xad\x36\x9b\xaa\x6c\x5a\ +\xcf\xb2\xb9\x3f\x31\xae\xb3\xd5\x68\xed\xa2\xd9\xd3\xd6\x08\x6b\ +\xad\x23\x44\x22\x42\x02\xb0\x08\x9a\x63\x69\x93\x43\x70\xee\x0a\ +\x31\xde\x72\x25\x08\xa1\x08\x74\x93\xe5\xc7\x59\xc5\x0d\x00\xba\ +\x85\xdf\xd1\x7c\x10\x84\x4d\xb5\xab\x53\xb3\x02\x3f\x13\x96\xc6\ +\x46\x6f\x7f\x79\x3b\x2a\x03\x14\x66\x36\x3b\x19\x66\xc0\xf3\x6c\ +\xd6\x33\x90\xcb\x64\x63\x9a\x6d\x92\x9a\x26\x1a\xe4\xad\xff\x3e\ +\xcf\xec\xe3\xdc\xa7\x2c\xc4\x14\x3e\xbc\x15\x3e\x9a\x7c\xfd\x68\ +\x2f\xa5\x79\x36\xf7\x21\x7a\xa2\x55\xf7\x7c\x42\x0e\xdc\x19\xf4\ +\x03\xc7\xa3\x06\x85\x9a\x84\xd8\xab\x31\xa7\xb2\xb3\x19\x52\x88\ +\xb3\x2a\x75\x31\xc1\x90\x66\x93\x27\x3b\x5b\x6d\xa0\x6a\x69\x5a\ +\x24\x4d\x93\xaf\xf2\x14\x1e\xaa\x72\x5b\xec\xd6\x79\xf9\x6b\x0d\ +\x2c\xab\x36\xbf\x02\x16\xa6\xb1\xe1\x00\xe0\x38\x9b\x39\x6c\xab\ +\xda\x06\x87\x6c\x0b\x30\x0a\x79\x53\x79\x3c\x55\x3e\xe5\x66\xff\ +\x43\x75\x80\xf0\x3c\xe4\x51\x02\x3f\xfe\x02\xe4\xb3\xcc\xac\x1a\ +\xa7\xef\x52\x75\x4f\x90\xab\xf4\xbd\xa8\xd5\x8e\x91\xbb\xb0\x33\ +\x37\xc6\x64\xbb\x4c\x9a\x0e\x4e\xcf\xdb\x26\x6b\xa0\x5e\x51\xd5\ +\x73\xff\x7e\xd5\x7e\x7a\xc5\xb2\xaa\x33\x53\x0f\x2a\xd1\x7e\xce\ +\x54\x15\x94\x27\xb7\xc7\x6e\xb1\xf5\x63\x0f\x69\xb8\x51\x47\x3d\ +\xba\xad\x6f\x1e\x93\xac\xda\xcf\x7d\x72\xa9\xfc\x50\x55\x9b\xb9\ +\x2f\x43\x8d\x15\x62\x58\x5e\xaa\x53\x40\x22\x20\x24\x54\x18\x51\ +\xc6\xae\xb4\x2e\x20\x1e\x12\x2a\xa5\xbc\x1a\x39\xdd\xd5\x35\x2c\ +\xc7\xa0\x48\x8e\x06\xb2\x6a\xff\xe0\xde\xa8\x79\xac\xf6\xeb\xda\ +\xa1\xb3\x4a\x8a\x11\x9e\xd1\xd5\xa9\x82\xe5\xd2\x95\xc1\xd6\xbb\ +\x2b\x35\xd0\x63\xe7\x56\x7a\xb0\x2b\x73\x0b\xab\x69\x7b\x38\x1d\ +\x76\x97\x67\xa6\xb9\xed\xb8\xcf\x81\x2c\xfb\xa0\xe7\x35\xa6\x23\ +\xc8\x97\x16\x03\xc9\x25\x52\xcf\x58\x38\x86\x3c\xa3\x3a\x3e\xaf\ +\xda\x24\x87\x7c\x93\x7f\x30\x90\x38\xbe\x34\x69\xca\x64\x1b\xac\ +\x8b\x6a\x99\x14\x7d\xf4\x8b\xd6\x62\x76\x06\x4b\xe7\xe4\x79\xf6\ +\xe8\x56\xf4\xe1\xe8\x64\xfe\x20\x74\x80\x3a\x01\x95\x82\x8f\xc2\ +\xaa\xce\x61\xa1\x9c\xc4\x3b\x88\x8e\xa7\x22\xb7\xfe\xa1\x7d\x1f\ +\xa6\xc0\x46\x99\x2b\xf2\x40\xf4\xe8\x9a\xe9\xad\x7c\x63\x6c\x92\ +\x25\x36\x99\x68\x3f\x48\x88\xd6\x68\xc8\x04\x5a\x67\xfc\xf3\xdb\ +\x77\x8b\x7e\x82\x59\x9a\xc6\xff\xa9\xea\xf7\xc3\x7c\x9e\xe7\x0c\ +\x92\x65\xb5\x03\xe8\xfd\xc5\x28\x9e\x65\x69\x0c\x0b\x1c\x9a\xc0\ +\x22\xdf\x00\x99\x5d\x9f\xfc\x3b\x34\xb7\x59\x34\x29\xce\x8c\x1d\ +\x38\xd3\xa0\xdd\xb0\xd0\x1f\xda\xae\x79\x73\xeb\xc8\xd2\x4d\xee\ +\x9c\xa2\x7f\xd9\xbc\x28\x7e\x74\x93\xf4\x19\x9f\x0c\x9a\xdb\xc2\ +\x4c\xc2\x59\xd4\x47\xdf\xe7\x16\x9d\x24\x37\x8b\x86\xec\xdb\xa7\ +\xf5\x84\xca\xd9\x2a\x18\x0b\x5b\x24\x4b\x03\x45\xff\xa7\x53\x7a\ +\x57\xda\x75\x5d\xed\xb6\x9b\x2a\x33\xbd\xfb\x88\xa6\x49\xed\x58\ +\x2a\x7b\x2c\x40\xbf\x82\xe8\xe3\xfb\x8c\xb9\xd6\xf2\xc6\x3d\x04\ +\x7d\x63\x88\xf1\x9b\xc6\xd6\xd5\x7b\x13\x43\xe3\x91\x5a\x98\xfe\ +\xb1\x5b\x0b\x31\x0d\x05\x17\x84\x0f\x42\x00\xc3\xd4\x05\x30\xd5\ +\xc6\x6c\x90\x65\x09\xf4\x90\xba\x4e\x8e\x71\x09\x7b\xfa\x20\x1d\ +\x87\x3f\xe3\xa0\x8b\x8c\x71\x41\x47\x61\xbf\xe2\x38\x0a\x85\xe4\ +\x0c\xb1\x51\x31\x2c\x34\xac\x42\xae\x94\x92\x13\x6d\x5d\xe3\x51\ +\x21\x16\x5a\x50\xaa\x47\xe9\xd1\xf5\x2a\x84\x25\x73\x1b\xcd\x50\ +\x8c\xd9\x36\xb1\x8f\xe3\xfc\x63\xff\xa9\xca\x12\xe2\xa8\xea\x00\ +\x3a\xd1\x53\x62\x77\xb5\x39\x25\xbc\x8b\xd3\xf9\x41\x9c\x53\xf0\ +\x8e\xb7\x1e\x26\x21\x82\x28\xc9\x03\x0b\x09\x16\x9c\x62\xe9\x61\ +\x1c\x2a\xd8\xa5\x94\x7e\x80\xfe\xaa\x30\x99\x02\x3a\x03\x1e\xa1\ +\x16\xf8\x97\x90\x96\xa1\xc0\x18\x13\xc1\xc8\x20\x2f\x72\x08\x33\ +\xd9\xc6\xcb\x9d\xb5\xa7\xb2\xff\x56\x79\x19\xb7\x95\xf8\x33\x65\ +\xb9\x89\xd1\x4b\x41\x23\x94\xe0\x44\x7e\xde\xa0\xcf\xca\x41\x28\ +\x6c\x4e\x44\x20\xed\xea\xa1\xa5\x22\x2f\xd6\x63\x2a\x2b\xd1\x01\ +\xf1\x3f\x96\x15\xaf\x44\x25\xac\x02\x79\x1a\xfd\x4f\x1e\x82\xdd\ +\x51\x11\xa2\xa9\xa3\x13\xa6\x9c\x30\x17\xfe\x15\xc3\x6e\xf3\x69\ +\xb5\x5a\xca\x25\x7f\x76\x21\x8b\xd4\x88\xe4\x0b\xa4\xd7\x1f\xc1\ +\xed\x62\x09\xe2\x90\x13\x38\x17\xea\x07\xa2\x42\x89\xb4\x40\x74\ +\xa8\xb9\xc6\xbf\xbf\x06\x11\x1a\x41\x62\xe9\xc9\xe3\x97\x04\xd2\ +\x45\xa1\xe1\xf8\x3f\x05\xcd\x09\xac\x48\xf2\x65\xad\x41\x0a\xfb\ +\x83\x6c\xcb\xa1\x91\xd2\x6c\x2c\xc7\x8b\x2b\xf0\xcf\xad\xbf\x53\ +\x88\x4e\x82\x8c\xef\x0d\xfa\xfc\x45\x3d\xc3\x07\x5e\xba\x28\xc6\ +\xee\x90\xec\x10\x12\x44\xc1\xd3\xd4\xa4\xe8\xb3\x18\x01\xc3\x5f\ +\x11\xa3\x7b\x47\x22\x35\xd1\xc8\x3d\x2e\x2f\x68\x04\x3b\x30\x65\ +\x14\x5a\xce\x27\x47\xc9\xf5\x42\xa5\xa8\x56\x8c\x2b\x07\x08\x87\ +\xb6\xc8\x18\xf6\x28\x0f\x11\x44\xc4\x39\x08\x29\x55\x90\x01\xc5\ +\xd7\x40\x29\xfc\xc9\x81\xd2\x14\x8e\x19\x5a\xb3\xed\xe1\x7f\xc7\ +\xea\x19\x9e\x60\x19\x2a\x21\x28\xc7\x0f\x81\x0e\xa5\xa2\x80\x81\ +\x97\x02\x2e\x88\x48\xe9\xfa\x1a\x41\x50\x1d\xac\x9d\x44\x62\xc6\ +\x40\xc2\x80\xd4\x5c\x39\x01\xc0\x02\xcf\x02\x6b\x04\xef\x5b\x4e\ +\x80\x19\x72\xcc\x22\x1c\xc1\xdb\x17\x71\x1c\x44\x08\xf6\x14\x14\ +\x72\xb0\xc0\xbd\x40\x38\x81\xe4\x94\x49\x84\x3b\x49\x3b\x91\x12\ +\x1c\xba\x6a\x67\x83\x19\x8c\x8c\x43\x49\x11\x8c\xad\x5a\x11\xc1\ +\x8c\x3f\x90\x90\x6b\x4e\xc0\xb2\xb3\x82\xc2\x81\x88\x3a\x44\x3a\ +\x3f\xaa\x85\x82\x1d\x0c\x28\xac\x54\x67\x03\xf6\xf8\x41\x86\x18\ +\x24\x44\xf6\xf3\xbb\xe9\x09\xe7\x82\x75\xd3\x63\x50\xc2\x64\xd0\ +\xf2\x31\x51\xac\x13\x29\x18\x17\x4b\x21\x34\x16\x9d\x13\x76\x04\ +\x21\x84\x12\x98\xbe\x93\x50\xe9\xb0\x60\x10\x35\xe9\x9c\x50\xcb\ +\x17\xf0\x91\xad\x0d\x84\x61\x02\xd6\xd2\x8a\x03\x55\x3c\x80\x57\ +\x88\x4e\x02\x00\x8a\xc1\x09\xb7\x02\x21\x19\xd5\xa4\x75\xc2\x67\ +\x5e\x2e\x73\xd2\x22\x06\x87\x0c\x45\x18\xbd\xf4\x52\x5d\x12\x1c\ +\x43\x2b\x84\x7f\x30\x52\x10\x64\x17\x22\x17\x4a\x39\x19\x08\x80\ +\x38\x1d\x42\x8a\xc3\xb6\xef\x7a\x03\xd3\x0c\x9c\xae\x58\xad\xd8\ +\x5f\x9f\xd4\x3f\x79\xc0\x64\x06\xa8\x69\xf2\xc0\x43\xcc\xb4\x84\ +\x09\x3c\x22\x9d\x10\x61\x0e\x32\x77\x29\x24\x94\xb8\xce\x9e\xd3\ +\xbf\x7c\xf6\x1b\xc8\x5e\x28\x26\x05\x2c\x56\x38\xd5\x41\xfa\x9c\ +\x72\xc7\x23\x2e\x15\x50\x44\x84\x30\x9b\xbc\x95\xba\xfc\x0a\x52\ +\x87\x22\x43\xee\x18\xd6\x3c\xa4\x0e\x55\x06\xe6\xf7\xa9\x8b\x31\ +\x75\xc4\xaf\x93\x3f\x79\xe1\xfa\x44\xc9\xc3\x1e\xac\x24\xc6\xf4\ +\x15\x93\xe7\x2e\x77\x0d\xaf\xa2\x6d\xdd\xb1\x60\x12\x03\x17\x20\ +\x67\xc1\x55\xb7\xe1\x13\x71\xa3\xf0\xe2\x93\x73\xfe\xff\x90\x3b\ +\xc1\x2e\x79\xd8\xb3\xdb\xc2\x33\x25\x29\x19\x73\x7f\x21\x75\xfe\ +\x15\x70\xfe\x56\xd9\x83\x9e\xf4\xec\xe1\xd9\xf5\x2e\x3e\xd3\x7a\ +\x57\xea\x35\x4f\x2f\x6d\xf2\x5c\xb4\xa9\x6b\x8d\x29\x1d\x52\x97\ +\x43\xe6\xe4\x56\xea\xc1\x67\xea\xf3\xaf\x9a\xfc\x2d\xce\x0f\x85\ +\x7f\xa9\xee\x81\xf8\x0a\x92\xa7\x6d\xf2\x08\x53\x97\x3c\xa5\x98\ +\x6a\xfe\x71\xc9\xff\x01\xda\x5b\x73\x18\xaf\x35\x0f\x9b\x22\x6e\ +\xbf\x99\x82\x11\x6b\xd3\x98\xfa\xc9\xf8\x97\xc0\x54\xa5\x0d\xda\ +\xff\xe1\x15\xa4\xde\x24\xc5\x9b\x56\xb2\x6f\x2f\x16\xcf\x44\x4d\ +\xfe\xc1\xc4\x84\x84\x70\x48\xd5\x9a\xb6\x5d\xc1\x81\xd0\x5f\xf6\ +\xc7\x18\x4e\xd2\x9d\xe1\x2a\xd9\xe4\xc5\x31\x6e\x92\xb2\x09\x60\ +\xce\x7c\xf5\xa6\x30\x16\x40\x0a\xfa\x0b\xf1\x18\x81\xeb\xbe\xaa\ +\xb3\x33\xc1\x54\x21\x78\x35\xbd\x7d\x65\x73\xfa\x8e\x34\x54\x8b\ +\x4b\xf7\x12\xa8\x27\xc0\xdd\xc5\x27\x76\x6f\x42\x5c\xa9\xa9\x63\ +\x1e\xe7\x3e\x85\x03\xb9\x24\x9a\x9d\xef\xa8\x0e\x2e\x38\x4d\x4f\ +\xf0\xdb\x1a\xe2\x76\xb7\xe2\x73\x1f\x00\x2f\xcc\xb7\x18\x8e\xea\ +\x0a\x75\x2f\x0b\xee\x36\x95\x53\x49\xbf\xf3\x17\x33\x0b\xd1\x97\ +\xd3\x35\xf9\x78\xb3\x5f\x57\x0e\x57\x07\x8d\x3f\x69\xdb\xa9\x9c\ +\x03\xcc\xc5\x4e\xe4\xb7\xa3\x7d\x26\xde\xdf\x2b\xda\x53\x52\xe7\ +\x49\x69\x6f\x15\x72\x59\x15\x59\x5f\x46\x5b\x1b\x9b\x3e\x9e\x19\ +\x5d\x57\x2c\x18\xf8\x16\x74\x4e\x5b\x93\x8e\x5f\x1d\xc6\xdf\x4c\ +\x86\xde\x0f\x30\xf0\x37\xcf\x16\x65\xf1\xf3\xbb\x59\xd4\xe6\xbd\ +\x80\xbf\x00\x75\x77\xbd\xbf\x5e\xdc\xcd\xdc\xb7\x10\x8b\xbb\xdf\ +\x00\x0b\x26\x09\xc9\ +\x00\x00\x16\x48\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -20589,1313 +11740,2256 @@ \x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ \x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ \x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ -\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ -\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ -\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ -\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ -\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ -\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ -\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ -\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ -\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ -\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ -\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x73\ -\x65\x74\x5f\x73\x74\x64\x5f\x64\x65\x76\x5f\x73\x74\x72\x65\x74\ -\x63\x68\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ -\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ -\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ -\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ -\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ -\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ -\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x63\x78\x3d\x22\x2d\x31\x37\x2e\x36\x32\x38\x30\x38\x34\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x70\x72\x6f\x6a\x65\ +\x63\x74\x5f\x72\x61\x73\x74\x65\x72\x5f\x62\x61\x6e\x64\x73\x2e\ +\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\ +\x20\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\ +\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ +\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\ +\x32\x37\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ +\x22\x31\x31\x2e\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x32\x3d\x22\x33\x2e\x31\x38\x31\x38\x31\x38\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\ +\x36\x33\x36\x33\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ +\x2e\x33\x39\x31\x32\x33\x39\x35\x35\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x33\x37\x30\x34\x39\x39\x31\x32\x2c\x38\x2e\x35\x38\x36\x36\x32\ +\x34\x36\x2c\x37\x2e\x30\x34\x34\x31\x31\x32\x31\x29\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x36\x30\x32\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ +\x30\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\ +\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ +\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ +\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ +\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x63\x79\x3d\x22\x31\x37\x2e\x39\x39\x37\x31\x35\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ -\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ -\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ -\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ -\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ -\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ -\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\ +\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x2d\x38\x33\x2e\x39\x38\x35\x39\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ +\x22\x33\x31\x2e\x30\x39\x38\x32\x39\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ +\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ +\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\ +\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\ +\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ +\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ -\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ -\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ -\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ -\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ -\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ -\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ -\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ -\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ -\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ -\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ -\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ -\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ -\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ -\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ -\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ -\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ -\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ -\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ -\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ -\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x66\x3b\x66\x69\x6c\ +\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ +\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ +\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\ +\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ +\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ +\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ +\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ +\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ +\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ +\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ +\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\ +\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\ +\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x35\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x33\x2e\x38\x31\x37\x34\x31\x34\ +\x33\x2c\x30\x2c\x30\x2c\x34\x2e\x32\x36\x34\x37\x34\x30\x32\x2c\ +\x2d\x39\x2e\x36\x38\x32\x32\x32\x34\x33\x2c\x2d\x32\x33\x2e\x30\ +\x33\x32\x32\x36\x38\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x39\x38\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x29\x3b\x66\x69\x6c\ \x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ \x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x38\x33\x37\ -\x30\x35\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ -\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ -\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ -\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x37\ -\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\x2e\x34\x35\x31\x31\x34\ -\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\ -\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x32\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\ -\x34\x33\x36\x37\x38\x34\x38\x2c\x30\x2e\x35\x33\x36\x38\x34\x38\ -\x37\x39\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ -\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ -\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ -\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ -\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x38\x39\x33\x37\x32\x39\x33\ -\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\x39\x38\x2c\x30\x2c\x30\x29\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\ -\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x37\x2e\x37\x39\x39\x37\x36\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x35\x2e\ -\x39\x38\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\ -\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ -\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ -\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ -\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ -\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ -\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\x37\x39\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ -\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ -\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x33\x2e\ -\x33\x32\x30\x36\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ -\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\x35\x30\x38\ -\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\x30\x2c\x30\ -\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ -\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ -\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\x30\x33\x34\x38\ -\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\x34\x36\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\ -\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x2d\x34\x2e\x30\x34\x30\x31\x33\x38\x34\x65\x2d\x31\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x33\x2e\x38\x36\x36\ -\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ -\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\ -\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x65\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x38\x30\x37\ +\x32\x38\x31\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x63\x78\x3d\x22\x36\x2e\x36\x33\x30\x34\x32\x37\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x32\x36\ +\x37\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x33\x2e\x39\x31\x32\x33\x39\x35\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x30\x34\ +\x39\x39\x31\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x30\x2e\x31\x30\x39\x30\x31\x35\x36\x38\x3b\ \x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ \x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ \x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ \x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ -\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ -\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\ -\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ -\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\ -\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\ -\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ -\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ -\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\ -\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\ -\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ -\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ -\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\ -\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\ -\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\ -\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\ -\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\ -\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\ -\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\ -\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\ -\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ -\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\ -\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\ -\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\ -\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\ -\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ -\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ -\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ -\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ -\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x38\x30\x30\x30\x30\ -\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\ -\x36\x36\x36\x36\x36\x37\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\ -\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\ -\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\ -\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\ -\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x20\x63\x20\ -\x2d\x34\x2e\x30\x37\x34\x32\x30\x34\x2c\x30\x2e\x30\x30\x31\x34\ -\x20\x2d\x38\x2e\x33\x37\x31\x35\x35\x35\x35\x2c\x33\x2e\x39\x39\ -\x32\x38\x32\x33\x36\x20\x2d\x39\x2e\x36\x2c\x36\x2e\x34\x20\x43\ -\x20\x35\x2e\x31\x37\x31\x35\x35\x35\x35\x2c\x39\x2e\x38\x37\x33\ -\x38\x34\x33\x20\x33\x2e\x30\x38\x34\x32\x38\x33\x2c\x31\x38\x2e\ -\x39\x31\x31\x35\x36\x34\x20\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x2c\x32\x35\x2e\x36\x20\x30\x2e\x30\x35\x37\x38\x35\x38\x36\x37\ -\x2c\x32\x38\x2e\x39\x34\x34\x32\x31\x38\x20\x2d\x31\x2e\x38\x30\ -\x38\x38\x30\x38\x2c\x33\x30\x2e\x32\x37\x37\x35\x35\x31\x20\x2d\ -\x32\x2e\x33\x35\x36\x36\x30\x36\x2c\x33\x30\x2e\x37\x37\x34\x38\ -\x33\x20\x2d\x32\x2e\x39\x30\x34\x34\x30\x34\x31\x2c\x33\x31\x2e\ -\x32\x37\x32\x31\x30\x39\x20\x2d\x33\x2e\x32\x2c\x33\x30\x2e\x39\ -\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x32\x2c\x33\x30\x2e\x39\x33\ -\x33\x33\x33\x33\x20\x63\x20\x30\x2e\x37\x30\x36\x38\x37\x35\x37\ -\x2c\x30\x2e\x31\x35\x38\x36\x32\x39\x20\x30\x2e\x34\x34\x30\x34\ -\x38\x31\x33\x2c\x31\x2e\x30\x31\x35\x33\x37\x32\x20\x30\x2e\x31\ -\x33\x30\x35\x36\x35\x31\x2c\x31\x2e\x38\x30\x34\x30\x38\x37\x20\ -\x2d\x30\x2e\x33\x30\x39\x39\x31\x36\x32\x2c\x30\x2e\x37\x38\x38\ -\x37\x31\x33\x20\x2d\x30\x2e\x36\x36\x33\x33\x35\x34\x31\x2c\x31\ -\x2e\x35\x30\x39\x33\x39\x39\x20\x2d\x30\x2e\x31\x33\x30\x35\x36\ -\x35\x31\x2c\x31\x2e\x33\x39\x35\x39\x31\x33\x20\x30\x2c\x30\x20\ -\x30\x2e\x32\x36\x30\x34\x35\x35\x36\x2c\x31\x2e\x35\x33\x32\x30\ -\x34\x31\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x2c\x30\x20\x31\ -\x2e\x38\x37\x32\x38\x37\x37\x37\x36\x2c\x2d\x31\x2e\x35\x33\x32\ -\x30\x34\x20\x35\x2e\x33\x35\x38\x31\x37\x37\x36\x2c\x2d\x33\x2e\ -\x39\x39\x34\x38\x32\x37\x20\x36\x2e\x34\x2c\x2d\x38\x2e\x35\x33\ -\x33\x33\x33\x33\x20\x43\x20\x37\x2e\x34\x31\x36\x39\x37\x38\x31\ -\x2c\x31\x36\x2e\x35\x32\x32\x39\x38\x38\x20\x39\x2e\x35\x37\x36\ -\x37\x38\x34\x2c\x35\x2e\x32\x38\x32\x39\x30\x35\x31\x20\x31\x36\ -\x2e\x31\x37\x35\x35\x34\x39\x2c\x35\x2e\x33\x32\x34\x32\x38\x35\ -\x20\x32\x32\x2e\x34\x2c\x36\x2e\x34\x20\x32\x31\x2e\x33\x33\x33\ -\x33\x33\x33\x2c\x39\x2e\x36\x20\x32\x36\x2e\x36\x36\x36\x36\x36\ -\x37\x2c\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\x63\x20\x32\x2e\ -\x34\x31\x37\x33\x38\x34\x2c\x36\x2e\x32\x38\x35\x32\x20\x36\x2e\ -\x34\x2c\x39\x2e\x36\x20\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x2c\ -\x31\x30\x2e\x36\x36\x36\x36\x36\x36\x20\x36\x2e\x34\x2c\x31\x2e\ -\x30\x36\x36\x36\x36\x37\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\ -\x30\x20\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x30\x20\x43\x20\x34\ -\x34\x2e\x38\x2c\x33\x32\x20\x34\x33\x2e\x37\x33\x33\x33\x33\x33\ -\x2c\x33\x35\x2e\x32\x20\x34\x32\x2e\x36\x36\x36\x36\x36\x37\x2c\ -\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x20\x34\x31\x2e\x39\x32\x34\ -\x35\x30\x33\x2c\x33\x31\x2e\x31\x38\x30\x37\x32\x31\x20\x33\x35\ -\x2e\x30\x35\x38\x33\x34\x37\x2c\x33\x32\x2e\x33\x32\x36\x32\x35\ -\x32\x20\x33\x32\x2c\x32\x35\x2e\x36\x20\x32\x38\x2e\x39\x34\x31\ -\x36\x35\x33\x2c\x31\x38\x2e\x38\x37\x33\x37\x34\x38\x20\x32\x37\ -\x2e\x34\x38\x30\x35\x39\x35\x2c\x31\x31\x2e\x33\x30\x39\x36\x35\ -\x33\x20\x32\x35\x2e\x36\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\ -\x20\x32\x33\x2e\x37\x31\x39\x34\x30\x35\x2c\x33\x2e\x36\x32\x33\ -\x36\x38\x20\x32\x31\x2e\x37\x35\x39\x31\x38\x37\x2c\x31\x2e\x31\ -\x31\x34\x34\x33\x35\x35\x20\x31\x36\x2c\x31\x2e\x30\x36\x36\x36\ -\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ -\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ -\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\ -\x7a\x73\x73\x63\x73\x63\x73\x73\x63\x73\x63\x63\x63\x73\x7a\x63\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\ -\x22\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\ -\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\ -\x77\x65\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\ -\x2d\x73\x69\x7a\x65\x3a\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\ -\x39\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ -\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\ -\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\ -\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\ -\x64\x27\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\ -\x67\x3a\x30\x70\x78\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\ -\x6e\x67\x3a\x30\x70\x78\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\ -\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ -\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\ -\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x34\x36\x37\x34\x31\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ +\x39\x2e\x32\x36\x37\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x34\x36\x37\x31\x34\x38\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ +\x2e\x35\x34\x33\x39\x30\x34\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x30\x2e\x31\x36\x32\x35\x31\x30\x39\x39\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x36\ +\x33\x30\x34\x32\x37\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x39\x2e\x32\x36\x37\x31\x30\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x33\x2e\x32\x36\ +\x30\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x33\x2e\x35\x34\x33\x39\x30\x34\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x30\x2e\x31\x31\x32\x36\x37\x32\x33\x32\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ \x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x39\x33\ -\x33\x33\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x74\x65\x78\x74\x33\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\ -\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ -\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\ -\x61\x6e\x33\x37\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x78\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\x2e\x39\x33\ -\x33\x33\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ -\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\ -\x32\x35\x2e\x36\x30\x30\x30\x30\x30\x33\x38\x70\x78\x3b\x6c\x69\ -\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\ -\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\ -\x73\x65\x72\x69\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ -\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x22\x3e\xcf\ -\x83\x3c\x2f\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\ -\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x09\xf8\ -\x00\ -\x00\xa0\xff\x78\x9c\xed\x5d\x5d\x8f\xa3\x38\x16\x7d\xef\x5f\xc1\ -\xa6\x5f\xa6\x35\xc5\x87\xbf\x30\xce\xa4\x6a\xa4\xdd\xd6\x48\x23\ -\xed\xd3\xce\xac\xf6\xb1\x45\x80\xa4\x50\x27\x10\x01\xa9\x24\xf3\ -\xeb\xc7\x26\x21\x21\xa9\xd8\xd3\xbb\x31\xab\xca\xad\x8e\xba\x55\ -\x85\x6d\xc0\x1c\xdf\x6b\x1f\xdf\x5c\x4e\x4d\x7e\xde\x2e\x17\xce\ -\x4b\x56\xd5\x79\x59\x3c\x8e\x90\x17\x8c\x9c\xac\x48\xca\x34\x2f\ -\xe6\x8f\xa3\x7f\xff\xfe\x8b\x1b\x8d\x9c\xba\x89\x8b\x34\x5e\x94\ -\x45\xf6\x38\x2a\xca\xd1\xcf\x4f\x1f\x26\x7f\x73\x5d\xe7\x1f\x55\ -\x16\x37\x59\xea\x6c\xf2\xe6\xd9\xf9\xb5\xf8\x5a\x27\xf1\x2a\x73\ -\x7e\x78\x6e\x9a\xd5\xd8\xf7\x37\x9b\x8d\x97\x1f\x0a\xbd\xb2\x9a\ -\xfb\x9f\x1c\xd7\x7d\xfa\xf0\x61\x52\xbf\xcc\x3f\x38\x8e\x23\xef\ -\x5b\xd4\xe3\x34\x79\x1c\x1d\x4e\x58\xad\xab\x45\xdb\x30\x4d\xfc\ -\x6c\x91\x2d\xb3\xa2\xa9\x7d\xe4\x21\x7f\x74\x6a\x9e\x9c\x9a\x27\ -\xea\xee\xf9\x4b\x96\x94\xcb\x65\x59\xd4\xed\x99\x45\xfd\xb1\xd7\ -\xb8\x4a\x67\xc7\xd6\xaa\x37\x1b\xd2\x36\x42\x42\x08\x3f\xc0\x3e\ -\xc6\xae\x6c\xe1\xd6\xbb\xa2\x89\xb7\xee\xf9\xa9\xb2\x8f\xd7\x4e\ -\xc5\x41\x10\xf8\xb2\xee\xd4\xf2\xdb\x5a\x8d\x6b\x09\xe8\x4a\xfe\ -\x3f\x36\xef\x0a\xbc\xba\x5c\x57\x49\x36\x93\xe7\x65\x5e\x91\x35\ -\xfe\xe7\xdf\x3f\x1f\x2b\xdd\xc0\x4b\x9b\xb4\x77\x99\x0e\xcf\xb3\ -\xbb\x9e\x81\x5c\xc4\xcb\xac\x5e\xc5\x49\x56\xfb\x5d\x79\x7b\xfe\ -\x26\x4f\x9b\xe7\xc7\x11\xa1\x1e\x22\xf2\xc3\xda\xc2\xe7\x2c\x9f\ -\x3f\x37\x97\xa5\x79\xfa\x38\x92\xbd\xc7\x22\xda\x1f\xf7\x8c\x03\ -\xed\x1b\x1c\x2e\x3c\x3e\xd6\x04\x9e\xc0\x1e\x72\x2a\xc4\x08\xdf\ -\xb7\xe9\x1e\x61\x9c\x96\x89\xea\x93\xbc\x64\xb6\xcc\xe3\x75\x53\ -\x2e\xe5\xa8\x25\xc9\x22\xae\xeb\x7c\x96\x27\xf2\xa0\x2c\x56\x8b\ -\xf5\x3c\x2f\xbe\x4c\xa5\x95\x7d\x91\xc3\x39\xcd\x8b\xb6\xf8\x4b\ -\x53\x96\x0b\xaf\x03\xf2\x78\xd7\x6c\xbb\x2a\xab\xc6\xdd\xa6\x2b\ -\x09\x67\xc8\xaf\x56\xee\xfa\x95\x2f\x79\xb6\xf9\x7b\xb9\x95\xdd\ -\x74\x02\x87\x60\xf9\x6f\xf4\x24\xcb\x27\x69\x36\xab\x55\xfd\xfe\ -\x91\xd5\x91\x7c\x66\x3e\x72\xfc\xb6\xf6\xf8\x04\xaa\xfb\xa9\xba\ -\xc6\xa9\xed\x34\xae\xf7\xb0\x3a\xce\x2a\x9e\x4b\x13\x5c\x94\xd5\ -\xe3\xe8\xe3\xac\xfd\x1c\x2a\xa6\x65\x95\x66\x55\x57\x15\xb6\x9f\ -\xb3\xaa\x52\x0e\x53\xde\xec\xf6\x4e\x77\xb8\x76\xf7\x18\xea\xaa\ -\xc7\xfa\xe0\x7a\x7d\xfd\x1c\xa7\xe5\xe6\x71\x84\x2f\x2b\xff\x28\ -\xcb\xa5\x1c\x54\x4f\x30\x11\xe0\x40\x5c\x56\x27\x12\x09\x17\x05\ -\xd4\x13\x04\x0b\xf6\xaa\x76\xd7\xda\x83\x3c\x33\x7a\x75\xe1\x64\ -\x5d\x55\xd2\x2b\xdd\x45\xbc\xcb\xe4\x43\xb5\x3f\xd0\xa1\x51\xfd\ -\x5c\x6e\xe6\x95\x02\xa7\xa9\xd6\xd9\xe5\x99\xaa\xc6\x9d\x4e\xd5\ -\x20\x5c\xab\x96\x46\xb2\x56\xfe\xee\xae\x8b\xbc\x91\x3e\xb5\xda\ -\xf6\xaf\xba\xce\xd3\xac\xbe\x7e\x62\x5d\xc4\x2b\x77\xbe\x28\xa7\ -\xf1\xe2\x7a\x83\x4d\x5e\x48\x90\xdc\x83\xf9\x23\x72\x1c\x83\xcb\ -\x16\x9d\x2f\xf0\x20\xd2\xb4\x50\x06\xa4\xa9\xda\xe9\xab\x96\xf1\ -\x36\x5f\xe6\x7f\x64\x12\x18\xd4\x9a\x9d\x34\xad\x33\x58\xf6\xa7\ -\x39\x4e\xb3\x53\x7e\xbd\xdd\xa9\xb2\x51\x57\xa8\xf0\x54\x05\x58\ -\x08\x7e\x2c\x2c\xab\x5c\xba\x4b\xaf\x3b\x5d\xd1\xae\x5f\xa4\x66\ -\x01\x39\x89\x6f\xd5\x7d\x2f\xca\x94\xcd\x75\x66\xee\xbf\xb6\xf3\ -\xb6\x7c\x99\x35\x71\x1a\x37\xf1\xc9\xe8\xbb\x12\xd9\x97\xa0\x7b\ -\x12\x39\x81\x8e\xff\xf5\xf9\x97\xa7\xc3\x0d\x26\x49\x32\xfe\x4f\ -\x59\x7d\xed\xee\xe7\x38\xaa\x41\x3c\x2d\xd7\x12\xd9\xd1\xd3\xb1\ -\x78\x92\x26\x63\x39\xe5\xc9\xa9\xe0\x29\x5f\x4a\x53\x56\xb3\xe5\ -\x8f\x72\x8a\x9b\xf8\xa7\x8a\xb3\xc6\x0a\x9c\xd3\x45\xf7\x97\xad\ -\xb2\xfd\xdc\x79\x75\x01\x49\x93\x65\xae\x4e\xf2\x7f\x6b\xf2\xc5\ -\xe2\x57\x75\x93\xc3\x13\xf7\x2e\x9a\x37\x8b\xec\x54\x38\xf1\x0f\ -\xbd\x3f\x3c\x9b\xdf\x7b\xb8\x89\xdf\x3d\x7d\x7b\x34\x3f\xa1\x72\ -\xe6\x04\xc7\x81\x5d\xc4\xd3\x4c\x5a\xe4\x3f\x55\xa5\xf3\xaa\x76\ -\x5e\x95\xeb\xd5\xb2\x4c\xb3\xc3\xe9\x1d\x9a\xf3\xb3\x61\x47\x04\ -\x45\xc7\x91\x6b\xaa\xb8\xa8\x15\x32\x72\x1c\xe2\xa6\xca\xb7\x3f\ -\x20\x8f\x0a\x2c\xdd\x94\x3e\x04\x1e\x62\x54\x4d\x5d\xd1\x83\x5c\ -\x31\x42\x26\x30\x67\x44\xc8\xe2\x90\x87\x01\x93\xc3\xf5\xe0\x0a\ -\xe6\xd1\x30\x24\x88\x3f\xb8\xc4\x8b\x08\x13\x22\xa2\x9f\x8e\x03\ -\x32\xa9\xb2\xa4\xe9\x8d\x59\x3b\x27\x91\xfd\x67\xd4\x2b\x3f\x33\ -\x39\xc7\x91\xcd\x5c\x8c\x7a\x05\xb2\x9e\xb1\xde\x71\xe7\x53\xb4\ -\x57\x76\xf0\xc4\x7e\x91\x7a\x5a\xd5\x03\x16\x11\xd1\x2b\xae\x9b\ -\xdd\x42\x22\x34\x93\xe3\x37\xfe\x18\x04\x49\x32\x9b\xfd\xa4\x0e\ -\xdc\xc3\xc4\x38\x46\xfb\xc3\x6a\xbd\x90\xf3\xfe\x4b\x56\x94\x69\ -\xfa\x53\xdd\x54\xe5\xd7\x6c\x7c\x98\x8a\x0f\x87\x7b\xf7\x1f\x07\ -\xdd\xa1\x34\x8d\xac\x5a\x48\xb7\x6c\xc6\xb4\x2b\x4b\x63\x39\x9f\ -\x56\x55\xbc\x1b\x17\x92\xe7\x74\xa5\xc7\x5b\xf5\x8c\xc7\x26\x5a\ -\xe2\x36\xb4\x5c\xa4\xc7\x2b\x8e\x53\x0a\x0d\xaf\x90\xdc\x8a\x97\ -\x1b\xe9\x11\x0b\xc3\x28\x00\x87\x18\xbf\x19\xb1\x40\x8f\x18\xa5\ -\x8c\x41\x43\x8c\xa3\x5b\x11\x23\x2e\xd6\x5a\xd9\x6c\x86\x63\x1c\ -\x83\xc3\xec\xc6\x59\x5f\x5a\x19\x77\xb5\x73\x3f\x50\xcc\x6e\x9e\ -\xfb\xdd\xc8\x65\x2e\x7f\x5f\xa8\x45\xb7\xaf\x00\x81\x4b\x5c\x02\ -\x1c\x35\x76\x8e\xda\xed\x3c\xc3\xa5\x3a\xc4\x80\x30\x8d\x0b\xc4\ -\x6c\x30\x0d\x13\x3b\x03\xc1\x35\x2e\x31\xb3\xc0\x35\xf4\xf3\x19\ -\x10\xb6\x71\x81\x99\x0d\xb6\x11\xba\xa1\x7e\x3a\x13\x02\x20\x68\ -\x36\xe8\x06\xd6\xbb\x27\x50\xd4\xec\x10\x0e\xe1\x62\xd8\xb8\x21\ -\xe2\x05\xea\x63\x39\xb2\x61\xda\x79\x42\x88\x6d\xe8\x60\xb3\x60\ -\x75\x06\xe4\x20\x70\x0f\x0d\x72\x56\x28\x88\x21\xa0\x06\x81\x82\ -\xe8\xa0\xb3\xc1\x44\xb4\x8b\x2a\x0c\x26\xa2\x81\xce\x4a\xf8\x43\ -\x6f\x76\x51\x7b\x4f\xa8\xd8\xd9\xe0\x25\x86\xcd\x29\x6c\xf0\xec\ -\xd0\x13\xc3\xae\x0b\x34\x7c\x96\x02\x23\xdc\x15\xda\x9d\x3e\x10\ -\xfc\xf8\x39\x70\x37\xf3\xba\xc0\x14\x1b\x01\xc1\xec\x2e\x11\xb3\ -\x10\x4d\xd2\x6f\x22\x80\x70\xba\x0b\xcc\xec\xc4\x93\x5c\xa6\x47\ -\x0d\x04\x9d\xbb\x44\xcd\x4a\x44\xc9\x44\x82\x41\x30\xb9\x0b\xd4\ -\xec\xc4\x94\xb0\x3e\x14\x97\x52\x88\x0b\x81\xa5\xa8\x12\xd7\x6f\ -\xf4\x81\xe2\x66\x2b\xae\x64\x58\x48\x61\x22\x67\x89\xb3\x61\xd3\ -\xc2\x00\x03\x39\x36\x4c\x48\x2e\x20\xfa\xec\x06\xb5\x9e\x82\x05\ -\xee\x76\x97\x0d\xf5\xdb\x54\xc8\xc8\x59\xe1\x71\x5c\x1f\x5b\x02\ -\x8d\x9d\x0d\x36\x67\xd8\xdf\x43\xc6\xce\x4a\x58\xce\xf0\xdd\x2a\ -\x21\xf7\xbf\x7b\xd0\x20\x67\x83\xd6\x19\xf6\x5d\x94\xc6\x77\x9f\ -\x2f\xa2\x41\xce\x0e\xb1\xd3\xae\x13\x38\xe6\xb3\xfb\x8f\x8e\x5c\ -\xc7\xce\x56\x38\x4e\x1f\x0b\xe6\x71\x9c\x66\xf7\x0e\x9e\x18\x88\ -\xd7\x49\x97\xd5\x12\x3b\xb5\xe5\xbf\xff\x65\x42\x83\x9c\x8d\xd0\ -\x9c\x21\x9f\x04\x32\x76\xb6\x42\x74\x72\xc6\xd3\x06\x37\x41\xe3\ -\x67\x27\x58\xa7\x8d\x01\x40\xc6\xce\x4e\xc8\xce\xc0\x52\x20\xf0\ -\x3b\x0d\x74\x76\xc2\x76\xc6\x6f\xfb\xef\x9f\xe1\x69\xb0\xb3\x15\ -\xba\x03\xce\xf1\xae\xa3\x67\x2d\x7c\xa7\xa5\x2a\x20\x48\x1e\xf6\ -\x44\xfb\x21\xe7\xe8\x59\x49\x0c\x33\xbd\x9e\x34\x4d\x52\xc2\xee\ -\xdd\xf4\x34\xe0\xd9\xc9\x0d\x53\x81\x28\x6d\x34\x05\x34\x7c\x56\ -\xf2\xc3\x4c\x2b\x2e\x64\xf4\xec\xa4\x88\xc1\x26\x2b\x3a\xe8\xec\ -\x64\x88\x19\x12\x4e\x00\x90\x15\x1d\x76\xb6\x12\xc4\xb4\x96\x07\ -\x83\xac\xa0\x3d\x59\x09\xa2\x73\xf8\x6c\xe4\x39\x99\xbe\x68\x8c\ -\xa2\x38\xbe\xff\xed\x99\x0e\x3c\x2b\x29\x4f\xa6\xdd\x2d\x68\xf8\ -\x6c\x85\x56\x4c\xef\x87\xc1\x06\xd0\x52\x22\x94\x5c\x3b\xc2\xf7\ -\xe9\xc1\xb6\x92\xa2\x0c\x6a\x08\x00\x68\x8b\x16\x3d\x5b\xb9\x51\ -\xc6\xd7\x3b\xef\x9e\xb9\x68\xe1\xb3\x97\x22\xa5\xb5\x3f\xd0\xe4\ -\xc5\x62\xa6\x94\xfe\xf5\x80\xb7\x12\x6c\x99\xf8\x73\xad\x20\x54\ -\x8f\x40\x5c\x93\x84\x22\x02\x73\x11\x0a\xa5\x03\x85\xc3\x88\x50\ -\x46\x78\xab\x09\x85\x58\x10\x46\x4a\xfd\x09\x79\x88\x33\x4e\xb1\ -\xfc\x35\x0a\x3d\xca\x31\x8a\xa2\x07\x12\x79\xb2\x9e\x84\xfc\x4d\ -\x4a\x42\xe9\x83\x8b\x30\xd2\xeb\xed\x8b\x42\x99\x10\x83\x90\x5c\ -\x3f\x84\x2c\x94\x09\x33\x08\xa9\xf5\x43\x08\x43\x99\x5e\x69\x86\ -\x90\x58\x3f\x8c\x34\x94\x49\xad\x01\x84\xf8\xcc\x20\xe2\x50\x7a\ -\xe2\x03\x14\x35\x4b\xf2\x50\xfa\x88\x03\x4c\xdc\x6c\x09\x44\xe9\ -\xe7\x36\x20\xb8\x0d\x20\x11\x65\x5a\x0f\x40\xf0\x8e\x41\x44\xa2\ -\xc0\x4b\x52\x0e\x22\x13\xe5\x8a\xef\x4a\x51\xff\x8b\x52\x94\x49\ -\x30\x10\x82\x7a\xcf\x50\x5a\x51\xef\x4e\x63\xcb\x9a\x5a\x94\x89\ -\x81\x40\x40\x6e\x30\xbd\x28\xe8\x81\x8f\x21\x15\xa3\x4c\x71\x7a\ -\x08\x54\x64\x50\xcd\x28\xe8\xb1\x90\x41\x55\xa3\xa0\xeb\x65\x0f\ -\xab\x1b\xf5\x5d\x39\xea\x26\xe5\x28\xbd\xac\x0a\x6c\xf8\xac\x69\ -\x47\x19\xf2\x5b\x20\x03\x68\x51\x3d\xca\x90\xe2\x02\x03\xc1\x01\ -\xf4\xa3\x4c\x6b\x06\x08\xa6\x37\x88\x82\x94\x29\x85\x14\x04\xc7\ -\x1b\x48\x43\x0a\xbc\x28\xe8\x40\x2a\x52\xe6\xb4\x5b\x00\xcc\x6e\ -\x28\x1d\x29\x7d\xec\x04\x86\x3a\xcd\x70\x4a\x52\x7a\x57\x05\x8a\ -\x9c\x45\x2d\x29\x3d\x17\x86\x89\x9d\x4d\x35\x29\xe8\xd8\x0d\xa8\ -\x27\xa5\x5f\x25\x20\xeb\xd3\xd8\x51\x94\xd2\x7f\x39\x01\x19\x3b\ -\x5b\x9a\x52\xef\x14\x3d\x4b\xaa\x52\xfa\xdd\x04\x64\xf4\xec\xe8\ -\x4a\x99\x98\x31\x84\xac\xf8\x21\x95\xa5\xcc\x49\x74\xf7\x9f\x12\ -\x3f\xac\xb6\x94\x3e\x9d\x1b\x46\x3e\xfc\xc0\xea\x52\x86\x78\xf1\ -\x5b\xc9\x86\x7f\xb3\xfa\x52\x7a\xc7\x85\xac\x54\x63\x4b\x61\x4a\ -\xbf\xb3\x85\x8c\x9e\x4d\x8d\x29\xfd\xb7\xb4\xa0\x11\xb4\xa4\x32\ -\xf5\x3e\x35\xce\x2c\xe9\x4c\x99\x38\x0b\x04\xbe\x37\xac\xd2\x94\ -\x39\x43\xe0\xfe\x19\xdf\xd0\x5a\x53\x7a\xd2\x02\x83\xf3\x0d\xad\ -\x36\x75\x07\xaf\x40\xbe\x65\xbd\xa9\xef\x8a\x53\x37\x2a\x4e\xbd\ -\x4f\xd5\x24\x7b\x9a\x53\x7a\xff\x85\x8c\x9f\x25\xd5\x29\xd3\x1f\ -\xe5\x06\x40\x5d\x06\xd6\x9d\x02\x4e\x5d\x06\x57\x9e\xd2\x13\x67\ -\x18\xd4\x65\x60\xed\xa9\xef\xea\x53\x37\xaa\x4f\x19\xa4\x46\x21\ -\x03\x68\x53\x7f\x4a\x1f\x38\x80\x0d\xa1\x4d\x05\xaa\x77\x2a\x83\ -\x66\x4d\x83\xca\xa4\x56\x0d\x80\xc4\x0c\xaf\x42\x65\xfa\xf3\xa3\ -\x00\x78\xcc\xff\x43\x87\xea\x9d\xca\x68\xda\x54\xa2\xd2\xb3\xc1\ -\x37\x13\x88\x39\x69\x51\xf5\x91\xbc\xf0\x18\xc6\x6e\x4d\xb6\x46\ -\x1e\xa6\x08\xe3\x80\xa3\x5b\x3a\xfd\xe1\x02\x6f\xdc\x67\xf2\x87\ -\x71\x41\xd8\xc3\x21\xc5\xe4\x34\x83\x76\x83\x88\x02\x2f\xa0\x28\ -\x3a\x55\xa8\x55\x8f\x79\x81\x88\x18\x3d\xf9\x8d\x34\x0d\x86\xbc\ -\x28\xe0\xac\xe7\x4c\xca\x7e\x90\x47\x43\xc4\x71\xd8\x2b\x6d\xad\ -\x8d\x21\x41\x68\x70\xea\xc7\x15\xd9\xae\x87\x40\x89\x74\x45\x21\ -\x25\x21\x8d\xf8\x43\xe0\xb1\x00\x47\x21\x43\xf2\xd7\x87\xe0\xd3\ -\xe9\xb1\x8a\xaf\x75\x12\xaf\x24\xa2\xdb\x55\x59\x35\xee\x36\x5d\ -\xe5\x67\x0b\xf3\x65\x83\x5d\xd7\xe0\x38\x9a\xfd\x41\xd4\x77\x04\ -\x51\xc1\x99\xa0\xaa\x23\x5c\x50\x41\xa3\xf3\x7e\xec\x9f\x2b\x44\ -\x88\x22\xfa\x57\x18\xc8\xa6\x24\xf2\xb0\xda\x53\xa1\x3e\xb0\x12\ -\xc3\x10\x0b\x84\xf0\xb5\x61\x08\x99\x1c\x88\x6f\x18\xb9\x6e\x9c\ -\x09\xef\x81\xf0\xea\x45\x80\x5b\xe9\x04\xf2\x10\x0b\x31\x65\x94\ -\x5b\x71\x28\xad\x1f\xcd\x66\xb7\x67\x56\xca\x49\x4b\x70\x12\x0a\ -\x4a\x6c\xfa\x91\xc4\x57\xfc\x17\x7e\xa4\x66\x58\x1e\xd2\xb3\xf1\ -\xa6\xd2\x34\x22\x16\xf6\xfc\x40\x6d\xb7\xb9\xc7\x30\xe2\xec\xdb\ -\x1c\x89\x23\x46\x04\x16\x7f\xed\x48\x3c\x64\x4c\xdd\x5f\xda\xaf\ -\x74\x29\x42\xa5\x35\xef\x0d\x78\x3f\x06\xed\x94\x36\xf1\xeb\x17\ -\xf9\xe3\x4f\x98\x39\xa9\x7a\ -\x00\x00\x06\x94\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\ +\x30\x30\x36\x30\x31\x31\x34\x35\x2c\x30\x2e\x39\x39\x39\x39\x38\ +\x31\x39\x33\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x39\x2e\x32\x36\ +\x37\x32\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x2d\x36\x2e\x36\x35\x36\x32\x35\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x34\x34\ +\x39\x38\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x33\x2e\x38\x33\x30\x38\x35\x38\x39\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\x31\x63\x38\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\ +\x39\x34\x36\x39\x36\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\ +\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x2e\ +\x39\x38\x32\x39\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x34\x2e\x38\x31\x32\x38\x37\x33\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x31\x2e\ +\x34\x38\x38\x36\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x35\x33\x2e\x33\x30\x31\x39\x37\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x33\x30\x36\x38\x39\x37\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\ +\x31\x39\x34\x35\x35\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x2d\x30\x2e\x32\x37\x38\x30\x37\x30\x32\x2c\x2d\x30\x2e\ +\x39\x36\x30\x35\x36\x30\x37\x36\x2c\x30\x2e\x36\x30\x36\x31\x35\ +\x31\x39\x37\x2c\x30\x2e\x37\x39\x35\x33\x34\x38\x38\x35\x2c\x30\ +\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\ +\x33\x36\x30\x36\x32\x37\x32\x36\x2c\x2d\x30\x2e\x39\x33\x32\x37\ +\x31\x30\x30\x32\x2c\x30\x2e\x37\x36\x38\x36\x36\x30\x37\x34\x2c\ +\x30\x2e\x36\x33\x39\x36\x35\x36\x36\x38\x2c\x30\x2c\x30\x29\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x30\x39\ +\x36\x36\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x31\x2e\x39\x37\x30\x34\x38\x33\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x32\x33\x2e\x38\x35\x35\x31\x31\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x2e\x34\ +\x36\x34\x39\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x38\x2e\x32\x39\x33\x37\x34\x33\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x30\x2e\x35\x32\x38\x36\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x32\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x38\x36\x37\x30\x37\x39\ +\x36\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x31\x31\x32\x62\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x30\ +\x33\x34\x34\x37\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\ +\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\ +\x2e\x37\x32\x36\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x2e\x38\x35\x39\x38\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x39\x2e\x34\ +\x36\x32\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x37\x2e\x30\x33\x31\x36\x36\x35\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x39\ +\x38\x36\x34\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x2d\x30\x2e\x33\x38\x33\x35\x32\x31\x35\x36\x2c\x2d\x30\x2e\x39\ +\x32\x33\x35\x33\x31\x39\x32\x2c\x30\x2e\x38\x33\x34\x30\x31\x39\ +\x39\x31\x2c\x30\x2e\x35\x35\x31\x37\x33\x34\x33\x35\x2c\x30\x2c\ +\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x33\x38\x33\ +\x35\x32\x31\x35\x36\x2c\x2d\x30\x2e\x39\x32\x33\x35\x33\x31\x39\ +\x32\x2c\x30\x2e\x38\x35\x32\x37\x30\x37\x33\x31\x2c\x30\x2e\x35\ +\x32\x32\x33\x38\x38\x39\x37\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x39\x35\x33\x36\ +\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ +\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x2d\x36\x2e\x31\x36\x31\x34\x39\x38\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x31\x2e\x35\x35\ +\x31\x33\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x31\x31\x2e\x31\x32\x37\x32\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\ +\x2e\x37\x32\x36\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x30\x2e\x39\x37\x38\x37\x37\x39\x34\x39\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x12\x74\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6e\x61\x6c\ +\x5f\x73\x74\x61\x74\x5f\x72\x61\x73\x74\x65\x72\x5f\x74\x6f\x6f\ +\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ +\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ +\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ +\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ +\x6d\x3d\x22\x31\x2e\x33\x39\x39\x37\x32\x35\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x2d\x32\x35\x35\x2e\x35\x32\x38\x32\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x33\ +\x2e\x32\x36\x38\x34\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ +\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ +\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ +\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\ +\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\ +\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\ +\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ +\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\ +\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\ +\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x36\x36\x34\x32\ +\x34\x38\x37\x37\x2c\x30\x2e\x37\x34\x37\x35\x31\x31\x35\x38\x2c\ +\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x33\x2e\x35\x32\x36\x30\x38\x37\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x30\x36\x39\x38\x31\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x36\x2e\x34\ +\x35\x39\x39\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x33\x31\x2e\x30\x35\x36\x34\x31\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x33\x2e\x33\x30\ +\x35\x31\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\ +\x74\x68\x3d\x22\x32\x31\x2e\x38\x37\x33\x31\x39\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ +\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x38\x66\x66\x66\x38\x66\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x32\x38\ +\x34\x31\x37\x31\x33\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x66\x66\x61\x33\x61\x33\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\x39\x37\ +\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ +\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x30\x2e\x34\ +\x39\x31\x33\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x38\x2e\x37\x38\x35\x32\x35\x36\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x31\x2e\x33\x37\x39\x32\x32\x38\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\ +\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\ +\x32\x35\x30\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\ +\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ +\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\x35\x32\x2c\x30\x2e\x37\ +\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\x31\x31\x37\x36\ +\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ +\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x37\x32\x2e\x37\x38\x30\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x34\x30\x2e\x31\x36\x32\x35\x32\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x32\x31\x2e\x32\x32\x37\x36\x39\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\ +\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\ +\x36\x65\x36\x65\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ +\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\ +\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\ +\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\ +\x31\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\ +\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\ +\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\ +\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\ +\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\ +\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\ +\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ +\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\ +\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x39\x2e\x34\x33\x31\x30\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x33\x30\x2e\x34\x32\x38\x31\x35\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\ +\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\ +\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\x39\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x39\x2e\ +\x34\x33\x31\x30\x35\x32\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x33\x30\x2e\x34\x32\x38\x31\x35\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x32\x35\x2e\x36\x30\x30\ +\x30\x30\x30\x33\x38\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\ +\x67\x68\x74\x3a\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\ +\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x32\x22\x3e\xcf\x83\x3c\x2f\x74\x73\x70\ +\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\x33\x34\ +\x39\x36\x33\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x32\x34\ +\x2e\x36\x36\x36\x36\x36\x37\x2c\x2d\x31\x37\x2e\x32\x20\x2d\x31\ +\x2e\x30\x39\x35\x37\x38\x30\x35\x2c\x31\x35\x2e\x36\x38\x38\x38\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ +\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x31\x2e\x34\x33\x36\x33\x34\x39\x36\x33\x70\x78\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x2d\x31\x38\x2e\x34\x34\x34\x34\x34\x34\ +\x2c\x34\x2e\x31\x33\x33\x33\x33\x34\x31\x20\x48\x20\x32\x36\x2e\ +\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x37\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\x33\x34\x39\x36\x33\ +\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x2d\x32\x35\x2e\x37\ +\x37\x37\x37\x37\x37\x2c\x39\x2e\x34\x36\x36\x36\x36\x37\x36\x20\ +\x48\x20\x31\x38\x2e\x36\x36\x36\x36\x36\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x37\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x36\ +\x33\x34\x39\x36\x33\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ +\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\ +\x33\x35\x2e\x33\x33\x33\x33\x33\x34\x2c\x2d\x31\x37\x2e\x32\x20\ +\x39\x2e\x35\x37\x30\x38\x38\x37\x2c\x31\x35\x2e\x36\x38\x38\x38\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x33\x37\x37\x35\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ +\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x0a\xd8\ +\x00\ +\x00\x73\x2b\x78\x9c\xed\x5d\x5b\x93\xa3\xb8\x15\x7e\x9f\x5f\x41\ +\x3c\x2f\x33\x15\x4b\xd6\x8d\x8b\xdc\xee\xde\x87\xdd\xda\xda\xad\ +\xda\xbc\x64\x37\x95\xc7\x29\x1a\x64\x37\x19\x0c\x0e\xe0\xb6\x3d\ +\xbf\x3e\x47\xdc\x8c\x2f\x90\x4c\xb5\x71\xb6\xa0\x99\x9a\xea\xe6\ +\x1c\x49\x48\x9f\xbe\x73\x74\x24\xd4\x68\xf1\xc3\x7e\x1d\x1a\xaf\ +\x2a\x49\x83\x38\x7a\x9c\x50\x4c\x26\x86\x8a\xbc\xd8\x0f\xa2\xd5\ +\xe3\xe4\x1f\x7f\xfc\x8c\x9c\x89\x91\x66\x6e\xe4\xbb\x61\x1c\xa9\ +\xc7\x49\x14\x4f\x7e\x78\xfa\xb0\xf8\x0b\x42\xc6\x8f\x89\x72\x33\ +\xe5\x1b\xbb\x20\x7b\x31\x7e\x8d\xbe\xa6\x9e\xbb\x51\xc6\xa7\x97\ +\x2c\xdb\xcc\x67\xb3\xdd\x6e\x87\x83\x52\x88\xe3\x64\x35\xfb\x6c\ +\x20\xf4\xf4\xe1\xc3\x22\x7d\x5d\x7d\x30\x0c\x03\x9e\x1b\xa5\x73\ +\xdf\x7b\x9c\x94\x19\x36\xdb\x24\xcc\x13\xfa\xde\x4c\x85\x6a\xad\ +\xa2\x2c\x9d\x51\x4c\x67\x93\x63\x72\xef\x98\xdc\xd3\x4f\x0f\x5e\ +\x95\x17\xaf\xd7\x71\x94\xe6\x39\xa3\xf4\x63\x23\x71\xe2\x2f\xeb\ +\xd4\xba\x36\x3b\x9e\x27\xa2\x52\xca\x19\x61\x33\xc6\x10\xa4\x40\ +\xe9\x21\xca\xdc\x3d\x3a\xcd\x0a\x75\xbc\x96\x95\x11\x42\x66\xa0\ +\x3b\xa6\xfc\xdf\x52\xcd\x53\x00\x74\x03\xff\xeb\xe4\x95\x00\xa7\ +\xf1\x36\xf1\xd4\x12\xf2\x29\x1c\xa9\x6c\xf6\xd3\x1f\x3f\xd5\x4a\ +\x44\xb0\x9f\xf9\x8d\x62\x2a\x3c\x4f\x9e\x7a\x02\x72\xe4\xae\x55\ +\xba\x71\x3d\x95\xce\x2a\x79\x9e\x7f\x17\xf8\xd9\xcb\xe3\x84\x0b\ +\x4c\x39\x5c\x66\x2e\x7c\x51\xc1\xea\x25\x3b\x97\x06\xfe\xe3\x04\ +\x6a\xcf\xa4\x53\xdc\x37\xc8\x41\x8b\x04\x65\xc1\xf3\x5a\x43\xb0\ +\x64\x98\x1a\x09\x35\xb9\x5d\xa4\xa9\x9a\x30\xf7\x63\x4f\xd7\x09\ +\x8a\x54\xeb\xc0\xdd\x66\xf1\x1a\x7a\xcd\xf3\x42\x37\x4d\x83\x65\ +\xe0\xc1\x4d\x1c\x6d\xc2\xed\x2a\x88\xbe\x6c\x23\x3f\xfe\xa2\xfc\ +\x20\xfb\x92\xb8\x69\xa6\x12\x5c\x61\x58\x3f\x50\xed\x37\x71\x92\ +\xa1\xbd\xbf\x01\x24\x2d\xfb\xaa\xf2\x50\x29\x9f\x40\xbb\xf0\xd5\ +\x32\xd5\xa9\x8a\x66\xe9\x3b\x68\x97\x3d\x31\x66\xb9\xb6\xae\xa5\ +\xae\xa2\xff\x1a\xa8\xdd\x31\xed\xb3\x9b\x16\xd0\x19\xc6\xc6\x5d\ +\x01\xcd\xc2\x38\x79\x9c\x7c\x5c\xe6\x57\xa9\x78\x8e\x13\x5f\x25\ +\x95\xca\xca\xaf\x13\x55\x0c\x5d\x11\x64\x87\xc2\xb0\xca\xb2\xab\ +\xfa\xea\x52\x6b\x3d\xb9\xae\x4f\x5f\x5c\x3f\xde\x3d\x4e\xd8\xb9\ +\xf2\x5b\x1c\xaf\x1f\x27\x26\x36\xa5\x23\x09\x3d\xd7\x7a\xfb\xc7\ +\x09\x12\x12\xdb\x84\x3b\xf2\x42\x09\x8f\xb3\x31\xb3\xa5\x60\xa6\ +\x7d\xa1\xdc\x26\x09\x18\x1e\x0a\xdd\x83\x82\x36\xe5\x3f\xaa\xe2\ +\xd3\x97\x78\xb7\x4a\x34\x36\x59\xb2\x55\xe7\x39\xb5\x06\x3d\x3f\ +\xc7\xfb\xeb\x6a\xe0\xc1\x56\x9b\x34\xda\x46\x41\x06\x66\xb3\xd9\ +\x37\x4b\xdd\x06\xbe\x4a\xaf\x67\x4c\x23\x77\x83\x56\x61\xfc\xec\ +\x86\xd7\x13\xec\x02\xe0\xcd\x0e\x95\x0c\xa7\xbc\xee\x82\xf3\x14\ +\x15\xdd\x6d\xe2\xb4\xa4\x80\xba\x5f\x74\x43\xa9\x3a\xb4\xab\xd6\ +\xee\x3e\x58\x07\xdf\x14\x00\x43\x73\xd6\x01\xb3\x4e\x60\x29\xb2\ +\x19\x46\x76\xd0\xa6\xbb\x3f\x68\xd9\xa4\x12\x6a\x3c\xb5\x80\x49\ +\x69\xd7\xc2\x38\x09\xc0\x22\x1a\xd5\xa9\x44\x87\xa6\x48\x1b\x3a\ +\xf8\xe9\x7d\x4e\xaf\x9c\x7c\xf6\xb9\xee\xd0\xd4\x95\xac\x9f\x5d\ +\xd2\x3e\x97\xaf\x55\xe6\xfa\x6e\xe6\x1e\x6d\xa0\x92\x40\xdd\x48\ +\xd5\x32\xf0\x99\xf3\xbf\xff\xf4\xf3\x53\xf9\xa0\x85\xe7\xcd\xff\ +\x19\x27\x5f\xab\xe7\x1a\x86\x4e\xe0\x3e\xc7\x5b\x40\x7a\xf2\x54\ +\x8b\x17\xbe\x37\x07\x2f\x07\xd6\xff\x14\xac\x81\xd9\xda\x41\xfe\ +\x15\xbc\xda\x62\x76\x54\x9c\x24\xd6\x60\x1d\x0b\x2d\x8a\x4d\x54\ +\xe1\x2e\xaf\x8e\x19\xbe\xb7\x0e\x74\xa6\xd9\xef\x59\x10\x86\xbf\ +\xea\x87\x94\x2d\x6e\x14\x1a\x64\xa1\x3a\x0a\x17\xb3\xb2\xf6\x65\ +\xdb\x66\x8d\xc6\x2d\x66\x55\xeb\xf3\xbb\xd5\x11\x95\x13\xa3\xa8\ +\x3b\x3a\x74\x9f\x15\x30\xf4\x37\xad\x34\x2e\xb4\xab\x24\xde\x6e\ +\xd6\xb1\xaf\xca\xec\x15\x9a\xab\x13\x1a\x70\xca\x69\xdd\x83\x59\ +\xe2\x46\xa9\x46\x06\xfa\xc1\xcd\x92\x60\xff\x89\x62\x41\x84\x6d\ +\x51\x39\x25\xf0\x8f\x62\x2e\x1c\xf0\xb7\x53\x9b\x63\xa9\xe5\x02\ +\x44\xd2\x14\x8c\x11\xf6\xb9\x46\x7e\x91\x28\x2f\x6b\x74\x4e\x4e\ +\x08\x4b\xe8\xcb\x9a\x34\xe4\x27\x5c\x33\x0c\x48\x86\x2c\xec\x10\ +\x7d\xb1\x86\x5c\x3b\x16\x93\x63\x3d\x5a\xf0\xa6\xbc\xb2\x2d\x81\ +\x65\xae\x13\x0d\x5d\x69\x99\x66\x91\xab\x1c\x65\x8e\xad\xd6\x15\ +\x34\x1d\x2e\x11\x45\x4e\x43\x95\x66\x87\x10\xd0\x5a\x42\x5f\xce\ +\x3f\x12\xe2\xba\x8e\xf3\xa0\x6f\x50\xe9\x33\xe7\xb4\xb8\x4d\xb6\ +\x21\xf8\xfe\x57\x15\xc5\xbe\xff\x90\x66\x49\xfc\x55\xcd\xc1\x4b\ +\x5b\x2e\x21\xe5\x6d\xe1\x1a\xe6\x04\x73\x56\xb4\xa7\x92\x03\x5f\ +\x54\x12\x82\xed\x66\x73\x51\xc9\x7c\x17\x7c\x6e\x92\xb8\x87\x79\ +\x04\xf1\x4e\x25\xad\x9f\xd9\x60\xd4\x1b\x90\xa5\x14\xdb\xe7\x28\ +\xf5\x8c\x2c\xa2\xe3\xc0\x96\x97\xde\x8e\xde\x11\x5a\x39\x0e\x68\ +\x11\xc5\xce\xe9\x20\x73\x07\xd6\x22\x73\x1c\xe0\x52\x56\x22\x75\ +\x47\x70\xed\x71\x40\x6b\x63\x99\x5f\xe6\x7d\x79\x3b\x12\xe2\x32\ +\x56\x84\x09\x77\x75\xb8\x63\xa1\x2e\xb5\xff\x2f\x2e\x17\x91\x71\ +\xc0\xdb\x1a\xe2\x5a\xe2\xb6\xc0\xb6\xc3\xb9\x5c\x7a\xde\xe0\xe1\ +\x34\x1d\x9c\x07\x65\xce\xad\xe9\xda\x8e\xab\x2f\x5c\x77\x30\xb8\ +\xb6\xce\x17\xfa\xc2\x15\x89\x71\x20\xdb\x36\x5b\xb8\xb5\xfd\x77\ +\xcd\x6c\x87\xe4\x01\x5a\x67\x5f\xbd\x11\xd5\xe9\x40\x76\x48\x4c\ +\x6d\x9b\x7c\xdd\x9c\xa9\xa4\xcb\xf6\x87\xc4\xd5\xd6\xe9\x6c\x7f\ +\x4e\x15\xb1\x71\x90\xb5\x6d\x32\x7b\x7b\xb2\xf2\x71\x70\xb5\x75\ +\x75\xa0\x37\xae\x5a\xe3\x60\x6a\xdb\xda\x40\x0f\x6e\xb5\x63\xca\ +\x3a\x24\xaa\xb6\xae\xb6\xf4\xe8\x56\x47\x42\xd6\xd6\xa5\x96\x1e\ +\xa3\xab\xb1\xcc\xb1\xda\x56\x5a\xfa\x88\xaf\xba\x30\x1d\x92\x2b\ +\x68\x5d\xbd\xea\x33\xc2\xea\xf2\xb3\x43\x22\x6c\x9b\x33\xe8\x87\ +\xb0\xe3\x99\x14\xb4\x2c\xb5\xf4\x04\x6b\xc7\x84\x60\x50\xb0\x5a\ +\x57\x90\xd2\xb0\x72\xbb\xbf\x85\x6c\xd1\xc1\x59\x87\x58\xd6\x60\ +\xc0\xa5\x2d\x33\xd9\x3e\xc1\xa5\x5d\x7e\x76\x48\xe8\x96\x33\x2f\ +\x26\xef\x08\xae\xec\x7a\x01\x33\x24\x70\x11\xc3\x79\x45\xc8\xf9\ +\x6c\xa1\x5f\xea\x9a\x5d\xbb\x0a\x86\x84\x2f\x85\x20\xe1\x8e\xc8\ +\xda\x5d\xe3\xd9\x90\x70\x2d\x03\x5b\xeb\x7c\x3d\xa6\x67\xda\x9a\ +\x88\x74\x4c\x75\x87\x04\x30\x44\xb7\x17\x53\x84\xfe\xbd\xee\x68\ +\xf8\x0b\x33\xb3\xab\x51\x6e\xdf\x6e\xb7\xf3\xe5\xc2\x90\x00\x6e\ +\x0d\x78\xc5\xad\x27\xbd\x23\x09\xc3\xda\x01\xbd\xe2\x29\x6e\x43\ +\xd9\x0e\x5f\x60\x9a\x42\x0c\x06\xd9\xb6\xe9\x43\x7f\xc8\x0a\xc4\ +\x3a\x5e\xdb\x0e\x09\xdc\xb6\xd9\xc3\xcd\xdd\x80\x83\x3a\x5e\x85\ +\x0d\xc9\x11\xb4\x22\xda\x1b\x5b\x9d\x4e\x6c\x87\xc4\xd6\xd6\xe9\ +\xd8\xcd\xe9\x9a\xaf\x7e\x89\x0e\x27\x30\x24\xca\xb6\xc3\xda\xa7\ +\x87\xed\xda\x73\x34\x24\xd2\x5e\x99\xe3\xde\x9e\xae\x7c\x2c\x71\ +\xd6\x35\x34\x7b\x63\xa9\xd5\xb5\x0e\x33\x24\x8e\xb6\xad\x17\xf4\ +\xe0\x57\xed\x2e\xbb\x1f\x12\x53\x5b\x31\xed\xd1\xa9\x5a\x88\x77\ +\xbc\xbb\x1d\x12\x63\xdb\x16\x60\x7a\x0d\xb3\x28\x92\x1d\x0b\xdf\ +\x43\x82\xb7\x6d\x01\xa6\x9f\x40\x0b\x39\x23\x99\x1c\xb4\xc2\xda\ +\x6b\xa0\x65\x77\x6d\xe8\x18\x12\x6b\x5b\x9d\x42\x3f\xac\x15\x63\ +\x79\x4d\xd3\xbe\x04\xd3\x0f\xb0\x0c\xc9\x91\xbc\x47\x68\xdf\x78\ +\xd0\xcf\x8e\x83\xae\x45\xc3\x41\xfd\xe5\x5c\xeb\x9e\x83\x9e\x36\ +\x1b\x74\xed\xf1\x1c\x12\xb0\xad\xdb\x0d\x7a\xda\x67\x30\x9a\x6f\ +\x6e\xb4\xee\x34\xe8\x6d\x8b\xc1\x58\x3e\xb9\x71\x6d\x93\x41\x4f\ +\xbb\x0b\xc6\xf2\x77\xdf\xad\xfb\x0b\x7a\xdc\x58\x30\x96\xa1\xab\ +\x75\x6b\x41\x6f\x7b\x0a\xba\x5e\x1f\x0c\x09\xd9\xd6\x5d\x05\x3d\ +\x6e\x27\xe8\xda\x50\xf0\x27\xc4\x76\xd5\x52\x59\x78\xb8\x55\x3f\ +\x7c\x5e\x7e\x65\xf0\xb2\xa4\x63\xee\xc6\xd7\xc1\xf2\x5f\x43\x37\ +\x53\x9f\x10\x27\x25\xaa\x53\x24\x4b\x10\xf9\xe7\x33\x14\x57\x9c\ +\x51\xd9\xfc\x32\xdb\x69\x7f\x5f\xaf\xd8\x77\xa0\xd8\xac\x79\x85\ +\xa2\x63\x16\x1d\xfa\x16\x14\x9b\x55\xbc\x32\x36\x88\x93\x04\x1d\ +\x4c\xea\xa6\x60\xc1\xd8\x6b\xbb\xc0\x0b\x8a\x5f\x09\x7b\x2f\x6d\ +\xa1\xdd\x6a\xfe\xcb\xc7\x2c\xdb\x12\xd5\x1f\xb5\x3c\xf9\xa0\xdd\ +\x10\x3a\xae\x18\x7c\xee\xd2\x77\xd7\xa6\x82\xef\x7d\xf7\x86\xbe\ +\x93\x77\x33\x3b\x76\x55\xf1\xde\x75\x6f\x31\x3b\x18\x3d\xe5\x7d\ +\x7c\xa6\x85\xed\xfc\x4f\x42\xdf\x3b\xef\xed\x9d\x47\xf8\xc9\x8c\ +\xfd\xcd\xbd\x06\xd1\xf0\xfb\x20\xd7\xaf\xb5\x59\xc8\xba\xa9\x9d\ +\xd9\xc5\x47\x56\x9c\xf7\x6e\xeb\xd3\xce\xce\x36\x83\xf7\x62\x68\ +\xef\x11\xc9\x4d\x0d\x2d\x7f\x3f\x7f\x17\x53\x7b\xef\xb8\xdb\xc6\ +\x23\xf9\xab\xff\xbb\xf4\xdc\x7b\x24\x79\x53\x27\x29\xce\xbe\xda\ +\xdd\x4f\x3c\xf2\x1e\x40\xde\xd6\x4d\xea\x2d\x0b\xf6\x5d\xcc\xed\ +\xbd\xeb\x6e\x6e\x6e\xa2\x7f\x83\xfb\xf3\x38\xc9\xc5\x6c\x55\x9d\ +\xcd\x50\xfd\xb2\x71\xb3\x97\xaa\x94\xb2\x07\xf3\x13\x58\xf4\x8a\ +\xaf\xbe\x1e\x96\x71\x94\xa1\x5c\x03\x00\x27\x6b\x37\x2c\x24\xaf\ +\x6e\x12\xb8\x51\x76\x22\xdb\xe5\xf0\x9c\x88\xa0\x3b\x54\xe6\xbd\ +\x9c\xca\x82\x6f\x6a\xbe\x56\x7e\xb0\x5d\x3f\x84\x41\xa4\xca\xa3\ +\x44\x4e\xd2\x2c\xdd\x75\x10\x1e\xe6\xbf\xbb\x51\xfa\x80\xaa\x96\ +\xa1\x22\xfb\x46\x79\xf5\x61\x37\x45\x8a\x4c\xed\x33\x48\xe5\x2b\ +\xa8\x10\x29\xee\xdc\x30\x58\x45\xf3\x34\x73\x93\xac\x10\xf8\xca\ +\x8b\x93\x22\x4f\x4e\x94\x33\x21\xd2\x35\x29\x34\xa1\xca\x80\x66\ +\xa8\x3c\xf3\xa3\xaa\xd6\x2e\x4e\xfc\x73\x59\x5e\x46\xbd\x76\x5c\ +\xe4\xde\x25\x41\x06\x49\x90\x3e\x9e\x62\x1e\x26\x28\x7b\x7e\xf0\ +\x03\x4d\x3a\xfd\xe4\x30\x4b\x1e\xf4\x51\x38\x79\xb3\xd3\x97\x60\ +\x99\xcd\xab\xdb\xb2\xda\x91\xf7\x02\xe0\x17\xf5\xf6\x83\x74\x13\ +\x02\xb1\x83\x28\x4f\x10\xbf\xaa\x64\x19\xc6\xbb\xf9\x6b\x90\x06\ +\xcf\xa1\x7a\xc8\x7f\x06\xa1\xe6\x79\x25\xaa\x16\xeb\x8b\xae\x3b\ +\xb5\xbe\xd2\xd6\x9a\x66\x52\x18\x1a\xc7\x22\x3f\xb1\x48\xb0\x87\ +\xb5\x9b\x7c\x55\x49\x91\x46\x45\x2e\x14\x89\x9e\x5d\xef\xab\x3e\ +\x70\x23\xf2\xe7\xae\xe7\x6d\xd7\x5b\xbd\x38\x5e\x33\x0f\x2c\xea\ +\x6f\x06\x27\x58\x10\x4b\x9a\x62\x0a\xb3\x26\xf8\x49\x89\x63\xfc\ +\x68\x30\x0b\x13\x22\xa8\x74\xa6\x1c\x73\x4a\x88\x6d\x3a\x06\x95\ +\x98\x5b\x92\x9a\xce\x54\x60\x93\x39\x96\x4d\xa8\x41\x49\xf1\x0a\ +\xc9\x9e\xda\x58\x14\xbf\x19\xbf\x19\xf9\x57\x6d\x08\x25\xb6\x3e\ +\x87\x43\x50\x62\x31\x61\x30\xcc\x88\x34\x89\x6d\x4d\xa9\x89\x25\ +\x61\xb6\xc1\xb1\xc5\xa4\x45\x2d\x3a\x05\xdf\x28\xa4\x6d\x71\xd3\ +\x80\xdf\x24\xb3\x85\xc9\xa6\xb9\x23\x75\x2c\x13\x9e\x01\x09\xa9\ +\x69\x5a\x52\xd7\xd0\xa4\xc2\x14\x8e\xe1\x19\x26\x76\x08\x07\x77\ +\x3a\x45\x14\x43\x65\x28\x81\xcc\xd0\x00\x22\xa5\x70\xa6\x88\x61\ +\x53\x52\x87\x38\x50\x6b\x81\xb9\x23\x98\x25\xa6\x0c\x9a\x47\x61\ +\x5e\x08\x55\x31\x99\xb0\x28\x07\x09\x73\x98\x60\x0e\x54\x45\x4a\ +\x06\xc9\xa6\xda\xdc\x05\x97\x0c\xd2\x08\x62\x53\x66\xe5\x45\x51\ +\xca\x8d\x6f\x35\x6c\xda\x13\x69\xd3\x63\xd2\xd1\xcb\xed\x47\x47\ +\x70\x3c\x3b\x28\x8e\x22\x60\x4d\x9c\x20\x6f\x9b\xbc\xba\xd9\x36\ +\x51\x27\xa7\xd5\xd4\xa7\xce\x00\xcf\xf4\x41\x2d\x29\x18\x6e\x75\ +\xd5\x26\xff\x6e\xde\x43\x35\x6f\x18\x2c\xef\x69\xde\x44\x32\xc2\ +\xad\x29\x58\xaf\x43\x24\x15\x54\x9b\xb7\x89\x2d\x47\x02\xf9\xa7\ +\x04\x98\x6f\x3a\x0e\xd8\xaa\xb6\x6f\x62\x0a\x26\xa8\xb6\x0b\x2a\ +\x84\x6d\x5a\xda\xbe\xb9\x49\x6d\x21\xa7\x26\xa6\x60\x35\x36\x63\ +\xb9\x7d\x83\x90\x48\xfd\x72\x0d\xf4\x36\xa7\x9c\x59\xd2\xa0\xd8\ +\x91\xc2\x04\xd3\x9e\x82\xc5\x42\x99\x26\x98\xa4\xf6\x1e\x02\x1c\ +\x05\xd8\xb8\xc0\xd4\xe1\x42\x30\x6d\xe3\x16\x65\x26\x17\x5a\x66\ +\x9b\x42\x68\xdf\x02\x09\x09\xb1\xc0\xee\x25\xf8\x09\xc2\x4d\xa8\ +\xe6\x15\x1b\x17\x47\x23\xb7\x6b\x23\x97\x56\x6d\xe4\xbc\x32\x72\ +\x2e\x2b\x2b\x67\x17\x56\xce\x2f\xac\xdc\x2e\xad\x9c\x49\x28\xab\ +\xcd\xd0\xfb\x32\xf3\x66\x2c\x76\x16\x87\x5d\x1b\x09\xbe\x2f\x0e\ +\xa3\x98\xd6\x2f\x6c\x35\x53\xa1\xde\xf3\xf4\xdf\x5b\x37\x51\x4d\ +\xe9\xbf\xe2\x20\x9a\xe7\x01\xda\xf7\x47\x6b\x5a\x1a\x2f\x97\xa9\ +\xd2\xf6\xdd\x1a\xc1\x55\xd1\x1b\x87\x51\xa1\x16\x96\xf1\x1a\xad\ +\x42\xb2\x5a\x51\xc5\x6a\x97\x1a\x08\xbc\xa8\x53\x9c\xd1\x77\x14\ +\xea\xd8\x2b\xa7\x4d\xf3\x1b\x60\x49\xbe\x85\xcc\xc9\x23\x32\xb3\ +\xd3\xa9\xe6\x68\x37\x9a\x74\x1d\x49\x8e\x61\xa4\x02\xaa\x0b\xe7\ +\x1c\xcf\xe7\x6d\x96\xdd\x0a\xcd\x4b\xe4\x72\x2b\x86\xe6\x59\x2c\ +\x1f\x66\x61\x60\x2e\x87\xd9\x5f\x0c\x0e\xc3\xa1\x7d\x82\x44\xc5\ +\x58\x6e\x3b\xec\x46\x7c\xad\xcf\x4a\x83\xa8\x73\xa1\xcf\x2a\x7b\ +\xfa\xf0\x1f\xf2\x7c\xe6\x3d\ +\x00\x00\x0a\xd8\ \x00\ -\x00\x25\x7d\x78\x9c\xe5\x59\xdb\x6e\xdb\x38\x10\x7d\xcf\x57\x68\ -\x9d\x97\x16\x6b\x51\x22\x75\x57\xec\xf4\xa1\x45\x17\x05\x76\xb1\ -\xc0\x36\xc5\x3e\x16\xb4\x44\xdb\xda\xca\xa2\x41\x51\xb1\xdd\xaf\ -\xdf\xa1\xee\xb2\xe5\x36\x6d\xd2\x36\x41\x14\xc4\x91\x66\x86\x97\ -\x39\x3c\x73\x91\x33\x7b\xb5\xdf\xa4\xda\x2d\x13\x79\xc2\xb3\xf9\ -\x04\x23\x73\xa2\xb1\x2c\xe2\x71\x92\xad\xe6\x93\x0f\x37\x6f\x75\ -\x7f\xa2\xe5\x92\x66\x31\x4d\x79\xc6\xe6\x93\x8c\x4f\x5e\x5d\x5f\ -\xcc\x7e\xd3\x75\xed\xb5\x60\x54\xb2\x58\xdb\x25\x72\xad\xbd\xcb\ -\x3e\xe5\x11\xdd\x32\xed\xc5\x5a\xca\x6d\x68\x18\xbb\xdd\x0e\x25\ -\xb5\x10\x71\xb1\x32\x5e\x6a\xba\x7e\x7d\x71\x31\xcb\x6f\x57\x17\ -\x9a\xa6\xc1\xba\x59\x1e\xc6\xd1\x7c\x52\x0f\xd8\x16\x22\x2d\x0d\ -\xe3\xc8\x60\x29\xdb\xb0\x4c\xe6\x06\x46\xd8\x98\x74\xe6\x51\x67\ -\x1e\xa9\xd5\x93\x5b\x16\xf1\xcd\x86\x67\x79\x39\x32\xcb\x2f\x7b\ -\xc6\x22\x5e\xb6\xd6\x6a\x37\x3b\xab\x34\xc2\x41\x10\x18\x26\x31\ -\x08\xd1\xc1\x42\xcf\x0f\x99\xa4\x7b\x7d\x38\x14\xf6\x38\x36\x94\ -\x98\xa6\x69\x80\xae\xb3\xbc\x9b\x55\xb8\x4f\x01\x8a\xb3\x9b\x29\ -\xb5\xfd\xd5\x01\xfe\x2d\xfc\xb6\x03\x1a\x01\xca\x79\x21\x22\xb6\ -\x84\x91\x0c\x65\x4c\x1a\x6f\x6e\xde\xb4\x4a\xdd\x44\xb1\x8c\x7b\ -\xd3\x34\xe8\x0f\xd6\x1d\x1c\x49\x46\x37\x2c\xdf\xd2\x88\xe5\x46\ -\x23\x2f\xc7\xef\x92\x58\xae\xe7\x13\xcb\x46\xd8\x82\xcb\x29\x85\ -\x6b\x96\xac\xd6\xf2\x58\x9a\xc4\xf3\x09\xf8\x4a\x02\xbf\x7a\xee\ -\x51\x09\x57\x06\xf5\xc4\x61\xab\x31\x51\x40\x10\xd6\x04\x76\x2c\ -\xaf\xb2\x69\x5c\x08\x63\x1e\xa9\x3d\xc1\x94\x6c\x93\xd0\x42\xf2\ -\x0d\x9c\x71\x14\xa5\x34\xcf\x93\x65\x12\xc1\x03\xcf\xb6\x69\xb1\ -\x4a\xb2\x8f\x82\x27\x1f\x37\x45\x2a\x93\x6d\xca\x50\x83\x76\xbb\ -\x18\xdb\x6f\xb9\x90\xfa\x3e\xde\x02\x8a\xae\x37\xaa\x3c\x34\xca\ -\x6b\xd0\xce\x62\xb6\xcc\x95\x55\xe5\x92\x7a\x02\x9f\x2a\x1d\x68\ -\xe1\x84\x18\x15\x7f\x08\x1a\x27\xc0\xcb\xca\xae\xb2\x1c\x6a\x1c\ -\xcf\x6b\xc6\xc0\xa8\x5c\xf2\x6d\x63\x0b\x5e\xca\x43\xaa\x5c\x03\ -\xa1\x1e\xf1\x94\x8b\xf0\xd2\x34\xf1\xc2\x71\xaf\x4a\x11\x87\x83\ -\x48\xe4\x21\xc4\x57\x93\x6e\x0c\x5f\x2e\x73\x06\xa0\x9b\x3d\x59\ -\x09\x39\x8c\x80\xb5\x82\x89\x66\x9c\x59\xad\xb3\xf2\xbd\xb1\x09\ -\x91\x6b\x7b\xa6\xe3\xfb\xf6\xe4\x8b\x3b\xb4\x5d\x0f\x7b\xcb\xe1\ -\x0e\x4d\x64\x07\xbe\x69\x05\x84\x5c\x9d\x5f\x7f\x64\x2e\x1c\x7b\ -\x96\x7f\x3c\xd7\x98\xb7\x78\xd4\x5b\x1f\xb7\xab\xcd\x8c\x21\xec\ -\x5f\x3e\xa5\xe6\xdc\x61\x1b\x29\x8b\x60\x7e\x9a\xee\xe8\x21\x6f\ -\x17\x29\xe3\x2f\x5c\x0b\x06\xf9\xe2\x72\xe4\x3c\xbf\x74\xdc\x35\ -\xed\xcb\x69\x70\xff\x9c\x0e\xf0\x64\x91\x4e\x49\x54\xe4\x74\x5a\ -\xd2\xb7\x5d\xd5\xd3\x7d\xc8\x12\x09\x29\xa5\xc8\x99\x78\xaf\xc2\ -\xf2\xef\xec\x43\xce\x4e\xac\x6e\x04\xcd\x72\xc8\x01\x1b\x00\x26\ -\xa2\x29\x7b\x01\x59\xdb\x55\x97\xf7\xb2\x03\xe8\x17\x40\x11\x1c\ -\x41\x81\x88\x33\x40\x03\xbb\x43\x34\x30\xf2\x9c\x01\x20\x3d\x83\ -\x87\x46\x64\x66\xa8\x88\x2e\xef\xda\x64\xa3\x32\x4d\x7c\x9b\xb0\ -\x5d\x17\xf6\x0b\xda\xce\xbe\xa5\x2b\x56\xf2\x16\x80\x58\x96\x57\ -\xad\x58\x70\x11\x33\xd1\xa8\xca\x65\xdc\x81\xaa\xa6\x76\x55\x4d\ -\x2f\x86\xb8\xab\x59\x5b\xbd\x39\xae\xcf\xd7\x34\xe6\xbb\xf9\x84\ -\x1c\x2b\x3f\x73\x0e\x1e\x62\xc8\xac\x81\xe7\x9b\x27\xea\x68\x3f\ -\x9f\xe8\xd8\x45\x41\x80\xcd\x96\x6a\x9d\x16\x16\x24\x04\x79\x6a\ -\xa8\x7f\xa2\x2c\x84\x00\x1c\xf5\x94\x1e\x18\x78\x55\xfe\x69\x82\ -\x30\x5f\xf3\xdd\x4a\x28\x74\xa4\x28\xd8\xf1\x48\xa5\xd1\x17\x0b\ -\xbe\x1f\x57\x43\x42\x2f\x54\x25\xd7\x8b\xea\x20\xb7\xfb\xfe\xac\ -\x45\x12\xb3\x7c\x7c\x60\x9e\xd1\xad\xbe\x4a\xf9\x82\xa6\xe3\x06\ -\xbb\x24\x03\x94\xf4\xba\x54\x61\xab\x3d\x84\x63\x8b\xa6\x6e\x79\ -\xa7\x6e\xd7\x16\xfb\x2e\x16\x8f\x55\x87\xf3\xaa\x0d\xdd\x27\x9b\ -\xe4\x33\x8b\x55\xbe\xaa\xa3\x6e\x00\x4b\xc3\x52\x79\x50\x35\x78\ -\x7f\x50\xb2\x41\x00\x29\x01\x09\x82\x2e\xaa\xb8\x48\xa0\xb4\xed\ -\xfb\xa9\xa1\x12\x1d\xfa\x22\x55\xb1\xa1\x3d\xdb\x97\x04\xab\x68\ -\x7e\xac\x3b\xf4\x75\x4d\x04\x9c\x12\xbf\x94\x6f\x98\xa4\x31\x95\ -\xb4\x8b\x82\x46\x02\x7b\x33\x1b\xcf\xa0\x55\x0a\xff\x79\xf3\xb6\ -\x4d\xf6\x51\x14\xfe\xcb\xc5\xa7\x2e\x4f\x2b\x03\xba\xe0\x05\x20\ -\xdd\x16\x40\x55\x56\xa3\x50\x05\x26\x95\xd7\xc9\x06\xb8\xad\xfa\ -\xa2\xdf\xa1\x3d\x81\x78\x6c\x15\x03\x63\x05\x56\x37\x69\x35\xad\ -\x60\x55\xdf\x33\xda\x2a\xc6\xd1\x26\x51\x83\x8c\xf7\x32\x49\xd3\ -\x77\x6a\x91\x5e\x51\xaa\x27\x4d\x64\xca\x7a\x95\xca\xa8\x77\xdf\ -\x14\x93\x9e\x73\x33\xa3\xf1\xbe\x7c\x5a\x75\xa8\x0c\x82\xa2\x3d\ -\xe8\x94\x2e\x18\x30\xf4\x4f\xa5\xd4\x4e\xb4\x2b\xc1\x8b\xed\x86\ -\xc7\xac\x1e\xde\xa2\x09\xb9\xb7\x3d\xb2\xaa\x50\x2e\x61\xf7\x21\ -\xf8\xf5\xe2\x24\xed\xfa\xce\xcb\x2b\xa5\xed\x75\x08\xe5\xa3\x28\ -\x52\xe8\x65\x6e\x59\xc6\xe3\x18\x8a\xaa\xe0\x9f\xd8\xf8\x04\x01\ -\x4c\x50\xe9\xab\x70\x09\x31\x72\xcd\xf2\x22\x8d\x1c\x30\x64\x22\ -\x05\x3e\xcb\xd0\x6e\x64\x31\x85\x4c\x24\x04\x3d\x84\x19\xb4\xfe\ -\x8d\xb4\xdd\xc4\x80\xca\xca\x21\xa0\x4b\xd0\x0a\x9b\x16\xb2\xab\ -\x80\x6d\xff\xd8\x2b\x8a\x63\x14\x3e\x8c\x09\x05\x98\x3a\xc8\xb2\ -\x4c\xcb\xed\xd6\x10\x60\x6a\x21\xdf\xb4\x7d\x55\x86\xdb\xd2\xb7\ -\xa5\x72\x3d\x06\xee\x65\x50\x5e\x0d\x54\x97\x15\x04\x43\x64\x08\ -\x22\xbe\xe9\x92\x00\xbb\x8d\x5c\x81\x09\x67\x19\x2e\x0a\x29\xfb\ -\xb2\xff\x78\x92\x85\x25\x6c\xdf\x8f\x21\x74\xc2\x81\x6b\x7a\xbe\ -\x6d\xb5\x3e\xa9\xf0\xd3\x88\x87\x3c\xd5\x62\x5b\x53\xe5\x73\x79\ -\x69\x91\x66\x4e\x7d\xe4\x94\x0f\xde\xb9\xfb\xc1\x99\x28\x1c\x2c\ -\xcf\x0d\x74\x57\xef\x20\xef\x75\x00\x19\x38\x26\xb9\xd0\x21\xf9\ -\xdf\x52\x59\x08\xa6\x92\xcc\xd7\x51\x84\xf2\x01\x3f\x5f\x41\xd1\ -\xc6\x7e\xe0\x11\x3b\xf8\xa5\x28\x12\x14\x54\x28\x06\xc8\x05\xfc\ -\xe0\x73\x6a\xf6\x3f\x4f\xd1\xf2\x6d\x4f\x77\xac\x07\x04\xeb\xc9\ -\x50\xae\xa1\x90\x35\x25\x18\x9d\x52\xce\x1e\xbf\x3d\xc7\x37\x4f\ -\xf7\x9e\x23\xe3\xac\x3a\x6c\x01\x44\xa7\xa6\x9c\x53\x12\xc0\x2b\ -\x29\x37\x7a\x3f\x4e\x42\xff\x41\x43\xf6\xc9\xb0\x50\x85\x25\xa9\ -\xbe\x5e\xb0\xc8\x20\xe5\xf9\xe7\xee\xcf\x51\xd0\xd6\x9d\xe7\x48\ -\x41\x1b\xf9\x53\x17\x59\xd5\x89\xdf\x3d\xe9\xe1\x07\x45\x6b\xb9\ -\xf4\x96\x84\x3e\x32\xbe\x55\xdf\x58\x1c\x95\x08\x17\x55\x8d\xc6\ -\x14\x7b\x55\xcf\xe1\x0d\x58\x37\x7e\x7b\x8e\x72\x81\xee\xff\x6c\ -\x10\x7f\x36\xe5\x46\x41\xc4\xc8\xaf\x40\xec\x97\x8e\x3b\x12\xcf\ -\x7c\x50\xe2\x3d\x99\x44\x87\x1d\x64\xd7\xc4\x33\x6b\x0a\xde\x83\ -\x78\x5e\xf0\x3c\xeb\x6d\x8b\xdd\x14\xdb\x75\xaf\xf7\x0d\x7d\xde\ -\x83\x62\x76\xc4\xbc\xe5\x92\x2e\x89\xf5\x18\x99\xd7\xa5\x3c\x17\ -\xd9\xdf\xcf\xb9\x1f\x47\xb7\x71\xe8\x1e\x03\xdd\xba\x44\xd7\x0f\ -\xda\xbb\xd1\xed\x39\x52\xcd\xab\x72\x9c\x2a\x0c\xe4\x3e\x5c\xfb\ -\x91\xc9\xed\x11\xb3\xad\xa2\x98\x42\xcf\x1d\xb0\xad\x4c\xc7\x56\ -\xc5\xb6\xb1\xfb\x33\x6f\x14\xcf\x91\x81\xdd\x5b\xad\x85\x70\xdb\ -\x13\x77\x84\xc3\xe7\xee\xcf\xbe\x55\x3c\x47\x26\x76\xaf\xb5\x4d\ -\x44\xdf\xeb\xdd\x16\xff\xb8\x26\xf9\xd7\x33\x11\x1f\x05\xb1\x03\ -\x15\x01\xfb\xf5\x2b\xed\x3d\xbe\x51\x09\x7e\x36\x68\x8f\x81\x78\ -\xc4\x84\xb7\xd9\xba\x76\xdc\xf5\x7d\xe2\x39\xa6\x39\xe8\x7e\xed\ -\x29\xc6\x75\x98\xde\xe7\x7b\xbb\x87\xa4\xd9\x13\xc9\x6f\x7f\xb5\ -\xb5\x13\x30\x74\xb5\xd7\x1a\x0e\x10\x51\x77\x47\x7f\xcf\xbc\x45\ -\x7c\x23\x60\x33\x63\x75\x7d\x31\x53\xff\x06\xbb\xbe\xf8\x1f\xbe\ -\x4f\x01\xc4\ -\x00\x00\x06\x77\ +\x00\x73\x2b\x78\x9c\xed\x5d\x5b\x93\xa3\xb8\x15\x7e\x9f\x5f\x41\ +\x3c\x2f\x33\x15\x4b\xd6\x8d\x8b\xdc\xee\xde\x87\xdd\xda\xda\xad\ +\xda\xbc\x64\x37\x95\xc7\x29\x1a\x64\x37\x19\x0c\x0e\xe0\xb6\x3d\ +\xbf\x3e\x47\xdc\x8c\x2f\x90\x4c\xb5\x71\xb6\xa0\x99\x9a\xea\xe6\ +\x1c\x49\x48\x9f\xbe\x73\x74\x24\xd4\x68\xf1\xc3\x7e\x1d\x1a\xaf\ +\x2a\x49\x83\x38\x7a\x9c\x50\x4c\x26\x86\x8a\xbc\xd8\x0f\xa2\xd5\ +\xe3\xe4\x1f\x7f\xfc\x8c\x9c\x89\x91\x66\x6e\xe4\xbb\x61\x1c\xa9\ +\xc7\x49\x14\x4f\x7e\x78\xfa\xb0\xf8\x0b\x42\xc6\x8f\x89\x72\x33\ +\xe5\x1b\xbb\x20\x7b\x31\x7e\x8d\xbe\xa6\x9e\xbb\x51\xc6\xa7\x97\ +\x2c\xdb\xcc\x67\xb3\xdd\x6e\x87\x83\x52\x88\xe3\x64\x35\xfb\x6c\ +\x20\xf4\xf4\xe1\xc3\x22\x7d\x5d\x7d\x30\x0c\x03\x9e\x1b\xa5\x73\ +\xdf\x7b\x9c\x94\x19\x36\xdb\x24\xcc\x13\xfa\xde\x4c\x85\x6a\xad\ +\xa2\x2c\x9d\x51\x4c\x67\x93\x63\x72\xef\x98\xdc\xd3\x4f\x0f\x5e\ +\x95\x17\xaf\xd7\x71\x94\xe6\x39\xa3\xf4\x63\x23\x71\xe2\x2f\xeb\ +\xd4\xba\x36\x3b\x9e\x27\xa2\x52\xca\x19\x61\x33\xc6\x10\xa4\x40\ +\xe9\x21\xca\xdc\x3d\x3a\xcd\x0a\x75\xbc\x96\x95\x11\x42\x66\xa0\ +\x3b\xa6\xfc\xdf\x52\xcd\x53\x00\x74\x03\xff\xeb\xe4\x95\x00\xa7\ +\xf1\x36\xf1\xd4\x12\xf2\x29\x1c\xa9\x6c\xf6\xd3\x1f\x3f\xd5\x4a\ +\x44\xb0\x9f\xf9\x8d\x62\x2a\x3c\x4f\x9e\x7a\x02\x72\xe4\xae\x55\ +\xba\x71\x3d\x95\xce\x2a\x79\x9e\x7f\x17\xf8\xd9\xcb\xe3\x84\x0b\ +\x4c\x39\x5c\x66\x2e\x7c\x51\xc1\xea\x25\x3b\x97\x06\xfe\xe3\x04\ +\x6a\xcf\xa4\x53\xdc\x37\xc8\x41\x8b\x04\x65\xc1\xf3\x5a\x43\xb0\ +\x64\x98\x1a\x09\x35\xb9\x5d\xa4\xa9\x9a\x30\xf7\x63\x4f\xd7\x09\ +\x8a\x54\xeb\xc0\xdd\x66\xf1\x1a\x7a\xcd\xf3\x42\x37\x4d\x83\x65\ +\xe0\xc1\x4d\x1c\x6d\xc2\xed\x2a\x88\xbe\x6c\x23\x3f\xfe\xa2\xfc\ +\x20\xfb\x92\xb8\x69\xa6\x12\x5c\x61\x58\x3f\x50\xed\x37\x71\x92\ +\xa1\xbd\xbf\x01\x24\x2d\xfb\xaa\xf2\x50\x29\x9f\x40\xbb\xf0\xd5\ +\x32\xd5\xa9\x8a\x66\xe9\x3b\x68\x97\x3d\x31\x66\xb9\xb6\xae\xa5\ +\xae\xa2\xff\x1a\xa8\xdd\x31\xed\xb3\x9b\x16\xd0\x19\xc6\xc6\x5d\ +\x01\xcd\xc2\x38\x79\x9c\x7c\x5c\xe6\x57\xa9\x78\x8e\x13\x5f\x25\ +\x95\xca\xca\xaf\x13\x55\x0c\x5d\x11\x64\x87\xc2\xb0\xca\xb2\xab\ +\xfa\xea\x52\x6b\x3d\xb9\xae\x4f\x5f\x5c\x3f\xde\x3d\x4e\xd8\xb9\ +\xf2\x5b\x1c\xaf\x1f\x27\x26\x36\xa5\x23\x09\x3d\xd7\x7a\xfb\xc7\ +\x09\x12\x12\xdb\x84\x3b\xf2\x42\x09\x8f\xb3\x31\xb3\xa5\x60\xa6\ +\x7d\xa1\xdc\x26\x09\x18\x1e\x0a\xdd\x83\x82\x36\xe5\x3f\xaa\xe2\ +\xd3\x97\x78\xb7\x4a\x34\x36\x59\xb2\x55\xe7\x39\xb5\x06\x3d\x3f\ +\xc7\xfb\xeb\x6a\xe0\xc1\x56\x9b\x34\xda\x46\x41\x06\x66\xb3\xd9\ +\x37\x4b\xdd\x06\xbe\x4a\xaf\x67\x4c\x23\x77\x83\x56\x61\xfc\xec\ +\x86\xd7\x13\xec\x02\xe0\xcd\x0e\x95\x0c\xa7\xbc\xee\x82\xf3\x14\ +\x15\xdd\x6d\xe2\xb4\xa4\x80\xba\x5f\x74\x43\xa9\x3a\xb4\xab\xd6\ +\xee\x3e\x58\x07\xdf\x14\x00\x43\x73\xd6\x01\xb3\x4e\x60\x29\xb2\ +\x19\x46\x76\xd0\xa6\xbb\x3f\x68\xd9\xa4\x12\x6a\x3c\xb5\x80\x49\ +\x69\xd7\xc2\x38\x09\xc0\x22\x1a\xd5\xa9\x44\x87\xa6\x48\x1b\x3a\ +\xf8\xe9\x7d\x4e\xaf\x9c\x7c\xf6\xb9\xee\xd0\xd4\x95\xac\x9f\x5d\ +\xd2\x3e\x97\xaf\x55\xe6\xfa\x6e\xe6\x1e\x6d\xa0\x92\x40\xdd\x48\ +\xd5\x32\xf0\x99\xf3\xbf\xff\xf4\xf3\x53\xf9\xa0\x85\xe7\xcd\xff\ +\x19\x27\x5f\xab\xe7\x1a\x86\x4e\xe0\x3e\xc7\x5b\x40\x7a\xf2\x54\ +\x8b\x17\xbe\x37\x07\x2f\x07\xd6\xff\x14\xac\x81\xd9\xda\x41\xfe\ +\x15\xbc\xda\x62\x76\x54\x9c\x24\xd6\x60\x1d\x0b\x2d\x8a\x4d\x54\ +\xe1\x2e\xaf\x8e\x19\xbe\xb7\x0e\x74\xa6\xd9\xef\x59\x10\x86\xbf\ +\xea\x87\x94\x2d\x6e\x14\x1a\x64\xa1\x3a\x0a\x17\xb3\xb2\xf6\x65\ +\xdb\x66\x8d\xc6\x2d\x66\x55\xeb\xf3\xbb\xd5\x11\x95\x13\xa3\xa8\ +\x3b\x3a\x74\x9f\x15\x30\xf4\x37\xad\x34\x2e\xb4\xab\x24\xde\x6e\ +\xd6\xb1\xaf\xca\xec\x15\x9a\xab\x13\x1a\x70\xca\x69\xdd\x83\x59\ +\xe2\x46\xa9\x46\x06\xfa\xc1\xcd\x92\x60\xff\x89\x62\x41\x84\x6d\ +\x51\x39\x25\xf0\x8f\x62\x2e\x1c\xf0\xb7\x53\x9b\x63\xa9\xe5\x02\ +\x44\xd2\x14\x8c\x11\xf6\xb9\x46\x7e\x91\x28\x2f\x6b\x74\x4e\x4e\ +\x08\x4b\xe8\xcb\x9a\x34\xe4\x27\x5c\x33\x0c\x48\x86\x2c\xec\x10\ +\x7d\xb1\x86\x5c\x3b\x16\x93\x63\x3d\x5a\xf0\xa6\xbc\xb2\x2d\x81\ +\x65\xae\x13\x0d\x5d\x69\x99\x66\x91\xab\x1c\x65\x8e\xad\xd6\x15\ +\x34\x1d\x2e\x11\x45\x4e\x43\x95\x66\x87\x10\xd0\x5a\x42\x5f\xce\ +\x3f\x12\xe2\xba\x8e\xf3\xa0\x6f\x50\xe9\x33\xe7\xb4\xb8\x4d\xb6\ +\x21\xf8\xfe\x57\x15\xc5\xbe\xff\x90\x66\x49\xfc\x55\xcd\xc1\x4b\ +\x5b\x2e\x21\xe5\x6d\xe1\x1a\xe6\x04\x73\x56\xb4\xa7\x92\x03\x5f\ +\x54\x12\x82\xed\x66\x73\x51\xc9\x7c\x17\x7c\x6e\x92\xb8\x87\x79\ +\x04\xf1\x4e\x25\xad\x9f\xd9\x60\xd4\x1b\x90\xa5\x14\xdb\xe7\x28\ +\xf5\x8c\x2c\xa2\xe3\xc0\x96\x97\xde\x8e\xde\x11\x5a\x39\x0e\x68\ +\x11\xc5\xce\xe9\x20\x73\x07\xd6\x22\x73\x1c\xe0\x52\x56\x22\x75\ +\x47\x70\xed\x71\x40\x6b\x63\x99\x5f\xe6\x7d\x79\x3b\x12\xe2\x32\ +\x56\x84\x09\x77\x75\xb8\x63\xa1\x2e\xb5\xff\x2f\x2e\x17\x91\x71\ +\xc0\xdb\x1a\xe2\x5a\xe2\xb6\xc0\xb6\xc3\xb9\x5c\x7a\xde\xe0\xe1\ +\x34\x1d\x9c\x07\x65\xce\xad\xe9\xda\x8e\xab\x2f\x5c\x77\x30\xb8\ +\xb6\xce\x17\xfa\xc2\x15\x89\x71\x20\xdb\x36\x5b\xb8\xb5\xfd\x77\ +\xcd\x6c\x87\xe4\x01\x5a\x67\x5f\xbd\x11\xd5\xe9\x40\x76\x48\x4c\ +\x6d\x9b\x7c\xdd\x9c\xa9\xa4\xcb\xf6\x87\xc4\xd5\xd6\xe9\x6c\x7f\ +\x4e\x15\xb1\x71\x90\xb5\x6d\x32\x7b\x7b\xb2\xf2\x71\x70\xb5\x75\ +\x75\xa0\x37\xae\x5a\xe3\x60\x6a\xdb\xda\x40\x0f\x6e\xb5\x63\xca\ +\x3a\x24\xaa\xb6\xae\xb6\xf4\xe8\x56\x47\x42\xd6\xd6\xa5\x96\x1e\ +\xa3\xab\xb1\xcc\xb1\xda\x56\x5a\xfa\x88\xaf\xba\x30\x1d\x92\x2b\ +\x68\x5d\xbd\xea\x33\xc2\xea\xf2\xb3\x43\x22\x6c\x9b\x33\xe8\x87\ +\xb0\xe3\x99\x14\xb4\x2c\xb5\xf4\x04\x6b\xc7\x84\x60\x50\xb0\x5a\ +\x57\x90\xd2\xb0\x72\xbb\xbf\x85\x6c\xd1\xc1\x59\x87\x58\xd6\x60\ +\xc0\xa5\x2d\x33\xd9\x3e\xc1\xa5\x5d\x7e\x76\x48\xe8\x96\x33\x2f\ +\x26\xef\x08\xae\xec\x7a\x01\x33\x24\x70\x11\xc3\x79\x45\xc8\xf9\ +\x6c\xa1\x5f\xea\x9a\x5d\xbb\x0a\x86\x84\x2f\x85\x20\xe1\x8e\xc8\ +\xda\x5d\xe3\xd9\x90\x70\x2d\x03\x5b\xeb\x7c\x3d\xa6\x67\xda\x9a\ +\x88\x74\x4c\x75\x87\x04\x30\x44\xb7\x17\x53\x84\xfe\xbd\xee\x68\ +\xf8\x0b\x33\xb3\xab\x51\x6e\xdf\x6e\xb7\xf3\xe5\xc2\x90\x00\x6e\ +\x0d\x78\xc5\xad\x27\xbd\x23\x09\xc3\xda\x01\xbd\xe2\x29\x6e\x43\ +\xd9\x0e\x5f\x60\x9a\x42\x0c\x06\xd9\xb6\xe9\x43\x7f\xc8\x0a\xc4\ +\x3a\x5e\xdb\x0e\x09\xdc\xb6\xd9\xc3\xcd\xdd\x80\x83\x3a\x5e\x85\ +\x0d\xc9\x11\xb4\x22\xda\x1b\x5b\x9d\x4e\x6c\x87\xc4\xd6\xd6\xe9\ +\xd8\xcd\xe9\x9a\xaf\x7e\x89\x0e\x27\x30\x24\xca\xb6\xc3\xda\xa7\ +\x87\xed\xda\x73\x34\x24\xd2\x5e\x99\xe3\xde\x9e\xae\x7c\x2c\x71\ +\xd6\x35\x34\x7b\x63\xa9\xd5\xb5\x0e\x33\x24\x8e\xb6\xad\x17\xf4\ +\xe0\x57\xed\x2e\xbb\x1f\x12\x53\x5b\x31\xed\xd1\xa9\x5a\x88\x77\ +\xbc\xbb\x1d\x12\x63\xdb\x16\x60\x7a\x0d\xb3\x28\x92\x1d\x0b\xdf\ +\x43\x82\xb7\x6d\x01\xa6\x9f\x40\x0b\x39\x23\x99\x1c\xb4\xc2\xda\ +\x6b\xa0\x65\x77\x6d\xe8\x18\x12\x6b\x5b\x9d\x42\x3f\xac\x15\x63\ +\x79\x4d\xd3\xbe\x04\xd3\x0f\xb0\x0c\xc9\x91\xbc\x47\x68\xdf\x78\ +\xd0\xcf\x8e\x83\xae\x45\xc3\x41\xfd\xe5\x5c\xeb\x9e\x83\x9e\x36\ +\x1b\x74\xed\xf1\x1c\x12\xb0\xad\xdb\x0d\x7a\xda\x67\x30\x9a\x6f\ +\x6e\xb4\xee\x34\xe8\x6d\x8b\xc1\x58\x3e\xb9\x71\x6d\x93\x41\x4f\ +\xbb\x0b\xc6\xf2\x77\xdf\xad\xfb\x0b\x7a\xdc\x58\x30\x96\xa1\xab\ +\x75\x6b\x41\x6f\x7b\x0a\xba\x5e\x1f\x0c\x09\xd9\xd6\x5d\x05\x3d\ +\x6e\x27\xe8\xda\x50\xf0\x27\xc4\x76\xd5\x52\x59\x78\xb8\x55\x3f\ +\x7c\x5e\x7e\x65\xf0\xb2\xa4\x63\xee\xc6\xd7\xc1\xf2\x5f\x43\x37\ +\x53\x9f\x10\x27\x25\xaa\x53\x24\x4b\x10\xf9\xe7\x33\x14\x57\x9c\ +\x51\xd9\xfc\x32\xdb\x69\x7f\x5f\xaf\xd8\x77\xa0\xd8\xac\x79\x85\ +\xa2\x63\x16\x1d\xfa\x16\x14\x9b\x55\xbc\x32\x36\x88\x93\x04\x1d\ +\x4c\xea\xa6\x60\xc1\xd8\x6b\xbb\xc0\x0b\x8a\x5f\x09\x7b\x2f\x6d\ +\xa1\xdd\x6a\xfe\xcb\xc7\x2c\xdb\x12\xd5\x1f\xb5\x3c\xf9\xa0\xdd\ +\x10\x3a\xae\x18\x7c\xee\xd2\x77\xd7\xa6\x82\xef\x7d\xf7\x86\xbe\ +\x93\x77\x33\x3b\x76\x55\xf1\xde\x75\x6f\x31\x3b\x18\x3d\xe5\x7d\ +\x7c\xa6\x85\xed\xfc\x4f\x42\xdf\x3b\xef\xed\x9d\x47\xf8\xc9\x8c\ +\xfd\xcd\xbd\x06\xd1\xf0\xfb\x20\xd7\xaf\xb5\x59\xc8\xba\xa9\x9d\ +\xd9\xc5\x47\x56\x9c\xf7\x6e\xeb\xd3\xce\xce\x36\x83\xf7\x62\x68\ +\xef\x11\xc9\x4d\x0d\x2d\x7f\x3f\x7f\x17\x53\x7b\xef\xb8\xdb\xc6\ +\x23\xf9\xab\xff\xbb\xf4\xdc\x7b\x24\x79\x53\x27\x29\xce\xbe\xda\ +\xdd\x4f\x3c\xf2\x1e\x40\xde\xd6\x4d\xea\x2d\x0b\xf6\x5d\xcc\xed\ +\xbd\xeb\x6e\x6e\x6e\xa2\x7f\x83\xfb\xf3\x38\xc9\xc5\x6c\x55\x9d\ +\xcd\x50\xfd\xb2\x71\xb3\x97\xaa\x94\xb2\x07\xf3\x13\x58\xf4\x8a\ +\xaf\xbe\x1e\x96\x71\x94\xa1\x5c\x03\x00\x27\x6b\x37\x2c\x24\xaf\ +\x6e\x12\xb8\x51\x76\x22\xdb\xe5\xf0\x9c\x88\xa0\x3b\x54\xe6\xbd\ +\x9c\xca\x82\x6f\x6a\xbe\x56\x7e\xb0\x5d\x3f\x84\x41\xa4\xca\xa3\ +\x44\x4e\xd2\x2c\xdd\x75\x10\x1e\xe6\xbf\xbb\x51\xfa\x80\xaa\x96\ +\xa1\x22\xfb\x46\x79\xf5\x61\x37\x45\x8a\x4c\xed\x33\x48\xe5\x2b\ +\xa8\x10\x29\xee\xdc\x30\x58\x45\xf3\x34\x73\x93\xac\x10\xf8\xca\ +\x8b\x93\x22\x4f\x4e\x94\x33\x21\xd2\x35\x29\x34\xa1\xca\x80\x66\ +\xa8\x3c\xf3\xa3\xaa\xd6\x2e\x4e\xfc\x73\x59\x5e\x46\xbd\x76\x5c\ +\xe4\xde\x25\x41\x06\x49\x90\x3e\x9e\x62\x1e\x26\x28\x7b\x7e\xf0\ +\x03\x4d\x3a\xfd\xe4\x30\x4b\x1e\xf4\x51\x38\x79\xb3\xd3\x97\x60\ +\x99\xcd\xab\xdb\xb2\xda\x91\xf7\x02\xe0\x17\xf5\xf6\x83\x74\x13\ +\x02\xb1\x83\x28\x4f\x10\xbf\xaa\x64\x19\xc6\xbb\xf9\x6b\x90\x06\ +\xcf\xa1\x7a\xc8\x7f\x06\xa1\xe6\x79\x25\xaa\x16\xeb\x8b\xae\x3b\ +\xb5\xbe\xd2\xd6\x9a\x66\x52\x18\x1a\xc7\x22\x3f\xb1\x48\xb0\x87\ +\xb5\x9b\x7c\x55\x49\x91\x46\x45\x2e\x14\x89\x9e\x5d\xef\xab\x3e\ +\x70\x23\xf2\xe7\xae\xe7\x6d\xd7\x5b\xbd\x38\x5e\x33\x0f\x2c\xea\ +\x6f\x06\x27\x58\x10\x4b\x9a\x62\x0a\xb3\x26\xf8\x49\x89\x63\xfc\ +\x68\x30\x0b\x13\x22\xa8\x74\xa6\x1c\x73\x4a\x88\x6d\x3a\x06\x95\ +\x98\x5b\x92\x9a\xce\x54\x60\x93\x39\x96\x4d\xa8\x41\x49\xf1\x0a\ +\xc9\x9e\xda\x58\x14\xbf\x19\xbf\x19\xf9\x57\x6d\x08\x25\xb6\x3e\ +\x87\x43\x50\x62\x31\x61\x30\xcc\x88\x34\x89\x6d\x4d\xa9\x89\x25\ +\x61\xb6\xc1\xb1\xc5\xa4\x45\x2d\x3a\x05\xdf\x28\xa4\x6d\x71\xd3\ +\x80\xdf\x24\xb3\x85\xc9\xa6\xb9\x23\x75\x2c\x13\x9e\x01\x09\xa9\ +\x69\x5a\x52\xd7\xd0\xa4\xc2\x14\x8e\xe1\x19\x26\x76\x08\x07\x77\ +\x3a\x45\x14\x43\x65\x28\x81\xcc\xd0\x00\x22\xa5\x70\xa6\x88\x61\ +\x53\x52\x87\x38\x50\x6b\x81\xb9\x23\x98\x25\xa6\x0c\x9a\x47\x61\ +\x5e\x08\x55\x31\x99\xb0\x28\x07\x09\x73\x98\x60\x0e\x54\x45\x4a\ +\x06\xc9\xa6\xda\xdc\x05\x97\x0c\xd2\x08\x62\x53\x66\xe5\x45\x51\ +\xca\x8d\x6f\x35\x6c\xda\x13\x69\xd3\x63\xd2\xd1\xcb\xed\x47\x47\ +\x70\x3c\x3b\x28\x8e\x22\x60\x4d\x9c\x20\x6f\x9b\xbc\xba\xd9\x36\ +\x51\x27\xa7\xd5\xd4\xa7\xce\x00\xcf\xf4\x41\x2d\x29\x18\x6e\x75\ +\xd5\x26\xff\x6e\xde\x43\x35\x6f\x18\x2c\xef\x69\xde\x44\x32\xc2\ +\xad\x29\x58\xaf\x43\x24\x15\x54\x9b\xb7\x89\x2d\x47\x02\xf9\xa7\ +\x04\x98\x6f\x3a\x0e\xd8\xaa\xb6\x6f\x62\x0a\x26\xa8\xb6\x0b\x2a\ +\x84\x6d\x5a\xda\xbe\xb9\x49\x6d\x21\xa7\x26\xa6\x60\x35\x36\x63\ +\xb9\x7d\x83\x90\x48\xfd\x72\x0d\xf4\x36\xa7\x9c\x59\xd2\xa0\xd8\ +\x91\xc2\x04\xd3\x9e\x82\xc5\x42\x99\x26\x98\xa4\xf6\x1e\x02\x1c\ +\x05\xd8\xb8\xc0\xd4\xe1\x42\x30\x6d\xe3\x16\x65\x26\x17\x5a\x66\ +\x9b\x42\x68\xdf\x02\x09\x09\xb1\xc0\xee\x25\xf8\x09\xc2\x4d\xa8\ +\xe6\x15\x1b\x17\x47\x23\xb7\x6b\x23\x97\x56\x6d\xe4\xbc\x32\x72\ +\x2e\x2b\x2b\x67\x17\x56\xce\x2f\xac\xdc\x2e\xad\x9c\x49\x28\xab\ +\xcd\xd0\xfb\x32\xf3\x66\x2c\x76\x16\x87\x5d\x1b\x09\xbe\x2f\x0e\ +\xa3\x98\xd6\x2f\x6c\x35\x53\xa1\xde\xf3\xf4\xdf\x5b\x37\x51\x4d\ +\xe9\xbf\xe2\x20\x9a\xe7\x01\xda\xf7\x47\x6b\x5a\x1a\x2f\x97\xa9\ +\xd2\xf6\xdd\x1a\xc1\x55\xd1\x1b\x87\x51\xa1\x16\x96\xf1\x1a\xad\ +\x42\xb2\x5a\x51\xc5\x6a\x97\x1a\x08\xbc\xa8\x53\x9c\xd1\x77\x14\ +\xea\xd8\x2b\xa7\x4d\xf3\x1b\x60\x49\xbe\x85\xcc\xc9\x23\x32\xb3\ +\xd3\xa9\xe6\x68\x37\x9a\x74\x1d\x49\x8e\x61\xa4\x02\xaa\x0b\xe7\ +\x1c\xcf\xe7\x6d\x96\xdd\x0a\xcd\x4b\xe4\x72\x2b\x86\xe6\x59\x2c\ +\x1f\x66\x61\x60\x2e\x87\xd9\x5f\x0c\x0e\xc3\xa1\x7d\x82\x44\xc5\ +\x58\x6e\x3b\xec\x46\x7c\xad\xcf\x4a\x83\xa8\x73\xa1\xcf\x2a\x7b\ +\xfa\xf0\x1f\xf2\x7c\xe6\x3d\ +\x00\x00\x12\x12\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x5f\ +\x70\x72\x6f\x63\x65\x73\x73\x69\x6e\x67\x2e\x73\x76\x67\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\ +\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\ +\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ +\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ +\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ +\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ +\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x2d\x33\x37\x2e\x31\x36\x36\x36\x37\x33\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x33\x2e\ +\x33\x35\x36\x32\x36\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\ +\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\ +\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ +\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\ +\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x6f\x63\x6b\x67\x75\x69\x64\x65\ +\x73\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\ +\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ +\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\ +\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\ +\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\ +\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\ +\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\ +\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\ +\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\ +\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ +\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\ +\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x30\x30\x30\x66\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\ +\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x66\x32\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x30\x2e\x36\x31\x33\x39\x36\x38\x38\x35\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ +\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x2d\x31\x39\x2e\x30\x33\x31\x32\x34\ +\x2c\x32\x32\x2e\x31\x30\x32\x37\x20\x39\x2c\x32\x32\x20\x39\x2e\ +\x36\x35\x35\x30\x30\x34\x35\x2c\x33\x31\x2e\x37\x33\x34\x32\x36\ +\x37\x20\x33\x33\x2e\x31\x33\x34\x33\x33\x36\x2c\x31\x36\x2e\x30\ +\x36\x39\x35\x36\x34\x20\x37\x2e\x35\x35\x38\x39\x39\x31\x38\x2c\ +\x30\x2e\x35\x38\x34\x35\x38\x36\x32\x20\x38\x2e\x32\x31\x33\x39\ +\x39\x36\x35\x2c\x31\x30\x2e\x33\x31\x38\x38\x35\x37\x20\x2d\x31\ +\x39\x2e\x38\x31\x37\x32\x34\x35\x2c\x31\x30\x2e\x34\x32\x31\x35\ +\x36\x32\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x38\x31\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ +\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\x31\x63\x38\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ +\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\ +\x32\x30\x32\x35\x33\x32\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x38\ +\x2e\x30\x32\x39\x32\x31\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x2e\x33\x35\x36\x38\x37\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x35\x30\x2e\ +\x38\x38\x32\x32\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x34\x30\x2e\x34\x39\x35\x32\x33\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ +\x34\x33\x37\x34\x34\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x39\x33\x39\x32\x33\x38\ +\x35\x2c\x30\x2e\x34\x34\x38\x32\x31\x38\x38\x37\x2c\x30\x2c\x30\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\ +\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x32\x34\x32\ +\x31\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\ +\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\x32\x32\x2e\x37\x31\x39\x32\ +\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\ +\x38\x35\x32\x36\x32\x39\x31\x34\x2c\x30\x2e\x35\x32\x32\x35\x31\ +\x36\x35\x35\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x79\x3d\x22\x32\x2e\x35\x38\x33\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\ +\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x33\x30\ +\x2e\x35\x37\x31\x34\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x34\x30\x2e\x38\x31\x32\x36\x31\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x2e\x36\ +\x36\x34\x37\x35\x30\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\x39\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x32\x31\x34\x34\x37\x38\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x35\x66\x35\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ +\x30\x33\x37\x35\x35\x35\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\ +\x2d\x32\x2e\x34\x38\x38\x31\x36\x35\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\ +\x32\x30\x2e\x38\x35\x39\x31\x36\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x31\x31\ +\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x30\x2e\x39\x37\x39\x32\x36\x36\x34\x36\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\ +\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\x39\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x2e\x30\x31\ +\x36\x33\x39\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x33\x33\x2e\x33\x30\x35\x34\x38\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x32\x32\x2e\x39\x31\x35\x32\x30\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\ +\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x32\x2e\x37\x35\x33\x34\x30\x34\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x30\x39\ +\x38\x39\x37\x37\x32\x2c\x30\x2e\x35\x38\x36\x35\x37\x31\x31\x32\ +\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x2d\x63\x65\x6e\x74\x65\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x38\ +\x38\x31\x36\x39\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x2d\x63\x65\x6e\x74\x65\x72\x2d\x79\x3d\x22\x31\x38\x2e\x36\x34\ +\x33\x30\x36\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\ +\x30\x2e\x37\x38\x38\x35\x31\x35\x36\x34\x2c\x30\x2e\x36\x31\x35\ +\x30\x31\x34\x37\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x34\x36\x39\x30\x34\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\ +\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ +\x22\x31\x37\x2e\x37\x33\x37\x33\x32\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x3d\x22\x32\x38\x2e\x36\x36\x38\x37\x31\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x37\x2e\x32\x30\x36\x36\x35\x35\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x38\x2e\x30\x32\x39\x32\x31\ +\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x63\x63\ +\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\ +\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x30\x2e\x39\x35\x36\x33\x35\x33\x36\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\ +\x72\x2d\x78\x3d\x22\x2d\x32\x2e\x34\x32\x34\x32\x31\x37\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x2d\x63\x65\x6e\x74\x65\ +\x72\x2d\x79\x3d\x22\x31\x36\x2e\x32\x36\x38\x36\x36\x39\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x07\x3d\ \x00\ -\x00\x24\x04\x78\x9c\xe5\x99\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ -\x58\xe5\xd2\xa2\x2b\x4a\x24\xf5\x8e\xed\x1c\x12\x04\x09\x90\x5e\ -\xda\xb4\x3d\x06\xb2\x44\xdb\x6a\x24\xd1\x95\xa8\xb5\x9d\x5f\xdf\ -\xa1\xde\xb6\x6c\x64\x83\x7d\x65\x53\x01\x41\xa4\x99\xe1\xeb\xe3\ -\xcc\x70\xe8\x9d\xbd\xda\x67\x29\xba\xe1\x45\x99\x88\x7c\xae\x11\ -\x6c\x6a\x88\xe7\x91\x88\x93\x7c\x3d\xd7\xfe\xfc\xf8\x56\xf7\x34\ -\x54\xca\x30\x8f\xc3\x54\xe4\x7c\xae\xe5\x42\x7b\xb5\xb8\x9a\xfd\ -\xa4\xeb\xe8\x75\xc1\x43\xc9\x63\xb4\x4b\xe4\x06\xbd\xcf\x3f\x97\ -\x51\xb8\xe5\xe8\xe7\x8d\x94\xdb\xc0\x30\x76\xbb\x1d\x4e\x5a\x21\ -\x16\xc5\xda\xf8\x05\xe9\xfa\xe2\xea\x6a\x56\xde\xac\xaf\x10\x42\ -\x30\x6e\x5e\x06\x71\x34\xd7\xda\x06\xdb\xaa\x48\x6b\xc3\x38\x32\ -\x78\xca\x33\x9e\xcb\xd2\x20\x98\x18\xda\x60\x1e\x0d\xe6\x91\x1a\ -\x3d\xb9\xe1\x91\xc8\x32\x91\x97\x75\xcb\xbc\x7c\x31\x32\x2e\xe2\ -\x55\x6f\xad\x66\xb3\x63\xb5\x11\xf1\x7d\xdf\x30\xa9\x41\xa9\x0e\ -\x16\x7a\x79\xc8\x65\xb8\xd7\x8f\x9b\xc2\x1c\xcf\x35\xa5\xa6\x69\ -\x1a\xa0\x1b\x2c\x6f\x67\x15\x94\x00\x74\x0b\xff\x7a\xf3\x4e\x80\ -\x4b\x51\x15\x11\x5f\x41\x3b\x8e\x73\x2e\x8d\x37\x1f\xdf\xf4\x4a\ -\xdd\xc4\xb1\x8c\x47\xdd\x74\x3c\x8f\x46\x3d\x82\x9c\x87\x19\x2f\ -\xb7\x61\xc4\x4b\xa3\x93\xd7\xed\x77\x49\x2c\x37\x73\x8d\x59\x98\ -\x30\x78\xec\x5a\xb8\xe1\xc9\x7a\x23\x4f\xa5\x49\x3c\xd7\x60\xf6\ -\xd4\xf7\x9a\xef\x91\x73\x90\xc6\xa0\xed\x38\xe8\x35\x26\xf6\x29\ -\x26\xa8\x20\x36\x73\x1b\x9b\x6e\x09\x41\x2c\x22\x35\x27\xe8\x92\ -\x67\x49\x58\x49\x91\xc1\xae\x45\x51\x1a\x96\x65\xb2\x4a\x22\xf8\ -\x10\xf9\x36\xad\xd6\x49\xfe\x29\x0a\xd3\xa8\x4a\xc1\xa5\x3e\x95\ -\x5b\x1e\xc9\x22\x4c\x3f\xc5\x89\xf2\x3d\x58\x0d\xee\x78\xf6\x83\ -\xf3\xfd\x56\x14\x52\xdf\xc7\x5b\xa0\xea\xb8\x67\x95\x87\x4e\xb9\ -\x00\xed\x2c\xe6\xab\x52\x59\x35\x4b\x54\x5f\xb0\x46\x57\x43\x46\ -\xad\xed\x67\xac\xa6\x1b\xdf\x24\x7c\x37\xd8\x2e\xc3\xb2\xc1\x88\ -\xd0\x36\x5c\x83\xcb\xa5\xa2\x98\x6b\x2f\x56\xf5\xd3\x2a\x96\xa2\ -\x88\x79\xd1\xa9\x9c\xfa\x39\x52\x09\xd8\x96\x44\x1e\x9a\x20\x6b\ -\xfb\xee\xe6\xab\x7a\xed\xf5\xe6\x79\x7d\xb9\x09\x63\xb1\x9b\x6b\ -\xf4\x54\xf9\x45\x88\x6c\xae\xd9\xd8\xf6\x3d\xdf\x24\xa7\xda\x68\ -\x3f\xd7\x74\xd7\xc7\x0e\xf1\x5c\x6a\x4d\xb4\x30\x9e\x83\x89\x69\ -\x53\x66\xb9\x13\x65\x55\x14\x10\x85\x7a\x1a\x1e\x38\x2c\xaa\xfe\ -\xaf\xeb\xbf\xdc\x88\xdd\xba\x50\x70\x64\x51\xf1\xd3\x96\x4a\xa3\ -\x2f\x97\x62\x7f\x5e\x0d\x4e\x51\xa9\xf8\xd6\xab\x3c\x91\x10\x43\ -\xdb\xfd\xb8\xd7\x2a\x89\x79\x79\xbe\xe1\x2e\xc9\x81\x81\xde\x7a\ -\x33\x61\x3d\xe2\x53\x8b\xce\xb5\x5d\xd3\xbb\x60\x01\x53\x9b\x60\ -\x6e\x55\x87\xcb\xaa\x2c\xdc\x27\x59\xf2\x85\xc3\xba\x27\xa4\xcb\ -\x3c\xdc\xea\xeb\x54\x2c\xc3\xb4\x9d\xfd\xa2\xb6\x98\x1d\x61\x69\ -\x1a\x21\x24\x0f\x2a\x8e\xf7\x07\x25\xd3\x3a\xa1\xe2\xa9\x04\xcc\ -\x75\xec\x5e\x28\x8a\x04\xc2\x63\x34\xdf\x4e\x74\x18\x8b\x54\xd4\ -\x43\xd2\xde\xd7\xfe\x55\x7b\x9f\x7b\xaa\x3b\x8c\x75\xad\xdb\x1b\ -\x53\xbf\xaf\xe5\x19\x97\x61\x1c\xca\x70\x08\x82\x4e\x42\x7d\xdf\ -\xec\x56\x06\x09\x34\xf8\xfd\xcd\xdb\x45\x3b\xd0\x2c\x8a\x82\xbf\ -\x45\xf1\xb9\x1b\x17\x21\x65\x10\x2e\x45\x05\x5b\xa1\x2d\x7a\xf1\ -\x2c\x8e\x02\x48\x79\x90\x0a\x16\x49\x06\xae\xad\xb2\xe5\xaf\x90\ -\xe2\x66\xc6\xa0\x38\x32\x56\xb0\x86\x4e\x9b\x6e\x0b\xde\xe4\xce\ -\xb3\x07\x48\x1c\x65\x89\x6a\x64\xfc\x21\x93\x34\x7d\xaf\x06\x69\ -\x57\x3c\xea\x34\x91\x29\x1f\x84\x33\xa3\x9d\x7d\xbb\x36\x63\xb4\ -\xb8\x99\xd1\xad\xbe\xfe\x5a\x0f\x54\x8e\x82\xa2\xdf\xe8\x34\x5c\ -\x72\x70\x82\x0f\x4a\x89\x26\xda\x75\x21\xaa\x6d\x26\x62\xde\x36\ -\xef\x69\x42\xd6\xeb\xb7\x4c\x1e\x52\xd0\xaf\x60\xf6\x41\x9b\x68\ -\x5e\xaa\x0f\xbd\x4d\x13\x01\x69\x3e\x8b\x2a\x85\x74\x77\xc3\x73\ -\x11\xc7\x2f\x4b\x59\x88\xcf\x3c\x78\x61\x9a\x96\x67\x9a\xed\x67\ -\x13\x2d\x41\xff\x99\x26\x39\x87\x69\x04\xe5\xbf\x55\x58\xf0\xb1\ -\xf4\x1f\x91\xe4\x01\x70\xe3\x45\x27\xad\x3f\x52\xf0\x78\x19\x58\ -\x9d\x2c\x0e\x21\x13\x15\x45\x78\x08\x72\xa8\x08\xc6\x52\xb1\x5a\ -\x95\x5c\x0e\x23\x75\x53\x35\x31\x6b\x9f\x23\x47\x57\xcb\x65\xbe\ -\x4f\x7a\xe1\xd9\x43\x4a\x3d\xe7\x0f\x2a\xf5\x1c\x45\x05\xf8\xb7\ -\x8f\x2d\x97\xf9\x26\x73\xb8\x4e\x9c\x5e\x51\x1c\x99\x15\x60\xc7\ -\x30\x83\xc3\xca\xf1\xbd\xde\x2b\x66\xdb\x50\x6e\xce\xd1\x1f\xad\ -\x52\x91\x55\xcf\x31\x59\xda\x4c\x8a\x59\xd6\x29\xe2\x65\x25\xe5\ -\x7d\x01\xee\xf7\xbd\x5f\x07\x20\xfc\x0d\x99\xd7\x26\xfa\x0b\x75\ -\x60\x8e\x01\xab\x15\x41\xb4\x0e\x1c\x86\xcc\x2e\x72\x98\xa1\x14\ -\x85\x0e\x39\xfe\x26\x94\x55\xc1\x8f\x72\x49\x9f\x13\xc0\x49\x55\ -\x18\x41\x3a\x8e\xa2\xe7\x8e\xaa\x87\x74\xdd\xbf\xa1\x77\xc8\x3c\ -\x87\xcc\xfb\x7e\x90\x11\x0c\x3b\x68\x52\xdb\xdb\xee\xbf\x9d\xd9\ -\x05\x12\xfd\x29\x70\x4d\x3d\xec\xa1\xd7\x88\x61\xda\xbc\x4e\x5e\ -\x26\x74\x98\xeb\x52\xdd\xbc\x35\x9f\x7b\xf1\x19\xe2\xda\x16\xb1\ -\xed\x7b\x23\x90\x21\xbb\x4b\x49\xd7\xcc\xc6\x14\x45\x10\x47\xba\ -\x85\x69\x0d\xe5\xd2\xfb\x14\x85\x67\x3d\x7b\x10\xc4\xc4\xad\x2b\ -\xdc\x11\x84\x7e\xfb\x98\xf9\x4e\x51\x50\x82\xef\xc7\x27\x74\xff\ -\xd9\xa3\x70\xee\xcb\x2b\x9e\x7d\x80\x30\x7a\x67\x06\xec\xb9\x33\ -\x20\xce\x9d\x19\xdc\xbe\x08\xf9\x1e\x8f\xcc\x6c\x7c\x64\x32\x6c\ -\x35\x8b\x8e\x50\x57\xcf\x30\xa8\xc2\x2e\xbc\x5f\x38\x40\x75\xfa\ -\xc3\x00\x21\x5e\x57\x4d\xdd\x09\x08\x79\xd6\x40\xc6\x45\x15\xa1\ -\x7d\x51\x55\xbf\x4e\x5e\x2e\x21\x78\xcc\x44\xf1\xb0\x3e\xe1\x36\ -\x31\x72\xd7\x20\xb1\x7e\x18\x20\xfd\x62\xef\x06\xe4\xa1\x2a\x0b\ -\x6e\xae\x56\x13\x20\x0c\xdb\x8c\x7a\x8e\x63\x79\x4f\x72\xb1\x1d\ -\x6e\x69\x50\x8e\x78\x0d\x46\x1f\xdb\xc4\xf5\x2d\xef\xcc\x29\xe3\ -\xfa\x8f\x59\x76\x41\xd9\xec\x02\x19\xc6\xc8\x13\xb0\xd1\xad\xde\ -\x53\xa8\x8f\x29\x01\xaf\x75\x10\xa5\xd8\x6d\x64\x16\xb6\x15\x22\ -\x72\x26\xcf\x78\xe4\x71\x6b\x53\x13\x2e\xd3\xd4\xf7\x9e\xc2\x81\ -\x68\x7f\xb3\x71\xb1\x69\x3b\x16\x50\x42\xd4\xc2\xde\x35\x81\x48\ -\xbf\xe0\x43\x1e\x7d\xcc\x53\xe8\x49\xf1\x10\xab\x2d\x63\x06\x1e\ -\x08\x4e\x72\xe7\x9a\x38\xd8\x57\x0e\x65\x9d\xc5\xa3\xbb\xff\x0f\ -\x40\xf5\xcd\xb8\x8d\xb1\x9e\x08\x6a\xe3\xce\x82\x10\xf3\x29\x33\ -\xdd\xf3\x2e\xf4\xc8\xf7\xbf\x27\x64\x34\xca\x43\x04\x7b\x0a\x11\ -\xe9\x65\x5f\x83\xf4\x98\x67\xfb\x93\x42\xd2\xe9\x50\x05\x38\xd8\ -\xad\x33\xf3\xad\x29\xd9\xb7\xa6\x34\xb1\x93\x45\x98\x97\xea\xaf\ -\x29\x7a\xc4\x73\x58\x83\xfa\x93\x97\xee\x35\xb7\x34\xe7\x4c\x18\ -\x4f\xec\x0f\x73\x8d\x42\x92\x20\x36\xf3\x9c\xaf\x6f\x42\x0d\xde\ -\x33\x47\xfb\xe0\x44\x7e\x7c\xbc\x0f\x16\x64\x62\xdf\xb3\x7d\xd7\ -\x7e\x8a\x03\x81\x75\x07\x24\xc5\x3e\xac\xc9\x82\x80\x66\x97\x0a\ -\x72\xc5\xfe\xa1\xae\x68\xaa\xd4\x32\xc3\xd3\xea\xb3\xf5\x11\xfa\ -\x30\xe5\xa7\x8d\x9d\xfa\xfa\xa1\xb7\x32\x17\x7d\x18\xfd\xf6\x47\ -\x1c\x75\xc7\x87\x23\xc1\x6f\x0a\xae\xb4\xff\x81\x14\x2a\x2e\xa7\ -\xfb\xb0\xba\x2a\xd6\x42\x5d\x7d\x7f\xdd\xde\xfa\x1d\xe4\x41\xb1\ -\x58\xdb\xc0\x28\x13\x9c\x96\xc9\x5c\x9d\x3d\xdc\xd9\xea\xf1\x69\ -\x35\xff\xa0\x3c\x07\x54\x63\xa8\xce\x11\xd4\xfe\x37\x66\xc5\xb6\ -\xe3\xe4\x8e\x7e\x66\x84\x02\xdb\x6b\x65\xce\x68\x27\xd2\x09\x5d\ -\xf7\xeb\x74\xbf\x11\xed\xcc\x58\x2f\xae\x66\xea\xef\xae\x8b\xab\ -\xff\x00\x21\x49\x9d\x0d\ -\x00\x00\x08\xfd\ +\x00\x54\xb5\x78\x9c\xe5\x9c\x4b\xaf\xa3\x36\x14\xc7\xf7\xf7\x53\ +\x50\x66\xd3\xaa\x63\x30\xaf\xf0\x98\x24\xb3\xe8\xa8\x52\xa5\xae\ +\xda\xa9\xba\xac\x1c\x70\x12\x3a\x04\x23\x20\x37\x49\x3f\x7d\x6d\ +\x5e\x81\xe0\x3b\xed\xc8\x8e\x64\x25\x91\x46\x23\x7c\x8e\xc1\xfc\ +\xf0\xb1\xff\x1c\xfb\xb2\xfc\x78\x3e\x64\xda\x2b\x2e\xab\x94\xe4\ +\x2b\xdd\x32\xa0\xae\xe1\x3c\x26\x49\x9a\xef\x56\xfa\x1f\x9f\x7f\ +\x06\x81\xae\x55\x35\xca\x13\x94\x91\x1c\xaf\xf4\x9c\xe8\x1f\xd7\ +\x2f\xcb\xef\x00\xd0\x7e\x2a\x31\xaa\x71\xa2\x9d\xd2\x7a\xaf\xfd\ +\x92\x7f\xa9\x62\x54\x60\xed\xfb\x7d\x5d\x17\x91\x69\x9e\x4e\x27\ +\x23\xed\x0a\x0d\x52\xee\xcc\x1f\x34\x00\xd6\x2f\x2f\xcb\xea\x75\ +\xf7\xa2\x69\x1a\xbd\x6e\x5e\x45\x49\xbc\xd2\xbb\x0a\xc5\xb1\xcc\ +\x1a\xc7\x24\x36\x71\x86\x0f\x38\xaf\x2b\xd3\x32\x2c\x53\xbf\xba\ +\xc7\x57\xf7\x98\x5d\x3d\x7d\xc5\x31\x39\x1c\x48\x5e\x35\x35\xf3\ +\xea\xdd\xc8\xb9\x4c\xb6\x83\x37\x6b\xcd\xc9\x69\x9c\xac\x30\x0c\ +\x4d\x68\x9b\xb6\x0d\xa8\x07\xa8\x2e\x79\x8d\xce\x60\x5a\x95\xb6\ +\x91\x57\xd5\x86\x10\x9a\xd4\x76\xf5\xfc\x7f\x5e\x51\x45\x81\x16\ +\xf4\xdf\xe0\xde\x17\x18\x15\x39\x96\x31\xde\xd2\x7a\xd8\xc8\x71\ +\x6d\x7e\xfa\xfc\x69\x30\x02\x68\x24\x75\x32\x3a\x4d\xcf\x73\x72\ +\xd5\x09\xe4\x1c\x1d\x70\x55\xa0\x18\x57\x66\x5f\xde\xd4\x3f\xa5\ +\x49\xbd\x5f\xe9\x8e\x6b\x58\x0e\xfd\x79\x4d\xe1\x1e\xa7\xbb\x7d\ +\x7d\x5b\x9a\x26\x2b\x9d\xb6\xde\x0e\x83\xf6\x78\xd4\x39\xac\xd6\ +\xa1\x3b\x71\x34\x58\xa0\x11\xda\x86\xa5\x95\x96\xe7\xf8\xad\x4f\ +\x7f\x0b\x51\x42\x62\xd6\x26\x7a\x4a\x7c\x48\xd1\xb1\x26\x07\xfa\ +\xd4\xe2\x38\x43\x55\x95\x6e\xd3\x98\x1e\x90\xbc\xc8\x8e\xbb\x34\ +\xff\xab\x28\xf1\x6b\x8a\x4f\x46\x8f\x6e\xb8\x0e\x3e\x17\xa4\xac\ +\xc1\x39\x29\x28\xc0\x85\xcf\x35\x5e\x7a\xe3\x9a\x5a\x97\x09\xde\ +\x56\xcc\xab\xbd\x1b\x76\x44\x6f\xc7\xd7\x35\xb3\xb1\x0e\x8d\x63\ +\x2d\x4b\xd8\x35\xaf\xbe\x1b\x54\xb5\xc4\x34\xad\x40\x3b\xda\xbb\ +\x32\x52\xae\xf4\x77\xdb\xe6\xd7\x19\x36\xa4\x4c\x70\xd9\x9b\x16\ +\xcd\x6f\x62\x22\xf4\x09\xa4\xf5\xa5\x8d\xa7\xee\xdc\x7d\x7b\xd9\ +\x59\x07\x3b\xe4\xdb\xab\x3d\x4a\xc8\x69\xa5\xdb\xb7\xc6\x7f\x08\ +\x39\xac\x74\xdf\x08\xad\x00\xba\x96\x7f\x6b\x8e\xcf\x2b\x1d\x38\ +\x8e\x61\x3b\xd0\xf7\x9c\x99\x95\x35\xc8\x35\x1c\x3f\x70\xec\xd9\ +\x99\xe3\x63\x59\xd2\x88\x03\x19\xba\x60\x7a\x57\xcd\x7f\x56\xe7\ +\x54\xed\xc9\x69\x57\x32\x3a\x75\x79\xc4\xb7\x35\x99\x05\x6c\x36\ +\xe4\xcc\x37\xd3\x0e\x70\x64\xb1\x0c\x8e\x79\x5a\xd3\x78\x29\xce\ +\xe3\xb3\x1e\xd3\x04\x57\xfc\x8a\x55\x8e\x0a\xb0\xcb\xc8\x06\x65\ +\x7c\x87\x53\x9a\x53\x4a\xa0\xeb\xda\x96\x33\x3c\x84\x5b\x8f\xbe\ +\x9f\xfb\x30\x78\xc3\x83\xb6\x7d\xf6\x20\x3a\xd3\xe5\x6d\xd3\x01\ +\x9d\xd3\x43\xfa\x0f\xa6\x60\xac\xa6\xdf\xd1\xbe\x35\xc1\xd2\x56\ +\xd3\xb4\xfa\xc2\x62\xf6\x7c\x61\x65\x7a\x5f\xc8\x78\xb2\x02\x3b\ +\x0c\xfd\xa1\x90\x94\x29\x0d\x85\x51\x73\xfa\xa2\xcb\xb8\x88\x45\ +\x38\x1d\xa0\xcf\x4d\x07\x6b\xba\x9f\x7f\x6b\xbb\x8c\x6d\x5d\xbf\ +\x37\xe7\x1d\xbf\x29\x3f\xe0\x1a\x25\xa8\x46\xd7\x28\xe8\x4b\x68\ +\xdb\x60\x7f\x67\x74\xb0\x8c\x7e\xfb\xf4\xf3\xba\xbb\xd0\x32\x8e\ +\xa3\x3f\x49\xf9\xa5\xbf\xae\xa6\x31\x07\xb4\x21\x47\x4a\x5a\x5f\ +\x0f\xc5\xcb\x24\x8e\xe8\xf0\x46\xc3\x7e\x9d\x1e\x68\xdf\x66\x23\ +\xe3\x8f\x74\x38\x5b\x9a\x57\xc3\xc4\x99\xc1\xba\x9e\xb4\x3d\x6d\ +\x89\xdb\x71\x92\x3b\x59\x24\xf1\x21\x65\x95\xcc\xdf\xeb\x34\xcb\ +\x7e\x61\x17\xe9\xee\x78\x74\xd2\xb4\xce\xf0\xb5\x70\x69\x76\xad\ +\xef\xee\xcd\x1c\xdd\xdc\xd2\xec\xef\xbe\x39\xda\x5d\xa9\x4c\x82\ +\x62\x78\xd0\x19\xda\x60\xda\x43\x7f\x65\x46\x6d\x66\xdd\x95\xe4\ +\x58\x1c\x48\x82\xbb\xea\x03\x4d\x1c\xd7\xc3\x23\xab\x2f\x19\xb5\ +\x6f\x69\xeb\xa3\x77\x10\xc6\xf1\x76\xfb\x81\x1d\x80\x6e\x9c\x88\ +\xac\xf6\xb0\x3c\x66\x74\xbc\x7b\xc5\x39\x49\x92\x0f\x55\x5d\x92\ +\x2f\x38\xea\x46\xa6\xee\xb0\x0d\x86\x08\xf6\x87\x14\x0c\x2e\x33\ +\xda\x49\xeb\xc8\xed\xcb\x12\x44\x87\x97\xb2\x44\x97\x28\xa7\x33\ +\x7a\x5f\x3a\x5c\x6a\xd2\x3f\x59\x2b\xbd\xc0\x09\x87\xc2\x2e\xd8\ +\x5c\xc3\x6e\xba\xd6\xd5\xd0\xc7\xd8\xdc\x32\xe9\xcc\x17\x9e\x47\ +\x39\x71\x29\x9b\xae\xeb\xda\xec\xe7\x0c\x0f\xf2\x6b\xc0\x10\x4a\ +\x5c\xc5\x80\x01\x4b\x10\xd9\xbc\xf0\x2e\xe8\x16\x8b\x00\x2a\x87\ +\x0e\x04\x82\xf0\x02\xc3\x63\x7a\xc6\x09\xee\x0b\xcf\x75\x3d\x4f\ +\x3d\x78\x50\x10\x9e\x65\x1b\x77\xe5\xb6\xdd\xda\xc8\x46\xca\x71\ +\x73\x44\xb1\xf9\xed\x74\xfb\x8c\xec\x80\x2f\x08\xcf\xb6\x8c\x26\ +\x60\xdd\x67\x84\x17\x00\x4f\x14\x9f\x67\x2c\x9e\x91\x1c\x04\xa2\ +\x51\x6b\x87\x46\x30\xd5\xcf\xcf\xa3\x50\x80\x2b\x08\x8f\xab\x51\ +\xa0\x34\x68\x8a\x6a\x13\x61\x69\xc7\x55\x27\xf2\xb0\x29\xaa\x4a\ +\x84\xe7\x88\x5b\x5d\x22\x8b\xd8\x76\x1b\x86\x0a\x12\x73\xc0\x42\ +\x14\x18\x4f\x91\x3c\x38\x35\xe0\x03\x5b\x10\x1b\x57\x8b\x3c\x3a\ +\x36\xaa\x41\x80\xe8\x5b\xfe\xad\x0a\x91\x37\xa4\x29\x98\x11\x11\ +\x7e\x47\x9d\xe4\x44\x26\x63\xdb\x63\x8a\x8d\x40\x14\x18\x57\x6d\ +\x48\x05\xa7\xaa\xe0\x10\x0d\x4c\xae\xe0\x90\x4a\x4e\x55\xcd\x21\ +\x3c\x85\xde\x68\x0e\x89\xd0\x02\xc8\x7e\xca\x41\x73\x84\xe7\x4f\ +\xae\xec\x78\x7c\x70\x54\x79\x08\xbf\x8c\xf2\x94\xc7\x13\x90\x63\ +\xe2\x43\x74\x76\xb8\x15\x1f\x4f\x80\x0d\x02\x47\x3c\xf1\xc6\xcb\ +\x7f\x48\x9d\x1a\x54\xd4\x6e\x50\x38\xf5\x31\x51\x6f\xf3\xf9\xf5\ +\x31\x25\x9c\x2b\x3c\x37\x70\x35\x9c\x7c\x7c\xaa\x0a\x39\x4b\x38\ +\xd3\xcb\x95\x72\xf2\x01\xaa\xaa\xe7\x7c\x61\x2d\x7c\xab\xe8\x64\ +\xb3\x4b\x5c\x25\x27\x0b\x07\x2c\xee\x23\xec\x9e\x84\x1f\xcb\x2b\ +\xdd\x67\x95\xeb\x59\x00\x36\x19\x26\xe1\xc5\xe9\x5b\x99\xf7\x2c\ +\xf4\x98\xd6\xb3\x85\x57\x1e\xb8\x6a\x4f\x36\x42\x36\xf9\xaa\x87\ +\x10\x8a\xbe\x9c\x4d\x14\xdf\x3c\x92\x1f\x91\x99\x25\x9c\x3f\xe1\ +\xea\xbd\x67\x81\x17\x08\x4f\x18\x5c\xb5\xf7\x2c\xf8\xa0\x70\x4e\ +\xe0\x56\xeb\xc9\x26\x07\x21\x7d\x34\xea\x91\xa3\x33\x85\xf0\x5a\ +\x2b\x4f\xea\xc9\xc7\xe7\xba\x48\xc1\x5d\x25\xbe\xf8\x7e\x1c\x9e\ +\xd0\x93\x8d\xcf\x46\xfe\x56\xbd\xd4\x4a\x2b\xf4\x84\x33\xa1\x37\ +\x32\x4f\x36\xbb\xc0\x47\x28\xc1\xea\xb1\x6b\x52\x7a\x77\xd9\xd3\ +\x24\x9b\x20\xcb\x10\xa8\x37\x6b\x88\xef\x32\x99\x2e\xcb\xce\x86\ +\xc1\x47\x84\xc6\x12\x7b\x77\x11\x7a\xcf\x82\xaf\x49\xec\xdd\x25\ +\xb3\xf7\x2c\x04\x59\x66\x4f\x34\x25\x3f\x5b\xab\x95\xcc\x4e\x59\ +\xb5\xb7\x10\xd6\x2b\xfc\x25\x5b\xe9\xfc\x54\x95\x7b\xb6\xf0\xf0\ +\xc7\x5f\xb9\x95\x0c\x50\x65\xc1\x17\x4a\x97\x7c\xb2\xe9\xa9\x2c\ +\xf9\x6c\xf1\xbc\x28\x77\x1d\x57\x32\xc2\x4d\x9c\x38\x9e\x8a\x1d\ +\x50\x7c\x4f\x36\x3f\x51\x35\x83\xfa\xa0\xfc\x68\xf8\xde\x27\x55\ +\xf5\x24\x00\x21\x9d\x83\x65\x6f\x35\x93\xcd\x4e\x59\xf9\x62\xdf\ +\x47\xbe\xc8\xe7\xa7\xaa\x7c\x71\x84\xa5\x33\x3f\x5f\x25\x19\xa0\ +\xca\xf2\x45\xfe\x9f\xe0\xc9\xa6\x17\x04\x08\xa9\xf7\xe6\x06\x81\ +\x2b\x3c\xf5\x4e\x17\xd6\xc6\x18\x1f\x91\x58\xb3\x8b\x4a\x78\xb6\ +\xe5\xcb\x95\xc7\x67\xd7\x64\x5a\x84\xc5\x32\x5f\xab\x3c\x3e\xbd\ +\x66\xff\x94\xf0\x8b\xda\x4c\xa8\xc8\x03\xa7\xac\x46\x59\x48\x78\ +\x45\xe3\xab\x14\x99\xf0\x54\x15\x28\x74\xbc\xbb\xcf\xde\x29\x89\ +\xf4\x54\x56\x27\x6c\x9e\x95\xbd\x71\x4a\xe6\x70\xa7\x74\x66\xc5\ +\xba\xcf\xae\xa9\x6f\xe7\x57\xa0\x7a\xcf\xe5\xd7\x7d\x5d\xe1\x6b\ +\x78\x1c\xc3\x76\x21\xf4\x16\xd0\x2d\xce\xbd\x25\x4b\x73\x1c\xa3\ +\x22\xda\x1c\xeb\x7a\x5c\xf6\x37\x49\xf3\xa8\xc1\xf8\x36\x29\xf6\ +\x89\x2f\xad\x1f\x90\xfc\xf7\x81\x11\x86\xbe\x6f\xc1\x50\x8b\x35\ +\xf8\xde\x0a\x0d\xbb\xf9\x93\x07\xeb\xed\x83\x09\x73\x76\x67\x8e\ +\xbf\x08\x47\xef\xc0\xd7\xef\xca\x91\x9c\x36\xb3\x26\x25\x88\x8f\ +\xe5\x2b\xaa\x8f\x25\x66\xac\xfe\x9b\x4a\xb7\x54\xf1\x75\x2a\x5e\ +\x10\xc2\xd0\xb3\x6c\x89\x54\x7c\xc3\x5d\xb4\x54\xac\xa0\xfd\x2c\ +\xa2\x43\xa9\x0c\x77\xee\xbc\x87\x6f\x1f\xcc\xa9\x04\xae\xff\xed\ +\x4c\xde\x8a\xb4\x51\xef\x67\xc3\x7d\xb3\x53\x71\x02\xc4\x36\x2c\ +\xdf\x83\x96\x1d\x38\x32\xc3\xc9\x0e\xc3\xd9\xae\x6b\xc7\x9e\xc5\ +\xce\xa8\x88\xfb\x61\xba\x0b\xaf\x90\x45\x8e\x47\x47\x76\xe8\x8c\ +\xbf\xb6\x41\x5d\x1d\x23\x80\x6e\xe0\x07\xde\xf0\xf1\xba\xdd\xfa\ +\x65\xc9\x3e\x1e\xb7\x7e\xf9\x17\x80\x2a\x7a\x3f\ +\x00\x00\x08\xf1\ \x00\ -\x00\x20\xe8\x78\x9c\xd5\x58\x5b\x73\xda\x48\x16\x7e\xf7\xaf\xd0\ -\xe2\x97\xb8\x16\x35\x7d\xbf\x10\xe3\x79\x48\x6a\xa6\xa6\x6a\xa6\ -\xb6\x6a\x27\xa9\x7d\x9c\x12\x52\x03\xda\x08\x89\x92\x84\x81\xfc\ -\xfa\x3d\x2d\xd0\x0d\x44\x6c\xc7\xde\xcc\x2e\x54\x1c\xfa\x9c\xd3\ -\xb7\xef\xdc\xfb\xfe\xa7\xfd\x3a\xf1\x1e\x6d\x5e\xc4\x59\x3a\x1b\ -\x11\x84\x47\x9e\x4d\xc3\x2c\x8a\xd3\xe5\x6c\xf4\xf9\xd3\xcf\xbe\ -\x1e\x79\x45\x19\xa4\x51\x90\x64\xa9\x9d\x8d\xd2\x6c\xf4\xd3\xc3\ -\xcd\xfd\xdf\x7c\xdf\xfb\x90\xdb\xa0\xb4\x91\xb7\x8b\xcb\x95\xf7\ -\x6b\xfa\xa5\x08\x83\x8d\xf5\xde\xad\xca\x72\x33\x9d\x4c\x76\xbb\ -\x1d\x8a\x4f\x44\x94\xe5\xcb\xc9\x9d\xe7\xfb\x0f\x37\x37\xf7\xc5\ -\xe3\xf2\xc6\xf3\x3c\xd8\x37\x2d\xa6\x59\x31\x9f\x8d\x3a\x33\xb2\ -\x8d\x4d\x8b\x5d\x50\x86\xab\x79\x96\x7d\xa9\xe6\x6d\xf3\x78\x42\ -\x31\x36\x13\x90\x1d\xb5\x33\xa3\xb0\x99\xb8\xd9\xe6\x49\x25\x1a\ -\x85\x13\x9b\xd8\xb5\x4d\xcb\x62\x42\x10\x99\x74\xc4\xc3\x56\x3c\ -\x74\xe7\x8e\x1f\x6d\x98\xad\xd7\x59\x5a\x54\x33\xd3\xe2\xb6\x23\ -\x9c\x47\x8b\xde\xa9\x76\xac\x12\x22\xc6\x98\x09\xa6\x13\x4a\x7d\ -\x90\xf0\x8b\x43\x5a\x06\x7b\xbf\x3f\x15\x6e\x37\x34\x15\x2e\x80\ -\x27\xc0\x6b\x25\x9f\x27\x35\xdd\x27\x00\xe2\xd5\xc3\x54\xdc\xee\ -\xee\xa0\xb8\x0d\xfc\x6b\x26\xd4\x04\x54\x64\xdb\x3c\xb4\x0b\x98\ -\x69\x51\x6a\xcb\xc9\xc7\x4f\x1f\x1b\xa6\x8f\x51\x54\x46\x9d\x65\ -\x6a\xbd\xf5\xf6\xed\x29\x33\x0d\xd6\xb6\xd8\x04\xa1\x2d\x26\x35\ -\xbd\x9a\xbf\x8b\xa3\x72\x35\x1b\x31\x8e\x08\x83\x8f\xa8\x88\x2b\ -\x1b\x2f\x57\xe5\x39\x35\x8e\x66\x23\xb8\x2b\x35\x46\x55\xe3\x8e\ -\x11\x92\xa3\xc0\x69\xe1\x69\xc3\xc1\xc8\x50\x44\xbc\x9c\x08\xa6\ -\x8e\x32\xf5\x15\xa6\x51\x16\xba\x33\xc1\x92\x76\x1d\x07\xdb\x32\ -\x5b\x83\x8e\xc3\x30\x09\x8a\x22\x5e\xc4\x21\x0c\xb2\x74\x93\x6c\ -\x97\x71\xfa\x67\x01\xf6\x11\xa7\x36\xf9\xb3\xcc\xb2\x04\xd5\x70\ -\x37\xbb\xd9\xfd\x26\xcb\x4b\x7f\x1f\x6d\x00\x46\xa9\x06\x99\x87\ -\x9a\xf9\x00\xdc\xfb\xe6\x10\xee\x04\xd1\x63\x6c\x77\x6e\xce\xf1\ -\x86\xf3\xa0\x38\x22\xe3\x79\x9b\x60\x09\x36\x97\x64\xf9\x6c\x74\ -\xbb\xa8\x3e\x27\xc6\x3c\xcb\x23\x9b\xd7\x2c\x59\x7d\x7a\xac\x0c\ -\x90\x8e\xcb\xc3\xd1\x3f\x4f\x6b\xd7\x27\x72\xab\x36\x7c\x3c\xcc\ -\x2f\x56\x41\x94\xed\x66\x23\x7a\xce\xfc\x9a\x65\xeb\xd9\x48\x21\ -\x43\x34\xe6\x44\x9d\xb3\xc3\xfd\x6c\xe4\x13\x82\x34\x33\x5c\x98\ -\x0b\x2e\x6c\x48\x15\x62\x18\x53\xc5\x2e\x98\xdb\x3c\x07\x9c\xfd\ -\x24\x38\x58\xb8\x55\xf5\x1f\x39\x09\x15\xab\x6c\xb7\xcc\x1d\x3a\ -\x65\xbe\xb5\xe7\x33\x1d\xc7\x9f\xcf\xb3\xfd\x30\x1b\x14\xbd\x75\ -\x1e\xee\x6f\xd3\xb8\x04\x2f\xda\xec\xbb\xab\x6e\xe3\xc8\x16\xc3\ -\x13\x8b\x34\xd8\xf8\xcb\x24\x9b\x07\xc9\xb0\xc0\x2e\x4e\x01\x25\ -\xff\x64\xc2\x84\x35\x4a\x38\x97\xa8\xed\x59\x61\x7d\x45\x02\xce\ -\x7e\xa1\x88\x13\xeb\x70\x9d\xb5\x0e\xf6\xf1\x3a\xfe\x6a\x01\x18\ -\x52\x59\x16\xd8\x56\x0f\x96\xe3\xb4\xa3\x61\xb9\x31\x40\x2f\x46\ -\x35\xb1\x3c\x38\x87\xdd\x1f\x1c\xa3\x21\x66\x79\x0c\x26\xdf\x39\ -\x4e\x4d\x3a\x74\x49\xce\x93\x21\xe0\xef\x2b\x03\xab\xcc\x4f\x9d\ -\xf3\x0e\x5d\x9e\x37\xa9\xec\x7e\x72\x69\xf8\x15\x3d\xb2\x8b\xa2\ -\xf5\x00\x37\x02\x27\x37\xf5\x8d\x20\x64\xd9\x20\xff\x25\x0f\xa2\ -\x18\xd4\xd8\xbd\x52\x9f\x23\xb4\xa8\xe7\x38\x1f\x2b\xb3\x4d\x2d\ -\x0b\x87\x2a\x0f\x89\xf3\x75\x20\xfa\x95\xdf\x4c\x6f\x4d\x18\x04\ -\x18\xbf\xaf\x48\x27\x7f\x98\x92\xf7\xa3\x76\x4e\xb6\x58\x14\xb6\ -\xec\x5e\xfb\x14\x83\x60\x86\xd0\x92\x9c\x6e\xf5\xcc\xdd\x08\x8b\ -\xc8\xfc\x19\xbb\x91\xe1\xdd\x58\xb3\xdb\xfd\xa4\x7f\xed\x17\xa3\ -\x44\xdb\x2d\x20\x43\x82\xbf\xc7\x29\xec\x5b\x64\x09\x98\xc1\xf3\ -\x2f\xb4\x90\x90\x7b\xce\xe0\xc3\x48\x69\x4d\x99\x60\x2f\xc0\x91\ -\xbe\xe1\xcd\x88\x78\x93\x9b\x2d\xe6\x6a\xae\xbe\xdb\x30\x88\x7a\ -\xb3\x0b\x29\x22\x5f\x70\x6e\x4c\x08\xe5\xe4\x7b\xcf\xad\x88\xbe\ -\x6e\xd0\xad\x14\xd5\x43\x0b\x22\x69\xc0\x44\x71\x07\xff\xc1\x13\ -\x92\x79\x28\x43\x79\x71\xc2\x97\xf8\x91\x90\x5c\x07\xfa\x7b\xfd\ -\x48\x51\xfc\x86\x7e\xa4\x7c\xec\x5f\x8d\x38\x1d\x0b\x37\xbe\xf2\ -\xc9\x13\x7a\x18\xd2\x27\x0e\x95\x59\x3c\x1f\xad\x76\x47\x46\xe0\ -\x64\x43\x8a\x22\xdf\xde\x71\x21\x17\x8b\x0b\x9f\x7e\xff\x14\x62\ -\x6e\x14\x24\x17\x88\x35\x89\x3d\x4b\x12\x1b\xc2\xe6\x41\xb2\x0b\ -\x0e\x45\x73\x82\xaa\x14\x9d\xae\x72\x0b\xa5\xf3\xed\x15\x6c\xbb\ -\xf0\xf7\xb7\x61\x5a\xb4\x29\x67\x79\x22\x7e\x3e\x66\xf8\x6d\x61\ -\xf3\x3f\x5c\xad\xf9\x8f\xf4\x73\x53\x4c\xb5\x52\x9f\xf2\x20\x2d\ -\xa0\xb0\x85\x42\x06\x6a\xbe\x3c\xde\xbf\xf3\x19\xa2\xac\xfa\x8e\ -\x29\xe2\x84\x71\xa9\xc7\x50\xe3\x6a\x82\xa5\xa1\xd4\xfd\x84\x72\ -\x46\x63\x25\xcc\x58\x71\x24\x25\x16\x54\x8e\x7d\x8d\x34\xe7\x5a\ -\x31\x7e\xd7\x6c\xe1\xea\x1f\x22\x50\xeb\x06\xae\xe4\x21\x0a\x29\ -\xc3\xb5\x69\xcf\xbb\x38\x17\x5b\x0c\x8a\x41\x19\x44\x34\x12\x92\ -\x8a\x56\x05\x57\xcc\xf3\x35\x60\xbb\x28\x73\xdd\xce\x99\xe6\xf4\ -\x85\x40\x17\x1b\x68\x98\xa2\xdf\x6d\xb9\xca\x60\xb9\x4d\xd0\x56\ -\x17\x7b\x32\x1b\x69\x44\xa9\xd6\x12\xb7\xda\x3d\x00\x95\x18\x64\ -\xa4\x51\xed\xe5\xf7\x14\x8a\x45\x8e\x20\x99\xb8\x54\xdb\x88\xd2\ -\x01\xd1\xeb\x8a\x25\x08\x74\x29\xb8\xe1\x63\x0c\x5f\x82\x28\x87\ -\x20\xc9\xd8\x58\x22\xc1\x29\x66\x8c\x8c\x7d\x2a\x11\x31\x4a\x13\ -\xd0\xe2\x7f\x13\x64\x2d\xcc\xb7\x41\xe6\x6f\x66\xcd\x60\xb8\x8c\ -\x72\x25\x8d\x33\x5c\x2a\x95\x6b\x12\x45\x65\xcf\x94\x48\x6a\x44\ -\x45\x87\xaa\x4c\x6b\xa5\xe0\x37\x47\x5a\x72\x21\xd9\x98\x48\xa4\ -\x35\x93\x44\xdf\xf5\xf4\x05\xe5\xbc\x22\x5c\x76\x0a\x47\xa7\x2f\ -\x68\x1c\x88\x20\x18\x73\x23\x7b\x2a\x63\x50\xfc\x43\x7d\x8f\x59\ -\x4f\x65\x5d\xe9\xa7\x50\x1e\x4c\x83\xbe\xf8\x91\x89\xd0\xc7\xcf\ -\x4b\x85\x3e\x1f\x5a\xf4\xff\x28\x19\xfa\xe2\xfb\xd2\xe1\xa0\x1b\ -\x5e\xf1\xd8\x41\xe7\x1e\x8c\x03\xd7\xe3\xc6\xcb\x3d\xdc\x40\x1c\ -\x17\xa0\xcb\xb1\xcf\x18\x38\xb8\x50\x9c\xdc\xbd\xd0\xc3\x86\xdc\ -\xd4\x90\xe7\x86\x54\xbf\x55\xff\xd5\xc0\x51\xb7\x45\xae\xe3\xa9\ -\x7e\xad\x6d\x19\x44\x41\x19\xb4\xcd\x50\x4d\x71\x4d\x73\xdd\x10\ -\xe5\xd1\x62\xfa\xcf\x8f\x3f\x37\x76\x12\x86\xd3\x7f\x65\xf9\x97\ -\x56\xc5\x4e\x20\x98\x67\x5b\xd8\xa9\x71\x1b\xd7\x66\x85\x53\x87\ -\x5d\x50\x3e\xc4\x6b\x68\xf2\xdd\xc3\xd1\xdf\xf7\xeb\x04\xf6\x6f\ -\x18\x3d\x61\xd7\x20\xb6\x8b\x1e\x97\xcd\xed\xf1\x61\x68\xf0\x2d\ -\x2d\x0a\xd7\xb1\x9b\x34\xf9\xa3\x8c\x93\xe4\x57\xb7\x49\xc7\x9e\ -\x4f\x8b\xc6\x65\x62\x3b\x46\x3e\x39\x9d\xbe\xb6\xc2\xce\xe5\xee\ -\x27\xf5\xed\xab\xd1\xf2\xa6\x8f\xe6\x32\xcf\xb6\x9b\x75\x16\xd9\ -\xd3\x6b\xc1\x79\x93\x9c\x04\x73\x0b\x9d\xfb\x6f\x8e\xe7\xd5\x7a\ -\xab\x94\x7a\x7c\x5b\x38\xed\x68\x93\x24\xde\x14\xcd\x45\x4f\x6e\ -\xb6\x80\x0b\x4c\xe1\x6a\xef\x6e\x2f\xeb\x8e\xbb\xf7\x8e\xdb\xf1\ -\xb8\x6a\x98\x6f\x13\x3b\xb5\x8f\x36\xcd\xa2\x08\x5c\x32\xcf\xbe\ -\x58\x57\xc3\x9d\xba\x24\x37\x3c\xbe\x14\x4c\x9b\x21\x80\x65\xf3\ -\x04\x3a\xf8\x72\xca\x6b\x5a\x14\x14\xab\x20\xcf\x83\xc3\x34\xcd\ -\x52\x5b\x53\x9b\xad\x7a\xc6\xb9\x09\xca\x95\x94\xac\x4d\xcf\x55\ -\xf9\x81\x8f\x6f\x66\x6d\x00\xae\x6a\x10\x08\xe2\x8e\xd8\x06\xac\ -\x7c\xef\xbc\xb5\x1d\xba\xb7\x19\x28\x7e\xda\x78\xe0\x56\xbf\x0a\ -\xca\x65\xfa\x7a\x2d\x28\x08\x2b\xca\x08\x13\xfc\x5b\xe8\x5c\xe2\ -\x00\x30\xfc\xee\x11\x06\x39\xcc\x3d\x34\x8c\xa1\xaa\x32\xe0\xed\ -\x84\x7b\x54\x38\x1c\x94\xa1\x63\x42\x11\x33\x12\x52\x92\xf7\xc1\ -\x73\xd9\x9e\x48\x26\xa5\xa3\x62\xad\x0d\xa7\x1e\x5c\x5b\x00\x05\ -\x73\x08\x1a\x82\x28\x48\x5e\xda\xa3\x04\x49\xce\x29\x93\x63\xed\ -\xc2\x39\x21\x82\x7a\xbf\x79\x10\xc7\xc0\xb5\x29\x26\x50\x40\x28\ -\x88\x29\x4c\x69\x58\x13\x6a\x34\x97\x4c\xa9\x19\xc3\xe6\x4a\x42\ -\xf2\x65\x1e\xe4\x52\x08\x6e\x42\x29\xa0\x61\x2a\xa1\x74\x04\x9a\ -\x40\x0c\x0b\x63\x9c\x1c\x3b\x7e\x60\x4d\x8e\x30\x83\x4c\x0c\xa5\ -\x08\xd4\x93\x42\x42\x2a\xae\xce\x09\x9d\xb4\x84\x98\x69\xe0\x4c\ -\x94\x6b\x42\x99\x02\x1a\x87\x44\xcc\xe1\xe8\x18\x0e\x2c\x88\x30\ -\x1e\x43\x4c\x61\x85\xb9\x18\x83\x82\x5d\x67\x0f\x4b\x86\x1e\x44\ -\x42\x0f\x52\x3c\x68\x1b\x6b\x0e\x79\x1d\x31\x49\x15\x67\x20\xad\ -\x24\xc7\x8a\xd3\x31\x43\x02\x4b\xb8\x12\x6c\x0e\x97\x13\x86\x41\ -\xdd\x4b\x38\x53\x4a\x78\x02\x41\xaa\x27\xca\xd5\x03\x88\x40\x27\ -\x61\x88\x07\x97\x65\x44\x43\x6d\x30\x76\xa5\x05\x86\xe8\xee\x7d\ -\xed\x97\xe6\x10\xd4\x38\xe5\x83\x11\x2f\x4d\x81\x99\xe5\x7e\xb8\ -\xcd\x1f\x83\x72\x9b\xdb\xde\x3b\x52\xf3\x1e\x04\x6e\xec\x22\x07\ -\x44\xe3\xa2\xfa\x84\x5f\x8b\xa7\x4d\xb1\xe3\x22\xd7\xac\x8a\x0b\ -\x87\xa9\x6e\x2c\xc8\x19\x2e\x9c\x6c\x3a\xdf\x96\x65\x97\xf6\xef\ -\x2c\x4e\xa7\x95\xc9\xbd\x85\x77\xba\xc0\x0d\x70\x13\x46\x25\x87\ -\x64\xa4\x10\x3f\x3e\x84\x55\xca\xd1\xe8\x78\x54\x06\xbf\x5b\x4b\ -\xe8\xfc\xbe\x70\x72\xf0\x2f\xf9\x6c\x6c\xdf\x02\x35\x41\x95\x51\ -\x0c\xcb\xbf\x00\x35\x68\x78\x8e\x28\x38\x33\xef\xa2\xd6\x41\xa8\ -\xf3\x73\x10\x2b\xff\xc7\xa2\xa5\x4e\xda\xfd\xe1\x68\x41\xe4\x93\ -\x1d\x13\xfa\xe0\x86\x10\xb9\x4e\x43\x18\x10\x79\xfc\x3b\x8c\x12\ -\x7f\x39\x4a\xce\xd3\x9f\x9f\x14\xe8\xab\x93\x02\xa1\xd0\x80\x33\ -\xf9\x56\x19\xf3\x18\xa8\x44\x1b\x80\x4e\x6f\xf7\x00\x9a\xe0\x5c\ -\xb5\xa5\x68\xfd\x62\x0f\xa1\x1d\xfa\x7e\xd3\x79\xf5\xda\x1f\x3b\ -\x75\x2c\x55\x8b\x2a\xe4\x4e\x5f\x20\xa5\x18\x38\x3b\xed\xa5\x54\ -\x08\xb9\x90\x78\xfa\x59\xb7\x29\x59\xdb\x97\xf8\x81\x1e\x4e\x42\ -\xdf\xef\xf2\x0f\x98\x97\xe0\x2e\x86\x55\x6d\x9b\x12\x5a\x11\xa5\ -\xe8\xd8\x09\x10\x0e\xa9\xae\x2a\x7c\xef\x9e\xd6\xd0\xad\x0d\xdd\ -\xf7\xd5\x59\x5a\x82\x5a\x55\xd5\x5d\xbd\x99\x46\x98\x56\xec\x5c\ -\x23\x06\x32\x13\x95\xd0\xc6\x5e\xa8\x04\xb2\xb5\xe2\x4a\x0b\xda\ -\x55\x09\xc0\x8f\x21\x67\x71\xcd\x7a\x4a\x21\x1c\x11\x09\x89\x8d\ -\x9e\x29\x80\xc0\x02\xbc\x5f\xfc\xb8\x60\x63\x04\x60\x6a\xbe\xa1\ -\x16\xf7\x12\xc4\xc0\x50\x20\x9d\x83\x06\x98\x90\x98\x52\x42\x2a\ -\xc5\x68\x03\x25\xba\xae\x1e\x8b\x60\x47\x0c\xf6\xf1\x4c\xc5\x0c\ -\xba\x8e\x21\xff\xab\xae\xe3\xd3\xd7\x39\x0f\x85\xec\xa2\x31\x35\ -\xa6\xaf\x28\x28\x78\x14\x54\x7f\xe6\xaf\xf4\x9e\xfb\xc9\xf2\xe1\ -\xe6\xde\xb5\x45\x0f\x37\xff\x01\x38\xd8\x1b\xbe\ -\x00\x00\x09\x8a\ +\x00\x5b\x07\x78\x9c\xed\x5c\x59\x73\xe3\x36\x12\x7e\xf7\xaf\xc0\ +\xca\x2f\x49\xad\x40\xe1\xe0\x6d\xd9\xa9\xda\x4c\xa5\x92\xaa\xe4\ +\x25\xc7\x6c\xd5\xbe\x6c\x51\x24\x24\x71\x4d\x91\x2a\x92\xb2\xa4\ +\xf9\xf5\xdb\x0d\x5e\xba\x3c\x71\xd6\xce\x8e\xed\x80\x1a\xc9\x44\ +\x77\x83\x00\x1a\xfd\x75\x37\x48\x0c\xa7\xdf\xec\x56\x19\x79\x50\ +\x65\x95\x16\xf9\xed\x88\x5b\x6c\x44\x54\x1e\x17\x49\x9a\x2f\x6e\ +\x47\xbf\xfd\xfa\x1d\xf5\x47\xa4\xaa\xa3\x3c\x89\xb2\x22\x57\xb7\ +\xa3\xbc\x18\x7d\x73\x77\x35\xfd\x1b\xa5\xe4\xdb\x52\x45\xb5\x4a\ +\xc8\x36\xad\x97\xe4\x87\xfc\xbe\x8a\xa3\xb5\x22\x5f\x2d\xeb\x7a\ +\x1d\x4e\x26\xdb\xed\xd6\x4a\x5b\xa2\x55\x94\x8b\xc9\xd7\x84\xd2\ +\xbb\xab\xab\x69\xf5\xb0\xb8\x22\x84\x40\xbb\x79\x15\x26\xf1\xed\ +\xa8\xad\xb0\xde\x94\x99\x16\x4c\xe2\x89\xca\xd4\x4a\xe5\x75\x35\ +\xe1\x16\x9f\x8c\x06\xf1\x78\x10\x8f\xb1\xf5\xf4\x41\xc5\xc5\x6a\ +\x55\xe4\x95\xae\x99\x57\xd7\x07\xc2\x65\x32\xef\xa5\xb1\x37\x5b\ +\xa9\x85\x78\x10\x04\x13\x26\x26\x42\x50\x90\xa0\xd5\x3e\xaf\xa3\ +\x1d\x3d\xae\x0a\x7d\xbc\x54\x55\x30\xc6\x26\xc0\x1b\x24\x9f\x26\ +\x15\x56\xa0\xd0\x35\x7c\x7b\xf1\x8e\x60\x55\xc5\xa6\x8c\xd5\x1c\ +\xea\x29\x2b\x57\xf5\xe4\xc3\xaf\x1f\x7a\x26\x65\x56\x52\x27\x07\ +\x97\xe9\xf4\x79\xd4\xea\x91\x92\xf3\x68\xa5\xaa\x75\x14\xab\x6a\ +\xd2\xd1\x75\xfd\x6d\x9a\xd4\xcb\xdb\x91\xb4\x2d\x2e\xe1\x70\x34\ +\x71\xa9\xd2\xc5\xb2\x3e\xa5\xa6\xc9\xed\x08\x7a\x2f\x02\xbf\x29\ +\x1f\x18\x07\x6f\x04\xda\x0b\x87\x3d\x87\x59\x81\xb0\x38\x29\xb9\ +\x23\xbd\x46\xa6\x1b\x42\x98\x14\x31\xf6\x09\x2e\xa9\x56\x69\xb4\ +\xa9\x8b\x15\xcc\x5a\x1c\x67\x51\x55\xa5\xf3\x34\x86\x42\x91\xaf\ +\xb3\xcd\x22\xcd\xff\xbd\x2c\x56\xca\xea\xf4\xd6\x37\xa2\x76\xeb\ +\xa2\xac\xe9\x2e\x59\x83\xf6\x5c\xef\x22\x73\x7f\xc8\x7c\x48\xd5\ +\xf6\x1f\xc5\x0e\x7a\x45\x18\x91\x02\xfe\x8d\xee\x80\x3e\x4d\xd4\ +\xbc\x42\x7e\x33\x42\x2c\xc1\x10\xbd\x11\x99\x68\x6e\xdf\x61\xec\ +\x6d\x82\xd7\x18\x64\x67\x51\xd5\x68\x91\x90\x75\xb4\x00\x8b\xcb\ +\x8a\xf2\x76\x74\x3d\xd7\x47\xcb\x98\x15\x65\xa2\xca\x8e\xe5\xea\ +\xe3\x88\x55\xc0\xac\xa4\xf5\xbe\xc1\x58\x7b\xed\x6e\x18\x78\xd5\ +\x9e\xcf\x2e\xf3\xab\x65\x94\x14\xdb\xdb\x91\x38\x65\x7e\x2a\x8a\ +\xd5\xed\xc8\xb1\x9c\xc0\x0f\x18\x3f\xe5\xc6\xa0\x08\x6a\xfb\x96\ +\xf4\x1d\x21\xfd\x33\x2e\xb4\xe7\x59\x8e\xf4\x3d\xee\x9c\x57\xdd\ +\x94\x25\x80\x90\x66\xd1\x5e\xc1\xa0\xf4\x9f\x4e\xa8\x5a\x16\xdb\ +\x45\x89\xca\xa9\xcb\x8d\x3a\xad\x89\x1c\x3a\x9b\xe1\x24\x5c\x62\ +\x83\x4d\x6c\x10\xde\x74\x93\xa7\x35\x40\x68\xbd\x3b\xbc\xea\x26\ +\x4d\x54\x75\xb9\x62\x95\x47\x6b\xba\xc8\x8a\x59\x94\x5d\x16\xd8\ +\xa6\x39\x28\x89\xb6\xd6\xce\x65\x3f\x07\xa7\x12\x9d\xe9\x7b\xec\ +\x4c\x27\xad\x04\x1a\xd0\x23\xac\xfd\xe3\xac\x55\xb4\x4b\x57\xe9\ +\x27\x05\x8a\x39\xd3\xa7\x1e\xd9\xa1\x5a\xee\xb4\xc0\xf4\x48\x6d\ +\x4d\x1d\x42\xea\x3d\xc2\x7c\xb7\x47\xda\xa8\x23\xa2\xbe\x91\x20\ +\x82\xc0\xeb\x89\x45\x99\x02\x7a\x0e\xba\xdb\x91\xf6\x87\x24\x74\ +\x0a\xe0\xd3\x77\x43\xbf\x7a\x1a\xda\x64\x07\x83\xc9\x39\x0e\x34\ +\x7d\xa5\xea\x28\x89\xea\x68\x00\x45\x47\x81\xbe\xb0\x6e\x24\xe0\ +\x4f\xc3\x9f\x3f\x7c\x77\xd7\x36\x30\x8d\xe3\xf0\x9f\x45\x79\xdf\ +\xb5\x47\x08\x0a\x44\xb3\x62\x03\x9a\x1f\xdd\xf5\xe4\x69\x12\x87\ +\xe0\x01\xc1\x33\xdc\xa5\x2b\x30\x75\x74\x9e\x7f\x07\x8f\x37\x9d\ +\x0c\x8c\x23\x61\x54\xce\x70\xd1\xe6\xb2\xa5\x6a\x5c\xe9\xc5\x78\ +\x92\xc4\xab\x14\x2b\x4d\x7e\xa9\xd3\x2c\xfb\x01\x1b\x69\x47\x7c\ +\x70\xd1\xb4\xce\xd4\x40\x9c\x4e\xda\xde\xb7\x63\x9b\x1c\x0c\x6e\ +\x3a\xe9\x46\xaf\x4b\x8b\x41\x2b\x47\x20\xe9\x27\x36\x8b\x66\x0a\ +\x2c\xf6\x47\x64\x92\x73\xbb\x28\x8b\xcd\x7a\x55\x24\xaa\xad\xde\ +\x69\x73\x1d\xd5\xcb\x7e\xaa\xea\x7d\x06\xfc\x39\xf4\x3e\xbc\xb6\ +\x13\xfc\xdc\x60\x81\xb6\x6e\x23\xe4\x4d\xb1\xdc\x64\xe0\x15\x1f\ +\x54\x5e\x24\xc9\x4d\x55\x97\xc5\xbd\x0a\xaf\x3d\x17\x3f\x6d\xb1\ +\x01\x47\xc8\xba\x22\x28\x46\x95\x19\x18\x6d\x1d\xda\x1d\x2d\x89\ +\xc0\xdb\x94\x65\xb4\x0f\x73\x08\xfa\x1d\xb5\x6f\xaa\x37\x20\x34\ +\x03\x22\xb8\x65\xdb\xc2\x96\xce\x58\x5a\x0e\x79\x20\xc2\x27\xdf\ +\x13\xce\x2d\x3f\x70\x03\x9f\x64\x84\x8d\xa9\x0b\x14\xd7\xe2\x6e\ +\xe0\x31\x2f\x00\x11\x20\x64\x84\x3a\x96\x27\xf0\x13\x38\x63\x86\ +\x44\x09\x24\x42\x7d\xf2\xe9\xc8\xde\x4b\x15\xd7\x32\x10\x92\x3a\ +\x03\xb9\xf7\x50\x45\x9e\x03\xbb\x28\x29\xf8\xaa\x87\xa8\xde\x94\ +\xea\xc8\xe6\x7b\x5b\x06\xe5\xe2\xf4\x83\x5b\x89\x87\xa3\xb7\x80\ +\xc7\x35\x2d\x65\x14\xb3\xe7\x6a\xda\xe2\xe0\x5c\x25\xe7\xfc\x73\ +\x2a\x7f\x44\xb9\xb2\x57\x2e\x24\x03\x0e\xe8\x52\x32\xb2\x24\x14\ +\x7c\xb6\x8b\x2a\xe3\x12\x34\x6b\x37\x22\xb6\xd6\x2c\xf7\x2e\xea\ +\x8f\xfb\x2f\xa9\xbd\x27\x68\x6e\xee\x47\x73\x9b\xbf\x1a\x1b\x75\ +\x3b\x35\xf2\xce\x46\x41\x8b\x9c\x35\xb6\xb8\xc4\x1f\x7d\x76\xa2\ +\xcc\xcf\x5b\xe4\x9f\x67\x8f\x8b\x3e\x0a\x94\x51\x5e\xa1\x07\x84\ +\x56\x8b\x1a\xb2\xed\xaf\x02\x36\xe6\xb6\x15\x78\x5c\x70\x6f\xcc\ +\x1d\xcb\xd6\x67\x5f\x1f\x87\x08\xdb\x73\x7c\x7a\xe0\xe7\xcf\x9d\ +\x47\xef\x7d\x8f\x66\xf0\xf3\x93\x3e\x48\x3d\x75\xc0\x4d\x77\xb0\ +\x05\xd0\xa8\x43\x83\x03\x06\xd0\x7f\x22\x62\x1c\xa0\xca\xc9\xb7\ +\xc4\x1e\xfb\x16\x0f\xbc\x80\xbb\x1e\x9c\x7b\x96\xcf\x04\xf3\xa5\ +\xc4\x73\x98\x12\xdf\xb5\x1d\x28\xc1\xb9\x03\x99\xaa\x63\x83\x14\ +\x9c\xbb\xf0\xfd\x48\x1c\xac\x6d\xb9\x4d\xdd\xb1\x43\xa4\x25\x9b\ +\xba\x70\x2e\xf4\xd7\xb5\x84\x0c\xb0\x3e\x9c\x7b\x96\xe7\x32\xac\ +\xaf\xdb\xfe\xd7\x41\x87\x5a\x25\xe9\x0c\x2e\xbc\x66\xfa\xb8\x99\ +\x17\x90\xa5\x68\x0e\x28\x04\xe2\x50\xd6\x50\x1e\xa2\x32\x8d\xf2\ +\xfa\x88\xb6\xd5\x19\xc5\x11\x09\x6c\x52\xd5\xf1\xf2\x98\x06\xc9\ +\x41\x08\x91\x35\xdd\xac\x6e\xb2\x34\x57\x6d\x26\x72\x24\x33\x8f\ +\x56\x69\xb6\x0f\x7f\x81\xb9\xbf\xa1\x9d\xae\x69\x53\x7d\xad\xe2\ +\x3e\x6f\x6e\x24\x6a\xb5\xab\x41\x2a\x81\x84\x0a\x10\xa3\x4b\x51\ +\x96\x2e\xf2\x10\x96\x6d\x65\xdd\x10\x12\x48\x5a\xcb\xa6\x8e\x46\ +\xcb\x09\x91\x62\x4f\x1a\x4e\xa6\x6a\xc0\x1a\x6d\x53\x83\xae\x5b\ +\x5b\x48\x61\x4f\x69\xfa\x1a\xbd\x81\x36\xb5\xb7\x65\x5a\x83\x08\ +\xc5\x68\x16\x66\x25\xad\x67\x37\x49\x8a\x78\xc1\x96\xb3\xba\xbc\ +\xc1\x54\x5a\x0f\xbb\x5a\xa6\xf3\x3a\xec\x8a\x6d\xb7\xf3\x78\x09\ +\xca\x6f\xfa\x9d\xa4\xd5\x1a\xc2\x21\xac\x79\xb4\x40\x01\x8b\x8d\ +\x79\x56\x6c\xc3\x87\xb4\x4a\x67\x99\xba\xd1\x7f\xd3\x0c\xc1\xde\ +\x91\xfe\xa7\xe8\x78\xe8\x3d\x1a\xb7\xc3\x2d\xc8\x69\xf0\x70\x6e\ +\x56\x51\x79\xaf\xca\x46\x46\xe5\x11\x34\x42\x67\x51\x7c\x8f\x11\ +\x3b\x4f\xc2\x28\x86\x3c\x76\x93\x01\x2c\x0f\x92\x89\xa7\x02\xea\ +\x99\x70\x92\x0e\xb5\xcf\xe1\xc4\x9d\x1e\x4f\x5c\x36\xa0\x40\x3c\ +\x71\xd1\x82\x02\xcf\x39\x88\x08\x12\x43\x2c\xe1\x1d\x95\x8d\x45\ +\x27\xcc\xc6\xf6\x81\xbb\x33\xb0\x30\xb0\xf8\xff\xc2\xe2\xd9\xc0\ +\x10\x1e\xf5\x8e\x81\xb1\x22\xdc\x1d\x0b\x07\x4c\x1e\x72\x28\xdb\ +\xf5\x3d\xcc\x37\x29\x24\x02\x92\x0b\x7d\x2a\x74\xfe\x89\x98\x80\ +\xb5\x39\xe3\xb0\x50\x06\x82\xb4\x98\xed\x0a\xc6\xe1\xd4\x86\x2f\ +\xc3\x04\xcc\xc7\xbb\x24\x08\x17\x2a\x21\x9b\x85\x03\xf1\x42\x6d\ +\x4c\x20\x1a\x44\x31\xab\x8d\x34\x08\xae\x36\xd0\x00\xb8\x0c\xa2\ +\x0c\xa2\xde\x5e\xa0\xe9\x57\x5e\x1e\xf5\x4f\x11\xe5\x8f\x85\x87\ +\x16\xdf\x25\x6a\x1a\x30\x78\x67\x15\xb2\x52\x00\x0c\xc0\x08\x41\ +\xf5\x23\xe1\xa2\x47\x5e\x23\x89\x78\x93\x5d\xaa\x87\x05\x04\x97\ +\x81\x87\x81\xc7\x5b\x0d\x38\xc2\x95\x94\x9d\xc2\x43\xe0\xda\x04\ +\xe1\xa1\xd7\x2d\x68\xf4\x10\x6e\x20\x1a\x68\x93\x17\x3a\x9c\xf0\ +\xf6\x2b\x20\x7a\x34\xc1\x03\x42\x12\x67\xae\xf4\xa5\x8d\x05\x61\ +\x05\x0e\x83\xb1\x07\x4d\x88\x01\x00\x05\x92\x33\x29\x5a\x00\xf9\ +\x8e\x0c\x02\x83\x1f\x83\x9f\xcf\xe1\x47\xda\x3e\x4e\xff\xab\xc6\ +\x8f\x64\x9c\xca\x33\xfc\x34\xe1\x05\xd2\xb1\xc0\xb1\x99\xad\xef\ +\x7e\x41\x66\xe6\x12\xd9\xa6\x63\x1f\x89\xc0\x85\xbf\xd3\x26\x71\ +\x50\xb0\xdb\xd4\x0e\x4f\xdb\x1f\xbb\xff\x91\xc3\x9a\x47\x2f\x76\ +\x3c\xdf\xf1\xb8\x6d\x16\x3b\x06\x3b\x5f\x14\x3b\x2f\x91\x9a\x79\ +\x54\x9c\x27\x67\x4f\xcd\xcd\x10\x43\x9c\x37\xe9\x18\xde\x3c\xf3\ +\xfb\x3a\x70\x0e\x5f\x73\x83\xcc\x80\xe3\x2d\xaf\x5b\xec\x83\xa7\ +\x46\xdd\xbd\x00\xfb\x08\x1d\x8f\x82\x03\xcd\xff\xf2\xba\xc5\x2c\ +\x5b\x0c\x3a\xde\x07\x3a\xf8\xf9\xc2\x5e\xb0\x27\xc1\x43\xd8\x06\ +\x1e\x06\x1e\xef\x10\x1e\xfd\xd3\x15\x87\xba\xe7\xcf\x57\x04\x1f\ +\x9e\xaf\x04\x07\xcf\x57\xfc\x83\xe7\x2b\x9e\x79\xbe\x62\x80\xf1\ +\x6a\x81\xf1\x52\x8b\x0e\xfb\x42\xe8\x70\xf1\xf9\xe3\xef\xc7\x0e\ +\xc9\xf0\x21\xa4\x0e\x1e\x02\x16\x58\x82\x77\xcf\x60\x68\x73\x67\ +\x8c\xf5\x77\xc6\xa8\x66\xf5\x7c\x83\x1b\x83\x9b\xb7\x8f\x9b\x4b\ +\xc8\x61\x18\x59\x9e\x94\x75\x71\xcf\x20\xc7\x20\xe7\xcb\x23\x67\ +\x3a\x59\x9c\x6e\x56\xeb\xb7\x9e\xf5\xc6\x76\x79\xfb\x9a\x73\x61\ +\xfb\xda\x17\xd8\x8e\x66\x36\xa3\x19\x8c\xfe\xe9\x18\x65\x7c\x96\ +\x24\xc1\xab\x8f\x6e\xcf\x5e\x2e\x99\xad\x68\x06\x14\xef\x0d\x14\ +\x2f\xb0\x15\xcd\x6c\x44\x33\x78\x32\x78\x7a\xb9\x5b\xd6\x66\x1b\ +\x9a\x01\xc7\xfb\x04\xc7\x0b\x6c\x43\x33\x9b\xd0\x0c\x7a\x5e\x21\ +\x7a\xde\xc8\x26\x34\xb3\x05\xcd\x20\xe7\x2f\x88\x9c\x17\xb9\xab\ +\x6d\x36\xa0\x19\x68\xbc\xbf\x94\xec\x45\xb6\xd8\x98\xed\x67\x06\ +\x1b\x06\x1b\x97\xb1\x71\x9e\x73\x99\xcd\x67\x06\x1c\x7f\x61\x70\ +\x0c\x9b\xcf\xcc\xd6\x33\x03\x8b\xf7\x06\x8b\x17\xdb\x42\x63\x36\ +\x9e\x19\xd4\x18\xd4\xfc\xf1\x8d\x67\x66\xdb\x99\xc1\xcd\x1b\xc7\ +\xcd\xb0\xed\xec\xf1\x37\xcf\xe9\x63\x78\xb1\x9c\x8f\x9f\x47\x5e\ +\x2c\x87\x43\x87\xc9\x0f\x67\x9b\xba\x3e\xa4\xfd\xa7\x48\xf3\x50\ +\xbf\x75\xee\xec\xc5\x72\x4f\x7f\x27\xdd\xf1\x2b\xe8\x82\xb1\x67\ +\x39\xda\xea\x1d\xb2\x24\x3e\xf9\x08\x6b\x7c\x48\xd7\x9a\xf7\xcc\ +\x59\xb6\x56\x08\x3e\x85\xb1\x02\x06\x1f\x8e\x7c\xae\xf9\xc3\x2d\ +\xb0\x2e\x45\xf4\x9d\xe1\xbf\x7c\xfe\x9e\x47\x78\xc2\x9b\xfa\x8e\ +\xf5\xd5\x22\xf3\xb9\xfa\x7a\xe6\x2b\xfb\x7e\x22\xe0\x83\x6c\xcb\ +\xe7\xf0\x11\x04\x3c\x0e\x97\x48\x81\xcc\xb7\x21\x5d\xd0\x89\xfd\ +\x07\x75\xa2\x4d\x69\x8a\xef\x1a\xbd\xbb\xfa\x2f\xbb\x92\xfa\xa3\ +\ +\x00\x00\x0a\x77\ +\x00\ +\x00\x28\xbf\x78\x9c\xdd\x59\x5b\x6f\xe3\xc6\x15\x7e\xdf\x5f\xc1\ +\xca\x2f\x59\x54\xa4\xe6\x7e\x51\xec\xcd\x43\x83\x16\x01\x12\x14\ +\x68\x12\xf4\x31\xa0\x49\xca\x66\x97\x22\x05\x92\x5a\x4b\xfb\xeb\ +\xfb\xcd\x48\xa4\x48\x49\xd6\xca\x5e\xa7\xc0\x56\x84\x61\x71\xce\ +\x5c\xcf\x77\x2e\xdf\x19\xdd\xfe\xb0\x59\x16\xc1\xa7\xac\x6e\xf2\ +\xaa\xbc\x9b\xd0\x88\x4c\x82\xac\x4c\xaa\x34\x2f\x1f\xee\x26\xbf\ +\xff\xf6\xf7\xd0\x4c\x82\xa6\x8d\xcb\x34\x2e\xaa\x32\xbb\x9b\x94\ +\xd5\xe4\x87\x0f\xef\x6e\xff\x12\x86\xc1\xdf\xea\x2c\x6e\xb3\x34\ +\x78\xca\xdb\xc7\xe0\xa7\xf2\x63\x93\xc4\xab\x2c\xf8\xee\xb1\x6d\ +\x57\xf3\xd9\xec\xe9\xe9\x29\xca\xf7\x8d\x51\x55\x3f\xcc\xde\x07\ +\x61\xf8\xe1\xdd\xbb\xdb\xe6\xd3\xc3\xbb\x20\x08\xb0\x6e\xd9\xcc\ +\xab\xe6\xfe\x6e\x32\x18\x51\xad\xb2\xb2\x79\x8a\xdb\xe4\xf1\xbe\ +\xaa\x3e\xfa\x71\xeb\x3a\x9f\x31\x42\xec\x0c\x7d\x27\x87\x91\x69\ +\xd2\x0f\x5c\xad\xeb\xc2\x77\x4d\x93\x59\x56\x64\xcb\xac\x6c\x9b\ +\x19\x8d\xe8\x6c\xd0\x3d\x39\x74\x4f\xdc\xbe\xf3\x4f\x59\x52\x2d\ +\x97\x55\xd9\xf8\x91\x65\x73\x33\xe8\x5c\xa7\x8b\xd1\xae\x9e\xb8\ +\xef\x44\xad\xb5\x33\xc2\x66\x8c\x85\xe8\x11\x36\xdb\xb2\x8d\x37\ +\xe1\x78\x28\x4e\x77\x6e\x28\x0e\x40\x66\x90\x1d\x7a\x5e\xd7\x6b\ +\xbe\x29\xa0\xc4\x67\x37\xe3\xa5\xc3\xd5\x01\xdc\x0a\x7f\xfd\x80\ +\xae\x21\x6a\xaa\x75\x9d\x64\x0b\x8c\xcc\xa2\x32\x6b\x67\x3f\xfe\ +\xf6\x63\x2f\x0c\x49\x94\xb6\xe9\x60\x9a\x0e\xb7\xd1\xba\x23\x30\ +\xcb\x78\x99\x35\xab\x38\xc9\x9a\x59\xd7\xee\xc7\x3f\xe5\x69\xfb\ +\x78\x37\xe1\x22\xa2\x1c\x1f\xe9\x1b\x1f\xb3\xfc\xe1\xb1\x3d\x6e\ +\xcd\xd3\xbb\x09\xce\xca\xac\xd5\xfe\x7d\x60\x84\x74\xd7\x61\x3f\ +\xf1\xbc\x97\x90\xc8\xb2\x88\x06\x35\x95\x5c\xef\xfa\x74\x47\x98\ +\xa7\x55\xe2\xf6\x84\x29\xb3\x65\x1e\xaf\xdb\x6a\x09\x8c\x93\xa4\ +\x88\x9b\x26\x5f\xe4\x09\x5e\xaa\x72\x55\xac\x1f\xf2\xf2\x8f\xb8\ +\x69\xb3\xfa\x8f\xb6\xaa\x8a\xa8\xd3\x75\xbf\x54\xb6\x59\x55\x75\ +\x1b\x6e\xd2\x15\x74\xa8\xf4\x59\xe1\xb6\x13\x7e\x80\xf4\xb6\xdf\ +\x81\x5b\x3e\xfd\x94\x67\x4f\x6e\xcc\xee\x78\xf7\x71\xb3\x53\x4b\ +\x10\xac\xe2\x07\x18\x5c\x51\xd5\x77\x93\x9b\x85\xff\xec\x05\xf7\ +\x55\x9d\x66\x75\x27\x52\xfe\x33\x12\x55\x50\x73\xde\x6e\x77\xce\ +\xb9\x9f\xbb\xdb\x91\x9b\xb5\x97\x93\xf3\xf2\xe6\x31\x4e\xab\xa7\ +\xbb\x09\x3b\x16\x7e\xae\xaa\xe5\xdd\x44\x47\x96\x1a\x22\xa8\x3e\ +\x16\x27\x9b\xbb\x49\x28\x58\x64\xa5\xa6\xf6\x64\x70\x82\x05\x99\ +\x8e\x38\x21\x4c\xf3\x13\xe1\xba\xae\xe1\x84\x61\x11\x6f\x33\x9c\ +\xca\xff\xa3\xfb\x4e\xcd\x63\xf5\xf4\x50\x3b\xed\xb4\xf5\x3a\x3b\ +\x1e\xe9\x24\xe1\xfd\x7d\xb5\x39\x2f\x06\xca\x6b\xe7\xde\xe1\xba\ +\xcc\x5b\xb8\xd0\x6a\x33\x9c\x75\x9d\xa7\x59\x73\x7e\x60\x53\xc6\ +\xab\xf0\xa1\xa8\xee\xe3\xe2\x7c\x87\xa7\xbc\x84\x96\xc2\xbd\xfd\ +\x52\xde\x83\x70\xdc\xa3\x33\x66\x4d\xcc\x33\x3d\xb0\xf7\x13\x20\ +\xf6\xa2\xed\xf3\xa2\x65\xbc\xc9\x97\xf9\xe7\x0c\x8a\xa1\xde\xb2\ +\x60\x5b\x23\xb5\xec\x86\xed\x0c\xcb\xbd\x43\xf5\x72\xd2\x35\xb6\ +\x5b\xe7\xad\x9b\xad\x13\xf4\x8d\x55\x9d\xc3\xde\x07\xdb\xe9\x9a\ +\xb6\xc3\x26\xe7\xc6\x88\xf6\x1b\x6f\x60\xde\xfc\xf4\xb1\x6c\x3b\ +\x94\x05\x33\x6f\xf7\xb3\x53\xc3\xf7\xed\x69\xb6\x68\x0e\x1e\xe0\ +\xde\xe0\xe1\xb6\x3b\x11\xe2\x55\x16\xd7\xff\xa8\xe3\x34\x07\x8c\ +\xc3\x23\x8d\x25\x8a\x08\xb5\x1f\xe3\x7c\xac\xad\x56\x5d\xdf\x7d\ +\xe0\x40\x0b\xfa\x98\xc9\xa1\xb9\x5a\x2c\x9a\xac\x1d\x9e\x0c\xfb\ +\x6f\xb7\x45\xb6\xeb\x1d\x7a\x17\x9b\xdf\x68\xe5\x9e\xef\x7d\xd3\ +\xde\x75\xe6\xf4\xfb\xfd\xa9\x2e\xae\x26\xc9\x99\xd5\xe8\xe5\xd5\ +\x38\x13\x52\x99\x67\x57\xbb\x9d\x8d\x8f\xfd\x42\x2d\x49\xb3\x8f\ +\x42\x67\xf6\x7d\x66\x33\x69\x9a\xda\xd4\x9e\x6c\xe6\xb2\x0a\xbb\ +\xf3\x63\x2d\xfb\xbc\x96\xce\xac\xa6\x12\xf7\x5c\xb1\x1a\x3d\xbb\ +\x1a\x02\xfc\x9b\x69\x49\xda\x17\x68\xc9\x26\x71\x4c\xc8\xeb\xb5\ +\x44\x5f\xa4\x25\x4b\x79\x4a\xef\x5f\xad\x25\xc5\xdf\x4e\x4b\xec\ +\xb0\x04\xa8\x16\x72\x47\x5e\x62\xdd\xa6\x2a\x10\x52\xae\x3f\xd0\ +\x42\x81\xc4\x1c\xa9\x8f\x44\xda\x18\xc6\x25\x7f\x81\x1e\xd9\x1b\ +\x9e\x8c\xca\x37\x39\xd9\xe2\x5e\xdf\xeb\x57\x1b\x06\xd5\xaf\x3b\ +\xd0\xc3\xfe\xfd\xb7\x3a\x2e\x1b\x10\x38\xe4\x6c\x70\x9b\x3a\xdf\ +\x7c\x07\xa2\xa4\x25\x61\x92\x4e\x43\x16\x29\x41\xa9\x55\x2a\x0b\ +\xcd\x14\xed\x8a\x13\xc6\xe9\xfe\x45\x5b\x42\x35\x9f\x86\x92\x46\ +\xca\x28\xc2\xd0\x1d\x99\x5b\x13\x6e\xe4\xfb\x7e\xab\x5b\x06\x1b\ +\xb3\x91\x55\x56\x1f\xe2\xff\x06\x8d\x4c\x44\x40\xce\xd9\x75\xdf\ +\x95\x9e\xeb\x8a\x46\x13\x31\x66\xb0\x82\x1d\x24\x10\x90\xed\xf4\ +\x97\xac\x7d\xac\xa0\x88\x55\x7c\x48\x4e\xdd\xb1\x7e\xdf\x65\xf2\ +\x75\x93\xd5\xbf\x3a\x42\xf9\xcf\xf2\xf7\x9e\x34\x9d\x45\x53\x1b\ +\x76\x58\xd4\xf1\xdf\xf9\x63\x9d\x81\xaf\xdf\x9c\xc9\x20\xfd\x34\ +\x3d\x33\xa9\x8a\x22\x4b\x80\x51\x5c\x3c\xc5\xdb\xe6\x80\xc8\x33\ +\xc6\xf4\xdc\xb8\x2b\x36\xe0\xc3\xce\xc5\xd8\x2d\x47\xca\xa3\x34\ +\xd2\x54\xa8\x41\x52\x77\x7a\x06\xa9\xa3\x92\x12\x22\xac\x1a\xa1\ +\xc2\x69\x64\xc0\xbd\x08\x1f\x01\x78\xae\xf7\x75\x8a\xbe\x64\x65\ +\x84\x70\x49\x94\x99\xa2\x4e\xe0\x8a\x4a\xab\xb8\x98\x92\x08\xac\ +\xd1\x1a\xb8\x35\x2c\x8c\x48\xd8\x9e\xd5\xd3\xd0\x44\x88\xdb\x42\ +\x52\x39\x85\xd5\x08\x2d\x88\xa5\xef\x0f\x3a\x76\x4b\xc4\xc5\xdb\ +\xea\x78\x40\x56\x9c\x8e\xc7\x4b\x20\x8b\x1c\xf4\xe3\xf8\x2c\x3b\ +\x98\x8e\x23\xb0\xd4\x44\x07\x6d\x2f\xc6\xf2\xc5\xb1\xbc\x76\x5c\ +\x99\x58\xff\xb9\x42\x6d\x24\x32\xd4\x12\xad\x88\x9e\x12\xf7\xc0\ +\x41\x19\x05\x7f\x82\x1f\x32\xe8\x91\x4b\x25\xe4\x94\xf2\x48\x52\ +\xcb\xe9\xfb\x2b\xd1\xfa\x92\xb9\x9e\x8b\xea\x3a\x24\xe1\xb3\xf9\ +\x6f\x10\x6f\x6d\xa8\x43\xfa\x85\x68\x76\x2e\x81\x71\x66\xd9\x2b\ +\xf8\x94\x34\x9c\x62\x67\xe7\x18\xdc\x17\x38\xd5\x42\x2d\x16\x27\ +\x19\xe6\x8b\x9c\xea\xcf\x30\xbe\xbd\x6e\x9f\x37\x40\x44\x58\xfd\ +\x66\x8e\x18\xf2\x88\x71\xff\x4c\x59\x24\x28\x17\x3b\x97\x34\x94\ +\x28\xcb\x98\xfb\x6a\x85\x34\x44\x4b\x3b\xd5\x22\x52\x88\x24\x4c\ +\x79\x97\x14\x02\x7e\x20\xde\x8f\x3c\x81\xca\x81\x69\x7b\x5f\xd0\ +\x91\xb6\xc2\x58\x3d\x72\x88\x51\xb7\xc5\xd9\x6e\xf5\xce\x4f\x14\ +\x93\x7d\x69\xe0\x58\xbf\xff\xb6\xcc\xda\x38\x8d\xdb\xf8\x50\x10\ +\x74\x2d\xae\x70\xec\x8a\x82\x3a\x5d\xcc\xff\xf5\xe3\xdf\x7b\x83\ +\x49\x92\xf9\xbf\xab\xfa\xe3\xc1\x08\x5c\x87\xf8\xbe\x5a\x03\x9e\ +\xde\x90\x5d\xa9\x91\xcc\x9d\x82\xe2\xf6\x43\xbe\x44\xa1\xeb\x6e\ +\x4e\xfe\xba\x59\x16\x58\xbf\x17\x8c\x3a\xbb\x22\xe9\x30\xe9\x6e\ +\xda\x3a\xdb\xdd\x8c\x9c\xbd\x4c\x4a\x93\x65\xee\x06\xcd\x7e\x6d\ +\xf3\xa2\xf8\xc9\x2d\x32\x30\xec\xfd\xa4\x79\x5b\x64\x03\x6b\x9f\ +\xed\x77\xdf\x19\xe3\xe0\x70\xb7\xb3\xee\xf4\xfe\xed\xe1\xa8\x10\ +\x7c\xa8\xab\xf5\x6a\x59\xa5\xd9\xbe\x62\x3e\x2e\x14\x8b\xf8\x3e\ +\x43\xf5\xfa\xb3\x93\x05\x9d\x8f\x78\x97\xdf\xd5\xd7\xfb\x15\xb3\ +\xa2\xc8\x57\x4d\x7f\xd0\xbd\x03\x2d\x70\x80\x39\x8e\xf6\xdd\xcd\ +\xa9\x85\xbe\xff\xde\x49\x07\xde\xeb\x5f\xeb\x75\x91\xcd\xb3\x4f\ +\x59\x59\xa5\x29\x9c\xad\xae\x3e\x66\xf3\x1b\x42\xf6\xec\xce\xbd\ +\xee\xaa\xe5\x79\xff\x0a\x65\x65\x75\x81\x2a\xb6\x9d\x8b\xae\x2d\ +\x8d\x9b\xc7\xb8\xae\xe3\xed\xbc\xac\xca\xac\x6b\xed\x97\x1a\xf9\ +\xce\x2a\x6e\x1f\x95\xe2\x6c\x6c\xa8\x64\x77\x69\xc4\xc7\xd6\x8a\ +\x64\xe9\x1a\xc5\xc1\x0c\x5d\xf8\x1e\xbc\xba\xfb\x09\xb8\xc9\x20\ +\xfb\xc0\xbd\x9f\x55\xca\x29\xc7\xf8\x5a\xa5\x44\x94\x6a\x4d\x40\ +\xc9\xde\x4a\x3b\x6e\xff\x82\x49\x12\x1e\x52\x7b\x77\x5b\x61\x1c\ +\x17\x10\xe4\xa0\xb8\xee\x92\x02\x84\x0c\xa4\x9b\x91\x83\x5e\xfc\ +\xa5\x0e\x45\xa4\xe0\xe2\xe0\xc2\xd0\x55\xa8\x23\x2b\x19\x13\x03\ +\xee\xe6\x54\x88\xfc\x04\xa2\x28\xa9\x1e\xe9\xb9\x27\x9e\x87\xfb\ +\x87\xd3\x68\x85\xc8\x04\x32\x82\x1a\x5d\xb9\xd0\x24\xad\x06\x5b\ +\x40\x40\xc2\x57\xb0\x06\x41\x2d\xf5\xc1\x8b\x18\x26\xc0\xf5\x5d\ +\x86\x3c\x04\xa8\xde\xe4\xfb\x69\xc3\x04\xb0\x64\x75\xe8\x73\x34\ +\x76\x6a\xf8\x20\x09\x3f\xdf\xdd\x1d\x8c\xaa\x88\x00\x09\x7d\x85\ +\x29\xdc\x64\xca\x3d\x5f\x8d\x3c\x47\x4e\xb7\xe6\x4d\x91\x97\x96\ +\x9e\xe2\x0e\xe6\xc5\x8c\xa5\xe2\x04\x77\x09\x4a\x46\x2c\x19\x90\ +\x23\x87\x3b\x05\x27\x63\x86\x2b\x31\x04\x1e\x93\x50\x29\x95\x62\ +\x47\x08\x73\x0d\xca\x2f\xf8\x91\x35\xa0\x8e\x03\xef\xbb\x84\xbb\ +\x77\x57\x06\xe2\xe3\xf1\xb5\x96\x12\x0c\x71\xb0\x5b\xab\x34\x70\ +\x73\x5f\x89\x21\x42\x72\x61\x77\xa8\xf7\xb0\x38\xff\xbf\xd6\x43\ +\xc1\x9e\xbf\xda\x43\x89\x51\x50\x1e\xd5\x97\x70\x3a\x45\x04\x80\ +\xfc\x12\xa0\x7e\x72\xf9\x15\xe5\x15\x8b\xa4\x96\xa8\x84\x02\xb0\ +\x3a\x03\x6f\x33\xc8\xbe\x91\xa2\x0c\x09\x4e\x07\x49\xe0\x5c\x45\ +\x30\xee\x7d\x40\x70\x66\x04\x91\x68\x83\x53\x69\x30\x41\x1e\x19\ +\xe7\x74\x8a\xa3\xc9\x38\x22\x28\xa6\x32\x42\x3a\x57\x4c\xf3\xa0\ +\x08\x50\x36\x33\x8b\xba\x11\xe9\xde\x60\x9f\xca\x62\x3e\x50\x47\ +\x7c\x95\x1a\xac\x9b\x51\x2a\x08\x0d\xdc\xc4\x60\x00\x7e\x3a\x89\ +\x55\x89\x09\x42\xac\x60\x28\xa3\x68\xb1\x8a\x19\x29\x82\x9f\x03\ +\xe3\xb8\x3b\xfa\x59\x4f\xcd\x25\xd6\x72\xdb\x43\x4f\xd4\x0a\xc4\ +\x7a\xbf\x94\x14\x89\x3d\x00\xcd\xe0\x4a\x0b\x21\xb8\xdb\x33\xb5\ +\x6e\x5f\xae\x71\x37\x93\x98\x76\x93\x07\x00\xcf\x8d\xc7\x0e\x05\ +\xd3\x9e\x7f\xa0\xd0\x84\x56\x5c\x23\xb7\xc4\x72\x02\x7e\x82\xf3\ +\x80\x7d\xe0\x84\x2e\x04\xb8\xba\x04\xb3\xba\x82\x12\x35\xb9\x0e\ +\x38\x4a\x0b\xe5\xb4\xe7\xda\x94\x44\x44\xd7\x81\xaf\x36\x99\xe0\ +\xdc\x8f\x95\xd8\x8a\x0e\x3e\x9f\x09\x84\x42\x9e\xfa\x7f\x52\x95\ +\x25\x84\x55\x1d\x26\xeb\xfa\x53\xdc\xae\xeb\x6c\x74\xd3\xd9\xdf\ +\x58\x22\xc9\xba\xbc\x0e\x16\xd6\xf8\x4f\xf2\x79\x50\x0a\xbe\x2c\ +\x81\xba\x1a\xe3\xeb\x73\x85\x41\x29\x27\xf4\x9b\x45\x0c\xe7\x49\ +\xdc\x32\x1e\xf2\xcb\x11\xda\xc5\x76\xe0\x4a\x9d\x7b\x32\x03\x62\ +\x47\xe0\x93\x70\x72\xec\xc5\x51\x4a\x14\x2d\x08\xf2\xb0\x40\x36\ +\x8e\xcf\xfe\xa7\x01\x06\x4b\x44\x54\x1f\x44\x1f\xff\x9b\x80\x04\ +\xf6\x88\x7e\x72\x14\x4e\xa4\xcb\xd6\x0e\xd6\x51\x38\x81\x1d\x2a\ +\xc2\xdc\xef\x1d\x5f\x0c\x01\x83\x23\x3f\xa7\x43\xce\x7c\x33\xeb\ +\xda\x5d\xc0\x80\x55\xcc\xef\xd7\x6d\x3b\x6c\xfb\x4f\x95\x97\x73\ +\xaf\xe0\xb7\xd0\xb6\x8f\x06\xb0\x59\x6b\x18\x85\x73\x20\x39\x19\ +\x6d\x28\xec\x18\x44\xd9\x28\x0e\x36\x3e\xa5\xee\x27\x16\x14\xc3\ +\x27\x08\x49\x63\xcf\x5e\x51\x9c\x35\xe2\x6f\x5e\x45\x48\xfb\xc2\ +\x22\xe6\xa3\xe6\xd5\x4a\x21\xaa\x04\xe0\x2d\x44\xc2\x2e\xe4\xd4\ +\x11\x18\xf0\x14\x76\x56\x45\x03\x23\xbe\x5a\x49\x7f\x72\x86\x07\ +\xa1\x40\x5c\xb2\x17\x33\xc7\x6b\x32\x7c\x28\x8e\x73\xbc\x44\xde\ +\x84\x8f\x91\xd3\x1c\x8f\x6a\x10\xc1\xd9\x0e\x6e\x38\x9c\x57\xa2\ +\x55\x09\x09\x03\x1c\xe5\x78\x1b\x39\x45\xf2\x91\x4f\xc2\xcf\x11\ +\x8e\xc1\x28\xe5\xc8\x29\x5d\x69\x29\x14\x82\xfa\xc5\x1c\x6f\x85\ +\x06\x87\x63\xda\xdf\x09\x51\x83\x14\x87\xfc\xe3\x73\x93\x64\x54\ +\xfa\x74\x2f\x2c\xc8\x2a\x7f\x09\xb3\x43\x48\xb1\x8e\x2d\x0c\xd8\ +\xe6\x45\x6a\x87\xdc\x83\x48\x43\xb5\xf9\x3f\xc0\x7d\x70\x8d\xf0\ +\x3a\xe4\x11\x4c\xad\xa0\x94\x1f\xe1\xce\xa4\x90\xe4\x5b\x01\x9e\ +\x9d\xf1\xf4\x0b\xc0\x1b\xf9\xbf\x03\x5e\x21\x21\xca\xb7\xa5\xf4\ +\x8a\x90\x13\xd0\x39\xe8\x1f\x78\xf7\x40\xd0\x81\xce\x22\x47\x14\ +\xa5\x1d\x97\x72\x14\x4c\x1f\x60\x9a\x11\xec\x0c\x04\xd4\xf9\xbb\ +\x38\x82\x1d\xe5\x32\x8c\x8d\xb2\x11\xec\xbe\x06\xe3\x96\x4b\x71\ +\x19\x77\x85\x6e\xca\x31\x35\x02\x9b\x22\xca\xd5\x0c\x8e\x2a\x70\ +\x81\x6a\x87\x7b\xaa\x00\xf6\x87\x74\x47\x5f\x80\x3b\xa6\x25\x20\ +\x17\x52\x5e\x89\x3b\x16\x41\xb9\x43\x60\x73\xdf\x3c\xf0\x83\xab\ +\xd6\x57\x42\xaf\x40\xfb\x05\x43\x11\x70\x04\xbd\xe3\x91\x86\x7d\ +\x23\xd0\x0b\x71\x65\x19\xbf\x87\xfe\xdb\xf7\xf8\x90\x7d\xb5\xcf\ +\x53\x1f\x79\xa9\x38\x02\xde\x28\xd4\x6c\xf6\x1b\x01\x5e\x0e\xae\ +\xee\xae\xf3\x79\xda\x5f\x2f\x3f\x7c\x78\x77\xeb\x2e\x7b\x3f\xbc\ +\xfb\x2f\xf4\x25\x33\x5f\ +\x00\x00\x06\xae\ \x00\ -\x00\x63\x16\x78\x9c\xe5\x5c\x5b\x6f\xe3\xb8\x15\x7e\x9f\x5f\xa1\ -\x3a\x2f\x33\x68\x44\xf3\x26\x91\xf4\x38\xd9\x87\x0e\x16\x58\xa0\ -\xfb\xd2\x6e\xdb\xc7\x85\x2c\xd1\x8e\x3a\xb2\x64\x48\x72\xe2\xcc\ -\xaf\xef\xa1\x6c\xc9\xb2\x63\x1a\x33\xdd\x70\xb0\xe1\xd8\x08\x12\ -\x1d\x92\x12\xcf\xc7\x73\xf9\x78\xcc\x78\xfe\xd3\x6e\x5d\x04\x8f\ -\xba\x6e\xf2\xaa\xbc\x9b\x10\x84\x27\x81\x2e\xd3\x2a\xcb\xcb\xd5\ -\xdd\xe4\x5f\xbf\xfd\x1c\xca\x49\xd0\xb4\x49\x99\x25\x45\x55\xea\ -\xbb\x49\x59\x4d\x7e\xba\x7f\x37\xff\x4b\x18\x06\x7f\xab\x75\xd2\ -\xea\x2c\x78\xca\xdb\x87\xe0\x97\xf2\x73\x93\x26\x1b\x1d\xbc\x7f\ -\x68\xdb\xcd\x6c\x3a\x7d\x7a\x7a\x42\xf9\x41\x88\xaa\x7a\x35\xfd\ -\x10\x84\xe1\xfd\xbb\x77\xf3\xe6\x71\xf5\x2e\x08\x02\x78\x6e\xd9\ -\xcc\xb2\xf4\x6e\x72\x18\xb0\xd9\xd6\x45\xd7\x31\x4b\xa7\xba\xd0\ -\x6b\x5d\xb6\xcd\x94\x20\x32\x9d\x1c\xbb\xa7\xc7\xee\xa9\x79\x7a\ -\xfe\xa8\xd3\x6a\xbd\xae\xca\xa6\x1b\x59\x36\x37\xa3\xce\x75\xb6\ -\x1c\x7a\x9b\xd9\x3c\xb1\xae\x13\x51\x4a\x4d\x31\x9d\x52\x1a\x42\ -\x8f\xb0\x79\x2e\xdb\x64\x17\x9e\x0e\x85\x39\x5e\x1a\x4a\x31\xc6\ -\x53\x68\x3b\xf6\xfc\xba\x5e\xb3\x06\x00\xdd\xc0\xcf\xd0\xbd\x17\ -\xa0\xa6\xda\xd6\xa9\x5e\xc2\x38\x8d\x4a\xdd\x4e\x3f\xfd\xf6\x69\ -\x68\x0c\x31\xca\xda\x6c\x74\x9b\x1e\xcf\x93\xa7\x9e\x80\x5c\x26\ -\x6b\xdd\x6c\x92\x54\x37\xd3\x5e\xde\x8d\x7f\xca\xb3\xf6\xe1\x6e\ -\xc2\x38\x22\x0c\x5e\x51\x27\x7c\xd0\xf9\xea\xa1\x3d\x97\xe6\xd9\ -\xdd\x04\x66\x4f\x95\xdc\x5f\x8f\x8c\x83\xec\x3b\x1c\x6e\x3c\x1b\ -\x5a\x30\x52\x14\x91\xa0\x26\x11\x13\xfb\x3e\xbd\x0a\xb3\xac\x4a\ -\xcd\x9c\xe0\x96\x7a\x9d\x27\xdb\xb6\x5a\xc3\xaa\xa5\x69\x91\x34\ -\x4d\xbe\xcc\x53\xb8\xa8\xca\x4d\xb1\x5d\xe5\xe5\xef\xb5\x5e\x57\ -\x8f\xfa\xf7\x56\xaf\x37\xa8\x87\x6f\x78\x96\xde\x6d\xaa\xba\x0d\ -\x77\xd9\x06\x40\x8c\xc5\xc5\xc6\xe7\xbe\xf1\x1e\x5a\xe7\x99\x5e\ -\x36\xa6\xd7\x5e\x23\x73\x05\x2a\x89\x49\x30\xed\x5a\x87\x09\x9a\ -\xd9\x65\x8f\xb9\x7e\x3a\xf6\x5d\x24\xcd\x1e\xb5\x20\xd8\x24\x2b\ -\xb0\xb0\xa2\xaa\xef\x26\x37\xcb\xee\x75\x68\x58\x54\x75\xa6\xeb\ -\xbe\x29\xee\x5e\x27\x4d\x15\xac\x42\xde\x3e\xef\x7d\xea\x70\xef\ -\x7e\xbe\xe6\xae\x43\x3b\xbe\xdc\xde\x3c\x24\x59\xf5\x74\x37\xa1\ -\xe7\x8d\x5f\xaa\x6a\x7d\x37\x89\x50\xa4\xa4\xc2\x58\x9d\x37\xa7\ -\xbb\xbb\x49\xc8\x29\x8a\x98\x14\x07\x9c\xc6\xad\x66\x42\x02\x09\ -\xc1\x09\x7b\x71\xe7\x74\x5b\xd7\xe0\x75\x61\x91\x3c\x6b\xd0\xaa\ -\xfb\x45\x0e\x9d\x9a\x87\xea\x69\x55\x1b\x74\xda\x7a\xab\xcf\x47\ -\x9a\x96\x70\xb1\xa8\x76\x97\x9b\xc1\x08\xb6\xc6\x9f\xc3\x6d\x99\ -\xb7\xe0\x33\x9b\xdd\xf8\xae\xdb\x3c\xd3\x20\x5c\x26\x45\xf3\x62\ -\x64\x53\x26\x9b\x70\x55\x54\x8b\xa4\xb0\xf4\x78\xca\x4b\xc0\x29\ -\x3c\x18\x38\x61\xc3\x32\x9c\xf7\xe8\xad\x5d\x60\x69\xe9\x01\xb3\ -\x7f\xb1\x14\x87\xa6\x67\x7b\xd3\x3a\xd9\xe5\xeb\xfc\x8b\x06\x68\ -\x48\x67\x79\x60\x5d\x27\xc0\xec\x87\x05\x41\xfb\x6c\x3c\x77\xf7\ -\x6c\x64\x93\x5e\x68\x10\x35\x02\xaa\x94\x18\x84\x55\x9d\x83\x43\ -\x8c\xa6\xd3\x8b\x9e\xc7\x22\xe3\xe7\x10\xa6\x77\x9d\x89\x75\x06\ -\x28\xce\xdb\x9e\xc7\x6d\x07\xcb\x9f\xbe\x34\xfd\x4e\xbe\xd6\x6d\ -\x92\x25\x6d\x72\xf4\x83\x5e\x02\x73\xc3\xbd\x66\x10\x32\x67\xff\ -\xf8\xf4\xf3\xfd\xe1\x41\xf3\x34\x9d\xfd\xa7\xaa\x3f\xf7\xcf\x0d\ -\x02\xd3\x21\x59\x54\x5b\x40\x7a\x72\x3f\x88\xe7\x59\x3a\x83\x20\ -\x07\xce\x7f\x9f\xaf\xc1\xba\x4d\x7c\xfc\x2b\x04\xb5\xf9\xf4\xd8\ -\x70\xd2\xd9\x80\x75\xbc\xe9\xfe\xb6\xb5\xde\x47\xcb\x8b\x29\x23\ -\x4b\xd7\xb9\x19\x34\xfd\x67\x9b\x17\xc5\x2f\xe6\x21\x07\x8d\x47\ -\x37\xcd\xdb\x42\x1f\x85\xf3\xe9\x61\xf6\x07\xdd\xa6\x23\xe5\xe6\ -\xd3\x5e\xfb\xee\x6a\x75\x44\xe5\xc4\x2d\x86\x85\x2e\x92\x85\x06\ -\x13\xfd\xbb\x69\x0c\x5e\xb4\xae\xea\x6a\xbb\x59\x57\x99\x3e\x0c\ -\xef\xd1\xd4\x45\x91\x6f\x9a\x41\xd1\xa6\x7d\x2e\xa0\x4b\x17\x55\ -\x66\x37\xb8\x7b\x7d\xcc\xf2\x66\x03\x83\x20\xf8\x17\x79\xa9\x3f\ -\x42\x88\xac\x97\x45\xf5\x34\x7b\xcc\x9b\x7c\x51\xe8\x8f\xdd\xef\ -\xbc\x00\xe5\x07\xd1\x12\x10\x98\xdd\xf0\xcc\xbc\xbb\x8b\xf0\x10\ -\x6d\x66\x64\x7f\x59\x6f\x0b\x3d\x2b\xab\xf2\x0b\xc4\xa9\x8f\x4d\ -\x5b\x57\x9f\xf5\xec\x86\x4a\xca\xe0\x79\xfb\xcb\xbd\x43\xcd\x18\ -\x8a\x09\x26\x4c\x12\xd9\xcb\xcd\x24\x40\xa7\xd9\x62\xdb\xb6\x63\ -\xd9\x7f\xab\xbc\x9c\xc1\x12\xe8\xba\x97\x76\x17\x05\xf8\x46\x3b\ -\xe3\xbd\x2c\x4b\x20\xae\xd5\x35\xa8\x03\x4f\xd7\x63\x69\xb5\x5c\ -\x36\xba\x9d\x51\x24\x19\x95\x98\x44\xc3\x03\x8f\x53\x5f\x27\xf5\ -\x67\x5d\xef\x47\xea\x32\x01\x4d\xc3\x45\x92\x7e\x36\xe0\x96\xd9\ -\x2c\x49\x21\xc8\x6c\x0b\xa0\x24\x27\xce\xb5\x49\xda\x07\xa6\x44\ -\x3c\x08\x4d\x80\xa4\x0c\x11\x2e\x38\xa6\x47\x29\xb8\x0a\x8d\x51\ -\x8c\x25\xe6\x47\x37\xaa\x8d\x73\x49\x64\x28\x83\x3c\xde\xa1\x86\ -\xbe\x1c\xc9\x98\x63\xc6\xc5\x60\x64\xf3\x5a\xa7\xad\x9b\x95\x94\ -\xd8\xbc\xbf\x7a\x25\xc7\xd0\xee\x97\x91\x22\x2e\xa4\x62\xec\xff\ -\xc4\xd0\x68\xc6\x94\x3a\x22\x70\x88\xb6\x94\x23\x15\x09\x2a\xd4\ -\xd0\xd0\x07\x59\x2a\x10\x8e\xa8\xa2\xc7\x16\x40\x92\x21\x49\x30\ -\x15\x24\x1a\x84\x06\x74\x14\x03\xd3\x50\x94\x9f\x82\x6e\xd2\x9b\ -\x8c\xc9\x19\xe6\x9c\x47\x92\x4a\x7e\xc4\xdc\xa9\x03\xc5\x0b\xb9\ -\x88\xe5\x37\x38\x10\x31\xef\x73\xe4\x65\x2c\x24\x03\x98\xde\xba\ -\x03\x85\xe4\xc4\x85\x48\x84\x14\x16\x52\x46\x27\x2e\x14\x23\x46\ -\x24\xe3\xea\x6c\x35\x29\x12\xf1\x89\x5f\x75\xab\xc9\x84\x90\x82\ -\x46\xc7\xd5\x34\x8f\x3a\x5b\xca\x6e\x25\x46\xaa\x0e\xab\x7a\x82\ -\xf2\x90\xe4\xe8\x66\xf7\xed\x38\x0f\x00\x0d\xf3\x03\xb5\x7f\x0d\ -\x04\xa2\xb0\x6e\x24\xa6\xb7\xa0\x2b\x15\x94\x4b\x15\xfc\x3b\x00\ -\x9b\xe7\x44\x10\x7e\x01\x23\x25\x8f\xc2\x81\x53\x55\x25\x4c\xa3\ -\xad\xea\x10\xd8\xd5\x63\xd2\x6e\x6b\x6d\x72\xf8\x9f\x52\xe5\x75\ -\x40\x08\xa2\x10\xd5\x70\xa7\x72\x1c\x31\xd0\x3e\x80\x5d\x08\x51\ -\x38\x22\xfc\x56\xa1\x88\x46\xf1\xc8\xdb\x7b\xd5\x39\xcc\xee\x6d\ -\xab\xfe\x6b\x40\x62\x84\x31\x23\x9c\xdc\xc2\x5f\x9c\x44\x91\x08\ -\x00\x03\x49\x68\x4c\xc5\x2d\x84\x33\x2a\xb8\xe4\xd1\x25\xd5\xe9\ -\xdb\x56\x7d\x1d\x50\x02\xae\xac\xb0\x31\x74\x48\x6b\x8a\xf0\x98\ -\x04\x87\x45\x67\xb7\xe0\xa6\x90\xfd\x09\xbb\xa4\x39\x7f\x3d\xcd\ -\x3b\x6d\x25\x1e\x94\x5f\x08\xf3\xfe\x0e\xeb\xce\xc0\xcb\xa5\x60\ -\x58\x81\x79\xc3\xe6\x01\xec\x5b\x04\xb0\x1f\x56\x04\x76\x8b\xf2\ -\x96\x4a\x84\x59\x2c\xc7\x9e\x7d\x54\x3f\xfe\x76\xf5\x2f\x70\x84\ -\xbd\xfa\x5a\x25\x0b\x12\xdb\x73\x8d\x7e\xd4\x65\x95\x65\x03\x3e\ -\x44\x66\xf1\x72\x79\x8a\x0f\x46\x02\xac\x51\x0a\xcc\xbf\x3d\x83\ -\xbc\x44\xa7\x4f\xfc\xc0\xfe\x55\x18\x9d\xa7\x7e\x82\x11\x83\x40\ -\x31\x8a\x83\x7d\xea\x7f\xd9\x62\x08\x97\x44\x94\x44\xa3\x0d\x0a\ -\x24\x80\x90\x21\x45\x0d\xf8\xe4\x2c\xf5\x0b\x88\xb9\xe4\x2c\x5b\ -\x40\x60\xa2\x11\x8e\xd8\x51\xda\xd6\x49\xd9\x98\xad\x03\x4c\xb3\ -\x6a\x21\x6b\xbd\x87\x87\x70\x41\xb0\xa2\x1f\x8e\x80\xaf\x4e\x36\ -\x5a\x4c\x8d\x0c\x79\x74\x03\xd8\x7e\xd4\xf9\xee\x3d\x46\x11\x98\ -\x7a\x44\x14\xbb\x0d\x8d\x16\x24\x26\x82\xb3\xdb\x93\x3f\x87\x1e\ -\x1c\x61\xc9\xa4\xa2\xf1\x2d\xf8\x0f\x8b\x23\x8a\xd9\x87\x61\xc7\ -\x73\xb2\xd0\x7b\x0d\x30\x04\x13\x22\xc0\xc4\x8e\xc0\xec\x15\xc6\ -\xa3\x6b\xa3\x69\x6c\x60\xe1\x8a\x8c\xc4\x06\x16\xc8\x3b\x8a\x45\ -\x2c\x1a\x89\x07\xb6\x85\x38\x8b\xe8\x78\x40\x4f\xd0\x5e\x34\xf4\ -\xab\x1a\x01\x27\x19\x89\xcf\x5c\x31\x4d\xc1\xb6\xbe\xda\x16\xf7\ -\x85\x91\x33\x5b\xfc\x23\x26\x38\xda\xa2\xbd\x3e\x8e\x46\x2c\x05\ -\x7f\x45\x1c\x43\x62\x47\x32\x49\x32\xee\x2b\x92\x26\x60\x02\x43\ -\x7a\x55\x24\x43\x69\xc7\x32\x8e\xaf\x6d\x82\xde\x34\x96\x10\x42\ -\x84\x52\xe4\x64\xf4\x1f\xc7\x12\xdb\xb1\x84\x9d\x54\xe4\x2b\x96\ -\x1c\x52\x3a\x67\xe2\x55\xed\x92\xd9\xa0\x5c\x2e\x69\x42\x13\x5f\ -\xa1\x8c\x51\x1c\xab\x48\xbe\xae\x59\x8a\x1f\x13\x4b\x85\x08\xec\ -\x81\xd5\xeb\x62\x29\xc3\xe8\x87\x44\x93\x11\x14\x99\x6d\xe7\xeb\ -\x26\x1f\x1c\xfa\xee\xe7\xc0\x22\xa5\xa0\x92\x9d\xa2\xe9\x84\x14\ -\x85\xdc\x86\xa5\x27\xb4\xc8\x82\xa5\x1b\x5a\x74\x8d\x64\x7a\x41\ -\x8c\x2e\xa3\xe9\x88\x18\xd9\x73\x90\x27\xd4\xc8\x82\xa6\x13\x6a\ -\x14\xc6\xf6\xa0\xa9\x94\xbf\x60\xba\x21\x47\x21\xfd\x31\xd1\x74\ -\x45\x8f\x42\x6b\x9d\xc3\x0f\x3c\xbb\x08\x49\x15\xa1\xa7\x78\x3a\ -\xa8\x17\x5d\xdb\x9b\xfb\x50\x31\xb2\x21\xe9\x84\x1c\xc9\x2b\x60\ -\xfa\xc0\x8e\x6c\x60\x3a\x62\x47\x57\x8a\x99\x3e\xb0\x23\x0b\x9a\ -\xae\xd8\x91\x35\xa1\xfb\xc1\x8e\x6c\x68\xba\x61\x47\xd6\x7c\x2e\ -\xf7\x1f\xf0\x79\x0a\xa6\x23\x76\x64\xdd\xa0\xfb\x8d\xa6\x33\x76\ -\x64\x4d\x43\x5e\xe3\xe9\xac\x7c\x64\xdf\x58\xfa\x81\xa7\xc9\xdf\ -\x91\x10\xf8\x3b\xb0\x4d\x7c\xad\x80\xe4\x03\xdf\xb4\x61\xe9\xa6\ -\x18\x67\xcf\x43\x7e\x10\x4e\x1b\x9a\xae\xca\x71\xf6\xc2\xbb\x1f\ -\x94\xd3\x82\xa7\xb3\x82\xdc\x35\x0a\xef\x03\xe9\xb4\xe1\xe9\xa8\ -\x24\x67\x77\xf7\x8c\x7b\x9c\x88\x9c\x15\xe5\xec\x89\xdd\x6f\x3c\ -\xdd\x95\xe5\xec\xc7\x13\xbc\x46\xd4\x1d\xf5\xa4\xf6\xcf\x88\xfc\ -\x40\xb4\x73\x6e\xc6\xd8\xf7\x20\x9f\xd6\x7d\xa6\xc9\xed\xfe\x42\ -\xe9\x84\x7b\x5a\xcb\x49\x7e\x63\xe9\x88\x79\x5a\x13\x91\xd7\x68\ -\xba\xe2\x9d\xd6\xfa\x87\xdf\x68\x3a\x2a\x75\x5e\xf9\x58\x9d\xb1\ -\xb7\xbf\x27\xb2\xa1\xe9\x88\x74\x5e\xd9\x61\x72\x9e\xbc\xf9\xc3\ -\x48\x36\x34\x9d\x51\x4e\x6b\x4e\xa7\x89\x58\xbe\xfd\x7a\x92\x05\ -\x4f\x87\xb5\x4e\x7b\x31\x5e\x24\x49\xa6\xdf\x3c\xa0\x10\x25\xa9\ -\x24\x27\x30\x38\x2b\x76\x5a\x43\xa7\x29\x7e\x78\x90\x88\x2c\x58\ -\x3a\x2a\x76\x5a\x29\xa7\xdf\x68\xba\x2b\x76\x5a\x73\x91\xd7\x80\ -\xba\xab\x76\x5a\x3f\xdb\xf0\x1b\x4f\x57\xd5\xce\x2b\x54\xc9\x0b\ -\xe2\x69\x81\xd3\x59\xb5\xf3\xea\x09\x10\x0f\xa8\xa7\x05\x4f\x87\ -\xd5\x4e\xdf\xc9\xe7\x65\x44\x5d\x56\x3b\xad\xf5\x63\x3f\xd8\xa7\ -\x81\x8e\x41\xa8\xfc\x2e\x8c\x49\x5e\xf9\x07\x83\x45\x9a\xb1\xe8\ -\xcd\x1b\xa8\x0d\x4e\x57\x07\x12\xed\x84\xde\x6b\x3c\x9d\x1d\x49\ -\xb4\xa7\x24\xbf\xf1\x74\x54\xa9\xf3\x9d\x31\xd9\xe0\x74\x75\x2c\ -\xf1\xda\x61\x25\x1f\x18\x93\x0d\x4f\x77\x07\x13\xed\x16\xea\x09\ -\x63\x52\x08\x2b\x19\xf1\xef\x52\x5d\xe2\xf6\xf4\x2e\x65\x92\x78\ -\xb0\xe1\xb4\xa0\xe9\xea\x30\xdd\x95\x83\x9e\x5e\xe3\xe9\xae\xc2\ -\x74\x85\xcf\xfb\x8c\xa8\xc3\x03\x75\x57\x0e\xcb\x7b\x8d\xa8\xb3\ -\x23\x75\xd7\xbe\x51\xc5\x07\xd2\x64\x03\xd4\xdd\xa1\xba\xeb\xff\ -\x88\xfd\xf6\x69\x93\x0d\x51\x97\xc7\xea\xec\x56\xea\x35\x71\x72\ -\x7a\xb0\xee\x0a\x7d\xfa\x53\x17\x9b\x28\x22\x02\x72\x0b\x3b\x43\ -\x94\x21\xcc\x29\xa3\x27\x58\x3d\x77\x5f\xea\x8a\x55\x8c\x65\x74\ -\x8a\x2c\x88\x09\xa6\x10\xe0\x2e\x20\x4b\x24\xa2\x31\xc7\x82\xbe\ -\xc4\xf6\x52\xd3\xf8\x5b\x05\x2d\x88\x7e\xc5\x97\x60\x52\x4e\x18\ -\x70\x64\xf1\x1a\xb0\xcd\xa7\xab\xfd\x17\x7e\xc3\xaf\xb9\xf9\x5e\ -\xf2\xfb\x77\xff\x03\x89\x24\xec\x97\ -\x00\x00\x08\xf8\ +\x00\x1d\x3d\x78\x9c\xed\x59\x5b\x73\xeb\xb6\x11\x7e\xf7\xaf\x60\ +\xe8\x97\x64\x2a\x82\xb8\x10\x24\x40\x4b\xce\x4c\x72\x26\x93\xcc\ +\xb4\x2f\x6d\xda\x3e\x66\x28\x12\x92\x19\x93\x84\x42\x82\x96\x94\ +\x5f\x9f\x05\xc5\x9b\x24\xab\x39\x6d\x7c\x92\x9c\x26\x94\x3d\x16\ +\x76\x17\xc0\xee\x87\x6f\x17\x00\xbd\xfc\xfc\x50\x16\xce\x8b\xaa\ +\x9b\x5c\x57\x2b\x97\x20\xec\x3a\xaa\x4a\x75\x96\x57\xdb\x95\xfb\ +\xcf\x6f\xbf\xf2\x84\xeb\x34\x26\xa9\xb2\xa4\xd0\x95\x5a\xb9\x95\ +\x76\x3f\x7f\xbc\x5b\x7e\xe2\x79\xce\x97\xb5\x4a\x8c\xca\x9c\x7d\ +\x6e\x9e\x9c\x6f\xaa\xe7\x26\x4d\x76\xca\xf9\xf4\xc9\x98\x5d\xec\ +\xfb\xfb\xfd\x1e\xe5\xbd\x10\xe9\x7a\xeb\x7f\xe6\x78\xde\xe3\xdd\ +\xdd\xb2\x79\xd9\xde\x39\x8e\x03\xf3\x56\x4d\x9c\xa5\x2b\xb7\xef\ +\xb0\x6b\xeb\xa2\x33\xcc\x52\x5f\x15\xaa\x54\x95\x69\x7c\x82\x88\ +\xef\x4e\xe6\xe9\x64\x9e\xda\xd9\xf3\x17\x95\xea\xb2\xd4\x55\xd3\ +\xf5\xac\x9a\xfb\x99\x71\x9d\x6d\x46\x6b\xeb\xcd\x9e\x75\x46\x44\ +\x4a\xe9\x63\xea\x53\xea\x81\x85\xd7\x1c\x2b\x93\x1c\xbc\xf3\xae\ +\xe0\xe3\x6b\x5d\x29\xc6\xd8\x07\xdd\x64\xf9\x7e\x56\x71\x03\x80\ +\xee\xe0\x77\x34\x1f\x04\xa8\xd1\x6d\x9d\xaa\x0d\xf4\x53\xa8\x52\ +\xc6\x7f\xf7\xed\xbb\x51\xe9\x61\x94\x99\x6c\x36\xcc\x80\xe7\xd9\ +\xac\x67\x20\x57\x49\xa9\x9a\x5d\x92\xaa\xc6\x1f\xe4\x5d\xff\x7d\ +\x9e\x99\xa7\x95\xcb\x02\x44\x18\x3c\xbc\x13\x3e\xa9\x7c\xfb\x64\ +\x2e\xa5\x79\xb6\x72\xc1\x7b\x2a\xc5\xa9\x3d\x23\x07\x39\x19\xf4\ +\x03\xc7\xa3\x06\x23\x49\x11\x71\x6a\xc2\x59\x74\xb2\x19\x42\x88\ +\x33\x9d\x5a\x9f\x60\x48\x55\xe6\x49\x6b\x74\x09\xab\x96\xa6\x45\ +\xd2\x34\xf9\x26\x4f\xa1\xa1\xab\x5d\xd1\x6e\xf3\xea\xbb\x5a\xe7\ +\xdf\x19\xad\x0b\x34\x60\x37\x4e\xa4\x0e\x3b\x5d\x1b\xef\x90\xed\ +\x00\xc1\x30\x7a\x55\x79\x9c\x2b\x5f\x72\xb5\xff\x42\x1f\xc0\x33\ +\x07\x3b\x8c\xc2\x8f\xfb\x08\xf2\x65\xa6\x36\x8d\xd5\x9f\xa2\xb4\ +\x2d\x08\x33\x72\x1d\xbf\xd3\x8e\x4e\x5b\x8f\x33\x3b\xc6\x64\xbb\ +\x4e\x9a\x13\x92\x8e\xb3\x4b\xb6\xc0\xba\x42\xd7\x2b\xf7\x7e\xd3\ +\x3d\xbd\x62\xad\xeb\x4c\xd5\x83\x2a\xec\x9e\x33\x95\x86\x95\xc9\ +\xcd\xf1\x94\x67\xfd\xd8\x43\x18\x76\xd4\x51\x8f\x5f\xd7\x37\x4f\ +\x49\xa6\xf7\x2b\x97\x5e\x2a\x7f\xd4\xba\x84\x75\x44\x92\x4b\x4c\ +\xb1\xbc\x54\xa7\x80\x84\xc7\x28\xa2\x42\x70\x46\xae\xb4\x30\x21\ +\x8f\x50\x24\x43\x22\xd8\x95\xb2\xad\x6b\xc8\x44\xaf\x48\x8e\x0a\ +\xa2\xea\xfe\x0c\x23\x34\x4f\x7a\xbf\xad\x2d\x3a\x9b\xa4\x18\xe1\ +\x19\xbb\x5a\x95\xb7\x5e\xdb\x65\x30\x75\x7b\xa5\x06\x66\xb4\x36\ +\xc9\xbd\xb6\xca\x0d\x24\xd2\xee\x30\x1f\xb6\xcd\x33\xd5\xdc\x18\ +\x78\x9f\x57\x00\x83\xd7\x73\x9a\xb0\x11\xe5\x4b\x8b\x81\xe0\x11\ +\x16\x37\x2c\x2c\x45\x6e\xa8\x8e\xb7\x55\x65\x72\xc8\xcb\xfc\x47\ +\x05\x91\x93\x8e\x58\x40\x9e\xb3\xb0\x4f\xdd\x1c\xc7\x1c\x6d\xb2\ +\x1e\x8e\x56\xe6\x0e\x42\x0b\x98\x15\xb0\x28\xe4\xa3\x50\xd7\x39\ +\xe4\xc0\xcc\x9d\x41\x74\x9c\x8b\x6c\x6a\x43\x65\x3e\xd8\x79\x2f\ +\x64\x96\x55\x03\x91\xfd\x6b\x26\x77\xf2\x52\x99\x24\x4b\x4c\x32\ +\xd1\x7a\x90\x50\x29\xf1\x10\x09\x54\xc5\xf8\xef\xef\xbe\x7a\xec\ +\x27\x58\xa6\x69\xfc\x6f\x5d\x3f\x0f\xf3\x39\x8e\x35\x48\xd6\xba\ +\x05\x64\xdd\xc7\x51\xbc\xcc\xd2\x18\xea\x18\xe4\xf7\x63\x5e\x02\ +\x59\x6d\x09\xfc\x0b\xd4\xad\xa5\x3f\x29\xce\x8c\x2d\x38\xd3\xa0\ +\xa7\x61\x6b\x75\x2a\x88\xaf\xee\x0a\x59\x5a\xe6\xb6\x93\xff\x0f\ +\x93\x17\xc5\x37\x76\x92\x3e\xe2\xd9\xa0\xb9\x29\xd4\x24\x5c\xfa\ +\xbd\xf7\x7d\x6c\xfe\x2c\xb8\xa5\x3f\x44\xdf\xb5\xb6\x13\x2a\x67\ +\x2c\x1f\x17\xb6\x48\xd6\xaa\x58\xb9\x7f\xb5\x4a\xe7\x4a\xbb\xad\ +\x75\xbb\x2b\x75\xa6\xfa\xee\x23\x9a\x2a\x35\xe3\x52\x99\x63\x01\ +\xfa\x0d\x78\x1f\xdf\x67\xeb\x4c\x29\xf6\x60\x1b\x5e\x9f\xf8\x31\ +\x39\x35\xeb\xb6\x80\xba\xf6\xa2\x2a\x9d\x65\x0f\x8d\xa9\xf5\xb3\ +\x8a\xef\x31\x0e\x04\xc6\x7d\xf3\x44\xfe\x78\x6c\x16\x79\xa5\xc0\ +\x8d\xb8\xf9\xa1\x4d\x6a\x35\x97\x7e\xaf\xf3\x2a\x06\xdc\x54\x3d\ +\x48\xbb\x46\x01\x04\x36\x71\x30\xc8\xb2\x04\x6a\x4b\x5d\x27\xc7\ +\xb8\x82\x6d\x7e\x2e\xd5\x9b\x4d\xa3\xcc\x34\xd3\xe0\x2a\x46\xac\ +\x7f\xce\x88\x6d\xc3\x65\x52\x4e\xf4\xec\xb3\x94\x72\x24\xed\x23\ +\x46\xc5\x90\x9c\x24\x44\x2c\x24\x38\x9c\xc6\x39\x74\xa5\x4c\xf0\ +\x28\x9a\xf2\xc3\xd2\x3b\x40\x14\x9e\x70\x1a\xa2\x3e\x74\xa5\x94\ +\x85\x78\x2a\x6b\x20\x3d\xce\xa5\x03\x17\x96\xbb\xc4\x3c\xbd\xb6\ +\x10\xb3\x80\xe3\x7b\xc2\xe8\x3a\x4c\xcf\x41\x26\x28\x60\xa1\x75\ +\xfd\x12\xec\x75\x6b\xcc\x5b\x41\x3d\x32\x60\x0c\x03\xc0\xfc\x9b\ +\xd3\xe3\xc0\xe4\x62\x8c\xde\xf9\x97\xc3\x30\xe2\xe2\x0a\x7a\x1b\ +\x20\xe4\x71\x38\x09\xc7\x22\xae\x2b\xf0\xd8\xe8\xda\x83\x72\xfe\ +\x92\x98\xb6\x56\x67\x55\x65\xac\x16\x40\x5f\x9b\x60\x50\x78\xd3\ +\xf4\xe7\x91\xbb\x17\x78\xcd\x36\x9b\x9f\x01\x4f\x72\x70\x0a\x36\ +\xa6\xdf\x00\x3d\x2a\x80\x5a\x38\x8a\xe8\x82\x4a\xc4\xe1\x5b\x18\ +\x39\x5f\x4f\x98\xbe\x86\x9e\xf8\x13\xbd\x13\x7a\xa5\x13\x20\xc6\ +\x85\x94\x01\x59\xd0\x10\x05\x92\x61\x40\x2f\x75\x08\xa2\x9c\x44\ +\x91\x94\x0b\x7c\xeb\xfb\x15\xae\x0c\x96\xc0\xc3\xef\x8d\xec\x7f\ +\x97\xb2\x70\xda\x96\x94\x5d\xe2\xc6\x19\xed\xea\xcd\x6f\xc0\x3a\ +\x8e\x28\x8b\x38\xc7\x6c\x41\x81\x6a\x70\x3a\xe1\x4e\x84\x08\xe1\ +\x94\x08\x6e\x45\x01\xe5\x0c\xd2\x98\x60\x24\x22\xcc\x79\xb0\x20\ +\x12\x6a\x29\x27\x98\x38\x04\x1a\x02\x09\xca\x04\x11\x4e\x01\x4c\ +\x25\x54\x06\x41\xb0\x08\x50\x88\x09\xe7\x83\x80\x2f\xa0\xbe\x51\ +\xca\xc3\xd0\x2e\x92\x20\x94\x8a\x05\x45\x38\xe0\x70\x8c\x87\xe9\ +\x31\x8e\x08\x61\x0b\x0b\x02\x13\xfc\x6a\x35\x02\xcc\xa2\xb7\x5b\ +\x8b\xdf\x3d\x8d\x25\x02\x64\x85\x20\xb6\x06\xc0\x89\x8b\x0a\x20\ +\x31\x5e\x78\x23\x5e\x37\xbe\x5f\x93\x58\x04\xd8\x7b\xff\xf2\xf0\ +\xf1\x03\x47\xf8\xa9\x7a\x06\x6f\x82\x9c\xfc\x03\x21\x47\x09\x0a\ +\x89\x84\xdb\xdf\x9b\x20\xc7\x3e\x50\xe1\xfc\x7d\x9d\x75\xec\x7e\ +\x13\x12\x12\x86\x14\x32\x15\x0e\x97\x3c\x0a\x43\x31\xdb\x6f\xf8\ +\x6c\x8f\xb9\xf8\x7e\x63\xbf\xf9\x03\x02\x07\x29\x4b\x83\x40\x30\ +\xfe\xcb\x80\xfb\x1f\x72\xf5\x95\x6b\x4e\xf7\x22\xa4\xdb\x9f\xe1\ +\x79\xc8\xf2\x66\x07\x17\xa3\x38\xaf\x2c\x0a\x0f\xfa\x45\xd5\x9b\ +\x42\xef\xe3\x97\xbc\xc9\xd7\x85\x7a\xe8\xfe\xe6\x85\x0d\x6f\x10\ +\x9d\x92\x9d\xa6\x3c\x49\xf0\xfb\xdf\x93\x14\xdf\xe0\xb1\x38\x0c\ +\xf7\x24\x14\xf2\x90\x93\x0f\x5a\x0b\xfe\xd3\x65\x89\x3c\x94\x49\ +\xfd\xac\xea\x53\x07\x55\x25\x10\x9e\xb7\x4e\xd2\x67\x7b\x6b\xac\ +\xb2\x38\x49\xd3\xb6\x6c\x8b\xc4\xa8\xb3\x25\xb1\xa0\xda\x22\xe6\ +\x71\xf8\x84\xde\x74\xb2\xef\x2f\x55\x12\xc2\x92\x38\x62\xd7\x97\ +\xaa\x6b\x0d\x5c\x95\x28\x12\x92\x8a\x30\x9a\xf2\xa2\x7b\xd5\x64\ +\xcf\x03\x94\x4e\x47\x82\xd3\xad\x2a\xc4\x42\x72\x42\x27\x69\x77\ +\xab\x22\x81\x08\x44\x34\x8d\x6a\xea\xa4\x6a\xec\xe5\x1e\x9c\xd5\ +\x06\xfc\xff\xd4\xc3\x88\x46\xf0\xe1\x9c\x7d\xf6\xab\xd0\x83\x04\ +\x41\x24\xde\x84\x1e\x42\x06\x1f\x39\x41\xbc\xe8\x06\x45\xa8\xbc\ +\x45\x91\x99\x06\xd6\x5d\xc0\x41\x95\x06\x4c\xd2\x0b\x8a\xd0\x28\ +\x94\x24\xf8\x48\x29\x42\x42\x9a\xf1\xb7\xa9\x20\xff\x07\x14\xe1\ +\xbf\x90\x22\x24\xb0\x97\x10\xc9\xa3\xcb\x2a\x12\x52\x38\xe9\xb0\ +\x8f\x94\x23\xd0\x79\x43\xe9\xdb\x70\x44\x7c\xd0\x43\xc0\xaf\xc2\ +\x91\xd9\xd9\xe9\x9c\x25\xe4\x26\x4b\xc8\x39\x4b\xa4\xfd\x87\x02\ +\xac\xde\x39\x4b\x58\x08\x07\x0f\x3a\x23\xd4\x1b\xb2\xe4\xea\xcc\ +\x32\xda\x7b\xa9\xaa\x00\x5e\xaf\xdb\x03\xe1\xf0\x13\x04\xe4\x95\ +\xb7\x64\x57\xe6\xe0\x84\x47\x90\x60\x4c\x82\x7f\xe3\xbb\xf5\xed\ +\xe3\xdd\xd2\xbe\xdb\x7e\xbc\xfb\x09\x54\x3a\xbf\x64\ +\x00\x00\x09\x9e\ \x00\ -\x00\x56\xfd\x78\x9c\xe5\x5c\xcb\x8e\xeb\xb8\x11\xdd\xf7\x57\x28\ -\xbe\x9b\x04\x31\x65\x8a\x7a\x50\x52\xdb\x3d\x8b\xb9\x18\xcc\x00\ -\xc9\x26\x33\x49\x80\x6c\x06\xb4\x44\xdb\xc2\xd5\xc3\xa0\xe8\xb6\ -\x7d\xbf\x3e\x45\xbd\x6c\xd9\x9a\x20\x00\x65\x40\xb0\x05\x34\xba\ -\x55\x55\x24\x8b\x47\xc5\xe2\x11\xc5\xe6\xf2\x87\x53\x96\x1a\x9f\ -\x5c\x94\x49\x91\xaf\x66\x96\x89\x67\x06\xcf\xa3\x22\x4e\xf2\xed\ -\x6a\xf6\xcf\xdf\x7e\x42\xfe\xcc\x28\x25\xcb\x63\x96\x16\x39\x5f\ -\xcd\xf2\x62\xf6\xc3\xc7\xdb\xf2\x4f\x08\x19\x3f\x0a\xce\x24\x8f\ -\x8d\x63\x22\x77\xc6\x2f\xf9\xb7\x32\x62\x7b\x6e\xfc\x79\x27\xe5\ -\x3e\x5c\x2c\x8e\xc7\xa3\x99\x34\x42\xb3\x10\xdb\xc5\x5f\x0c\x84\ -\x3e\xde\xde\x96\xe5\xe7\xf6\xcd\x30\x0c\x68\x37\x2f\xc3\x38\x5a\ -\xcd\x9a\x02\xfb\x83\x48\x2b\xc3\x38\x5a\xf0\x94\x67\x3c\x97\xe5\ -\xc2\x32\xad\xc5\xec\x62\x1e\x5d\xcc\x23\xd5\x7a\xf2\xc9\xa3\x22\ -\xcb\x8a\xbc\xac\x4a\xe6\xe5\x97\x2b\x63\x11\x6f\x3a\x6b\xe5\xcd\ -\xd1\xae\x8c\xac\x20\x08\x16\x98\x2c\x08\x41\x60\x81\xca\x73\x2e\ -\xd9\x09\xf5\x8b\x82\x8f\x43\x45\x09\xc6\x78\x01\xba\x8b\xe5\xff\ -\x67\x15\x96\x00\xe8\x1e\x7e\x3a\xf3\x56\x60\x96\xc5\x41\x44\x7c\ -\x03\xe5\xb8\x99\x73\xb9\xf8\xfa\xdb\xd7\x4e\x89\xb0\x19\xcb\xf8\ -\xaa\x9a\x16\xcf\x5e\xab\x3d\x90\x73\x96\xf1\x72\xcf\x22\x5e\x2e\ -\x5a\x79\x55\xfe\x98\xc4\x72\xb7\x9a\xd9\x8e\x69\xd9\x70\xb9\x95\ -\x70\xc7\x93\xed\x4e\xde\x4a\x93\x78\x35\x03\xef\x49\xe0\xd7\xf7\ -\x57\xc1\x61\xd5\x06\x4d\xc5\x61\xa7\xc1\x66\x40\x4c\xcb\x10\x96\ -\x6b\xd3\xda\xa6\xed\x42\x18\x17\x91\xf2\x09\xaa\xe4\x59\xc2\x0e\ -\xb2\xc8\xe0\xa9\x45\x51\xca\xca\x32\xd9\x24\x11\xdc\x14\xf9\x3e\ -\x3d\x6c\x93\xfc\xf7\xbd\xe0\x9f\x09\x3f\xfe\x2e\x78\x5c\x98\x2d\ -\x7e\x5d\x63\xfc\xb4\x2f\x84\x44\xa7\x78\x0f\x28\x7a\x74\x50\x79\ -\x6e\x95\x1f\xa0\x5d\xc6\x7c\x53\x2a\xab\xba\x4b\xea\x0e\xfa\x44\ -\x67\xc6\xa2\xd2\x76\x1e\x2a\xf7\x62\xd5\xf0\xc5\x76\xcd\xca\x1a\ -\x36\xc3\xd8\xb3\x2d\x84\x58\x5a\x88\xd5\xec\xcb\xa6\xba\x1a\xc5\ -\xba\x10\x31\x17\xad\xca\xab\xae\x9e\xaa\x80\xc7\x90\xc8\x73\x3d\ -\xa8\x9a\xba\x5b\x7f\x55\xad\x9d\x1e\x0f\xeb\xcb\x1d\x8b\x8b\xe3\ -\x6a\x46\x6e\x95\xdf\x8b\x22\x5b\xcd\xa8\x19\x58\x3e\x76\x2c\x7a\ -\xab\x8e\x4e\xab\x19\xb2\x6d\x93\xd8\x98\xba\xf6\x9d\x56\x39\xe4\ -\x98\x36\xf5\x6d\x72\x57\x73\x74\x10\x02\x86\x1d\x4a\xd9\x99\x43\ -\xaf\xaa\x5f\x56\x63\x54\xee\x8a\xe3\x56\x28\x74\xa4\x38\xf0\xdb\ -\x92\x4a\x83\xd6\xeb\xe2\x34\xac\x86\x28\x38\xa8\x01\x8d\x0e\x79\ -\x22\x61\xd0\xec\x4f\xd7\xb5\x1e\x92\x98\x97\xc3\x05\xcb\x9c\xed\ -\xd1\x36\x2d\xd6\x2c\x1d\x36\x38\x26\x39\xa0\x84\x9a\xf8\xb6\xec\ -\xee\x21\xdc\x5a\xb4\xc1\x4e\xb1\xff\x07\x16\xe0\xfb\xdd\x83\x68\ -\x54\xe7\x3f\x56\x65\xec\x94\x64\xc9\x77\x0e\xc0\x58\x55\xdc\x41\ -\x6c\xf5\x60\xa9\x8b\x19\x86\x3c\xab\x81\x7b\x3a\x2b\xd9\xac\x15\ -\x2a\x3c\x95\x80\x04\x01\xed\x84\x85\x48\x60\x3c\x5c\xb9\xd3\x8a\ -\xce\xd7\x22\x35\xcc\x21\x4b\x9f\xaa\x00\xab\xc2\x8f\xde\xea\xce\ -\xd7\xba\x26\xee\x17\xf7\x81\x5f\xc9\x33\x2e\x59\xcc\x24\xbb\x8c\ -\x82\x56\x02\xbe\xe1\xb6\x67\x90\x31\xc3\x7f\x7c\xfd\xe9\xa3\x69\ -\x68\x19\x45\xe1\xbf\x0b\xf1\xad\x6d\xd7\x30\x94\x01\x5b\x17\x07\ -\x40\x7a\xf6\xd1\x89\x97\x71\x14\x42\x8e\x83\xb1\xff\x91\x64\x10\ -\xdb\x2a\x3d\xfe\x15\x72\xda\x72\x71\x51\xf4\x8c\x15\x58\x97\x4a\ -\xeb\x6a\x05\xaf\x93\xe5\xe0\x8c\x11\x47\x59\xa2\x0a\x2d\x7e\x95\ -\x49\x9a\xfe\xa2\x1a\x69\x7a\x7c\x55\x69\x22\x53\x7e\x11\x2e\x17\ -\x8d\xf7\x4d\xdf\x16\x57\x9d\x5b\x2e\xda\xde\x57\x77\xdb\x0b\x2a\ -\xbd\x41\xd1\x3d\xe8\x94\xad\x39\x44\xe8\xdf\x94\xd2\xb8\xd3\x6e\ -\x45\x71\xd8\x67\x45\xcc\x9b\xe2\x1d\x9a\x3c\x92\xdd\x23\x93\xe7\ -\x14\xf4\x1b\xf0\x3e\xfc\x82\x71\x14\x6d\x36\xef\xea\x06\x35\x79\ -\x22\xb4\xea\x5b\x71\x48\x21\xdf\x7d\xf2\xbc\x88\xe3\xf7\x52\x8a\ -\xe2\x1b\x0f\x9b\xcc\xd4\xdc\xd6\x83\x21\xc4\xed\x2d\x00\xc3\x45\ -\x0a\x41\x2a\x43\xa7\x95\xc5\x0c\xd2\x8b\x10\xec\x1c\xe6\x30\xad\ -\xb7\xd2\xae\xa9\x5e\x7c\x2a\x2f\x5d\xdf\x0e\x3a\x61\x33\xd8\x1c\ -\x93\x54\xa1\x75\x51\xb4\x63\xec\x5e\xd3\x0b\xe6\xf3\x90\x85\xe8\ -\x99\x88\x2a\x74\x1d\xa2\x2e\xbb\x7b\x90\xff\x0b\x30\xc6\x62\x67\ -\x62\x80\x21\x4b\x13\xb2\x7b\xe1\x43\xa0\xf3\x3c\x1f\x4f\x0e\x3a\ -\xe4\x6b\x82\xe7\x9b\xae\x22\x35\xb6\xff\x58\xf0\x1c\xc7\x75\xa7\ -\x07\x1e\xd6\x04\xcf\x22\xe6\x43\x71\xdb\x6c\x08\x23\x6c\x72\xb8\ -\xd9\xba\xb0\xd1\x7a\xba\x7d\x45\xec\x10\xd5\x04\x8f\x58\x66\x35\ -\x60\x9d\x57\x04\xcf\x47\xae\x2e\x7c\xae\xe9\xbd\x22\x72\x18\xe9\ -\x8e\x5a\x12\x98\x7e\x9f\x3f\xbf\x0e\x43\x41\x8e\x26\x78\x83\x1c\ -\x05\x8f\x06\xda\x44\xb9\x89\x36\xb5\x1b\x64\x27\xe3\xc1\x36\x51\ -\x56\xa2\x3d\x47\xdc\xf2\x92\xb1\x10\xdb\x6c\x82\x60\x82\x88\xd9\ -\xc8\xd3\x05\x6c\x88\x91\x3c\x39\x6a\x88\x22\xa2\x09\xdb\x20\x17\ -\x79\x76\xd8\x80\x83\x20\xdd\xb7\xfc\x5b\x16\x32\x5e\x4a\x9b\xe0\ -\x8a\x88\xf6\x3b\x6a\x6f\x4d\xa4\x97\xdb\x9e\x93\x6c\xf8\xba\x80\ -\x0d\xb2\x8d\x51\x81\x9b\x2a\xe1\xd0\x1d\x98\x83\x84\x63\x54\xe4\ -\xa6\xca\x39\xb4\xa7\xd0\x1b\xce\x31\x22\x68\x3e\x56\xd7\xe4\x40\ -\xb3\xb5\xe7\xcf\x41\xda\xf1\xfc\xc0\x01\xf3\xd0\x7e\x19\x1d\x62\ -\x1e\x2f\x80\x9c\x22\x1f\xba\xb3\xc3\x2d\xf9\x78\x01\xd8\x30\xb2\ -\xf5\x17\xde\x86\xd6\x3f\x46\x9d\x1a\xa6\xc8\xdd\xb0\xf6\xd2\x47\ -\x8f\xbd\xdd\xcf\xaf\xcf\x49\xe1\x1c\xed\xb9\x61\x90\xc3\x8d\x0f\ -\xdf\x54\x89\x9c\xa5\xbd\xd2\x3b\x48\xe5\xc6\x07\x70\xaa\x7c\x8e\ -\x6a\x73\xe1\x5b\x46\x37\x36\x76\xb1\x33\xc9\xc9\xc2\x46\xde\x63\ -\x88\xdd\x8b\xe0\xa7\xd6\x95\x1e\xf3\x95\xeb\x55\x00\xac\x56\x98\ -\xb4\x3f\x4e\xdf\xd2\xbc\x57\x41\x4f\x71\x3d\xa2\xfd\xe5\x61\x90\ -\xed\x8d\x0d\xa1\x9a\x7c\xa7\x07\x21\xd6\x7d\x39\xeb\x31\xbe\xfb\ -\x91\xfc\x8c\x98\x59\xda\xeb\x27\x83\x7c\xef\x55\xc0\xf3\xb5\x27\ -\x8c\x41\xb6\xf7\x2a\xf0\x61\xed\x35\x81\x5b\xae\x37\x36\x72\x18\ -\xc3\xa3\x99\x1e\x72\x30\x53\x68\x7f\x6b\x1d\xa2\x7a\xe3\xc3\xe7\ -\x38\x6c\x82\xbb\x4a\xa8\xfe\x7e\x9c\x21\xa2\x37\x36\x7c\x84\xd1\ -\xcd\xf4\x96\x56\x6a\xa2\xa7\xbd\x12\x7a\x43\xf3\xc6\xc6\xce\xa7\ -\x8c\xc5\x7c\x7a\xd8\x55\x4b\x7a\x0f\xd9\xd3\x34\x36\x82\x6a\x85\ -\x60\x7a\xb3\x86\xfe\x2e\x93\xfe\x67\xd9\xbb\x34\xf8\x8c\xa0\xa9\ -\x85\xbd\x87\x10\xbd\x57\x81\xaf\x5a\xd8\x7b\xc8\xca\xde\xab\x20\ -\xa8\x56\xf6\x74\x97\xe4\xef\xbe\xd5\x8e\x8c\xdd\x64\xd9\x9e\xa7\ -\xcd\x57\x86\x3f\xd9\x8e\x8e\xdf\x54\xe9\x1e\xd1\x4e\x7f\xc3\x5f\ -\x6e\x47\x06\x70\xca\x84\x2f\x18\x9d\xf2\x8d\x8d\xde\x94\x29\x1f\ -\xd1\x5f\x17\x1d\xfc\x8e\x3b\x32\x84\xeb\x28\xb6\xdd\x29\x06\xa0\ -\xfe\x9e\xec\xe1\x85\xaa\x3b\x50\x9f\x14\x3f\x18\xbe\x8f\x59\xaa\ -\x7a\x11\x00\x31\xcc\xc1\x63\x6f\x35\x1b\x1b\xbb\xc9\xd2\x17\xf2\ -\x18\xfa\x32\x3e\x7e\x53\xa5\x2f\xb6\x36\x75\x1e\x5e\xaf\x1a\x19\ -\xc0\x29\xd3\x97\xf1\xff\x05\x6f\x6c\xf4\x7c\x9f\xb1\xe9\xbd\xb9\ -\x61\xe4\x68\x4f\xbd\xfd\x0f\x6b\xd7\x30\x3e\x23\x62\xd5\x2e\x2a\ -\xed\xd9\x76\x98\xae\x3c\x3f\x76\xd5\x4a\x8b\x36\x59\x1e\xe6\x2a\ -\xcf\x8f\x5e\xb5\x7f\x4a\xfb\x45\xed\x8e\xa8\x8c\x07\xdc\x64\x39\ -\x8a\x37\xc2\x2b\xda\x30\x4b\x19\x13\xbc\xa9\x12\x14\xc8\x77\x8f\ -\xd9\x3b\x35\x22\x7a\x53\x66\x27\x6a\x9e\x1d\x7b\xe3\xd4\x98\xe9\ -\x6e\xd2\x2b\x2b\xd6\x63\x76\x4d\x8d\x87\xdf\x55\x9f\xd4\x20\xae\ -\xf6\x9f\xf5\xb0\x21\xa6\x45\x5d\x6c\x11\xdf\x1e\x13\x24\x12\x04\ -\x77\x7b\x69\x6d\x72\x87\xc8\x95\x68\xf0\xb8\xb1\xf3\x90\x50\xe1\ -\xe1\xc2\x78\xc5\xf6\xf5\x19\x0a\x60\x6a\x9b\x3e\x76\x7c\xea\xbb\ -\x17\x58\xf6\x4c\xee\x6e\x60\xa9\x4e\xd6\xeb\xb0\xd8\x14\xb9\x44\ -\x95\x06\x7a\x26\x32\x96\xd6\x92\x4f\x26\x12\x96\xcb\x9e\xec\x58\ -\x39\xdd\x13\x01\x0e\x5c\x46\xbb\xbe\x2c\xf9\xce\xc3\x8c\xc7\xc9\ -\x21\x7b\x4f\x93\x9c\x37\x07\xc4\xf5\x6c\x36\x2c\x4b\xd2\x73\xf8\ -\x2b\xcb\xcb\x77\xd4\x9e\xe6\x85\xea\xe2\x7b\x1e\x75\x07\x18\xd6\ -\x16\x92\x9f\x24\x58\xc5\x1c\x1c\xc2\xf5\x1d\x4b\x93\x6d\x1e\x96\ -\x92\x09\x59\x0b\x62\x1e\x15\xa2\x2e\x53\x3d\xa1\x1b\x21\x52\x9e\ -\xd4\x9a\x94\x4b\x78\xbe\xa8\x39\xc9\xad\x75\xeb\x58\x88\xf8\x56\ -\x56\xd5\x21\x05\xb8\xa0\x4e\x52\xab\x4b\x1f\x45\x22\xc1\x04\xa9\ -\x43\xc7\xc2\x54\x20\xb9\x7e\x8f\x13\xf5\xc4\x55\xcb\xa9\x14\xef\ -\xea\x88\xc3\xaa\xdb\xe5\x2e\xd9\xc8\xb0\xbd\x6d\xdc\xce\xa3\x1d\ -\x80\x5f\xfb\x1d\x27\xe5\x3e\x85\x88\x4a\xf2\xca\xa0\xf8\xe4\x62\ -\x93\x16\xc7\xf0\x33\x29\x93\x75\xca\xdf\xab\xdf\x49\xaa\x02\xac\ -\x15\xd5\x29\xa1\x19\xe2\x37\x29\xa1\x09\xf2\xeb\xf8\xac\x23\xdc\ -\x36\x9d\xea\x14\x4a\x87\xbc\x67\x4c\x7c\xe3\xa2\xb6\xe1\x39\x83\ -\x2a\xd1\x9a\x45\xdf\xd4\x31\x6a\x79\x1c\xb2\x28\x3a\x64\x87\x94\ -\x49\xde\x85\x15\x84\xf3\xdf\x0d\x7f\x1e\x98\x5e\x1d\x84\xc6\x8f\ -\x06\x44\x99\xe5\x60\x0b\xd3\xb9\xe5\x98\x3e\xf5\x68\xe0\x1a\x8e\ -\xe9\xd8\xc4\x0f\x40\x46\x88\xe9\x39\x0e\x0d\x1c\x23\x30\x9d\x39\ -\x69\x66\x65\x6a\xa8\xa3\x11\x3d\x6a\xe1\x60\x6e\xc3\xe8\xf5\x7d\ -\xd7\x31\x60\xd2\x09\x1c\x6a\x3b\xf6\xdc\xc6\x50\xa7\x1a\x83\x06\ -\xf1\xea\x13\x33\xc9\x5c\xa5\x00\x23\x82\x9a\x2d\xdf\x0d\x82\x39\ -\x72\x4d\x52\x9b\xd8\xa6\x0b\x15\x59\x73\x04\x54\x29\xa0\xbe\x45\ -\xa8\x81\xa0\x4a\xb8\xa7\xa6\x63\xa4\x86\x3d\x47\xa4\x4e\x29\xd0\ -\xec\xcf\x46\x4b\x0c\x3c\xe3\x5f\x86\x57\x1b\x98\x64\xde\x92\x54\ -\x83\x34\x3d\x9b\x23\xdb\xa4\xd0\x1e\x31\x6d\x1a\xd8\x98\xcc\xc1\ -\x8a\x52\x4a\x02\x30\xb7\xc0\x6f\xd7\x87\x32\x81\x8b\x21\x83\x19\ -\xb8\x2e\xec\xcc\xc1\x03\x52\xfd\x65\x40\x69\xec\x28\x4f\xa1\x1c\ -\xf5\x3d\x4c\x41\xe4\x9b\x84\x60\x6a\x79\x73\xc8\x7b\x56\x40\x09\ -\xb8\x69\x99\x34\x50\xd7\x1c\x46\x75\xdd\x3e\x14\x74\x69\x00\xd9\ -\xc7\x55\x1e\x58\xbe\x67\xfb\xd0\x1f\xa7\xae\xcd\x07\x21\xb4\x6a\ -\xd9\x01\x71\xa1\x74\xd5\x65\xf5\x08\xa0\x1e\xa2\x1a\xb7\xeb\xbf\ -\x3c\x33\x68\xba\x7b\xfd\xa4\xfe\xd3\x4b\x4a\x2a\x11\x90\xe0\xea\ -\xdf\x84\x2f\x67\x53\x16\x79\x0e\xf1\x5b\x08\x14\x1d\xc4\x27\x93\ -\x07\xc1\x7b\xa7\x21\x76\xa7\x1a\x42\xc4\xab\x83\x00\x4b\x48\x21\ -\x65\x19\x55\x97\xfa\xdd\x9d\x7f\xb8\xfd\x78\x5b\xaa\xf3\x07\x3f\ -\xde\xfe\x0b\xb7\x0d\x2e\x74\ -\x00\x00\x08\xff\ +\x00\x24\x4e\x78\x9c\xe5\x59\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x60\ +\xe5\x97\x04\x15\xa9\x73\xbf\x28\xb6\xf7\xa1\x8b\x2d\x16\x68\x51\ +\xa0\x9b\xa0\x8f\x0b\x8a\xa4\x6c\x36\x14\x29\x90\x94\x25\xe5\xd7\ +\xf7\x3b\x94\x48\x91\x92\x6c\xcb\xb1\x5b\x6c\x50\x05\x41\xc8\x33\ +\x73\x6e\x33\xdf\xcc\x7c\xc3\xdc\xfc\xb4\x59\x64\xde\x63\x52\x56\ +\x69\x91\xdf\x8e\x68\x40\x46\x5e\x92\x47\x45\x9c\xe6\xf7\xb7\xa3\ +\x2f\x9f\x7f\xf1\xcd\xc8\xab\xea\x30\x8f\xc3\xac\xc8\x93\xdb\x51\ +\x5e\x8c\x7e\xba\xbb\xba\xf9\x93\xef\x7b\x7f\x29\x93\xb0\x4e\x62\ +\x6f\x9d\xd6\x0f\xde\xaf\xf9\xd7\x2a\x0a\x97\x89\xf7\xe1\xa1\xae\ +\x97\xd3\xc9\x64\xbd\x5e\x07\xe9\x7e\x30\x28\xca\xfb\xc9\x47\xcf\ +\xf7\xef\xae\xae\x6e\xaa\xc7\xfb\x2b\xcf\xf3\xb0\x6f\x5e\x4d\x8b\ +\x6a\x76\x3b\xea\xcd\x28\x96\x49\x5e\xad\xc3\x3a\x7a\x98\x15\xc5\ +\xd7\x66\xde\xaa\x4c\x27\x8c\x10\x3b\x81\xee\xe8\x30\x33\x8e\xba\ +\x89\xcb\x55\x99\x35\xaa\x71\x34\x49\xb2\x64\x91\xe4\x75\x35\xa1\ +\x01\x9d\xf4\xd4\xa3\x83\x7a\xe4\xce\x9d\x3e\x26\x51\xb1\x58\x14\ +\x79\xd5\xcc\xcc\xab\xeb\x9e\x72\x19\xcf\x07\xa7\x5a\xf3\x46\x89\ +\x5a\x6b\x27\x84\x4d\x18\xf3\xa1\xe1\x57\xdb\xbc\x0e\x37\xfe\x70\ +\x2a\x6e\x77\x6e\x2a\x2e\x40\x26\x90\x1d\x34\x2f\xd3\x9a\x6e\x32\ +\x18\xf1\xc9\xc3\x34\xd2\xfe\xee\x70\xdc\x12\x7f\xbb\x09\xed\x40\ +\x50\x15\xab\x32\x4a\xe6\x98\x99\x04\x79\x52\x4f\x7e\xfe\xfc\x73\ +\x27\xf4\x49\x10\xd7\x71\x6f\x99\xd6\x6f\x83\x7d\x07\xce\xcc\xc3\ +\x45\x52\x2d\xc3\x28\xa9\x26\xed\x78\x33\x7f\x9d\xc6\xf5\xc3\xed\ +\x88\x8b\x80\x72\xfc\x64\x33\xf8\x90\xa4\xf7\x0f\xf5\xf1\x68\x1a\ +\xdf\x8e\x70\x57\x66\xad\x6e\xde\x7b\x20\xa4\x3b\x85\xfd\xc2\xd3\ +\x4e\x42\x02\xcb\x02\xea\x95\x54\x72\xbd\xd3\x69\xaf\x30\x8d\x8b\ +\xc8\x9d\x09\x4b\x26\x8b\x34\x5c\xd5\xc5\x02\x3e\x8e\xa2\x2c\xac\ +\xaa\x74\x9e\x46\x78\x29\xf2\x65\xb6\xba\x4f\xf3\xdf\x17\xd0\xaf\ +\x7e\xaf\x8b\x22\x0b\x5a\x5b\x77\x5b\x25\x9b\x65\x51\xd6\xfe\x26\ +\x5e\xc2\x86\x4a\x9f\x15\x6e\x5b\xe1\x1d\xa4\x37\xdd\x09\xdc\xf6\ +\xf1\x63\x9a\xac\xdd\x9c\xdd\xf5\x66\x61\xb5\x33\x8b\xe7\x2d\xc3\ +\x7b\x00\x2e\x2b\xca\xdb\xd1\xf5\xbc\xf9\xed\x05\xb3\xa2\x8c\x93\ +\xb2\x15\xa9\xe6\x37\x10\x15\x30\x73\x5a\x6f\x77\xc1\xb9\x5f\xbb\ +\x3d\x91\x5b\xb5\x93\x93\xf3\xf2\xea\x21\x8c\x8b\xf5\xed\x88\x1d\ +\x0b\xbf\x15\xc5\xe2\x76\x64\x8e\x87\xa3\xcd\xed\xc8\x17\x32\xa0\ +\x52\x68\x23\x4e\xa4\xee\x20\x2a\x10\x84\x13\xab\x4e\x84\xab\xb2\ +\x44\xf0\xf9\x59\xb8\x4d\x70\x9b\xe6\x1f\xba\x57\xaa\x1e\x8a\xf5\ +\x7d\xe9\xac\x52\x97\xab\xe4\x78\xa6\x93\xf8\xb3\x59\xb1\x39\x2f\ +\x86\x77\x57\x2e\xac\xfd\x55\x9e\xd6\x08\x9d\xe5\xa6\xbf\xea\x2a\ +\x8d\x93\xea\xfc\xc4\x2a\x0f\x97\xfe\x7d\x56\xcc\xc2\xec\xbc\xc2\ +\x3a\xcd\x61\x1d\x7f\x8f\x5b\xca\xd5\xc9\xa5\xf6\x1a\x2d\x88\x35\ +\x39\xb1\xd8\x5e\x03\x67\x3f\x71\xc0\x5e\xb4\x7d\x5a\xb4\x08\x37\ +\xe9\x22\xfd\x96\xc0\x30\xb4\x41\x14\x30\x35\x30\xcb\x6e\xda\x0e\ +\x50\xee\x9d\x13\x22\x47\xed\x60\xbd\x75\x51\xba\xd9\x3a\x41\x37\ +\x58\x94\x29\x70\xde\x3b\x4e\x3b\xb4\xed\x0f\xb9\xf0\x45\x96\xdf\ +\x34\xc0\x6a\x60\xa7\x8f\x65\xdb\xbe\xcc\x9b\x34\x78\x9f\x9c\x02\ +\xbe\x19\x8f\x93\x79\x75\x40\xbe\x7b\x43\x64\xdb\xf6\x46\xc8\x53\ +\x49\x58\xfe\xb5\x0c\xe3\x14\x6e\xec\x5f\x69\x28\x91\x46\xb6\x73\ +\x5c\x6c\xd5\xc5\xb2\xd5\xc5\xa1\xea\x6d\xe6\x02\x1c\x83\x7e\x13\ +\x2f\xd3\x6b\x1b\x85\x21\x21\x9f\x9a\xa1\x7d\x1c\x4c\xe9\xa7\xd1\ +\x61\x4e\x31\x9f\x57\x49\xdd\xbf\xf6\x3e\xf1\x60\x86\x34\x8a\xee\ +\x6f\x75\xe1\x6e\x94\xc7\x74\x76\xc1\x6e\xf4\xfc\x6e\xbc\xdb\xed\ +\x66\x32\xbc\xf6\xab\xad\xc4\x0e\x5b\xa0\x2c\x22\xce\xd3\x1c\xfb\ +\x56\x45\x06\x18\x5c\x7e\xa1\xb9\x42\xc1\x39\x32\x1f\x09\xb4\x31\ +\x8c\x4b\xfe\x0a\x3b\xb2\x77\xbc\x19\x95\xef\x72\xb3\xf9\x4c\xcf\ +\xf4\x77\x03\x83\xea\xef\xbc\x50\x97\x09\x8b\x2c\x4b\x22\xac\x1f\ +\x66\xeb\x70\x5b\x75\x9b\x34\x05\x7b\xfa\x50\x26\x20\x18\xd7\x67\ +\xa0\xff\x9c\x65\xd4\xc1\x32\x1b\x0a\x90\xd1\x40\x53\xa1\x7a\xc9\ +\x60\x4b\x9b\x22\x40\x25\x25\x44\x74\xd9\x19\xda\x0c\xb5\x97\x06\ +\x86\x10\x46\xf8\x41\x9b\x9d\xd7\xbe\xdf\x6f\xf8\x65\x97\x6a\x57\ +\x55\x52\xfe\xe6\x2a\xfd\x3f\xf2\x2f\x5d\x35\x3b\x68\x7d\x2e\xc3\ +\xbc\x02\xad\x40\x25\x41\xc5\x2d\xd3\xcd\x07\x12\x18\x21\x19\xa5\ +\xd2\x8e\x41\x2c\x94\x24\x0a\x78\xa2\x63\x12\x08\xcb\x99\x62\x42\ +\xe1\xd1\x0a\xa9\x95\xa0\xd0\x90\x01\xd3\x52\x50\xae\xc7\x38\x21\ +\x93\x12\x73\x3f\x1e\x6c\xff\x8a\x80\xd0\x3e\xf1\x9f\x4c\x1d\x3d\ +\xa8\x5a\x5f\xfb\xf4\x05\x20\x9c\x01\x14\x21\xf3\x30\x0e\x4f\x00\ +\xf5\x64\xfa\x38\xec\xc8\x29\x4e\x66\x5e\xc8\x12\x67\x83\x73\x3e\ +\x3f\x09\xce\x4f\x2f\xe1\xd2\xbd\x85\xd9\xfb\xe2\x72\x6f\xdb\xbe\ +\xf9\x87\xdb\x70\x23\xf5\xbb\xe1\xc7\xe7\x01\xe3\xcd\x9f\x31\x0b\ +\x80\x0c\xa1\x8c\x03\x92\xa1\x44\x59\xc6\xdc\x23\xd0\x63\x88\x06\ +\xbe\xb4\x08\x14\x02\x80\xa9\xb1\x6f\x80\x3a\x61\x34\x17\x1f\xbb\ +\x2d\x1c\x91\xa1\x32\x38\xc4\x47\xc3\x5d\x74\xa0\xad\x30\xf6\x70\ +\xde\xf9\xb1\xda\xfc\xac\x1a\xf8\x0c\x35\x81\x54\x4c\x76\x95\xd0\ +\x15\xb9\xe6\x69\x91\xd4\x00\x47\x1d\x1e\xea\x5f\x3b\x82\x62\xcd\ +\xda\x1a\x88\x9e\x61\xfa\xcf\x9f\x7f\xe9\x00\x13\x45\xd3\x7f\x15\ +\xe5\xd7\x03\x08\x9c\x42\x38\x2b\x56\x70\x4f\x07\x64\x57\x59\xa3\ +\xa9\x33\x50\x58\xdf\xa5\x0b\xf0\x39\xd7\x20\xfc\x19\x3c\x1d\xfb\ +\x77\x82\x81\xb2\xe3\x04\x87\x45\x77\xcb\x96\xc9\xae\x01\x38\xdb\ +\x33\xc5\xd1\x22\x75\x93\x26\xbf\xd5\x69\x96\xfd\xea\x36\xe9\x01\ +\x7b\xbf\x68\x5a\x67\x49\x0f\xed\x93\xfd\xe9\x5b\x30\xf6\x2e\x77\ +\x33\x69\x6f\xdf\xbc\xdd\x9f\x50\xbd\x62\xb5\x04\x07\x4f\xf6\x04\ +\xf1\x98\x17\x65\xe1\x2c\x01\x59\xfb\x9b\x93\x79\x6d\x8c\x34\x21\ +\xbf\xa3\x93\xfb\x1d\x93\x2c\x4b\x97\x55\x77\xd1\x7d\x00\xcd\x71\ +\x81\x29\xae\xf6\xe1\xfa\x14\xa1\x1f\x3f\x39\x69\x2f\x7a\x9b\xd7\ +\x72\x95\x81\xd9\x3f\x26\x79\x11\xc7\x08\xb6\xb2\xf8\x9a\xb8\x68\ +\xdf\x17\x46\xf7\xba\x23\x87\xd3\xee\x15\xc6\x4a\xca\x0c\xa4\xad\ +\x9e\x8a\x76\x2c\x0e\x41\xb3\xcb\x32\xdc\x4e\x73\xb4\xc9\xed\x68\ +\xb7\xd5\x20\x76\x96\x61\xfd\xa0\x14\x67\x43\xa0\x92\x5d\x6f\xc4\ +\x87\x68\x45\x8e\x77\x83\xe2\x00\x43\xe8\xb2\xde\x2b\x94\x18\xc2\ +\xe4\x90\x16\x4a\x84\xf7\x39\xa3\x5c\x73\xcd\x75\x64\xde\x68\x83\ +\x80\x52\x63\x95\xe0\xea\xbd\x8c\xe1\x8e\x2b\x98\x24\xfe\xa1\x00\ +\xb5\x5c\x1c\x5d\x86\x65\x42\x1c\xf4\x5b\x0a\x6e\x03\x45\x49\xbf\ +\xbe\xa1\x61\xe1\x26\x20\x1a\xf1\xdf\xab\x86\x18\x85\x55\x8d\xb2\ +\xaa\x37\xea\x0c\x26\x9a\x5b\x18\x66\x06\x56\x05\xd3\xe5\x44\x6b\ +\x7d\x58\xb7\x3e\xcd\x4d\x6e\x3d\xa9\x2d\xb4\x5c\x22\x92\x84\x70\ +\x2b\x88\x41\x45\x63\x42\xa3\x9e\x59\xda\xe4\x27\x65\x2c\x31\x5c\ +\x8e\xc9\x98\x1c\xd2\x51\x07\xf0\x6e\x59\x3f\x02\x32\x93\xd2\x35\ +\x0e\x8c\x06\x92\x19\xc2\xf8\x05\xea\xcd\xc5\x68\xc0\x51\x59\x65\ +\x8f\x78\x39\x58\x3d\x19\x0d\xa7\x5c\xe2\xad\xd1\x10\x10\x58\x96\ +\x0a\xaa\x9f\x43\xc2\xa9\xcf\xe1\xf2\xbf\x7b\x2a\x90\x70\xad\x95\ +\x72\x4c\x45\x60\x35\xa1\x94\x7a\xc8\xb8\x46\x2a\x8a\x0c\xaf\x5c\ +\x24\x10\x3c\x7a\x91\x07\x63\x1a\x45\x84\xb3\xaa\xd6\xee\xbe\xc6\ +\x63\xe0\x14\x5c\x52\x3a\x76\x75\xc2\x82\xaa\x29\x8f\x07\x9c\x31\ +\x61\xe5\x58\x04\xcc\x6a\x61\x88\xf1\x32\x0f\x16\x95\x82\x58\xe1\ +\xaa\x88\xd4\x30\x6d\xb3\x9c\x82\x6f\x0c\x1f\xc3\xd9\x60\x20\x8a\ +\xbb\x11\x4b\x80\x26\xac\x26\x90\x23\x38\xf7\xb0\x15\x8e\x66\x39\ +\x75\xab\x49\xc5\x2d\xd6\x6a\xec\x0d\x22\xc3\xf4\x18\x85\x86\x6b\ +\x22\xb1\x98\x4f\x1b\x39\xc5\xf1\xdc\x31\xa9\xf5\x5c\xe9\x52\x8a\ +\x81\xda\x8c\x1d\x0b\x62\x54\x60\x6c\xbf\x0a\x69\xe8\x50\xb3\x32\ +\xf3\x00\x0c\xcf\x67\x01\x65\x98\x25\xdd\x38\x15\xda\x2a\xed\xc6\ +\x10\x5e\x5c\x11\x3e\xc6\x3c\xf4\xdf\x5c\xb8\xf3\x68\x65\xa8\xc2\ +\xa2\x18\x83\x65\x38\x6e\x4c\x03\x04\x86\xa0\x84\x3a\x06\xc5\x25\ +\xb3\x54\xc1\x30\x52\x33\x62\x41\xa5\x7c\x05\xd3\xe0\x20\xcc\xfb\ +\x76\x26\xd8\x84\x3c\x05\x59\x54\xe4\x39\x84\x45\xe9\xa3\x87\x7f\ +\x0c\xeb\x55\x99\x0c\x7a\xc5\xae\xe7\x43\xde\x76\xa5\x02\x85\xbd\ +\x6a\x7e\xd1\xb7\xea\x65\x08\xf6\xd2\xc0\x53\x68\xe2\xac\x19\x66\ +\xed\xb8\x03\x2c\x4e\x36\x9d\xad\xea\xba\x3f\xf6\xef\x22\xcd\xa7\ +\x0d\xd4\xde\x23\x03\xed\xd1\xe8\xf2\x86\x02\x47\x65\x32\x50\x46\ +\x12\xcd\x3d\x94\x7a\x6a\x08\x37\x66\x8c\x34\x64\xc4\x30\x32\xf7\ +\x39\x5c\x9a\x5e\x0e\x7a\xc9\x92\x3f\xb8\x8d\x00\x62\xcd\x11\x96\ +\xd2\xd9\xc3\x4a\xc2\x05\x22\x16\xa4\x49\x5b\x00\x1a\x31\x41\x29\ +\x67\x96\xa8\xb3\x36\xf2\xcf\x24\xb5\x97\xac\xf4\x64\x15\x4b\x94\ +\xfb\xf3\xe6\xdc\x85\x04\xae\x91\xc6\xdf\xb3\x8a\x49\xc4\xa0\x2f\ +\x8e\xab\x98\x0c\xac\x45\x9b\x46\xc4\x49\x15\x43\xae\x40\xf0\x5b\ +\xcd\x07\x75\xcc\x01\x4f\x2b\xab\x69\xbf\x8e\x21\xfb\x48\xae\xe8\ +\x90\x05\x20\x2d\xa0\x6d\x43\xed\x1c\x16\x37\xc7\x99\x85\x42\x3a\ +\x7a\xa6\x8c\x11\xf7\xfd\x4e\x12\x21\x9b\xc4\x8a\x2c\xee\x0a\x5a\ +\x93\xc5\x28\xa7\x9a\x59\xf7\x28\xc0\xb0\x35\x43\x16\xbc\xbc\x88\ +\x21\xfd\x09\x8e\x73\xea\x0b\x8b\x18\x72\x24\x11\x42\xd1\x7e\x15\ +\xfb\x61\x1d\xdf\x6b\x90\xbe\xd7\xf5\xe8\x66\xc0\x77\xf4\x80\xc2\ +\x60\x50\x48\xe7\xab\x77\xf4\x3d\xa5\x0c\x81\xcb\x77\xbe\x47\xff\ +\x8f\x02\xe8\x7c\x0f\x4a\xa5\xad\x69\x7c\x0f\x97\x50\xa4\xbc\x57\ +\xfa\x1e\xa0\x62\xfc\x72\xe7\x6b\x0d\xca\xc3\xc9\x25\xdc\x55\x45\ +\xb0\x01\x7f\xb3\xf3\x71\x3f\x06\xee\xf3\x9e\xce\x57\x84\x9c\x38\ +\x9e\x07\x14\xe4\x88\xf6\x04\xad\xe3\x59\xc0\x18\xd8\xa8\x15\x03\ +\xc7\x83\xc0\x1b\x89\x9f\xea\x3b\x9e\x83\x14\x80\x0a\x50\x73\xe4\ +\x78\x34\x03\x00\x1c\x65\x03\xc7\xbb\x48\x32\xdc\x72\x29\x9e\xf5\ +\xbc\x01\x94\x14\xb3\x4d\x3f\x2d\x91\xc2\xad\x6b\xb2\x9d\xe7\x15\ +\xd7\x42\x73\xe7\x79\xe6\x88\x2c\x3a\xee\xcb\x3d\x0f\x06\x25\xe0\ +\x46\x45\x2e\xe4\xae\xd8\x8f\x23\xe3\x10\x2b\x7f\x78\xc7\xfb\xec\ +\xad\xae\xa7\x16\x24\x50\xe0\x68\x47\xae\x17\x84\x22\x42\x7f\x10\ +\xd7\x4b\x72\x86\x51\x3e\xe7\x7a\x4e\xff\x67\x09\x9f\x0a\x81\x04\ +\xa7\xd9\x7f\x21\xe1\xf3\x63\xe7\xa3\x4c\x13\x42\xb9\x3e\xed\x58\ +\x15\x0a\x8f\xa4\xb2\xf7\x95\x6c\xf7\xd1\x09\xad\x08\xd7\xac\xef\ +\x7b\xd7\xb2\x52\x10\x4f\x45\x07\xce\x47\xfb\x81\x05\x34\x1d\x76\ +\xfe\x02\x2d\x0e\xba\x05\xf5\xbc\xeb\x35\x55\x28\x14\xd2\xf9\x18\ +\xc4\xc2\x70\xd3\x34\xa9\x02\x5e\x83\x23\x9a\x4e\xc5\x32\x8d\xae\ +\x49\xbc\x26\xdd\x3b\x88\xa2\x85\x23\x97\xba\x5e\xa3\x9b\xd1\x48\ +\x67\x97\x04\xfd\x1f\xbf\xd4\x9f\x7e\xad\x78\x75\xb1\xa7\xe0\x79\ +\x5c\x4a\xd3\x77\x3e\xc8\x1f\x1a\x45\x34\x73\xff\xd7\xc5\xde\x39\ +\xd3\x90\x3f\x6c\xce\xa7\x6f\xce\xf9\x70\x3d\x4e\x46\x79\xdf\xf5\ +\x0c\x6d\x95\x72\xec\xfb\x1d\x73\xbe\x54\x9a\x51\xc1\x9b\x70\x77\ +\xff\xa5\xa7\x1b\x2f\x03\xa8\x56\x18\x25\x34\x1e\xe1\x43\x22\xd0\ +\xfb\x5e\xea\x7b\x57\x9c\x02\x1c\xd3\x7d\x8c\xef\x3e\x83\xdf\xdf\ +\x5d\xdd\xb8\x8f\xd2\x77\x57\xff\x01\x40\xf9\x03\x4b\ +\x00\x00\x0a\x6e\ \x00\ -\x00\x32\x47\x78\x9c\xe5\x5a\x59\x8f\xe3\x36\x12\x7e\xef\x5f\xc1\ -\x75\xbf\x64\xb0\x2d\x99\x87\x0e\x4a\x76\x77\x1e\x32\x08\x12\x20\ -\x79\xd9\x64\x13\x60\x5f\x06\xb2\x44\xdb\xdc\x96\x25\x83\xa2\xdb\ -\xf6\xfc\xfa\x2d\xea\x96\x6c\x27\x3d\xd3\x93\x60\xbc\x56\xa3\x61\ -\xb1\xaa\x78\x7d\x75\xb0\x48\x71\xfe\xed\x61\x93\xa2\x17\xa1\x0a\ -\x99\x67\x8f\x13\x62\xe3\x09\x12\x59\x9c\x27\x32\x5b\x3d\x4e\xfe\ -\xfd\xeb\xf7\x16\x9f\xa0\x42\x47\x59\x12\xa5\x79\x26\x1e\x27\x59\ -\x3e\xf9\xf6\xe9\x6e\xfe\x0f\xcb\x42\xdf\x29\x11\x69\x91\xa0\xbd\ -\xd4\x6b\xf4\x63\xf6\x5c\xc4\xd1\x56\xa0\x6f\xd6\x5a\x6f\xc3\xe9\ -\x74\xbf\xdf\xdb\xb2\x26\xda\xb9\x5a\x4d\xdf\x21\xcb\x7a\xba\xbb\ -\x9b\x17\x2f\xab\x3b\x84\x10\xf4\x9b\x15\x61\x12\x3f\x4e\xea\x0a\ -\xdb\x9d\x4a\x4b\xc1\x24\x9e\x8a\x54\x6c\x44\xa6\x8b\x29\xb1\xc9\ -\x74\xd2\x89\xc7\x9d\x78\x6c\x7a\x97\x2f\x22\xce\x37\x9b\x3c\x2b\ -\xca\x9a\x59\x71\xdf\x13\x56\xc9\xb2\x95\x36\xa3\xd9\xb3\x52\x88\ -\x04\x41\x30\xc5\x74\x4a\xa9\x05\x12\x56\x71\xcc\x74\x74\xb0\x86\ -\x55\x61\x8c\xe7\xaa\x52\x8c\xf1\x14\x78\x9d\xe4\xeb\xa4\xc2\x02\ -\x00\xdd\xc2\x7f\x2b\xde\x10\xec\x22\xdf\xa9\x58\x2c\xa1\x9e\xb0\ -\x33\xa1\xa7\xef\x7f\x7d\xdf\x32\x2d\x6c\x27\x3a\xe9\x35\xd3\xe0\ -\x39\xe8\x75\x00\x72\x16\x6d\x44\xb1\x8d\x62\x51\x4c\x1b\x7a\x59\ -\x7f\x2f\x13\xbd\x7e\x9c\x30\xc7\x26\x0c\x1e\xb7\x24\xae\x85\x5c\ -\xad\xf5\x98\x2a\x93\xc7\x09\x8c\x9e\x06\xbc\x2a\xf7\x8c\x83\x54\ -\x02\x75\xc3\x61\xcb\xc1\x76\x40\x6d\x82\x14\x71\x99\x5f\xc9\x34\ -\x53\x08\x93\x3c\x36\x63\x82\x26\xc5\x46\x46\x3b\x9d\x6f\x40\x6b\ -\x71\x9c\x46\x45\x21\x97\x32\x86\x42\x9e\x6d\xd3\xdd\x4a\x66\x1f\ -\xa0\x51\xad\x85\xfa\x20\x12\xa9\x3f\x6c\xf3\xf4\xb8\xca\x33\xbb\ -\xc1\xb1\xed\x54\x1c\xb6\xb9\xd2\xd6\x21\xd9\x02\x9a\x9e\x7f\x96\ -\x79\x6c\x98\x4f\xc0\x9d\x27\x62\x59\x18\xa9\x6a\x6a\xa6\x04\x73\ -\xf3\x27\x68\x5a\x72\xdb\x91\x9a\x61\x26\x2f\x52\xec\x3b\xd9\x45\ -\x54\x54\xf0\x21\xb4\x8d\x56\x60\x6a\x69\xae\x1e\x27\xf7\xcb\xf2\ -\xa9\x19\x8b\x5c\x25\x42\x35\x2c\xaf\x7c\x06\xac\x1c\xd4\x21\xf5\ -\xb1\x72\xae\xba\xed\x66\xbc\xa6\xd5\x96\x8f\xcf\xf3\x8b\x75\x94\ -\xe4\xfb\xc7\x09\x1d\x33\x3f\xe6\xf9\x06\x94\x67\x07\x6e\x80\x29\ -\x0e\xc6\xec\xf8\xf0\x38\xb1\x08\x61\x36\xc1\x7e\x3b\xa4\x8e\x0b\ -\x1d\x52\xd0\x1b\xa1\xe4\x0c\x73\xa7\x14\xb8\x9f\x95\x46\x47\x01\ -\xb3\x2a\x7f\x48\x2d\x54\xac\xf3\xfd\x4a\x19\x74\xb4\xda\x89\x71\ -\x4d\xc3\xb1\x16\x8b\xfc\x70\x9e\x0d\xd6\xb0\x33\x8e\x6d\xed\x32\ -\xa9\xc1\x79\xb6\x87\x7e\xab\x3b\x99\x88\xe2\x7c\xc5\xbd\xcc\x00\ -\x04\xab\x36\x63\xc2\x4e\xc7\x5c\x4b\x34\x36\xed\x63\x7e\x41\x02\ -\x86\x76\x82\x73\xcd\x3a\x5e\x66\x6d\xa2\x83\xdc\xc8\x8f\x02\xe6\ -\x4d\xc6\x22\x45\x16\x6d\xad\x55\x9a\x2f\xa2\xb4\x1e\xfd\x53\x29\ -\x31\x1f\xc0\x52\x55\x42\x48\x1f\x8d\x03\x1f\x8e\x86\x36\x69\x88\ -\x06\x4f\x43\x60\xbe\xe7\xb6\xc4\x5c\x49\xf0\x8b\xde\x78\x1b\xd2\ -\xb1\x4f\x32\xee\x0e\xd1\xfa\x50\x1a\x58\x69\x7e\xfe\x98\x77\xec\ -\xf3\x6a\xbb\x9f\x9e\x1a\x7e\x49\xdf\x08\x1d\x25\x91\x8e\x3a\x2f\ -\x68\x28\x34\x08\x70\x33\x33\x88\x9c\xe1\xbf\xde\x7f\xff\x54\x77\ -\x34\x8f\xe3\xf0\xf7\x5c\x3d\x37\xfd\x22\x64\x04\xa2\x45\xbe\x03\ -\x55\x4c\x9e\x5a\xf2\x3c\x89\x43\x88\x75\x10\x03\x9e\xe4\x06\x6c\ -\xdb\x84\xc9\x7f\x42\x6c\x9b\x4f\x3b\xc6\x40\xd8\x80\xd5\x35\x5a\ -\x35\xab\x44\x15\x34\xcf\xae\x1c\x49\xbc\x91\xa6\xd2\xf4\x17\x2d\ -\xd3\xf4\x47\xd3\x49\x3d\xe3\x5e\xa3\x52\xa7\xa2\x23\xce\xa7\xf5\ -\xe8\xeb\xb9\x4d\x7b\x93\x9b\x4f\x9b\xd9\x97\xa5\x55\x87\xca\xc0\ -\x29\x5a\x45\xa7\xd1\x42\x80\x11\xfc\x64\x98\xe8\x84\xbb\x52\xf9\ -\x6e\xbb\xc9\x13\x51\x57\x6f\xd0\x5c\x0d\xcc\x80\x61\x97\xb5\x1a\ -\xd4\x2a\xca\x0a\x83\x0c\xe8\x21\xd2\x4a\x1e\xbe\xc1\x36\xf7\x48\ -\xf9\x3c\x60\xf3\xd7\x15\x89\x0d\x31\x9b\x70\x97\x3e\x50\xdb\x77\ -\xcb\xe7\x5d\x0b\xfe\x5c\x89\x58\x77\x50\x9e\x6b\xd7\x77\x79\x10\ -\x70\x8f\x42\x9b\x9e\x4b\x70\x40\x29\x7b\x80\x35\xc8\xf7\x7d\x86\ -\x99\xe9\xce\xf6\x28\x04\x0c\x8f\x72\xd3\xef\xbb\x49\x4f\xdb\x95\ -\x85\xb9\x8c\x79\x2c\xe8\xd3\xc1\x2a\xa9\xed\x38\x9e\x47\x7c\xd2\ -\xa3\x83\xb8\x69\xd8\xc4\x2d\x0f\xfb\x3d\x86\x91\xf7\x6c\xcf\x63\ -\x1e\x77\x7b\xe4\xc6\xab\xb9\xcd\x21\xd8\xb9\xdc\xe9\xf1\x9a\x98\ -\xe0\xd8\x1e\xf7\xb9\xd7\xaf\x66\xe0\x34\xd3\x06\xcb\x0d\x2c\x6e\ -\xb1\x1e\xab\xd0\xc7\x14\xd4\xb0\x04\x23\x09\xef\x45\x10\x2d\x88\ -\x37\x33\x05\xab\x0e\xc7\x21\xa9\x8a\x6a\x97\xc2\xb2\xf2\x22\xb2\ -\x3c\x49\x66\x85\x56\xf9\xb3\x08\xef\x09\x4f\xbc\xe5\xb2\x2e\x56\ -\x41\x29\xc4\x4d\x11\xec\x4f\xa8\x14\x82\x85\x0e\x9d\x86\x96\x44\ -\x10\xc5\x95\x8a\x8e\x61\x06\x59\x54\x43\x6d\xbb\xea\x59\xe8\x2b\ -\xd4\x14\x50\x87\xb8\x5e\xe0\x83\x3e\x18\xa7\x98\xd0\xc0\x2d\xd5\ -\x64\x14\x46\x38\xe8\x06\x5e\x1d\xb0\x04\xe6\x9c\x57\x93\xcf\x5d\ -\x97\x72\x3e\x52\x13\x18\x0f\xc5\x40\x0f\x46\x6a\x0a\xec\x00\x33\ -\x16\x38\x23\x2d\x11\xd7\x76\x38\x0b\xf8\x19\x25\x01\x0b\x13\xcf\ -\x77\xd9\x19\x25\x11\xdb\x85\xe1\x72\x72\x59\x49\xfe\x15\x6a\x49\ -\x95\xab\xb7\x8b\x7d\x06\x66\x3e\xb6\x7f\xb0\x4b\x12\x78\x2e\xa3\ -\x43\x60\xa9\x6f\xfb\x26\xe9\x72\x86\xb8\xba\x36\x63\x5d\x2e\x36\ -\x04\xd6\xb1\x69\x19\xc3\x83\x53\x60\xcf\xb5\x36\x06\xd6\xe2\xb7\ -\x81\x2c\xfe\xdb\x10\xbd\x4e\x3c\x99\xcd\xb1\x03\xa1\xd2\x1d\xc1\ -\xc9\x6c\xd7\x65\xae\x1f\x78\x7f\x08\x27\xad\xf6\x0a\x03\x5c\xda\ -\x8d\x04\x3d\x83\x23\xb1\x4f\xe4\x87\x38\x5e\x03\x8a\xdb\x48\xaf\ -\x7b\xc3\x6c\x53\x27\x58\xcb\x4d\xb6\x01\x59\x6b\x7c\xe1\xe9\x4f\ -\xbb\xcd\xaf\xf3\x2c\x83\xe9\xe7\xca\x82\x4c\xfb\x25\xd2\x3b\x25\ -\x86\x38\x0f\x00\xea\x1b\x27\xd0\x7f\x46\xb0\xd2\x56\x26\xfd\x60\ -\xc1\x9e\x0c\xfd\x86\x30\x62\x14\x31\xc8\xf4\xd1\x1a\x19\x0a\x83\ -\x60\x5e\x3e\x3e\xaa\x04\x80\xfd\x13\x62\xae\x0d\x99\x41\x00\xf9\ -\x82\xc9\x03\x11\x75\x6c\xb7\x6a\x85\xf0\x5a\xa7\xe8\x05\x59\x9e\ -\xed\xb4\xb2\x35\x99\x95\xc5\x4a\x16\x1b\x19\x52\xf6\x54\xfe\x58\ -\xbd\xbe\x3e\xa2\x0d\xa2\x65\x3d\x8a\x7e\x30\xe3\xa9\x86\x09\xcd\ -\x51\x48\x02\x1e\x08\xe4\x0f\x55\xd7\xbf\x21\x12\xd8\xe5\x90\x1a\ -\x99\x07\x06\xeb\x9a\xa9\x54\xf7\xc3\xd0\x7f\x4e\xcd\xa2\xdc\x64\ -\x85\xf7\xb8\x7c\x66\xcb\x1c\xf6\x11\x25\x07\xd4\x00\x99\x63\x5a\ -\x51\x5e\x22\x25\xa3\x4c\x0f\x68\xfb\xd2\x3e\x07\x24\x50\xb6\xd0\ -\xf1\x7a\x48\x83\xfc\x3e\x84\x5c\x58\xee\x36\xb3\x54\x66\xa2\xde\ -\x4c\x0c\x64\x96\xd1\x46\xa6\xc7\xf0\x17\x58\x96\x67\x56\xa3\x50\ -\xab\xaa\xbe\x15\x71\xbb\xa7\xad\x24\xb4\x38\x68\x90\x4a\x60\xcb\ -\x03\xa6\x58\x96\xa2\x54\xae\xb2\xb0\xd0\x91\xd2\x15\x21\x81\x7d\ -\xa5\xaa\xea\x94\x66\x38\x22\x5a\x66\x24\x15\x27\x15\x66\x7f\x6c\ -\xd5\x49\x7d\x33\xac\x3d\xec\x32\xc7\xb4\xb2\x8d\x36\x77\xa8\x6a\ -\xef\x95\xd4\x20\x62\x99\xfc\x33\x4c\x95\xa5\x17\xb3\x44\x1a\x23\ -\x33\x3d\xa7\x5a\xcd\xcc\x6e\xb7\x9c\x76\xb1\x96\x4b\x1d\x36\xc5\ -\x7a\xd8\x59\xbc\x06\xf0\xab\x71\x27\xb2\xd8\x42\x02\x1b\xca\xac\ -\x14\xc8\x5f\x84\x5a\xa6\xf9\x3e\x7c\x91\x85\x5c\xa4\x62\x56\xfe\ -\xca\xd4\x78\x51\x43\xaa\x5c\xba\x76\xd1\xd7\xba\x74\xdf\x2d\x2b\ -\x7f\x06\x93\xf4\x5d\x48\x79\x38\x9b\x6d\x22\xf5\x2c\x54\x25\x23\ -\xb2\x08\x3a\xb1\x16\x51\xfc\x6c\x72\xec\x2c\x09\xa3\x18\x76\x9a\ -\xbb\x34\xd2\xe2\xb2\x1b\x7f\x9a\x3f\x9a\xba\x2c\xc0\xce\xd0\x1b\ -\xc1\xe2\xeb\x00\x07\x7e\xe4\x57\x9b\x2c\x1f\xc5\x08\xdc\xe8\xc1\ -\xb8\xd2\xe8\xf7\x52\xac\xe3\x60\xd1\x1c\x8f\x81\x69\x22\xdb\xb2\ -\xb2\xf8\x01\x12\xc4\xe6\x8e\xef\x52\xcc\xd9\xf6\xd0\x70\x8c\x36\ -\x60\x42\xe1\x62\xa7\x75\x9f\xf6\xdf\x5c\x66\x61\x19\x01\x3f\x21\ -\xc8\x7d\x16\x3a\xde\x09\x3a\xf5\x32\x3a\x44\xc7\x6a\x60\x39\x79\ -\xb9\x04\x10\xc6\x1e\x23\x27\x96\xf3\x47\x00\xb5\x0b\x95\xf3\x35\ -\x01\xe4\x58\xf4\xb2\x01\x19\x20\x6e\xd7\x74\x2c\x72\xd9\x78\x2a\ -\x64\x6e\xda\x6c\x4e\xe1\x31\x6b\x66\x9d\x07\x74\x4b\xf5\x2d\xdb\ -\xcf\x19\x88\xfc\xc6\xb7\x06\x10\xdd\xb6\x21\xf9\x63\x94\xac\xf6\ -\x74\xf0\xc1\x82\x0c\xec\xb6\x6d\x28\x18\xa3\xd3\x6c\x20\x59\x03\ -\xce\x6d\x5b\xcf\x09\x3e\xf8\x81\x72\x9b\xdf\xb6\xd1\x38\xe3\x3d\ -\x9a\x99\x7b\x09\xcb\x77\x80\x8f\xd9\x3e\x0d\x7f\x6e\xc1\x50\x4e\ -\x12\x9d\x6e\xbd\x6a\x17\xf6\xdb\xb6\x9a\x93\x6c\xb9\x5b\xae\xfa\ -\x08\x5d\x63\xbc\x99\x4f\x57\xf5\x4b\x1f\xab\xfe\x20\x7b\x9b\xbb\ -\x76\x4f\x7f\x61\x48\x9f\x3e\xa0\xcf\x39\xee\xb9\xeb\x34\xf1\x33\ -\xb8\x29\x36\xe7\x26\xf5\x97\xf1\xee\x4c\xba\xd1\x20\x0d\x7a\xe7\ -\x64\xaf\x35\x80\xf3\xe7\x46\x1d\x66\xd7\x09\x55\x0b\xd2\x43\xfb\ -\x86\x7e\x40\xf8\x1c\x64\xfc\xeb\x81\xcc\x1c\x5b\x79\x98\xba\xfc\ -\x6d\xf6\x3e\x40\xa2\x4b\xa3\xea\xd0\xcf\xcc\x69\x98\x79\x3d\x79\ -\x39\x41\x87\xf9\x3e\xb5\xf0\xab\xf1\xf9\x22\x36\x43\x7c\xd7\x21\ -\xae\xfb\xc5\x10\xe8\xe7\x4a\xe5\x62\x17\x83\x1f\x59\xf5\x21\xbb\ -\x7f\xe9\xfd\x14\x0a\xee\x5c\x3d\x10\xed\x61\xe7\x5b\x81\xb0\x5e\ -\xef\x33\x5f\x29\x14\xdd\xf9\xc6\x5b\xa1\x08\xae\x1e\x0a\xef\x4b\ -\x59\xc5\xd5\x3b\x08\xa3\x6f\xc6\x80\x5d\x3b\x06\xc4\x7b\x33\x06\ -\xaf\x4f\x42\xbe\xc6\x25\x73\xd3\x5f\x32\x99\xed\x34\xe7\xc3\xed\ -\x59\x0d\x64\x61\x17\xde\x2f\x2c\xa0\xbd\x5d\xc7\xb5\x03\xd2\x7d\ -\x96\x7b\x13\x20\xe4\xaa\x01\xe9\x27\x55\x84\xb6\x49\x55\xf9\x7a\ -\xf2\x72\x09\x82\xbf\x33\x50\xfc\xb5\x36\xe1\x57\x3e\xf2\x56\x27\ -\x71\xfe\x6f\x00\xe9\x9f\xea\xbe\x01\x90\xcf\xc8\x2c\xfa\x17\x2b\ -\x06\x9b\x6f\x8f\x72\x4f\xc4\xc3\xcd\xb7\xb9\xaa\x05\x20\x04\x0e\ -\xf9\xb3\x55\xa6\xf9\xbc\xf9\x05\x76\x67\xfd\x5b\x04\x2d\xb1\xb9\ -\x09\xde\xc5\xc9\x33\xb7\x37\xce\x5e\x26\x3d\x9e\x23\xaa\xfa\x86\ -\x0d\x66\xbd\x4b\x34\xc3\x5b\x26\x2d\x62\xb1\x54\x71\x2a\x46\x98\ -\x0d\x3f\xea\x7f\xc6\x97\xe5\x0e\xe2\x80\x57\x37\x11\x66\xcd\x21\ -\xc8\x72\x89\xf1\x58\x0f\xae\xe3\xe2\x00\x86\xd6\xfb\xea\x0c\x28\ -\x7e\x14\x2a\x1f\x68\xc6\xf1\x87\x9a\x81\x9d\xad\xe7\x31\x68\xdc\ -\xfb\x2b\x77\xd8\x86\x9a\x2f\x97\x85\xd0\x60\x0a\x9c\x51\x8e\x89\ -\xcb\x4f\x14\xfc\xfa\x4f\xdf\x67\x52\x86\xce\xf5\xcd\x05\xf1\xe6\ -\xa3\x6c\x17\x3a\xcd\xc5\xf0\x53\xaa\xea\x5f\xfc\x69\x6e\x10\xaf\ -\x9e\xee\xe6\xe6\x06\xef\xd3\xdd\xff\x00\x1d\x74\x75\x40\ -\x00\x00\x16\x48\ +\x00\x92\x59\x78\x9c\xed\x9d\x5b\x6f\xdb\x46\x16\xc7\xdf\xf3\x29\ +\xb8\xca\x4b\x83\x15\xa9\xb9\x5f\xe4\x4b\x1f\x5a\x14\x28\x90\x7d\ +\xd9\x76\xb1\xc0\xbe\x2c\x68\x91\xb2\xb9\xa1\x48\x81\xa4\x2c\x3b\ +\x9f\xbe\xff\x21\x45\x4a\x74\xdc\xdc\xd3\x95\x94\x11\x12\xc8\x3c\ +\x73\x1f\xce\xef\x9c\x33\x67\x26\xce\xe5\x8f\x0f\xab\x3c\xb8\x4f\ +\xab\x3a\x2b\x8b\xab\x09\x8d\xc8\x24\x48\x8b\x45\x99\x64\xc5\xed\ +\xd5\xe4\x5f\xbf\xff\x12\x9a\x49\x50\x37\x71\x91\xc4\x79\x59\xa4\ +\x57\x93\xa2\x9c\xfc\x78\xfd\xe2\xf2\x6f\x61\x18\xfc\x54\xa5\x71\ +\x93\x26\xc1\x36\x6b\xee\x82\x5f\x8b\x37\xf5\x22\x5e\xa7\xc1\x0f\ +\x77\x4d\xb3\x9e\xcf\x66\xdb\xed\x36\xca\x76\xc2\xa8\xac\x6e\x67\ +\xaf\x82\x30\xbc\x7e\xf1\xe2\xb2\xbe\xbf\x7d\x11\x04\x01\xda\x2d\ +\xea\x79\xb2\xb8\x9a\xec\x0a\xac\x37\x55\xde\x66\x4c\x16\xb3\x34\ +\x4f\x57\x69\xd1\xd4\x33\x1a\xd1\xd9\x64\x9f\x7d\xb1\xcf\xbe\x70\ +\xad\x67\xf7\xe9\xa2\x5c\xad\xca\xa2\x6e\x4b\x16\xf5\xcb\x83\xcc\ +\x55\xb2\x1c\x72\xbb\xde\x6c\x79\x9b\x89\x5a\x6b\x67\x84\xcd\x18\ +\x0b\x91\x23\xac\x1f\x8b\x26\x7e\x08\xc7\x45\xd1\xc7\xe7\x8a\x32\ +\x42\xc8\x0c\x69\xfb\x9c\x1f\x97\x6b\x5e\x63\x42\xd7\xf8\x3b\x64\ +\xef\x05\x51\x5d\x6e\xaa\x45\xba\x44\xb9\x34\x2a\xd2\x66\xf6\xf3\ +\xef\x3f\x0f\x89\x21\x89\x92\x26\x39\xa8\xa6\x9f\xcf\x51\xab\xa3\ +\x49\x2e\xe2\x55\x5a\xaf\xe3\x45\x5a\xcf\x7a\x79\x5b\x7e\x9b\x25\ +\xcd\xdd\xd5\x84\x8b\x88\x72\x7c\x64\x2b\xbc\x4b\xb3\xdb\xbb\xe6\ +\xa9\x34\x4b\xae\x26\xe8\x3d\xb3\xa6\x7b\x3e\x58\x1c\xb4\xcb\xb0\ +\xab\x78\x3e\xa4\x90\xc8\xb2\x88\x06\x15\x95\x5c\x77\x79\xfa\x21\ +\xcc\x93\x72\xe1\xfa\x84\x2a\xd3\x55\x16\x6f\x9a\x72\x85\xb7\xb6\ +\x58\xe4\x71\x5d\x67\xcb\x6c\x81\x87\xb2\x58\xe7\x9b\xdb\xac\xf8\ +\xef\x4d\xdc\x2c\xee\xa2\x7e\xe2\x86\x56\xd2\x87\x75\x59\x35\xe1\ +\x43\xb2\xc6\xf4\x29\xfd\x6c\xe2\x63\x9f\x78\x8d\xd4\xcb\x24\x5d\ +\xd6\x2e\x57\x37\x16\xf7\x84\xc1\xe8\x49\x30\x6b\x53\x87\xae\xb9\ +\x7e\x25\xf7\x59\xba\xdd\xe7\xbd\x89\xeb\x6e\xbe\x82\x60\x1d\xdf\ +\x62\x6d\xe5\x65\x75\x35\x79\xb9\x6c\x3f\xbb\x84\x9b\xb2\x4a\xd2\ +\xaa\x4f\x52\xed\x67\x94\x54\x62\xfe\xb3\xe6\xb1\xa3\x69\x57\x77\ +\xdf\x5f\x57\xeb\x90\x4e\x9e\x4f\xaf\xef\xe2\xa4\xdc\x5e\x4d\xd8\ +\xd3\xc4\xb7\x65\xb9\xba\x9a\xe8\xc8\x52\x43\x04\x35\x4f\x93\x17\ +\x0f\x57\x93\x10\xef\x52\x2b\xc2\x38\x7f\x27\x15\x0d\x32\x1e\x51\ +\x2d\xfa\x17\x7d\x98\xb8\xa9\x2a\xf0\x16\xe6\xf1\x63\x8a\x51\xb5\ +\x5f\x74\x97\xa9\xbe\x2b\xb7\xb7\x95\x9b\x9d\xa6\xda\xa4\x4f\x4b\ +\xba\x94\xf0\xe6\xa6\x7c\x78\x3e\x19\xaf\x7f\xe3\x48\x0e\x37\x45\ +\xd6\x80\x96\xf5\xc3\x61\xad\x9b\x2c\x49\xeb\xe7\x0b\x6e\xb3\x02\ +\x93\x10\xee\xd6\x2d\xe5\xc3\x1c\x3f\xcd\xd1\x2f\x62\x4d\xde\x99\ +\x90\x5d\x0e\x74\xed\x9d\x79\xde\x25\x3d\xfe\x79\xd2\x2a\x7e\xc8\ +\x56\xd9\xdb\x14\xe3\xa6\x4f\xb3\xd4\x45\xbc\x0e\x6f\xf3\xf2\x26\ +\xce\x77\xbd\xbf\x6e\x73\x5c\x8e\xa6\xa5\x2b\x14\x04\xcd\xa3\x23\ +\xf6\xe1\xd1\xc9\x26\xbd\xd0\xcd\xa7\x13\x70\xad\xe4\x20\x2c\xab\ +\x0c\x20\x1c\xf4\xb7\x17\x3d\x1e\x8a\x1c\xdf\x50\xcf\x0f\xed\x02\ +\x6b\x97\x9f\x7e\x9a\xf6\x78\x98\xb6\x5b\xf7\xb3\x77\x17\x7e\x2b\ +\x5f\xa5\x4d\x9c\xc4\x4d\xbc\xa7\xa0\x97\x30\x6b\x49\x3f\x32\xa8\ +\xca\xf9\x3f\x7f\xfe\xe5\x7a\xd7\xd0\xe5\x62\x31\xff\x77\x59\xbd\ +\xe9\xdb\x0d\x02\x97\x21\xbe\x29\x37\x78\x15\x93\xeb\x41\x7c\x99\ +\x2c\xe6\x50\x6e\x80\xfe\x3a\x5b\x61\x6d\x3b\xbd\xf8\x77\x28\xb3\ +\xcb\xd9\x3e\x61\x94\xd9\x4d\xd6\xbe\xd2\xae\xda\x2a\xed\xb4\xe4\ +\xb3\xa6\x22\x59\xac\x32\x57\x68\xf6\x5b\x93\xe5\xf9\xaf\xae\x91\ +\xdd\x88\x0f\x2a\xcd\x9a\x3c\xdd\x0b\x2f\x67\xbb\xde\xef\xc6\x36\ +\x3b\x18\xdc\xe5\xac\x1f\x7d\xfb\x74\xbb\x9f\x95\x11\x14\xc3\x8b\ +\xce\xe3\x9b\x14\x8b\xe0\xb5\x4b\x0c\xde\x49\xbd\xad\xca\xcd\x7a\ +\x55\x26\xe9\xae\xf8\x30\x9b\xe9\xa2\x19\x5e\x59\xf3\x98\x23\xbd\ +\x55\x28\xf3\x97\xa4\xfd\x5c\x24\x59\xbd\x46\x09\x68\xfc\x3c\x2b\ +\xd2\x8b\x12\xaa\x76\x99\x97\xdb\xf9\x7d\x56\x67\x37\x79\x7a\xd1\ +\x7e\x67\x39\x46\x3e\x88\x96\x18\xfe\x7c\xa7\xaa\xda\x87\x70\xa7\ +\x68\xe6\xb4\x7b\xac\x36\x79\x3a\x2f\xca\xe2\x2d\x54\xd4\x45\xdd\ +\x54\xe5\x9b\x74\x68\xaf\x7b\xec\x70\x9b\x0f\x8f\xae\x6d\x8c\x63\ +\x7e\xb3\x69\x9a\x43\xd9\xff\xca\xac\x98\x63\xda\xd3\xaa\x97\xb6\ +\x0f\x39\x80\x69\xe6\xa2\x97\x25\x31\x34\x59\x55\x61\x14\x68\x34\ +\x3d\x94\x96\xcb\x65\x9d\x36\x73\x16\x19\xce\x0c\xa1\xd2\xf4\x89\ +\xfb\x1e\xaf\xe2\xea\x4d\x5a\x75\x25\xd3\x22\xc6\x00\xc3\x9b\x78\ +\xf1\xc6\x4d\x68\x91\xcc\xe3\x05\xd4\xca\x26\x87\xfb\x31\x02\xca\ +\x4d\xab\x20\x4a\x0c\xc2\xde\xec\xe9\xc8\xd9\x37\xb6\x4f\x18\x4c\ +\x9f\x89\x60\xb3\x14\x67\x43\x8a\x53\xa2\x94\xd2\xc8\xba\xcf\x20\ +\x05\x50\xdc\x46\x62\x0c\x5b\x05\xa9\x8a\x94\xe6\xd4\x30\x39\x2c\ +\xba\x7e\xcd\xec\x18\xb7\x74\x5f\x77\x53\xc5\x45\xed\x56\x3d\x18\ +\x8b\x9b\x2a\x7b\xf8\x01\x26\x5e\x68\xc6\x85\x31\x6a\x1a\xd2\x88\ +\x09\xc3\x30\x25\x53\x1a\x71\x22\x09\xa1\x62\x4a\x22\x6e\x08\x23\ +\x5c\xf3\xa9\x88\x8c\x45\x06\x21\xa7\x9c\x47\xc6\x70\x6a\x5f\x0d\ +\xa4\xed\x1b\x1d\x16\x54\xb7\x1e\xba\xf7\x3b\xd9\xa7\xb6\x9d\xe2\ +\x96\xf1\x50\x1d\x48\xdf\xed\x99\xb3\xe9\x9c\x12\x46\xd1\x05\xd3\ +\x1a\x76\x65\xa7\xe8\x2e\x27\x5a\x68\xce\x9d\x58\x08\x4d\xf0\xc7\ +\x4c\x75\xa4\xa5\xe5\x4c\x99\x69\xc8\x22\x29\x19\xb5\x8a\xbf\x3a\ +\xd4\x02\xeb\xb8\xb9\x3b\xa4\xfa\xd9\x35\xbf\x2c\x61\x27\xda\x14\ +\xbc\x76\x68\x86\xbc\x93\xdc\xc7\x55\x16\x17\xcd\x48\xb6\x6d\x5f\ +\xdf\x48\x84\x15\x94\xc2\x7f\x18\xcb\xa0\xbf\xe7\xd0\x75\xd9\x66\ +\x75\xe1\xd6\xed\xce\x58\x8c\xf2\x2c\xe3\x55\x96\x3f\xce\x7f\xc3\ +\xf8\x2f\xc2\x1e\xdc\xb0\x2b\xbe\x4e\x17\x83\x93\xd2\xe5\x68\xd2\ +\x87\x06\xb9\x12\x98\x34\x60\xd2\x3e\xc5\x79\x76\x5b\xcc\xe1\x23\ +\x57\x4d\x27\x48\xe0\x37\x54\x5d\x99\x76\xf9\x3e\x11\xb6\x04\x75\ +\x29\x79\xda\x00\x9b\x70\xa7\xb4\xfb\x6e\x6d\xe1\x45\x3c\x95\xb5\ +\x75\x0c\x2f\xa9\x2b\xbd\xad\xb2\x06\x59\x42\xa7\x5f\xe6\x79\x15\ +\x36\x37\x50\x1b\x0e\x01\xd7\x72\xde\x54\x17\xce\x9b\x69\x87\x5d\ +\xdf\x65\xcb\x66\xde\x3f\xee\xba\x5d\x2c\xee\x30\xf9\x5d\xbf\x3f\ +\x5b\xdd\xf4\xaf\xee\x23\xd5\xcd\xa1\x22\xe8\x74\x8d\x8c\xa4\x35\ +\x16\x6c\xb2\x4f\x47\xde\x7d\x9c\xb9\x0a\x98\x00\xc5\xee\x33\xa5\ +\xba\x33\x7b\x3a\x58\x04\x58\xac\xd4\x58\x6d\xa7\xf0\x4d\x09\xa5\ +\x26\x00\x60\x58\x99\x10\x88\x88\x30\x03\xbc\x03\x2c\x57\xc3\xb4\ +\x12\x62\x2a\x23\x0e\x90\x6d\x90\x07\x3c\x92\x4c\x70\xe1\x72\x71\ +\x2e\x14\x63\xa8\x8a\x45\xda\x58\xca\xdd\xf2\x66\xc6\x58\x19\xa0\ +\x41\xa9\x08\x01\xb4\x32\x52\x80\x40\x68\x88\x8c\x21\x12\x8c\x58\ +\xb4\x62\x98\x08\xde\x8e\x3a\xea\xb8\x73\x18\x70\xc2\x54\x28\xf4\ +\x38\x6d\xf0\xc3\xca\x02\x1a\xb7\x29\xab\x10\x1e\xd9\x7d\xdc\x6c\ +\xaa\xd4\x59\xfe\x91\x3d\xf3\x2c\x79\x96\xbe\x25\x4b\xb0\x42\x8c\ +\x4b\x02\x96\x60\x02\xa8\x84\x71\x04\x00\x34\xd2\x82\x49\xd8\x23\ +\xea\x98\xe2\xda\x02\x09\xcb\xa5\xa4\x53\x1e\x11\xa2\xad\x56\xe0\ +\x86\x13\x6b\x38\x48\x22\x46\x30\xae\x81\x12\x3a\x44\x98\xa0\xca\ +\xd9\x0d\xab\x14\xe5\x32\xf8\x29\x60\x36\xe2\x56\x4a\xad\xa7\xb0\ +\xb2\xb0\x77\xe8\x72\xc0\x60\xa0\x15\x51\xdc\x4e\x4d\x04\x33\x0d\ +\xa2\xa4\x83\x1a\xa6\x4f\x0a\x35\x55\x11\xb3\x44\x58\x13\xfc\xe7\ +\xcf\x89\x52\xa1\xf1\x48\x79\xa4\x8e\x12\x29\x0a\x77\xad\x35\x4a\ +\x0e\x29\xd5\x9b\x27\xb8\x98\x42\xcb\x0e\x0e\x43\x29\xbc\x27\x98\ +\x10\xca\xe0\xe1\xf1\x4e\x64\x94\xb5\x22\x50\x9d\x41\x93\xe0\x8a\ +\xa9\x34\x14\xc1\xeb\x80\xc1\xa0\x31\x45\x8c\x93\x49\x18\x32\xb8\ +\x87\xe0\x8a\x9a\x08\xbe\x34\xb1\x6c\xea\xaa\xd1\x46\x51\x1b\x50\ +\xc0\x28\xb8\x55\xad\x8c\xc0\x16\x1a\x13\x80\x3a\x4d\xe1\xac\x69\ +\x94\x16\x56\x33\x01\x73\xf6\x5e\xb0\x78\x68\x99\x67\xcb\xb3\x75\ +\x9c\x6c\xd9\xc8\x55\x01\x77\x8d\xf1\x08\x6e\x9b\x96\xce\x5f\x0b\ +\x1d\x5c\x9c\xca\x76\xf3\xc2\xa8\x52\x70\xf5\x40\x80\x8b\x9b\x29\ +\x27\x12\x04\x9b\xb6\x20\x6c\xd9\x92\x86\x41\x44\xb0\x9d\x62\x30\ +\x59\xf0\xf0\xa8\x82\x03\xe8\xd8\xa2\xc2\x62\x0f\x84\xea\x60\xda\ +\xd0\x04\x57\x6e\x5f\x86\x2d\xab\xb4\x01\xdc\x4c\x63\x15\xa5\xad\ +\x84\x62\xa3\x14\x00\x6d\x41\x99\xe1\xda\xc1\x0b\xab\x47\xe8\xae\ +\x36\x03\xe7\xd3\xb9\x89\x30\xa5\x86\x99\xf7\x7a\x85\x21\xf7\x9c\ +\x79\xce\x8e\x92\x33\x1b\xc1\x2d\x53\xc2\x82\x01\x50\xa3\xa9\xd5\ +\x06\x60\xb8\xe8\x05\x30\x10\xed\xc6\x1f\xbe\x9a\xb3\x25\xce\x55\ +\x14\x42\x49\x31\x0d\x61\xf7\x18\x37\xda\x6d\xa9\x84\xe4\x14\xee\ +\x23\x28\xb4\x8c\x59\xa6\x61\xc6\x40\x2e\xe1\x82\x52\xe7\xe0\x61\ +\xf3\x45\xe1\x45\xc2\x8c\x29\x57\x06\x9b\x2b\xe7\x0a\xa2\x49\x03\ +\x1a\x61\x17\x9d\xef\x08\xff\xd3\xb9\x8c\xcc\xe0\x27\x83\x3a\xb5\ +\xe5\x4c\x4b\x74\x48\xe0\x47\x63\x89\xfe\xa0\x19\x0b\xfd\xb6\xcb\ +\xf3\x75\x8c\x7c\xfd\x23\xa0\x0c\x6b\xdc\x32\x6a\x9c\x1d\x23\x54\ +\x59\x21\x9c\x4f\xe7\x6c\x15\xf6\x52\x6c\x8a\x6d\x99\xd1\x56\x60\ +\xaf\x64\xd1\x9c\x62\x42\xd0\x29\x83\xa1\xb1\x0a\x62\xc8\x28\xfc\ +\x41\xee\x2c\x94\x81\x29\x63\x12\xd0\xbc\x06\x22\x0a\xfd\xa2\x92\ +\x4d\x69\x9b\x41\x51\x54\x29\x60\x25\xe1\x11\x4a\x3d\x85\x1b\xa9\ +\x2c\x25\x52\x82\x39\x09\x5b\x66\xc1\x17\x93\x91\x36\x06\xfe\xa4\ +\x8d\xd4\x14\xbb\x32\xdd\x86\x55\x3e\x0c\x16\x0f\x3f\xd7\x45\xbc\ +\x9c\xdd\xbe\x27\x88\xf9\x95\xa2\xe2\x84\xc8\x65\xa2\x3f\xf6\x1d\ +\xef\xde\xab\xdb\x9d\x62\x7b\xca\x95\xfc\x8b\xe2\xe1\xe4\x2b\x84\ +\xc1\xbf\x34\x94\xab\xb0\x3c\xa0\xa0\x15\x75\xda\x5b\x50\x4e\x94\ +\xe6\xaf\x9e\x0b\x1f\xfb\xf0\xee\x77\xa1\x1b\x3f\x85\x9b\x67\x74\ +\x23\x8d\xa4\xc1\x26\x97\x33\x7a\x52\x0c\x9d\x68\x5c\xd9\x7b\x37\ +\x9e\x60\x4f\xf0\x88\xe0\x13\x8d\x66\x7b\x92\x3d\xc9\x9e\xe4\x43\ +\x92\x4f\x3d\x88\xee\x89\xf6\x44\x7b\xa2\x47\x44\x9f\x53\xe8\xde\ +\xe3\xed\xf1\xf6\x78\x1f\xe2\x7d\x16\x27\x06\x1e\x6b\x8f\xb5\xc7\ +\x7a\x8f\xf5\xe9\x1f\x54\x7c\x93\x63\x8a\x0f\xdf\xb5\x1e\x79\x08\ +\x5f\x16\xa2\x37\x58\x3f\xf8\xc9\x5a\xa7\x1b\xa9\x24\x84\x1b\xe6\ +\x6f\x5b\x7f\x1f\xaa\xe7\xff\x7f\x54\x79\x7a\x51\xf1\x50\xe8\x90\ +\x7a\x43\xee\x69\x3a\x4e\x9a\x4e\x34\x42\x1d\x9a\xcf\x3e\xf2\xf7\ +\x50\x79\xa8\xfc\x8d\xeb\x0f\xdc\xb8\x0e\xa5\xa7\xcb\xd3\x75\x9c\ +\x74\x9d\x53\xe0\x36\xe4\xfe\xb4\xd5\x93\x76\xa4\xa4\x9d\x45\x0c\ +\x35\xd4\xfe\xf4\xd3\x13\x76\x94\x84\x9d\x7e\x38\x33\x64\xdf\x28\ +\xa4\xf9\x95\x6e\x5e\x53\x29\xa8\x56\xfe\xe6\xf5\xc7\xfc\x12\x0d\ +\x26\x39\x74\x39\x73\x8e\x8b\xdb\x56\x10\x4b\x9f\xbd\x79\x8d\x9d\ +\x81\xd7\x8f\xe7\xaf\x1f\x3f\x8d\x9c\x33\x3b\x67\x3a\xc1\x28\xb3\ +\xf7\x71\x3c\xc3\x9e\xe1\x31\xc3\xa7\x1a\xdb\xf6\xff\x4e\xd4\xb3\ +\xec\x59\x1e\xb1\x7c\xf2\x21\x75\xcf\xb4\x67\xda\x33\x3d\x66\xfa\ +\xac\x02\xf9\xfe\x0e\xb6\x07\xdc\x03\x3e\x02\xfc\x3c\xce\x0f\xfc\ +\x49\xb8\x07\xdb\x83\x7d\x00\xf6\x19\x1c\x5b\x7c\x2e\xd3\x5f\x7c\ +\x0f\x9b\x7e\xb5\x80\x3d\x75\xf3\xe9\xe6\xce\x39\x28\x56\x71\x0a\ +\x67\xc6\xdf\xc3\xfe\x1e\x94\xcf\x31\x1c\x5d\x9e\x60\x84\xdc\xdd\ +\xc3\xf6\x17\xb1\x3d\x4e\x47\x8a\xd3\xa9\x06\xab\x4d\x48\x3c\x54\ +\x1e\xaa\xa3\x84\xea\xe4\xa3\xc6\x96\xf9\xeb\xa1\x9e\xae\x63\xa5\ +\xeb\xac\xe2\xb7\xfe\x88\xc6\x93\x76\xac\xa4\x9d\x47\x20\xd5\xff\ +\x3b\x58\x4f\xd8\x71\x12\x76\x06\x11\x4d\xf6\xd9\x70\xfd\x45\xbf\ +\x02\x9b\x2c\xf1\x82\xfc\x45\xec\x0f\xc6\x75\xb1\x54\x04\xd3\x8c\ +\xc8\x29\x7c\x24\x83\x32\xf0\x84\x9e\xbf\x88\xad\xfc\x4d\xec\xef\ +\x44\x41\x7e\x02\x3a\x67\x76\xd6\x74\x82\x71\x66\xff\x3f\xc1\x79\ +\x86\x3d\xc3\x63\x86\x4f\x35\xb8\xed\x2f\x75\x79\x96\x3d\xcb\x23\ +\x96\x4f\x3e\xa6\xee\x03\xea\x9e\x69\xcf\xf4\x98\xe9\xb3\x8a\xe4\ +\xfb\x5f\x0c\xe6\x01\xf7\x80\x8f\x00\x3f\x93\x03\x04\xef\x8e\x7b\ +\xb2\x3d\xd9\x07\x64\x9f\xc1\xc1\x85\xfc\x5c\xa8\x87\x73\x8b\xdd\ +\x0f\xed\xd7\xe5\xac\xbe\xc7\xd7\x1f\x02\xa0\x5e\xaf\ +\x00\x00\x06\x60\ +\x00\ +\x00\x4e\xb7\x78\x9c\xe5\x5c\x5b\x8f\xa3\x36\x14\x7e\x9f\x5f\x41\ +\x99\x97\x5d\xb5\x36\xd7\x24\xc0\x26\xd9\x87\x8e\x56\x5a\xa9\x4f\ +\xed\x56\x7d\x5c\x11\x70\x12\x34\x80\x11\x90\x49\xb2\xbf\xbe\xc7\ +\xe6\x92\x90\x30\x52\x2b\x1b\x89\x2c\x8c\x46\x33\xf8\x1c\x83\xfd\ +\xf9\x3b\xf6\xb9\x64\x66\xf9\xf9\x94\xc4\xca\x1b\xc9\x8b\x88\xa6\ +\x2b\xd5\xc0\xba\xaa\x90\x34\xa0\x61\x94\xee\x56\xea\xdf\xdf\xbe\ +\x20\x47\x55\x8a\xd2\x4f\x43\x3f\xa6\x29\x59\xa9\x29\x55\x3f\xaf\ +\x9f\x96\xbf\x20\xa4\xfc\x9e\x13\xbf\x24\xa1\x72\x8c\xca\xbd\xf2\ +\x35\x7d\x2d\x02\x3f\x23\xca\x87\x7d\x59\x66\x9e\xa6\x1d\x8f\x47\ +\x1c\xd5\x8d\x98\xe6\x3b\xed\xa3\x82\xd0\xfa\xe9\x69\x59\xbc\xed\ +\x9e\x14\x45\x81\xf7\xa6\x85\x17\x06\x2b\xb5\xee\x90\x1d\xf2\x98\ +\x2b\x86\x81\x46\x62\x92\x90\xb4\x2c\x34\x03\x1b\x9a\x7a\x51\x0f\ +\x2e\xea\x01\x7b\x7b\xf4\x46\x02\x9a\x24\x34\x2d\x78\xcf\xb4\x78\ +\xbe\x52\xce\xc3\x6d\xab\xcd\x46\x73\xb4\xb8\x92\xe1\xba\xae\xa6\ +\x9b\x9a\x69\x22\xd0\x40\xc5\x39\x2d\xfd\x13\xea\x76\x85\x31\xf6\ +\x75\x35\x75\x5d\xd7\x40\x76\xd1\xfc\x6f\x5a\x5e\x01\x80\x66\xf0\ +\xdd\xaa\x37\x0d\xb8\xa0\x87\x3c\x20\x5b\xe8\x47\x70\x4a\x4a\xed\ +\xe5\xdb\x4b\x2b\x44\x3a\x0e\xcb\xf0\xea\x31\x0d\x9e\x9d\xb7\x76\ +\x40\x4e\xfd\x84\x14\x99\x1f\x90\x42\x6b\xda\x79\xff\x63\x14\x96\ +\xfb\x95\x6a\xd9\xd8\xb0\xe0\x9a\xf1\xc6\x3d\x89\x76\xfb\xf2\xb6\ +\x35\x0a\x57\x2a\x8c\xde\x74\x9d\xea\xfe\x8a\x1c\x46\xa5\x50\x3f\ +\xd8\x6b\x25\x3a\x76\x4d\x6c\x2b\x1f\x66\xa1\x3f\x77\xdc\xc0\x32\ +\xac\xdf\x14\x53\x37\x5c\xa4\x1b\xc8\xb0\x3f\xf2\x5e\xcd\xa4\xbc\ +\x90\x06\x6c\x94\xf0\x12\x92\x44\xfe\xa1\xa4\x09\xac\x63\x10\xc4\ +\x7e\x51\x44\xdb\x28\x80\x1b\x9a\x66\xf1\x61\x17\xa5\xdf\x53\x36\ +\xc0\x0d\xcd\xbf\x67\xd1\x89\xc4\x05\x6e\x40\x6d\x47\x40\x4e\x19\ +\xcd\x4b\x74\x0a\x33\x80\x76\xbe\xe8\x15\x9e\x1b\xe1\x1a\xa4\xcb\ +\x90\x6c\x0b\xa6\x55\xcd\x93\xdd\xc1\x44\x17\xaa\xa2\x71\x69\x3b\ +\x48\x36\xc2\xf0\x2d\x22\xc7\x8b\xee\xc6\x2f\x2a\x2c\x15\x25\xf3\ +\x77\xc0\xbb\x98\xe6\x2b\xf5\x79\xcb\xaf\x5a\x00\x63\x0d\x49\xde\ +\x88\xe6\xfc\xea\x88\x28\xac\x4d\x54\x9e\x2b\x4b\xab\x9f\xdd\x8c\ +\x97\x3d\xb5\x95\xeb\xfd\xf2\x62\xef\x87\xf4\xb8\x52\xcd\x5b\xe1\ +\x0f\x4a\x93\x95\x3a\xc3\x33\xd7\x71\x75\xe3\x56\x1a\x9c\x56\x2a\ +\x2c\xb2\x6e\x3a\xa6\xeb\xde\x09\xd9\x70\x0c\xec\xd8\xf6\xdc\xb5\ +\xef\x84\x87\x3c\x07\x4b\x44\xb1\x7f\x26\x30\x27\xfe\xa3\x79\x7c\ +\xb1\xa7\xc7\x5d\xce\xb0\x29\xf3\x03\xb9\xed\xc9\x24\x68\xb3\xa1\ +\xa7\x7e\x31\xd0\xe0\xc0\x6c\x1c\x1d\xd2\xa8\x04\x3b\xca\x4e\xd7\ +\x4f\x3d\x44\x21\x29\xfa\x3b\x16\xa9\x9f\xa1\x5d\x4c\x37\x7e\xdc\ +\xaf\x70\x8c\x52\xc0\x08\xd5\x94\x37\xac\x76\x09\x6e\x35\x1a\xfe\ +\x2f\xf4\xc5\x3b\x1a\x30\xf6\xbb\x65\xa8\x45\xe7\xf7\x45\x89\x7f\ +\x8a\x92\xe8\x07\x01\x60\x0c\xce\x3a\x60\x56\x07\x96\xaa\x9b\xa2\ +\x94\x67\x66\xcb\xa7\x33\x6b\x53\x9b\x46\x86\x27\x6b\x80\x95\x5a\ +\xb4\x8d\x34\x8f\xc0\x20\xae\x86\xd3\x34\x9d\xaf\x9b\x98\xe5\xc3\ +\xc6\x7d\xe2\xf4\xe2\xe4\x5b\xdc\xca\xce\xd7\xb2\x9a\xf5\xda\x3d\ +\xed\x79\x7b\x42\x4a\x3f\xf4\x4b\xff\x62\x03\x4d\x0b\x8c\x4d\x6f\ +\x66\x06\x9b\xa8\xf7\xe7\xcb\x97\x75\xfd\xa2\x65\x10\x78\xff\xd0\ +\xfc\xb5\x79\xaf\xa2\x30\x05\x7f\x43\x0f\x80\xb4\xba\x6e\x9b\x97\ +\x61\xe0\xc1\xb6\x07\xc6\xbf\x8e\x12\x60\x36\xdb\x31\x7f\x85\x6d\ +\x6e\xa9\x5d\x04\x1d\x65\x06\xd6\xe5\xa1\xd5\x63\x73\x52\xed\x9f\ +\xbd\x87\x48\x18\x24\x11\xeb\xa4\xfd\x55\x46\x71\xfc\x95\xbd\xa4\ +\x9e\xf1\xd5\x43\xa3\x32\x26\x6b\xfe\xce\xea\xd7\x66\x16\x5a\x3d\ +\x8d\x7a\x92\xda\xd5\x2c\x97\x5a\x03\x03\xbf\xdb\x5d\xe0\xe9\x58\ +\x47\xbb\xe2\xb1\xbf\x21\x40\xd5\x3f\x98\x50\xb9\x93\xee\x72\x7a\ +\xc8\x12\x1a\x92\xba\x7b\x0b\x2b\x09\xca\x76\xed\xca\x73\x0c\xf2\ +\x2d\x4c\xc3\x7b\x76\x74\xf6\xf5\x89\xdd\xa0\x7a\xbb\xf0\x8c\xea\ +\x36\x3f\xc4\xb0\xed\xbd\x91\x94\x86\xe1\xa7\xa2\xcc\xe9\x2b\xf1\ +\x9e\x75\x7e\xd5\xb7\x95\x55\x78\x3a\xb6\x2d\xd7\x66\x24\x68\xda\ +\x01\x2a\x92\xc7\x40\xdb\xd2\xb3\x9b\xb6\xd0\x87\xed\x26\xcf\xfd\ +\xb3\x97\xc2\xd9\xdf\xb4\xb6\xef\xec\x30\x96\x0d\x77\xe6\x58\x2e\ +\x32\xc0\x63\x68\x04\xb5\x09\xce\xb0\x65\x5d\xce\x17\x76\x35\x96\ +\x67\x63\x97\x4b\xec\x56\xc2\xb8\xab\xe3\x1b\xee\x02\x69\x2d\xec\ +\x74\xb6\x53\x58\xff\x8e\x35\xe4\x9c\xd8\x73\x9b\x5d\xf3\x76\x99\ +\xdf\x47\x71\x63\xb1\xaf\x31\xa3\x88\x8c\x21\x70\x44\xf7\x3b\x83\ +\x18\x90\xd5\x90\x46\x0d\xa4\x3b\x04\x90\x86\x85\x17\x5d\xcd\x9f\ +\x1e\x47\x03\xcd\x86\x40\xd2\xc1\x0e\x9f\x8b\x39\x1d\x24\x17\x43\ +\xe0\x68\x5a\x58\xd6\xee\xf8\x00\x10\x02\x19\x07\x61\xa3\xe1\xe0\ +\xa9\x1d\x34\xee\x30\x7c\xb4\x2c\x6c\xcb\x3c\x69\xc6\xef\xf8\x30\ +\x52\x22\x7d\x10\xdb\x76\xf0\x8c\xab\x4e\x82\x95\x82\x08\xea\x1d\ +\x16\x4a\x76\x1c\xc7\xce\x42\x41\xec\xee\xd5\xa7\xe8\x7c\xdb\x43\ +\xa0\x28\xdd\xf5\x1e\x39\x8c\xa2\x71\x60\xc7\x8c\x65\xbb\xdb\x63\ +\x37\x63\xe4\x88\xc2\xd7\xcb\x41\xd9\x30\x8e\x9c\x82\xba\xb0\x25\ +\x77\x48\x28\x3b\x52\x19\x3d\x09\x6d\x64\x0e\xc1\x42\xd9\x38\x8e\ +\x9d\x85\x96\x4c\x12\x4a\x0c\xf3\x46\xcf\xbf\xf9\x10\xec\x93\x08\ +\xe0\xd8\x89\x27\x1c\xd8\x75\xcf\x60\xc9\xa1\xf1\xe8\xe9\x67\x0f\ +\x43\xc0\xe9\xa5\x18\xc4\x93\xd9\xfd\x71\x89\xe4\x0c\xc3\xc8\x81\ +\x04\x6f\x46\x18\xc7\xee\x51\x22\x39\xab\xf0\x00\x06\x6d\x0a\x6f\ +\x89\xfd\x67\xca\xa4\xf2\x33\x15\x13\xe5\xfa\xd6\x53\xb4\x65\x61\ +\xef\xba\x83\xa0\xf4\xfc\xc2\xe8\xcd\xd9\x41\xb6\x28\x07\xcd\xf9\ +\xed\x59\xcc\xf3\x5d\x0b\x6b\x42\xd6\x5c\x65\xae\x45\xf7\xc5\x5e\ +\x24\x81\x93\x93\x09\x96\x59\x21\x45\x34\xf9\xdf\x0b\xa2\x31\xa1\ +\x88\xaf\xaa\xa1\x88\x56\xf6\x7a\x61\x74\x6e\xeb\x2a\x3f\x3d\x94\ +\x0b\xe1\x03\xa6\x17\x48\x73\x92\x85\xbd\x19\xd2\x45\xa3\xc1\x7e\ +\xeb\x9e\x96\xeb\x58\x17\x9c\x87\x61\x26\x38\x91\x5c\x73\x42\x67\ +\x0e\x2f\x39\x0b\xbb\xe2\xfd\x76\xee\xe0\x89\x94\x5b\x84\x3f\xff\ +\x30\xa8\xfb\x38\x72\xf0\xc4\xc3\x18\xd3\xc0\x37\x8d\x53\x74\xc2\ +\x6d\x64\x8a\xd6\xfc\x7a\x81\x94\xe8\x83\xd7\x98\x8c\x15\x43\x07\ +\x89\x56\x5a\x8c\xa1\x1c\xef\x6a\x14\xa3\x45\x8e\xe7\x68\x45\xc1\ +\xeb\x65\xdf\x74\x30\xe4\x29\x1d\x5b\xf8\xd3\xef\x43\xc6\x2c\x23\ +\x47\xb0\x4a\xd0\x0e\xb2\x09\x4e\x0b\x48\xdd\x92\xec\xd2\xc8\x0e\ +\xf9\x46\x8e\x9f\x81\xe6\xe2\x39\x88\x3e\x1a\xca\xc6\x71\xe4\x07\ +\xb2\x0e\x81\x9e\xdc\x0d\x51\x76\xb4\x3c\x7a\x22\xda\x40\x45\x4b\ +\xb4\xea\xd7\x7f\x32\x4f\x2e\xf1\xc0\xa2\x65\x57\x38\x45\xdb\x1b\ +\xac\x4c\x2b\xf1\x50\x55\xaf\x1c\xb9\xde\xf6\x74\xd2\x0d\x75\x21\ +\x5a\xb8\x98\xdf\x7f\xc4\xc8\x83\x71\xe4\x16\x5d\x57\xa1\xc5\xff\ +\x2a\x6d\xd0\x1c\xe2\x43\x80\x68\x22\x57\x34\xb9\x6d\x0c\x55\xf8\ +\x1b\x39\x80\x55\x19\x5a\x38\x07\x76\xc5\xb7\x29\x26\xbf\x78\x05\ +\x5a\xf8\xe3\x76\x5d\x10\xa7\xc5\x41\x66\xca\xa2\xbe\x76\x17\x3f\ +\x89\xa9\x9b\x07\xc0\x8f\xd7\x9d\x85\x8f\xe4\x2e\x82\x92\xb3\x0e\ +\x0f\x80\xe2\x42\xc2\x27\xec\xba\x18\xca\x0e\x99\x1f\x00\xc4\xba\ +\xda\x2c\xf9\x4c\x99\x5e\xbc\x57\x15\x9a\x85\xf3\xda\x37\x47\xf3\ +\xb4\xfc\xc3\xab\x1a\xb3\x70\x95\xf9\xc6\xb0\xff\x5f\xa0\xb2\xd4\ +\x76\xeb\xa7\x25\xfb\x37\x41\xeb\xa7\x7f\x01\x0e\x6d\x5f\xf1\ +\x00\x00\x0e\x5b\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -21919,1036 +14013,7113 @@ \x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ \x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ \x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ -\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ -\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ -\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ -\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ -\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ -\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ -\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ -\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ -\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ -\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ -\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ -\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ -\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ -\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ -\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ -\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ -\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ -\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ -\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x70\x72\x6f\x6a\x65\ -\x63\x74\x5f\x72\x61\x73\x74\x65\x72\x5f\x62\x61\x6e\x64\x73\x2e\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\ -\x20\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\ -\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ -\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ -\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\ -\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ -\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\ -\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ -\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\ -\x32\x37\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\ -\x22\x31\x31\x2e\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x78\x32\x3d\x22\x33\x2e\x31\x38\x31\x38\x31\x38\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\ -\x36\x33\x36\x33\x36\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ -\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ -\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\ -\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\ -\x2e\x33\x39\x31\x32\x33\x39\x35\x35\x2c\x30\x2c\x30\x2c\x30\x2e\ -\x33\x37\x30\x34\x39\x39\x31\x32\x2c\x38\x2e\x35\x38\x36\x36\x32\ -\x34\x36\x2c\x37\x2e\x30\x34\x34\x31\x31\x32\x31\x29\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ -\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ -\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ -\x36\x30\x32\x33\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ -\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\ -\x30\x66\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ -\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\ -\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ -\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ -\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ -\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\ -\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ -\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ -\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ -\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ -\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ -\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ -\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\ -\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ -\x78\x3d\x22\x2d\x38\x33\x2e\x39\x38\x35\x39\x33\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ -\x22\x33\x31\x2e\x30\x39\x38\x32\x39\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ -\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ -\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\ -\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\ -\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ -\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ -\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x73\ +\x65\x74\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\ +\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\ +\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ +\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\ +\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ +\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ +\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\ +\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\ +\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x37\ +\x2e\x38\x30\x34\x35\x32\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x2e\x32\x33\x34\ +\x31\x36\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\ +\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\ +\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\ +\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\ +\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ +\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ +\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ +\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ +\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ +\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ +\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ +\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ +\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\ +\x31\x63\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\ +\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x31\x2e\x30\x37\x31\x36\x32\x31\x37\x38\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ +\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\ +\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x38\x2e\x34\x32\x33\x33\x38\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x34\x2e\ +\x39\x35\x35\x38\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x35\x32\x2e\x30\x34\x36\x30\x38\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x3d\x22\x34\x34\x2e\x32\x34\x39\x31\x32\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\ +\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x32\x2e\x34\x39\x35\x36\x39\x38\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\ +\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x37\ +\x31\x38\x32\x31\x37\x33\x2c\x30\x2e\x34\x38\x39\x38\x32\x33\x33\ +\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\ +\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\ +\x2c\x30\x2c\x2d\x30\x2e\x38\x32\x34\x33\x35\x32\x37\x31\x2c\x30\ +\x2e\x35\x36\x36\x30\x37\x36\x35\x2c\x30\x2c\x30\x29\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x36\x35\x39\x39\ +\x38\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ +\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x32\x38\x2e\x34\x30\x32\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x37\x2e\x30\x32\x39\x30\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x31\x35\x2e\x38\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x2e\x34\x32\ +\x33\x33\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x32\ +\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ +\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x30\x2e\x39\x39\x36\x38\x33\x35\x38\x39\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ +\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x30\x30\x31\x31\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x39\x34\x34\x38\x30\x31\x37\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x38\x2e\x34\x32\x33\x33\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x31\x36\x2e\x37\x39\x32\x33\x35\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x35\x2e\x34\x30\x33\x30\x32\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x35\x2e\ +\x31\x38\x30\x37\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x34\x37\x34\x39\ +\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\ +\x2c\x2d\x30\x2e\x37\x37\x36\x34\x37\x36\x37\x35\x2c\x30\x2e\x36\ +\x33\x30\x31\x34\x35\x39\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x35\x32\x39\x36\x30\ +\x32\x38\x2c\x30\x2e\x36\x35\x38\x30\x36\x35\x39\x36\x2c\x30\x2c\ +\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\ +\x2e\x39\x34\x38\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x2e\x36\x34\x31\x33\x38\x37\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x36\x2e\ +\x39\x36\x33\x35\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x31\x37\x2e\x33\x31\x36\x38\x31\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x38\x2e\x34\x32\x33\x33\x38\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x39\x32\x34\x35\x34\x31\ +\x37\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x15\xfd\ +\x00\ +\x02\x17\xe5\x78\x9c\xed\x5d\xdb\x8e\xe3\x48\x72\x7d\x9f\xaf\x90\ +\x35\x30\xb0\x03\x37\x53\x79\xbf\xa8\xab\x7b\x1f\x76\xb1\xf0\x02\ +\xf6\x8b\xbd\xb6\x1f\x17\x2c\x89\x55\x2d\xb7\x24\x96\x29\xd5\x6d\ +\xbe\xc6\xdf\xe2\x2f\x73\x26\xa9\x2b\x45\x35\x66\x46\x8c\x8a\x1a\ +\x75\x68\xd0\x53\x12\x93\x94\xc8\x38\x19\xf7\xc8\xc8\x9b\x3f\xbe\ +\x2c\xe6\x83\xa7\xa2\x5a\xcd\xca\xe5\xa7\xa1\x60\x7c\x38\x28\x96\ +\x93\x72\x3a\x5b\xde\x7f\x1a\xfe\xc7\xdf\xfe\x92\xf9\xe1\x60\xb5\ +\xce\x97\xd3\x7c\x5e\x2e\x8b\x4f\xc3\x65\x39\xfc\xe3\xe7\x1f\x6e\ +\xfe\x21\xcb\x06\x7f\xaa\x8a\x7c\x5d\x4c\x07\xcf\xb3\xf5\x97\xc1\ +\x5f\x97\x5f\x57\x93\xfc\xa1\x18\xfc\xe1\xcb\x7a\xfd\x30\x1e\x8d\ +\x9e\x9f\x9f\xd9\x6c\x73\x90\x95\xd5\xfd\xe8\xa7\x41\x96\x7d\xfe\ +\xe1\x87\x9b\xd5\xd3\xfd\x0f\x83\xc1\x20\xfe\xee\x72\x35\x9e\x4e\ +\x3e\x0d\x37\x17\x3c\x3c\x56\xf3\xfa\xc4\xe9\x64\x54\xcc\x8b\x45\ +\xb1\x5c\xaf\x46\x82\x89\xd1\x70\x7f\xfa\x64\x7f\xfa\x24\xfd\xfa\ +\xec\xa9\x98\x94\x8b\x45\xb9\x5c\xd5\x57\x2e\x57\x3f\x1e\x9c\x5c\ +\x4d\xef\x76\x67\xa7\xbb\x79\x56\xf5\x49\x22\x84\x30\xe2\x72\x24\ +\x65\x16\xcf\xc8\x56\xaf\xcb\x75\xfe\x92\x1d\x5f\x1a\xef\xb1\xeb\ +\x52\xc9\x39\x1f\xc5\xb1\xfd\x99\xbf\xec\xac\xf1\x2a\x12\xf4\x21\ +\xfe\xdb\x9d\xbe\x3d\xc0\x56\xe5\x63\x35\x29\xee\xe2\x75\x05\x5b\ +\x16\xeb\xd1\x9f\xff\xf6\xe7\xdd\x60\xc6\xd9\x74\x3d\x3d\xf8\x9a\ +\x2d\x3d\x8f\x7e\xf5\x88\xc8\xcb\x7c\x51\xac\x1e\xf2\x49\xb1\x1a\ +\x6d\x8f\xd7\xd7\x3f\xcf\xa6\xeb\x2f\x9f\x86\x4a\x33\xa1\xe2\xcb\ +\xd4\x07\xbf\x14\xb3\xfb\x2f\xeb\xf6\xd1\xd9\xf4\xd3\x30\xde\xbd\ +\x0c\xbe\xf9\x7c\x30\x39\x44\x73\xc2\xe6\x8b\xc7\xbb\x11\xce\x82\ +\x64\x62\x50\x09\xa3\x5c\x73\xce\xf6\x11\xc6\xd3\x72\x92\xee\x29\ +\x7e\x65\xb1\x98\xe5\x8f\xeb\x72\x11\x51\x9b\x4c\xe6\xf9\x6a\x35\ +\xbb\x9b\x4d\xe2\x87\x72\xf9\x30\x7f\xbc\x9f\x2d\xff\xfe\x75\x51\ +\xe4\xcb\xd5\xdf\xd7\x65\x39\x67\x5b\xf2\xed\x7e\xab\x78\x79\x28\ +\xab\x75\xf6\x32\x7d\x88\x44\xb4\xae\x73\xf0\x75\x3b\xf8\x39\x8e\ +\xde\x4c\x8b\xbb\x55\x3a\xab\x79\xa2\xf4\x29\x3e\x92\x1b\x0e\x46\ +\xf5\xe8\xee\x06\xd3\xdd\x4d\x9f\x66\xc5\xf3\xfe\xdc\xdb\x7c\xd5\ +\x50\x6d\x30\x78\xc8\xef\xe3\x0c\x9b\x97\xd5\xa7\xe1\x8f\x77\xf5\ +\x6b\x33\x70\x5b\x56\xd3\xa2\xda\x0e\xd9\xfa\x75\x34\x54\x46\x14\ +\x66\xeb\xd7\x86\xa7\x36\xdf\xbd\xbd\xdf\xf4\xad\xbb\x71\xde\x3d\ +\xbe\xfa\x92\x4f\xcb\xe7\x4f\x43\xd9\x1e\xfc\xb9\x2c\x17\x35\xc9\ +\x7d\x70\xc6\xc8\x93\xf1\xc9\xcb\xa7\x61\xa6\x79\x60\x3a\x08\x63\ +\x4e\x46\xd3\x1d\x99\x08\xb8\xf4\xa7\x57\x3e\x56\x55\xe4\xba\x6c\ +\x9e\xbf\x16\xf1\xa9\xea\x3f\x62\x73\xd2\xea\x4b\xf9\x7c\x5f\x25\ +\xea\xac\xab\xc7\xa2\x7d\x65\x1a\xc9\x6e\x6f\xcb\x97\xee\xe1\x38\ +\x09\x1e\x13\x3f\x67\x8f\xcb\xd9\x3a\xf2\xcc\xc3\xcb\xe1\xb7\x3e\ +\xce\xa6\xc5\xaa\xfb\xc2\xe7\xd9\x32\x12\x21\xdb\xcc\x5e\xa1\x76\ +\x34\x6e\x9f\xb1\x9d\xca\x8e\xfb\x33\x67\xc4\x5b\x3b\xa1\xf3\x66\ +\xe8\xf5\xfc\xd0\x22\x7f\x99\x2d\x66\x3f\x17\xf1\xb9\x45\xfb\x94\ +\xd5\x32\x7f\xc8\xee\xe7\xe5\x6d\x3e\xdf\xdc\xfd\xe7\xfa\x8c\x9b\ +\x23\xb2\x34\x17\x0d\x06\xeb\xd7\xc4\xb7\x2f\xaf\xe9\xd8\x70\x7b\ +\x30\xd1\x33\x1d\x50\xce\x9a\xdd\xc1\xb2\x9a\x45\x76\x38\xb8\xdf\ +\xed\xa1\xd7\xc3\x43\x89\xcb\xa3\x90\x7e\xa9\x27\x58\x3d\xfd\x5c\ +\x7b\xec\xf5\x70\x6c\x33\xef\x47\xa7\x13\xbf\x3e\xbe\x28\xd6\xf9\ +\x34\x5f\xe7\x7b\x2e\xd8\x1e\x91\x21\xf0\xed\x93\x45\x81\x39\xfe\ +\xb7\x3f\xff\xe5\xf3\xe6\x87\x6e\x26\x93\xf1\x7f\x95\xd5\xd7\xed\ +\xef\x0e\x06\xe9\x84\xfc\xb6\x7c\x8c\x50\x0c\x3f\xef\x0e\xdf\x4c\ +\x27\xe3\x28\xe2\x22\xeb\x7f\x9e\x2d\xe2\xdc\x4e\xd2\xf1\x9f\xa2\ +\x48\xbb\x19\xed\x07\x8e\x4e\x4e\xc4\xda\x7f\x69\xf3\xb5\x55\xd1\ +\xc8\xca\x4e\x85\x31\x9d\x2c\x66\xe9\xa2\xd1\xbf\xaf\x67\xf3\xf9\ +\x5f\xd3\x8f\x6c\x9e\xf8\xe0\x4b\x67\xeb\x79\xb1\x3f\x78\x33\xda\ +\xdc\xfd\xe6\xd9\x46\x07\x0f\x77\x33\xda\x3e\x7d\xfd\xe9\x7e\x4f\ +\x95\x23\xa6\xd8\x01\x3d\xcf\x6f\x8b\x38\x09\xfe\x25\x0d\x0e\x4e\ +\x46\xef\xab\xf2\xf1\x61\x51\x4e\x8b\xcd\xe5\x3b\x6a\x16\x93\xf5\ +\x0e\xb2\xf5\xeb\x3c\x8e\xdf\xc5\xbb\x1f\x6f\x24\xcd\xc7\xf4\x21\ +\xdb\xc8\x89\xb1\x68\x3e\x56\x8f\xf3\x28\xef\x9e\x8a\x65\x39\x9d\ +\x7e\x5c\xad\xab\xf2\x6b\x31\xfe\x91\x73\xed\x39\xdf\x7c\x6c\xb8\ +\x65\xbc\xfb\x38\x9f\x2d\x8b\x78\x1b\xe3\xd5\xff\x3c\xe6\x55\x71\ +\x78\xf4\xbf\xcb\xd9\x72\x1c\xe9\x56\x54\xdb\xa3\xf5\x87\x79\x9c\ +\xf1\xeb\xb1\xde\x1e\x9b\xe6\x51\x14\x55\x55\xfe\x3a\x5e\x46\x0b\ +\xe0\xf0\x68\x79\x77\xb7\x2a\xd6\xfb\x5f\xda\xde\x2a\x67\x6a\xf3\ +\x3a\x9a\xe8\xe9\x71\x55\x08\x62\x77\xb0\x53\x29\xa5\x57\xb7\x62\ +\x4a\xaf\x23\xae\x88\xf3\x3b\x4a\x39\xa7\x02\x57\xb6\xc8\x84\xdd\ +\x0d\x54\x47\xa7\x55\xf1\x3c\xc5\x54\x54\x4e\x36\xf8\xdd\xac\xd8\ +\x82\xba\x61\x42\x65\xc5\xfe\x8a\x75\x15\x15\x51\x9a\x97\x91\x0b\ +\xf2\x75\x35\x7b\xf9\x03\x67\xd6\x3b\xf3\x81\xa7\xff\xa2\xe4\x35\ +\x4a\x39\xa9\x3e\x48\xa6\x1b\xee\x8a\x07\x95\xd6\xdc\x5b\xa5\x7f\ +\x1a\xb6\x20\xdd\x83\x94\x5e\x6d\x5a\x89\x1d\x9b\xdc\x3c\xe4\xeb\ +\x2f\xfb\x49\xbf\xe7\xd3\x38\x71\xd2\xd4\x8e\x22\x72\x32\x19\xee\ +\x4f\xd8\x8b\xed\x72\x19\x11\x5e\x97\x55\x16\x05\xf8\x53\xbe\x7e\ +\xac\x8a\xc3\xc7\x6f\x1e\x30\x7d\x79\xe4\x64\x7b\x70\x38\x1e\xfd\ +\xd7\x41\x7c\x9e\xc1\x7f\x0e\xb6\x84\x56\x07\xc3\x87\x33\xf2\x00\ +\xf9\xf6\x83\x34\xb3\x4d\x6e\xae\xd7\xba\x3d\xed\x6e\x1f\xd7\xeb\ +\xbe\x26\xdd\x9e\x68\x07\x6c\xfc\x16\x64\xf3\x6d\xb2\xed\x08\xf6\ +\x61\xf7\x6e\xf0\xcf\x03\xfe\xbb\x27\xdf\xaf\xa7\x8e\x72\x4e\x66\ +\xbc\x4d\x9f\x9d\xde\xf9\x20\x3d\xf3\x83\x3f\x0d\x14\x93\xcd\xdb\ +\x93\x37\xbf\x95\x66\x82\xc5\xe9\xcc\xa5\xf1\x0f\x2f\xbf\x9e\x68\ +\x30\xa4\xf0\xba\x45\x88\xc5\xc0\x6c\x65\xe1\x07\x65\x98\x1c\x4c\ +\x22\xc3\x65\x9a\xc9\x9a\x36\xe7\xde\x5f\x30\x8b\x84\x33\x3a\x5a\ +\x7d\xef\x8a\x24\x99\x6f\x13\x45\x44\x71\xda\xcc\x8e\xef\x97\x28\ +\xa1\x4d\x14\x29\xd8\x77\x3f\x53\x4e\xd8\x47\x5a\x9a\x29\xaa\x4d\ +\x14\x25\xbf\x63\x6a\xd8\x13\x61\x62\xbf\x53\x6a\xd4\x8a\x37\x93\ +\x27\xf4\xd8\xab\x5e\xd5\xd8\xa7\x2e\xd2\x66\x6b\x61\xa8\x68\xef\ +\x9d\x79\x7f\x86\x36\xb5\x37\xb2\xa3\xc7\xef\x46\x17\x37\xd4\x11\ +\xe7\xa9\x23\xfc\xd6\x70\xfb\x6e\xa9\xa3\xce\x9b\x6d\x42\xee\xcc\ +\xb6\xfa\xed\xc9\x9b\x2b\x32\xdb\x1a\x62\xe8\xf3\x53\xc5\x6d\xfd\ +\xbc\x8b\xa6\xca\xef\x97\x34\x27\xb6\xca\x81\x8c\xd9\x3e\xf6\xef\ +\x8a\x34\x37\xa3\xfb\xee\x28\x80\xb4\x7b\xfd\x72\xc4\xe6\xf6\x2e\ +\x08\x9f\x7f\x33\x42\x60\x82\x55\x81\x07\x5d\x47\x09\x04\x13\x5a\ +\x2b\xe3\xcc\x87\x4c\x09\xe6\xb9\xf1\xc1\x7c\xb0\x8c\xbb\x60\xac\ +\x54\x3f\xed\xbd\xfe\xc3\x20\x50\x1d\xd2\xd0\xcc\x4a\xc9\xa5\x3e\ +\x14\x5d\x2f\x9f\x86\xd6\x30\x27\x8d\xd5\x87\x2a\x6c\x1b\x27\xe1\ +\x71\x48\x79\xc9\x85\x39\x18\xdc\x06\x4d\x99\x8e\xaa\x2b\x58\xd3\ +\x82\xb7\x8e\xc6\x78\x2e\x4f\x11\xa9\x83\xda\x3b\x18\xa6\xb3\xd5\ +\xc3\x3c\x3a\x92\xb3\x65\x22\xee\xc7\xf2\xa9\xa8\xee\xe6\xe5\xf3\ +\xf8\x69\xb6\x9a\xdd\xce\x8b\x8f\xf5\xdf\xd9\x3c\xd1\x77\x7b\xe8\ +\x90\x62\xe7\x83\x58\x11\xf3\x9f\x8b\xaa\xfc\x26\xec\x27\x41\xac\ +\x3e\xdd\xe1\x6f\x85\xb0\xc4\xc7\x45\x5e\x7d\x2d\xaa\xe6\x82\x62\ +\x99\xc7\xe7\xca\x6e\xf3\xc9\xd7\x14\xcb\x5b\x4e\xc7\xf9\x64\xf2\ +\xb8\x78\x9c\xe7\xeb\xc3\x30\xe3\x2f\xc7\xd2\x33\xa3\x83\xd4\x3d\ +\x43\x79\x24\xc2\x08\xcc\xbe\xc1\x74\xcc\x08\xa7\xb8\x0a\x2d\x30\ +\x5d\x14\x6f\x4e\xeb\xde\xd1\x0c\x84\x26\x02\x9a\x81\x05\x2b\x78\ +\xff\x68\xea\xac\xc3\x64\x22\x3c\x7b\xc3\x53\x31\xe1\xb4\xf2\x6f\ +\xc6\x9d\xa4\x38\x31\xd0\x84\xe3\x4e\x4b\x78\x02\xe2\x19\x2d\x5f\ +\x1b\xec\x11\xfd\x01\xed\xa0\x90\x75\x24\xb2\x08\x4d\x60\x34\x9d\ +\x60\xca\x49\x2f\x2d\x80\xea\x24\x63\x08\x14\x50\x11\xe1\xb1\x51\ +\xe0\xbe\x11\x7f\x4a\x62\x4f\x04\x34\x01\xf9\x93\xb8\x13\x21\x8a\ +\xe0\x34\x13\xc1\xea\xfe\xf1\x0c\x64\xdc\xa2\xe0\x09\xaa\x3f\x05\ +\x41\xfa\xf6\xf6\x2d\x50\xcc\x96\x9c\x15\x0c\xf3\x16\x4a\xdc\x6a\ +\xf2\x56\x30\x62\x09\x4e\x32\xe7\xb5\x55\xfd\x6b\x4f\x12\xb5\x18\ +\x70\x1a\x66\xb9\x97\x4a\x40\x68\x4f\x92\xb7\xb0\x88\x3a\xe7\xcc\ +\x71\x75\x4e\x23\x70\x83\xe7\xce\x74\x23\xea\xb5\xd6\xc6\xba\xd0\ +\x85\xa8\x8c\x5e\xab\xe2\xe2\x2c\x87\x92\xbc\xc5\x80\xd3\x31\x1d\ +\xb8\x95\xdd\x02\xf7\x02\x38\xa3\xfe\x24\x40\x61\x53\x65\xc2\x18\ +\x15\x4e\xfc\x15\xcb\xa4\x32\xd6\x77\x5b\xb7\x97\xf0\x27\xc9\x5b\ +\x14\x3c\x3d\x73\xda\x18\x23\xfb\x67\x50\x9f\x19\x42\x14\x10\x51\ +\xc9\xb8\xf7\xd6\x48\xff\x46\x1c\x2a\xc9\x65\x41\xc1\x13\x8e\x43\ +\x2d\x79\x2d\xa0\x88\x9a\x54\x42\xaa\x5d\x68\x23\x0a\x65\x14\x85\ +\x4c\x91\xcc\xc5\x40\xd4\x73\xc6\xd3\x7a\xdc\xde\xbd\x96\x3a\x8a\ +\x4b\x99\x16\x50\x4c\x39\x53\x21\x38\x75\x9c\xf2\x84\x64\x53\xa9\ +\x08\x51\x14\x44\x01\xd9\x94\xdc\x17\x94\xf8\x82\x97\xcc\x08\xae\ +\x94\xef\x5f\x95\x52\xc2\x05\x07\x51\x50\x55\x2a\xc8\xe2\x45\xb1\ +\x78\xa1\xa2\xba\x96\x7c\x52\x14\x7b\x17\x4a\xec\xea\xe8\xc1\x74\ +\xac\xd7\x25\x44\xa1\xa3\x0c\x3e\x41\x63\x34\x0f\xfd\x2b\x52\x41\ +\xd6\x2e\x0a\xa2\x51\xc1\xc6\xa3\xb6\xbb\x74\xe1\x42\x45\x6a\x29\ +\xce\x00\x5b\xcd\xc9\x99\x51\x4a\xca\xf6\x1a\x42\xc9\xb4\x12\xda\ +\xf4\x2e\x77\x49\x8b\x62\xa0\x19\xad\x22\x2d\xd4\x51\x81\x42\x5f\ +\x5a\x94\x56\x85\x82\x02\xaa\x58\x10\x82\xb7\x2b\xff\x14\xb3\xde\ +\x2a\xdf\xbb\xc4\x0d\x64\x13\x61\xc0\x69\x53\xed\x9f\xec\xdf\x69\ +\xa9\x15\x28\xe9\x4f\x48\x44\x7d\xc2\x47\x71\xd7\x5e\x4a\x08\xc5\ +\xa1\xb4\x34\x14\x07\x4f\x38\x16\xb5\x24\x73\x61\x65\xae\x64\x32\ +\x5a\x44\x27\xab\xcf\xa0\x6c\xa2\x94\x1b\xa5\x80\x2e\x06\xa2\x8e\ +\x69\x23\x04\x40\xa8\x28\xa5\x46\x3b\x9a\x0b\x11\xa4\xd0\x45\x63\ +\x60\x4c\x2a\x15\x01\x8a\x02\x28\x18\x8f\x12\x87\xe2\x84\x16\xbe\ +\xd9\x33\xe3\xc2\xbc\x28\x19\x46\x18\x88\x42\xaa\x51\x41\xee\x0b\ +\x8a\x69\x04\x15\xce\xb5\x99\x22\xb1\x8b\x01\x28\x94\xd8\xd5\x54\ +\xd9\x89\x14\x61\xf0\xcc\x71\xdb\xff\x6a\xb4\x94\x15\x25\x40\x11\ +\x00\x75\x11\x1b\x61\x8e\x97\x7e\xf6\x98\x16\x25\xb1\x0b\xeb\xbe\ +\x84\x10\xbc\xe1\xea\x8d\x30\x0d\xb4\x44\x02\x09\x51\x95\x9a\x68\ +\x78\x80\x65\xa3\x3e\x33\x64\xec\x02\x77\xd2\x50\x82\x07\x65\x4f\ +\x5b\x2f\x68\xc7\x03\x07\xd0\xa5\xd1\x36\xa2\x1a\x23\x14\x4c\xa1\ +\xea\x3a\x37\xeb\x5e\x88\x53\x31\x50\x05\xf3\x62\xa2\x5b\x4a\x7c\ +\x8a\xc2\xa7\x80\x6d\x18\x32\x47\x01\x41\x8c\x1a\x6c\x30\xcf\x94\ +\x6a\xea\x71\xd6\x48\x40\x3a\xa6\xd1\xe6\xa5\x68\x03\x46\xff\x1b\ +\x28\xa3\x77\x6b\x20\x91\x3a\x85\x44\x35\xe3\x2c\x42\xe4\x44\x44\ +\xf6\x18\x57\xb0\xe2\xfa\x64\x22\x51\x0c\xe9\x9a\x1a\x8f\x6d\x4c\ +\x24\x12\xbf\xb0\x61\x24\x2f\xa4\x08\xaa\xbd\x84\x5f\x33\x23\xb5\ +\x16\x5d\x9e\x8c\x60\x5c\x49\x21\x54\x27\xa6\x4e\x08\x69\x8f\xc2\ +\x4f\xad\x66\x72\xb4\xb1\x0b\x0a\x9e\x8e\x05\x6d\x83\xee\xb2\x91\ +\x2e\xc1\x33\x75\x93\xa3\xea\x40\xd8\x8c\xa9\x88\xd0\x71\xab\xdb\ +\x9e\xe9\x37\xba\x55\x5d\xc4\xa1\x51\x93\xd2\x1a\x18\x0c\x40\x03\ +\xb3\xc6\xcb\xce\x42\x95\xcb\x58\xd4\x53\x94\x17\xdc\x33\x75\xd1\ +\x2f\xb5\xb6\x9d\x8c\x01\xe2\x51\x49\x45\x0d\x48\x80\x82\xf1\xa8\ +\xcd\xa8\xc3\x06\x2c\xa4\x81\x79\x67\x75\xbb\x3a\x10\xca\x30\xda\ +\xe4\xd6\x28\x20\xf8\xf6\x90\x7a\xc1\x54\x44\x34\x74\xf5\x7d\xbc\ +\x54\x91\x06\x6a\x58\x0f\x1e\x65\x88\x10\x38\xe5\x4e\x5b\x3f\x82\ +\xf0\x69\x6a\x29\x47\x61\x7b\x0c\x44\xe1\xd8\x34\xb9\x30\x14\x65\ +\x40\x88\x32\x80\x4a\x5e\x41\x16\x12\x8e\x85\x04\x14\x0a\xb4\xe4\ +\xc4\xc0\x2f\x88\x09\xdc\x1b\xd5\x4a\xc1\x58\xcd\x64\x74\x4a\x79\ +\xff\xb1\xc0\x90\x71\xd2\xa5\x18\xb1\x23\x1b\x98\x0a\xdc\x0a\x88\ +\x60\xa0\xa0\xb4\x1a\x4a\x38\x50\x46\x1d\xab\x84\xe9\x4a\x94\x5e\ +\x1e\x0e\xa4\xb5\x88\x28\xaa\x54\x30\xc1\x85\x0f\x5d\xa9\xd2\x1e\ +\x82\x0d\x24\x7b\x31\xd4\x29\x94\x7d\xb4\xab\xe4\xa5\xfc\x1a\x02\ +\xab\x5a\xc7\xac\x0b\xaa\x73\xf3\x90\x4b\xad\x5e\x0a\x21\xe1\x30\ +\x2a\x5c\x0e\x3c\xd5\xa9\x50\x8a\x0d\x65\x99\xa9\x61\x21\xfa\x32\ +\xae\x7f\x95\x4a\x35\xf7\x58\x90\x02\x39\x33\xdb\x72\x5e\xf2\x67\ +\x80\x57\x52\x38\xcf\xb9\x6f\x2f\x4c\x84\x52\xa8\x8d\xed\x2b\xa9\ +\x66\x05\x03\x54\x28\x87\x66\x57\xa4\x4d\x71\xfc\x6b\xaa\xfe\xdc\ +\x56\xf4\x12\xb3\x5e\xd7\xbe\x5c\xa9\xaa\x97\x9c\xd4\x2b\xdb\x98\ +\x4b\x29\x5a\x44\x0c\xbb\x46\x26\x82\x10\x55\xa7\xd3\x6d\x36\x85\ +\xda\xb7\xb4\x2e\x1b\x24\x85\x8a\x81\x29\xd8\x2e\x31\x4d\xe5\x20\ +\xe5\x51\x31\xf6\x89\x81\x92\xbd\x8d\x4b\x43\x8c\x8a\x81\x29\xdc\ +\xfe\x5c\x9e\xfc\x19\x78\xf1\x2b\x59\x88\x8e\xaa\xf7\xed\x92\x50\ +\x28\x56\x95\x14\xcd\x47\xc3\x14\x8e\x55\x53\xf0\x97\xfc\x19\x14\ +\x7f\xc6\x30\x2e\xb9\x08\x00\x0d\xe9\x68\xcf\x4b\x34\x50\x41\x95\ +\xaa\xa0\x0a\x25\x1c\x5b\x09\x2c\x9c\x64\x69\x2f\x53\x24\xeb\x17\ +\x4a\xfa\x36\x81\x5f\x52\xa9\x28\xa1\x07\xa8\x8e\x2b\x75\x2b\x66\ +\x62\x54\x1c\x50\x2d\x93\xce\x08\x05\xb3\xc5\x1e\x75\x7a\xc5\xca\ +\xd0\x40\xb7\x05\x0d\x94\x7a\x83\xe5\x57\xcd\xa2\xa4\x8d\xaf\x56\ +\x4d\x8b\xd7\xcc\x05\xef\x3a\x3b\x83\x26\x16\xf7\xc6\x79\xd3\x85\ +\xab\xf0\xce\x4b\x11\xbe\x65\x2a\x71\x52\xac\xd7\x95\x4e\xdd\xa5\ +\xc9\x29\xac\x8f\xd0\xcf\x0c\x2e\xac\x4f\xeb\xdd\x70\x00\x85\x0b\ +\x3f\x28\x2a\x11\xc5\x71\x54\xa1\xd2\xa9\x75\x8a\x9c\x20\xc5\x80\ +\x14\xca\x4d\x6d\x32\xe4\x84\x29\x42\x67\x66\x30\xc9\xdb\x64\xc8\ +\xc9\x95\xc1\xc0\x14\x2e\x46\xd8\xb8\xa8\x64\x23\x5d\x55\x8e\xa6\ +\xc9\x90\x13\xab\x5e\x55\x36\x75\xd3\x63\x87\xe2\x0e\x18\xee\x8c\ +\x63\x46\x71\x0e\x10\xce\x97\x54\xf6\x80\x04\x29\xa8\x4e\x4d\x09\ +\x72\x2a\x3b\xc3\x30\x95\xa0\x22\x49\x29\xea\x4b\x09\x1a\x0c\x44\ +\x81\x64\x6f\x13\xf1\xa5\x2a\x16\x8c\xb8\x03\x54\x26\xb5\x49\x8f\ +\x93\x3e\xc5\xc0\xd4\x33\xe7\x75\xf0\x20\x05\x67\x75\x76\x9c\x60\ +\xc5\xd8\x69\x06\x2e\xe1\xb6\xcd\x8e\x13\xae\x38\xbb\x42\x41\x31\ +\x6c\x93\x1f\xa7\x02\xfd\x6b\xca\xa3\xee\xd2\xe3\x14\xd3\x07\xee\ +\xa2\x64\x94\x92\x27\x8d\xb1\x04\x13\x29\x51\xd3\x7b\xea\x2d\x50\ +\x2e\x15\x07\xd0\xd4\x9f\xdb\x2a\x0f\xe1\xd4\x50\xc5\x03\x4e\x07\ +\x25\xc9\xb4\x12\xda\xf4\x1f\xcc\x8f\xa2\x97\xd6\xd0\x60\x20\xaa\ +\x59\xd0\xa9\x1d\x2c\x4c\x76\x9c\xc2\x83\xa0\x82\x57\x32\x19\xc5\ +\xae\x32\x6f\x24\x78\x37\xeb\xc7\x89\x51\x31\x40\xb5\x4c\x04\x2b\ +\xe1\x2a\xb8\x29\x48\x08\xdb\x10\x4b\x18\xa3\xa2\xa8\x7d\x23\x56\ +\xad\xb3\xe3\x94\x1c\xc7\x80\x14\x8e\x51\x53\x6e\x9c\xec\x5e\x0c\ +\x57\xc6\x33\xc7\x2d\x40\x24\x3f\x05\x92\x28\xe1\x86\x81\x28\xa8\ +\x3a\xad\xb7\x14\x22\xe9\x8b\x61\x26\x41\x45\x91\x52\xc0\x97\xbc\ +\x19\x0c\x44\x61\x64\x6f\x13\xec\x25\xd9\x8b\x11\x73\x70\x4c\x1b\ +\xd1\xb9\xd7\x6d\x0f\x89\x71\xca\xc9\xe0\xb4\x56\x0f\x56\xf0\xce\ +\x65\xa8\xbd\x24\xc6\x29\x82\x0f\xbc\x55\x94\x72\xce\xb6\x51\x35\ +\x11\x55\x29\x4c\x00\xcc\x8b\x13\xae\xb0\xdd\xd5\x95\xe0\x41\xb5\ +\x17\x8d\x83\x71\x6b\x93\x15\x27\x4c\xaf\x29\xe8\xbb\xcb\x8a\x53\ +\x43\x96\x2b\xda\x08\x21\x75\x56\xa7\xa2\x24\x14\x44\xe1\xf6\x40\ +\x50\xb4\x3f\x35\xd2\x0e\x60\x40\x7b\x6a\xa6\x80\xaf\x26\x27\x15\ +\x05\x52\xcb\xa4\x32\xd6\xc3\x6c\x16\x45\x86\x2f\x2c\xa8\x3a\xc2\ +\x60\xbc\x91\x6d\xd9\x0b\xc4\xa7\x75\x77\x07\xca\xa0\xa2\x40\x0a\ +\xc6\xa7\xa9\x7e\x85\xfa\x3b\xa0\x84\x93\xa0\x6c\xa4\xcd\x7e\xc6\ +\xb4\xc8\x0d\x07\x55\xb0\x7d\x52\x9b\x68\x12\x31\x2b\xf4\xa2\x28\ +\x6b\x84\x95\x5a\xbe\x0d\xb3\xd6\x25\x2c\x8a\x9c\x54\x14\x4c\xc1\ +\x58\xb5\xee\xef\x40\xa0\xa2\x44\x1e\x20\xe5\x6f\x5d\xf2\x40\xc9\ +\x37\x14\xbd\x0a\x14\x23\xb4\xd4\x0c\x0b\x2b\xfa\x00\xb9\xfb\xb8\ +\xc8\x38\xc5\xf2\x51\x40\x85\xdd\x7f\x3c\x73\x14\xfc\x45\x2a\x67\ +\x01\xdc\x80\x3c\xfd\x9f\xdc\x1a\x48\x58\x03\xf3\xce\xea\x76\x81\ +\x28\xf4\x0e\xe4\x92\x6a\xb9\xd1\x56\xbc\x49\x13\x75\x6b\xdf\x56\ +\x70\xb2\x96\x52\x0c\x82\x5c\x1b\x04\x66\x85\xdd\x57\x3e\xb1\x2b\ +\xa1\x0a\xba\x94\xc6\x0b\x29\x82\xd2\x6f\x63\x05\x6f\x0c\x26\x13\ +\x0d\x61\xb2\x98\x60\xbb\x9d\x39\xed\x82\xb5\xea\x6d\x44\x70\x63\ +\x31\xd5\x6c\x4b\xb0\x22\xc0\x0a\x64\x08\xef\xab\x45\x3d\x99\xc2\ +\xd7\x54\x84\xb6\x2b\x2d\xd4\x94\x3b\x07\x66\x58\xa5\x8d\xd7\xca\ +\x9f\x30\xac\x50\x4e\x9f\xa9\x03\x76\x52\x79\xc9\x45\xe7\xee\x51\ +\x5a\x88\x28\x00\xcc\x59\x60\x49\xfe\x62\xc0\xf9\xcd\xb2\xee\x4b\ +\xe0\xcc\x3c\x05\x0c\x61\x3b\x9d\xf9\x10\xc1\x39\x09\x18\x7a\x66\ +\xf4\x71\xf3\xf5\x5e\xf0\x94\xe4\xa4\x62\xc0\xe9\xd2\x2a\x1b\xe9\ +\x65\x77\x89\xfe\x45\xfc\x69\xc9\x30\xc2\x90\xb8\xce\x30\xcb\xbd\ +\x3c\xd3\xe3\xf7\x02\x44\x53\x7c\x90\x5c\x53\x0c\x44\x65\x6a\x18\ +\x7a\xe4\xd9\xf4\xa5\x42\x53\x8e\x9c\xd4\x28\x86\xdc\xd5\xa9\xd7\ +\x83\xee\x5f\xee\x52\xb8\x17\x0b\x51\x97\xf6\xb5\xe0\x5d\x81\x86\ +\x8b\xb9\xd4\x52\xc5\x03\x70\x04\xdf\x58\x2f\xa4\x69\x75\xf5\x05\ +\xf3\x45\x25\xc9\x5c\x0c\x38\x01\x7d\x51\x12\xb9\xc0\xeb\x8b\xa3\ +\xfd\xa3\x79\x3b\xb8\x00\xe4\x8b\x86\xcc\x11\x83\x22\xe0\x09\xe8\ +\x8c\x7a\xca\x96\x02\x17\x36\x08\xc9\xb5\x77\xf2\x6d\x38\x94\x3c\ +\x51\x14\x38\x41\xa3\x45\x64\xe2\x02\xb7\xd3\x89\xd0\xb8\xf6\xc6\ +\x15\x60\x36\x51\xbd\x4c\x86\x02\x80\x08\x90\x82\x86\x8b\x28\x5a\ +\x04\x9c\xec\xb6\x51\xbe\xea\x93\x2a\x06\x28\x2e\x95\xb4\xec\x14\ +\x05\x50\x38\x1e\xa5\x2e\x0e\x28\xb1\x05\xd0\xac\x0b\xad\x60\xc3\ +\x40\x14\x36\xeb\x42\x01\x23\x0c\x6b\x17\x2a\xa0\x6b\xc9\x2e\x42\ +\x31\x75\xa1\xa4\xae\xa6\xce\xda\x48\x11\x06\xc8\xbc\x28\x99\xba\ +\x18\x88\x82\xe6\x45\x39\x55\x75\x02\xaf\x1a\x96\x41\x04\xdd\xd6\ +\xa3\x40\x61\x5d\xad\x48\x8f\x62\xe0\x09\x99\x78\x71\xb4\xa4\xf4\ +\x2d\x96\x94\x9e\xae\xeb\x07\x8a\x18\x51\x5d\x27\x0a\xa0\x70\xee\ +\xa8\xa5\xad\xe0\x91\xa4\x2e\x90\x65\x54\x17\xea\x92\x22\x45\x81\ +\x14\xca\x7d\xd9\xd6\xea\x92\x0f\x83\x21\x7b\xe1\x82\xbb\x22\xf5\ +\x68\x20\x48\xdf\x1e\x52\x9f\x76\x0d\xf7\xbc\x7b\xc3\xa7\xcb\xcb\ +\x75\x49\xfc\xa2\xec\x73\x0a\xb7\x73\x78\xb3\xdc\x9b\xec\x24\xd8\ +\xc6\x9f\xdc\x7b\x6b\x64\xbb\xcc\x13\x0e\xd5\x7a\xf7\x5a\x5a\xe7\ +\x0d\xbb\xa8\x49\x5b\xab\x5d\x38\x5d\xe7\x0d\xb4\xe1\x9e\xa4\x5a\ +\x32\x24\x48\x41\xa5\x6f\x6a\xe5\x4a\x96\x12\x86\x52\x05\xe2\xd4\ +\xa6\xd3\x06\x65\xd9\x60\xd7\xaa\x39\xe7\x8c\x3d\xc9\x83\x43\xed\ +\x34\xbd\xd9\xee\x94\xf8\x14\x03\x54\xa8\x4d\x89\x9b\xdd\x4e\xc9\ +\x4a\x02\x8d\x27\xb1\xd4\x2b\x30\xd8\xb6\xec\x85\xc1\xb4\xd9\x13\ +\x93\x42\x49\xb0\xda\x54\x2b\xeb\xfd\x49\x62\x46\x33\x13\x02\xb7\ +\x5d\xea\xb4\x97\xbd\x81\x28\xf0\x00\xdc\xa2\xc1\x49\x1b\xcd\xa1\ +\x13\x85\xaa\x04\x57\xaa\x2b\x3d\xd3\xc7\xde\x14\x54\x01\x7a\x5d\ +\x71\x07\xa5\xa2\x9b\x4a\x69\x54\x48\x50\x39\x53\x21\x38\x75\x5c\ +\xa5\x02\x69\xfb\x36\x12\xd8\x10\xaf\xa2\x18\xbf\x50\xbc\xda\xf4\ +\x6f\xa5\xe5\xc3\x38\xa8\x82\x85\x1e\xfc\xa6\x77\x2b\x79\x35\x90\ +\xb0\x66\x9c\x45\x90\x9c\x70\xa6\x9d\x7e\x8b\x80\x4b\xe3\xbb\xab\ +\x59\x2e\x00\x56\x2a\xda\x73\x0f\x11\x55\xc9\xb4\xe3\x81\x03\xa8\ +\xd6\x64\x06\x5b\xe2\x56\x14\x33\xf8\x9b\xa5\x84\x17\xa7\x6a\x68\ +\xa1\x05\x0e\xaa\x90\xaa\x55\xd4\x1b\x7a\x91\x21\x8c\x61\x32\x41\ +\x71\x6b\x93\xae\xb1\x64\x08\xe3\x78\xad\x30\x81\xe0\x26\x5f\xe3\ +\x28\xb1\x8a\x02\xaa\x8b\xf8\x08\x73\x5c\x4c\xd6\x6b\xce\x46\x92\ +\xc5\x04\x6b\x09\x4b\x26\x94\xb2\xc7\x61\x87\x04\xac\x65\x52\x19\ +\xeb\xbb\x76\x55\xec\x21\x71\x43\x2b\x30\xae\xab\xbe\x25\xd4\x5b\ +\x04\x11\xa4\xd7\x53\x85\x56\x47\xf8\xa9\x5c\xf4\xba\x8a\x5b\x64\ +\x0a\x05\x07\x72\x57\xaf\xaa\xb8\xc5\xd6\x16\x30\x31\xea\x15\x15\ +\x16\x36\x29\x1b\x4d\xf1\x07\x14\x50\xe1\xe2\x0f\x4d\xce\xc6\x10\ +\xb3\x5e\x53\xbc\xb0\xc9\xd8\xd0\xee\x98\xd7\x15\xda\xdf\xd4\x2d\ +\x59\xe2\x55\x0c\xaf\x06\x2c\x0f\xd7\x64\x6c\x2c\x99\xc0\x28\xbe\ +\x2a\xa8\x66\x4d\x29\x1b\x6a\x1a\x70\x5d\xab\x56\x53\xb4\x50\x52\ +\x60\x09\x03\x53\xc0\x52\x88\x94\x86\xe3\xa4\x58\x31\xa2\x10\x60\ +\x09\x9b\x26\x0f\x47\x05\x2e\x38\xa8\x02\x15\xa3\xed\xb2\x70\xd4\ +\x1d\x16\x65\xf1\x14\x14\xae\x4d\x12\x4e\x90\x15\x7c\x55\x49\xb8\ +\x46\xb1\x3a\x93\x9c\x1c\x02\x16\x92\x5b\x15\x0b\x42\xf0\x56\xca\ +\xdc\x44\xef\x26\xe9\xd6\xde\xb9\x55\x51\x1c\x18\x01\x4e\x2b\x53\ +\x7f\x25\x6d\x20\x32\xab\x9a\xcc\x24\x58\x44\x1d\x93\xde\x7b\xd7\ +\x5e\xb9\x2a\x98\x70\xd6\xc8\xd0\xbf\xf1\x4b\x05\x68\x38\x88\x2a\ +\x66\xbd\x55\xbe\xbb\x5b\xe1\xa5\x96\xaf\xa1\xc6\xbf\xb0\xa0\x9a\ +\xb4\x92\x3c\xd8\xf6\x96\x8b\x50\x92\xb7\xde\xd1\x8d\x8c\x5e\x14\ +\x4c\x61\xfb\xda\x71\xea\x97\x85\x61\x22\x01\x76\x40\xa3\x3e\xb1\ +\x28\x88\x02\x37\x40\x93\x14\xf5\xc5\x90\xbe\x60\xae\xa9\xcd\x14\ +\x27\x85\x8a\xa2\x50\x01\x7b\xda\x51\xab\x2c\x70\x48\x95\xf0\xda\ +\xb5\x8b\x1e\xce\x47\x7b\x2f\xe9\xc0\x13\xea\x6e\xce\x24\x77\x31\ +\x10\x75\x4c\x68\xaf\x3a\xab\x7e\x2f\x6b\xaa\xe4\x33\x43\x45\xbf\ +\xd0\xa0\x6a\x26\xbd\x55\x27\x5b\x19\x47\x78\xb4\x0d\xba\xff\xfe\ +\x67\xc9\x8f\x51\x04\x2a\x06\xa7\x5a\xcb\xbc\xe7\xce\x40\x08\x5f\ +\x41\xc5\x0e\x48\xe2\x97\x33\x15\xa1\x0b\x30\xe2\x37\xf9\xa8\x94\ +\x15\x47\x10\xc0\x4e\x32\x2e\x74\x34\x63\x01\x60\x0d\xdb\x9e\x1e\ +\x04\x2c\x02\xb0\x86\x69\xe5\x78\xe8\x8a\xe6\x5f\x06\x6c\x9d\x18\ +\xcf\x68\xe5\x1b\x4a\x5e\xdc\x33\x9b\x5e\xfd\x87\x09\xd3\xc2\x0b\ +\x5a\x47\x8e\x90\x76\x03\x83\xb4\x5e\x75\x4c\x0d\x28\x71\x22\x4a\ +\x70\xd9\xf1\xba\x01\xa5\xa2\xa8\x12\x0a\xac\x90\x29\xf2\x50\xfb\ +\xac\xe4\xdc\x20\x64\x6a\xe0\x36\xc0\x48\xf6\xaf\x24\x19\x8c\x01\ +\x2a\x28\xaf\xa6\x05\x52\xb4\x4e\x15\x29\x03\x07\x65\x31\xd5\xed\ +\x27\x89\x59\x51\x34\x2b\x5c\x1f\xf6\xe4\xaf\x4a\xaa\x69\xb9\x2a\ +\x33\x78\x57\x9e\xef\xc8\x60\x42\x89\x2e\x01\x45\x83\x9b\xfc\xaa\ +\xa4\x5a\x51\x14\x50\x61\x72\xe6\xdb\x04\x2b\xa5\x58\x71\x52\xac\ +\x8a\x69\xe3\x65\x67\x75\x4b\x1f\xd9\x38\x47\xa1\x08\x14\x58\x81\ +\x92\xac\xfb\x7c\x1c\xf5\x7f\x00\xb7\x99\xbc\x16\x52\x9d\xee\x48\ +\xc4\x55\x50\xae\xbb\x6c\xf4\x82\xbd\xe8\x43\xe6\xa8\x10\x18\x07\ +\x52\xcf\xbc\x95\xe1\x8c\xc3\x7a\x01\xa4\x89\x59\x25\x05\x21\xa0\ +\xe5\x6f\x64\x47\x13\xda\xab\xa5\xbe\x55\x33\x7a\x11\x97\xaa\xcc\ +\x06\x12\xbd\x18\x98\x46\xaf\x46\x3a\xed\x5c\x77\x69\xf7\x85\x7c\ +\x1a\xc8\x57\x45\xe2\x54\xcd\xac\x74\xe6\x4c\x20\xf8\x02\x54\x2d\ +\xd9\xbe\x48\x7c\xaa\x18\x0f\x5e\x9d\x59\xd4\x78\x11\x9f\xa6\x00\ +\x30\x05\x1f\xfa\xc2\xf4\x66\x74\xbf\x79\x73\x08\xed\x86\xa6\x0d\ +\x49\x38\x9f\x4c\xee\xee\xce\x93\xa4\x78\x2a\x96\xe5\x74\xba\x23\ +\xc9\x5d\xfd\x3a\x43\x92\x5f\xfe\xa0\xbb\x9f\xda\x61\xbd\x9d\x08\ +\xc6\x1f\xf8\x4d\x9b\x89\x13\x5d\xb0\x3a\xe3\xb0\x1f\xd8\x4e\xb7\ +\xd3\x91\x38\x3f\xa5\x60\x2a\xbd\xf6\x66\xe0\x6b\xd7\x99\x55\x3c\ +\x75\x2f\x3f\xaa\xba\x75\x8d\x96\xe9\xa5\xf6\x14\xfc\x06\xe1\xf2\ +\x7c\xaa\xdf\x19\xe1\x0e\x92\x27\xbf\x91\x74\x86\x59\x58\xaa\x59\ +\xeb\xf9\xbb\xa3\xda\x41\x31\xdd\x6f\xa4\x5b\x88\x2e\x86\x3d\x6c\ +\x66\xf5\xfd\x4c\xb9\x83\xdc\x4e\x3f\x93\x8e\x5f\xfb\x64\xbb\x9c\ +\x4d\xbb\xa6\x5b\x7f\x64\x7b\x87\x2a\xe1\x72\x0e\xed\x52\x0a\x42\ +\x32\xdf\x13\xd5\xee\xa6\x77\x96\xbf\xc7\xc9\x76\x31\xe1\x5a\xdc\ +\xd9\x23\xcd\xf2\xbb\x3c\xbc\x4b\x9a\x65\x17\x9b\x20\x5d\x0c\xda\ +\x23\xe5\xde\x27\x8f\xf2\xcb\x55\x41\x17\x97\x7a\x66\xea\x83\xd7\ +\xce\xaa\xfa\x20\x3c\xdc\x0f\xaf\x7e\x2f\x94\x8b\x1a\xf5\xc0\x6d\ +\xec\x91\x65\xfb\x26\x60\x32\x48\xde\x1f\x01\xb9\x82\x60\xdb\xd3\ +\x83\xd7\x48\x3b\x71\x10\x55\xec\x87\x69\xbf\x17\xba\x1d\x26\x38\ +\x7b\x64\xd9\xbe\xc9\xa7\xb5\x31\xef\x8f\x7c\xfc\x72\xe2\x75\x1a\ +\xc4\x8e\xf1\xe3\xda\xce\x6b\x24\x9e\x38\x6a\x22\xd1\x93\x59\xfc\ +\x9d\x50\xae\x56\xb5\x20\xba\xb6\x6f\x0a\xde\x4e\xa6\xca\xbc\x3b\ +\x1b\x39\x79\x64\xbd\x87\xe9\x4e\xe9\x79\xa5\xa4\xcb\x02\x90\xd2\ +\xe8\x99\x80\xde\xe7\xf9\xfb\xe3\x5e\x7e\xb4\x0f\x5f\x9f\xa6\xde\ +\xe1\x7c\xbc\x46\xca\xd5\xce\xd9\xe5\x53\xaf\xcd\xb6\xd7\x4f\xb6\ +\x5a\x5d\x1c\xa4\x69\xfb\xe4\xd9\xfe\xa8\x97\xa4\xdd\xbb\x94\x77\ +\x89\x7c\x30\xce\x59\xcf\x02\xef\xee\x8e\xbf\x43\x27\xe3\x62\x23\ +\xaf\x8b\x74\xbf\x32\xce\xbe\x2e\x5e\x76\x24\x7b\x59\xcc\xc7\xab\ +\x78\xcb\x91\x6c\x0f\x55\xb1\x2a\xaa\xa7\x62\xd8\x26\x67\xb9\x5c\ +\x67\xf5\xfb\xf8\xa0\xd5\x22\x9f\x7f\xac\x8f\x3c\xd7\xb7\x79\x74\ +\x68\x35\xfb\xb9\x18\xa7\x98\x62\x9d\xa5\x16\xe1\xe1\xe5\x63\xca\ +\x3f\x67\xcd\x13\x8d\xf9\x3f\x36\xa7\xdd\xe5\x8b\xd9\xfc\x75\xbc\ +\xca\x97\xab\x2c\xfe\xe2\xec\xee\xe3\xbc\x58\x47\xfa\x66\xe9\x46\ +\x66\xcb\xfb\x31\x8f\x17\x3e\x97\xd5\xf4\xe8\xc0\x36\xcc\xd8\x85\ +\xea\x06\xc3\x43\x1c\x1a\x00\x45\x63\xc0\x59\x27\x0f\x89\x28\x38\ +\x33\xdc\xd9\x83\x26\x53\x4d\xa9\x9e\x74\x4a\x1b\x79\x04\x5c\xa2\ +\x95\x16\xca\x0e\x3f\xdf\xac\xe3\xdd\x2c\xb7\x63\x91\x3a\xe5\x74\ +\xf6\x10\xff\x8d\xab\x32\x51\x29\x3d\xe8\x70\x3f\x5a\x5f\x9b\x2e\ +\x88\x17\xb7\x1a\xe7\x9c\xfe\xfa\x99\xdf\x6f\x21\x90\x88\xab\x65\ +\xb3\xd2\xcd\x05\xdd\x22\x6e\x5a\x21\x73\x8e\xbc\xe7\x48\xf2\xf9\ +\xff\xfe\xf7\x66\x54\xdf\xe5\xe7\xf8\x37\x3e\x69\x9a\x20\x75\x8a\ +\xfe\x66\xb4\x7a\x8a\x7f\xfe\x1f\x17\xb6\xc9\x26\ +\x00\x00\x0b\xbd\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x6e\x64\x63\ +\x61\x6c\x63\x5f\x65\x78\x70\x72\x65\x73\x73\x69\x6f\x6e\x2e\x73\ +\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\ +\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\ +\x20\x76\x69\x65\x77\x42\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\ +\x20\x33\x32\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ +\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x2e\x39\x37\x39\x35\x31\x30\x35\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ -\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ -\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ -\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ -\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\ -\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\ -\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\ -\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ -\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ -\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ -\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ -\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ -\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ -\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ -\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ -\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ -\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ -\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\ -\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ -\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ -\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ -\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ -\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\ -\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\ -\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x34\x35\x36\x36\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ -\x22\x6d\x61\x74\x72\x69\x78\x28\x33\x2e\x38\x31\x37\x34\x31\x34\ -\x33\x2c\x30\x2c\x30\x2c\x34\x2e\x32\x36\x34\x37\x34\x30\x32\x2c\ -\x2d\x39\x2e\x36\x38\x32\x32\x32\x34\x33\x2c\x2d\x32\x33\x2e\x30\ -\x33\x32\x32\x36\x38\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x39\x38\x32\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\x47\ -\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\x39\x29\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ -\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ -\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x38\x30\x37\ -\x32\x38\x31\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x63\x78\x3d\x22\x36\x2e\x36\x33\x30\x34\x32\x37\x34\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x39\x2e\x32\x36\ -\x37\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ -\x78\x3d\x22\x33\x2e\x39\x31\x32\x33\x39\x35\x35\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x30\x34\ -\x39\x39\x31\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ -\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x30\x2e\x31\x30\x39\x30\x31\x35\x36\x38\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x34\x36\x37\x34\x31\ -\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\ -\x39\x2e\x32\x36\x37\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x34\x36\x37\x31\x34\x38\x33\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\ -\x2e\x35\x34\x33\x39\x30\x34\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ -\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ -\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x30\x2e\x31\x36\x32\x35\x31\x30\x39\x39\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x36\ -\x33\x30\x34\x32\x37\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ -\x20\x63\x79\x3d\x22\x39\x2e\x32\x36\x37\x31\x30\x37\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x33\x2e\x32\x36\ -\x30\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ -\x3d\x22\x33\x2e\x35\x34\x33\x39\x30\x34\x38\x22\x20\x2f\x3e\x0a\ -\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ -\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x30\x2e\x31\x31\x32\x36\x37\x32\x33\x32\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ -\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ -\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ -\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\ -\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ -\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\ -\x30\x30\x36\x30\x31\x31\x34\x35\x2c\x30\x2e\x39\x39\x39\x39\x38\ -\x31\x39\x33\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x39\x2e\x32\x36\ -\x37\x32\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\ -\x79\x3d\x22\x2d\x36\x2e\x36\x35\x36\x32\x35\x34\x33\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x34\x34\ -\x39\x38\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ -\x72\x79\x3d\x22\x33\x2e\x38\x33\x30\x38\x35\x38\x39\x22\x20\x2f\ -\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x20\x20\x3c\ -\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ -\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x33\x37\x37\x31\x63\x38\x3b\ -\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\ -\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\ -\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\ -\x39\x34\x36\x39\x36\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\ -\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x36\x2e\ -\x39\x38\x32\x39\x35\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x68\x65\x69\x67\x68\x74\x3d\x22\x34\x2e\x38\x31\x32\x38\x37\x33\ -\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x31\x2e\ -\x34\x38\x38\x36\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ -\x3d\x22\x35\x33\x2e\x33\x30\x31\x39\x37\x39\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x33\x30\x36\x38\x39\x37\ -\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\ -\x31\x39\x34\x35\x35\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ -\x78\x28\x2d\x30\x2e\x32\x37\x38\x30\x37\x30\x32\x2c\x2d\x30\x2e\ -\x39\x36\x30\x35\x36\x30\x37\x36\x2c\x30\x2e\x36\x30\x36\x31\x35\ -\x31\x39\x37\x2c\x30\x2e\x37\x39\x35\x33\x34\x38\x38\x35\x2c\x30\ -\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ -\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ -\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\ -\x33\x36\x30\x36\x32\x37\x32\x36\x2c\x2d\x30\x2e\x39\x33\x32\x37\ -\x31\x30\x30\x32\x2c\x30\x2e\x37\x36\x38\x36\x36\x30\x37\x34\x2c\ -\x30\x2e\x36\x33\x39\x36\x35\x36\x36\x38\x2c\x30\x2c\x30\x29\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x30\x39\ -\x36\x36\x33\x32\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ -\x3d\x22\x31\x2e\x39\x37\x30\x34\x38\x33\x37\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x79\x3d\x22\x32\x33\x2e\x38\x35\x35\x31\x31\x32\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x2e\x34\ -\x36\x34\x39\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x38\x2e\x32\x39\x33\x37\x34\x33\x31\ -\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ -\x31\x30\x2e\x35\x32\x38\x36\x30\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ -\x6c\x6c\x3a\x23\x32\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ -\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x38\x36\x37\x30\x37\x39\ -\x36\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ -\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ -\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ -\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ -\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x31\x31\x32\x62\x3b\x66\ +\x63\x78\x3d\x22\x2d\x32\x33\x35\x2e\x37\x30\x38\x33\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x2d\x31\x36\x2e\x38\x33\x32\x37\x35\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ +\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ +\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\ +\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\x64\ +\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ +\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\ +\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\ +\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ +\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\x3c\ +\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ +\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ +\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ +\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\ +\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x39\x39\x39\x39\x39\ +\x39\x3b\x66\x69\x6c\x6c\x3a\x23\x38\x30\x62\x33\x66\x66\x3b\x66\ \x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ \x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ -\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\ -\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x30\ -\x33\x34\x34\x37\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\ -\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ -\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ -\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\ -\x2e\x37\x32\x36\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x31\x30\x2e\x38\x35\x39\x38\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x39\x2e\x34\ -\x36\x32\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ -\x37\x2e\x30\x33\x31\x36\x36\x35\x33\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x72\x78\x3d\x22\x32\x2e\x33\x38\x31\x38\x39\x34\x31\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x37\x39\ -\x38\x36\x34\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ -\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ -\x2d\x30\x2e\x33\x38\x33\x35\x32\x31\x35\x36\x2c\x2d\x30\x2e\x39\ -\x32\x33\x35\x33\x31\x39\x32\x2c\x30\x2e\x38\x33\x34\x30\x31\x39\ -\x39\x31\x2c\x30\x2e\x35\x35\x31\x37\x33\x34\x33\x35\x2c\x30\x2c\ -\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ -\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x33\x38\x33\ -\x35\x32\x31\x35\x36\x2c\x2d\x30\x2e\x39\x32\x33\x35\x33\x31\x39\ -\x32\x2c\x30\x2e\x38\x35\x32\x37\x30\x37\x33\x31\x2c\x30\x2e\x35\ -\x32\x32\x33\x38\x38\x39\x37\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\x38\x39\x35\x33\x36\ -\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\ -\x2e\x33\x38\x31\x38\x39\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x79\x3d\x22\x2d\x36\x2e\x31\x36\x31\x34\x39\x38\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x31\x2e\x35\x35\ -\x31\x33\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ -\x67\x68\x74\x3d\x22\x31\x31\x2e\x31\x32\x37\x32\x34\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x32\ -\x2e\x37\x32\x36\x38\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ -\x23\x63\x63\x63\x63\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ -\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ -\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ -\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ -\x69\x64\x74\x68\x3a\x30\x2e\x39\x37\x38\x37\x37\x39\x34\x39\x3b\ -\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ -\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ -\x65\x72\x6c\x69\x6d\x69\x74\x3a\x32\x2e\x35\x3b\x73\x74\x72\x6f\ -\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ -\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ -\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ -\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ -\x3c\x2f\x73\x76\x67\x3e\x0a\ -\x00\x00\x06\xae\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x64\x33\x64\x33\x64\x33\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x32\x37\ +\x37\x35\x35\x39\x32\x38\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\x72\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x33\x37\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x34\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x2d\x33\x2e\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x79\x3d\x22\x31\x32\x2e\x31\x39\x30\x34\x37\x38\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\ +\x70\x72\x65\x73\x65\x72\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\ +\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ +\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x73\x69\x7a\x65\x3a\x31\x37\x2e\x31\x36\x32\x33\x32\x36\ +\x38\x31\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ +\x3a\x30\x25\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\ +\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x6c\x65\x74\x74\x65\ +\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\x6f\ +\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x39\x39\x39\x39\x39\ +\x39\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x34\x33\x30\x31\x39\x33\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x2e\x32\x30\ +\x34\x38\x38\x31\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\ +\x22\x32\x31\x2e\x30\x39\x35\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\x39\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x73\x63\x61\x6c\x65\x28\x30\x2e\x39\x35\x33\x34\x36\x32\ +\x36\x33\x2c\x31\x2e\x30\x34\x38\x38\x30\x38\x38\x29\x22\x3e\x3c\ +\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\x6c\x65\x3d\x22\x6c\x69\ +\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x74\x73\x70\x61\x6e\x33\x39\x31\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x32\x2e\x32\x30\x34\x38\x38\x31\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\ +\x31\x2e\x30\x39\x35\x33\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x6f\x6e\x74\x2d\x77\x65\ +\x69\x67\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\ +\x69\x7a\x65\x3a\x31\x34\x2e\x33\x30\x31\x39\x33\x39\x30\x31\x70\ +\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x31\x2e\ +\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\ +\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\ +\x63\x61\x74\x69\x6f\x6e\x3a\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\ +\x64\x27\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\x2e\x34\x33\x30\x31\x39\x33\x39\x22\x3e\x31\x2a\x32\x3c\x2f\ +\x74\x73\x70\x61\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\x94\ +\x00\ +\x00\x25\x7d\x78\x9c\xe5\x59\xdb\x6e\xdb\x38\x10\x7d\xcf\x57\x68\ +\x9d\x97\x16\x6b\x51\x22\x75\x57\xec\xf4\xa1\x45\x17\x05\x76\xb1\ +\xc0\x36\xc5\x3e\x16\xb4\x44\xdb\xda\xca\xa2\x41\x51\xb1\xdd\xaf\ +\xdf\xa1\xee\xb2\xe5\x36\x6d\xd2\x36\x41\x14\xc4\x91\x66\x86\x97\ +\x39\x3c\x73\x91\x33\x7b\xb5\xdf\xa4\xda\x2d\x13\x79\xc2\xb3\xf9\ +\x04\x23\x73\xa2\xb1\x2c\xe2\x71\x92\xad\xe6\x93\x0f\x37\x6f\x75\ +\x7f\xa2\xe5\x92\x66\x31\x4d\x79\xc6\xe6\x93\x8c\x4f\x5e\x5d\x5f\ +\xcc\x7e\xd3\x75\xed\xb5\x60\x54\xb2\x58\xdb\x25\x72\xad\xbd\xcb\ +\x3e\xe5\x11\xdd\x32\xed\xc5\x5a\xca\x6d\x68\x18\xbb\xdd\x0e\x25\ +\xb5\x10\x71\xb1\x32\x5e\x6a\xba\x7e\x7d\x71\x31\xcb\x6f\x57\x17\ +\x9a\xa6\xc1\xba\x59\x1e\xc6\xd1\x7c\x52\x0f\xd8\x16\x22\x2d\x0d\ +\xe3\xc8\x60\x29\xdb\xb0\x4c\xe6\x06\x46\xd8\x98\x74\xe6\x51\x67\ +\x1e\xa9\xd5\x93\x5b\x16\xf1\xcd\x86\x67\x79\x39\x32\xcb\x2f\x7b\ +\xc6\x22\x5e\xb6\xd6\x6a\x37\x3b\xab\x34\xc2\x41\x10\x18\x26\x31\ +\x08\xd1\xc1\x42\xcf\x0f\x99\xa4\x7b\x7d\x38\x14\xf6\x38\x36\x94\ +\x98\xa6\x69\x80\xae\xb3\xbc\x9b\x55\xb8\x4f\x01\x8a\xb3\x9b\x29\ +\xb5\xfd\xd5\x01\xfe\x2d\xfc\xb6\x03\x1a\x01\xca\x79\x21\x22\xb6\ +\x84\x91\x0c\x65\x4c\x1a\x6f\x6e\xde\xb4\x4a\xdd\x44\xb1\x8c\x7b\ +\xd3\x34\xe8\x0f\xd6\x1d\x1c\x49\x46\x37\x2c\xdf\xd2\x88\xe5\x46\ +\x23\x2f\xc7\xef\x92\x58\xae\xe7\x13\xcb\x46\xd8\x82\xcb\x29\x85\ +\x6b\x96\xac\xd6\xf2\x58\x9a\xc4\xf3\x09\xf8\x4a\x02\xbf\x7a\xee\ +\x51\x09\x57\x06\xf5\xc4\x61\xab\x31\x51\x40\x10\xd6\x04\x76\x2c\ +\xaf\xb2\x69\x5c\x08\x63\x1e\xa9\x3d\xc1\x94\x6c\x93\xd0\x42\xf2\ +\x0d\x9c\x71\x14\xa5\x34\xcf\x93\x65\x12\xc1\x03\xcf\xb6\x69\xb1\ +\x4a\xb2\x8f\x82\x27\x1f\x37\x45\x2a\x93\x6d\xca\x50\x83\x76\xbb\ +\x18\xdb\x6f\xb9\x90\xfa\x3e\xde\x02\x8a\xae\x37\xaa\x3c\x34\xca\ +\x6b\xd0\xce\x62\xb6\xcc\x95\x55\xe5\x92\x7a\x02\x9f\x2a\x1d\x68\ +\xe1\x84\x18\x15\x7f\x08\x1a\x27\xc0\xcb\xca\xae\xb2\x1c\x6a\x1c\ +\xcf\x6b\xc6\xc0\xa8\x5c\xf2\x6d\x63\x0b\x5e\xca\x43\xaa\x5c\x03\ +\xa1\x1e\xf1\x94\x8b\xf0\xd2\x34\xf1\xc2\x71\xaf\x4a\x11\x87\x83\ +\x48\xe4\x21\xc4\x57\x93\x6e\x0c\x5f\x2e\x73\x06\xa0\x9b\x3d\x59\ +\x09\x39\x8c\x80\xb5\x82\x89\x66\x9c\x59\xad\xb3\xf2\xbd\xb1\x09\ +\x91\x6b\x7b\xa6\xe3\xfb\xf6\xe4\x8b\x3b\xb4\x5d\x0f\x7b\xcb\xe1\ +\x0e\x4d\x64\x07\xbe\x69\x05\x84\x5c\x9d\x5f\x7f\x64\x2e\x1c\x7b\ +\x96\x7f\x3c\xd7\x98\xb7\x78\xd4\x5b\x1f\xb7\xab\xcd\x8c\x21\xec\ +\x5f\x3e\xa5\xe6\xdc\x61\x1b\x29\x8b\x60\x7e\x9a\xee\xe8\x21\x6f\ +\x17\x29\xe3\x2f\x5c\x0b\x06\xf9\xe2\x72\xe4\x3c\xbf\x74\xdc\x35\ +\xed\xcb\x69\x70\xff\x9c\x0e\xf0\x64\x91\x4e\x49\x54\xe4\x74\x5a\ +\xd2\xb7\x5d\xd5\xd3\x7d\xc8\x12\x09\x29\xa5\xc8\x99\x78\xaf\xc2\ +\xf2\xef\xec\x43\xce\x4e\xac\x6e\x04\xcd\x72\xc8\x01\x1b\x00\x26\ +\xa2\x29\x7b\x01\x59\xdb\x55\x97\xf7\xb2\x03\xe8\x17\x40\x11\x1c\ +\x41\x81\x88\x33\x40\x03\xbb\x43\x34\x30\xf2\x9c\x01\x20\x3d\x83\ +\x87\x46\x64\x66\xa8\x88\x2e\xef\xda\x64\xa3\x32\x4d\x7c\x9b\xb0\ +\x5d\x17\xf6\x0b\xda\xce\xbe\xa5\x2b\x56\xf2\x16\x80\x58\x96\x57\ +\xad\x58\x70\x11\x33\xd1\xa8\xca\x65\xdc\x81\xaa\xa6\x76\x55\x4d\ +\x2f\x86\xb8\xab\x59\x5b\xbd\x39\xae\xcf\xd7\x34\xe6\xbb\xf9\x84\ +\x1c\x2b\x3f\x73\x0e\x1e\x62\xc8\xac\x81\xe7\x9b\x27\xea\x68\x3f\ +\x9f\xe8\xd8\x45\x41\x80\xcd\x96\x6a\x9d\x16\x16\x24\x04\x79\x6a\ +\xa8\x7f\xa2\x2c\x84\x00\x1c\xf5\x94\x1e\x18\x78\x55\xfe\x69\x82\ +\x30\x5f\xf3\xdd\x4a\x28\x74\xa4\x28\xd8\xf1\x48\xa5\xd1\x17\x0b\ +\xbe\x1f\x57\x43\x42\x2f\x54\x25\xd7\x8b\xea\x20\xb7\xfb\xfe\xac\ +\x45\x12\xb3\x7c\x7c\x60\x9e\xd1\xad\xbe\x4a\xf9\x82\xa6\xe3\x06\ +\xbb\x24\x03\x94\xf4\xba\x54\x61\xab\x3d\x84\x63\x8b\xa6\x6e\x79\ +\xa7\x6e\xd7\x16\xfb\x2e\x16\x8f\x55\x87\xf3\xaa\x0d\xdd\x27\x9b\ +\xe4\x33\x8b\x55\xbe\xaa\xa3\x6e\x00\x4b\xc3\x52\x79\x50\x35\x78\ +\x7f\x50\xb2\x41\x00\x29\x01\x09\x82\x2e\xaa\xb8\x48\xa0\xb4\xed\ +\xfb\xa9\xa1\x12\x1d\xfa\x22\x55\xb1\xa1\x3d\xdb\x97\x04\xab\x68\ +\x7e\xac\x3b\xf4\x75\x4d\x04\x9c\x12\xbf\x94\x6f\x98\xa4\x31\x95\ +\xb4\x8b\x82\x46\x02\x7b\x33\x1b\xcf\xa0\x55\x0a\xff\x79\xf3\xb6\ +\x4d\xf6\x51\x14\xfe\xcb\xc5\xa7\x2e\x4f\x2b\x03\xba\xe0\x05\x20\ +\xdd\x16\x40\x55\x56\xa3\x50\x05\x26\x95\xd7\xc9\x06\xb8\xad\xfa\ +\xa2\xdf\xa1\x3d\x81\x78\x6c\x15\x03\x63\x05\x56\x37\x69\x35\xad\ +\x60\x55\xdf\x33\xda\x2a\xc6\xd1\x26\x51\x83\x8c\xf7\x32\x49\xd3\ +\x77\x6a\x91\x5e\x51\xaa\x27\x4d\x64\xca\x7a\x95\xca\xa8\x77\xdf\ +\x14\x93\x9e\x73\x33\xa3\xf1\xbe\x7c\x5a\x75\xa8\x0c\x82\xa2\x3d\ +\xe8\x94\x2e\x18\x30\xf4\x4f\xa5\xd4\x4e\xb4\x2b\xc1\x8b\xed\x86\ +\xc7\xac\x1e\xde\xa2\x09\xb9\xb7\x3d\xb2\xaa\x50\x2e\x61\xf7\x21\ +\xf8\xf5\xe2\x24\xed\xfa\xce\xcb\x2b\xa5\xed\x75\x08\xe5\xa3\x28\ +\x52\xe8\x65\x6e\x59\xc6\xe3\x18\x8a\xaa\xe0\x9f\xd8\xf8\x04\x01\ +\x4c\x50\xe9\xab\x70\x09\x31\x72\xcd\xf2\x22\x8d\x1c\x30\x64\x22\ +\x05\x3e\xcb\xd0\x6e\x64\x31\x85\x4c\x24\x04\x3d\x84\x19\xb4\xfe\ +\x8d\xb4\xdd\xc4\x80\xca\xca\x21\xa0\x4b\xd0\x0a\x9b\x16\xb2\xab\ +\x80\x6d\xff\xd8\x2b\x8a\x63\x14\x3e\x8c\x09\x05\x98\x3a\xc8\xb2\ +\x4c\xcb\xed\xd6\x10\x60\x6a\x21\xdf\xb4\x7d\x55\x86\xdb\xd2\xb7\ +\xa5\x72\x3d\x06\xee\x65\x50\x5e\x0d\x54\x97\x15\x04\x43\x64\x08\ +\x22\xbe\xe9\x92\x00\xbb\x8d\x5c\x81\x09\x67\x19\x2e\x0a\x29\xfb\ +\xb2\xff\x78\x92\x85\x25\x6c\xdf\x8f\x21\x74\xc2\x81\x6b\x7a\xbe\ +\x6d\xb5\x3e\xa9\xf0\xd3\x88\x87\x3c\xd5\x62\x5b\x53\xe5\x73\x79\ +\x69\x91\x66\x4e\x7d\xe4\x94\x0f\xde\xb9\xfb\xc1\x99\x28\x1c\x2c\ +\xcf\x0d\x74\x57\xef\x20\xef\x75\x00\x19\x38\x26\xb9\xd0\x21\xf9\ +\xdf\x52\x59\x08\xa6\x92\xcc\xd7\x51\x84\xf2\x01\x3f\x5f\x41\xd1\ +\xc6\x7e\xe0\x11\x3b\xf8\xa5\x28\x12\x14\x54\x28\x06\xc8\x05\xfc\ +\xe0\x73\x6a\xf6\x3f\x4f\xd1\xf2\x6d\x4f\x77\xac\x07\x04\xeb\xc9\ +\x50\xae\xa1\x90\x35\x25\x18\x9d\x52\xce\x1e\xbf\x3d\xc7\x37\x4f\ +\xf7\x9e\x23\xe3\xac\x3a\x6c\x01\x44\xa7\xa6\x9c\x53\x12\xc0\x2b\ +\x29\x37\x7a\x3f\x4e\x42\xff\x41\x43\xf6\xc9\xb0\x50\x85\x25\xa9\ +\xbe\x5e\xb0\xc8\x20\xe5\xf9\xe7\xee\xcf\x51\xd0\xd6\x9d\xe7\x48\ +\x41\x1b\xf9\x53\x17\x59\xd5\x89\xdf\x3d\xe9\xe1\x07\x45\x6b\xb9\ +\xf4\x96\x84\x3e\x32\xbe\x55\xdf\x58\x1c\x95\x08\x17\x55\x8d\xc6\ +\x14\x7b\x55\xcf\xe1\x0d\x58\x37\x7e\x7b\x8e\x72\x81\xee\xff\x6c\ +\x10\x7f\x36\xe5\x46\x41\xc4\xc8\xaf\x40\xec\x97\x8e\x3b\x12\xcf\ +\x7c\x50\xe2\x3d\x99\x44\x87\x1d\x64\xd7\xc4\x33\x6b\x0a\xde\x83\ +\x78\x5e\xf0\x3c\xeb\x6d\x8b\xdd\x14\xdb\x75\xaf\xf7\x0d\x7d\xde\ +\x83\x62\x76\xc4\xbc\xe5\x92\x2e\x89\xf5\x18\x99\xd7\xa5\x3c\x17\ +\xd9\xdf\xcf\xb9\x1f\x47\xb7\x71\xe8\x1e\x03\xdd\xba\x44\xd7\x0f\ +\xda\xbb\xd1\xed\x39\x52\xcd\xab\x72\x9c\x2a\x0c\xe4\x3e\x5c\xfb\ +\x91\xc9\xed\x11\xb3\xad\xa2\x98\x42\xcf\x1d\xb0\xad\x4c\xc7\x56\ +\xc5\xb6\xb1\xfb\x33\x6f\x14\xcf\x91\x81\xdd\x5b\xad\x85\x70\xdb\ +\x13\x77\x84\xc3\xe7\xee\xcf\xbe\x55\x3c\x47\x26\x76\xaf\xb5\x4d\ +\x44\xdf\xeb\xdd\x16\xff\xb8\x26\xf9\xd7\x33\x11\x1f\x05\xb1\x03\ +\x15\x01\xfb\xf5\x2b\xed\x3d\xbe\x51\x09\x7e\x36\x68\x8f\x81\x78\ +\xc4\x84\xb7\xd9\xba\x76\xdc\xf5\x7d\xe2\x39\xa6\x39\xe8\x7e\xed\ +\x29\xc6\x75\x98\xde\xe7\x7b\xbb\x87\xa4\xd9\x13\xc9\x6f\x7f\xb5\ +\xb5\x13\x30\x74\xb5\xd7\x1a\x0e\x10\x51\x77\x47\x7f\xcf\xbc\x45\ +\x7c\x23\x60\x33\x63\x75\x7d\x31\x53\xff\x06\xbb\xbe\xf8\x1f\xbe\ +\x4f\x01\xc4\ +\x00\x00\x09\xf8\ \x00\ -\x00\x1d\x3d\x78\x9c\xed\x59\x5b\x73\xeb\xb6\x11\x7e\xf7\xaf\x60\ -\xe8\x97\x64\x2a\x82\xb8\x10\x24\x40\x4b\xce\x4c\x72\x26\x93\xcc\ -\xb4\x2f\x6d\xda\x3e\x66\x28\x12\x92\x19\x93\x84\x42\x82\x96\x94\ -\x5f\x9f\x05\xc5\x9b\x24\xab\x39\x6d\x7c\x92\x9c\x26\x94\x3d\x16\ -\x76\x17\xc0\xee\x87\x6f\x17\x00\xbd\xfc\xfc\x50\x16\xce\x8b\xaa\ -\x9b\x5c\x57\x2b\x97\x20\xec\x3a\xaa\x4a\x75\x96\x57\xdb\x95\xfb\ -\xcf\x6f\xbf\xf2\x84\xeb\x34\x26\xa9\xb2\xa4\xd0\x95\x5a\xb9\x95\ -\x76\x3f\x7f\xbc\x5b\x7e\xe2\x79\xce\x97\xb5\x4a\x8c\xca\x9c\x7d\ -\x6e\x9e\x9c\x6f\xaa\xe7\x26\x4d\x76\xca\xf9\xf4\xc9\x98\x5d\xec\ -\xfb\xfb\xfd\x1e\xe5\xbd\x10\xe9\x7a\xeb\x7f\xe6\x78\xde\xe3\xdd\ -\xdd\xb2\x79\xd9\xde\x39\x8e\x03\xf3\x56\x4d\x9c\xa5\x2b\xb7\xef\ -\xb0\x6b\xeb\xa2\x33\xcc\x52\x5f\x15\xaa\x54\x95\x69\x7c\x82\x88\ -\xef\x4e\xe6\xe9\x64\x9e\xda\xd9\xf3\x17\x95\xea\xb2\xd4\x55\xd3\ -\xf5\xac\x9a\xfb\x99\x71\x9d\x6d\x46\x6b\xeb\xcd\x9e\x75\x46\x44\ -\x4a\xe9\x63\xea\x53\xea\x81\x85\xd7\x1c\x2b\x93\x1c\xbc\xf3\xae\ -\xe0\xe3\x6b\x5d\x29\xc6\xd8\x07\xdd\x64\xf9\x7e\x56\x71\x03\x80\ -\xee\xe0\x77\x34\x1f\x04\xa8\xd1\x6d\x9d\xaa\x0d\xf4\x53\xa8\x52\ -\xc6\x7f\xf7\xed\xbb\x51\xe9\x61\x94\x99\x6c\x36\xcc\x80\xe7\xd9\ -\xac\x67\x20\x57\x49\xa9\x9a\x5d\x92\xaa\xc6\x1f\xe4\x5d\xff\x7d\ -\x9e\x99\xa7\x95\xcb\x02\x44\x18\x3c\xbc\x13\x3e\xa9\x7c\xfb\x64\ -\x2e\xa5\x79\xb6\x72\xc1\x7b\x2a\xc5\xa9\x3d\x23\x07\x39\x19\xf4\ -\x03\xc7\xa3\x06\x23\x49\x11\x71\x6a\xc2\x59\x74\xb2\x19\x42\x88\ -\x33\x9d\x5a\x9f\x60\x48\x55\xe6\x49\x6b\x74\x09\xab\x96\xa6\x45\ -\xd2\x34\xf9\x26\x4f\xa1\xa1\xab\x5d\xd1\x6e\xf3\xea\xbb\x5a\xe7\ -\xdf\x19\xad\x0b\x34\x60\x37\x4e\xa4\x0e\x3b\x5d\x1b\xef\x90\xed\ -\x00\xc1\x30\x7a\x55\x79\x9c\x2b\x5f\x72\xb5\xff\x42\x1f\xc0\x33\ -\x07\x3b\x8c\xc2\x8f\xfb\x08\xf2\x65\xa6\x36\x8d\xd5\x9f\xa2\xb4\ -\x2d\x08\x33\x72\x1d\xbf\xd3\x8e\x4e\x5b\x8f\x33\x3b\xc6\x64\xbb\ -\x4e\x9a\x13\x92\x8e\xb3\x4b\xb6\xc0\xba\x42\xd7\x2b\xf7\x7e\xd3\ -\x3d\xbd\x62\xad\xeb\x4c\xd5\x83\x2a\xec\x9e\x33\x95\x86\x95\xc9\ -\xcd\xf1\x94\x67\xfd\xd8\x43\x18\x76\xd4\x51\x8f\x5f\xd7\x37\x4f\ -\x49\xa6\xf7\x2b\x97\x5e\x2a\x7f\xd4\xba\x84\x75\x44\x92\x4b\x4c\ -\xb1\xbc\x54\xa7\x80\x84\xc7\x28\xa2\x42\x70\x46\xae\xb4\x30\x21\ -\x8f\x50\x24\x43\x22\xd8\x95\xb2\xad\x6b\xc8\x44\xaf\x48\x8e\x0a\ -\xa2\xea\xfe\x0c\x23\x34\x4f\x7a\xbf\xad\x2d\x3a\x9b\xa4\x18\xe1\ -\x19\xbb\x5a\x95\xb7\x5e\xdb\x65\x30\x75\x7b\xa5\x06\x66\xb4\x36\ -\xc9\xbd\xb6\xca\x0d\x24\xd2\xee\x30\x1f\xb6\xcd\x33\xd5\xdc\x18\ -\x78\x9f\x57\x00\x83\xd7\x73\x9a\xb0\x11\xe5\x4b\x8b\x81\xe0\x11\ -\x16\x37\x2c\x2c\x45\x6e\xa8\x8e\xb7\x55\x65\x72\xc8\xcb\xfc\x47\ -\x05\x91\x93\x8e\x58\x40\x9e\xb3\xb0\x4f\xdd\x1c\xc7\x1c\x6d\xb2\ -\x1e\x8e\x56\xe6\x0e\x42\x0b\x98\x15\xb0\x28\xe4\xa3\x50\xd7\x39\ -\xe4\xc0\xcc\x9d\x41\x74\x9c\x8b\x6c\x6a\x43\x65\x3e\xd8\x79\x2f\ -\x64\x96\x55\x03\x91\xfd\x6b\x26\x77\xf2\x52\x99\x24\x4b\x4c\x32\ -\xd1\x7a\x90\x50\x29\xf1\x10\x09\x54\xc5\xf8\xef\xef\xbe\x7a\xec\ -\x27\x58\xa6\x69\xfc\x6f\x5d\x3f\x0f\xf3\x39\x8e\x35\x48\xd6\xba\ -\x05\x64\xdd\xc7\x51\xbc\xcc\xd2\x18\xea\x18\xe4\xf7\x63\x5e\x02\ -\x59\x6d\x09\xfc\x0b\xd4\xad\xa5\x3f\x29\xce\x8c\x2d\x38\xd3\xa0\ -\xa7\x61\x6b\x75\x2a\x88\xaf\xee\x0a\x59\x5a\xe6\xb6\x93\xff\x0f\ -\x93\x17\xc5\x37\x76\x92\x3e\xe2\xd9\xa0\xb9\x29\xd4\x24\x5c\xfa\ -\xbd\xf7\x7d\x6c\xfe\x2c\xb8\xa5\x3f\x44\xdf\xb5\xb6\x13\x2a\x67\ -\x2c\x1f\x17\xb6\x48\xd6\xaa\x58\xb9\x7f\xb5\x4a\xe7\x4a\xbb\xad\ -\x75\xbb\x2b\x75\xa6\xfa\xee\x23\x9a\x2a\x35\xe3\x52\x99\x63\x01\ -\xfa\x0d\x78\x1f\xdf\x67\xeb\x4c\x29\xf6\x60\x1b\x5e\x9f\xf8\x31\ -\x39\x35\xeb\xb6\x80\xba\xf6\xa2\x2a\x9d\x65\x0f\x8d\xa9\xf5\xb3\ -\x8a\xef\x31\x0e\x04\xc6\x7d\xf3\x44\xfe\x78\x6c\x16\x79\xa5\xc0\ -\x8d\xb8\xf9\xa1\x4d\x6a\x35\x97\x7e\xaf\xf3\x2a\x06\xdc\x54\x3d\ -\x48\xbb\x46\x01\x04\x36\x71\x30\xc8\xb2\x04\x6a\x4b\x5d\x27\xc7\ -\xb8\x82\x6d\x7e\x2e\xd5\x9b\x4d\xa3\xcc\x34\xd3\xe0\x2a\x46\xac\ -\x7f\xce\x88\x6d\xc3\x65\x52\x4e\xf4\xec\xb3\x94\x72\x24\xed\x23\ -\x46\xc5\x90\x9c\x24\x44\x2c\x24\x38\x9c\xc6\x39\x74\xa5\x4c\xf0\ -\x28\x9a\xf2\xc3\xd2\x3b\x40\x14\x9e\x70\x1a\xa2\x3e\x74\xa5\x94\ -\x85\x78\x2a\x6b\x20\x3d\xce\xa5\x03\x17\x96\xbb\xc4\x3c\xbd\xb6\ -\x10\xb3\x80\xe3\x7b\xc2\xe8\x3a\x4c\xcf\x41\x26\x28\x60\xa1\x75\ -\xfd\x12\xec\x75\x6b\xcc\x5b\x41\x3d\x32\x60\x0c\x03\xc0\xfc\x9b\ -\xd3\xe3\xc0\xe4\x62\x8c\xde\xf9\x97\xc3\x30\xe2\xe2\x0a\x7a\x1b\ -\x20\xe4\x71\x38\x09\xc7\x22\xae\x2b\xf0\xd8\xe8\xda\x83\x72\xfe\ -\x92\x98\xb6\x56\x67\x55\x65\xac\x16\x40\x5f\x9b\x60\x50\x78\xd3\ -\xf4\xe7\x91\xbb\x17\x78\xcd\x36\x9b\x9f\x01\x4f\x72\x70\x0a\x36\ -\xa6\xdf\x00\x3d\x2a\x80\x5a\x38\x8a\xe8\x82\x4a\xc4\xe1\x5b\x18\ -\x39\x5f\x4f\x98\xbe\x86\x9e\xf8\x13\xbd\x13\x7a\xa5\x13\x20\xc6\ -\x85\x94\x01\x59\xd0\x10\x05\x92\x61\x40\x2f\x75\x08\xa2\x9c\x44\ -\x91\x94\x0b\x7c\xeb\xfb\x15\xae\x0c\x96\xc0\xc3\xef\x8d\xec\x7f\ -\x97\xb2\x70\xda\x96\x94\x5d\xe2\xc6\x19\xed\xea\xcd\x6f\xc0\x3a\ -\x8e\x28\x8b\x38\xc7\x6c\x41\x81\x6a\x70\x3a\xe1\x4e\x84\x08\xe1\ -\x94\x08\x6e\x45\x01\xe5\x0c\xd2\x98\x60\x24\x22\xcc\x79\xb0\x20\ -\x12\x6a\x29\x27\x98\x38\x04\x1a\x02\x09\xca\x04\x11\x4e\x01\x4c\ -\x25\x54\x06\x41\xb0\x08\x50\x88\x09\xe7\x83\x80\x2f\xa0\xbe\x51\ -\xca\xc3\xd0\x2e\x92\x20\x94\x8a\x05\x45\x38\xe0\x70\x8c\x87\xe9\ -\x31\x8e\x08\x61\x0b\x0b\x02\x13\xfc\x6a\x35\x02\xcc\xa2\xb7\x5b\ -\x8b\xdf\x3d\x8d\x25\x02\x64\x85\x20\xb6\x06\xc0\x89\x8b\x0a\x20\ -\x31\x5e\x78\x23\x5e\x37\xbe\x5f\x93\x58\x04\xd8\x7b\xff\xf2\xf0\ -\xf1\x03\x47\xf8\xa9\x7a\x06\x6f\x82\x9c\xfc\x03\x21\x47\x09\x0a\ -\x89\x84\xdb\xdf\x9b\x20\xc7\x3e\x50\xe1\xfc\x7d\x9d\x75\xec\x7e\ -\x13\x12\x12\x86\x14\x32\x15\x0e\x97\x3c\x0a\x43\x31\xdb\x6f\xf8\ -\x6c\x8f\xb9\xf8\x7e\x63\xbf\xf9\x03\x02\x07\x29\x4b\x83\x40\x30\ -\xfe\xcb\x80\xfb\x1f\x72\xf5\x95\x6b\x4e\xf7\x22\xa4\xdb\x9f\xe1\ -\x79\xc8\xf2\x66\x07\x17\xa3\x38\xaf\x2c\x0a\x0f\xfa\x45\xd5\x9b\ -\x42\xef\xe3\x97\xbc\xc9\xd7\x85\x7a\xe8\xfe\xe6\x85\x0d\x6f\x10\ -\x9d\x92\x9d\xa6\x3c\x49\xf0\xfb\xdf\x93\x14\xdf\xe0\xb1\x38\x0c\ -\xf7\x24\x14\xf2\x90\x93\x0f\x5a\x0b\xfe\xd3\x65\x89\x3c\x94\x49\ -\xfd\xac\xea\x53\x07\x55\x25\x10\x9e\xb7\x4e\xd2\x67\x7b\x6b\xac\ -\xb2\x38\x49\xd3\xb6\x6c\x8b\xc4\xa8\xb3\x25\xb1\xa0\xda\x22\xe6\ -\x71\xf8\x84\xde\x74\xb2\xef\x2f\x55\x12\xc2\x92\x38\x62\xd7\x97\ -\xaa\x6b\x0d\x5c\x95\x28\x12\x92\x8a\x30\x9a\xf2\xa2\x7b\xd5\x64\ -\xcf\x03\x94\x4e\x47\x82\xd3\xad\x2a\xc4\x42\x72\x42\x27\x69\x77\ -\xab\x22\x81\x08\x44\x34\x8d\x6a\xea\xa4\x6a\xec\xe5\x1e\x9c\xd5\ -\x06\xfc\xff\xd4\xc3\x88\x46\xf0\xe1\x9c\x7d\xf6\xab\xd0\x83\x04\ -\x41\x24\xde\x84\x1e\x42\x06\x1f\x39\x41\xbc\xe8\x06\x45\xa8\xbc\ -\x45\x91\x99\x06\xd6\x5d\xc0\x41\x95\x06\x4c\xd2\x0b\x8a\xd0\x28\ -\x94\x24\xf8\x48\x29\x42\x42\x9a\xf1\xb7\xa9\x20\xff\x07\x14\xe1\ -\xbf\x90\x22\x24\xb0\x97\x10\xc9\xa3\xcb\x2a\x12\x52\x38\xe9\xb0\ -\x8f\x94\x23\xd0\x79\x43\xe9\xdb\x70\x44\x7c\xd0\x43\xc0\xaf\xc2\ -\x91\xd9\xd9\xe9\x9c\x25\xe4\x26\x4b\xc8\x39\x4b\xa4\xfd\x87\x02\ -\xac\xde\x39\x4b\x58\x08\x07\x0f\x3a\x23\xd4\x1b\xb2\xe4\xea\xcc\ -\x32\xda\x7b\xa9\xaa\x00\x5e\xaf\xdb\x03\xe1\xf0\x13\x04\xe4\x95\ -\xb7\x64\x57\xe6\xe0\x84\x47\x90\x60\x4c\x82\x7f\xe3\xbb\xf5\xed\ -\xe3\xdd\xd2\xbe\xdb\x7e\xbc\xfb\x09\x54\x3a\xbf\x64\ -\x00\x00\x08\x75\ +\x00\xa0\xff\x78\x9c\xed\x5d\x5d\x8f\xa3\x38\x16\x7d\xef\x5f\xc1\ +\xa6\x5f\xa6\x35\xc5\x87\xbf\x30\xce\xa4\x6a\xa4\xdd\xd6\x48\x23\ +\xed\xd3\xce\xac\xf6\xb1\x45\x80\xa4\x50\x27\x10\x01\xa9\x24\xf3\ +\xeb\xc7\x26\x21\x21\xa9\xd8\xd3\xbb\x31\xab\xca\xad\x8e\xba\x55\ +\x85\x6d\xc0\x1c\xdf\x6b\x1f\xdf\x5c\x4e\x4d\x7e\xde\x2e\x17\xce\ +\x4b\x56\xd5\x79\x59\x3c\x8e\x90\x17\x8c\x9c\xac\x48\xca\x34\x2f\ +\xe6\x8f\xa3\x7f\xff\xfe\x8b\x1b\x8d\x9c\xba\x89\x8b\x34\x5e\x94\ +\x45\xf6\x38\x2a\xca\xd1\xcf\x4f\x1f\x26\x7f\x73\x5d\xe7\x1f\x55\ +\x16\x37\x59\xea\x6c\xf2\xe6\xd9\xf9\xb5\xf8\x5a\x27\xf1\x2a\x73\ +\x7e\x78\x6e\x9a\xd5\xd8\xf7\x37\x9b\x8d\x97\x1f\x0a\xbd\xb2\x9a\ +\xfb\x9f\x1c\xd7\x7d\xfa\xf0\x61\x52\xbf\xcc\x3f\x38\x8e\x23\xef\ +\x5b\xd4\xe3\x34\x79\x1c\x1d\x4e\x58\xad\xab\x45\xdb\x30\x4d\xfc\ +\x6c\x91\x2d\xb3\xa2\xa9\x7d\xe4\x21\x7f\x74\x6a\x9e\x9c\x9a\x27\ +\xea\xee\xf9\x4b\x96\x94\xcb\x65\x59\xd4\xed\x99\x45\xfd\xb1\xd7\ +\xb8\x4a\x67\xc7\xd6\xaa\x37\x1b\xd2\x36\x42\x42\x08\x3f\xc0\x3e\ +\xc6\xae\x6c\xe1\xd6\xbb\xa2\x89\xb7\xee\xf9\xa9\xb2\x8f\xd7\x4e\ +\xc5\x41\x10\xf8\xb2\xee\xd4\xf2\xdb\x5a\x8d\x6b\x09\xe8\x4a\xfe\ +\x3f\x36\xef\x0a\xbc\xba\x5c\x57\x49\x36\x93\xe7\x65\x5e\x91\x35\ +\xfe\xe7\xdf\x3f\x1f\x2b\xdd\xc0\x4b\x9b\xb4\x77\x99\x0e\xcf\xb3\ +\xbb\x9e\x81\x5c\xc4\xcb\xac\x5e\xc5\x49\x56\xfb\x5d\x79\x7b\xfe\ +\x26\x4f\x9b\xe7\xc7\x11\xa1\x1e\x22\xf2\xc3\xda\xc2\xe7\x2c\x9f\ +\x3f\x37\x97\xa5\x79\xfa\x38\x92\xbd\xc7\x22\xda\x1f\xf7\x8c\x03\ +\xed\x1b\x1c\x2e\x3c\x3e\xd6\x04\x9e\xc0\x1e\x72\x2a\xc4\x08\xdf\ +\xb7\xe9\x1e\x61\x9c\x96\x89\xea\x93\xbc\x64\xb6\xcc\xe3\x75\x53\ +\x2e\xe5\xa8\x25\xc9\x22\xae\xeb\x7c\x96\x27\xf2\xa0\x2c\x56\x8b\ +\xf5\x3c\x2f\xbe\x4c\xa5\x95\x7d\x91\xc3\x39\xcd\x8b\xb6\xf8\x4b\ +\x53\x96\x0b\xaf\x03\xf2\x78\xd7\x6c\xbb\x2a\xab\xc6\xdd\xa6\x2b\ +\x09\x67\xc8\xaf\x56\xee\xfa\x95\x2f\x79\xb6\xf9\x7b\xb9\x95\xdd\ +\x74\x02\x87\x60\xf9\x6f\xf4\x24\xcb\x27\x69\x36\xab\x55\xfd\xfe\ +\x91\xd5\x91\x7c\x66\x3e\x72\xfc\xb6\xf6\xf8\x04\xaa\xfb\xa9\xba\ +\xc6\xa9\xed\x34\xae\xf7\xb0\x3a\xce\x2a\x9e\x4b\x13\x5c\x94\xd5\ +\xe3\xe8\xe3\xac\xfd\x1c\x2a\xa6\x65\x95\x66\x55\x57\x15\xb6\x9f\ +\xb3\xaa\x52\x0e\x53\xde\xec\xf6\x4e\x77\xb8\x76\xf7\x18\xea\xaa\ +\xc7\xfa\xe0\x7a\x7d\xfd\x1c\xa7\xe5\xe6\x71\x84\x2f\x2b\xff\x28\ +\xcb\xa5\x1c\x54\x4f\x30\x11\xe0\x40\x5c\x56\x27\x12\x09\x17\x05\ +\xd4\x13\x04\x0b\xf6\xaa\x76\xd7\xda\x83\x3c\x33\x7a\x75\xe1\x64\ +\x5d\x55\xd2\x2b\xdd\x45\xbc\xcb\xe4\x43\xb5\x3f\xd0\xa1\x51\xfd\ +\x5c\x6e\xe6\x95\x02\xa7\xa9\xd6\xd9\xe5\x99\xaa\xc6\x9d\x4e\xd5\ +\x20\x5c\xab\x96\x46\xb2\x56\xfe\xee\xae\x8b\xbc\x91\x3e\xb5\xda\ +\xf6\xaf\xba\xce\xd3\xac\xbe\x7e\x62\x5d\xc4\x2b\x77\xbe\x28\xa7\ +\xf1\xe2\x7a\x83\x4d\x5e\x48\x90\xdc\x83\xf9\x23\x72\x1c\x83\xcb\ +\x16\x9d\x2f\xf0\x20\xd2\xb4\x50\x06\xa4\xa9\xda\xe9\xab\x96\xf1\ +\x36\x5f\xe6\x7f\x64\x12\x18\xd4\x9a\x9d\x34\xad\x33\x58\xf6\xa7\ +\x39\x4e\xb3\x53\x7e\xbd\xdd\xa9\xb2\x51\x57\xa8\xf0\x54\x05\x58\ +\x08\x7e\x2c\x2c\xab\x5c\xba\x4b\xaf\x3b\x5d\xd1\xae\x5f\xa4\x66\ +\x01\x39\x89\x6f\xd5\x7d\x2f\xca\x94\xcd\x75\x66\xee\xbf\xb6\xf3\ +\xb6\x7c\x99\x35\x71\x1a\x37\xf1\xc9\xe8\xbb\x12\xd9\x97\xa0\x7b\ +\x12\x39\x81\x8e\xff\xf5\xf9\x97\xa7\xc3\x0d\x26\x49\x32\xfe\x4f\ +\x59\x7d\xed\xee\xe7\x38\xaa\x41\x3c\x2d\xd7\x12\xd9\xd1\xd3\xb1\ +\x78\x92\x26\x63\x39\xe5\xc9\xa9\xe0\x29\x5f\x4a\x53\x56\xb3\xe5\ +\x8f\x72\x8a\x9b\xf8\xa7\x8a\xb3\xc6\x0a\x9c\xd3\x45\xf7\x97\xad\ +\xb2\xfd\xdc\x79\x75\x01\x49\x93\x65\xae\x4e\xf2\x7f\x6b\xf2\xc5\ +\xe2\x57\x75\x93\xc3\x13\xf7\x2e\x9a\x37\x8b\xec\x54\x38\xf1\x0f\ +\xbd\x3f\x3c\x9b\xdf\x7b\xb8\x89\xdf\x3d\x7d\x7b\x34\x3f\xa1\x72\ +\xe6\x04\xc7\x81\x5d\xc4\xd3\x4c\x5a\xe4\x3f\x55\xa5\xf3\xaa\x76\ +\x5e\x95\xeb\xd5\xb2\x4c\xb3\xc3\xe9\x1d\x9a\xf3\xb3\x61\x47\x04\ +\x45\xc7\x91\x6b\xaa\xb8\xa8\x15\x32\x72\x1c\xe2\xa6\xca\xb7\x3f\ +\x20\x8f\x0a\x2c\xdd\x94\x3e\x04\x1e\x62\x54\x4d\x5d\xd1\x83\x5c\ +\x31\x42\x26\x30\x67\x44\xc8\xe2\x90\x87\x01\x93\xc3\xf5\xe0\x0a\ +\xe6\xd1\x30\x24\x88\x3f\xb8\xc4\x8b\x08\x13\x22\xa2\x9f\x8e\x03\ +\x32\xa9\xb2\xa4\xe9\x8d\x59\x3b\x27\x91\xfd\x67\xd4\x2b\x3f\x33\ +\x39\xc7\x91\xcd\x5c\x8c\x7a\x05\xb2\x9e\xb1\xde\x71\xe7\x53\xb4\ +\x57\x76\xf0\xc4\x7e\x91\x7a\x5a\xd5\x03\x16\x11\xd1\x2b\xae\x9b\ +\xdd\x42\x22\x34\x93\xe3\x37\xfe\x18\x04\x49\x32\x9b\xfd\xa4\x0e\ +\xdc\xc3\xc4\x38\x46\xfb\xc3\x6a\xbd\x90\xf3\xfe\x4b\x56\x94\x69\ +\xfa\x53\xdd\x54\xe5\xd7\x6c\x7c\x98\x8a\x0f\x87\x7b\xf7\x1f\x07\ +\xdd\xa1\x34\x8d\xac\x5a\x48\xb7\x6c\xc6\xb4\x2b\x4b\x63\x39\x9f\ +\x56\x55\xbc\x1b\x17\x92\xe7\x74\xa5\xc7\x5b\xf5\x8c\xc7\x26\x5a\ +\xe2\x36\xb4\x5c\xa4\xc7\x2b\x8e\x53\x0a\x0d\xaf\x90\xdc\x8a\x97\ +\x1b\xe9\x11\x0b\xc3\x28\x00\x87\x18\xbf\x19\xb1\x40\x8f\x18\xa5\ +\x8c\x41\x43\x8c\xa3\x5b\x11\x23\x2e\xd6\x5a\xd9\x6c\x86\x63\x1c\ +\x83\xc3\xec\xc6\x59\x5f\x5a\x19\x77\xb5\x73\x3f\x50\xcc\x6e\x9e\ +\xfb\xdd\xc8\x65\x2e\x7f\x5f\xa8\x45\xb7\xaf\x00\x81\x4b\x5c\x02\ +\x1c\x35\x76\x8e\xda\xed\x3c\xc3\xa5\x3a\xc4\x80\x30\x8d\x0b\xc4\ +\x6c\x30\x0d\x13\x3b\x03\xc1\x35\x2e\x31\xb3\xc0\x35\xf4\xf3\x19\ +\x10\xb6\x71\x81\x99\x0d\xb6\x11\xba\xa1\x7e\x3a\x13\x02\x20\x68\ +\x36\xe8\x06\xd6\xbb\x27\x50\xd4\xec\x10\x0e\xe1\x62\xd8\xb8\x21\ +\xe2\x05\xea\x63\x39\xb2\x61\xda\x79\x42\x88\x6d\xe8\x60\xb3\x60\ +\x75\x06\xe4\x20\x70\x0f\x0d\x72\x56\x28\x88\x21\xa0\x06\x81\x82\ +\xe8\xa0\xb3\xc1\x44\xb4\x8b\x2a\x0c\x26\xa2\x81\xce\x4a\xf8\x43\ +\x6f\x76\x51\x7b\x4f\xa8\xd8\xd9\xe0\x25\x86\xcd\x29\x6c\xf0\xec\ +\xd0\x13\xc3\xae\x0b\x34\x7c\x96\x02\x23\xdc\x15\xda\x9d\x3e\x10\ +\xfc\xf8\x39\x70\x37\xf3\xba\xc0\x14\x1b\x01\xc1\xec\x2e\x11\xb3\ +\x10\x4d\xd2\x6f\x22\x80\x70\xba\x0b\xcc\xec\xc4\x93\x5c\xa6\x47\ +\x0d\x04\x9d\xbb\x44\xcd\x4a\x44\xc9\x44\x82\x41\x30\xb9\x0b\xd4\ +\xec\xc4\x94\xb0\x3e\x14\x97\x52\x88\x0b\x81\xa5\xa8\x12\xd7\x6f\ +\xf4\x81\xe2\x66\x2b\xae\x64\x58\x48\x61\x22\x67\x89\xb3\x61\xd3\ +\xc2\x00\x03\x39\x36\x4c\x48\x2e\x20\xfa\xec\x06\xb5\x9e\x82\x05\ +\xee\x76\x97\x0d\xf5\xdb\x54\xc8\xc8\x59\xe1\x71\x5c\x1f\x5b\x02\ +\x8d\x9d\x0d\x36\x67\xd8\xdf\x43\xc6\xce\x4a\x58\xce\xf0\xdd\x2a\ +\x21\xf7\xbf\x7b\xd0\x20\x67\x83\xd6\x19\xf6\x5d\x94\xc6\x77\x9f\ +\x2f\xa2\x41\xce\x0e\xb1\xd3\xae\x13\x38\xe6\xb3\xfb\x8f\x8e\x5c\ +\xc7\xce\x56\x38\x4e\x1f\x0b\xe6\x71\x9c\x66\xf7\x0e\x9e\x18\x88\ +\xd7\x49\x97\xd5\x12\x3b\xb5\xe5\xbf\xff\x65\x42\x83\x9c\x8d\xd0\ +\x9c\x21\x9f\x04\x32\x76\xb6\x42\x74\x72\xc6\xd3\x06\x37\x41\xe3\ +\x67\x27\x58\xa7\x8d\x01\x40\xc6\xce\x4e\xc8\xce\xc0\x52\x20\xf0\ +\x3b\x0d\x74\x76\xc2\x76\xc6\x6f\xfb\xef\x9f\xe1\x69\xb0\xb3\x15\ +\xba\x03\xce\xf1\xae\xa3\x67\x2d\x7c\xa7\xa5\x2a\x20\x48\x1e\xf6\ +\x44\xfb\x21\xe7\xe8\x59\x49\x0c\x33\xbd\x9e\x34\x4d\x52\xc2\xee\ +\xdd\xf4\x34\xe0\xd9\xc9\x0d\x53\x81\x28\x6d\x34\x05\x34\x7c\x56\ +\xf2\xc3\x4c\x2b\x2e\x64\xf4\xec\xa4\x88\xc1\x26\x2b\x3a\xe8\xec\ +\x64\x88\x19\x12\x4e\x00\x90\x15\x1d\x76\xb6\x12\xc4\xb4\x96\x07\ +\x83\xac\xa0\x3d\x59\x09\xa2\x73\xf8\x6c\xe4\x39\x99\xbe\x68\x8c\ +\xa2\x38\xbe\xff\xed\x99\x0e\x3c\x2b\x29\x4f\xa6\xdd\x2d\x68\xf8\ +\x6c\x85\x56\x4c\xef\x87\xc1\x06\xd0\x52\x22\x94\x5c\x3b\xc2\xf7\ +\xe9\xc1\xb6\x92\xa2\x0c\x6a\x08\x00\x68\x8b\x16\x3d\x5b\xb9\x51\ +\xc6\xd7\x3b\xef\x9e\xb9\x68\xe1\xb3\x97\x22\xa5\xb5\x3f\xd0\xe4\ +\xc5\x62\xa6\x94\xfe\xf5\x80\xb7\x12\x6c\x99\xf8\x73\xad\x20\x54\ +\x8f\x40\x5c\x93\x84\x22\x02\x73\x11\x0a\xa5\x03\x85\xc3\x88\x50\ +\x46\x78\xab\x09\x85\x58\x10\x46\x4a\xfd\x09\x79\x88\x33\x4e\xb1\ +\xfc\x35\x0a\x3d\xca\x31\x8a\xa2\x07\x12\x79\xb2\x9e\x84\xfc\x4d\ +\x4a\x42\xe9\x83\x8b\x30\xd2\xeb\xed\x8b\x42\x99\x10\x83\x90\x5c\ +\x3f\x84\x2c\x94\x09\x33\x08\xa9\xf5\x43\x08\x43\x99\x5e\x69\x86\ +\x90\x58\x3f\x8c\x34\x94\x49\xad\x01\x84\xf8\xcc\x20\xe2\x50\x7a\ +\xe2\x03\x14\x35\x4b\xf2\x50\xfa\x88\x03\x4c\xdc\x6c\x09\x44\xe9\ +\xe7\x36\x20\xb8\x0d\x20\x11\x65\x5a\x0f\x40\xf0\x8e\x41\x44\xa2\ +\xc0\x4b\x52\x0e\x22\x13\xe5\x8a\xef\x4a\x51\xff\x8b\x52\x94\x49\ +\x30\x10\x82\x7a\xcf\x50\x5a\x51\xef\x4e\x63\xcb\x9a\x5a\x94\x89\ +\x81\x40\x40\x6e\x30\xbd\x28\xe8\x81\x8f\x21\x15\xa3\x4c\x71\x7a\ +\x08\x54\x64\x50\xcd\x28\xe8\xb1\x90\x41\x55\xa3\xa0\xeb\x65\x0f\ +\xab\x1b\xf5\x5d\x39\xea\x26\xe5\x28\xbd\xac\x0a\x6c\xf8\xac\x69\ +\x47\x19\xf2\x5b\x20\x03\x68\x51\x3d\xca\x90\xe2\x02\x03\xc1\x01\ +\xf4\xa3\x4c\x6b\x06\x08\xa6\x37\x88\x82\x94\x29\x85\x14\x04\xc7\ +\x1b\x48\x43\x0a\xbc\x28\xe8\x40\x2a\x52\xe6\xb4\x5b\x00\xcc\x6e\ +\x28\x1d\x29\x7d\xec\x04\x86\x3a\xcd\x70\x4a\x52\x7a\x57\x05\x8a\ +\x9c\x45\x2d\x29\x3d\x17\x86\x89\x9d\x4d\x35\x29\xe8\xd8\x0d\xa8\ +\x27\xa5\x5f\x25\x20\xeb\xd3\xd8\x51\x94\xd2\x7f\x39\x01\x19\x3b\ +\x5b\x9a\x52\xef\x14\x3d\x4b\xaa\x52\xfa\xdd\x04\x64\xf4\xec\xe8\ +\x4a\x99\x98\x31\x84\xac\xf8\x21\x95\xa5\xcc\x49\x74\xf7\x9f\x12\ +\x3f\xac\xb6\x94\x3e\x9d\x1b\x46\x3e\xfc\xc0\xea\x52\x86\x78\xf1\ +\x5b\xc9\x86\x7f\xb3\xfa\x52\x7a\xc7\x85\xac\x54\x63\x4b\x61\x4a\ +\xbf\xb3\x85\x8c\x9e\x4d\x8d\x29\xfd\xb7\xb4\xa0\x11\xb4\xa4\x32\ +\xf5\x3e\x35\xce\x2c\xe9\x4c\x99\x38\x0b\x04\xbe\x37\xac\xd2\x94\ +\x39\x43\xe0\xfe\x19\xdf\xd0\x5a\x53\x7a\xd2\x02\x83\xf3\x0d\xad\ +\x36\x75\x07\xaf\x40\xbe\x65\xbd\xa9\xef\x8a\x53\x37\x2a\x4e\xbd\ +\x4f\xd5\x24\x7b\x9a\x53\x7a\xff\x85\x8c\x9f\x25\xd5\x29\xd3\x1f\ +\xe5\x06\x40\x5d\x06\xd6\x9d\x02\x4e\x5d\x06\x57\x9e\xd2\x13\x67\ +\x18\xd4\x65\x60\xed\xa9\xef\xea\x53\x37\xaa\x4f\x19\xa4\x46\x21\ +\x03\x68\x53\x7f\x4a\x1f\x38\x80\x0d\xa1\x4d\x05\xaa\x77\x2a\x83\ +\x66\x4d\x83\xca\xa4\x56\x0d\x80\xc4\x0c\xaf\x42\x65\xfa\xf3\xa3\ +\x00\x78\xcc\xff\x43\x87\xea\x9d\xca\x68\xda\x54\xa2\xd2\xb3\xc1\ +\x37\x13\x88\x39\x69\x51\xf5\x91\xbc\xf0\x18\xc6\x6e\x4d\xb6\x46\ +\x1e\xa6\x08\xe3\x80\xa3\x5b\x3a\xfd\xe1\x02\x6f\xdc\x67\xf2\x87\ +\x71\x41\xd8\xc3\x21\xc5\xe4\x34\x83\x76\x83\x88\x02\x2f\xa0\x28\ +\x3a\x55\xa8\x55\x8f\x79\x81\x88\x18\x3d\xf9\x8d\x34\x0d\x86\xbc\ +\x28\xe0\xac\xe7\x4c\xca\x7e\x90\x47\x43\xc4\x71\xd8\x2b\x6d\xad\ +\x8d\x21\x41\x68\x70\xea\xc7\x15\xd9\xae\x87\x40\x89\x74\x45\x21\ +\x25\x21\x8d\xf8\x43\xe0\xb1\x00\x47\x21\x43\xf2\xd7\x87\xe0\xd3\ +\xe9\xb1\x8a\xaf\x75\x12\xaf\x24\xa2\xdb\x55\x59\x35\xee\x36\x5d\ +\xe5\x67\x0b\xf3\x65\x83\x5d\xd7\xe0\x38\x9a\xfd\x41\xd4\x77\x04\ +\x51\xc1\x99\xa0\xaa\x23\x5c\x50\x41\xa3\xf3\x7e\xec\x9f\x2b\x44\ +\x88\x22\xfa\x57\x18\xc8\xa6\x24\xf2\xb0\xda\x53\xa1\x3e\xb0\x12\ +\xc3\x10\x0b\x84\xf0\xb5\x61\x08\x99\x1c\x88\x6f\x18\xb9\x6e\x9c\ +\x09\xef\x81\xf0\xea\x45\x80\x5b\xe9\x04\xf2\x10\x0b\x31\x65\x94\ +\x5b\x71\x28\xad\x1f\xcd\x66\xb7\x67\x56\xca\x49\x4b\x70\x12\x0a\ +\x4a\x6c\xfa\x91\xc4\x57\xfc\x17\x7e\xa4\x66\x58\x1e\xd2\xb3\xf1\ +\xa6\xd2\x34\x22\x16\xf6\xfc\x40\x6d\xb7\xb9\xc7\x30\xe2\xec\xdb\ +\x1c\x89\x23\x46\x04\x16\x7f\xed\x48\x3c\x64\x4c\xdd\x5f\xda\xaf\ +\x74\x29\x42\xa5\x35\xef\x0d\x78\x3f\x06\xed\x94\x36\xf1\xeb\x17\ +\xf9\xe3\x4f\x98\x39\xa9\x7a\ +\x00\x00\x0d\x2a\ +\x00\ +\x00\x49\x75\x78\x9c\xed\x5c\x59\x6f\xdb\x56\x1a\x7d\xcf\xaf\xe0\ +\x28\x2f\x2d\x46\xa4\xee\xbe\x28\xb6\xfb\xd0\x62\x80\x02\x1d\x0c\ +\xd0\x76\x3a\x8f\x01\x4d\x52\x36\x27\x14\x29\x50\xf4\x96\x5f\x3f\ +\xe7\x5e\x2e\xa2\x36\x8f\xe3\xc4\x69\x12\x55\x6e\x20\xf2\xbb\xfb\ +\xf9\xce\xb7\x5c\xf2\xaa\x67\x3f\xdc\x2f\x8b\xe0\x36\xab\xd7\x79\ +\x55\x9e\x4f\x68\x44\x26\x41\x56\x26\x55\x9a\x97\x57\xe7\x93\x7f\ +\xff\xfe\x8f\xd0\x4c\x82\x75\x13\x97\x69\x5c\x54\x65\x76\x3e\x29\ +\xab\xc9\x0f\x17\xaf\xce\xfe\x16\x86\xc1\x8f\x75\x16\x37\x59\x1a\ +\xdc\xe5\xcd\x75\xf0\x73\xf9\x6e\x9d\xc4\xab\x2c\xf8\xee\xba\x69\ +\x56\xf3\xd9\xec\xee\xee\x2e\xca\x3b\x61\x54\xd5\x57\xb3\xef\x83\ +\x30\xbc\x78\xf5\xea\x6c\x7d\x7b\xf5\x2a\x08\x02\x8c\x5b\xae\xe7\ +\x69\x72\x3e\xe9\x1a\xac\x6e\xea\xc2\x57\x4c\x93\x59\x56\x64\xcb\ +\xac\x6c\xd6\x33\x1a\xd1\xd9\x64\x53\x3d\xd9\x54\x4f\xdc\xe8\xf9\ +\x6d\x96\x54\xcb\x65\x55\xae\x7d\xcb\x72\xfd\x7a\x54\xb9\x4e\x17\ +\x43\x6d\x37\x9b\x3b\xee\x2b\x51\x6b\xed\x8c\xb0\x19\x63\x21\x6a\ +\x84\xeb\x87\xb2\x89\xef\xc3\xed\xa6\x98\xe3\xa1\xa6\x8c\x10\x32\ +\x43\xd9\xa6\xe6\xd3\x6a\xcd\xd7\x00\x74\x85\x7f\x43\xf5\x5e\x10\ +\xad\xab\x9b\x3a\xc9\x16\x68\x97\x45\x65\xd6\xcc\x7e\xfa\xfd\xa7\ +\xa1\x30\x24\x51\xda\xa4\xa3\x6e\x7a\x3c\xb7\x46\xdd\x02\xb9\x8c\ +\x97\xd9\x7a\x15\x27\xd9\x7a\xd6\xcb\x7d\xfb\xbb\x3c\x6d\xae\xcf\ +\x27\x5c\x44\x94\xe3\x23\xbd\xf0\x3a\xcb\xaf\xae\x9b\x5d\x69\x9e\ +\x9e\x4f\x30\x7b\x66\x4d\x7b\x3f\x22\x07\x6d\x2b\x74\x1d\xcf\x87\ +\x12\x12\x59\x16\xd1\xa0\xa6\x92\xeb\xb6\x4e\xbf\x84\x79\x5a\x25\ +\x6e\x4e\xe8\x32\x5b\xe6\xf1\x4d\x53\x2d\xa1\xb5\x24\x29\xe2\xf5\ +\x3a\x5f\xe4\x09\x6e\xaa\x72\x55\xdc\x5c\xe5\xe5\xdb\x5f\x7e\xfc\ +\xed\x6d\x73\x5d\x67\xeb\xeb\xaa\x48\xdf\xfe\xfa\xaf\x9f\xdf\x36\ +\x55\x55\x44\x3d\x92\xc3\xb0\xd9\xfd\xaa\xaa\x9b\xf0\x3e\x5d\x01\ +\x4f\xa5\x0f\x16\x3e\xf4\x85\x17\x28\x3d\x4b\xb3\xc5\xda\xd5\x6a\ +\x17\xe7\xee\xb0\x3a\x3d\x09\x66\xbe\x74\x98\xab\x9b\x68\x7a\x9b\ +\x67\x77\x9b\xba\x97\xf1\xba\x05\x30\x08\x56\xf1\x15\xc8\x56\x54\ +\xf5\xf9\xe4\xf5\xc2\x7f\xba\x82\xcb\xaa\x4e\xb3\xba\x2f\x52\xfe\ +\xb3\x55\x54\x41\x21\x79\xf3\xd0\x9a\x57\xd7\x77\x3f\x5f\xd7\xeb\ +\x50\x4e\x0e\x97\xaf\xaf\xe3\xb4\xba\x3b\x9f\xb0\xdd\xc2\xf7\x55\ +\xb5\x3c\x9f\xc8\x48\x5a\x63\x09\xdd\x2d\x4d\xee\xcf\x27\xa1\x95\ +\x11\x55\x96\x48\xbd\x57\x8a\xf1\x98\x8c\x84\x35\x8c\xee\x17\xde\ +\xd4\x35\xec\x2f\x2c\xe2\x87\x0c\x8b\xf2\x5f\x7d\xff\x50\xcf\xdd\ +\x55\xed\xc0\x69\xea\x9b\x6c\xb7\xa5\x2b\x09\x2f\x2f\xab\xfb\xc3\ +\xc5\xa0\xc3\x8d\xb3\xec\xf0\xa6\xcc\x1b\x58\xcf\xea\x7e\xdc\xeb\ +\x4d\x9e\x66\xeb\xc3\x0d\xd7\x65\xbc\x0a\xaf\x8a\xea\x32\x2e\x0e\ +\x57\xb8\xcb\x4b\x80\x14\x76\x44\xa7\x7c\xd0\xc1\x6e\x8d\x9e\xf5\ +\x9a\x98\x23\x35\x30\xf7\x3d\x3d\x74\x45\x0f\xc7\x8b\x96\xf1\x7d\ +\xbe\xcc\xdf\x67\x00\x66\x4f\x15\x7e\x65\x63\x58\x2e\x7c\x85\xb3\ +\x2d\xd8\xda\x36\x41\xd0\x3c\x38\x0b\xbf\x7f\x70\xb2\x49\x2f\x74\ +\x78\x3b\x01\xb3\x56\x0f\xc2\xaa\xce\x61\x38\xa3\xe9\xf6\xa2\x87\ +\xb1\xc8\xf9\x03\xb8\xf3\x7b\xcf\x3f\xcf\x4e\xbd\x5b\xf6\x30\x2e\ +\xeb\xcc\x62\xb6\x6f\x17\x5e\xbe\xcc\x9a\x38\x8d\x9b\x78\x63\x24\ +\xbd\x04\x73\x23\xfd\xca\xe0\x5a\xe7\xbf\xfe\xf4\x8f\x8b\x6e\xa0\ +\xb3\x24\x99\xff\xa7\xaa\xdf\xf5\xe3\x06\x81\xab\x10\x5f\x56\x37\ +\xd0\xc4\xe4\x62\x10\x9f\xa5\xc9\x1c\xce\x10\x4e\xe2\x22\x5f\x82\ +\xfa\xce\x8f\xfe\x1d\xce\xef\x6c\xb6\x29\xd8\xaa\xec\xc0\xda\x74\ +\xda\x76\x0b\x17\xe2\xbd\xea\xc1\xd0\x92\x26\xcb\xdc\x35\x9a\xfd\ +\xd6\xe4\x45\xf1\xb3\x1b\xa4\x5b\xf1\xa8\xd3\xbc\x29\xb2\x8d\xf0\ +\x6c\xd6\xcd\xbe\x5b\xdb\x6c\xb4\xb8\xb3\x59\xbf\x7a\x7f\x77\xb5\ +\x41\x65\xcb\x68\x06\x45\x17\xf1\x65\x06\x06\xff\xe2\x0a\x83\x7d\ +\x9e\xd4\xd5\xcd\x6a\x59\xa5\x59\xd7\x7c\x40\x33\x4b\x9a\x41\x65\ +\xcd\x43\x81\x72\xef\x6f\xe6\xaf\x89\xff\xbc\x49\xf3\xf5\x0a\x2d\ +\x10\x21\x8a\xbc\xcc\xde\x54\x70\xcd\x8b\xa2\xba\x9b\xdf\xe6\xeb\ +\xfc\xb2\xc8\xde\xf8\xef\xbc\xc0\xca\x07\xd1\x02\xcb\x9f\x77\x9e\ +\xcc\xdf\x84\x9d\x1f\x9a\xd3\xf6\xb6\xbe\x29\xb2\x79\x59\x95\xef\ +\xe1\xc1\xde\xac\x9b\xba\x7a\x97\xcd\x5f\xa7\x97\x8e\x24\xdd\x6d\ +\x6b\x6d\xf3\x81\x3a\xac\x97\xbb\x49\x60\x41\xf3\xcb\x9b\xa6\x19\ +\xcb\xfe\x5b\xe5\xe5\x1c\xf8\x67\x75\x2f\xf5\x37\x05\x0c\xa7\x99\ +\x8b\x5e\x96\xc6\xf0\x78\x75\x8d\xe5\x60\xf4\x6c\x2c\xad\x16\x8b\ +\x75\xd6\xcc\x49\x2f\xdb\xcc\x78\x19\xd7\xef\xb2\xba\x6d\x90\x95\ +\x31\x16\x18\x5e\xc6\xc9\x3b\x07\x68\x99\xce\xe3\x04\x6e\xe7\xa6\ +\x40\xba\xb2\x65\x50\x0e\x56\x6e\xa8\x1c\x84\x7d\x98\xd4\x91\x8b\ +\x87\x9c\x0d\x05\x43\xa8\xdc\x2b\xd9\xb2\x3e\xd8\x51\xc8\xa3\x4d\ +\x61\x0d\x01\x8f\x38\xe2\xa2\xb2\x66\xa0\xd9\xd9\x2a\x6e\xae\x77\ +\xd4\xd9\x6a\x83\xc5\x8b\x05\x8b\x77\xb5\xd1\x63\xef\x34\x4d\x93\ +\x6d\xec\xc9\x4b\x42\x3e\x4c\x61\x58\x10\x40\xfb\x67\x20\x68\xa4\ +\x84\xa2\x62\x4a\x45\x64\xad\x24\x46\x06\x3f\x06\x40\x46\x68\x4a\ +\xac\x9e\x32\x12\x71\x26\x95\x34\x01\xd3\x91\x16\x56\x69\x33\xa5\ +\x3a\x22\x56\x1a\x27\xa3\x2d\x82\xdc\xb7\xf6\x57\x01\x4a\xad\xe2\ +\xf0\x6c\x53\xca\x23\x6d\xb5\x96\x90\xa9\x88\x2b\x23\xa5\x9e\x9a\ +\x48\x6b\x2a\x88\x82\x8c\x45\x86\x71\x6a\x18\x64\x92\x30\x29\x68\ +\x60\x22\x6e\x88\xe1\x56\x42\x44\x15\x46\xe5\x26\x10\x91\x31\x56\ +\x20\x22\xba\x61\xa9\x30\xc4\x9a\xc0\x73\x54\x23\x4e\xba\x61\x8d\ +\x22\x94\xd0\x20\x64\x88\x9c\x82\x11\x8b\x8a\x2c\x52\xca\x18\xad\ +\x83\x90\x46\x16\x6d\x18\xe1\x53\xe9\xda\x30\xc9\x04\x5a\x53\xca\ +\x89\x24\x58\x1c\x64\x84\x1a\x21\x03\x84\x5d\x66\x94\x95\x72\x8a\ +\x7e\x38\x43\xc0\x41\x3d\x8e\x6e\x88\x32\x62\x8a\x94\xc8\x1a\x61\ +\xb4\xd0\x01\xb5\x58\x80\x95\x98\x22\x92\x24\xa6\x15\x97\x2c\xe0\ +\x3c\x92\x0a\xab\xa2\x53\x11\xe1\xdb\x12\xed\x45\xc2\x28\xad\xa6\ +\xa1\xc3\x97\x43\xd9\x32\xe0\x26\x12\x1e\x6a\x34\xf5\x48\xdb\x20\ +\x09\x78\x04\x11\xfe\x20\xd4\x94\x19\x66\x0c\x26\x63\x29\x35\x5c\ +\x4e\x2d\xd0\xd5\x98\x02\x45\x2d\xe6\x96\xa5\xad\xfb\xd0\xe0\xfd\ +\x16\xf3\x1d\x03\x39\xea\x87\x1b\xee\x6e\x82\x7f\x55\x82\x4a\x4d\ +\x55\x87\x48\x03\x6e\xe3\xe6\xa6\xce\xb6\xc2\xc9\x10\x16\xe0\xa7\ +\x9c\x27\x45\xc4\x8e\xdd\x67\xbd\x8e\x9f\x42\xf1\x24\x26\x2c\x39\ +\x4e\x71\xc1\xbf\x08\x8a\x93\x48\xb6\x2c\xb5\x91\x72\xec\x06\x1b\ +\xa5\x61\xb6\x25\x2d\xd2\x29\x1e\x30\x15\x29\x30\x54\x83\x3c\x34\ +\xd2\x84\x68\x27\x23\x11\x63\x44\x32\x8d\x66\x60\x22\x13\x5a\x3a\ +\x22\x1b\x49\xa9\x05\x41\x05\x61\x20\x21\x68\x22\x23\x06\x66\xcb\ +\x29\x7c\x03\xf8\xc0\x28\x0d\x5c\x1f\x94\x70\x2f\xa3\x44\x0b\x09\ +\x53\xd1\x11\x53\x86\x70\xe6\x15\xad\x89\x84\x39\x40\xab\x5a\x83\ +\xa9\xdc\xfa\x51\x25\x27\x94\x07\xd8\x27\x10\xa1\xdc\x0c\x30\xac\ +\x50\x92\xc0\x10\x02\xf8\x21\x4d\x34\xa1\xd2\x4c\xd1\x8f\xe6\xda\ +\x52\xe3\x84\x04\x0c\x64\x98\x74\xe8\xac\xd4\x18\xfc\x93\x01\x03\ +\xc9\x60\x11\x4a\x67\xa1\x98\xa2\x0e\xe7\xb0\x1e\x50\x52\x44\x02\ +\xed\x61\x33\x21\x0c\x99\x82\xcc\x96\x39\x1b\x94\x42\xc3\x52\xa6\ +\xa1\x88\xb8\x55\xd2\x6a\x58\x97\x89\x9c\xff\x37\xc6\xb5\x66\x58\ +\xa2\x24\x3c\xe0\xe8\x56\x0a\x6c\x2b\xdc\x58\x1a\x76\xab\x8d\x54\ +\x5e\x0a\x28\xb5\xeb\x93\x38\xdb\x75\x54\xd5\xbd\x4f\x70\xcd\x0f\ +\x31\x5c\xd9\x9e\xe2\x6a\xa0\xb8\xe9\x29\x6e\x8e\x90\xfb\xf3\x53\ +\xdb\xd8\x98\x3c\xe6\xbd\x09\xf9\xb3\xa9\xbd\x0c\x9c\xa7\xc3\x47\ +\xaa\x29\xb4\x46\x5b\x07\x9c\x40\xca\xa0\x6a\x4d\xac\xf3\x66\x50\ +\x29\x85\xcf\x54\xee\x42\x7a\x55\xc3\xaf\x31\xec\x23\xc0\x53\xd2\ +\x36\xd7\xa2\xd5\x95\x8c\x94\x55\x44\x58\x38\x3c\x25\xa1\x2a\x1a\ +\x58\x70\x9b\x38\xe7\x8b\x0b\x0b\x6b\x06\xdd\x3b\x47\x2f\x9c\xdb\ +\xf6\x17\xce\xa2\xb8\xab\x87\x86\xcc\xfb\x28\x26\x40\x18\x11\xe1\ +\x8b\xbb\xc0\x02\xf7\x69\xc0\x7d\xe5\x1c\xa0\xed\xc2\x85\x53\xb4\ +\x00\x0b\x88\x84\x9f\x9c\x52\xb7\x77\x91\x12\x55\x20\xc3\xd4\x05\ +\x66\xc4\xe0\x69\x41\x5c\x6e\x61\xbf\x53\x2e\x3d\x95\xc0\x52\x66\ +\xb9\x51\x0c\x9e\x16\xac\x74\xeb\x0a\x31\x21\x09\xf3\x84\x3b\x87\ +\xf7\xc5\xee\xc8\xc2\x86\x5a\x0a\x63\x61\x53\x82\xc0\x80\x39\x49\ +\x74\xcf\x18\xe0\x90\x11\xac\x84\x1b\x5f\xc9\x5b\x84\x16\xdc\xb5\ +\x04\xb7\x51\x69\xd4\x52\xb8\xa6\xdc\xe1\xa0\x39\x02\x91\x03\xc8\ +\xc2\x7c\x61\x34\xce\xa6\xac\x87\x17\x52\x67\x41\x08\x5e\x30\x7a\ +\x82\x1b\xdd\x26\x4f\xfa\x30\x87\x79\x68\x3e\x37\x8b\x09\xe6\x63\ +\x1e\x65\x31\xf2\xc5\x3f\x9d\xc5\x43\xce\x39\x65\xa2\x73\xd5\x1b\ +\x16\x53\x7a\x80\xc5\xfc\x00\x8b\x15\xff\x58\x16\x23\x54\xb7\x2c\ +\xb6\x08\xd0\x2d\x8b\x99\x8b\xde\x9e\xc5\x70\x6b\x1d\x8b\x07\x07\ +\x87\x64\x80\x05\x02\x9e\xb3\x65\x31\xb2\x21\xd3\xb1\x18\xe1\xbf\ +\x65\x31\x62\x0d\x6d\x59\xec\xa2\xff\xd4\x65\x5b\x1f\xcb\x63\xd4\ +\x18\x78\x6c\x46\x34\xa6\x07\x68\x0c\x4c\xc6\x34\x3e\xc0\x62\x2a\ +\x3f\x90\xc4\x9f\x9b\xc2\x34\x61\x82\xb1\x0d\x67\x53\xf7\xb7\xcd\ +\x59\x8e\x1c\x11\xc1\x18\x91\xf4\xe3\xc8\xeb\xb4\x8e\x8f\xa1\xcf\ +\x4a\x33\x46\x2c\x46\x58\x74\x7c\x42\x44\xf3\x97\x7b\x17\xfb\xc0\ +\x6a\xcd\x42\x12\xb2\x27\x83\xfb\xcd\xe0\x36\xb6\xfe\x0d\xf5\x9c\ +\xf5\xd3\xce\xca\xc8\xb1\xeb\x63\x28\xd2\x13\x47\x11\xb9\xe4\xc6\ +\x87\x3e\x1b\xc5\xa7\x1b\xfa\x37\x83\xe2\xd8\x86\xd5\x60\xc2\xaa\ +\x33\xdc\xd1\xf7\x31\xcc\xc4\xe9\x61\xb6\xc5\xbc\xfe\xea\xe3\x98\ +\x67\x5f\x10\xc5\x03\x79\xfb\x97\x81\xa2\xec\x92\x0a\x3e\xed\xdf\ +\xe0\x38\xfb\x25\x6e\x63\xc6\x3c\xa8\xc7\xae\x0f\x04\x69\xf1\xf4\ +\x07\x01\xdf\x10\x82\x6e\x4f\xf1\x49\xc0\x0b\xd5\x29\xc2\xc7\xcc\ +\xa7\x82\xef\x25\xb3\x98\x2f\x17\xbe\xe1\x51\xe8\x27\xc1\x50\x9f\ +\x76\x24\x71\x0f\x9b\x3f\x3e\x87\x39\x45\x1e\x86\x3b\xdb\x90\x0d\ +\x7e\x62\x84\xd9\xce\xf5\xd1\xfd\xc8\x8b\x66\x81\x5f\x03\x86\x87\ +\xb6\x24\xcf\x00\x92\x9e\x66\x52\x13\x3e\xbe\x2b\x79\x06\x90\xfc\ +\x45\x77\x77\x5f\x03\x90\xd8\x7e\xf8\x69\xd2\x8f\x03\x52\xbc\xe8\ +\x66\xe5\x6b\x00\xb2\xbf\x32\x1f\x07\xa4\x3d\x79\x46\x1e\x0a\xd6\ +\xcf\xf1\x91\x4f\x7f\xc7\x33\xe0\xf8\x72\x67\x29\xdc\x93\xf1\x0f\ +\x39\x4b\xf1\xd9\xdf\x08\xbd\xd8\x11\x0a\xc2\xc0\x69\x05\x07\xb1\ +\x49\x4d\xfb\x83\x58\xee\x1d\x20\xfe\x36\x8a\xea\x8f\x52\x20\xf9\ +\x25\x5c\xe3\xbf\xf1\x51\x0a\xf7\xb2\x54\x51\x63\x36\xcc\x71\xc7\ +\xd4\xdc\xcb\x54\x2a\x99\xfe\x4b\x89\x2f\xac\x44\x11\x1a\x28\xd2\ +\x22\x89\x53\xa3\x34\xee\x99\xaa\x94\x88\x3a\x30\x72\xb5\xa5\x4a\ +\x13\x31\xe6\xde\xcb\xfc\xa5\xca\xcf\xa0\x4a\xe9\x95\xf9\x32\x36\ +\xf9\x79\x14\xb9\xad\xb6\xf9\x6b\xa9\x94\xdc\x55\x29\x89\xa4\x55\ +\x44\x1b\xc1\x1f\xd1\xed\x62\x61\xe4\xae\x6e\x25\xc2\x19\x15\x88\ +\x8a\xf4\x33\x29\x99\xb9\x37\x70\xc6\x9d\xc9\xf8\x94\xda\x86\xc2\ +\x76\x35\xac\x6c\xfb\x64\x41\xed\x69\x58\x76\x6f\xf9\xcc\x58\xc3\ +\xa1\x3b\xcb\xb2\xfd\x64\xc1\x9d\x64\xeb\xde\x73\xf2\xd1\xc9\xb5\ +\xab\xf1\xe8\x57\x9c\xcb\xcd\xd0\x4d\x1d\x97\x6b\x77\x44\x13\xa1\ +\x3e\x6e\xea\xfc\xfe\x3b\x28\xc6\x68\x39\x25\xee\x2f\xd2\x42\x68\ +\x4b\x11\xfa\x25\xb2\x51\xaa\x90\x45\xf8\x37\xfa\x50\x9d\xa0\xdf\ +\x0f\x27\x40\xb7\x48\x74\xb8\x4f\x2d\x0d\x32\x10\xc5\xda\x77\xb5\ +\xc4\x32\xc6\xfd\x01\x13\xad\xc1\x5d\x4a\x9d\x98\x59\xca\x14\x33\ +\x6e\xdc\xef\x27\x9b\xde\xea\xf6\x98\x2b\x16\xa5\xb8\x1d\xcb\x01\ +\x81\x3b\x02\xa3\x14\xd5\x74\x24\x77\x87\xf7\xfc\xa1\x1d\x6b\xd9\ +\x48\xec\x01\x93\x91\x95\x54\x13\x31\x92\xf7\x10\x1b\xb7\x2a\x22\ +\xcd\xb8\xac\xb7\x3c\x11\x29\xa3\x8d\x92\xa3\xa2\x5e\x8f\x18\xc5\ +\xc2\x66\xf9\xa8\x68\x2b\xcd\xcb\x6c\x7c\x49\xd5\x71\x6f\x96\xdd\ +\x66\x65\x95\xa6\x03\xe3\xa9\x49\xd5\xd1\x37\xf5\xcf\x79\xff\x3e\ +\x3a\x10\xfb\xff\xb5\x64\x99\xa0\x52\x59\x0d\x75\x70\xc3\x08\x65\ +\xb6\x3d\x06\xe4\xf4\x05\x5f\xe2\x08\x41\x84\x35\xd2\x65\x77\x87\ +\xb4\xa4\x8d\x94\xcc\x98\x1d\x2d\x51\xf4\x4b\x20\xb7\xdb\x5a\xb2\ +\x91\x02\x15\xa9\x14\x3b\x5a\x12\xd2\x1d\xcc\x12\xcc\x1c\xd0\x12\ +\xc2\x13\x01\x1d\x25\x3f\xa0\x25\x1a\x49\xcc\xd7\xd0\xe3\x5a\xd2\ +\x5f\xa1\x9a\x6a\xff\x0b\x03\x89\x98\x0c\x9a\xef\xf2\x1f\xc4\xa4\ +\x56\x49\xce\xb6\x91\x1d\x8e\x08\xed\x20\xab\x64\x97\xca\x1f\x40\ +\xb6\x7f\x4a\x69\xf7\x91\xed\xd3\x7e\xf1\x08\xb2\xa1\x39\x0d\x68\ +\x43\xb0\xd6\xc7\xc5\x5d\xd6\xbe\x20\xb6\x5f\x27\xb2\xd8\xbd\x12\ +\x01\xb7\x29\x77\x80\x75\x27\x66\xb8\xd4\x56\x3d\x15\x58\xe3\xd1\ +\xd3\x07\x70\xdd\x52\x4e\x0f\x68\xf7\x78\xfe\x38\xa0\x5f\x03\x9c\ +\xe3\xc7\x06\x87\x0f\xd6\x24\x47\x3e\xe3\x65\x3f\xf1\xdc\xce\x36\ +\x40\x23\x71\xbb\xff\x77\x69\x49\xbb\xff\x0f\x29\x02\x40\x70\xeb\ +\x0e\x56\x07\x9c\xf9\xaf\xeb\xf1\xcd\x1f\x81\x7f\x12\xfd\x4b\x10\ +\xba\x63\x7c\xee\x48\x39\x6b\x1f\xa9\x3a\x9f\x6e\xda\x3e\xfa\xf4\ +\x84\xa3\x9f\x50\x8d\x6a\x87\x3a\x12\xdd\x4b\x65\x27\xa0\xdd\x90\ +\xee\x24\xef\xad\x7b\x08\xe1\xc6\xf2\x5f\x21\x46\x7b\x1f\xb8\x23\ +\x91\x18\x22\x62\x10\x63\xab\x69\x5c\x3f\xee\x80\xe1\xf0\x66\xfa\ +\x8f\xc0\x35\x2d\xfc\xa9\xb1\xf6\xed\x81\x7b\x32\xe9\x3a\xf1\xd5\ +\xdf\xef\xd3\x60\x3b\xef\x5d\x54\x65\x13\xfa\x12\xc0\x5e\x2f\xe3\ +\xa2\x95\xdc\xc6\x75\x1e\x97\xcd\x96\xec\xce\xf3\x71\x4b\x04\xe5\ +\x66\x4d\x72\xbd\x2d\xcb\xdf\x67\xf3\x65\x96\xe6\x37\xcb\x37\x2e\ +\x3f\xed\x7e\xd4\xb4\x55\x67\x11\x2f\xf3\xe2\x61\xfe\x1b\x62\xf3\ +\x9b\xb0\x57\x60\xd8\x36\x5f\x65\xc9\xf0\xeb\xbb\xb6\x46\x93\xdd\ +\x37\xa8\x95\x66\xa5\xdb\x8b\xf8\xbb\xb8\xc8\xaf\xca\xf9\xba\x89\ +\xeb\xa6\x15\xa4\x59\x52\xd5\x6d\x1b\x4f\xbb\x1d\xa1\xcf\x94\xdb\ +\x92\x22\x6b\x40\xda\xb0\xfb\x75\x51\x3f\xad\xbb\xaa\x4e\x77\x65\ +\xbe\x8f\x21\x81\x68\x5b\xdf\xd5\x79\x83\x2a\xa1\xfb\x21\xcc\xbc\ +\xa8\xc3\xe6\x12\x5b\x07\x47\x2a\x37\x72\xd1\xd4\x6f\xdc\xaf\xf2\ +\xfc\xb2\xd7\xd7\xf9\xa2\x99\xf7\xb7\xdd\xb4\xcb\xe4\x1a\xe0\xb7\ +\xf3\x7e\xf6\xde\xb1\x33\xc9\xa7\x9a\xf0\xd8\x0c\x5b\xfb\x65\x11\ +\xd5\x12\x79\x8f\xe1\x4f\x4f\xed\x8f\x9a\xed\x87\xd9\x9f\x7f\x40\ +\x66\xb7\xdc\x5f\x6b\x7f\xc2\x76\x6f\x26\xa6\x1b\x0b\x49\x02\x98\ +\xce\xf0\x84\x98\x3f\x76\x77\xcc\xdd\x19\x14\x1e\x3f\x31\xba\x38\ +\xb0\xab\xa6\x91\x11\x5a\x32\x62\xf8\xea\xfe\xc3\xf7\x5e\x4f\xf0\ +\x73\xcf\x02\x4c\xed\x03\xc6\xfa\xc3\x94\x63\xc0\xc2\x6d\x8c\x1e\ +\xbd\x3d\x86\x19\x21\x8a\xd3\x3d\x7e\x3d\x86\xd9\xf0\x38\x54\x7c\ +\x49\x98\x89\x90\x3d\x42\xb3\xee\x38\x7f\x87\xc8\xee\xf7\x37\xcf\ +\xa7\x90\x3e\xc2\xa8\x0e\x9b\x9e\x2e\xfb\x17\x27\x40\x9d\x03\x00\ +\x71\xdb\x5a\x9a\xcb\x11\x46\xef\xff\x5a\x4c\xb8\x7f\xfd\xa0\x1f\ +\xbb\x3b\x01\x52\x1d\x42\x8d\x0f\x26\x37\x46\x2d\xdc\x06\xea\xd1\ +\xdb\x53\xa0\x9b\xde\x03\x4e\xd3\x0d\xdd\xdc\x0f\x4c\x4e\xd9\x59\ +\x85\x07\x32\x76\xb9\xe1\x55\x0b\xcf\x69\xfb\xab\x7d\x84\x34\xc1\ +\xea\xfd\xaf\x3a\x4e\x9a\x3a\xfb\xc9\xa6\x1a\x60\x39\x6d\xca\xec\ +\xe7\x47\x9b\x10\x37\xfe\x05\xde\x09\x93\x67\x3f\xf1\xde\xc4\xb3\ +\x31\x44\x5f\x23\x91\xce\x66\x57\xed\xff\x27\x02\x5f\x67\xee\x7f\ +\x67\x71\xf1\xea\x7f\xea\x44\xfa\xd7\ +\x00\x00\x05\x90\ +\x00\ +\x00\x1b\xc7\x78\x9c\xed\x58\xdb\x8e\x9b\x48\x10\x7d\x9f\xaf\x60\ +\xc9\x4b\xa2\x1d\xa0\xaf\xd0\xed\xd8\x8e\xb4\x1b\x45\x8a\xb4\x4f\ +\xbb\x59\xed\x63\x84\xa1\x6d\xa3\x00\x6d\x01\x1e\xdb\xf9\xfa\xad\ +\xe6\x66\x98\x61\x2e\x89\x93\x87\x48\x46\x33\xca\x74\x55\x75\x77\ +\xf5\xa9\x73\xaa\x21\xf3\x77\xc7\x2c\xb5\xee\x54\x51\x26\x3a\x5f\ +\xd8\xd8\x45\xb6\xa5\xf2\x48\xc7\x49\xbe\x59\xd8\xff\x7e\xfa\xe0\ +\x08\xdb\x2a\xab\x30\x8f\xc3\x54\xe7\x6a\x61\xe7\xda\x7e\xb7\xbc\ +\x99\xff\xe6\x38\xd6\x9f\x85\x0a\x2b\x15\x5b\x87\xa4\xda\x5a\x1f\ +\xf3\x2f\x65\x14\xee\x94\xf5\x7a\x5b\x55\xbb\x99\xe7\x1d\x0e\x07\ +\x37\x69\x8d\xae\x2e\x36\xde\x1b\xcb\x71\x96\x37\x37\xf3\xf2\x6e\ +\x73\x63\x59\x16\xec\x9b\x97\xb3\x38\x5a\xd8\xed\x84\xdd\xbe\x48\ +\xeb\xc0\x38\xf2\x54\xaa\x32\x95\x57\xa5\x87\x5d\xec\xd9\xe7\xf0\ +\xe8\x1c\x1e\x99\xdd\x93\x3b\x15\xe9\x2c\xd3\x79\x59\xcf\xcc\xcb\ +\x57\x83\xe0\x22\x5e\xf7\xd1\x26\x9b\x03\xad\x83\xb0\x94\xd2\x43\ +\xc4\x23\xc4\x81\x08\xa7\x3c\xe5\x55\x78\x74\xc6\x53\x21\xc7\xa9\ +\xa9\x04\x21\xe4\x81\xef\x1c\xf9\xb2\xa8\x59\x09\x80\xee\xe0\xb7\ +\x0f\xef\x0c\x6e\xa9\xf7\x45\xa4\xd6\x30\x4f\xb9\xb9\xaa\xbc\xf7\ +\x9f\xde\xf7\x4e\x07\xb9\x71\x15\x0f\x96\xe9\xf0\x1c\xed\x3a\x02\ +\x39\x0f\x33\x55\xee\xc2\x48\x95\x5e\x67\xaf\xe7\x1f\x92\xb8\xda\ +\x2e\x6c\xca\x5c\x4c\xe1\xe1\xb5\x71\xab\x92\xcd\xb6\xba\x6f\x4d\ +\xe2\x85\x0d\xd9\x13\x29\x9a\xf1\x80\x1c\xb8\x09\x68\x17\x9e\xf5\ +\x1e\xe4\x4a\xe2\x62\xab\xc0\x9c\x06\x4d\x4c\x77\x84\x59\xac\x23\ +\x93\x13\x2c\xa9\xb2\x24\xdc\x57\x3a\x83\xaa\x45\x51\x1a\x96\x65\ +\xb2\x4e\x22\x18\xe8\x7c\x97\xee\x37\x49\xfe\x39\xd3\x65\x98\x44\ +\x9f\x2b\xad\x53\xb7\x83\xaf\xdf\x4b\x1d\x77\xba\xa8\x9c\x63\xbc\ +\x03\x10\xfd\x60\xd2\x79\x1a\x3a\xef\x12\x75\xf8\x43\x1f\x21\x39\ +\x0b\x59\x94\xc0\x8f\xbd\x04\xfb\x3c\x56\xeb\xd2\xf8\x9b\x83\x9a\ +\x11\x9c\x34\xb0\x2d\xaf\xf6\xf6\x79\x9b\xa4\x63\xb3\xc6\x39\x76\ +\x15\x96\x0d\x98\x96\xb5\x0b\x37\x40\xbc\x54\x17\x0b\xfb\xd5\xba\ +\x7e\x5a\xc7\x4a\x17\xb1\x2a\x3a\x97\x5f\x3f\x23\x97\x86\xe2\x24\ +\xd5\xa9\x91\x5a\xbb\x76\x77\x0c\xb3\x6a\xef\x47\xd3\xfe\x72\x1b\ +\xc6\xfa\xb0\xb0\xc9\x7d\xe7\x57\xad\x33\x58\x15\x8a\x24\x03\x81\ +\x1e\xb8\x23\x40\xc2\xc1\xc8\xc5\x08\xf9\x3e\x7b\xe0\x35\x09\xf9\ +\x6e\x40\x19\x97\xfc\x81\x73\x5f\x14\x20\x46\x27\x0d\x4f\x0a\x4e\ +\x55\xff\x83\xdb\xa0\x72\xab\x0f\x9b\xc2\xa0\x53\x15\x7b\x75\x7f\ +\xa6\xf1\x38\xab\x95\xa9\xc2\x94\x1b\xb8\xb1\x37\x32\x77\xf6\x79\ +\x52\x81\x94\x76\xc7\xe1\xaa\xfb\x24\x56\xe5\xf4\xc4\x32\x0f\x77\ +\xce\x26\xd5\xab\x30\x9d\x0e\x38\x24\x39\xa0\xe4\xb4\xac\xc7\xb4\ +\x2f\xc2\xfd\x88\x4e\x02\x01\x12\x8f\x44\x18\x06\x3d\xe2\x3a\x3d\ +\xee\xca\xc2\x63\x92\x25\x5f\x15\x00\x83\x1f\xa0\x62\x4e\x36\x84\ +\x65\x59\x07\xcc\x47\xb0\x35\x73\x2c\xab\x3a\x19\xb9\x1f\x4f\xc6\ +\x66\x77\x46\x83\xb7\x31\x10\x29\x83\xde\xa8\x8b\x04\x54\x34\x48\ +\xb7\x33\x9d\x86\x26\xd3\x1c\xa0\xb7\x1f\xcf\x79\xf5\x36\xc3\x81\ +\x4e\x07\xde\x43\x21\xd4\xf6\x4c\x55\x61\x1c\x56\xe1\x59\x15\x9d\ +\x05\x72\x41\xdd\x49\xa0\xaf\xce\xfe\x7e\xff\x61\xd9\x6e\x30\x8f\ +\xa2\xd9\x7f\xba\xf8\xd2\xed\x67\x59\x26\x20\x5c\xe9\x3d\x20\x6f\ +\x2f\x7b\xf3\x3c\x8e\x66\xd0\x09\xa1\x43\x2c\x93\x0c\xb8\x6e\x9a\ +\xe8\xef\xd0\xf9\xe6\xde\xd9\x31\x0a\x36\xe0\x9c\x17\x6d\x96\x2d\ +\x54\xd3\x52\x27\xef\x95\x38\xca\x12\x33\xc9\xfb\xa7\x4a\xd2\xf4\ +\xa3\xd9\xa4\x3d\xf1\x60\xd1\xa4\x4a\xd5\xd9\x38\xf7\xda\xec\xdb\ +\xb3\x79\x83\xc3\xcd\xbd\xee\xf4\xf5\x68\x73\x46\x65\x24\x92\xbe\ +\xb0\x69\xb8\x52\xc0\xd8\xbf\x8c\xd3\x7a\xc8\x8b\x42\xef\x77\x99\ +\x8e\x55\x3b\xbd\x47\x53\x45\x55\x5f\xaa\xea\x94\x82\x7f\x0d\xd9\ +\xcf\x5e\x21\xc4\x79\xcc\xde\x9a\x81\xd3\xf6\x8d\x19\x6e\x86\xc5\ +\x3e\x85\xb6\x78\xa7\x72\x1d\xc7\x6f\xcb\xaa\xd0\x5f\x94\x89\x37\ +\x4f\x3b\x6c\xc4\x31\x83\x7e\x41\x7c\xe9\x0b\xcc\x3b\x3b\x20\xa4\ +\x8a\x14\xd8\x5b\xcd\x58\x67\x8b\x43\xe8\x3b\x45\x11\x9e\x66\x39\ +\xbc\x05\x74\xd6\x7e\xcf\x11\x31\x4d\xba\x40\x06\xda\x1b\x3b\x15\ +\x42\xc7\x13\x34\x90\xa2\x77\x74\xe2\x93\x2e\xe6\x52\x62\x4c\x7a\ +\xcf\xb1\xbe\x94\x90\xa4\x18\x9f\x09\x0e\xfc\xe4\xd0\x15\xb9\x4f\ +\xb8\xec\x8d\x85\x61\xb2\x4b\x09\x46\x94\x9f\xf3\x28\xea\x06\x4b\ +\x05\x97\xe8\x6c\xac\x8a\x30\x2f\x0d\x8d\x80\xb4\x61\x55\x24\xc7\ +\xd7\xb0\x1a\x65\x02\x21\x2a\x6f\xe1\xae\x85\xf7\x02\x2a\x19\x11\ +\xb7\xc8\x65\xc2\x27\x84\x0b\x1f\xfe\x14\x01\x15\x94\xe2\xe0\x16\ +\xdd\xa2\x37\xe7\x83\x3e\x75\x2f\x4d\x05\xf4\x77\x53\xc7\xac\x51\ +\x59\xbf\x21\x35\xee\x43\x72\x70\x32\x93\x1a\xe1\x58\x30\x4c\xc6\ +\xa9\x35\x67\x67\x01\xa3\x98\x06\xcf\xe0\x04\xa1\x24\x70\x03\x22\ +\x98\xc4\x43\xf0\x31\x71\x05\x27\x80\xc1\x44\xad\x02\xc6\xc0\x13\ +\x3c\x5f\xde\x8e\x0c\x34\x18\xe0\x72\x8f\xc0\x61\x08\x84\xbc\x90\ +\xc0\x88\x63\x2a\x69\x70\x11\x81\x27\xab\xf2\x0b\x89\xcd\xb9\x54\ +\x6e\x98\xbb\x12\xc2\x7d\x3a\xe4\x06\x93\xf0\x62\x27\xc5\xb4\xda\ +\xae\x62\x7b\x91\xd8\xee\x69\x4d\x0a\x41\x30\x1b\x22\xef\x70\x60\ +\x30\x1c\x9b\xb3\x1f\x25\x36\xc7\xbf\xca\xed\x27\xcb\x8d\x5f\x28\ +\x37\x60\x02\x61\xe6\xbb\x63\xa8\x36\xec\x06\x82\x8b\xa1\xb2\xae\ +\x72\xbb\x48\x6e\x60\xe4\xe6\x19\x22\x2f\x00\x00\x22\xc8\xe0\xbe\ +\xbb\x54\x6d\xf4\xaa\xb6\x9f\x7d\xb9\x0d\x3a\xda\xf7\xe9\x4d\xba\ +\x94\x49\x8e\xe5\x58\x70\xc4\xc5\x82\xa2\x60\x52\x70\x4c\x5e\x15\ +\xf7\x12\xc5\x0d\x70\x6a\x24\x47\x18\xe7\xfe\xf8\x86\x93\x00\x01\ +\x16\x1c\xf9\x3f\x4c\x73\xbe\x43\x7e\x7d\xd5\xad\xd7\xf5\xde\x17\ +\xe5\x5a\x57\x93\xf8\x98\xfc\x48\xd1\x01\xc4\xf2\xe5\x82\xc3\xc0\ +\x70\x44\x08\x1b\x09\xce\x01\x6d\x31\xe0\x1c\x1b\x7d\x6c\x48\xd7\ +\x27\x82\x0a\xc9\x26\x7b\xf7\xfd\xef\x37\x0e\x62\xf1\x7d\xfe\x3d\ +\x92\xf3\x29\xc2\x18\x9b\xbf\x82\xc0\xe7\x88\x31\xda\xd0\xfa\x17\ +\x2f\x8a\xf3\x02\x9d\x3c\x5d\x16\x2c\xe1\xb3\x9a\x71\x46\xc7\x65\ +\xe1\x44\x42\x01\xfc\xc9\xb2\x5c\xab\xf2\x5c\x55\xbe\xe1\x6d\x70\ +\xba\x2a\xf0\x0d\x4e\x7d\x86\x25\x19\x56\x85\xba\x9c\x06\x02\x07\ +\xcf\xbc\xe8\x5c\xab\xf2\x98\x56\x9c\xcb\x9b\x18\x75\x7d\x11\xc0\ +\xe5\x35\xae\x0b\xa3\x82\xf9\x83\xd0\xa7\x5e\x1b\x7e\x5a\x61\xe6\ +\xde\x66\x79\x33\x37\xff\x47\xba\xbc\xf9\x1f\xda\xce\x98\x81\ +\x00\x00\x0c\x42\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x6f\x76\x65\x5f\ +\x64\x6f\x77\x6e\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ +\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ +\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ +\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x78\x3d\x22\x2d\x32\x31\x2e\x30\x31\x36\x36\x38\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\ +\x22\x31\x37\x2e\x31\x32\x36\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ +\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ +\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\ +\x71\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\ +\x32\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\ +\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\ +\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\ +\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\x6d\x3b\x6c\x69\x6e\ +\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x53\x61\x6e\x73\ +\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\ +\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x53\x61\ +\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\x65\x6e\x74\x3a\x30\ +\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\ +\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\ +\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ +\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\ +\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\x2d\x73\x70\x61\x63\ +\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\x2d\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\ +\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\ +\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\ +\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\x69\x66\x74\x3a\x62\ +\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\x74\x2d\x61\x6e\x63\ +\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\x69\x73\x70\x6c\x61\ +\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\ +\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\ +\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\ +\x6c\x3a\x23\x30\x30\x30\x30\x32\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x33\x2e\x36\x32\x36\x36\x36\x36\x37\x38\x3b\x6d\ +\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\x6c\ +\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\x63\ +\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x6d\x20\x31\x38\x2e\x36\x38\x36\x36\x31\x32\x2c\x2d\ +\x31\x39\x2e\x32\x30\x33\x37\x37\x36\x20\x2d\x32\x2e\x36\x33\x33\ +\x35\x31\x39\x2c\x30\x2e\x30\x35\x30\x31\x39\x20\x2d\x30\x2e\x38\ +\x30\x34\x30\x38\x2c\x2d\x30\x2e\x30\x34\x32\x33\x31\x20\x30\x2e\ +\x30\x32\x33\x32\x39\x2c\x33\x32\x2e\x36\x37\x39\x34\x38\x32\x20\ +\x2d\x34\x2e\x31\x32\x35\x31\x31\x39\x2c\x30\x2e\x30\x30\x39\x35\ +\x20\x35\x2e\x39\x31\x39\x34\x38\x37\x2c\x31\x35\x2e\x33\x30\x36\ +\x39\x32\x39\x20\x35\x2e\x37\x36\x38\x33\x35\x2c\x2d\x31\x35\x2e\ +\x33\x33\x33\x37\x33\x37\x20\x2d\x34\x2e\x31\x32\x35\x31\x31\x39\ +\x2c\x30\x2e\x30\x30\x39\x35\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x31\x33\x2d\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\ +\x70\x65\x73\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ +\x00\x00\x15\x35\ +\x00\ +\x02\x08\xb4\x78\x9c\xed\x5d\x49\x73\xe3\x46\x96\xbe\xd7\xaf\xc0\ +\xd0\x17\x3b\x46\x48\xe6\xbe\xa8\xa4\xea\x83\x1d\x1d\xdd\x11\xd3\ +\x97\xe9\x65\x8e\x1d\x14\x09\xa9\x38\x45\x12\x1c\x10\xda\xfc\xeb\ +\x27\x13\xe0\x0a\x42\x35\xf6\x90\x4f\xaf\x8b\xf5\x58\x61\x8b\x04\ +\xc0\x05\xef\xcb\xb7\x2f\x79\xf3\x87\x97\xf9\x2c\x7b\x2a\xaa\xd5\ +\xb4\x5c\xdc\x0e\x04\xe3\x83\xac\x58\x8c\xcb\xc9\x74\xf1\x70\x3b\ +\xf8\xfb\xdf\xfe\x98\xfb\x41\xb6\xaa\x47\x8b\xc9\x68\x56\x2e\x8a\ +\xdb\xc1\xa2\x1c\xfc\xe1\xd3\x87\x9b\x7f\xcb\xf3\xec\xe7\xaa\x18\ +\xd5\xc5\x24\x7b\x9e\xd6\x9f\xb3\x3f\x2f\xbe\xac\xc6\xa3\x65\x91\ +\xfd\xf8\xb9\xae\x97\xd7\xc3\xe1\xf3\xf3\x33\x9b\xae\x0f\xb2\xb2\ +\x7a\x18\xfe\x94\xe5\xf9\xa7\x0f\x1f\x6e\x56\x4f\x0f\x1f\xb2\x2c\ +\x8b\xdf\xbb\x58\x5d\x4f\xc6\xb7\x83\xf5\x1b\x96\x8f\xd5\xac\xb9\ +\x70\x32\x1e\x16\xb3\x62\x5e\x2c\xea\xd5\x50\x30\x31\x1c\xec\x2e\ +\x1f\xef\x2e\x1f\xa7\x6f\x9f\x3e\x15\xe3\x72\x3e\x2f\x17\xab\xe6\ +\x9d\x8b\xd5\x0f\x7b\x17\x57\x93\xfb\xed\xd5\xe9\xd7\x3c\xab\xe6\ +\x22\x11\x42\x18\x72\x39\x94\x32\x8f\x57\xe4\xab\xd7\x45\x3d\x7a\ +\xc9\x0f\xdf\x1a\x7f\x63\xdf\x5b\x25\xe7\x7c\x18\xcf\xed\xae\xfc\ +\x6d\x57\x5d\xaf\x22\x41\x97\xf1\xbf\xed\xe5\x9b\x03\x6c\x55\x3e\ +\x56\xe3\xe2\x3e\xbe\xaf\x60\x8b\xa2\x1e\xfe\xf2\xb7\x5f\xb6\x27\ +\x73\xce\x26\xf5\x64\xef\x63\x36\xf4\x3c\xf8\xd6\x03\x22\x2f\x46\ +\xf3\x62\xb5\x1c\x8d\x8b\xd5\x70\x73\xbc\x79\xff\xf3\x74\x52\x7f\ +\xbe\x1d\x28\xcd\x84\x8a\x0f\xd3\x1c\xfc\x5c\x4c\x1f\x3e\xd7\xdd\ +\xa3\xd3\xc9\xed\x20\xfe\x7a\x19\x7c\xfb\x7a\x6f\x71\x88\xf6\x82\ +\xf5\x07\x5f\x6f\xcf\x70\x16\x24\x13\x59\x25\x8c\x72\xed\x35\x9b\ +\x5b\xb8\x9e\x94\xe3\xf4\x9b\xe2\x47\x16\xf3\xe9\xe8\xb1\x2e\xe7\ +\x11\xb5\xf1\x78\x36\x5a\xad\xa6\xf7\xd3\x71\x7c\x51\x2e\x96\xb3\ +\xc7\x87\xe9\xe2\x9f\xcb\xf1\xe8\x9f\x75\x59\xce\xd8\x86\x76\xdb\ +\x2f\x2a\x5e\x96\x65\x55\xe7\x2f\x93\x65\xa4\xa0\x75\xbd\x27\x5f\ +\x37\x27\x3f\xc5\xb3\x37\x93\xe2\x7e\x95\xae\x6a\x6f\x27\xbd\x8a\ +\xf7\xe3\x06\xd9\xb0\x39\xbb\xfd\x75\xe9\xa7\x4d\x9e\xa6\xc5\xf3\ +\xee\xda\xbb\xd1\xaa\x25\x59\x96\x2d\x47\x0f\x71\x79\xcd\xca\xea\ +\x76\xf0\xc3\x7d\xf3\x58\x9f\xb8\x2b\xab\x49\x51\x6d\x4e\xd9\xe6\ +\x71\x70\xaa\x8c\x10\x4c\xeb\xd7\x96\xa1\xd6\x9f\xbd\xf9\xbd\xe9\ +\x53\xb7\xe7\x79\xff\xf9\xd5\xe7\xd1\xa4\x7c\xbe\x1d\xc8\xee\xc9\ +\x5f\xcb\x72\x1e\x0f\x33\x17\x82\x36\xdc\x74\x4f\x8f\x5f\x6e\x07\ +\xb9\xd0\x81\x71\xe7\x8c\x3a\x3a\x1b\xbf\xd0\x2a\xc6\x8d\x15\x42\ +\x1c\x9d\x7c\xac\xaa\xc8\x72\xf9\x6c\xf4\x5a\xc4\xbb\x6a\xfe\x6c\ +\x2e\x5a\x7d\x2e\x9f\x1f\xaa\x44\x9d\xba\x7a\x2c\xba\xef\x4c\x67\ +\xf2\xbb\xbb\xf2\xa5\xff\x74\x5c\x01\x8f\x89\x99\xf3\xc7\xc5\xb4\ +\x8e\x0c\xb3\x7c\xd9\xff\xd4\xc7\xe9\xa4\x58\xf5\xbf\xf1\x79\xba\ +\x88\x44\xc8\xd7\x4b\x57\xa8\x2d\x8d\xbb\x57\x6c\xd6\xb1\xe3\xfe\ +\x8d\x2b\xe2\x4f\x3b\xa2\xf3\xfa\xd4\xeb\xdb\xa7\xe6\xa3\x97\xe9\ +\x7c\xfa\x6b\x11\xef\xfb\x88\x5c\xab\xc5\x68\x99\x3f\xcc\xca\xbb\ +\xd1\x6c\xfd\xeb\x3f\x35\x57\xdc\x1c\x90\xa5\x7d\x53\x96\xd5\xaf\ +\x89\x69\x5f\x5e\xd3\xb1\xc1\xe6\x60\xa2\x67\x3a\xa0\x9c\x35\xdb\ +\x83\x65\x35\x8d\xbc\xb0\xf7\x7b\x37\x87\x5e\xf7\x0f\x25\x16\x8f\ +\x12\xfa\xa5\x59\x60\xcd\xf2\x73\xdd\x73\xaf\xfb\xe7\xd6\xeb\x7e\ +\x78\xbc\xf0\x9b\xe3\xf3\xa2\x1e\x4d\x46\xf5\x68\xc7\x05\x9b\x23\ +\x32\x04\xbe\xb9\xb3\x28\x2d\xaf\xff\xf3\x97\x3f\x7e\x5a\x7f\xd1\ +\xcd\x78\x7c\xfd\x5f\x65\xf5\x65\xf3\xbd\x59\x96\x2e\x18\xdd\x95\ +\x8f\x11\x8a\xc1\xa7\xed\xe1\x9b\xc9\xf8\x3a\xca\xb7\xc8\xf7\x9f\ +\xa6\xf3\xb8\xb6\x93\x68\xfc\xf7\x28\xcf\x6e\x86\xbb\x13\x07\x17\ +\x27\x62\xed\x3e\xb4\xfd\xd8\xaa\x68\x05\x65\xaf\xb6\x98\x8c\xe7\ +\xd3\xf4\xa6\xe1\x5f\xeb\xe9\x6c\xf6\xe7\xf4\x25\xeb\x3b\xde\xfb\ +\xd0\x69\x3d\x2b\x76\x07\x6f\x86\xeb\x5f\xbf\xbe\xb7\xe1\xde\xcd\ +\xdd\x0c\x37\x77\xdf\xbc\x7a\xd8\x51\xe5\x80\x29\xb6\x40\xcf\x46\ +\x77\x45\x5c\x04\xff\x91\x4e\x66\x47\x67\x1f\xaa\xf2\x71\x39\x2f\ +\x27\xc5\xfa\xed\x5b\x6a\x16\xe3\x7a\x0b\x59\xfd\x3a\x8b\xe7\xef\ +\xe3\xaf\xbf\x5e\x4b\x9a\x8f\xe9\x45\xbe\x96\x13\xd7\xa2\x7d\x59\ +\x3d\xce\xa2\xbc\x7b\x2a\x16\xe5\x64\xf2\x71\x55\x57\xe5\x97\xe2\ +\xfa\x07\xce\xb5\xe7\x7c\xfd\xb2\xe5\x96\xeb\xed\xcb\xd9\x74\x51\ +\xc4\x9f\x71\xbd\xfa\x9f\xc7\x51\x55\xec\x1f\xfd\xef\x72\xba\xb8\ +\x8e\x74\x2b\xaa\xcd\xd1\xe6\xc5\x2c\xae\xf8\xfa\x5a\x6f\x8e\x4d\ +\x46\x51\x14\x55\xd5\xe8\xf5\x7a\x11\xd5\xff\xfe\xd1\xf2\xfe\x7e\ +\x55\xd4\xbb\x6f\xda\xfc\x54\xce\xd4\xfa\x71\xb0\xd0\xd3\xed\xaa\ +\x10\xc4\xf6\x60\xaf\x46\x4a\x8f\x7e\xad\x94\x1e\x07\x5c\x11\xd7\ +\x77\x60\xda\xa9\xc0\x95\x2d\x72\x61\xb7\x27\xaa\x83\xcb\xaa\x78\ +\x9d\x62\x2a\x6a\x26\x1b\xfc\x76\x55\x6c\x40\x5d\x33\xa1\xb2\x62\ +\xf7\x8e\xba\x1a\x2d\x56\x69\x5d\x46\x2e\x18\xd5\xd5\xf4\xe5\x47\ +\xce\xac\x77\xe6\x8a\xa7\x7f\x2c\xaa\x45\xa5\x9c\x54\x57\x62\x73\ +\xa7\x57\x79\x64\x34\x65\x94\xb7\xe2\xa7\x41\x07\xd2\x1d\x48\xe9\ +\xd1\xa5\x95\xd8\xb2\xc9\xcd\x72\x54\x7f\xde\x2d\xfa\x1d\x9f\xc6\ +\x85\x93\x96\x76\x14\x91\xe3\xf1\x60\x77\xc1\x4e\x6c\x97\x8b\x88\ +\x70\x5d\x56\x79\x14\xe0\x4f\xa3\xfa\xb1\x2a\xf6\x6f\xbf\xbd\xc1\ +\xf4\xe1\x91\x93\xed\xde\xe1\x78\xf4\x2f\x59\xbc\x9f\xec\x1f\xd9\ +\x86\xd0\x6a\xef\xf4\xfe\x8a\xdc\x43\xbe\x7b\x23\xed\x6a\x93\xeb\ +\xf7\x6b\xdd\x5d\x76\x77\x8f\x75\x7d\xae\x45\xb7\x23\xda\x1e\x1b\ +\xbf\x07\xd9\x7c\x97\x6c\x5b\x82\x5d\x6d\x9f\x65\x7f\xca\xf8\x37\ +\x4f\xbe\xdf\x4f\x1d\xe5\x9c\xcc\x79\x97\x3e\x5b\xbd\x73\x25\x3d\ +\xf3\xd9\xcf\x99\x62\xb2\x7d\x7a\xf4\xe4\xff\x4b\x33\xc1\xe2\x72\ +\xe6\xd2\xf8\xe5\xcb\xef\x27\x1a\x0c\x29\xbc\xee\x10\x62\x9e\x99\ +\x8d\x2c\xbc\x52\x86\xc9\x6c\x1c\x19\x2e\xd7\x4c\x36\xb4\x79\xeb\ +\xf9\x09\xab\x48\x38\xa3\x85\x31\xff\x52\x24\xc9\x7d\x97\x28\x51\ +\x6e\xae\x57\xc7\xf7\x4b\x94\xd0\x25\x8a\x14\xec\xbb\x5f\x29\x47\ +\xec\x23\x2d\xad\x14\xd5\x25\x8a\x92\xdf\x31\x35\xec\x91\x30\xb1\ +\xdf\x29\x35\x1a\xc5\x9b\xcb\x23\x7a\xec\x54\xaf\x62\xba\xa5\xc0\ +\x38\xdb\x58\x18\x2a\xda\x7b\x6f\x3c\x7f\x83\x36\x8d\x37\xb2\xa5\ +\xc7\x37\xa3\x8b\x5b\xea\x88\xb7\xa9\x23\xfc\xc6\x70\xfb\x6e\xa9\ +\xa3\xde\x36\xdb\x84\xdc\x9a\x6d\xcd\xd3\xa3\x27\x17\x64\xb6\xb5\ +\xc4\xd0\x6f\x2f\x15\xd7\xf2\xd1\x89\x8c\xf4\xed\x92\xe6\xc8\x56\ +\xd9\x93\x31\x9b\xdb\xfe\xa6\x48\x73\x33\x7c\xe8\x8f\x02\x48\xbb\ +\xd3\x2f\x07\x6c\x6e\xef\x83\xf0\xa3\xff\x23\x42\x10\x8c\x34\xd2\ +\xaf\xa3\x04\xce\x04\xe9\x55\xd4\x4e\x79\x32\x62\xa4\x32\xce\x5d\ +\x19\xe6\x3d\x77\xde\xb9\x9f\x76\x6e\xff\x7e\x14\xa8\x89\x69\xe8\ +\x78\xb5\xe4\x52\xef\xcb\xae\x97\xdb\x81\x35\xcc\x49\x63\xf5\xbe\ +\x0e\xdb\x04\x4a\xe2\xb7\x49\xe5\x25\x17\x66\xef\xe4\x26\x6a\xca\ +\x74\xd4\x5d\xc1\x9a\x0e\xbe\x4d\x38\xc6\x73\x79\x0c\x49\x13\xd5\ +\xde\xe2\x30\x99\xae\x96\xb3\xe8\x49\x4e\x17\x89\xba\x1f\xcb\xa7\ +\xa2\xba\x9f\x95\xcf\xd7\x4f\xd3\xd5\xf4\x6e\x56\x7c\x6c\xfe\x4e\ +\x67\x89\xc0\x9b\x43\xfb\x24\x7b\x3b\x8a\x15\x41\xff\xb5\xa8\xca\ +\xaf\xe2\x7e\x14\xc5\x3a\xa7\x3f\xfc\xb5\x18\x96\xf8\x38\x1f\x55\ +\x5f\x8a\xaa\x7d\x43\xb1\x18\xc5\xfb\xca\xef\x46\xe3\x2f\x29\x98\ +\xb7\x98\x5c\x8f\xc6\xe3\xc7\xf9\xe3\x6c\x54\xef\xc7\x19\x7f\x3b\ +\x96\x9e\x19\x1d\xa4\x3e\x33\x94\x07\x32\x8c\xc0\x3c\x37\x98\x8e\ +\x19\xe1\x14\x57\xa1\x03\xa6\x8b\xf2\xcd\x69\x7d\x76\x34\x03\xa1\ +\x89\x80\x66\x60\xc1\x0a\x7e\x7e\x34\x75\xde\x63\x33\x11\x9e\x67\ +\xc3\x53\x31\xe1\xb4\xf2\xef\xc6\x9d\xa4\x38\x31\xd0\x84\xe3\x4e\ +\x4b\x78\x02\xe2\x69\xa3\xc7\x10\xec\x01\xfd\x01\xed\xa0\x90\xf7\ +\x64\xb2\x08\x4d\x60\x34\x9d\x60\xca\x49\x2f\x2d\x80\xea\x24\x63\ +\x08\x14\x50\x11\xe1\xb1\x51\xe0\xbe\x13\x7f\x4a\x62\x4f\x04\x34\ +\x01\xf9\x93\xb8\x13\x21\x8a\xe0\x34\x13\xc1\xea\xf3\xe3\x19\xc8\ +\xb8\x45\xc1\x13\x54\x7f\x0a\x82\xf4\xfd\xed\x5b\xa0\x98\x2d\x39\ +\x2b\x18\xe6\x2d\x94\xb8\xd5\xe4\xad\x60\xc4\x12\x9c\x64\xce\x6b\ +\xab\xce\xaf\x3d\x49\xd4\x62\xc0\x69\x98\xe5\x5e\x2a\x01\xa1\x3d\ +\x49\xde\xc2\x22\xea\x9c\x33\x87\xe5\x39\xad\xc0\x0d\x9e\x3b\xd3\ +\x8f\xa8\xd7\x5a\x1b\xeb\x42\x1f\xa2\x32\x7a\xad\x8a\x8b\x37\x39\ +\x94\xe4\x2d\x06\x9c\x8e\xe9\xc0\xad\xec\x17\xb8\x27\xc0\x19\xf5\ +\x27\x01\x0a\x9b\x2a\x13\xc6\xa8\x70\xe4\xaf\x58\x26\x95\xb1\xbe\ +\xdf\xba\x3d\x85\x3f\x49\xde\xa2\xe0\xe9\x99\xd3\xc6\x18\x79\x7e\ +\x06\xf5\xb9\x21\x44\x01\x11\x95\x8c\x7b\x6f\x8d\xf4\xef\xc4\xa1\ +\x92\x5c\x16\x14\x3c\xe1\x38\xd4\x92\xd7\x02\x8a\xa8\x49\x35\xa4\ +\xda\x85\x2e\xa2\x50\x46\x51\xc8\x15\xc9\x5c\x0c\x44\x3d\x67\x3c\ +\x35\xe4\x9e\xdd\x6b\x69\xa2\xb8\x94\x69\x01\xc5\x94\x33\x15\x82\ +\x53\x87\x29\x4f\x48\x36\x95\x8a\x10\x45\x41\x14\x90\x4d\xc9\x7d\ +\x41\x89\x2f\x78\xc9\x8c\xe0\x4a\xf9\xf3\xab\x52\x4a\xb8\xe0\x20\ +\x0a\xaa\x4a\x05\x59\xbc\x28\x16\x2f\x54\x54\xd7\x92\x4f\x8a\x62\ +\xef\x42\x89\x5d\x1d\x3d\x98\x9e\x86\x5d\x42\x14\x3a\xca\xe0\x13\ +\x34\x46\xf3\x70\x7e\x45\x2a\xc8\xda\x45\x41\x34\x2a\xd8\x78\xd4\ +\xf6\x97\x2e\x9c\xa8\x48\x2d\xc5\x19\x60\xab\x39\x39\x33\x4a\x49\ +\xd9\xed\x21\x94\x4c\x2b\xa1\xcd\xd9\xe5\x2e\x69\x51\x0c\x34\xa3\ +\x55\xa4\x85\x3a\x28\x50\x38\x97\x16\xa5\xae\x50\x50\x40\x15\x0b\ +\x42\xf0\x6e\xe5\x9f\x62\xd6\x5b\xe5\xcf\x2e\x71\x03\xd9\x44\x18\ +\x70\xda\x54\xfb\x27\xcf\xef\xb4\x34\x0a\x94\xf4\x27\x24\xa2\x3e\ +\xe1\xa3\xb8\xeb\xb6\x12\x42\x71\x28\xb5\x86\xe2\xe0\x09\xc7\xa2\ +\x96\x64\x2e\xac\xcc\x95\x4c\x46\x8b\xe8\xa8\xfb\x0c\xca\x26\x4a\ +\xb9\x51\x0a\xe8\x62\x20\xea\x98\x36\x42\x00\x84\x8a\x52\x6a\xb4\ +\x67\xba\x10\x41\x0a\x5d\x34\x06\xc6\xa4\x52\x11\xa0\x28\x80\x82\ +\xf1\x28\x71\x28\x4e\x68\xe1\xab\x33\x33\x4e\xcc\x8b\x92\x61\x84\ +\x81\x28\xa4\x1a\x15\xe4\xbe\xa0\x98\x46\x50\xe1\x5c\x9b\x2b\x12\ +\xbb\x18\x80\x42\x89\x5d\x4d\x95\x9d\x48\x11\x06\xcf\x1c\xb7\xe7\ +\xef\x46\x4b\x59\x51\x02\x14\x01\x50\x17\xb1\x11\xe6\xb0\xf5\xf3\ +\x8c\x69\x51\x12\xbb\xb0\xee\x4b\x08\xc1\x1b\xae\xde\x09\xd3\x40\ +\x2d\x12\x48\x88\xaa\x34\x44\xc3\x03\xb4\x8d\xfa\xdc\x90\xb1\x0b\ +\x3c\x49\x43\x09\x1e\x94\x3d\x1e\xbd\xa0\x1d\x0f\x1c\x40\x97\x46\ +\xdb\x88\x6a\x8c\x50\x30\x85\xaa\xeb\x5c\xf7\xbd\x10\xa7\x62\xa0\ +\x0a\xe6\xc5\x44\xb7\x94\xf8\x14\x85\x4f\x01\xc7\x30\xe4\x8e\x02\ +\x82\x18\x35\xd8\x60\x9e\x29\xd5\xd4\xe3\xf4\x48\x40\x3a\xa6\xd1\ +\xe6\xa5\x68\x03\xc6\xfc\x1b\x28\xa3\x77\x63\x20\x91\x3a\x85\x44\ +\x35\xe7\x2c\x42\xe4\x44\x44\xf6\x10\x57\xb0\xe2\xfa\x64\x22\x51\ +\x0c\xe9\x92\x06\x8f\xad\x4d\x24\x12\xbf\xb0\x61\x24\x2f\xa4\x08\ +\xaa\xdb\xc2\xaf\x99\x91\x5a\x8b\x3e\x4f\x26\xed\xde\x2d\x85\x50\ +\xbd\x98\x3a\x21\xa4\x3d\x08\x3f\x75\x86\xc9\xd1\xc6\x2e\x28\x78\ +\x3a\x16\xb4\x0d\xba\xcf\x46\x3a\x05\xcf\x34\x4d\x8e\xaa\x03\x61\ +\x33\xa6\x22\x42\xc7\xad\xee\x7a\xa6\x5f\x99\x56\x75\x12\x87\x46\ +\x4d\x4a\x3d\x30\x18\x80\x06\x66\x8d\x97\xbd\x85\x2a\xa7\xb1\xa8\ +\xa7\x28\x2f\xb8\x67\xea\xa2\x5f\x6a\x6d\x37\x19\x03\xc4\xa3\x92\ +\x8a\x1a\x90\x00\x05\xe3\x51\x9b\xd3\x84\x0d\x58\x48\x03\xf3\xce\ +\xea\x6e\x75\x20\x94\x61\xb4\xce\xad\x51\x40\xf0\xfd\x21\xf5\x82\ +\xa9\x88\x68\xe8\x9b\xfb\x78\xaa\x22\x0d\x34\xb0\x1e\x3c\xca\x10\ +\x21\x70\xca\x1d\x8f\x7e\x04\xe1\xd3\x34\x52\x8e\xc2\xf6\x18\x88\ +\xc2\xb1\x69\x72\x61\x28\xca\x80\x10\x65\x00\x95\xbc\x82\x2c\x24\ +\x1c\x0b\x09\x28\x14\x68\xc9\x89\x81\x6f\x88\x09\xdc\x1b\xd5\x49\ +\xc1\x58\xcd\x64\x74\x4a\xf9\xf9\x63\x81\x21\xe7\xa4\x4b\x31\x62\ +\x47\x36\x30\x15\xb8\x15\x10\xc1\x40\x41\x69\x35\x94\x70\xa0\x8c\ +\x3a\x56\x09\xd3\x97\x28\x3d\x3d\x1c\x48\xbd\x88\x28\xaa\x54\x30\ +\xc1\x85\x0f\x7d\xa9\xd2\x33\x04\x1b\x48\xf6\x62\xa8\x53\x28\xfb\ +\x68\x5b\xc9\x4b\xf9\x35\x04\x56\xb5\x8e\x59\x17\x54\xef\xe6\x21\ +\xa7\x5a\xbd\x14\x42\xc2\x61\x54\xb8\x1c\x78\xaa\x53\xa1\x14\x1b\ +\x4a\x9b\xa9\x61\x21\xfa\x32\xee\xfc\x2a\x95\x6a\xee\xb1\x20\x05\ +\x72\x66\x36\xe5\xbc\xe4\xcf\x00\x77\x52\x38\xcf\xb9\xef\x36\x26\ +\x42\x29\xd4\xd6\xf6\x95\x54\xb3\x82\x01\x2a\x94\x43\xb3\x2d\xd2\ +\xa6\x38\xfe\x25\x55\x7f\x6e\x2a\x7a\x89\x59\x2f\x6b\x5f\xae\x54\ +\xd5\x4b\x4e\xea\x85\x6d\xcc\xa5\x14\x35\x11\xc3\xf6\xc8\x44\x10\ +\xa2\xea\x74\xba\xcb\xa6\x50\xfb\x96\x36\x65\x83\xa4\x50\x31\x30\ +\x05\xdb\x25\xa6\xad\x1c\xa4\x3c\x2a\xc6\x3e\x31\x50\xb2\xb7\x75\ +\x69\x88\x51\x31\x30\x85\xdb\x9f\xcb\x93\x3f\x03\x2f\x7e\x25\x0b\ +\xd1\x51\xf5\xbe\x5b\x12\x0a\xc5\xaa\x92\xa2\xf9\x68\x98\xc2\xb1\ +\x6a\x0a\xfe\x92\x3f\x83\xe2\xcf\x18\xc6\x25\x17\x01\x60\x20\x1d\ +\xed\x79\x89\x06\x2a\xa8\x52\x15\x54\xa1\x84\x63\x2b\x81\x85\x93\ +\x2c\xed\x65\x8a\x64\xfd\x42\x49\xdf\x36\xf0\x4b\x2a\x15\x25\xf4\ +\x00\x35\x71\xa5\x19\xc5\x4c\x8c\x8a\x03\xaa\x65\xd2\x19\xa1\x60\ +\xb6\xd8\xa3\x49\xaf\x58\x19\x1a\xe8\xb1\xa0\x81\x52\x6f\xb0\xfc\ +\xaa\x59\x94\xb4\xf1\xd1\xa9\x69\xf1\x9a\xb9\xe0\x5d\xef\x64\xd0\ +\xc4\xe2\xde\x38\x6f\xfa\x70\x15\xde\x79\x29\xc2\xd7\x4c\x25\x4e\ +\x8a\xf5\xb2\xd2\xa9\xdb\x34\x39\x85\xf5\x11\xe6\x99\xc1\x85\xf5\ +\xa9\xdf\x0d\x07\x50\xb8\xf0\x83\xa2\x12\x51\x1c\x47\x15\x2a\x9d\ +\xda\xa4\xc8\x09\x52\x0c\x48\xa1\xdc\xd4\x36\x43\x4e\x98\x22\x4c\ +\x66\x06\x93\xbc\x6d\x86\x9c\x5c\x19\x0c\x4c\xe1\x62\x84\xad\x8b\ +\x4a\x36\xd2\x45\xe5\x68\xda\x0c\x39\xb1\xea\x45\x65\x53\xd7\x33\ +\x76\x28\xee\x80\xe1\xce\x38\x66\x14\xe7\x00\xe1\x7c\x49\x65\x0f\ +\x48\x90\x82\xea\xd4\x94\x20\xa7\xb2\x33\x0c\x53\x09\x2a\x92\x94\ +\xa2\xbe\x94\xa0\xc1\x40\x14\x48\xf6\xb6\x11\x5f\xaa\x62\xc1\x88\ +\x3b\x40\x65\x52\xdb\xf4\x38\xe9\x53\x0c\x4c\x3d\x73\x5e\x07\x0f\ +\x52\x70\xd6\x64\xc7\x09\x56\x8c\x9d\x66\xe0\x12\x6e\x9b\xec\x38\ +\xe1\x8a\xb3\x2b\x14\x14\xc3\xb6\xf9\x71\x2a\xd0\xbf\xa4\x3c\xea\ +\x36\x3d\x4e\x31\x7d\xe0\x29\x4a\x46\x29\x79\x34\x18\x4b\x30\x91\ +\x12\x35\x67\x4f\xbd\x05\xca\xa5\xe2\x00\x9a\xe6\x73\x5b\xe5\x21\ +\x9c\x1a\xaa\x78\xc0\x99\xa0\x24\x99\x56\x42\x9b\xf3\x07\xf3\xa3\ +\xe8\xa5\x1e\x1a\x0c\x44\x35\x0b\x3a\x8d\x83\x85\xc9\x8e\x53\x78\ +\x10\x54\xf0\x4a\x26\xa3\xd8\x55\xe6\x9d\x04\xef\xba\x7f\x9c\x18\ +\x15\x03\x54\xcb\x44\xb0\x12\xae\x82\x9b\x82\x84\xb0\x03\xb1\x84\ +\x31\x2a\x8a\xda\x77\x62\xd5\x26\x3b\x4e\xc9\x71\x0c\x48\xe1\x18\ +\x35\xe5\xc6\xc9\xee\xc5\x70\x65\x3c\x73\xdc\x02\x44\xf2\x53\x20\ +\x89\x12\x6e\x18\x88\x82\xaa\xd3\x66\x4b\x21\x92\xbe\x18\x66\x12\ +\x54\x14\x29\x05\x7c\xc9\x9b\xc1\x40\x14\x46\xf6\xb6\xc1\x5e\x92\ +\xbd\x18\x31\x07\xc7\xb4\x11\xbd\x7b\xdd\x9e\x21\x31\x4e\x39\x19\ +\x9c\xd1\xea\xc1\x0a\xde\xdb\x86\x7a\x96\xc4\x38\x45\xf0\x81\xb7\ +\x8a\x52\xce\xd9\x2e\xaa\x26\xa2\x2a\x85\x09\x80\x79\x71\xc2\x15\ +\x76\xba\xba\x12\x3c\xa8\x6e\xd3\x38\x18\xb7\xb6\x59\x71\xc2\xf4\ +\x92\x82\xbe\xdb\xac\x38\x0d\x64\xb9\xa0\x8d\x10\xd2\x64\x75\x2a\ +\x4a\x42\x41\x14\x6e\x0f\x04\x45\xfb\x53\x23\xed\x00\x06\xb4\xa7\ +\x66\x0a\xf8\x6a\x72\x52\x51\x20\xb5\x4c\x2a\x63\x3d\xcc\x66\x51\ +\x64\xf8\xc2\x82\xaa\x23\x0c\xc6\x1b\xd9\x95\xbd\x40\x7c\xda\x4c\ +\x77\xa0\x0c\x2a\x0a\xa4\x60\x7c\x9a\xea\x57\x68\xbe\x03\x4a\x38\ +\x09\xca\x46\x5a\xef\x67\x4c\x4d\x6e\x38\xa8\x82\xed\x93\xda\x46\ +\x93\x88\x59\xa1\x9b\xa2\xac\x11\x56\x6a\xf9\x3e\xcc\xda\x94\xb0\ +\x28\x72\x52\x51\x30\x05\x63\xd5\x66\xbe\x03\x81\x8a\x12\x79\x80\ +\x94\xbf\x4d\xc9\x03\x25\xdf\x50\xf4\x2a\x50\x8c\xd0\xd2\x30\x2c\ +\xac\xe8\x03\xe4\xee\xe3\x22\xe7\x14\xcb\x47\x01\x15\x76\xff\xf1\ +\xdc\x51\xf0\x17\xa9\x9c\x05\x70\x03\xf2\xf4\x7f\x72\x6b\x20\x61\ +\x0d\xcc\x3b\xab\xbb\x05\xa2\xd0\x3b\x90\x4b\xaa\xe5\x46\xeb\x78\ +\x93\x26\xea\xd6\x73\x5b\xc1\xc9\x5a\x4a\x31\x08\x72\x6d\x10\x98\ +\x15\x76\x5f\xf9\xc4\xae\x84\x2a\x68\x2b\x8d\x17\x52\x04\xa5\xdf\ +\xc7\x0a\x5e\x1b\x4c\x26\x1a\xc2\x64\x31\xc1\x4e\x3b\x73\xda\x05\ +\x6b\xd5\xfb\x88\xe0\xd6\x62\x6a\xd8\x96\x60\x45\x80\x15\xc8\x10\ +\xde\x55\x8b\x7a\x32\x85\x2f\xa9\x08\x6d\x5b\x5a\xa8\x29\x77\x0e\ +\xcc\xb0\x4a\x1b\xaf\x95\x3f\x62\x58\xa1\x9c\x7e\xa3\x0e\xd8\x49\ +\xe5\x25\x17\xbd\xbb\x47\x69\x21\xa2\x00\x30\x6f\x02\x4b\xf2\x17\ +\x03\xce\xaf\x96\x75\x9f\x02\x67\xee\x29\x60\x08\x3b\xe9\xcc\x87\ +\x08\xce\x51\xc0\xd0\x33\xa3\x0f\x87\xaf\x9f\x05\x4f\x49\x4e\x2a\ +\x06\x9c\x2e\x75\xd9\x48\x2f\xfb\x4b\xf4\x4f\xe2\x4f\x4b\x86\x11\ +\x86\xc4\x75\x86\x59\xee\xe5\x1b\x33\x7e\x4f\x40\x34\xc5\x07\xc9\ +\x35\xc5\x40\x54\xa6\x81\xa1\x07\x9e\xcd\xb9\x54\x68\xca\x91\x93\ +\x1a\xc5\x90\xbb\x3a\xcd\x7a\xd0\xe7\x97\xbb\x14\xee\xc5\x42\xd4\ +\xa5\x7d\x2d\x78\x5f\xa0\xe1\x64\x2e\xb5\x54\xf1\x00\x1c\xc1\x37\ +\xd6\x0b\x69\x3a\x53\x7d\xc1\x7c\x51\x49\x32\x17\x03\x4e\x40\x5f\ +\x94\x44\x2e\x70\x7f\x71\xb4\x7f\x34\xef\x06\x17\x80\x7c\xd1\x90\ +\x3b\x62\x50\x04\x3c\x01\x9d\x51\x4f\xd9\x52\xe0\xc2\x06\x21\xb9\ +\xf6\x4e\xbe\x0f\x87\x92\x27\x8a\x02\x27\x68\xb4\x88\x4c\x5c\xe0\ +\x71\x3a\x11\x1a\xd7\xdd\xb8\x02\xcc\x26\x6a\xda\x64\x28\x00\x88\ +\x00\x29\x68\xb8\x88\xa2\x45\xc0\xc9\x6e\x1b\xe5\xab\x3e\xaa\x62\ +\x80\xe2\x52\x49\x6d\xa7\x28\x80\xc2\xf1\x28\x4d\x71\x40\x89\x2d\ +\x80\x66\x5d\xa8\x83\x0d\x03\x51\xd8\xac\x0b\x05\x8c\x30\xac\x5d\ +\xa8\x80\xae\x25\xbb\x08\xc5\xd4\x85\x92\xba\x9a\x26\x6b\x23\x45\ +\x18\x20\xf3\xa2\x64\xea\x62\x20\x0a\x9a\x17\xe5\x54\xd5\x09\xdc\ +\x35\x2c\x83\x08\xba\xab\x47\x81\xc2\xba\x5a\x91\x1e\xc5\xc0\x13\ +\x32\xf1\xe2\xa8\xa5\xf4\x3d\x5a\x4a\x8f\xfb\xfa\x81\x22\x46\x54\ +\xd7\x89\x02\x28\x9c\x3b\x6a\x69\x2b\x78\x24\xa9\x0b\x64\x19\x35\ +\x85\xba\xa4\x48\x51\x20\x85\x72\x5f\x36\xb5\xba\xe4\xc3\x60\xc8\ +\x5e\xb8\xe0\xae\x48\x33\x1a\x08\xd2\xf7\x87\xd4\xa7\x5d\xc3\x3d\ +\xef\xdf\xf0\xe9\xf4\x72\x5d\x12\xbf\x28\xfb\x9c\xc2\xed\x1c\xde\ +\xb6\x7b\x93\x9d\x04\x3b\xf8\x93\x7b\x6f\x8d\xec\x96\x79\xc2\xa1\ +\xda\xec\x5e\x4b\x7d\xde\xb0\x4d\x4d\xda\x5a\xed\xc2\x71\x9f\x37\ +\xd0\x86\x7b\x92\x6a\xc9\x90\x20\x05\x95\xbe\x69\x94\x2b\x59\x4a\ +\x18\x4a\x15\x88\x53\xdb\x49\x1b\x94\x65\x83\xed\x55\x73\xce\x19\ +\x7b\x94\x07\x87\xda\x69\x7a\xbd\xdd\x29\xf1\x29\x06\xa8\x50\x9b\ +\x12\xb7\xbb\x9d\x92\x95\x04\x1a\x4f\x62\x69\x56\x60\xb0\x5d\xd9\ +\x0b\x83\x69\xbb\x27\x26\x85\x92\x60\xb5\xa9\x56\xd6\xfb\xa3\xc4\ +\x8c\x66\x26\x04\x6e\xfb\xd4\xe9\x59\xf6\x06\xa2\xc0\x03\xf0\x88\ +\x06\x27\x6d\x34\x87\x8e\x14\xaa\x12\x5c\xa9\xbe\xf4\xcc\x39\xf6\ +\xa6\xa0\x0a\xd0\xcb\x8a\x3b\x28\x15\xdd\x54\x4a\xa3\x42\x82\xca\ +\x99\x0a\xc1\xa9\xc3\x2a\x15\x48\xdb\xb7\x95\xc0\x86\x78\x15\xc5\ +\xf8\x85\xe2\xd5\x76\x7e\x2b\xb5\x0f\xe3\xa0\x0a\x16\x7a\xf0\xeb\ +\xd9\xad\xe4\xd5\x40\xc2\x9a\x73\x16\x41\x72\xc2\x99\x6e\xfa\x2d\ +\x02\x2e\x8d\xef\xaf\x66\x39\x01\x58\xa9\x68\xcf\x3d\x44\x54\x25\ +\xd3\x8e\x07\x0e\xa0\x5a\x93\x19\x6c\x89\x5b\x51\xcc\xe0\xaf\x96\ +\x12\x9e\x9c\xaa\xa1\x46\x0b\x1c\x54\x21\x55\xab\x68\x36\xf4\x22\ +\x43\x18\xc3\x64\x82\xe2\xd6\x36\x5d\x63\xc9\x10\xc6\xf1\x5a\x61\ +\x02\xc1\x6d\xbe\xc6\x51\x62\x15\x05\x54\x17\xf1\x11\xe6\xb0\x98\ +\xec\xac\x39\x1b\x49\x16\x13\xac\x25\x2c\x99\x50\xca\x1e\x86\x1d\ +\x12\xb0\x96\x49\x65\xac\xef\xdb\x55\xf1\x0c\x89\x1b\xea\xc0\xb8\ +\xac\xfa\x96\xd0\x6c\x11\x44\x90\x5e\x4e\x15\x5a\x13\xe1\xa7\x72\ +\xd1\xcb\x2a\x6e\x91\x29\x14\x1c\xc8\x5d\xbd\xa8\xe2\x16\xdb\x58\ +\xc0\xc4\xa8\x17\x54\x58\xd8\xa6\x6c\x34\xc5\x1f\x50\x40\x85\x8b\ +\x3f\xb4\x39\x1b\x43\xcc\x7a\x49\xf1\xc2\x36\x63\x43\xbb\x63\x5e\ +\x56\x68\x7f\x5d\xb7\x64\x89\x57\x31\xbc\x1a\xb0\x3c\x5c\x9b\xb1\ +\xb1\x64\x02\xa3\xf8\xaa\xa0\x9a\x35\xa5\x6c\x68\x68\xc0\x65\x75\ +\xad\xa6\x68\xa1\xa4\xc0\x12\x06\xa6\x80\xa5\x10\x29\x0d\xc7\x49\ +\xb1\x62\x44\x21\xc0\x12\x36\x6d\x1e\x8e\x0a\x5c\x70\x50\x05\x2a\ +\x46\xdb\x66\xe1\x68\x3a\x2c\x4a\xf3\x14\x14\xae\x6d\x12\x4e\x90\ +\x15\x7c\x51\x49\xb8\x56\xb1\x3a\x93\x9c\x1c\x02\x16\x92\x5b\x15\ +\x0b\x42\xf0\x4e\xca\xdc\x44\xef\x26\xe9\xd6\xb3\x73\xab\xa2\x38\ +\x30\x02\x9c\x56\xa6\xf9\x4a\xda\x40\x64\x56\x35\x99\x49\xb0\x88\ +\x3a\x26\xbd\xf7\xae\xdb\xb9\x2a\x98\x70\xd6\xc8\x70\x7e\xe3\x97\ +\x0a\xd0\x70\x10\x55\xcc\x7a\xab\x7c\xff\xb4\xc2\x53\x2d\x5f\x43\ +\x83\x7f\x61\x41\x35\xa9\x93\x3c\xd8\xee\x96\x8b\x50\x92\xb7\xd9\ +\xd1\x8d\x8c\x5e\x14\x4c\x61\xe7\xda\x71\x9a\x97\x85\x61\x22\x01\ +\x4e\x40\xa3\x39\xb1\x28\x88\x02\x0f\x40\x93\x14\xf5\xc5\x90\xbe\ +\x60\xae\xa9\xcd\x15\x27\x85\x8a\xa2\x50\x01\x67\xda\xd1\xa8\x2c\ +\x70\x48\x95\xf0\xda\x75\x8b\x1e\xde\x8e\xf6\x9e\x32\x81\x27\x34\ +\xd3\x9c\x49\xee\x62\x20\xea\x98\xd0\x5e\xf5\x56\xfd\x9e\x36\x54\ +\xc9\xe7\x86\x8a\x7e\xa1\x41\xd5\x4c\x7a\xab\x8e\xb6\x32\x8e\xf0\ +\x68\x1b\xf4\xf9\xe7\x9f\x25\x3f\x46\x11\xa8\x18\x9c\x6a\x2d\xf3\ +\x9e\x3b\x03\x21\x7c\x05\x15\x3b\x20\x89\x5f\xce\x54\x84\x2e\xc0\ +\x88\xdf\xe4\xa3\x52\x56\x1c\x41\x00\x3b\xc9\xb8\xd0\xd1\x8c\x05\ +\x80\x35\x6c\x66\x7a\x10\xb0\x08\xc0\x1a\xa6\x95\xe3\xa1\x2f\x9a\ +\x7f\x1a\xb0\x4d\x62\x3c\xa7\xce\x37\x94\xbc\xb8\x67\x36\x3d\xce\ +\x1f\x26\x4c\x8d\x17\xd4\x47\x8e\x90\x76\x03\x83\xb4\xe9\x3a\xa6\ +\x01\x94\x38\x11\x25\xb8\xec\x78\x33\x80\x52\x51\x54\x09\x05\x56\ +\xc8\x14\x79\x68\x7c\x56\x72\x6e\x10\x32\x35\x70\x1b\x60\x24\xfb\ +\x57\x92\x0c\xc6\x00\x15\x94\x57\x53\x83\x14\xf5\xa9\x22\x65\xe0\ +\xa0\x2c\xa6\x66\xfc\x24\x31\x2b\x8a\x66\x85\x9b\xc3\x9e\xfc\x55\ +\x49\x35\x2d\x17\x65\x06\x6f\xcb\xf3\x1d\x19\x4c\x28\xd1\x25\xa0\ +\x68\x70\x9b\x5f\x95\x54\x2b\x8a\x02\x2a\x4c\xce\x7c\x93\x60\xa5\ +\x14\x2b\x4e\x8a\x55\x31\x6d\xbc\xec\xad\x6e\x39\x47\x36\xce\x51\ +\x28\x02\x05\x56\xa0\x24\xeb\x2e\x1f\x47\xf3\x1f\xc0\x6d\x26\xaf\ +\x85\x54\xc7\x3b\x12\x71\x15\x94\xeb\x2f\x1b\x3d\x61\x2f\xfa\x90\ +\x3b\x2a\x04\xc6\x81\xd4\x33\x6f\x65\x78\xc3\x61\x3d\x01\xd2\xc4\ +\xac\x92\x82\x10\xd0\xf2\x37\xb2\xa3\x09\xdd\x6e\xa9\xaf\xd5\x8c\ +\x9e\xc4\xa5\x2a\xb7\x81\x44\x2f\x06\xa6\xd1\xab\x91\x4e\x3b\xd7\ +\x5f\xda\x7d\x22\x9f\x06\xf2\x55\x91\x38\x55\x33\x2b\x9d\x79\x23\ +\x10\x7c\x02\xaa\x96\x6c\x5f\x24\x3e\x55\x8c\x07\xaf\xde\x68\x6a\ +\x3c\x89\x4f\x53\x00\x98\x82\x0f\xe7\xc2\xf4\x66\xf8\xb0\x7e\xf2\ +\xf0\x61\x8f\xde\x0f\xca\x8a\xfd\x56\x97\xba\x1a\x2d\x56\xf7\x65\ +\x35\xbf\x1d\xcc\x47\x75\x35\x7d\xf9\x91\x33\xaf\x6c\xd0\x36\x88\ +\xab\xb4\xbf\x18\x8f\x4b\xc0\x29\x75\xc5\x99\x32\xdc\x18\xc5\xc3\ +\x55\xba\x82\x6b\x69\x84\xbb\xca\xa3\xbf\xd3\x24\x04\xdc\x55\xf4\ +\x95\xda\x67\x3f\x6d\x3f\x7c\x8d\x60\x0b\x80\xe7\xe9\xdf\x1e\x7d\ +\x95\x0c\x93\xa3\x1b\x1d\x6c\x57\xe4\x72\x54\x7f\xde\x5b\x0c\xe5\ +\x64\xba\x8c\xff\x45\x0a\x4c\x8a\xfa\x75\x59\xac\xe2\xca\x18\xef\ +\x2f\xa6\xc5\x97\x55\x84\xa4\xb8\x1e\x97\x8b\x08\x4e\x5d\x56\xf9\ +\xf8\xb1\x7a\x1a\xd5\x8f\x55\xfc\x09\xbc\xb3\xec\xd2\x87\xcb\x10\ +\xec\xc1\x82\x8b\xc7\xff\x92\xf1\x2b\x9e\xfd\x23\x53\x3a\xed\x27\ +\x71\xb8\x8d\xf0\x6f\xbf\x9b\x76\xb5\xc8\xf5\x47\x68\x0d\xb9\x6c\ +\x76\x94\xdb\xe3\xe6\xf7\xa0\xdd\x61\xb6\xa6\xa1\xdd\x96\x6a\x57\ +\xdb\x67\xd9\x9f\xb2\x1e\x39\xfd\xed\xd1\xf0\xf7\x93\x48\x39\x27\ +\x73\x7e\xbc\xc0\x76\x1c\x23\xa3\x6f\x92\xfd\x9c\x29\x26\xdb\xa7\ +\x47\x4f\x4e\x20\x9c\x60\x71\x75\x73\x69\xfc\xf2\xe5\xf7\x53\x0e\ +\x86\x1e\x5e\xf3\xfc\x20\x94\x12\x4f\xcc\x33\xc3\x94\x5a\xaf\x19\ +\xc3\x64\x36\x8e\x0c\x98\xaf\x45\x89\x7b\xeb\xf9\x69\x0b\x4a\x38\ +\xa3\x85\x31\xff\x5a\x84\xf1\xdd\x85\x32\xcf\x04\x67\xeb\x85\xf2\ +\x5d\x53\x26\x1c\x53\x46\x0a\x46\x6b\x86\x47\xe1\xc2\x8f\x28\x63\ +\x69\xcd\xe8\xd4\x7d\xe4\xba\x94\x51\xf2\xfb\x26\xc9\xe1\x7e\x81\ +\xad\x80\xb1\xdf\x2f\x49\x5a\xe5\x2c\x7b\x88\xb2\x53\xcf\x2a\x0d\ +\xbe\x4b\x64\x18\x67\x1b\x3b\x24\xda\xc1\x6f\x3d\xbf\x2c\x65\xdd\ +\xd2\x47\xe4\x47\xfa\x7a\x47\x1f\xe1\x37\x36\xde\x77\x4b\x1f\x75\ +\x6c\x03\xef\xd1\x47\x6e\xcd\xbb\xe6\xe9\xd1\x93\x4b\xa4\x88\x3e\ +\xe8\x64\xe8\xac\x18\xd7\x32\xd4\xf7\xcc\x51\xe1\xab\x12\x67\x73\ +\xef\xdf\x1a\x7d\xd6\xc1\x86\xe6\xcf\xcd\x70\xf5\x14\xff\xfc\x2f\ +\x9c\x72\x9b\x2c\ +\x00\x00\x0d\x7d\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x73\x65\x74\ +\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\ +\x36\x35\x2e\x31\x37\x35\x34\x33\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x2e\x31\ +\x38\x33\x33\x38\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ +\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ +\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ +\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ +\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ +\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ +\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ +\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ +\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\ +\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x37\x34\x2e\x36\x36\x36\x36\x36\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x38\x2e\x36\x36\ +\x36\x36\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x2d\x32\x31\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x2d\x33\x2e\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\x32\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x66\x32\x66\x32\x66\x32\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x32\x65\x32\x65\x32\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\x35\x31\x38\x32\x35\x38\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\x48\ +\x20\x33\x32\x20\x56\x20\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x20\ +\x48\x20\x30\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x38\x2d\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ +\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ +\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x65\x39\x63\x36\x61\x66\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x30\x30\x31\x33\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\ +\x73\x65\x74\x3a\x32\x2e\x38\x33\x32\x38\x30\x31\x35\x38\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\x61\x62\ +\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\x61\x63\ +\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x35\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x37\ +\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x31\x39\x2e\x34\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x79\x3d\x22\x37\x2e\x31\x36\x38\x38\x33\x30\x39\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ +\x66\x30\x30\x31\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x31\x2e\x38\x33\x39\x39\x39\x39\x39\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\ +\x32\x31\x2e\x33\x33\x33\x33\x33\x33\x2c\x32\x33\x2e\x34\x36\x36\ +\x36\x36\x37\x20\x38\x2c\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ +\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x66\x66\x30\x30\x31\x33\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x38\x33\x39\x39\x39\x39\x39\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x32\x39\x2e\x33\x33\x33\x33\x33\x33\x2c\x32\x33\ +\x2e\x34\x36\x36\x36\x36\x37\x20\x2d\x38\x2c\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ +\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0d\x9d\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\x6f\x61\ +\x64\x5f\x73\x65\x61\x72\x63\x68\x2e\x73\x76\x67\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\ +\x6f\x78\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\x65\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\x66\x61\x66\x66\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\ +\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\x39\x32\x31\x36\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\ +\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x33\x37\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x66\x78\x3d\x22\x34\x2e\ +\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x34\x2e\x32\x31\x36\x38\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x31\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x32\x35\ +\x36\x33\x2c\x30\x2c\x2d\x30\x2e\x30\x37\x31\x30\x35\x30\x33\x35\ +\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\ +\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\x70\x61\ +\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\ +\x30\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x2d\x39\x34\x2e\x32\x37\x36\x34\x33\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x31\x39\x2e\x31\x31\x38\x33\x31\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ +\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ +\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ +\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ +\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ +\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ +\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ +\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ +\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ +\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ +\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ +\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ +\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ +\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\ +\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\ +\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\ +\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\ +\x33\x37\x35\x38\x35\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x35\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x32\x31\x36\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\ +\x33\x2e\x33\x39\x35\x34\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x39\x35\x36\x34\x37\x39\x35\x37\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x39\x34\x33\x37\x32\x36\x35\x31\x2c\x31\x34\x2e\ +\x30\x33\x32\x34\x34\x32\x2c\x38\x2e\x32\x36\x36\x32\x34\x35\x36\ +\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x37\x2e\x38\x36\x30\x36\ +\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x34\x2e\x31\x39\x37\x32\x35\x32\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x35\x2e\x35\x35\x34\x32\ +\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x39\ +\x2e\x39\x34\x38\x33\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x31\x2e\x30\x38\x33\x37\x38\x33\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x34\x38\x37\x38\ +\x31\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\ +\x39\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xfc\ \x00\ -\x00\x59\x6c\x78\x9c\xe5\x5c\xdb\x8e\xe3\x36\x12\x7d\xef\xaf\xd0\ -\x6a\xb0\x48\x06\x3b\xa4\x48\x51\xf7\xb6\x1d\x60\x77\x10\x24\x40\ -\xf6\x65\x93\xc5\x3e\x06\x6a\x89\xed\xd6\x8e\x2c\x19\x92\xdc\xb6\ -\xe7\x6b\xf6\x5b\xf2\x65\x29\x52\x17\x4b\xb6\xbc\x99\x8c\xe4\xa4\ -\x7b\xa8\x46\x63\x46\x55\x45\x91\x3c\x75\xaa\x78\x11\x5b\x8b\x6f\ -\x0e\x9b\x54\x7b\xe6\x45\x99\xe4\xd9\x52\xa7\x98\xe8\x1a\xcf\xa2\ -\x3c\x4e\xb2\xf5\x52\xff\xf7\x4f\xdf\x22\x4f\xd7\xca\x2a\xcc\xe2\ -\x30\xcd\x33\xbe\xd4\xb3\x5c\xff\x66\x75\xb7\xf8\x0b\x42\xda\x3f\ -\x0a\x1e\x56\x3c\xd6\xf6\x49\xf5\xa4\x7d\x9f\x7d\x28\xa3\x70\xcb\ -\xb5\xaf\x9f\xaa\x6a\x1b\x18\xc6\x7e\xbf\xc7\x49\x23\xc4\x79\xb1\ -\x36\xde\x6a\x08\xad\xee\xee\x16\xe5\xf3\xfa\x4e\xd3\x34\xa8\x37\ -\x2b\x83\x38\x5a\xea\x4d\x81\xed\xae\x48\xa5\x61\x1c\x19\x3c\xe5\ -\x1b\x9e\x55\xa5\x41\x31\x35\xf4\x93\x79\x74\x32\x8f\x44\xed\xc9\ -\x33\x8f\xf2\xcd\x26\xcf\x4a\x59\x32\x2b\xdf\xf4\x8c\x8b\xf8\xb1\ -\xb3\x16\xad\xd9\x33\x69\x44\x7d\xdf\x37\x88\x69\x98\x26\x02\x0b\ -\x54\x1e\xb3\x2a\x3c\xa0\x61\x51\x68\xe3\x58\x51\x93\x10\x62\x80\ -\xee\x64\xf9\x69\x56\x41\x09\x80\x6e\xe1\xb7\x33\x6f\x05\xb8\xcc\ -\x77\x45\xc4\x1f\xa1\x1c\xc7\x19\xaf\x8c\xf7\x3f\xbd\xef\x94\x88\ -\xe0\xb8\x8a\x7b\x8f\x69\xf1\x1c\xd4\x3a\x00\x39\x0b\x37\xbc\xdc\ -\x86\x11\x2f\x8d\x56\x2e\xcb\xef\x93\xb8\x7a\x5a\xea\xcc\xc2\x94\ -\xc1\x65\x4b\xe1\x13\x4f\xd6\x4f\xd5\xb9\x34\x89\x97\x3a\xb4\xde\ -\xf4\xbd\xfa\xbe\x47\x0e\x5a\x1b\x34\x0f\x0e\x3a\x0d\xc1\xbe\x89\ -\xa9\x56\x50\x9b\xb9\xb5\x4d\xdb\x85\x20\xce\x23\xd1\x26\x78\x24\ -\xdf\x24\xe1\xae\xca\x37\xe0\xb5\x28\x4a\xc3\xb2\x4c\x1e\x93\x08\ -\x6e\xf2\x6c\x9b\xee\xd6\x49\xf6\x73\x54\xe4\x65\xf9\xf3\x50\x85\ -\x5b\x1c\xbb\x4a\xf9\x61\x9b\x17\x15\x3a\xc4\x5b\x40\xd3\x71\x47\ -\x95\xc7\x56\xb9\x02\xed\x22\xe6\x8f\xa5\xb0\xaa\xbb\x26\xee\xa0\ -\x6f\xae\xae\x19\x52\xdb\xb5\x54\x34\x33\x7e\x4e\xf8\xfe\x64\xfb\ -\x10\x96\x35\x7c\x9a\xb6\x0d\xd7\x40\xb5\x34\x2f\x96\xfa\x9b\x47\ -\x79\x35\x8a\x87\xbc\x88\x79\xd1\xaa\x1c\x79\x0d\x54\x39\xb8\x23\ -\xa9\x8e\x75\x70\x35\xcf\x6e\xdb\x2b\x9e\xda\xe9\xc9\xb8\xbe\x7c\ -\x0a\xe3\x7c\xbf\xd4\xcd\x73\xe5\xc7\x3c\xdf\x2c\x75\x1b\xdb\xbe\ -\xe7\x13\x7a\xae\x8d\x0e\x4b\x1d\xd9\x26\x76\x2c\xe6\x78\x17\x65\ -\x23\xa8\x0f\x51\x8a\x99\xe7\x38\xd6\x85\x72\x57\x14\x10\x7d\x28\ -\x0d\x8f\x1c\x3a\x25\xff\x69\x9f\x5f\x3e\xe5\xfb\x75\x21\xc0\xa9\ -\x8a\x1d\x3f\x2f\x29\x34\xe8\xe1\x21\x3f\x8c\xab\x81\x0c\x3b\x11\ -\xd7\x68\x97\x25\x15\xc4\xce\xf6\xd0\x7f\xea\x2e\x89\x79\x39\x5e\ -\xb0\xcc\xc2\x2d\x5a\xa7\xf9\x43\x98\x8e\x1b\xec\x93\x0c\x40\x42\ -\x0d\xcd\x29\xeb\x7c\x70\x6e\xd1\x72\xde\x25\xde\x15\x0b\x68\xfb\ -\x85\x1f\x1a\xd5\xf1\xba\x6a\x13\x1e\x92\x4d\xf2\x91\x03\x30\x54\ -\xd2\x0e\xa8\x35\x80\xa5\x2e\xa6\x69\xd5\x51\xc4\xef\xe1\x28\x64\ -\x7a\x2b\x14\x78\x0a\x81\xe9\xfb\x6e\x27\xcc\x8b\x04\xc2\xa2\xd7\ -\x9c\x56\x74\xec\x8b\x44\xb4\x43\xb2\x3e\x48\x7e\x49\xf6\xb9\xe7\ -\xba\x63\x5f\xd7\xd0\xde\xb8\xe4\xbd\x94\x6f\x78\x15\xc6\x61\x15\ -\x9e\x82\xa0\x95\x40\xdb\x48\xdb\x33\x48\x9c\xc1\xbf\xde\x7f\xbb\ -\x6a\x2a\x5a\x44\x51\xf0\x9f\xbc\xf8\xd0\xd6\xab\x69\xc2\x20\x7c\ -\xc8\x77\x80\xb4\xbe\xea\xc4\x8b\x38\x0a\x20\xd5\x41\x0a\x58\x25\ -\x1b\xa0\xb6\xc8\x92\x7f\x83\xd4\xb6\x30\x4e\x8a\x81\xb1\x00\xeb\ -\xf4\xd0\xfa\xb1\x05\xaf\x73\xe6\xe8\xc0\x11\x47\x9b\x44\x14\x32\ -\x7e\xac\x92\x34\xfd\x5e\x54\xd2\xf4\xb8\xf7\xd0\xa4\x4a\xf9\x49\ -\xb8\x30\x9a\xd6\x37\x7d\x33\x7a\x9d\x5b\x18\x6d\xef\xe5\xdd\xfa\ -\x84\xca\x20\x28\x3a\x47\xa7\xe1\x03\x07\x86\xfe\x20\x94\xda\x85\ -\x76\x5d\xe4\xbb\xed\x26\x8f\x79\x53\xbc\x43\x93\x47\x55\xe7\xb2\ -\xea\x98\x82\xfe\x11\x5a\x1f\xbc\x09\x89\x19\x99\xd1\xbd\xb8\x41\ -\x4d\x9a\x08\x68\x7d\x5b\xec\x52\x48\x77\xcf\x3c\xcb\xe3\xf8\xbe\ -\xac\x8a\xfc\x03\x0f\x9a\xc4\xd4\xdc\xd6\xc1\x10\x10\x6c\x31\xdf\ -\x12\xbe\x6f\xe5\x80\x10\x2f\x52\x60\x6b\x15\x58\xad\x2c\x0e\x21\ -\xcd\x14\x45\x78\x0c\x32\x18\xe6\x5b\x69\x57\xe7\x80\xa8\xa2\xb9\ -\xb6\xc7\x7c\x44\x91\x87\x4e\xaa\x26\xf6\x6c\xcc\xd8\x69\x30\x11\ -\x57\x1b\x72\x16\xf6\xa5\xc6\xea\x34\x82\xb4\x04\x9f\x91\x56\x66\ -\xa6\x0b\x2a\x17\x83\x38\x28\x24\xa5\x1d\x4b\x5c\x4e\xe7\xe0\x57\ -\x0d\xa4\x7f\x0b\x20\x29\xc3\xee\xd0\xf2\x8b\xc7\x91\x22\xfb\x16\ -\x48\x7a\xd8\x23\xe2\x32\x67\x42\x92\x10\x0f\x7e\x5e\x34\x92\xee\ -\x2d\x70\x34\x19\x76\xd4\x81\x10\xc8\x78\x13\x36\x52\x0f\x0f\x66\ -\x9a\x0a\x40\xe9\xdf\x86\x8f\x8c\x61\x4b\x9d\x91\x66\x22\x82\x64\ -\x80\x1c\xf6\x66\xe5\xe0\xcb\x46\x0e\x38\x68\x4d\x44\xef\xd2\x5c\ -\xc1\xa9\x8e\x37\x27\x05\x15\x9b\xde\x90\xc9\x14\x1c\xa0\xa7\xd8\ -\x94\x86\xb0\x39\xc1\x53\x67\x1e\x43\x26\x0f\xbc\xc3\x98\x55\x6e\ -\xea\x32\x7d\x91\x3c\x3a\x72\xcc\x3d\x73\x79\xe1\x40\x42\xf2\x9b\ -\x8c\xe3\x30\x82\x3d\x6c\x4b\x13\x85\xf0\x9b\x77\x00\x51\x6b\xee\ -\xdc\x20\x68\xce\x89\xa0\x6a\xb3\x3f\xb1\x90\xb3\xa6\x72\xd0\x74\ -\xce\x47\x10\xb9\x1a\x71\xd9\x9c\xd1\xfc\x0a\x80\xa4\x93\x07\xe6\ -\x51\x24\x81\x93\x73\xcd\x08\x5f\x05\x88\xf6\xe4\x0d\xc3\x51\x18\ -\xbd\xf3\xcd\x86\x2f\x7a\x74\x69\x76\x68\x26\x67\xc7\xf1\xd8\x66\ -\xf5\x43\x94\xa1\xa5\x85\xcc\xa9\xeb\x64\x93\xe2\x33\xa1\x52\xa1\ -\xed\xa1\xa9\xab\x3d\x3a\xa0\x20\x9d\x6f\xb9\xf7\xc2\x91\x93\xb3\ -\x1c\x6b\x2a\xfd\xa8\xc2\xb9\x90\xb0\xe9\x5b\xd5\x03\xf8\x4c\xb5\ -\x56\x7a\x14\x39\xd3\x87\xe4\xb1\xf4\xa7\x18\x8e\x04\xc6\xe3\x79\ -\xe3\x98\xaa\xb5\x64\x16\x03\xb1\x83\xd8\xd4\x5d\x87\x51\x2e\x2a\ -\x07\xa5\xd8\x06\x43\x3e\xb9\x05\x96\x73\xcf\x0f\x5f\x38\x96\xcd\ -\x4e\xce\xf4\x73\x0e\x2a\x4f\xb2\x9b\xcd\x1c\xe4\x3b\xb3\xa2\xa8\ -\xce\x0c\xbb\xde\xca\x99\xbc\xe0\xeb\xf1\x4d\xd9\x5d\x1c\x34\x95\ -\x83\x43\x10\xd5\xe2\xa0\x08\xe5\xa9\xb3\x9c\x21\x7e\xea\xac\xf5\ -\xba\x0d\xb0\xc9\x6f\x56\x86\x08\xaa\xb5\xde\x93\x67\xe5\x60\x28\ -\x99\xba\xe8\x1b\x62\xa8\xd8\x62\xa5\x3d\x2d\x87\x88\x33\xf3\x98\ -\x32\xdf\x4c\x7b\x08\xdb\xab\x80\x54\xee\xc9\x4e\xde\x0b\x43\xcc\ -\x3d\x9f\x1c\xfe\xee\x19\x63\x2b\xad\x8a\x30\x2b\xc5\x59\xff\xa5\ -\x5e\x46\x61\xca\xbf\x46\xf4\x1d\x7d\xfb\xc5\x10\x58\x4e\x2c\xa7\ -\xbe\xe1\x3a\xcb\x04\x1e\x56\xe4\x80\x13\x9d\xbe\x5f\x31\x7a\xc6\ -\x73\xe6\x93\x8a\xaf\x85\x89\xb7\xc0\x72\xee\x53\x13\x2f\x9d\x91\ -\x13\x31\x1c\x3f\xb9\xa3\xda\xc9\x59\x6f\x6a\x58\x8f\xc2\xa8\xd8\ -\xe9\x4f\xf9\x5a\xf0\x16\x38\x2a\x76\x0e\x94\x4e\x5e\x6e\x8f\xa2\ -\xa8\xce\x81\x50\xb9\x2d\x7e\x93\x80\x56\xed\x68\xa8\x35\xc3\xaa\ -\x71\x9c\x8c\x8a\x8d\xd2\xf5\x3e\xd0\x44\x24\x47\xcf\x9e\xcc\xb8\ -\x19\xf4\xe2\xe9\xd8\xad\xc0\x6f\x02\xa4\x72\x2f\xbc\xda\xe5\xe0\ -\x2d\xd0\x54\x67\x4d\x38\xef\x51\x0a\xe5\x5e\x30\x4c\x3e\x90\x37\ -\xfa\xc2\x55\x35\x14\xbd\xe9\xe7\xc9\xc6\x4f\x01\x28\xf4\xaa\x41\ -\x4c\x76\x6e\x72\xaa\x51\xad\xb7\x0d\xf5\x8b\x6b\x6f\xde\xe3\x8d\ -\x33\x0e\x27\x2f\x1c\xbe\x66\xd2\x3d\x79\x63\x67\xfc\x80\x99\x42\ -\x30\x7a\xb7\x3a\xed\x3d\xf7\x8b\xaf\x06\x99\x01\x92\xe4\xff\x20\ -\x49\x2c\xb1\x19\x32\x44\xd2\xc2\x1e\xf1\x6d\xdf\xf7\xbc\x11\x24\ -\x61\x34\x94\xfb\x27\xc4\xfe\x5c\x48\x4d\xdf\xbf\xfc\xd3\x7c\x82\ -\x99\x4b\x98\xe3\x5f\x42\xe9\x61\xd7\x22\x2e\xf3\xfa\x50\x12\xec\ -\x99\xbe\xc3\x88\x3d\x5c\x51\x63\xe6\x9b\xb6\x6f\xd9\x03\x2c\x3d\ -\x90\x12\xe6\xdb\xe6\x00\x53\x1b\xbb\xbe\xcd\xfc\xde\x47\x02\xba\ -\x0f\x17\x75\xef\x6c\x50\xc4\x33\xe8\xb7\xf8\x46\x16\x72\xb0\x4b\ -\x1d\x62\x79\xee\x27\xd8\x1f\xa5\xbd\xe5\x7b\xae\xe3\xd8\x27\x9f\ -\x6d\xc3\xea\x69\xcc\x67\x3d\xd4\x44\x24\x5c\xfa\x83\x02\xb3\x1d\ -\x66\x41\x87\xb7\x87\x56\x93\x26\x19\x87\xda\x83\x87\x5d\x55\xf5\ -\x65\xff\xcd\x93\x2c\x90\xee\xba\xee\x08\xf0\xc3\x3f\x35\x44\xb1\ -\x2b\x2f\xf3\x1d\x2c\x56\xe4\x17\xf1\x98\xf6\x9d\x66\x99\xe7\xe3\ -\x8b\x70\x9b\x68\x3a\x03\xdb\xcb\xce\x47\x79\x06\x0d\xa9\xf2\x02\ -\x45\xbb\xe2\x39\xac\x76\x05\x17\xf4\xed\x3a\x5d\xf1\x43\x47\xd4\ -\xc3\x26\x0d\xe4\xe7\xfa\xe0\x81\x05\x2f\x79\xf1\xcc\xf5\x73\x40\ -\xf2\xac\x42\xf2\xff\x00\x4b\xb1\x09\xd3\x7b\x29\xd9\x4b\x32\x04\ -\x0f\x79\x1a\xd7\x82\x32\xf9\xc8\x03\x6a\x36\x7b\x79\xd4\x07\x60\ -\x44\xef\x9b\x0f\x9e\x05\xe4\xaf\xb5\xd9\x63\xb8\x49\xd2\x63\x50\ -\x82\x83\x10\xd4\x97\x3c\xde\xa3\xb6\xe5\xa8\x7e\xce\x96\x47\xdd\ -\xe7\xf7\x82\xaf\x7e\x04\x43\xed\xef\x50\xcb\x57\xf7\x29\xaf\x84\ -\x2f\x9b\x8f\x8a\x05\x04\x6a\xd8\xe7\x45\x3c\x10\xb4\xc9\x4b\xba\ -\xec\x2c\x79\x35\x0e\xed\x87\x44\x9b\xa7\xcc\x1a\x6d\xeb\xd3\xf3\ -\xd4\x20\x8d\x40\x04\x7a\xb6\x3f\xdc\x01\xf1\x21\x2a\x2d\x9f\x0d\ -\x83\x4d\x60\xcf\x3c\xea\x8b\x83\x5f\x9d\xe2\xe2\x8d\x24\xc5\x84\ -\x51\xcb\xa4\xe6\x3b\x82\x7d\x07\x82\xc2\x21\xf4\xad\xbe\x5a\x54\ -\xd0\xd3\xac\x2d\xd5\xfb\xc6\x61\x91\x0b\x47\x09\xb4\xf5\x93\x56\ -\x56\x27\x0a\x30\xcf\xa4\xa8\x7f\x24\x7c\xbc\xcd\x57\x5a\x3d\xe4\ -\xc1\x55\xaf\xfb\xa6\x4b\x2d\xfb\xcc\xe7\x14\x9b\xf6\x64\xaf\xff\ -\xb6\x47\xa7\x78\x71\x65\x2e\x0c\x89\xd2\xef\x44\xf7\x2a\x82\x96\ -\x8d\x3d\x87\x79\x8e\x32\x08\x8e\x32\x0e\x92\xec\xea\x97\xff\x75\ -\xd0\x1a\x82\xf7\xb7\x48\x3f\x7d\xd1\x67\x27\xa0\x9b\xe5\x95\xee\ -\x8f\x6b\xcd\x7e\xb6\xa0\x30\xb0\x5a\xd4\xa5\xde\x60\xa0\xb4\xb1\ -\x45\x4c\xdb\x76\xae\xa6\x8b\x3f\x3e\x61\x20\x3a\x24\xfc\x65\xc3\ -\xaf\x34\xfd\x4f\x67\xfc\x35\x2f\xac\xe8\x67\x47\xfb\x95\xce\x33\ -\x8a\x6d\x87\xf6\x27\x21\x67\xcc\xfd\xdc\xbe\xfe\x16\x91\xce\xc2\ -\x0d\x39\xe3\x01\xb7\x30\xd6\xab\xbb\x85\xf8\xce\xe5\xea\xee\x57\ -\xee\x92\xd2\xac\ -\x00\x00\x0a\x6e\ +\x00\x23\x8c\x78\x9c\xdd\x99\xdd\x73\xe3\xb6\x11\xc0\xdf\xfd\x57\ +\xa0\xbc\x97\x76\x2a\x92\x00\xbf\x49\x4b\xca\x43\x6e\x32\xc9\x4c\ +\xfa\xd2\x26\xe9\xe3\x0d\x45\x42\x12\x6a\x92\x50\x41\xc8\x92\xee\ +\xaf\xcf\x82\x1f\x20\x29\xd1\x53\x5f\x6d\x5f\x7c\xe1\x8c\xc7\xc4\ +\xee\x02\x04\x7e\xd8\x5d\x00\xc2\xf2\xbb\x73\x59\xa0\x47\x2a\x6a\ +\xc6\xab\x95\x41\x2c\x6c\x20\x5a\x65\x3c\x67\xd5\x6e\x65\xfc\xfa\ +\xcb\x0f\x66\x64\xa0\x5a\xa6\x55\x9e\x16\xbc\xa2\x2b\xa3\xe2\xc6\ +\x77\xeb\xbb\xe5\x5f\x4c\x13\x7d\x2f\x68\x2a\x69\x8e\x4e\x4c\xee\ +\xd1\x4f\xd5\x43\x9d\xa5\x07\x8a\xfe\xba\x97\xf2\x90\xd8\xf6\xe9\ +\x74\xb2\x58\x27\xb4\xb8\xd8\xd9\x7f\x43\xa6\xb9\xbe\xbb\x5b\xd6\ +\x8f\xbb\x3b\x84\x10\x7c\xb7\xaa\x93\x3c\x5b\x19\x5d\x85\xc3\x51\ +\x14\x8d\x61\x9e\xd9\xb4\xa0\x25\xad\x64\x6d\x13\x8b\xd8\xc6\x60\ +\x9e\x0d\xe6\x99\xfa\x3a\x7b\xa4\x19\x2f\x4b\x5e\xd5\x4d\xcd\xaa\ +\xfe\x30\x32\x16\xf9\x56\x5b\xab\xde\x9c\xdc\xc6\x88\xc4\x71\x6c\ +\x63\xc7\x76\x1c\x13\x2c\xcc\xfa\x52\xc9\xf4\x6c\x4e\xab\x42\x1f\ +\xe7\xaa\x3a\x18\x63\x1b\x74\x83\xe5\xf3\xac\x92\x1a\x80\x1e\xe0\ +\x4f\x9b\xf7\x02\xab\xe6\x47\x91\xd1\x2d\xd4\xa3\x56\x45\xa5\xfd\ +\xf1\x97\x8f\x5a\x69\x62\x2b\x97\xf9\xa8\x99\x9e\xe7\xe4\xab\x13\ +\xc8\x55\x5a\xd2\xfa\x90\x66\xb4\xb6\x7b\x79\x53\xff\xc4\x72\xb9\ +\x5f\x19\xae\x67\x11\x17\x1e\xbf\x11\xee\x29\xdb\xed\xe5\xb5\x94\ +\xe5\x2b\x03\x7a\xef\xc4\x51\x5b\x1e\x39\x07\x69\x0d\xba\x86\x13\ +\xad\xc1\x56\xec\x58\x04\x09\xe2\xbb\x61\x6b\xd3\x0f\x21\xc9\x79\ +\xa6\xfa\x04\x4d\xd2\x92\xa5\x47\xc9\x4b\x98\xb5\x2c\x2b\xd2\xba\ +\x66\x5b\x96\x41\x81\x57\x87\xe2\xb8\x63\xd5\xa7\x9a\xed\xaa\x4f\ +\x34\x67\xf2\x93\x48\x2b\xc0\xd1\x23\xd4\xdf\xa3\xe7\x03\x17\xd2\ +\x3c\xe7\x07\x00\x19\x84\xb3\xca\x4b\xaf\x5c\x83\x76\x99\xd3\x6d\ +\xad\xac\xda\x51\xa9\x12\x0c\x2b\x34\x90\xdd\x68\x75\x27\x55\x0f\ +\xf3\x47\x46\x4f\x83\xed\x26\xad\x5b\x72\x08\x1d\xd2\x1d\x78\x59\ +\xc1\xc5\xca\xf8\xb0\x6d\x9e\x4e\xb1\xe1\x22\xa7\xa2\x57\x05\xcd\ +\x33\x51\x71\x98\x09\x26\x2f\x6d\x5c\x75\x6d\xf7\xfd\x55\xad\x6a\ +\x3d\x9e\xd7\xd7\xfb\x34\xe7\xa7\x95\xe1\x5c\x2b\x3f\x73\x5e\x42\ +\xab\x30\x23\x71\x18\xe1\x1b\x75\x76\x5e\x19\xa6\xe3\x5a\x71\x48\ +\x9c\xd8\xbf\xd1\xc2\x07\x23\xa8\xe9\x04\x0e\x89\x6e\x94\x47\x21\ +\x20\xf2\xcc\x22\xbd\x50\x18\x55\xf3\x8f\x74\x46\xf5\x9e\x9f\x76\ +\x42\xd1\x91\xe2\x48\xaf\x6b\x2a\x8d\xb9\xd9\xf0\xf3\xbc\x1a\x1c\ +\xe1\xa8\x62\xda\x3c\x56\x4c\x42\xdc\x1c\xce\xe3\x56\x8f\x2c\xa7\ +\xf5\x7c\xc5\x13\xab\x00\x82\xd9\x79\x30\x71\x35\xe3\x6b\x8b\xde\ +\x9d\x43\x7c\x33\xaa\xce\x02\xba\x76\xc3\xb9\x53\x5d\x9e\x56\x95\ +\xe9\x99\x95\xec\x33\x85\x71\x93\x6b\x93\xba\x4a\x0f\xe6\xae\xe0\ +\x9b\xb4\xe8\x7a\xbf\x6e\x2c\x96\x13\x2c\x6d\x25\x84\xe4\x45\xc5\ +\xee\xf9\xa2\x64\x46\x2f\x54\x3c\x95\xc0\x0d\x03\x5f\x0b\xb9\x60\ +\x10\x12\xa3\xfe\xf6\xa2\xcb\x58\xa4\x22\x1d\x12\xf5\xb9\x71\xb0\ +\xc6\xfd\xc2\x6b\xdd\x65\xac\xeb\xfc\xde\xbe\x75\xfc\x46\x5e\x52\ +\x99\xe6\xa9\x4c\x87\x28\xe8\x25\x4e\x1c\xe3\x7e\x64\x90\x34\x93\ +\x7f\x7e\xfc\x61\xdd\x7d\x68\x99\x65\xc9\xbf\xb9\x78\xe8\xbf\x8b\ +\x90\x32\x48\x37\xfc\x08\x53\x61\xac\xb5\x78\x99\x67\x09\xa4\x39\ +\x08\xff\x35\x2b\xc1\xb7\x55\x86\xfc\x3b\xa4\xb5\xa5\x3d\x28\x26\ +\xc6\x0a\xd6\xd0\x68\xdb\xac\xa0\x6d\xbe\x9c\x5d\x34\xf2\xac\x64\ +\xaa\x92\xfd\x2f\xc9\x8a\xe2\x27\xf5\x91\x6e\xc4\xa3\x46\x99\x2c\ +\xe8\x20\x5c\xda\x5d\xef\xbb\xb1\xd9\xa3\xc1\x2d\xed\x7e\xf4\x4d\ +\x69\x37\x50\x99\x04\x85\x9e\xe8\x22\xdd\x50\x70\x82\x9f\x95\x12\ +\xdd\x68\x77\x82\x1f\x0f\x25\xcf\x69\x57\x5d\xd3\xa4\x99\xd4\x53\ +\x26\x2f\x05\xe8\xb7\xd0\xfb\xa4\xcb\x34\xf7\xaa\x60\x76\x79\x22\ +\x21\x6d\x51\x1c\x0b\xc8\x77\x8f\xb4\xe2\x79\x7e\x5f\x4b\xc1\x1f\ +\x68\xf2\x01\x63\x2f\xc2\xb8\x2b\xb6\xd1\x92\xe8\x62\xc1\x2a\x0a\ +\xdd\x48\xea\xff\x1e\x53\x41\xc7\xd2\xff\x70\x56\x25\xc0\x8d\x8a\ +\x5e\xda\x14\x0a\xf0\x78\x99\x78\xbd\x2c\x4f\x21\x15\x09\x91\x5e\ +\x92\x0a\x76\x01\x63\x29\xdf\x6e\x6b\x2a\x87\x2f\xf5\x5d\xc5\x96\ +\xdb\x3d\x13\x47\x57\xc3\x75\xe3\x98\x68\xe1\xec\xc2\xa4\x9e\xf9\ +\xc5\x49\x3d\x93\xa8\x00\xff\x8e\x2d\x2f\x74\x63\xec\x06\xd4\x24\ +\x81\x56\x88\x89\x99\x00\x3b\xd7\x72\x61\x81\x0a\xe2\x48\x7b\xc5\ +\xf2\x90\xca\xfd\x1c\xfd\xd1\x28\x15\x59\xf5\x4c\xc9\x3a\x6d\xa7\ +\x5c\xcf\xbb\x46\xbc\x39\x4a\xf9\x5a\x80\xf5\xbc\xeb\x71\x00\xc2\ +\x7f\x20\xbc\xc0\xe8\x37\xd4\x83\x99\x02\x56\x23\x82\x68\x1d\x38\ +\x0c\x99\x9d\x57\xd0\x43\xc9\x85\x09\x39\xfe\x31\x95\x47\x41\x27\ +\xb9\x44\xe7\x04\x70\x52\x15\x46\x90\x8e\xb3\xec\x5b\x47\xa5\x21\ +\x2d\xf4\x1b\xfa\x11\xe1\x39\x64\xd1\xfb\x41\x46\x2c\x98\x41\xec\ +\xf8\xd1\xe1\xfc\xe5\xcc\x9e\x20\xa1\x57\x81\x85\x13\x59\x11\xfa\ +\x1e\xb9\x96\xd3\xbe\xde\xbc\xdc\xd0\x71\xc3\xd0\x31\xf1\xb3\xf9\ +\xbc\x8a\xcf\x90\xd0\xf7\x88\xef\xbf\x1a\x81\x12\xf9\x7d\x4a\x5a\ +\xb8\xbe\xe5\xa0\x0c\xe2\xc8\xf4\x2c\xa7\x81\xf2\xd4\xfb\x2d\x8a\ +\xc8\x7b\x3b\x10\x01\x81\x8c\x7f\xe5\x09\xdd\xac\x39\xaf\x08\x62\ +\xe4\x0a\xa4\x63\xd2\xcc\x3d\xfc\xa1\x9f\x51\x6c\x05\x0b\x27\xb0\ +\x5a\x0b\x44\xa0\x10\x5a\x61\x6b\xb4\xd7\x0c\xc1\x4e\xdb\x74\xce\ +\xe3\x8c\x0c\x3d\x6c\xf9\x2d\xea\x59\x7f\xf2\x30\x09\xbf\x22\x44\ +\xdf\xf2\xbc\xc6\xc9\x82\xaf\x91\x81\x66\x56\xbe\xf7\x43\xdd\x8c\ +\xdf\x8c\x7b\x44\x6f\xd3\xd8\xab\x3b\xef\x38\x8f\x11\xd7\x8a\x5a\ +\x5c\x5d\xb4\x2a\x99\x03\x50\x08\xee\x19\x69\x85\x22\xaa\x40\x17\ +\x9a\xe5\x02\x88\xf7\x05\x6f\xd1\x2f\x52\x28\xb4\xbc\xa6\xc6\x42\ +\x67\x83\xa8\x85\xea\xa9\xfa\x33\x4c\xdd\xb7\xf3\xe4\x5b\xa2\x90\ +\xb7\x9a\x5e\xc5\xee\x1f\xe7\xc9\xef\x71\x0a\x4c\xf7\x8b\x17\x6f\ +\x6d\x27\x45\x5a\xd5\xea\x00\x62\x66\x70\x3c\xa5\xc2\x6c\x8e\x53\ +\x33\x1b\xa8\x1b\x43\xd8\x53\x9a\xd7\x87\xab\xe7\xce\xee\x76\x3b\ +\xb7\xec\xbf\x69\xbc\x38\x5e\x97\x1e\x34\x61\x90\x39\x96\x37\x9a\ +\x2c\x07\xf7\xc8\x49\xd8\xd6\x83\xf9\x0c\x90\xb2\x5a\x68\xab\x51\ +\x0e\xea\x26\x46\x65\x32\xb7\xb7\x0f\xa0\xc5\x1f\x91\x37\x41\xa8\ +\xa7\x2a\x7c\xab\xfc\x33\xc7\xd3\x6f\x9d\x33\x08\xe3\x3f\x32\x5a\ +\xf0\xc2\xf1\xc1\xcf\x01\xcb\xc2\x71\x5b\xf0\x61\x9b\xee\xf5\x32\ +\x00\x91\xa1\x79\x23\x2d\x5e\x10\xd2\x67\x76\xd5\x42\x13\x2d\x90\ +\xef\xf5\xe4\xc1\xc2\xd0\xf3\x9f\x25\xfd\x05\x41\xf1\x4e\x77\x6c\ +\x83\x63\xbe\x70\xc7\x66\x3e\x7f\x73\xff\x4e\x51\x0c\x5e\xf1\x52\ +\x14\x6f\xb7\x03\xf8\x5a\x28\x82\xd7\xf2\x8a\x6f\xfe\x48\x03\xe9\ +\xe0\xa5\x0c\xbe\xfd\x24\x11\xbc\x98\xc1\xf3\x7f\x2d\x79\x8f\x67\ +\xfb\xc9\xd1\x42\xaf\x30\x19\xea\x37\x54\xee\x02\x3f\xf5\xfe\xc4\ +\x49\xdf\x74\xfe\x34\x40\x48\xd4\x6f\x2b\x5f\x04\x84\x7c\xd3\x40\ +\x26\x5b\x76\x47\xff\xfa\xd3\xbc\xde\xbc\x3c\x85\xe0\x6b\x26\x8a\ +\xb7\xf5\x89\x61\x07\xf5\x22\x9f\xf0\xfe\x34\x40\xf4\x60\x5f\x06\ +\xe4\xff\xd8\x59\x3c\x79\xfd\x41\x02\x37\x4b\xe9\xf4\xfa\x03\x5b\ +\xbe\xe7\xe3\x38\xc2\xde\xff\x5a\x65\x42\x1f\x13\x27\xd2\x87\xe4\ +\x97\xfc\x8c\xdc\xdf\x5a\x38\x71\x3c\x8c\xaf\xbf\xb5\x18\xf2\xa4\ +\xbe\xae\x18\x44\xb3\xd7\x72\x97\x39\xa1\xba\xab\x50\xe7\x60\xec\ +\x06\xc3\x37\xda\x2b\x0b\x18\x6c\x14\x46\xfe\x40\x2c\x63\x22\x2b\ +\xe8\x15\xb3\xe6\x0e\x5a\xd3\xc8\x59\x7d\x28\x60\x60\xac\x52\xfe\ +\x70\xcf\x1f\xa9\xd8\x16\xfc\x94\x3c\xb2\x9a\x6d\x0a\x7a\xdf\xfc\ +\x67\x85\x1a\x67\x2f\x1a\x10\xc7\x51\xdc\x3c\xf7\xed\x3c\x60\xac\ +\x4e\x56\x4f\xce\xc3\x70\x1f\x05\x14\x3f\x53\xc1\x27\x33\xe3\x85\ +\xd3\x99\xf1\x2c\x12\x04\x2e\x34\xfe\xa6\x3f\xc4\x8d\xae\xa5\x20\ +\x9d\xb9\x4e\x84\x89\x1f\xdd\x4c\xf0\x7d\x99\x8a\x07\x2a\xda\x9a\ +\xb4\x4a\x81\x82\xb9\x49\xb3\x07\x75\x51\x57\xe5\x49\x9a\x65\xc7\ +\xf2\x58\xa4\x92\xce\x6d\x19\x86\xd0\x57\x57\xed\xfd\xd9\x6d\x48\ +\x9d\xea\x8a\xfd\x56\x2a\x56\x86\xbe\x0c\xd1\x77\xb1\xbb\xf5\xdd\ +\x52\xdd\x85\xae\xef\x7e\x07\x68\x96\x4a\xd0\ +\x00\x00\x0b\xfc\ +\x00\ +\x00\x36\x02\x78\x9c\xed\x5a\x4b\x73\xe3\xc6\x11\xbe\xef\xaf\x40\ +\xb8\x17\xbb\x42\x80\xf3\x7e\x50\xd2\xfa\x60\x97\x2b\xae\x72\x2e\ +\xb1\x53\x39\xba\x20\x00\x94\x90\x25\x01\x06\x00\x45\x69\x7f\x7d\ +\xbe\xc6\x8b\xa0\x48\xd1\x5a\x3b\x2e\xa7\x6c\x51\xa5\x22\xd1\x3d\ +\x8f\x9e\xee\xaf\xbb\x67\x30\x7d\xfd\xd5\xe3\x66\x1d\x3c\x64\x55\ +\x9d\x97\xc5\xcd\x8c\x47\x6c\x16\x64\x45\x52\xa6\x79\x71\x77\x33\ +\xfb\xe7\x8f\xdf\x86\x6e\x16\xd4\x4d\x5c\xa4\xf1\xba\x2c\xb2\x9b\ +\x59\x51\xce\xbe\xfa\xf0\xee\xfa\x2f\x61\x18\x7c\x5d\x65\x71\x93\ +\xa5\xc1\x3e\x6f\xee\x83\xef\x8a\x8f\x75\x12\x6f\xb3\xe0\x8b\xfb\ +\xa6\xd9\x2e\x17\x8b\xfd\x7e\x1f\xe5\x3d\x31\x2a\xab\xbb\xc5\x97\ +\x41\x18\x7e\x78\xf7\xee\xba\x7e\xb8\x7b\x17\x04\x01\xe6\x2d\xea\ +\x65\x9a\xdc\xcc\xfa\x0e\xdb\x5d\xb5\x6e\x1b\xa6\xc9\x22\x5b\x67\ +\x9b\xac\x68\xea\x05\x8f\xf8\x62\x76\x68\x9e\x1c\x9a\x27\x34\x7b\ +\xfe\x90\x25\xe5\x66\x53\x16\x75\xdb\xb3\xa8\xdf\x4f\x1a\x57\xe9\ +\x6a\x6c\x4d\xd2\xec\x65\xdb\x88\x7b\xef\x17\x4c\x2c\x84\x08\xd1\ +\x22\xac\x9f\x8a\x26\x7e\x0c\x8f\xbb\x42\xc6\x73\x5d\x05\x63\x6c\ +\x01\xde\xa1\xe5\xeb\x5a\x2d\x6b\x28\x74\x8b\xff\xb1\xf9\x40\x88\ +\xea\x72\x57\x25\xd9\x0a\xfd\xb2\xa8\xc8\x9a\xc5\x37\x3f\x7e\x33\ +\x32\x43\x16\xa5\x4d\x3a\x19\x66\xd0\xe7\xd1\xac\x47\x4a\x2e\xe2\ +\x4d\x56\x6f\xe3\x24\xab\x17\x03\xbd\xed\xbf\xcf\xd3\xe6\xfe\x66\ +\x26\x55\xc4\x25\x3e\xba\x25\xde\x67\xf9\xdd\x7d\xf3\x9c\x9a\xa7\ +\x37\x33\x48\x2f\xbc\xeb\x9e\x27\xe0\xe0\x5d\x83\x7e\xe0\xe5\xc8\ +\x61\x91\x17\x11\x0f\x2a\xae\xa5\xed\xda\x0c\x4b\x58\xa6\x65\x42\ +\x32\x61\xc8\x6c\x93\xc7\xbb\xa6\xdc\xc0\x6a\x49\xb2\x8e\xeb\x3a\ +\x5f\xe5\x09\x1e\xca\x62\xbb\xde\xdd\xe5\xc5\x4f\xbb\x22\x2d\x7f\ +\x5a\x27\xf5\x4f\xcd\x7d\x95\xd5\xf7\xe5\x3a\x8d\x06\x2d\x8e\x53\ +\x66\x8f\xdb\xb2\x6a\xc2\xc7\x74\x0b\x5d\x1a\x7b\x96\xf9\x34\x30\ +\x3f\x80\x7b\x9d\x66\xab\x9a\x5a\x75\x0b\xa3\x27\xac\xcc\xce\x82\ +\x45\xcb\x1d\xe5\x24\x21\xd3\x87\x3c\xdb\x1f\xda\xde\xc6\x75\xa7\ +\xbc\x20\xd8\xc6\x77\x00\xda\xba\xac\x6e\x66\xef\x57\xed\xa7\x67\ +\xdc\x96\x55\x9a\x55\x03\xcb\xb4\x9f\x23\x56\x09\x63\xe4\xcd\x53\ +\xe7\x5a\xfd\xd8\x83\xbc\x34\xea\xc8\x67\xe7\xf9\xf5\x7d\x9c\x96\ +\xfb\x9b\x99\x78\xce\xfc\x54\x96\x1b\x8c\x0a\xa3\x78\xeb\xd8\x09\ +\x3b\x79\xbc\x99\x85\x82\x45\xc6\x4b\xd3\x1b\x72\xca\x25\x81\x4c\ +\xc4\x99\xf2\xce\x9f\x30\x77\x55\x05\xe7\x0b\xd7\xf1\x53\x86\x55\ +\xb5\x5f\xbc\x6f\x04\xb3\xec\xef\x2a\xd2\x4e\x53\xed\xb2\xe7\x3d\ +\x89\x13\xde\xde\x96\x8f\xe7\xd9\xc0\xc2\x8e\xdc\x3a\xdc\x15\x79\ +\x03\xd7\xd9\x3e\x4e\x47\xdd\xe5\x69\x56\x9f\xef\x58\x17\xf1\x36\ +\xbc\x5b\x97\xb7\xf1\xfa\x7c\x83\x7d\x0e\xec\xec\xc3\x1e\xe5\x5c\ +\x8e\x46\x78\xde\x62\x80\xbc\x65\xee\x85\x16\x90\xfd\xc4\x10\x3d\ +\xeb\xe9\x65\xd6\x26\x7e\xcc\x37\xf9\xa7\x0c\x8a\xe1\x2d\xee\x80\ +\xad\x23\xb5\x74\xdd\x82\xa0\x79\x22\xf7\x7d\x7c\x22\xda\x6c\x20\ +\x92\x3e\x89\x20\xbc\xb7\x23\xb1\xac\x72\x78\xc5\x44\x9c\x81\xf4\ +\x34\x25\x91\xb3\x23\x56\x3f\xb6\x00\x6b\xe1\x67\x9f\xf3\x9e\xa6\ +\xbc\x1e\xf7\x8b\x53\xe0\xb7\xf4\x4d\xd6\xc4\x69\xdc\xc4\x07\x2f\ +\x18\x28\x90\x8d\x0d\x2b\x43\xdc\x5c\xfe\xe3\x9b\x6f\x3f\xf4\x13\ +\x5d\x27\xc9\xf2\x5f\x65\xf5\x71\x98\x37\x08\xa8\x41\x7c\x5b\xee\ +\xa0\xe9\xd9\x87\x91\x7c\x9d\x26\x4b\x44\x3a\x44\x80\x0f\xf9\x06\ +\xd8\xa6\x20\xf9\x57\x44\xb6\xeb\xc5\x81\x71\xd4\x98\x94\x75\x18\ +\xb4\x1b\x16\xa1\xa1\x0d\x99\x67\xf3\x46\x9a\x6c\x72\xea\xb4\xf8\ +\xa1\xc9\xd7\xeb\xef\x68\x92\x7e\xc5\x93\x41\xf3\x66\x9d\x1d\x88\ +\xd7\x8b\x5e\xfa\x7e\x6d\x8b\xc9\xe2\xae\x17\xc3\xea\xdb\xa7\xbb\ +\x83\x56\x8e\x9c\x62\x34\xf4\x3a\xbe\xcd\x80\xd0\xef\x89\x19\x9c\ +\x70\xef\xaa\x72\xb7\xdd\x94\x69\xd6\x77\x1f\xb4\x79\x77\x04\x03\ +\xc9\xa4\x1e\x2d\xd8\x54\x71\x51\x93\x66\x08\xf6\xf8\xb9\x46\xc2\ +\xfd\x82\xc2\xb5\x36\x5a\xaa\xb9\xc4\x0f\x6b\x94\xb4\x5f\x8e\x5a\ +\xbe\xae\xb2\xa4\x99\x18\x02\xc6\x97\x91\x44\x60\x36\xde\xcd\x0e\ +\x74\x90\x43\x13\x09\xa3\x39\x93\x72\x42\xa7\xa8\x21\x89\x61\x3c\ +\xe7\x13\xfa\x98\x2a\x6c\x44\x99\x42\x8a\x09\x6f\xc8\x2d\x67\x58\ +\xb4\x22\x12\x48\x3a\xae\x27\xe4\xba\x79\x5a\x43\x0b\x6d\xd8\x5c\ +\xbe\x67\xed\xe7\x2a\xcd\xeb\x2d\xf4\x82\x24\xb7\xce\x8b\xec\xaa\ +\x44\x76\x59\xad\xcb\xfd\xf2\x21\xaf\xf3\xdb\x75\x76\xd5\x7e\xe7\ +\x6b\xd8\x77\x24\xad\x60\xe4\x65\x1f\x90\xdb\x87\xb0\x0f\xa7\x4b\ +\xde\x3d\x56\xbb\x75\xb6\x2c\xca\xe2\x13\x02\xf1\x55\xdd\x54\xe5\ +\xc7\x6c\xf9\x3e\xbd\x25\x57\xe8\x1f\xbb\x98\xb1\x1c\x1d\x44\x0c\ +\x74\x12\x02\x66\x5b\xde\xee\x9a\x66\x4a\xfb\x77\x99\x17\x4b\xa0\ +\x2c\xab\x06\x6a\xfb\xb0\x86\xfb\x37\x4b\x35\xd0\xd2\x18\x81\xbb\ +\xaa\xb0\x1c\xcc\x9e\x4d\xa9\xe5\x6a\x55\x67\xcd\x92\x0d\xb4\x83\ +\xc4\x9b\xb8\xfa\x98\x55\x5d\x87\xac\x88\xb1\xc0\xf0\x36\x4e\x3e\ +\x12\x6c\x8a\x74\x19\x27\x08\x9e\x3b\x02\xc0\x04\xd1\xd7\xdb\xb8\ +\xb9\x9f\xe8\x75\x74\x6a\xa0\x8c\xfc\x00\xf1\x34\xa6\x4f\x5d\xc7\ +\x53\xab\x8c\x91\xbe\x2c\xb0\xc8\xa6\xac\x42\xc4\xfc\x87\xb8\xd9\ +\x55\xd9\x34\xb6\x74\xf6\xa3\x29\xa4\x93\x3a\x9c\x32\x40\xff\x7b\ +\xa0\x23\x69\xbd\x40\x60\x98\x23\x0d\x79\x7c\x3b\x11\x7c\x1d\xf0\ +\x48\x30\xc5\x9d\xb1\x73\x6e\x01\x24\xa6\xb5\x0e\x42\x17\x69\x6e\ +\x85\x14\x73\xae\x22\x26\x99\x25\x1a\x7e\x7a\x6c\x3a\xac\xa5\xee\ +\xce\x38\xb0\x41\x74\x91\x64\xc2\x73\x39\xe7\x2c\xb2\x92\x10\x0a\ +\xa2\x8f\x9c\x87\x08\x72\xae\x23\xcb\x8c\x64\x44\x14\x32\x52\x80\ +\xbe\x70\x20\xe2\x5b\x29\x46\x44\x1b\x39\x67\x98\x05\x8d\x33\x4c\ +\x2d\x4c\x10\x4a\x0e\x39\xad\xea\xe6\x76\x10\x93\x68\x1a\x52\x32\ +\xce\x39\xcd\x6d\xbd\x0e\x12\xd0\x22\x63\xd0\xc9\xcd\x43\x6c\x66\ +\x3c\x17\x02\x32\x8a\xc8\x3b\x6e\xb8\x9f\x87\x1e\xcd\xa4\x53\x3e\ +\x40\xa2\x56\x46\xe8\x79\xc8\x05\x48\xde\x73\x2b\x03\x15\x29\xb8\ +\xa4\x02\x51\x45\xd0\x95\x53\x4e\x07\x60\x6b\x65\x8d\x94\x68\x09\ +\x74\x71\xe3\x6d\x80\xd5\x01\x64\x5a\xa9\x39\x46\x31\x56\x69\x13\ +\x70\x19\x59\x67\xb5\x32\x6a\x4e\x1d\x94\xb0\xa2\xa5\x19\xcf\x1c\ +\xb4\x00\xa9\x2c\x2d\x59\x4f\x3a\xbb\xbe\xb7\xd2\x32\x80\x12\x30\ +\x34\x37\xe8\x6c\xb9\x70\xc2\x39\x98\x05\xbe\x0b\x6d\xd9\xb9\x87\ +\x47\x5a\xc3\x8c\x42\x33\x2c\xbf\x93\xd7\xfb\xe0\xd3\xa9\x2f\x76\ +\xae\x24\xe2\xd5\x4a\xc4\xcf\x5d\x69\x70\x1c\x72\x53\x9e\x1c\x3b\ +\x0e\xfb\x2d\xfd\x65\x14\xe1\x77\x82\xfc\x73\xc0\x2b\x0a\x8c\x4a\ +\x48\x3d\x37\x11\xe2\xaf\xf3\x96\x03\xf0\x30\x06\xf0\x8a\x3d\x58\ +\x0f\x64\x58\x3d\x00\x5c\x00\x53\x06\x24\xcc\x61\x35\xa9\x8d\x65\ +\x0a\x38\x36\x84\x1d\x8c\x8c\xfe\xca\x4a\xae\xac\x6d\xc1\x0d\xf0\ +\x58\x60\x4c\x93\xb9\xb4\x71\x80\x1d\x10\x03\x70\x6a\x0f\x4b\x4b\ +\x0e\x28\x62\x7f\x0e\xaa\x8a\x74\x17\xf8\x09\x83\x10\xc3\x08\xf4\ +\x17\x2e\x82\xe7\x39\xb8\x11\xce\x0b\xc2\x03\x14\x1c\x7e\x24\x45\ +\xa4\x3c\x13\xc2\xd0\xfc\xce\x42\x40\x42\xbd\xc1\x68\x70\x2e\x8b\ +\xf9\x25\x41\x97\xe6\x92\x3e\xf2\x56\x7a\x20\x1a\xcb\x63\xce\x78\ +\x21\x5b\x62\x3b\x94\x25\x00\x4a\x8f\x3f\x6e\x83\x3e\x33\x20\x4a\ +\xce\x91\x3c\x14\x7c\xe6\x04\xf7\xfe\x1c\xec\xf9\x09\xee\x95\x1e\ +\x71\xef\xf8\x80\x7b\x75\x00\xfe\x01\xf7\x72\xec\x6b\xf4\xe0\x34\ +\xe2\x55\xa8\xb7\x23\xea\x5d\x9b\x60\xf8\x05\xd8\x27\x31\x13\xc9\ +\xcb\xb0\x57\xf2\xcf\x04\x7b\x19\xba\x63\xe0\x6f\x60\x79\x04\x47\ +\xc6\x04\x0c\xc8\x35\x8c\x80\x58\x0d\xeb\x8b\x48\x70\xed\x2c\xa7\ +\x80\x89\x43\x08\xf7\x2e\x30\xf4\x03\x34\xb2\x9f\x11\x30\x3e\x6c\ +\xcf\x22\xd3\x83\x06\xf6\x80\x9d\x8c\x47\x52\x80\x2d\x11\xda\x85\ +\xe3\x01\x90\xa6\x99\x67\x7c\xde\x42\x0e\x4e\x11\x74\x89\x01\x1f\ +\x07\xf0\x6a\xfa\xa1\xe0\x66\xe8\xcd\x38\xbc\x8f\x21\x35\x20\x18\ +\x4b\x85\x96\x98\x98\xc1\x0f\x3c\xac\x6e\x91\x81\xb8\xc5\xe6\x09\ +\x62\x99\xde\x4b\xdb\x66\xad\x97\x92\x3b\x3a\x83\x74\x45\x78\x50\ +\x92\x29\x26\x03\x87\xa4\x02\xf4\x02\xe3\xc2\x44\x56\x28\x2f\x2d\ +\x10\x63\xa5\x6c\xa5\x81\x03\xf1\xb6\x33\xa5\x06\x78\x06\x82\xbf\ +\x11\x68\x0b\x1f\x64\x92\x96\x4a\xf9\x4b\x6b\xf8\x3d\x14\xa0\x30\ +\xa5\x67\x5e\xb6\xf9\xab\x5b\x2d\x9f\x33\x88\x07\x7c\x6a\xe5\xb5\ +\x80\x8a\x74\xe4\xa4\x90\xae\x6d\xd4\xfa\x0d\xdc\x80\x46\x43\xee\ +\xd2\x6a\xd2\x91\xfa\x49\x52\x8e\xed\xbc\xcf\x33\x29\x3c\x79\x34\ +\xfc\xb0\xd3\x36\xb9\x18\x13\x9a\xf3\x80\xe1\xc1\x76\x5b\x17\x7b\ +\x09\xde\xce\xc7\xec\x52\x54\x67\xec\x4f\x04\xef\x53\x70\xb7\x9b\ +\x01\xa1\xe4\x1c\x71\x57\xfd\x2c\xb8\xdd\x19\x70\x9b\x5f\x05\x6e\ +\x90\x10\x3c\xb1\x93\xa2\x10\x0e\x53\x2a\xa1\x28\x9e\x59\xc0\xd8\ +\x76\x1b\x0d\x65\xbd\x33\x93\xe9\x80\x8c\xd1\xaf\x5a\xb9\x90\x22\ +\x14\xed\x20\x8c\xd7\x9a\x19\x90\xb0\x7d\xe1\x8a\x21\xfe\x81\xeb\ +\x11\xc2\x82\x61\x8b\x8b\xa0\x89\xf1\x0e\x98\x56\xbf\x0c\xd2\xfc\ +\x00\x69\x77\x19\xd1\xe6\x67\x10\x2d\x3e\x1f\xd1\x0c\x0d\xdc\x45\ +\x44\xe3\x40\xf0\x7f\x85\xe8\x5f\x00\x55\x6b\x45\xc8\x42\x71\x01\ +\xae\x9c\x52\x5d\x1f\xa3\x44\xf7\x0e\x4f\x42\xd9\x67\x7f\xbe\xa4\ +\x4a\x9e\x08\x25\xc4\x41\x77\x29\xfd\x1d\xeb\x4e\x62\x4f\x4d\x79\ +\xdf\xc9\x5f\xa7\xc4\x88\xb7\xdb\x4f\xc7\x7f\x3f\x6d\xf2\x4b\xda\ +\xc4\xf1\x80\xd1\x76\xe6\x4d\x9b\xaf\xd4\xe6\xa5\x50\x4a\xce\x8f\ +\x48\xca\xde\xb4\xf9\x5a\x6d\xaa\x0b\xda\x94\xbd\xa3\xf3\x37\x6d\ +\xbe\x52\x9b\xfe\x82\x36\x71\x32\x81\x70\x4a\x1a\xf9\xa6\xce\x9f\ +\xdf\x31\x29\x76\xaa\x4a\x36\xbc\xba\x91\x7c\x3c\x0e\x30\x3a\x05\ +\xb6\xe7\x43\xf3\xd2\xef\xd7\xea\xf2\xcc\x96\xf4\x8f\xa2\xcb\xd0\ +\x9c\x68\x93\xde\x64\xd1\x0b\xd7\x37\x65\x7e\xb6\x32\x4f\x77\x47\ +\xb6\xd5\x25\xf3\xfe\x4d\x9b\x9f\xad\x4d\x7b\xa2\xcd\xc3\x3b\xda\ +\x37\x6d\x7e\x76\x0e\xba\x74\xd0\x54\xdd\xf6\xe8\x2d\xff\xbc\xf6\ +\x18\x74\x6e\xb3\xd9\xde\x38\xb5\x17\x08\xa7\x07\x21\x75\x50\xe2\ +\xf1\xcf\x37\x68\xb6\x07\xa1\x73\x1b\xa4\x83\x3e\x4f\x8f\x42\x6f\ +\xfa\xbc\x7c\x14\x3a\x77\xb4\x1c\xf5\x79\xe6\x30\xf4\xa6\xcf\xcb\ +\x87\xa1\x73\xc7\xa1\x51\x9f\xfd\x71\xc8\xf1\x37\x7d\xbe\xf6\x38\ +\x74\x11\x9f\xc3\x81\x48\x8b\x37\x85\xbe\x36\x80\xea\x0b\xfa\x3c\ +\x4d\xef\x7f\x48\x6d\x5e\x2f\xee\x86\x8a\xa0\x49\xd5\xc9\xb3\x37\ +\xb5\x09\xf7\xcf\x6e\x94\x59\xa4\x85\xa6\xdb\xc9\x49\x91\x46\xf6\ +\x90\x15\x65\x9a\x8e\xeb\xe5\x2e\x35\xcf\xdf\xe1\x8a\x48\x28\xab\ +\xb9\x64\xe6\xdc\x2a\x5e\x2b\xfc\xb4\xda\x86\xc4\x16\x58\xfa\x48\ +\x1c\x6a\x59\x64\xff\xb2\x7c\x64\x8c\x05\x30\x27\x9c\xa3\x0a\xad\ +\xa3\xda\xac\x0a\x2c\x1d\x69\xe6\x98\x72\x87\x79\xbb\x92\x1c\xba\ +\x50\x65\xd6\x1f\x54\x39\x85\xe5\xd9\xfa\x98\x55\x59\x34\x61\xcb\ +\xc1\xc2\xaa\x4d\xbc\xee\x28\x0f\x71\x95\xc7\x45\x73\x44\xdb\xb7\ +\xc2\x1e\x91\xa0\x86\xac\x49\xee\x8f\x69\xf9\xa7\x6c\xb9\xc9\xd2\ +\x7c\xb7\xb9\x22\x94\xf4\xd5\x71\x47\x6d\x56\xf1\x26\x5f\x3f\x2d\ +\x7f\x88\x8b\xfa\x2a\x1c\x9c\x25\xec\xba\x6f\xb3\x64\xac\xe1\xec\ +\x5a\x34\xd9\x63\x83\x56\x69\x56\x50\x85\x4b\xfb\x14\xaf\xf3\xbb\ +\x62\x59\x37\x71\xd5\x74\x84\x34\x4b\xca\xaa\xeb\xd3\x1a\xe8\x19\ +\xb1\xc5\x6b\xc7\x59\x67\x0d\xcc\x1b\xf6\x65\x6c\x83\x58\xfb\xb2\ +\x4a\x9f\xd3\xda\x31\xc6\x62\xa9\xae\xf7\xbe\xca\x1b\x34\x09\xa9\ +\xe2\x6a\xb9\xae\xc2\xe6\xf6\x2a\xcd\xc9\xe0\x34\xf3\xba\xa9\xae\ +\xa8\xbe\xb3\x5d\x76\x7d\x9f\xaf\x9a\xe5\xf0\xd8\x8b\x5d\x24\xf7\ +\x50\x7e\x27\xf7\x2f\x2e\x4d\x1a\x4c\x77\xf6\x9e\x62\x0a\xcf\xc1\ +\xa1\x55\x17\x16\xc4\xeb\x8b\x81\x06\xcc\xb4\x05\x0a\x92\x45\x8a\ +\x19\xaf\x15\x55\x22\xe0\x9b\x33\x17\x7c\x1d\x08\x83\xdd\x9c\xe2\ +\xde\x51\xde\xe4\x8c\x59\xed\x02\xda\x31\x1b\xcf\xb5\xa3\x0b\x1b\ +\xe1\x8c\x65\xd3\x9b\xda\xf6\x10\xdd\x5e\xc1\x7c\x1f\xb4\xb7\x38\ +\x8c\x33\xec\x0a\x23\xaf\x38\x33\x42\xd1\xe5\x18\xf3\x9a\x59\x43\ +\xd7\xc1\x70\x64\xba\x38\x35\xc2\xd3\x9d\x3c\x5d\x38\x29\x6f\x8d\ +\xd4\x01\x5d\x3d\x09\xba\xaf\x9f\xb7\x57\x3a\x8e\x6a\x79\x38\x1a\ +\x72\xad\x4d\x5b\x33\xa4\xb9\xd2\xca\x21\x48\xea\xc8\x31\x2a\x48\ +\xa0\x44\x04\x61\x38\x43\x67\x2c\x00\xa7\x78\xd5\x96\xe3\x68\xcf\ +\x1d\x73\x8e\x2e\xcf\x70\x50\x15\xa6\xbb\xe9\xe2\x0e\x87\x4e\x30\ +\x85\x32\x1c\x47\x2a\xf4\x44\xc8\x74\x10\xc5\x7b\x41\x95\x17\x9c\ +\xae\x7f\xa5\x17\x68\xa3\x98\xe5\xc2\xb4\x43\x71\x2e\x27\x17\x4b\ +\x43\x54\x17\xde\xb9\xd0\x4e\xce\x6c\xaf\x4d\x0c\xe7\xae\x2a\x93\ +\xe1\xf3\xe6\xde\x7f\x78\xf7\x3e\xad\x3c\xfc\x4d\xdd\x9b\x79\xc1\ +\xa4\xa1\x1a\x17\xc7\x3c\x57\x54\x7f\x24\x74\x64\x9c\x07\xf8\xe7\ +\x0c\xc8\xd7\xce\xc1\x57\xc9\xbf\x99\x56\x42\x51\x75\x0d\x5d\x0d\ +\x5b\x2a\x35\x63\x91\xd4\xdc\x2a\xaa\x34\xe2\xf0\x1a\x2b\x44\xeb\ +\xdf\x20\x32\x4f\x05\x3b\xe0\x5b\xc9\xa5\x30\x3e\xe0\x91\xf3\x4a\ +\x7b\xba\x40\x96\x11\xc6\xd4\x70\x49\x8a\x1e\x0a\x81\x82\xd3\xf9\ +\x90\x3b\xa9\xa8\x62\xc7\xc0\x9f\x05\xd5\x24\x81\x66\xb5\x52\x14\ +\x5b\xd0\x90\x31\x03\xbf\xf7\xf4\xbe\x43\x6a\xc5\xcf\xf9\xb8\x3a\ +\x38\xb9\x1d\x9d\xdc\x9b\xd1\xc9\xe5\xe0\xe4\xd2\x0f\x5e\x2e\x4e\ +\xbc\x5c\x9e\x78\xb9\xed\xbd\xbc\x2d\xf4\x7b\xc9\xd1\x7f\x2b\x37\ +\x7f\x71\x1f\xb4\x5a\x9d\xcb\x04\x2f\xef\x7f\xfa\xa2\xd6\x23\xfc\ +\xf0\x88\x9f\x94\xa7\xd6\xff\xd9\xc5\x55\xf6\xfa\xbd\xde\xe5\x5d\ +\xd2\xc5\x02\xd5\x93\x9d\x93\x44\x56\x78\xbe\x73\x1a\xcb\x1b\x4e\ +\x76\x4e\xa7\x1c\x2a\x5a\x77\xfd\x7b\xae\xe9\x0e\x8a\xb7\xb0\x61\ +\xec\x78\xcf\x24\x22\xa7\xe8\xa3\x2f\x06\xd5\x56\xdb\x93\x25\x9d\ +\xd7\xa4\x8c\x90\xa9\xa8\x00\xcf\xfd\xba\x9d\xf3\xe7\xee\x39\x5b\ +\x2f\xc6\xf2\x8c\x68\xd3\x2c\x12\x73\x9f\x66\xff\x16\x48\xa4\x43\ +\x7b\xa4\x89\xc3\x81\xc3\x89\xff\x11\x5e\xc7\xf2\x7f\xec\xdb\xaf\ +\xa9\xfc\xfe\xc3\xbb\xff\x02\x4e\xaa\x5a\x58\ +\x00\x00\x1c\xc8\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x6f\ +\x73\x62\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x6f\ +\x70\x65\x6e\x73\x77\x61\x74\x63\x68\x62\x6f\x6f\x6b\x2e\x6f\x72\ +\x67\x2f\x75\x72\x69\x2f\x32\x30\x30\x39\x2f\x6f\x73\x62\x22\x0a\ +\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x0a\x20\ +\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\x65\x63\x6f\x6d\x6d\x6f\ +\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\ +\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\ +\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\ +\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\ +\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x78\x6c\ +\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\x75\x72\x63\x65\x66\x6f\ +\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\x44\x2f\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\x22\x0a\x20\x20\x20\x78\ +\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\x61\x70\x65\x3d\x22\x68\ +\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\x65\x73\x70\x61\x63\x65\ +\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\x22\x0a\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\ +\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\ +\x67\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\ +\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\x63\x6e\x61\x6d\x65\x3d\ +\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\x61\x74\x69\x63\x63\x6c\ +\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x70\x6c\x75\x67\ +\x69\x6e\x5f\x73\x65\x6e\x74\x69\x6e\x65\x6c\x33\x5f\x74\x6f\x6f\ +\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x2d\x35\x30\x2e\x34\x31\x39\x32\x32\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\ +\x32\x2e\x34\x34\x30\x37\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ +\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x30\x30\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x39\x39\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x34\x36\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\ +\x34\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x36\x61\x35\x61\x35\x61\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x35\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x31\x34\x32\x37\x34\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x35\x38\x32\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x73\x62\ +\x3a\x70\x61\x69\x6e\x74\x3d\x22\x73\x6f\x6c\x69\x64\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x36\x30\x30\x30\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x37\x38\ +\x38\x32\x33\x35\x33\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x38\ +\x32\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\ +\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x38\x31\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x73\x62\x3a\x70\x61\x69\x6e\x74\ +\x3d\x22\x73\x6f\x6c\x69\x64\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\ +\x3a\x23\x66\x66\x62\x37\x62\x37\x3b\x73\x74\x6f\x70\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\ +\x38\x31\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x37\x31\x36\x22\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\ +\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x31\x31\x32\x34\x31\ +\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x31\x38\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x32\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x2e\x36\x39\x38\x36\x33\x30\x31\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x31\x62\x63\x36\ +\x63\x36\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\ +\x36\x34\x38\x61\x38\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x37\x32\x30\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x38\x32\x37\x2d\x30\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\ +\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x35\x61\x30\x30\x66\x66\x3b\ +\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x73\x74\x6f\x70\x33\x38\x33\x38\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x38\x33\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\ +\x74\x3d\x22\x30\x2e\x38\x36\x39\x38\x36\x33\x30\x33\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x38\x37\x66\x37\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x2e\x35\x39\x36\x30\x37\x38\x34\x33\x3b\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x35\x38\x33\x31\ +\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x66\x36\x66\x66\x30\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x31\x39\x36\x30\x37\x38\ +\x34\x33\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\x65\x6e\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\ +\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x35\x38\x32\x37\x2d\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x2d\x33\x2e\x32\x33\x32\x33\x32\x33\x32\x2c\x32\x2e\ +\x34\x31\x33\x34\x36\x38\x2c\x2d\x30\x2e\x38\x31\x30\x36\x39\x32\ +\x32\x2c\x2d\x30\x2e\x39\x34\x35\x38\x30\x37\x35\x39\x2c\x37\x34\ +\x2e\x36\x36\x30\x35\x32\x36\x2c\x2d\x38\x2e\x38\x34\x34\x38\x37\ +\x33\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\ +\x31\x35\x2e\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x31\x37\x2e\x37\x39\x34\x38\x39\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x66\x78\x3d\x22\x31\x35\x2e\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x66\x79\x3d\x22\x31\x37\x2e\x37\x39\x34\x38\x39\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\x31\x38\x2e\ +\x35\x36\x32\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\ +\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\ +\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x35\x37\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\ +\x38\x34\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x72\x65\x61\x64\x4d\x65\x74\x68\x6f\x64\x3d\x22\ +\x70\x61\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\ +\x38\x2e\x32\x32\x38\x38\x36\x30\x39\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x31\x3d\x22\x31\x39\x2e\x39\x36\x39\x37\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x32\x34\x2e\x33\x35\ +\x33\x38\x36\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x31\x39\x2e\x39\x36\x39\x37\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x33\x33\ +\x34\x38\x33\x38\x36\x2c\x30\x2c\x30\x2c\x30\x2e\x39\x33\x37\x37\ +\x36\x34\x32\x38\x2c\x2d\x32\x32\x2e\x33\x34\x33\x38\x33\x36\x2c\ +\x2d\x33\x30\x2e\x34\x30\x34\x34\x37\x37\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\ +\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x34\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x34\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\ +\x3d\x22\x75\x73\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\ +\x74\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x30\x2e\x38\x33\x32\x34\x37\x36\x39\x2c\x2d\x30\x2e\ +\x32\x36\x37\x32\x30\x30\x30\x35\x2c\x2d\x30\x2e\x38\x32\x31\x36\ +\x32\x39\x35\x39\x2c\x2d\x30\x2e\x36\x36\x37\x38\x38\x37\x37\x39\ +\x2c\x2d\x30\x2e\x35\x39\x37\x38\x39\x36\x34\x33\x2c\x32\x34\x2e\ +\x33\x35\x30\x32\x38\x35\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x31\x3d\x22\x31\x31\x2e\x37\x31\x34\x36\x30\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x30\x2e\x30\x31\x35\x31\ +\x30\x30\x34\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\ +\x3d\x22\x33\x31\x2e\x38\x30\x30\x32\x30\x33\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x79\x32\x3d\x22\x30\x2e\x30\x31\x35\x31\x30\x30\ +\x34\x39\x36\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x33\ +\x30\x30\x32\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ +\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x35\x37\x29\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x36\x36\x33\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x30\x2e\x31\x33\x33\x33\x33\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x31\x31\ +\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x32\x32\x2e\x34\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x34\ +\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\x2e\x30\x37\x32\x33\x31\x33\x35\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x38\x2e\x31\ +\x33\x33\x33\x33\x33\x2c\x32\x33\x2e\x33\x38\x36\x31\x38\x20\x31\ +\x31\x2e\x32\x36\x37\x31\x32\x36\x2c\x2d\x33\x2e\x35\x32\x33\x33\ +\x31\x31\x20\x63\x20\x30\x2e\x39\x38\x32\x35\x37\x34\x2c\x2d\x30\ +\x2e\x33\x30\x37\x32\x36\x20\x2d\x32\x2e\x35\x39\x37\x31\x38\x39\ +\x2c\x2d\x32\x2e\x38\x37\x39\x31\x38\x32\x20\x2d\x33\x2e\x34\x38\ +\x39\x35\x35\x37\x2c\x2d\x33\x2e\x36\x39\x38\x30\x38\x37\x20\x4c\ +\x20\x32\x33\x2e\x38\x33\x37\x38\x36\x38\x2c\x31\x34\x2e\x32\x36\ +\x32\x34\x30\x34\x20\x43\x20\x32\x32\x2e\x39\x34\x35\x34\x39\x35\ +\x2c\x31\x33\x2e\x34\x34\x33\x34\x39\x39\x20\x32\x30\x2e\x35\x35\ +\x35\x32\x34\x34\x2c\x31\x32\x2e\x34\x39\x32\x37\x34\x32\x20\x31\ +\x39\x2e\x35\x37\x32\x36\x36\x36\x2c\x31\x32\x2e\x38\x20\x4c\x20\ +\x38\x2e\x33\x30\x35\x35\x33\x39\x36\x2c\x31\x36\x2e\x33\x32\x33\ +\x33\x31\x32\x20\x43\x20\x37\x2e\x30\x35\x33\x36\x33\x36\x35\x2c\ +\x31\x36\x2e\x37\x31\x34\x37\x39\x20\x36\x2e\x37\x33\x38\x31\x31\ +\x32\x35\x2c\x31\x38\x2e\x30\x30\x31\x38\x32\x36\x20\x37\x2e\x36\ +\x33\x37\x33\x37\x31\x31\x2c\x31\x39\x2e\x30\x34\x38\x38\x20\x63\ +\x20\x30\x2c\x30\x20\x2d\x30\x2e\x33\x33\x34\x30\x38\x34\x34\x2c\ +\x31\x2e\x33\x36\x32\x37\x34\x32\x20\x33\x2e\x37\x36\x34\x30\x37\ +\x33\x39\x2c\x33\x2e\x35\x30\x36\x35\x31\x39\x20\x34\x2e\x30\x39\ +\x38\x31\x35\x39\x2c\x32\x2e\x31\x34\x33\x37\x37\x35\x20\x35\x2e\ +\x36\x30\x35\x31\x37\x37\x2c\x31\x2e\x31\x38\x33\x31\x39\x32\x20\ +\x36\x2e\x37\x33\x31\x38\x38\x38\x2c\x30\x2e\x38\x33\x30\x38\x36\ +\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x34\x32\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ +\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x73\x73\x73\ +\x73\x73\x73\x63\x7a\x73\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x32\x37\x39\x37\ +\x33\x30\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x6d\x20\x31\x32\x2e\x38\x2c\x31\x38\x2e\x31\x33\ +\x33\x33\x33\x33\x20\x63\x20\x30\x2c\x38\x20\x30\x2c\x35\x2e\x33\ +\x33\x33\x33\x33\x34\x20\x30\x2c\x35\x2e\x33\x33\x33\x33\x33\x34\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x33\x38\x34\x36\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ +\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x65\x32\x62\x66\x33\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x64\x64\x63\x34\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x30\x2e\x37\x34\x36\x36\x36\x36\x36\x37\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x2e\x36\x35\x35\x36\x37\x37\x38\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x30\x2e\x32\x36\x36\ +\x36\x36\x37\x2c\x31\x32\x2e\x38\x20\x63\x20\x30\x2c\x31\x36\x20\ +\x30\x2c\x31\x30\x2e\x36\x36\x36\x36\x36\x37\x20\x30\x2c\x31\x30\ +\x2e\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x36\x2d\x34\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\ +\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x38\x34\x32\x29\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x31\x31\x31\x38\x38\x32\x32\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x72\x65\x63\x74\x34\x32\x35\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x35\x37\x34\x31\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x36\x2e\x35\x36\x34\x33\x34\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\x31\x2e\x32\x37\x36\x32\x30\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x31\x34\ +\x2e\x39\x35\x39\x37\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x32\x2e\x38\x31\x33\x32\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x2e\x33\x33\x34\x38\x33\ +\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\ +\x39\x38\x38\x39\x32\x32\x36\x39\x2c\x30\x2e\x31\x34\x38\x34\x33\ +\x31\x34\x39\x2c\x2d\x30\x2e\x32\x35\x32\x38\x31\x34\x36\x38\x2c\ +\x2d\x30\x2e\x39\x36\x37\x35\x31\x34\x37\x32\x2c\x30\x2c\x30\x29\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x65\x63\x65\x63\x65\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x30\x35\x33\x31\x36\x31\x31\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x38\x37\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\ +\x22\x36\x2e\x37\x30\x30\x39\x32\x34\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x2e\x31\x30\x38\ +\x37\x34\x35\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x2d\x34\x2e\x38\x31\x37\x39\x39\x33\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x2d\x33\x30\x2e\x39\x37\x31\x36\x35\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x30\x2e\x38\ +\x34\x35\x39\x31\x38\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x30\x2e\x35\x34\x38\x33\x36\x31\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\ +\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x2d\x30\x2e\x38\x37\x37\x30\ +\x39\x36\x34\x36\x2c\x30\x2e\x34\x38\x30\x33\x31\x34\x32\x38\x2c\ +\x2d\x30\x2e\x36\x36\x36\x36\x32\x37\x38\x2c\x2d\x30\x2e\x37\x34\ +\x35\x33\x39\x30\x37\x36\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\ +\x33\x30\x32\x30\x32\x38\x38\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\ +\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x38\x2e\x35\x37\x38\ +\x36\x30\x38\x33\x2c\x31\x32\x2e\x38\x20\x63\x20\x30\x2c\x38\x20\ +\x30\x2c\x35\x2e\x33\x33\x33\x33\x33\x33\x20\x30\x2c\x35\x2e\x33\ +\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x36\x2d\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ +\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0d\xbb\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x65\x78\x70\x6f\x72\x74\x2e\ +\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\x37\x31\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x63\x31\x30\x30\x30\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x35\x39\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x35\x39\x37\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x32\x3d\ +\x22\x33\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\x3d\x22\x32\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x31\x3d\x22\x31\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\ +\x54\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\ +\x78\x28\x2d\x30\x2e\x39\x32\x30\x37\x37\x33\x37\x35\x2c\x2d\x30\ +\x2e\x30\x30\x31\x34\x32\x36\x38\x36\x2c\x30\x2e\x30\x30\x31\x34\ +\x30\x36\x31\x39\x2c\x2d\x30\x2e\x39\x33\x34\x33\x31\x30\x31\x34\ +\x2c\x33\x32\x2e\x35\x30\x37\x34\x32\x32\x2c\x33\x31\x2e\x30\x39\ +\x37\x30\x31\x37\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\ +\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\ +\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x33\x30\x32\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x35\x39\ +\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x2d\x32\x39\x2e\x34\x37\x34\x37\x31\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x31\x35\x2e\x35\x35\x38\x35\x39\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\ +\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ +\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ +\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ +\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ +\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ +\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ +\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ +\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ +\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x64\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x34\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\ +\x75\x61\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x6f\x66\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\ +\x33\x38\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\x23\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x30\x32\x38\x29\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x32\x30\x2e\x36\x38\x30\x38\x38\x31\x2c\x33\x31\ +\x2e\x33\x31\x32\x32\x36\x37\x20\x63\x20\x30\x2e\x39\x34\x33\x31\ +\x37\x33\x2c\x30\x2e\x30\x30\x31\x34\x20\x31\x2e\x36\x39\x38\x38\ +\x33\x2c\x2d\x30\x2e\x37\x36\x32\x39\x36\x35\x20\x31\x2e\x37\x30\ +\x30\x32\x37\x31\x2c\x2d\x31\x2e\x37\x32\x30\x30\x30\x32\x20\x4c\ +\x20\x32\x32\x2e\x34\x2c\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\ +\x6c\x20\x36\x2e\x34\x34\x35\x34\x31\x37\x2c\x30\x2e\x30\x31\x30\ +\x30\x33\x20\x43\x20\x33\x30\x2e\x36\x38\x36\x39\x36\x36\x2c\x31\ +\x37\x2e\x30\x37\x39\x35\x30\x38\x20\x31\x38\x2e\x37\x33\x38\x2c\ +\x33\x2e\x30\x34\x36\x33\x30\x39\x31\x20\x31\x38\x2e\x37\x33\x38\ +\x2c\x33\x2e\x30\x34\x36\x33\x30\x39\x31\x20\x4c\x20\x31\x37\x2e\ +\x38\x31\x38\x36\x33\x31\x2c\x32\x2e\x31\x31\x30\x35\x37\x31\x37\ +\x20\x31\x36\x2e\x38\x39\x36\x34\x35\x32\x2c\x33\x2e\x30\x34\x33\ +\x34\x35\x35\x35\x20\x63\x20\x30\x2c\x30\x20\x2d\x31\x31\x2e\x39\ +\x39\x31\x31\x35\x31\x31\x2c\x31\x33\x2e\x39\x39\x36\x31\x30\x31\ +\x35\x20\x2d\x31\x30\x2e\x31\x34\x39\x36\x30\x31\x38\x2c\x31\x33\ +\x2e\x39\x39\x38\x39\x35\x35\x35\x20\x6c\x20\x36\x2e\x34\x34\x35\ +\x34\x31\x35\x38\x2c\x30\x2e\x30\x31\x30\x30\x33\x20\x2d\x30\x2e\ +\x30\x31\x38\x38\x35\x2c\x31\x32\x2e\x35\x32\x35\x35\x39\x37\x20\ +\x63\x20\x2d\x30\x2e\x30\x30\x31\x34\x2c\x30\x2e\x39\x35\x37\x30\ +\x33\x38\x20\x30\x2e\x37\x35\x31\x39\x31\x31\x2c\x31\x2e\x37\x32\ +\x33\x38\x30\x32\x20\x31\x2e\x36\x39\x35\x30\x38\x33\x2c\x31\x2e\ +\x37\x32\x35\x32\x36\x35\x20\x6c\x20\x35\x2e\x38\x31\x32\x33\x38\ +\x34\x2c\x30\x2e\x30\x30\x39\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ +\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0a\xad\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x70\x65\x6e\x5f\ +\x66\x69\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\ +\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\ +\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\ +\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\ +\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x2d\x38\x31\x2e\x31\x30\x30\x32\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\ +\x2d\x32\x2e\x36\x31\x31\x30\x33\x35\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\ +\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\ +\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\ +\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\ +\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\ +\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\ +\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\ +\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ +\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\ +\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\ +\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\ +\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\ +\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\ +\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\ +\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\ +\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\ +\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\ +\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\ +\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\ +\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\ +\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\ +\x6c\x3a\x23\x38\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x31\x39\x32\x35\x36\x39\x36\x31\ +\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\x39\x2e\x32\ +\x34\x34\x34\x34\x34\x38\x20\x48\x20\x32\x36\x2e\x36\x36\x36\x36\ +\x36\x37\x20\x56\x20\x33\x35\x2e\x39\x31\x31\x31\x31\x31\x20\x48\ +\x20\x30\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x30\x32\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x33\x37\x63\x38\x37\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\ +\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x30\x2e\x36\ +\x36\x36\x36\x36\x37\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\ +\x48\x20\x33\x32\x20\x56\x20\x32\x38\x2e\x38\x20\x48\x20\x31\x30\ +\x2e\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x38\x2d\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x35\x30\x32\x38\x33\x31\x35\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\ +\x22\x4d\x20\x30\x2c\x39\x2e\x32\x34\x34\x34\x34\x34\x38\x20\x35\ +\x2e\x33\x33\x33\x33\x33\x33\x33\x2c\x31\x36\x2e\x33\x35\x35\x35\ +\x35\x36\x20\x56\x20\x34\x31\x2e\x32\x34\x34\x34\x34\x35\x20\x4c\ +\x20\x30\x2c\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x76\x20\x2d\ +\x32\x34\x2e\x38\x38\x38\x38\x38\x38\x32\x20\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ +\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x06\xc9\ \x00\ -\x00\x92\x59\x78\x9c\xed\x9d\x5b\x6f\xdb\x46\x16\xc7\xdf\xf3\x29\ -\xb8\xca\x4b\x83\x15\xa9\xb9\x5f\xe4\x4b\x1f\x5a\x14\x28\x90\x7d\ -\xd9\x76\xb1\xc0\xbe\x2c\x68\x91\xb2\xb9\xa1\x48\x81\xa4\x2c\x3b\ -\x9f\xbe\xff\x21\x45\x4a\x74\xdc\xdc\xd3\x95\x94\x11\x12\xc8\x3c\ -\x73\x1f\xce\xef\x9c\x33\x67\x26\xce\xe5\x8f\x0f\xab\x3c\xb8\x4f\ -\xab\x3a\x2b\x8b\xab\x09\x8d\xc8\x24\x48\x8b\x45\x99\x64\xc5\xed\ -\xd5\xe4\x5f\xbf\xff\x12\x9a\x49\x50\x37\x71\x91\xc4\x79\x59\xa4\ -\x57\x93\xa2\x9c\xfc\x78\xfd\xe2\xf2\x6f\x61\x18\xfc\x54\xa5\x71\ -\x93\x26\xc1\x36\x6b\xee\x82\x5f\x8b\x37\xf5\x22\x5e\xa7\xc1\x0f\ -\x77\x4d\xb3\x9e\xcf\x66\xdb\xed\x36\xca\x76\xc2\xa8\xac\x6e\x67\ -\xaf\x82\x30\xbc\x7e\xf1\xe2\xb2\xbe\xbf\x7d\x11\x04\x01\xda\x2d\ -\xea\x79\xb2\xb8\x9a\xec\x0a\xac\x37\x55\xde\x66\x4c\x16\xb3\x34\ -\x4f\x57\x69\xd1\xd4\x33\x1a\xd1\xd9\x64\x9f\x7d\xb1\xcf\xbe\x70\ -\xad\x67\xf7\xe9\xa2\x5c\xad\xca\xa2\x6e\x4b\x16\xf5\xcb\x83\xcc\ -\x55\xb2\x1c\x72\xbb\xde\x6c\x79\x9b\x89\x5a\x6b\x67\x84\xcd\x18\ -\x0b\x91\x23\xac\x1f\x8b\x26\x7e\x08\xc7\x45\xd1\xc7\xe7\x8a\x32\ -\x42\xc8\x0c\x69\xfb\x9c\x1f\x97\x6b\x5e\x63\x42\xd7\xf8\x3b\x64\ -\xef\x05\x51\x5d\x6e\xaa\x45\xba\x44\xb9\x34\x2a\xd2\x66\xf6\xf3\ -\xef\x3f\x0f\x89\x21\x89\x92\x26\x39\xa8\xa6\x9f\xcf\x51\xab\xa3\ -\x49\x2e\xe2\x55\x5a\xaf\xe3\x45\x5a\xcf\x7a\x79\x5b\x7e\x9b\x25\ -\xcd\xdd\xd5\x84\x8b\x88\x72\x7c\x64\x2b\xbc\x4b\xb3\xdb\xbb\xe6\ -\xa9\x34\x4b\xae\x26\xe8\x3d\xb3\xa6\x7b\x3e\x58\x1c\xb4\xcb\xb0\ -\xab\x78\x3e\xa4\x90\xc8\xb2\x88\x06\x15\x95\x5c\x77\x79\xfa\x21\ -\xcc\x93\x72\xe1\xfa\x84\x2a\xd3\x55\x16\x6f\x9a\x72\x85\xb7\xb6\ -\x58\xe4\x71\x5d\x67\xcb\x6c\x81\x87\xb2\x58\xe7\x9b\xdb\xac\xf8\ -\xef\x4d\xdc\x2c\xee\xa2\x7e\xe2\x86\x56\xd2\x87\x75\x59\x35\xe1\ -\x43\xb2\xc6\xf4\x29\xfd\x6c\xe2\x63\x9f\x78\x8d\xd4\xcb\x24\x5d\ -\xd6\x2e\x57\x37\x16\xf7\x84\xc1\xe8\x49\x30\x6b\x53\x87\xae\xb9\ -\x7e\x25\xf7\x59\xba\xdd\xe7\xbd\x89\xeb\x6e\xbe\x82\x60\x1d\xdf\ -\x62\x6d\xe5\x65\x75\x35\x79\xb9\x6c\x3f\xbb\x84\x9b\xb2\x4a\xd2\ -\xaa\x4f\x52\xed\x67\x94\x54\x62\xfe\xb3\xe6\xb1\xa3\x69\x57\x77\ -\xdf\x5f\x57\xeb\x90\x4e\x9e\x4f\xaf\xef\xe2\xa4\xdc\x5e\x4d\xd8\ -\xd3\xc4\xb7\x65\xb9\xba\x9a\xe8\xc8\x52\x43\x04\x35\x4f\x93\x17\ -\x0f\x57\x93\x10\xef\x52\x2b\xc2\x38\x7f\x27\x15\x0d\x32\x1e\x51\ -\x2d\xfa\x17\x7d\x98\xb8\xa9\x2a\xf0\x16\xe6\xf1\x63\x8a\x51\xb5\ -\x5f\x74\x97\xa9\xbe\x2b\xb7\xb7\x95\x9b\x9d\xa6\xda\xa4\x4f\x4b\ -\xba\x94\xf0\xe6\xa6\x7c\x78\x3e\x19\xaf\x7f\xe3\x48\x0e\x37\x45\ -\xd6\x80\x96\xf5\xc3\x61\xad\x9b\x2c\x49\xeb\xe7\x0b\x6e\xb3\x02\ -\x93\x10\xee\xd6\x2d\xe5\xc3\x1c\x3f\xcd\xd1\x2f\x62\x4d\xde\x99\ -\x90\x5d\x0e\x74\xed\x9d\x79\xde\x25\x3d\xfe\x79\xd2\x2a\x7e\xc8\ -\x56\xd9\xdb\x14\xe3\xa6\x4f\xb3\xd4\x45\xbc\x0e\x6f\xf3\xf2\x26\ -\xce\x77\xbd\xbf\x6e\x73\x5c\x8e\xa6\xa5\x2b\x14\x04\xcd\xa3\x23\ -\xf6\xe1\xd1\xc9\x26\xbd\xd0\xcd\xa7\x13\x70\xad\xe4\x20\x2c\xab\ -\x0c\x20\x1c\xf4\xb7\x17\x3d\x1e\x8a\x1c\xdf\x50\xcf\x0f\xed\x02\ -\x6b\x97\x9f\x7e\x9a\xf6\x78\x98\xb6\x5b\xf7\xb3\x77\x17\x7e\x2b\ -\x5f\xa5\x4d\x9c\xc4\x4d\xbc\xa7\xa0\x97\x30\x6b\x49\x3f\x32\xa8\ -\xca\xf9\x3f\x7f\xfe\xe5\x7a\xd7\xd0\xe5\x62\x31\xff\x77\x59\xbd\ -\xe9\xdb\x0d\x02\x97\x21\xbe\x29\x37\x78\x15\x93\xeb\x41\x7c\x99\ -\x2c\xe6\x50\x6e\x80\xfe\x3a\x5b\x61\x6d\x3b\xbd\xf8\x77\x28\xb3\ -\xcb\xd9\x3e\x61\x94\xd9\x4d\xd6\xbe\xd2\xae\xda\x2a\xed\xb4\xe4\ -\xb3\xa6\x22\x59\xac\x32\x57\x68\xf6\x5b\x93\xe5\xf9\xaf\xae\x91\ -\xdd\x88\x0f\x2a\xcd\x9a\x3c\xdd\x0b\x2f\x67\xbb\xde\xef\xc6\x36\ -\x3b\x18\xdc\xe5\xac\x1f\x7d\xfb\x74\xbb\x9f\x95\x11\x14\xc3\x8b\ -\xce\xe3\x9b\x14\x8b\xe0\xb5\x4b\x0c\xde\x49\xbd\xad\xca\xcd\x7a\ -\x55\x26\xe9\xae\xf8\x30\x9b\xe9\xa2\x19\x5e\x59\xf3\x98\x23\xbd\ -\x55\x28\xf3\x97\xa4\xfd\x5c\x24\x59\xbd\x46\x09\x68\xfc\x3c\x2b\ -\xd2\x8b\x12\xaa\x76\x99\x97\xdb\xf9\x7d\x56\x67\x37\x79\x7a\xd1\ -\x7e\x67\x39\x46\x3e\x88\x96\x18\xfe\x7c\xa7\xaa\xda\x87\x70\xa7\ -\x68\xe6\xb4\x7b\xac\x36\x79\x3a\x2f\xca\xe2\x2d\x54\xd4\x45\xdd\ -\x54\xe5\x9b\x74\x68\xaf\x7b\xec\x70\x9b\x0f\x8f\xae\x6d\x8c\x63\ -\x7e\xb3\x69\x9a\x43\xd9\xff\xca\xac\x98\x63\xda\xd3\xaa\x97\xb6\ -\x0f\x39\x80\x69\xe6\xa2\x97\x25\x31\x34\x59\x55\x61\x14\x68\x34\ -\x3d\x94\x96\xcb\x65\x9d\x36\x73\x16\x19\xce\x0c\xa1\xd2\xf4\x89\ -\xfb\x1e\xaf\xe2\xea\x4d\x5a\x75\x25\xd3\x22\xc6\x00\xc3\x9b\x78\ -\xf1\xc6\x4d\x68\x91\xcc\xe3\x05\xd4\xca\x26\x87\xfb\x31\x02\xca\ -\x4d\xab\x20\x4a\x0c\xc2\xde\xec\xe9\xc8\xd9\x37\xb6\x4f\x18\x4c\ -\x9f\x89\x60\xb3\x14\x67\x43\x8a\x53\xa2\x94\xd2\xc8\xba\xcf\x20\ -\x05\x50\xdc\x46\x62\x0c\x5b\x05\xa9\x8a\x94\xe6\xd4\x30\x39\x2c\ -\xba\x7e\xcd\xec\x18\xb7\x74\x5f\x77\x53\xc5\x45\xed\x56\x3d\x18\ -\x8b\x9b\x2a\x7b\xf8\x01\x26\x5e\x68\xc6\x85\x31\x6a\x1a\xd2\x88\ -\x09\xc3\x30\x25\x53\x1a\x71\x22\x09\xa1\x62\x4a\x22\x6e\x08\x23\ -\x5c\xf3\xa9\x88\x8c\x45\x06\x21\xa7\x9c\x47\xc6\x70\x6a\x5f\x0d\ -\xa4\xed\x1b\x1d\x16\x54\xb7\x1e\xba\xf7\x3b\xd9\xa7\xb6\x9d\xe2\ -\x96\xf1\x50\x1d\x48\xdf\xed\x99\xb3\xe9\x9c\x12\x46\xd1\x05\xd3\ -\x1a\x76\x65\xa7\xe8\x2e\x27\x5a\x68\xce\x9d\x58\x08\x4d\xf0\xc7\ -\x4c\x75\xa4\xa5\xe5\x4c\x99\x69\xc8\x22\x29\x19\xb5\x8a\xbf\x3a\ -\xd4\x02\xeb\xb8\xb9\x3b\xa4\xfa\xd9\x35\xbf\x2c\x61\x27\xda\x14\ -\xbc\x76\x68\x86\xbc\x93\xdc\xc7\x55\x16\x17\xcd\x48\xb6\x6d\x5f\ -\xdf\x48\x84\x15\x94\xc2\x7f\x18\xcb\xa0\xbf\xe7\xd0\x75\xd9\x66\ -\x75\xe1\xd6\xed\xce\x58\x8c\xf2\x2c\xe3\x55\x96\x3f\xce\x7f\xc3\ -\xf8\x2f\xc2\x1e\xdc\xb0\x2b\xbe\x4e\x17\x83\x93\xd2\xe5\x68\xd2\ -\x87\x06\xb9\x12\x98\x34\x60\xd2\x3e\xc5\x79\x76\x5b\xcc\xe1\x23\ -\x57\x4d\x27\x48\xe0\x37\x54\x5d\x99\x76\xf9\x3e\x11\xb6\x04\x75\ -\x29\x79\xda\x00\x9b\x70\xa7\xb4\xfb\x6e\x6d\xe1\x45\x3c\x95\xb5\ -\x75\x0c\x2f\xa9\x2b\xbd\xad\xb2\x06\x59\x42\xa7\x5f\xe6\x79\x15\ -\x36\x37\x50\x1b\x0e\x01\xd7\x72\xde\x54\x17\xce\x9b\x69\x87\x5d\ -\xdf\x65\xcb\x66\xde\x3f\xee\xba\x5d\x2c\xee\x30\xf9\x5d\xbf\x3f\ -\x5b\xdd\xf4\xaf\xee\x23\xd5\xcd\xa1\x22\xe8\x74\x8d\x8c\xa4\x35\ -\x16\x6c\xb2\x4f\x47\xde\x7d\x9c\xb9\x0a\x98\x00\xc5\xee\x33\xa5\ -\xba\x33\x7b\x3a\x58\x04\x58\xac\xd4\x58\x6d\xa7\xf0\x4d\x09\xa5\ -\x26\x00\x60\x58\x99\x10\x88\x88\x30\x03\xbc\x03\x2c\x57\xc3\xb4\ -\x12\x62\x2a\x23\x0e\x90\x6d\x90\x07\x3c\x92\x4c\x70\xe1\x72\x71\ -\x2e\x14\x63\xa8\x8a\x45\xda\x58\xca\xdd\xf2\x66\xc6\x58\x19\xa0\ -\x41\xa9\x08\x01\xb4\x32\x52\x80\x40\x68\x88\x8c\x21\x12\x8c\x58\ -\xb4\x62\x98\x08\xde\x8e\x3a\xea\xb8\x73\x18\x70\xc2\x54\x28\xf4\ -\x38\x6d\xf0\xc3\xca\x02\x1a\xb7\x29\xab\x10\x1e\xd9\x7d\xdc\x6c\ -\xaa\xd4\x59\xfe\x91\x3d\xf3\x2c\x79\x96\xbe\x25\x4b\xb0\x42\x8c\ -\x4b\x02\x96\x60\x02\xa8\x84\x71\x04\x00\x34\xd2\x82\x49\xd8\x23\ -\xea\x98\xe2\xda\x02\x09\xcb\xa5\xa4\x53\x1e\x11\xa2\xad\x56\xe0\ -\x86\x13\x6b\x38\x48\x22\x46\x30\xae\x81\x12\x3a\x44\x98\xa0\xca\ -\xd9\x0d\xab\x14\xe5\x32\xf8\x29\x60\x36\xe2\x56\x4a\xad\xa7\xb0\ -\xb2\xb0\x77\xe8\x72\xc0\x60\xa0\x15\x51\xdc\x4e\x4d\x04\x33\x0d\ -\xa2\xa4\x83\x1a\xa6\x4f\x0a\x35\x55\x11\xb3\x44\x58\x13\xfc\xe7\ -\xcf\x89\x52\xa1\xf1\x48\x79\xa4\x8e\x12\x29\x0a\x77\xad\x35\x4a\ -\x0e\x29\xd5\x9b\x27\xb8\x98\x42\xcb\x0e\x0e\x43\x29\xbc\x27\x98\ -\x10\xca\xe0\xe1\xf1\x4e\x64\x94\xb5\x22\x50\x9d\x41\x93\xe0\x8a\ -\xa9\x34\x14\xc1\xeb\x80\xc1\xa0\x31\x45\x8c\x93\x49\x18\x32\xb8\ -\x87\xe0\x8a\x9a\x08\xbe\x34\xb1\x6c\xea\xaa\xd1\x46\x51\x1b\x50\ -\xc0\x28\xb8\x55\xad\x8c\xc0\x16\x1a\x13\x80\x3a\x4d\xe1\xac\x69\ -\x94\x16\x56\x33\x01\x73\xf6\x5e\xb0\x78\x68\x99\x67\xcb\xb3\x75\ -\x9c\x6c\xd9\xc8\x55\x01\x77\x8d\xf1\x08\x6e\x9b\x96\xce\x5f\x0b\ -\x1d\x5c\x9c\xca\x76\xf3\xc2\xa8\x52\x70\xf5\x40\x80\x8b\x9b\x29\ -\x27\x12\x04\x9b\xb6\x20\x6c\xd9\x92\x86\x41\x44\xb0\x9d\x62\x30\ -\x59\xf0\xf0\xa8\x82\x03\xe8\xd8\xa2\xc2\x62\x0f\x84\xea\x60\xda\ -\xd0\x04\x57\x6e\x5f\x86\x2d\xab\xb4\x01\xdc\x4c\x63\x15\xa5\xad\ -\x84\x62\xa3\x14\x00\x6d\x41\x99\xe1\xda\xc1\x0b\xab\x47\xe8\xae\ -\x36\x03\xe7\xd3\xb9\x89\x30\xa5\x86\x99\xf7\x7a\x85\x21\xf7\x9c\ -\x79\xce\x8e\x92\x33\x1b\xc1\x2d\x53\xc2\x82\x01\x50\xa3\xa9\xd5\ -\x06\x60\xb8\xe8\x05\x30\x10\xed\xc6\x1f\xbe\x9a\xb3\x25\xce\x55\ -\x14\x42\x49\x31\x0d\x61\xf7\x18\x37\xda\x6d\xa9\x84\xe4\x14\xee\ -\x23\x28\xb4\x8c\x59\xa6\x61\xc6\x40\x2e\xe1\x82\x52\xe7\xe0\x61\ -\xf3\x45\xe1\x45\xc2\x8c\x29\x57\x06\x9b\x2b\xe7\x0a\xa2\x49\x03\ -\x1a\x61\x17\x9d\xef\x08\xff\xd3\xb9\x8c\xcc\xe0\x27\x83\x3a\xb5\ -\xe5\x4c\x4b\x74\x48\xe0\x47\x63\x89\xfe\xa0\x19\x0b\xfd\xb6\xcb\ -\xf3\x75\x8c\x7c\xfd\x23\xa0\x0c\x6b\xdc\x32\x6a\x9c\x1d\x23\x54\ -\x59\x21\x9c\x4f\xe7\x6c\x15\xf6\x52\x6c\x8a\x6d\x99\xd1\x56\x60\ -\xaf\x64\xd1\x9c\x62\x42\xd0\x29\x83\xa1\xb1\x0a\x62\xc8\x28\xfc\ -\x41\xee\x2c\x94\x81\x29\x63\x12\xd0\xbc\x06\x22\x0a\xfd\xa2\x92\ -\x4d\x69\x9b\x41\x51\x54\x29\x60\x25\xe1\x11\x4a\x3d\x85\x1b\xa9\ -\x2c\x25\x52\x82\x39\x09\x5b\x66\xc1\x17\x93\x91\x36\x06\xfe\xa4\ -\x8d\xd4\x14\xbb\x32\xdd\x86\x55\x3e\x0c\x16\x0f\x3f\xd7\x45\xbc\ -\x9c\xdd\xbe\x27\x88\xf9\x95\xa2\xe2\x84\xc8\x65\xa2\x3f\xf6\x1d\ -\xef\xde\xab\xdb\x9d\x62\x7b\xca\x95\xfc\x8b\xe2\xe1\xe4\x2b\x84\ -\xc1\xbf\x34\x94\xab\xb0\x3c\xa0\xa0\x15\x75\xda\x5b\x50\x4e\x94\ -\xe6\xaf\x9e\x0b\x1f\xfb\xf0\xee\x77\xa1\x1b\x3f\x85\x9b\x67\x74\ -\x23\x8d\xa4\xc1\x26\x97\x33\x7a\x52\x0c\x9d\x68\x5c\xd9\x7b\x37\ -\x9e\x60\x4f\xf0\x88\xe0\x13\x8d\x66\x7b\x92\x3d\xc9\x9e\xe4\x43\ -\x92\x4f\x3d\x88\xee\x89\xf6\x44\x7b\xa2\x47\x44\x9f\x53\xe8\xde\ -\xe3\xed\xf1\xf6\x78\x1f\xe2\x7d\x16\x27\x06\x1e\x6b\x8f\xb5\xc7\ -\x7a\x8f\xf5\xe9\x1f\x54\x7c\x93\x63\x8a\x0f\xdf\xb5\x1e\x79\x08\ -\x5f\x16\xa2\x37\x58\x3f\xf8\xc9\x5a\xa7\x1b\xa9\x24\x84\x1b\xe6\ -\x6f\x5b\x7f\x1f\xaa\xe7\xff\x7f\x54\x79\x7a\x51\xf1\x50\xe8\x90\ -\x7a\x43\xee\x69\x3a\x4e\x9a\x4e\x34\x42\x1d\x9a\xcf\x3e\xf2\xf7\ -\x50\x79\xa8\xfc\x8d\xeb\x0f\xdc\xb8\x0e\xa5\xa7\xcb\xd3\x75\x9c\ -\x74\x9d\x53\xe0\x36\xe4\xfe\xb4\xd5\x93\x76\xa4\xa4\x9d\x45\x0c\ -\x35\xd4\xfe\xf4\xd3\x13\x76\x94\x84\x9d\x7e\x38\x33\x64\xdf\x28\ -\xa4\xf9\x95\x6e\x5e\x53\x29\xa8\x56\xfe\xe6\xf5\xc7\xfc\x12\x0d\ -\x26\x39\x74\x39\x73\x8e\x8b\xdb\x56\x10\x4b\x9f\xbd\x79\x8d\x9d\ -\x81\xd7\x8f\xe7\xaf\x1f\x3f\x8d\x9c\x33\x3b\x67\x3a\xc1\x28\xb3\ -\xf7\x71\x3c\xc3\x9e\xe1\x31\xc3\xa7\x1a\xdb\xf6\xff\x4e\xd4\xb3\ -\xec\x59\x1e\xb1\x7c\xf2\x21\x75\xcf\xb4\x67\xda\x33\x3d\x66\xfa\ -\xac\x02\xf9\xfe\x0e\xb6\x07\xdc\x03\x3e\x02\xfc\x3c\xce\x0f\xfc\ -\x49\xb8\x07\xdb\x83\x7d\x00\xf6\x19\x1c\x5b\x7c\x2e\xd3\x5f\x7c\ -\x0f\x9b\x7e\xb5\x80\x3d\x75\xf3\xe9\xe6\xce\x39\x28\x56\x71\x0a\ -\x67\xc6\xdf\xc3\xfe\x1e\x94\xcf\x31\x1c\x5d\x9e\x60\x84\xdc\xdd\ -\xc3\xf6\x17\xb1\x3d\x4e\x47\x8a\xd3\xa9\x06\xab\x4d\x48\x3c\x54\ -\x1e\xaa\xa3\x84\xea\xe4\xa3\xc6\x96\xf9\xeb\xa1\x9e\xae\x63\xa5\ -\xeb\xac\xe2\xb7\xfe\x88\xc6\x93\x76\xac\xa4\x9d\x47\x20\xd5\xff\ -\x3b\x58\x4f\xd8\x71\x12\x76\x06\x11\x4d\xf6\xd9\x70\xfd\x45\xbf\ -\x02\x9b\x2c\xf1\x82\xfc\x45\xec\x0f\xc6\x75\xb1\x54\x04\xd3\x8c\ -\xc8\x29\x7c\x24\x83\x32\xf0\x84\x9e\xbf\x88\xad\xfc\x4d\xec\xef\ -\x44\x41\x7e\x02\x3a\x67\x76\xd6\x74\x82\x71\x66\xff\x3f\xc1\x79\ -\x86\x3d\xc3\x63\x86\x4f\x35\xb8\xed\x2f\x75\x79\x96\x3d\xcb\x23\ -\x96\x4f\x3e\xa6\xee\x03\xea\x9e\x69\xcf\xf4\x98\xe9\xb3\x8a\xe4\ -\xfb\x5f\x0c\xe6\x01\xf7\x80\x8f\x00\x3f\x93\x03\x04\xef\x8e\x7b\ -\xb2\x3d\xd9\x07\x64\x9f\xc1\xc1\x85\xfc\x5c\xa8\x87\x73\x8b\xdd\ -\x0f\xed\xd7\xe5\xac\xbe\xc7\xd7\x1f\x02\xa0\x5e\xaf\ -\x00\x00\x09\xbc\ +\x00\x4c\x0c\x78\x9c\xed\x5c\x5b\x93\x9b\x36\x14\x7e\xdf\x5f\xa1\ +\xb2\x2f\xed\x74\x25\x10\x17\x73\x89\xed\x3c\x34\x93\x69\x66\xd2\ +\x97\x36\x4d\x67\xfa\x92\x61\x41\xb6\x69\x30\x72\x05\xac\xed\xfc\ +\xfa\x4a\xdc\x8c\x6d\xb6\xe3\x5d\x20\xa3\x4d\x4c\x66\x67\xc3\x39\ +\x47\x42\x7c\xdf\xb9\x48\x02\x76\xfa\x7a\xb7\x8e\xc1\x03\x61\x69\ +\x44\x93\x99\x82\x91\xa6\x00\x92\x04\x34\x8c\x92\xe5\x4c\xf9\xf3\ +\xc3\x5b\xe8\x28\x20\xcd\xfc\x24\xf4\x63\x9a\x90\x99\x92\x50\xe5\ +\xf5\xfc\x66\xfa\x03\x84\xe0\x17\x46\xfc\x8c\x84\x60\x1b\x65\x2b\ +\xf0\x2e\xf9\x9c\x06\xfe\x86\x80\x1f\x57\x59\xb6\xf1\x54\x75\xbb\ +\xdd\xa2\xa8\x12\x22\xca\x96\xea\x4f\x00\xc2\xf9\xcd\xcd\x34\x7d\ +\x58\xde\x00\x00\xf8\x75\x93\xd4\x0b\x83\x99\x52\x35\xd8\xe4\x2c\ +\x2e\x0c\xc3\x40\x25\x31\x59\x93\x24\x4b\x55\x8c\xb0\xaa\x1c\xcc\ +\x83\x83\x79\x20\xae\x1e\x3d\x90\x80\xae\xd7\x34\x49\x8b\x96\x49\ +\x7a\xdb\x32\x66\xe1\xa2\xb1\x16\xa3\xd9\x1a\x85\x11\x76\x5d\x57\ +\xd5\x74\x55\xd7\x21\xb7\x80\xe9\x3e\xc9\xfc\x1d\x3c\x6e\xca\xc7\ +\xd8\xd5\x54\xd7\x34\x4d\xe5\xba\x83\xe5\x65\x56\x5e\xca\x01\xdd\ +\xf0\x9f\xc6\xbc\x16\xa0\x94\xe6\x2c\x20\x0b\xde\x8e\xa0\x84\x64\ +\xea\x9b\x0f\x6f\x1a\x25\xd4\x50\x98\x85\xad\x6e\x6a\x3c\x8f\xae\ +\x7a\x04\x72\xe2\xaf\x49\xba\xf1\x03\x92\xaa\xb5\xbc\x68\xbf\x8d\ +\xc2\x6c\x35\x53\x0c\x13\x61\x83\x1f\x56\x21\x5c\x91\x68\xb9\xca\ +\x4e\xa5\x51\x38\x53\xf8\xe8\x75\xd7\x29\xcf\x5b\xce\x81\x4b\x83\ +\xaa\x63\xaf\xd1\x68\xc8\xd5\x11\x06\x0c\x5b\x86\x5d\xda\xd4\xb7\ +\xe0\x85\x34\x10\x63\xe2\x5d\x92\x75\xe4\xe7\x19\x5d\x73\xd6\x82\ +\x20\xf6\xd3\x34\x5a\x44\x01\x3f\xa1\xc9\x26\xce\x97\x51\xf2\xa9\ +\x10\x7e\xca\xe8\x27\x4e\x6a\x46\x19\xff\x1f\x8d\x51\x8d\x63\x73\ +\x51\xb2\xdb\x50\x96\xc1\x5d\xb8\xe1\x68\x4e\xec\x4e\xe5\xbe\x56\ +\xce\xb9\x76\x1a\x92\x45\x2a\xac\xca\x5b\x13\x67\xfc\xde\x6c\x05\ +\xa8\x85\xb6\x19\xa9\x18\x66\xf8\x10\x91\xed\xc1\xf6\xde\x4f\x4b\ +\xf8\x00\xd8\xf8\x4b\xee\x6a\x31\x65\x33\xe5\x76\x51\x1c\x95\xe2\ +\x9e\xb2\x90\xb0\x5a\x35\x29\x8e\x23\x15\xe5\x74\x44\xd9\xbe\x0c\ +\xae\xaa\xef\x7a\xbc\xa2\xd7\x46\xaf\x75\xeb\xd3\x95\x1f\xd2\xed\ +\x4c\xd1\x4f\x95\x5f\x28\x5d\xf3\x5e\x39\x2d\xae\xed\x68\x67\xea\ +\x60\x37\x53\x20\x76\x90\x63\x1b\x66\xc5\x4a\x5b\x2b\x06\x64\x71\ +\xa5\xee\xd8\xd6\x99\x32\x67\x8c\x87\x1f\x8c\xfd\x3d\xe1\x77\x55\ +\xfc\xaa\x7b\x48\x57\x74\xbb\x64\x02\x9d\x8c\xe5\xe4\xb4\xa5\xd0\ +\xc0\xfb\x7b\xba\xeb\x56\x73\x6f\xc8\x45\x60\xc3\x3c\x89\x32\x1e\ +\x3c\x9b\x5d\xbb\xd7\x3c\x0a\x49\xda\xdd\x30\x4d\xfc\x0d\x5c\xc6\ +\xf4\xde\x8f\xbb\x0d\xb6\x51\xc2\x51\x82\x95\x9f\x63\xa3\x21\xe1\ +\xd4\xa2\x76\x7a\x5b\x73\x1e\xb1\xe0\x63\x3f\x23\xa2\x52\xed\x1f\ +\x57\xad\xfd\x5d\xb4\x8e\xbe\x10\x0e\x0c\x2e\xfc\x8e\xfb\xd6\x11\ +\x2c\x65\x33\x00\xb2\xbd\x08\xe0\xdd\x5e\xc8\x94\x5a\x28\xf0\x14\ +\x02\xdd\x75\xed\x46\x48\x59\xc4\xe3\xa2\x35\x9c\x5a\xb4\x6f\x8b\ +\x44\xb8\xf3\x6c\xbd\x2b\x1c\xac\x70\x3f\xfb\x54\xb7\x6f\xeb\x2a\ +\xbf\x57\xcf\x1d\xbf\x90\xaf\x49\xe6\x87\x7e\xe6\x1f\xa2\xa0\x96\ +\xf0\xb1\x69\xf5\x9d\xf1\xcc\xe9\xfd\xfe\xe6\xed\xbc\xba\xd0\x34\ +\x08\xbc\xbf\x28\xfb\x5c\x5f\x17\x00\x61\xe0\xdf\xd3\x9c\x23\xad\ +\xcc\x1b\xf1\x34\x0c\x3c\x9e\xeb\x78\x0e\x98\x47\x6b\xee\xdb\x22\ +\x4d\xfe\xcc\x73\xdb\x54\x3d\x28\x8e\x8c\x05\x58\x87\x4e\xcb\x6e\ +\x19\x29\x93\x66\x67\xe5\x08\x83\x75\x24\x1a\xa9\x7f\x64\x51\x1c\ +\xbf\x13\x17\xa9\xee\xb8\xd5\x69\x94\xc5\xe4\x20\x9c\xaa\xd5\xe8\ +\xab\x7b\x53\x5b\x37\x37\x55\xeb\xbb\x2f\xce\x96\x07\x54\x8e\x82\ +\xa2\x21\x3a\xf6\xef\x09\xf7\xd0\xf7\x42\x09\xce\xb4\x4b\x46\xf3\ +\xcd\x9a\x86\xa4\x6a\xde\xa0\xc9\x13\x5e\x43\x59\xb6\x8f\xb9\x7e\ +\xc1\x47\xef\xdd\xea\xba\x65\x69\xda\x2b\x71\x02\xab\x3c\xe1\xe1\ +\xf2\x94\xe5\x31\xcf\x77\x0f\x24\xa1\x61\xf8\x2a\xcd\x18\xfd\x4c\ +\xbc\x5b\x8d\xe7\xa5\x60\x51\x9d\x96\xc1\xe0\x69\xc8\xb1\x8c\x22\ +\xbd\xd7\x72\x8e\x10\x61\x31\xf7\xd6\xcc\x33\x6b\x59\xe8\xf3\x3c\ +\xc3\x98\xbf\xf7\x12\x5e\xe7\x6b\x69\x73\xcd\x23\x47\x15\xc3\xb5\ +\x1c\xc3\x85\x18\x3a\xd0\x6c\x54\x55\xec\x59\xc8\x30\x0e\xd5\x44\ +\x1c\x75\xc8\x99\xc8\x2d\x34\x87\x26\xdc\x69\x0d\xad\x94\xea\x8d\ +\x70\x2f\x2c\x8b\x82\xd4\x12\xb2\xa3\x30\x60\x85\x47\x4f\x4c\x71\ +\x4c\x0e\x63\xfb\xbf\x1a\xd1\x65\xd0\xd4\x89\xda\x19\x5e\x34\x13\ +\x18\xba\x63\x70\xc1\x67\x21\x8e\x56\x1c\xf8\xca\xc6\xe5\x6c\xb8\ +\x50\x1f\x83\x0d\x6c\x5e\x49\x78\x4a\x48\x58\xd0\x1e\x83\x06\xb7\ +\x2a\xa7\x93\x2b\x1b\x97\xb3\x61\x8f\x53\x2c\x74\x03\x39\xc7\xd3\ +\x9e\x2b\x17\x97\x44\x86\x05\xb5\x51\x32\x94\x73\x2a\xbc\xd2\x71\ +\x41\xb5\x18\x29\x38\x0c\x03\xd9\xc7\x96\x57\x36\x2e\x2a\x1b\xda\ +\x38\xb3\x29\xdd\x41\xb6\x2b\x0e\x69\xf8\xb0\xac\xd0\x94\x98\x8f\ +\xbe\x2c\xe8\x1a\xd2\x8f\x2b\xb5\x94\xeb\x0b\xd3\xf4\x7d\x89\x59\ +\xc0\xd0\xec\x9b\x9e\x74\x0b\x5d\x39\xe8\xc9\x01\x74\x06\x26\x41\ +\xc6\xc5\x9d\xe4\x09\xa9\xff\x96\x47\x67\x4a\x92\x68\x61\x27\x7d\ +\x1c\x38\x0e\x9c\x0c\x1c\x08\x12\xc1\x2f\xb9\xff\x6b\x3c\x0d\xe1\ +\x51\x42\x40\xbe\x45\xb5\xf4\x91\x60\x42\x1d\x1a\x03\x87\x82\x7c\ +\x34\xc8\x1e\x11\x46\xff\xba\xdc\x15\x0f\xf2\x6d\x6c\x48\x1f\x0f\ +\x93\xc1\x0b\x83\x7c\x24\xc8\x1e\x0d\xd0\xee\xbd\xf5\xdd\x3d\x43\ +\x92\x6e\x63\x49\xfa\x70\x30\x79\x40\x0c\x5d\x1e\xae\x34\x3c\x67\ +\xbe\xda\xff\xe1\xdc\x29\x0f\xf2\xed\xec\x49\x9f\x98\x4c\xc1\xc5\ +\x28\x95\x5a\xba\x5d\x3d\xe9\x63\x42\xcc\x5c\xed\xde\x0f\xe7\xce\ +\xaa\xb5\x74\x44\xbc\x88\xa0\x18\x60\x63\xa9\x2b\x2c\xae\x29\xea\ +\x59\x6c\xe8\xe3\x6c\x7a\xcb\xb8\xd7\xf7\xd4\x87\x41\xe5\xab\x97\ +\x27\x7c\x8c\x51\xb1\x7b\x12\xe0\xa2\x49\x81\xb4\xd9\x26\xc0\x44\ +\xa5\xdf\x18\x17\xc1\xff\x82\xc1\x83\x78\x0c\xf8\xb8\xff\x9a\x4f\ +\xf1\xdf\x97\x0c\x60\xdf\x04\xd0\x09\x20\x36\xd1\x65\x99\xf8\x25\ +\x23\x87\xa1\x35\x06\x76\x2e\x32\x8b\x84\x7a\xd9\xaa\xe7\x25\x03\ +\xd8\x77\x4a\xd6\x09\x9f\x6e\x9e\x16\xa4\x6f\x15\x3e\xf1\x62\xcd\ +\x28\xc1\xeb\xa2\x13\xcb\x6f\x15\x41\x77\x1c\x17\x3c\xfe\xca\xe5\ +\x5b\x06\xb0\x78\x7d\x65\x94\x28\x76\x91\xfe\x8c\xfa\xbb\xf1\xb3\ +\x55\x27\x84\x65\x35\xef\x07\x21\x46\xba\x6b\x68\xb6\xed\x36\xb3\ +\xf1\x38\x4a\x08\x9f\x8e\x7a\xe9\xbf\xb9\xcf\x48\x5b\xfa\x0f\x8d\ +\x12\xaf\x80\xfa\xe9\xb8\x0b\x29\x5d\x2c\x52\x92\x1d\x58\x3b\xe7\ +\x82\x53\xf1\x1b\x10\x13\x15\x1d\xbb\x3a\x9f\xed\xdd\x61\x03\x4d\ +\xdc\x89\x6b\x83\x5f\x01\x9e\x80\x8f\xc0\x2e\x69\xd0\x2d\xf0\x1e\ +\x18\x1a\x32\x26\x2e\x76\xac\x3b\x6c\x23\x0b\x8b\x7f\xdc\xe8\x4e\ +\xb7\xab\x26\x1f\x81\x8e\x2b\xd6\x78\xf3\x56\xaf\xe0\xef\x33\xf2\ +\x0d\x07\xb7\x3c\xa2\xf9\x90\x87\x26\x49\xf1\x31\x15\x0c\x72\xf6\ +\xe0\x67\x39\x23\x47\x9f\x8e\x34\x9f\x80\xd0\x90\x88\xaf\x26\xd2\ +\x99\x12\x54\xc7\x08\x8b\xa9\xaf\x12\x01\x3d\xfd\x1e\x9e\x7f\x44\ +\x33\xc2\xcc\xfd\xa9\xbb\x33\x5f\x29\x77\xf4\xc4\xae\xae\xf1\xee\ +\x77\x08\x5d\xef\x97\x42\x3a\xc1\x1b\x7e\xc9\x23\x65\xcc\xf6\x5e\ +\x6e\x77\x47\xed\x80\xeb\x1d\x59\xbd\xce\xe9\x8b\x5c\xa7\xdb\x0d\ +\x08\x9c\x9c\xfe\xa6\xf5\x0e\xd7\x6e\x8f\x1b\x7a\x95\x28\xab\xdb\ +\x99\xbd\x9f\xf0\x76\xfa\xdd\xd0\xf0\x49\xea\x7c\x7d\x9f\xc8\x76\ +\xfb\xde\xd0\x4b\x6c\x59\x7d\xaf\xef\x0b\x1e\x9d\x9e\x37\x34\x78\ +\x92\x7a\x5e\xef\x95\xf5\x23\x85\x76\xe0\xbd\x09\x59\x5d\xcf\x1c\ +\xc7\xf9\xbe\x17\xf8\x9c\xfe\x0f\x06\x3a\xf1\x1b\x7a\x67\x47\xd6\ +\xe0\x35\x7b\xc3\xf7\x48\xe5\x78\xde\xb6\xce\x8b\xf3\xbf\xe2\x95\ +\x83\x51\xaa\xc7\xc0\x00\x4a\xec\x80\x23\x4d\x9c\xbf\xa3\x10\xee\ +\x3d\x75\xee\x46\xf0\x79\x5b\x05\x53\x75\x39\xbf\x99\x8a\x3f\xc3\ +\x32\xbf\xf9\x0f\xb1\xb1\x20\x51\ +\x00\x00\x0c\xd5\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6f\x69\x6e\x74\ +\x65\x72\x5f\x74\x6f\x6f\x6c\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x2d\x33\x36\x2e\x32\x32\x31\x31\x30\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x79\x3d\x22\x31\x30\x2e\x38\x33\x32\x31\x39\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\ +\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\ +\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\ +\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ +\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x75\x69\ +\x64\x65\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x64\x69\ +\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\x65\ +\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\x69\ +\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\x65\ +\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x66\x69\ +\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\ +\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\x65\x72\x6f\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\ +\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\ +\x65\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\ +\x75\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\ +\x38\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x35\x2e\x32\x30\x30\x30\x30\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x31\x33\x33\x33\x33\x33\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\x2e\ +\x38\x34\x31\x37\x34\x35\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\x62\x30\x35\x37\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\ +\x36\x34\x37\x30\x35\x38\x38\x32\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x66\x66\x35\x65\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x32\x34\x37\x34\x36\x36\x38\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x33\ +\x2e\x30\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x33\x2e\x30\x36\x36\x36\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x35\x30\x38\x30\x34\x38\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\ +\x39\x33\x31\x37\x30\x37\x39\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x39\x39\x39\x39\x39\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\x33\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x32\ +\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ +\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\ +\x6d\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x2c\x37\x2e\x39\x33\ +\x31\x30\x34\x34\x33\x20\x63\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\ +\x39\x39\x39\x37\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\x39\x39\x39\ +\x37\x20\x30\x2c\x31\x39\x2e\x31\x39\x39\x39\x39\x39\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x39\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x39\ +\x33\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x33\x2e\x35\x38\x39\x30\x39\x35\x31\x32\x70\x78\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\ +\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\ +\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\x36\x36\x36\x36\x36\ +\x37\x2c\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x63\x20\x31\x39\ +\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\ +\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\x32\x30\x30\x30\x30\ +\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x05\xfe\ +\x00\ +\x00\x1c\x9e\x78\x9c\xdd\x58\x49\x8f\xdb\x36\x14\xbe\xcf\xaf\x60\ +\x95\x4b\x8b\x9a\x5a\x28\x5b\xdb\xd8\xce\x21\x41\xd1\x00\xc9\xa5\ +\x4d\xdb\x63\x20\x4b\xb4\xcd\x8e\x24\x0a\x14\x35\xb6\xf3\xeb\xfb\ +\x28\x89\xb2\xe4\x05\x98\x20\x9e\x41\xa6\x02\x12\x4b\x6f\x21\xdf\ +\xfb\xde\x46\xce\xfc\xed\x3e\xcf\xd0\x23\x15\x15\xe3\xc5\xc2\x70\ +\x4c\xdb\x40\xb4\x48\x78\xca\x8a\xcd\xc2\xf8\xeb\xf3\x6f\x38\x30\ +\x50\x25\xe3\x22\x8d\x33\x5e\xd0\x85\x51\x70\xe3\xed\xf2\x6e\xfe\ +\x13\xc6\xe8\x9d\xa0\xb1\xa4\x29\xda\x31\xb9\x45\x1f\x8a\x87\x2a\ +\x89\x4b\x8a\x7e\xde\x4a\x59\x46\x96\xb5\xdb\xed\x4c\xd6\x11\x4d\ +\x2e\x36\xd6\x2f\x08\xe3\xe5\xdd\xdd\xbc\x7a\xdc\xdc\x21\x84\x60\ +\xdf\xa2\x8a\xd2\x64\x61\x74\x0a\x65\x2d\xb2\x46\x30\x4d\x2c\x9a\ +\xd1\x9c\x16\xb2\xb2\x1c\xd3\xb1\x8c\xa3\x78\x72\x14\x4f\xd4\xee\ +\xec\x91\x26\x3c\xcf\x79\x51\x35\x9a\x45\xf5\x66\x20\x2c\xd2\x75\ +\x2f\xad\xac\xd9\xb9\x8d\x90\x13\x86\xa1\x65\x13\x8b\x10\x0c\x12\ +\xb8\x3a\x14\x32\xde\xe3\xb1\x2a\xd8\x78\x49\x95\xd8\xb6\x6d\x01\ +\xef\x28\xf9\x34\xa9\xa8\x02\x40\x4b\xf8\xd7\x8b\x6b\x82\x59\xf1\ +\x5a\x24\x74\x0d\x7a\xd4\x2c\xa8\xb4\xde\x7f\x7e\xdf\x33\xb1\x6d\ +\xa6\x32\x1d\x2c\xa3\xf1\x1c\xed\x3a\x02\xb9\x88\x73\x5a\x95\x71\ +\x42\x2b\x4b\xd3\x1b\xfd\x1d\x4b\xe5\x76\x61\xb8\x53\xd3\x71\xe1\ +\x99\x35\xc4\x2d\x65\x9b\xad\x3c\xa5\xb2\x74\x61\x80\xf5\x24\x0c\ +\xda\xef\x41\x72\x38\xad\x40\xb7\x70\xd4\x73\x6c\x33\x24\xa6\x83\ +\x84\x33\x73\xfd\x56\x46\xbb\x10\xa5\x3c\x51\x36\xc1\x92\x34\x67\ +\x71\x2d\x79\x0e\x51\x4b\x92\x2c\xae\x2a\xb6\x66\x09\x7c\xf0\xa2\ +\xcc\xea\x0d\x2b\xbe\xc8\xad\xa0\xd5\x96\x67\xe9\x17\xc9\x79\x66\ +\x6a\x04\xfb\xed\xe8\xbe\xe4\x42\xe2\x7d\x5a\x02\x8e\x9e\x7f\x91\ +\x79\xd0\xcc\x25\x70\xe7\x29\x5d\x57\x4a\xaa\x75\x4a\x7d\x81\x57\ +\xbe\x81\xac\x86\xdb\xdb\xa8\x0c\x4c\x1f\x19\xdd\x1d\x65\x57\x71\ +\xd5\x02\x87\x50\x19\x6f\x20\xc9\x32\x2e\x16\xc6\x9b\x75\xf3\x74\ +\x8c\x15\x17\x29\x15\x9a\xe5\x35\xcf\x88\xc5\x21\x10\x4c\x1e\xda\ +\xb2\xea\xd6\xd6\xf6\xaa\x55\x7b\xbe\x7d\x99\x5f\x6d\xe3\x94\xef\ +\x16\x06\x39\x65\x7e\xe5\x3c\x87\x55\x67\x66\xe0\x7a\x76\xe0\x9e\ +\xb2\x93\xfd\xc2\xc0\x33\xd7\xf4\x66\xd3\x20\x38\x63\x36\xf6\x38\ +\x8e\xef\x10\x7f\x76\xc6\xac\x85\x80\xba\xc3\x59\x7c\xa0\xe0\x54\ +\xf3\xe3\x74\x42\x10\x9a\xdd\x46\x28\x70\xa4\xa8\xe9\xa9\xa6\xe2\ +\xe0\xd5\x8a\xef\x2f\xb3\x21\x0d\x6a\x55\xd1\xb8\x2e\x98\x84\xaa\ +\x29\xf7\xc3\x55\x6b\x96\xd2\xea\xb2\x62\x55\xc4\x25\xde\x64\x7c\ +\x15\x67\x97\x05\x76\xac\x00\x90\x70\x97\xe0\x8e\xdb\xc7\xe0\x54\ +\x42\x67\xbb\x6f\x9f\x61\xd2\x49\x80\xed\x67\x71\xe8\x58\x87\xeb\ +\xac\x3c\xde\xb3\x9c\x7d\xa5\x00\x8c\x73\x86\x8a\xf2\x6c\x08\xcb\ +\xb2\x11\x98\x8f\x60\x6b\x75\x10\x92\x07\x55\xd9\xfb\x83\xa2\x19\ +\x9a\xa8\xf0\x56\x04\x12\x86\x7e\x4f\xe4\x82\x41\xc1\x0c\xcc\xd5\ +\xa4\xc3\x90\xa4\xfa\x00\xb4\xf1\x7d\x93\x7f\x4d\x76\xfa\xa7\xbc\ +\xc3\x90\xd7\x95\x85\x75\x5e\x17\x0d\x3d\xa7\x32\x4e\x63\x19\x1f\ +\x8b\x44\x53\xc0\x36\x5b\x7b\x06\x2d\x35\xfa\xe3\xfd\x6f\xcb\x6e\ +\xa3\x79\x92\x44\xff\x70\xf1\xa0\xf7\x45\x48\x09\xc4\x2b\x5e\x43\ +\x24\x8c\x65\x4f\x9e\xa7\x49\x04\x4d\x10\x9a\xc3\x92\xe5\x90\xfa\ +\xaa\x7f\xfe\x0a\x4d\x6f\x6e\x1d\x19\x23\x61\x05\xd6\x71\xd1\x76\ +\x59\x68\x1f\x4d\x37\xbd\x38\x52\xd2\x24\x67\x4a\xc9\xfa\x53\xb2\ +\x2c\xfb\xa0\x36\xe9\x3c\x1e\x2c\xca\x64\x46\x8f\xc4\xb9\xd5\x59\ +\xdf\xf9\x66\x0d\x9c\x9b\x5b\xda\xfb\xe6\x6b\x73\x44\x65\x54\x34\ +\x7d\xa0\xb3\x78\x45\x21\x83\x3f\x2a\x26\x3a\xcf\x13\xc1\xeb\x32\ +\xe7\x29\xed\xd4\x35\x9a\x34\xcb\x58\x59\xf5\x8e\x56\xf2\x90\x81\ +\x48\xd3\x72\xa2\x37\x76\xf3\xdc\xa7\xac\x2a\x41\x09\x86\x43\xc6\ +\x0a\x7a\xcf\xa1\x2b\xaf\x33\xbe\x8b\x1e\x59\xc5\x56\x19\xbd\x6f\ +\x7e\x59\x06\xce\xf7\xa4\x35\x20\x10\x15\x30\xcf\xef\x2b\x29\xf8\ +\x03\x8d\xba\xc6\xd6\x7d\xb6\xc5\x14\x11\xe8\xe9\xbe\x4d\xa6\x61\ +\x38\xd5\x0c\xb5\x03\x18\x1c\xad\x6a\x29\x87\xb4\x7f\x39\x2b\x22\ +\xc0\x97\x0a\x4d\x6d\x3e\x32\x28\x0c\x19\xf5\xda\x69\x0c\x1d\x4d\ +\x08\xb0\x75\xb0\x77\x43\xe5\xeb\x75\x45\x65\x64\x6b\x5a\xd7\x19\ +\x23\xe7\x3e\x8f\xc5\x03\x15\xad\x02\x2d\x62\xb0\x1e\xaf\xe2\xe4\ +\x41\x01\x56\xa4\x51\x9c\x40\x5b\xa9\x33\x38\x86\x8c\x0a\xa6\x8c\ +\xe5\xd6\xb5\x9d\x00\x07\xf8\x98\xf2\xc9\xa8\x5e\x54\x1b\x74\x61\ +\x6e\xa9\xb9\x47\x7a\xaa\x00\x19\x12\x98\x7e\xa8\x9e\x23\x55\x95\ +\x89\xdf\xd6\x49\xd0\x27\xcd\x3c\x61\x22\xc9\x9e\x31\x36\xea\x6d\ +\x80\x44\xf3\x29\xea\x8c\x2a\xee\x57\x98\x2e\x7d\xf0\xba\xcd\x46\ +\xc1\x73\x4c\x37\x68\x47\xd2\x6b\x8d\x9d\x8f\xbd\x51\xec\x3c\xd3\ +\x0e\x3d\xd7\x0d\xc9\x38\x86\xa3\xb3\x4b\x13\x2d\x20\x92\x57\x13\ +\x25\xd2\xe6\x9a\xff\x5a\xa3\x14\x8c\x62\x34\x33\x5d\x77\x1c\x8d\ +\xab\x31\x72\x6c\x73\x34\x77\x20\x54\x6a\xd1\x93\x40\x9d\x77\xaa\ +\x4b\x30\x92\x76\x7d\x77\xfa\xac\x8d\xaa\x87\xac\x77\x03\x80\xf8\ +\x84\xb4\x77\xee\xc4\x75\xdb\x1e\xe1\xa3\xdf\x91\x7d\x06\x17\x4c\ +\xc9\x23\x58\xc7\x13\x17\x2f\xc0\x52\xc9\x05\x86\xb3\xd7\x63\x2c\ +\x6b\x41\x47\x33\xbc\x9f\xc5\x30\x1c\xd4\xf8\x82\x63\x52\x92\xdc\ +\x00\x32\xc7\x0c\x43\xcf\x26\xb3\xa0\xdc\x7f\x3b\x66\x17\x91\xc8\ +\x51\x7f\x94\x98\x10\xdf\xf4\x1b\x4c\x50\x82\x74\x70\xdc\x89\x7d\ +\xed\xfd\x3c\xb5\x7c\x9f\x60\xfb\xc9\x68\xdd\x24\x83\x1c\x7f\x36\ +\x75\x66\xb3\x1b\xe2\xa1\xab\x01\x32\x43\xe7\x08\xe0\x61\x4f\xf0\ +\xd4\x24\x0d\x50\xd7\xde\xcf\xf1\x08\xa6\xcf\x87\x46\x40\xcf\x93\ +\xa3\x0b\x24\xb9\x21\x1a\x78\x90\x1e\x76\xeb\xa8\x8f\x5c\x93\x4c\ +\x34\xc3\x47\x9e\x39\x9d\xe0\xc0\x9c\xb5\x50\x7d\x44\x8e\x6b\x06\ +\xad\x46\x68\x7a\xc8\x09\x41\x58\xfd\x87\xc8\xb4\x93\x99\x10\xa7\ +\xc3\x18\xb9\x64\x42\x66\x20\x95\x21\xbd\xc0\x04\x16\x3f\x43\x72\ +\x6a\xbb\xfe\x0b\x22\xa9\x53\x60\x1a\xbe\x44\x67\xb2\x75\xc2\xb9\ +\xd7\xa1\x3f\x02\x36\x80\xde\x1b\x41\x3f\xed\x33\xd7\x1f\x48\x68\ +\x5a\x13\x8b\x8f\xc3\x18\x10\x73\xda\xc0\xef\x75\x1d\xfd\x29\x31\ +\xc0\xee\x37\xf7\xc2\x5e\x4e\x8a\xb8\xa8\xd4\xa5\x00\x27\x70\xa5\ +\xa4\x02\x37\x57\x1c\xef\x09\x82\x30\x8c\xf0\xe9\x85\xe7\xc7\xea\ +\xa2\x9f\x86\x5d\x54\x01\xfb\xae\x09\x54\x8b\xf1\xe9\xcb\x95\xbe\ +\x89\xc9\x0b\x76\xce\xe7\x1d\x24\xfa\xd8\xed\x7f\xd7\x20\xc1\xce\ +\xff\x07\x10\xe7\x16\x93\xf5\x1b\xaa\xef\x47\x04\x64\x58\x24\x5e\ +\x5f\x23\x5e\x57\x19\x83\xdf\x6b\xee\x4f\x5f\xb5\xfb\xa3\x7c\xd0\ +\x6f\xdf\x97\x0f\xe1\x6b\x3f\x6b\x39\xc4\x0c\x6e\x72\xcc\xc2\x17\ +\xe6\xc8\xeb\x82\x82\x04\xb7\x82\xe2\x25\xe7\xc8\xf3\x40\xa1\x4f\ +\x3b\xb7\xc1\xe3\xf9\x4e\x8e\x3f\xd8\x9d\xd6\x3e\x9e\xfb\x7c\xf4\ +\x37\xea\x2f\xb6\x97\x2e\xb5\x4f\xaf\x97\x27\x5d\x6a\xe7\xd6\x66\ +\x79\x37\x57\x7f\xff\x5d\xde\xfd\x07\x5c\xd5\x81\xeb\ +\x00\x00\x05\xfe\ +\x00\ +\x00\x1c\x9e\x78\x9c\xdd\x58\x49\x8f\xdb\x36\x14\xbe\xcf\xaf\x60\ +\x95\x4b\x8b\x9a\x5a\x28\x5b\xdb\xd8\xce\x21\x41\xd1\x00\xc9\xa5\ +\x4d\xdb\x63\x20\x4b\xb4\xcd\x8e\x24\x0a\x14\x35\xb6\xf3\xeb\xfb\ +\x28\x89\xb2\xe4\x05\x98\x20\x9e\x41\xa6\x02\x12\x4b\x6f\x21\xdf\ +\xfb\xde\x46\xce\xfc\xed\x3e\xcf\xd0\x23\x15\x15\xe3\xc5\xc2\x70\ +\x4c\xdb\x40\xb4\x48\x78\xca\x8a\xcd\xc2\xf8\xeb\xf3\x6f\x38\x30\ +\x50\x25\xe3\x22\x8d\x33\x5e\xd0\x85\x51\x70\xe3\xed\xf2\x6e\xfe\ +\x13\xc6\xe8\x9d\xa0\xb1\xa4\x29\xda\x31\xb9\x45\x1f\x8a\x87\x2a\ +\x89\x4b\x8a\x7e\xde\x4a\x59\x46\x96\xb5\xdb\xed\x4c\xd6\x11\x4d\ +\x2e\x36\xd6\x2f\x08\xe3\xe5\xdd\xdd\xbc\x7a\xdc\xdc\x21\x84\x60\ +\xdf\xa2\x8a\xd2\x64\x61\x74\x0a\x65\x2d\xb2\x46\x30\x4d\x2c\x9a\ +\xd1\x9c\x16\xb2\xb2\x1c\xd3\xb1\x8c\xa3\x78\x72\x14\x4f\xd4\xee\ +\xec\x91\x26\x3c\xcf\x79\x51\x35\x9a\x45\xf5\x66\x20\x2c\xd2\x75\ +\x2f\xad\xac\xd9\xb9\x8d\x90\x13\x86\xa1\x65\x13\x8b\x10\x0c\x12\ +\xb8\x3a\x14\x32\xde\xe3\xb1\x2a\xd8\x78\x49\x95\xd8\xb6\x6d\x01\ +\xef\x28\xf9\x34\xa9\xa8\x02\x40\x4b\xf8\xd7\x8b\x6b\x82\x59\xf1\ +\x5a\x24\x74\x0d\x7a\xd4\x2c\xa8\xb4\xde\x7f\x7e\xdf\x33\xb1\x6d\ +\xa6\x32\x1d\x2c\xa3\xf1\x1c\xed\x3a\x02\xb9\x88\x73\x5a\x95\x71\ +\x42\x2b\x4b\xd3\x1b\xfd\x1d\x4b\xe5\x76\x61\xb8\x53\xd3\x71\xe1\ +\x99\x35\xc4\x2d\x65\x9b\xad\x3c\xa5\xb2\x74\x61\x80\xf5\x24\x0c\ +\xda\xef\x41\x72\x38\xad\x40\xb7\x70\xd4\x73\x6c\x33\x24\xa6\x83\ +\x84\x33\x73\xfd\x56\x46\xbb\x10\xa5\x3c\x51\x36\xc1\x92\x34\x67\ +\x71\x2d\x79\x0e\x51\x4b\x92\x2c\xae\x2a\xb6\x66\x09\x7c\xf0\xa2\ +\xcc\xea\x0d\x2b\xbe\xc8\xad\xa0\xd5\x96\x67\xe9\x17\xc9\x79\x66\ +\x6a\x04\xfb\xed\xe8\xbe\xe4\x42\xe2\x7d\x5a\x02\x8e\x9e\x7f\x91\ +\x79\xd0\xcc\x25\x70\xe7\x29\x5d\x57\x4a\xaa\x75\x4a\x7d\x81\x57\ +\xbe\x81\xac\x86\xdb\xdb\xa8\x0c\x4c\x1f\x19\xdd\x1d\x65\x57\x71\ +\xd5\x02\x87\x50\x19\x6f\x20\xc9\x32\x2e\x16\xc6\x9b\x75\xf3\x74\ +\x8c\x15\x17\x29\x15\x9a\xe5\x35\xcf\x88\xc5\x21\x10\x4c\x1e\xda\ +\xb2\xea\xd6\xd6\xf6\xaa\x55\x7b\xbe\x7d\x99\x5f\x6d\xe3\x94\xef\ +\x16\x06\x39\x65\x7e\xe5\x3c\x87\x55\x67\x66\xe0\x7a\x76\xe0\x9e\ +\xb2\x93\xfd\xc2\xc0\x33\xd7\xf4\x66\xd3\x20\x38\x63\x36\xf6\x38\ +\x8e\xef\x10\x7f\x76\xc6\xac\x85\x80\xba\xc3\x59\x7c\xa0\xe0\x54\ +\xf3\xe3\x74\x42\x10\x9a\xdd\x46\x28\x70\xa4\xa8\xe9\xa9\xa6\xe2\ +\xe0\xd5\x8a\xef\x2f\xb3\x21\x0d\x6a\x55\xd1\xb8\x2e\x98\x84\xaa\ +\x29\xf7\xc3\x55\x6b\x96\xd2\xea\xb2\x62\x55\xc4\x25\xde\x64\x7c\ +\x15\x67\x97\x05\x76\xac\x00\x90\x70\x97\xe0\x8e\xdb\xc7\xe0\x54\ +\x42\x67\xbb\x6f\x9f\x61\xd2\x49\x80\xed\x67\x71\xe8\x58\x87\xeb\ +\xac\x3c\xde\xb3\x9c\x7d\xa5\x00\x8c\x73\x86\x8a\xf2\x6c\x08\xcb\ +\xb2\x11\x98\x8f\x60\x6b\x75\x10\x92\x07\x55\xd9\xfb\x83\xa2\x19\ +\x9a\xa8\xf0\x56\x04\x12\x86\x7e\x4f\xe4\x82\x41\xc1\x0c\xcc\xd5\ +\xa4\xc3\x90\xa4\xfa\x00\xb4\xf1\x7d\x93\x7f\x4d\x76\xfa\xa7\xbc\ +\xc3\x90\xd7\x95\x85\x75\x5e\x17\x0d\x3d\xa7\x32\x4e\x63\x19\x1f\ +\x8b\x44\x53\xc0\x36\x5b\x7b\x06\x2d\x35\xfa\xe3\xfd\x6f\xcb\x6e\ +\xa3\x79\x92\x44\xff\x70\xf1\xa0\xf7\x45\x48\x09\xc4\x2b\x5e\x43\ +\x24\x8c\x65\x4f\x9e\xa7\x49\x04\x4d\x10\x9a\xc3\x92\xe5\x90\xfa\ +\xaa\x7f\xfe\x0a\x4d\x6f\x6e\x1d\x19\x23\x61\x05\xd6\x71\xd1\x76\ +\x59\x68\x1f\x4d\x37\xbd\x38\x52\xd2\x24\x67\x4a\xc9\xfa\x53\xb2\ +\x2c\xfb\xa0\x36\xe9\x3c\x1e\x2c\xca\x64\x46\x8f\xc4\xb9\xd5\x59\ +\xdf\xf9\x66\x0d\x9c\x9b\x5b\xda\xfb\xe6\x6b\x73\x44\x65\x54\x34\ +\x7d\xa0\xb3\x78\x45\x21\x83\x3f\x2a\x26\x3a\xcf\x13\xc1\xeb\x32\ +\xe7\x29\xed\xd4\x35\x9a\x34\xcb\x58\x59\xf5\x8e\x56\xf2\x90\x81\ +\x48\xd3\x72\xa2\x37\x76\xf3\xdc\xa7\xac\x2a\x41\x09\x86\x43\xc6\ +\x0a\x7a\xcf\xa1\x2b\xaf\x33\xbe\x8b\x1e\x59\xc5\x56\x19\xbd\x6f\ +\x7e\x59\x06\xce\xf7\xa4\x35\x20\x10\x15\x30\xcf\xef\x2b\x29\xf8\ +\x03\x8d\xba\xc6\xd6\x7d\xb6\xc5\x14\x11\xe8\xe9\xbe\x4d\xa6\x61\ +\x38\xd5\x0c\xb5\x03\x18\x1c\xad\x6a\x29\x87\xb4\x7f\x39\x2b\x22\ +\xc0\x97\x0a\x4d\x6d\x3e\x32\x28\x0c\x19\xf5\xda\x69\x0c\x1d\x4d\ +\x08\xb0\x75\xb0\x77\x43\xe5\xeb\x75\x45\x65\x64\x6b\x5a\xd7\x19\ +\x23\xe7\x3e\x8f\xc5\x03\x15\xad\x02\x2d\x62\xb0\x1e\xaf\xe2\xe4\ +\x41\x01\x56\xa4\x51\x9c\x40\x5b\xa9\x33\x38\x86\x8c\x0a\xa6\x8c\ +\xe5\xd6\xb5\x9d\x00\x07\xf8\x98\xf2\xc9\xa8\x5e\x54\x1b\x74\x61\ +\x6e\xa9\xb9\x47\x7a\xaa\x00\x19\x12\x98\x7e\xa8\x9e\x23\x55\x95\ +\x89\xdf\xd6\x49\xd0\x27\xcd\x3c\x61\x22\xc9\x9e\x31\x36\xea\x6d\ +\x80\x44\xf3\x29\xea\x8c\x2a\xee\x57\x98\x2e\x7d\xf0\xba\xcd\x46\ +\xc1\x73\x4c\x37\x68\x47\xd2\x6b\x8d\x9d\x8f\xbd\x51\xec\x3c\xd3\ +\x0e\x3d\xd7\x0d\xc9\x38\x86\xa3\xb3\x4b\x13\x2d\x20\x92\x57\x13\ +\x25\xd2\xe6\x9a\xff\x5a\xa3\x14\x8c\x62\x34\x33\x5d\x77\x1c\x8d\ +\xab\x31\x72\x6c\x73\x34\x77\x20\x54\x6a\xd1\x93\x40\x9d\x77\xaa\ +\x4b\x30\x92\x76\x7d\x77\xfa\xac\x8d\xaa\x87\xac\x77\x03\x80\xf8\ +\x84\xb4\x77\xee\xc4\x75\xdb\x1e\xe1\xa3\xdf\x91\x7d\x06\x17\x4c\ +\xc9\x23\x58\xc7\x13\x17\x2f\xc0\x52\xc9\x05\x86\xb3\xd7\x63\x2c\ +\x6b\x41\x47\x33\xbc\x9f\xc5\x30\x1c\xd4\xf8\x82\x63\x52\x92\xdc\ +\x00\x32\xc7\x0c\x43\xcf\x26\xb3\xa0\xdc\x7f\x3b\x66\x17\x91\xc8\ +\x51\x7f\x94\x98\x10\xdf\xf4\x1b\x4c\x50\x82\x74\x70\xdc\x89\x7d\ +\xed\xfd\x3c\xb5\x7c\x9f\x60\xfb\xc9\x68\xdd\x24\x83\x1c\x7f\x36\ +\x75\x66\xb3\x1b\xe2\xa1\xab\x01\x32\x43\xe7\x08\xe0\x61\x4f\xf0\ +\xd4\x24\x0d\x50\xd7\xde\xcf\xf1\x08\xa6\xcf\x87\x46\x40\xcf\x93\ +\xa3\x0b\x24\xb9\x21\x1a\x78\x90\x1e\x76\xeb\xa8\x8f\x5c\x93\x4c\ +\x34\xc3\x47\x9e\x39\x9d\xe0\xc0\x9c\xb5\x50\x7d\x44\x8e\x6b\x06\ +\xad\x46\x68\x7a\xc8\x09\x41\x58\xfd\x87\xc8\xb4\x93\x99\x10\xa7\ +\xc3\x18\xb9\x64\x42\x66\x20\x95\x21\xbd\xc0\x04\x16\x3f\x43\x72\ +\x6a\xbb\xfe\x0b\x22\xa9\x53\x60\x1a\xbe\x44\x67\xb2\x75\xc2\xb9\ +\xd7\xa1\x3f\x02\x36\x80\xde\x1b\x41\x3f\xed\x33\xd7\x1f\x48\x68\ +\x5a\x13\x8b\x8f\xc3\x18\x10\x73\xda\xc0\xef\x75\x1d\xfd\x29\x31\ +\xc0\xee\x37\xf7\xc2\x5e\x4e\x8a\xb8\xa8\xd4\xa5\x00\x27\x70\xa5\ +\xa4\x02\x37\x57\x1c\xef\x09\x82\x30\x8c\xf0\xe9\x85\xe7\xc7\xea\ +\xa2\x9f\x86\x5d\x54\x01\xfb\xae\x09\x54\x8b\xf1\xe9\xcb\x95\xbe\ +\x89\xc9\x0b\x76\xce\xe7\x1d\x24\xfa\xd8\xed\x7f\xd7\x20\xc1\xce\ +\xff\x07\x10\xe7\x16\x93\xf5\x1b\xaa\xef\x47\x04\x64\x58\x24\x5e\ +\x5f\x23\x5e\x57\x19\x83\xdf\x6b\xee\x4f\x5f\xb5\xfb\xa3\x7c\xd0\ +\x6f\xdf\x97\x0f\xe1\x6b\x3f\x6b\x39\xc4\x0c\x6e\x72\xcc\xc2\x17\ +\xe6\xc8\xeb\x82\x82\x04\xb7\x82\xe2\x25\xe7\xc8\xf3\x40\xa1\x4f\ +\x3b\xb7\xc1\xe3\xf9\x4e\x8e\x3f\xd8\x9d\xd6\x3e\x9e\xfb\x7c\xf4\ +\x37\xea\x2f\xb6\x97\x2e\xb5\x4f\xaf\x97\x27\x5d\x6a\xe7\xd6\x66\ +\x79\x37\x57\x7f\xff\x5d\xde\xfd\x07\x5c\xd5\x81\xeb\ +\x00\x00\x10\xf7\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x62\x61\x74\x63\x68\ +\x5f\x63\x68\x65\x63\x6b\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x76\x69\x65\x77\x42\x6f\x78\ +\x3d\x22\x30\x20\x30\x20\x33\x32\x20\x33\x32\x22\x3e\x0a\x20\x20\ +\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ +\x65\x66\x73\x32\x39\x38\x37\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\ +\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x38\x39\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\ +\x6f\x6c\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\x74\x6f\ +\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\ +\x74\x6f\x70\x33\x37\x39\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x39\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\ +\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x34\ +\x31\x31\x37\x36\x34\x37\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\ +\x6f\x72\x3a\x23\x61\x61\x34\x34\x30\x30\x3b\x73\x74\x6f\x70\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\ +\x70\x33\x37\x39\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\ +\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\ +\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\ +\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\x30\x66\x65\ +\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\x30\x36\x38\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x62\x62\ +\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\ +\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\ +\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\ +\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\x74\x6f\x70\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\x30\x33\x39\ +\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\ +\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x69\ +\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x36\x39\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x61\x31\x61\ +\x39\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\ +\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x37\x31\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\ +\x37\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\ +\x73\x65\x74\x3d\x22\x30\x2e\x36\x34\x33\x38\x33\x35\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x37\x36\x63\x36\ +\x63\x61\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x30\x2e\x34\x39\x38\x30\x33\x39\x32\x32\x3b\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x65\x63\x65\x63\x65\x63\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x3b\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\ +\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x33\x37\x37\x33\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x3e\x0a\x20\x20\x20\x20\x3c\x66\x69\x6c\x74\x65\x72\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\ +\x6f\x6c\x6f\x72\x2d\x69\x6e\x74\x65\x72\x70\x6f\x6c\x61\x74\x69\ +\x6f\x6e\x2d\x66\x69\x6c\x74\x65\x72\x73\x3a\x73\x52\x47\x42\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x66\x69\x6c\x74\ +\x65\x72\x34\x35\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x2d\x30\x2e\x30\x32\x33\x37\x34\x38\x36\x32\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x2e\ +\x30\x34\x37\x34\x39\x37\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x2d\x30\x2e\x30\x32\x34\x32\x35\x36\x37\x35\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x31\x2e\x30\x34\x38\x35\x31\x33\x35\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\x6c\x75\ +\x72\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\x6c\x77\ +\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x64\x44\x65\x76\x69\x61\x74\x69\x6f\x6e\x3d\x22\x30\x2e\x32\x37\ +\x39\x32\x33\x37\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x66\x65\x47\x61\x75\x73\x73\x69\x61\x6e\x42\ +\x6c\x75\x72\x34\x35\x30\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x66\x69\x6c\x74\x65\x72\x3e\x0a\x20\x20\x3c\x2f\x64\x65\ +\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ +\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x78\x3d\x22\x2d\x39\x34\x2e\x30\x33\x34\x39\x39\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x2d\x36\x2e\x35\x33\x38\x34\x34\x37\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ +\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ +\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\ +\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\ +\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\ +\x67\x78\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ +\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\ +\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\ +\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\ +\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\ +\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\ +\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\ +\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ +\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\ +\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\ +\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x65\x33\x64\x62\x64\x62\x3b\x73\x74\x72\ +\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x33\x31\x32\x35\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x72\x6f\x75\x6e\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x74\x65\x72\x3a\x75\x72\ +\x6c\x28\x23\x66\x69\x6c\x74\x65\x72\x34\x35\x30\x35\x29\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\ +\x35\x30\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x32\x37\x2e\x35\x38\x37\x33\x31\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x38\x2e\ +\x31\x37\x39\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x3d\x22\x2d\x33\x30\x2e\x30\x36\x39\x36\x34\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x39\x33\x30\x30\x32\x30\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x39\x30\x2e\ +\x30\x38\x33\x30\x39\x34\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x31\x32\x66\x66\x32\x32\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x39\x39\x39\x39\ +\x39\x39\x37\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x34\x2e\x37\x39\x32\x32\x32\x36\x32\ +\x2c\x31\x34\x2e\x31\x39\x37\x30\x34\x33\x20\x63\x20\x30\x2c\x30\ +\x20\x38\x2e\x36\x38\x39\x38\x39\x33\x38\x2c\x31\x36\x2e\x33\x36\ +\x33\x30\x30\x38\x20\x39\x2e\x33\x37\x31\x38\x32\x38\x38\x2c\x31\ +\x32\x2e\x35\x33\x36\x38\x37\x33\x20\x43\x20\x31\x37\x2e\x39\x37\ +\x32\x39\x38\x34\x2c\x35\x2e\x33\x36\x33\x31\x37\x38\x33\x20\x32\ +\x38\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\x39\x38\x31\x35\ +\x36\x32\x20\x32\x38\x2e\x38\x31\x32\x39\x30\x33\x2c\x34\x2e\x30\ +\x39\x38\x31\x35\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x34\x35\x30\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ +\x63\x73\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\ +\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x07\x68\ +\x00\ +\x00\x1f\xe4\x78\x9c\xed\x59\xdb\x6e\xe3\x46\x12\x7d\xf7\x57\x70\ +\x39\x58\x24\x41\x44\xb2\xef\x17\x8e\xac\x00\xc9\x20\x40\x80\xcd\ +\xcb\x26\x8b\x7d\x0c\x28\xb2\x25\x33\x43\x91\x02\xd9\xb2\xa4\xf9\ +\xfa\xad\xe6\x55\xb2\xa4\xc0\x1b\x4c\x3c\x36\x10\xc1\x03\x9b\xa7\ +\xaa\x2f\xe7\xd4\x61\xa9\xc9\x99\x7f\x77\xd8\x14\xde\xa3\xa9\x9b\ +\xbc\x2a\xef\x7d\x1c\x22\xdf\x33\x65\x5a\x65\x79\xb9\xbe\xf7\xff\ +\xf3\xeb\x8f\x81\xf2\xbd\xc6\x26\x65\x96\x14\x55\x69\xee\xfd\xb2\ +\xf2\xbf\x5b\xdc\xcd\xff\x11\x04\xde\x0f\xb5\x49\xac\xc9\xbc\x7d\ +\x6e\x1f\xbc\x9f\xca\x8f\x4d\x9a\x6c\x8d\xf7\xf5\x83\xb5\xdb\x38\ +\x8a\xf6\xfb\x7d\x98\xf7\x60\x58\xd5\xeb\xe8\x1b\x2f\x08\x16\x77\ +\x77\xf3\xe6\x71\x7d\xe7\x79\x1e\xac\x5b\x36\x71\x96\xde\xfb\xfd\ +\x80\xed\xae\x2e\xda\xc4\x2c\x8d\x4c\x61\x36\xa6\xb4\x4d\x84\x43\ +\x1c\xf9\x53\x7a\x3a\xa5\xa7\x6e\xf5\xfc\xd1\xa4\xd5\x66\x53\x95\ +\x4d\x3b\xb2\x6c\xde\x9d\x24\xd7\xd9\x6a\xcc\x76\xbb\xd9\xd3\x36\ +\x09\x6b\xad\x23\x44\x22\x42\x02\xc8\x08\x9a\x63\x69\x93\x43\x70\ +\x3e\x14\xf6\x78\x6d\x28\x41\x08\x45\x10\x9b\x32\x9f\x97\x15\x37\ +\x20\xe8\x16\xfe\x8d\xe9\x03\x10\x36\xd5\xae\x4e\xcd\x0a\xc6\x99\ +\xb0\x34\x36\xfa\xf0\xeb\x87\x31\x18\xa0\x30\xb3\xd9\xc9\x34\x83\ +\x9e\x67\xab\x9e\x89\x5c\x26\x1b\xd3\x6c\x93\xd4\x34\xd1\x80\xb7\ +\xe3\xf7\x79\x66\x1f\xee\x7d\xca\x42\x4c\xe1\xc3\x5b\xf0\xc1\xe4\ +\xeb\x07\xfb\x14\xcd\xb3\x7b\x1f\x76\x4f\xb4\xea\xae\x4f\xcc\x81\ +\xbb\x84\x7e\xe2\x78\x8c\xa0\x50\x93\x10\x7b\x35\xe6\x54\x76\x39\ +\x03\x85\x38\xab\x52\xb7\x27\x98\xd2\x6c\xf2\x64\x67\xab\x0d\x54\ +\x2d\x4d\x8b\xa4\x69\xf2\x55\x9e\xc2\x45\x55\x6e\x8b\xdd\x3a\x2f\ +\x7f\x5b\x82\xcb\xd2\xa4\x48\x7f\xab\x77\x85\x69\xc2\x41\xc1\x71\ +\x39\x73\xd8\x56\xb5\x0d\x0e\xd9\x16\x74\x14\xf2\x6a\xf0\x78\x1a\ +\x7c\xcc\xcd\xfe\xfb\xea\x00\xfb\xf3\x90\x47\x09\xfc\xf8\x0b\xc0\ +\xe7\x99\x59\x35\x2e\xde\x71\x75\x57\x40\x56\xfa\x5e\xd4\x46\xc7\ +\xad\xbb\x7d\x67\x6e\x8e\x29\x77\x99\x34\x9d\x9e\x9e\xb7\x4d\xd6\ +\xe0\xbd\xa2\xaa\xef\xfd\x77\xab\xf6\xd3\x07\x96\x55\x9d\x99\x7a\ +\x08\x89\xf6\x73\x16\xaa\xa0\x3e\xb9\x3d\x76\x77\x5b\x3f\xf7\x40\ +\xc3\xcd\x3a\xc6\xd1\xf5\x78\xf3\x90\x64\xd5\xfe\xde\x27\x4f\x83\ +\x9f\xaa\x6a\x73\xef\xf3\x90\x6b\xa5\x11\x7e\x1a\x4d\x41\x88\x80\ +\x41\x11\x25\xa1\xe3\x8e\xa6\x28\xac\x47\x42\x8a\xb4\x26\x9c\x5e\ +\x04\x77\x75\x0d\xb7\x63\x50\x24\x47\x03\xa4\xda\x5f\xc3\xfc\xcd\ +\x43\xb5\x5f\xd7\x4e\x9c\x55\x52\x8c\xea\x8c\x43\x5d\x28\x58\x2e\ +\x5d\x15\x6c\xbd\xbb\x08\x83\x3d\x76\xee\x4e\x0f\x76\x65\x6e\xe1\ +\x6e\xda\x1e\x4e\xa7\xdd\xe5\x99\x69\xae\x0f\xdc\xe7\x25\x88\x10\ +\xf4\xbe\xc6\x57\x18\xf5\x19\x83\xc9\x25\x52\x37\x32\x9c\x41\x6e\ +\x84\x8e\xb7\x43\x9b\xe4\x90\x6f\xf2\x4f\x06\x88\x5f\x48\xdd\x94\ +\xc9\x36\x58\x17\xd5\x32\x29\xfa\xdd\x2f\xda\x8c\xf9\x99\x2c\xdd\ +\x20\xcf\xb3\x47\x77\x47\x1f\x8e\x0e\xf3\x07\xd0\x09\xea\x00\x2a\ +\x05\x1f\xc1\xaa\xce\xe1\x46\x39\xd9\xef\x00\x1d\x4f\x21\x77\xff\ +\x43\xfb\x3e\x4c\x1b\x1b\x31\x67\xba\xc1\xe7\xd1\xa5\xd1\x5b\x7c\ +\x63\x6c\x92\x25\x36\x99\x5c\x3f\x20\x44\x6b\x34\x30\x81\xd6\x19\ +\xff\xfb\xc3\x8f\x8b\x7e\x81\x79\x9a\xc6\xff\xad\xea\x8f\xc3\x7a\ +\x9e\xe7\x12\x92\x65\xb5\x03\xe9\xfd\xc5\x08\xcf\xb3\x34\x86\x66\ +\x07\x4d\x60\x91\x6f\xc0\xcb\xae\x4f\x7e\x0b\xcd\x6d\x1e\x4d\x81\ +\xb3\x64\x27\xce\x34\x69\x37\x6d\x6d\xba\xae\x79\xf5\xab\x23\x4b\ +\x37\xb9\x1b\x14\xfd\x62\xf3\xa2\xf8\xc9\x2d\xd2\x33\x3e\x99\x34\ +\xb7\x85\x99\xc0\x79\xd4\xef\xbe\xe7\x16\x9d\x90\x9b\x47\x03\xfb\ +\xf6\x6a\x3d\xa9\x72\x76\x17\x8c\x85\x2d\x92\xa5\x81\xa2\xff\xcb\ +\x05\xbd\x8b\xe8\xba\xae\x76\xdb\x4d\x95\x99\x7e\xf8\xa0\xe6\x36\ +\xb1\x0f\x63\xa9\xec\xb1\x80\xf8\x0a\x76\x1f\x97\xf0\x9d\xfb\xbe\ +\xb1\x75\xf5\xd1\xc4\xef\x0c\x5a\xad\x10\xea\x2f\x3b\xe7\xc7\x98\ +\x84\x42\x49\x24\x08\x11\x43\xa0\xc8\x4b\x03\x8b\xc5\xcb\x9d\xb5\ +\xa7\xd8\xef\x55\x5e\xc6\xa0\x8d\xa9\x07\xb4\xbd\x28\xc0\xc5\x36\ +\x66\x03\x96\x25\xd0\x5e\xea\x3a\x39\x9e\xae\x1d\xf4\x2d\x29\x9e\ +\x0c\x05\x02\xfc\xec\x05\x38\xd4\x0c\x13\x84\xf5\x4c\x85\x84\x30\ +\x21\x89\xeb\xb2\x21\xc1\x8a\x4a\x80\x38\x62\x8c\x4a\x7a\x66\x6a\ +\x47\x95\x4a\xad\x27\x70\xec\x32\x55\x09\x3b\xb7\x55\x1d\x40\xbf\ +\x79\x4c\xec\xae\x36\xce\xd6\x43\x9d\x9e\x27\x12\x6a\x3f\xe7\x22\ +\xa1\x50\x50\x46\x39\xc5\x5f\x46\x22\x41\x31\xe6\x8c\xce\x40\x17\ +\x28\x94\x68\x15\xe2\x44\x31\x2c\x00\x62\x4a\x20\xc6\xf5\xa5\x44\ +\x0a\xbf\xac\x44\x9a\x4a\x06\x27\x23\xb6\x3d\xfc\xff\x2a\x5d\xe5\ +\xbe\xf1\x30\x0f\x29\xc7\x04\x93\x59\x20\x41\x05\xce\x19\x63\x5e\ +\xea\xc1\xd7\x1a\x91\x12\xcf\x90\xd3\x83\x32\xac\x1d\x22\x31\x63\ +\x80\x30\x0c\x5a\x29\x07\x28\xea\x32\x04\xd6\x88\x50\xe9\x00\xcc\ +\x10\x75\x63\x38\x92\xce\x66\x70\x38\x42\x88\x11\x40\x38\x64\xe0\ +\x1e\x10\x0e\x90\x9c\x32\x89\x70\x87\xb4\x0b\x29\xc1\x91\x16\x5d\ +\x0e\x66\x30\x33\x0e\x25\x05\xdb\x22\xd5\x42\x04\x33\x0e\xb5\xe0\ +\x1a\xca\x22\x78\x97\xa5\x15\x03\x88\x3a\x49\xba\x71\x54\x0b\x35\ +\x63\x21\x58\x57\xa9\x2e\x07\xf2\xf1\x4c\x86\x70\xa0\x54\x44\xf6\ +\xeb\xbb\xe5\x09\xe7\x82\x75\xcb\x63\x08\xc2\x62\x8c\x63\x0c\x15\ +\xef\x20\x05\xf3\x62\x29\x84\xc6\xa2\x1b\x04\x08\xf0\x22\x94\xc0\ +\xf2\x1d\x02\x77\x0f\x68\xc1\x60\xd7\xa4\x1b\x84\x38\x77\x6a\x08\ +\x2d\xdb\x1c\xd8\x86\x09\x9c\x5e\x80\x83\x51\xbc\x40\x43\xac\x43\ +\x40\x40\x31\x0c\xc2\x2d\x20\x24\xa3\x9a\xb4\x83\xf0\xd9\x28\xc7\ +\x9c\xb4\x8a\x11\x2c\x15\x61\xf4\xe9\x28\xd5\x91\xe0\x98\xcb\x19\ +\xfc\x81\x91\x82\x4d\x76\x5b\xe4\x42\x29\x87\x01\x00\xce\xe9\x14\ +\x52\x9c\x12\x87\x51\xa6\x19\x0c\xba\xf0\xb4\x62\x6f\xdc\xd2\x3f\ +\x7b\x12\xea\x04\x93\x82\x13\xe1\x2f\x2d\x15\x26\xdc\x23\x1c\x40\ +\xe8\xc2\x02\x30\xa8\x99\x00\x13\x5e\x52\xe7\xf4\x6d\x53\xdf\x00\ +\x75\x2c\xe0\x1e\x02\x23\x62\xe6\xb8\x73\x49\x9d\x83\xb8\x54\x60\ +\x0e\x11\xc2\x6a\x12\x5a\xd9\x15\xe6\xf2\xad\x33\x87\x02\x03\x75\ +\x04\x7d\x0c\x98\x43\x85\xa9\x90\x3d\x73\x31\x31\xbf\x6c\xe1\x4a\ +\xe0\x17\x65\xae\x34\x55\x12\x63\xfa\x19\x99\x53\x47\x5c\x0a\xa2\ +\xda\x9a\x0b\x06\x5d\xd4\xd3\x8e\xb0\xe0\xca\xf5\x0d\x68\x08\xe3\ +\xc1\xfb\x94\xf8\xcb\x9a\xfd\x2f\x20\x8e\xb5\x63\x4e\xe0\x2b\x1a\ +\x88\x43\xe7\x97\x72\xe4\xfd\x07\xb4\xf9\x5b\x77\xfa\xb5\x7a\x07\ +\xbd\xd5\xd9\xac\xb7\xfa\x15\xe2\x5f\xe2\x16\x57\xea\x73\xd6\xbb\ +\x65\xce\x08\x6e\xeb\xcd\x24\x96\x78\x20\x2e\x07\xde\x57\xba\xba\ +\x90\xc1\x97\xe8\xeb\x9f\x97\xfa\xa5\xd5\x87\x92\xff\x51\xc5\x03\ +\xf1\xd6\x89\x13\x47\x5c\x29\xc9\xda\xb6\x2e\x35\xa3\xf4\x79\xcc\ +\xff\x84\xdb\xad\x39\xd8\x61\x10\x3c\xee\xc6\xed\x3b\x3a\x98\x11\ +\x1e\x65\x4d\xfd\x68\xfc\xa7\xaa\x54\xa5\x0d\xda\xbf\x41\x1b\x78\ +\x28\x2e\xde\xb7\xc8\xbe\x7d\x97\x71\x06\x35\xf9\x27\x13\x63\x1c\ +\x12\xd7\x0a\x34\xe2\xa0\x8f\x13\xa1\x7f\xed\x11\xa3\x7f\x76\x69\ +\xab\x64\x93\x17\xc7\xb8\x49\xca\x26\x80\x15\xf3\xd5\xfb\xc2\x58\ +\x90\x28\xe8\x5f\x0c\xc4\x08\x06\xee\xab\x3a\x3b\x03\xda\xe2\x0c\ +\x05\x71\x17\x93\x94\x43\xb9\x4e\x1f\x81\xfa\x47\xd2\x90\xb9\xa3\ +\x35\x9d\xbe\x10\xdd\x0b\x0b\xf7\x24\x20\xb0\xa4\xd3\x01\xc1\xbd\ +\x70\x82\x63\x2b\x87\xc3\xf3\xf9\x51\xd1\x69\x45\x35\x9e\x5e\x68\ +\xd8\x1a\xb6\xed\x5e\x0e\x40\xd5\x12\x5b\xe7\x87\xaf\xc1\x0f\x70\ +\xc6\xa7\xa8\x7d\x22\x80\x33\xbe\x52\x18\xfa\x53\x7b\x7a\x55\x70\ +\x48\x56\xee\x80\x8f\x98\x92\x12\xe2\x33\xf4\x8d\xbf\x98\x5b\xe0\ +\x55\x4e\x2f\x12\xc6\x77\x1f\x75\xe5\xf4\x76\x92\xf9\x53\xb4\xdd\ +\x85\x1b\x00\xdb\x20\x27\xf8\x75\x22\x37\xa8\x9c\x17\xb3\x2f\xdd\ +\xb2\x2a\xb2\x67\x15\x0e\x02\xfc\x56\xe9\x82\xc1\x76\x41\x37\xd3\ +\xd6\xa4\xe3\xbb\xd4\xf8\xab\x5f\x20\xd1\xfb\x1e\xd6\xf9\xea\x56\ +\x5d\x16\x78\x1e\xb5\xf4\x16\xf0\x1b\xc4\x7e\x31\x8f\xbe\x56\x77\ +\x6a\x57\x05\xaa\x10\xbe\x30\x27\xd2\x94\x5c\x35\x67\xc0\x5f\x89\ +\x3d\x4f\xbe\x80\x6e\x70\xb9\xc1\xe6\xb9\xfe\x7c\x51\x67\x92\xbf\ +\x9d\x79\xe6\x4c\x2c\x43\x4a\xe1\x19\xfd\xcc\x99\x14\x8c\xc4\x30\ +\x96\xb7\x9c\x29\x5e\x8b\x35\x9f\xf4\xce\x4b\x32\x37\xe8\xbc\x4a\ +\x6b\xd2\xbf\xad\x79\x66\x4d\x22\xe0\xf8\x44\x30\x51\x4f\x9a\xa6\ +\xc2\x1c\x11\x7d\xdd\x9a\xfa\xb5\x38\x13\x9f\x3b\xf3\x92\xcb\x0d\ +\x36\xaf\xd2\x99\xec\xd2\x99\xf3\x68\xbd\xb8\x9b\xbb\xff\x5d\x59\ +\xdc\xfd\x0f\x21\xad\x40\x64\ +\x00\x00\x0a\x2a\ +\x00\ +\x00\x2f\xfb\x78\x9c\xed\x5a\x59\x8f\xdb\xc8\x11\x7e\x9f\x5f\xc1\ +\xc8\x2f\x36\xa2\xa6\xfa\x66\x37\x67\xc6\xfb\xb0\x8b\x0d\x16\xd8\ +\x20\x40\x6c\x23\x8f\x0b\x8a\x6c\x49\x8c\x29\x52\x20\xa9\x91\xe4\ +\x5f\x9f\x6a\x52\xbc\x24\xce\xa1\x19\x7b\xb2\x71\x2c\xc3\xb0\xba\ +\xaa\xfa\xaa\xaa\xaf\x8e\x96\x6f\x7e\xda\xaf\x13\xe7\xce\xe4\x45\ +\x9c\xa5\xb7\x13\xe2\xe2\x89\x63\xd2\x30\x8b\xe2\x74\x79\x3b\xf9\ +\xf4\xf1\x57\xa4\x26\x4e\x51\x06\x69\x14\x24\x59\x6a\x6e\x27\x69\ +\x36\xf9\xe9\xfd\xd5\xcd\x5f\x10\x72\x7e\xce\x4d\x50\x9a\xc8\xd9\ +\xc5\xe5\xca\xf9\x2d\xfd\x5c\x84\xc1\xc6\x38\x6f\x57\x65\xb9\xf1\ +\x67\xb3\xdd\x6e\xe7\xc6\x47\xa2\x9b\xe5\xcb\xd9\x3b\x07\xa1\xf7\ +\x57\x57\x37\xc5\xdd\xf2\xca\x71\x1c\xd8\x37\x2d\xfc\x28\xbc\x9d\ +\x1c\x27\x6c\xb6\x79\x52\x09\x46\xe1\xcc\x24\x66\x6d\xd2\xb2\x98\ +\x11\x97\xcc\x26\x9d\x78\xd8\x89\x87\x76\xf7\xf8\xce\x84\xd9\x7a\ +\x9d\xa5\x45\x35\x33\x2d\xde\xf4\x84\xf3\x68\xd1\x4a\xdb\xd3\xec\ +\x58\x25\x44\xb4\xd6\x33\x4c\x67\x94\x22\x90\x40\xc5\x21\x2d\x83\ +\x3d\x1a\x4e\x85\x33\x8e\x4d\xa5\x18\xe3\x19\xf0\x3a\xc9\xa7\x49\ +\xf9\xfb\x04\x54\x71\xef\x61\x2a\x6e\x7f\x77\x50\xff\x06\xfe\xb6\ +\x13\x1a\x82\x5b\x64\xdb\x3c\x34\x0b\x98\x69\xdc\xd4\x94\xb3\x5f\ +\x3e\xfe\xd2\x32\x11\x76\xa3\x32\xea\x2d\xd3\x68\x7f\xb0\xef\xc0\ +\x24\x69\xb0\x36\xc5\x26\x08\x4d\x31\x6b\xe8\xd5\xfc\x5d\x1c\x95\ +\xab\xdb\x09\xe3\x2e\x61\xf0\x11\x15\x71\x65\xe2\xe5\xaa\x3c\xa5\ +\xc6\xd1\xed\x04\xee\x4a\xb5\xaa\xc7\x3d\x57\x22\xb5\xc0\x71\x61\ +\xbf\xe5\x60\x57\x53\x97\x38\x39\x11\xcc\xab\x65\x9a\x2b\xf8\x51\ +\x16\xda\x33\xc1\x92\x66\x1d\x07\xdb\x32\x5b\x83\x8d\xc3\x30\x09\ +\x8a\x22\x5e\xc4\x21\x0c\xb2\x74\x93\x6c\x97\x71\xfa\x47\x98\xc4\ +\x9b\x3f\xca\x2c\x4b\xdc\x46\xd5\xed\x4e\x66\xbf\xc9\xf2\x12\xed\ +\xa3\x0d\xa8\x50\x7a\xa3\xcc\x43\xc3\x7c\x0f\xdc\x9b\xc8\x2c\x0a\ +\x2b\x55\xdf\xc7\x8e\xe0\x42\x35\x0f\xb8\x60\x1e\x13\xe4\x7f\xcb\ +\x83\x28\x06\xa7\xac\xe5\x7a\x2b\x86\x59\x92\x98\x10\x34\x13\x24\ +\xbb\xe0\x50\x4c\x5a\x01\x58\x6a\x38\x95\x63\x26\x8f\x8b\xc2\xb2\ +\x45\x99\x6d\x1a\x59\xd0\x41\x79\x48\xec\xc5\x81\x88\x60\xc5\x2c\ +\xf7\xdf\xe0\xea\x73\x5d\x91\x32\x30\x53\x5c\x1e\x7c\x72\x3d\xe9\ +\xe6\x64\x8b\x45\x61\x60\x63\xdc\xa3\x55\x06\x81\x19\xb0\x17\x40\ +\x77\xf6\xb2\xdd\xf0\xd8\x6e\x64\x74\x37\x8e\xdb\xdd\x6e\x66\xc3\ +\x6b\x7f\x7d\x35\x52\x75\x91\x1a\xf9\x5c\x93\xe7\xab\x11\x5f\xa8\ +\xc6\xf3\xdd\x2e\x50\x23\xa3\xcf\x54\xe3\x99\x96\x98\x52\xfa\xb5\ +\xb4\xc4\x94\x26\xf7\x6b\xa9\x27\xe5\x8d\x2d\xe8\xca\xda\xf7\xe8\ +\xe4\x39\x27\x7c\x35\xe3\xc0\xf1\xd9\x37\xf2\xf1\x2a\x03\xf8\xab\ +\xdc\x40\xc6\x7a\x33\x62\xc6\x87\xac\xac\x45\xb7\x0c\xb9\x9d\x50\ +\xd9\x0e\x0f\x30\x24\xdd\x70\x4f\x81\xdb\x09\x1f\x60\x48\x3a\x63\ +\x2e\x8f\x0b\x7e\x4a\xe3\x12\xd2\xda\xb6\x30\xf9\x07\x9b\x1a\xfe\ +\x91\x7e\x2a\xcc\x99\xd4\xc7\x3c\x48\x0b\xc8\x43\x6b\x50\x4d\x18\ +\x24\xe6\x2d\x54\x0e\xd2\x7e\xbc\x77\x9d\x8a\x2e\xf1\x54\x74\x59\ +\x60\x7c\xa1\xaf\x22\xfd\x34\x6f\x45\xe4\x7f\xdc\x5f\x7b\x17\xbd\ +\xc8\x63\x4f\x9c\xe3\xd4\x75\x4e\x1c\x6b\xe8\x76\x4f\xf3\xa4\x11\ +\x37\x80\x5a\xe8\xa9\x88\x40\xdd\x76\x8f\x82\x6b\xc4\x67\xa1\xac\ +\xc8\xe3\xfd\x5b\xec\x52\x25\x09\x15\x1e\x9b\x82\xff\x52\x4f\x78\ +\xdc\x9b\xa2\xee\x6b\x8f\x4f\x3d\x17\x2c\xce\x89\x9a\x22\xe1\x2a\ +\xc1\x24\xa6\xe2\x71\x57\x7f\x01\xee\xab\x24\xf7\x60\x29\xc1\x07\ +\x06\x60\xd2\x25\x12\x72\xbe\x1e\x58\x89\xc1\x0d\x3c\x4d\xc4\xc0\ +\x92\x8c\xb9\x4a\x32\xae\x87\xb1\x00\xee\x25\x19\x15\x98\x89\x97\ +\xc7\x84\x4e\xbf\xda\x83\x7b\x50\x50\xa5\xfd\xe3\x0a\xcc\xa9\x04\ +\xb7\x04\x75\x7b\x9e\x56\x58\x8a\x29\xd2\x2e\x25\x1a\x10\xf5\xad\ +\xd5\xc9\xe4\x83\xea\xe4\x74\xa8\x4e\xea\x32\x46\x29\x63\x03\x75\ +\x22\x42\x5c\xe1\x69\xfe\x7f\xa2\xcf\xf1\x0a\x16\xe1\xd7\xac\x61\ +\x91\x78\xdd\x2a\x16\x91\x57\xad\x63\x11\x7f\xcd\x4a\x16\xb1\xd7\ +\xad\x65\xd1\x33\x0b\xa6\x7b\xf0\x73\x0f\xd8\xc6\x81\x39\x0a\xe2\ +\xe7\xe6\x26\x8e\x25\x7b\x6a\x98\x41\x9d\xf6\x5f\x96\x9b\x46\xb1\ +\x4e\xa7\xd0\xe8\x2b\xce\x20\xff\x78\x6a\x0a\xd7\xe6\x9a\x33\xf6\ +\x28\xd6\x2f\xd6\xe8\x79\xe6\x18\x4d\x32\x2f\x50\xa8\x78\x9a\x42\ +\x2b\x8c\xfc\xd7\x14\x7a\x33\xb3\xaf\x01\xd5\xb7\xf6\x95\xc2\x3e\ +\x51\x44\x77\xb1\xd9\x5d\xb5\x97\x9b\x07\xed\x6d\x37\xc1\xd2\x54\ +\xf8\x81\xbb\x2c\xaa\xcf\x91\x31\xcf\xf2\xc8\xe4\x0d\xab\xaa\x96\ +\xe5\x80\x75\x84\x58\xfd\x0c\x77\x35\xbc\xaf\x5d\xb5\xe5\xe3\x71\ +\x7e\xb1\x0a\xa2\x6c\x07\xb5\xd8\x29\xf3\x4b\x96\x81\x1e\xe0\x6a\ +\x44\x7b\x0a\x9f\xb1\xc3\xbd\x05\x10\x73\x99\xf4\x08\x3b\x63\xc2\ +\x7e\x14\xc0\x45\x31\x21\xe4\x8c\xb9\xcd\x73\x50\x36\x4a\x82\x83\ +\x81\x4b\x55\xff\x34\x42\xc5\x2a\xdb\x2d\x73\xab\x9c\x32\xdf\x9a\ +\xd3\x99\x96\x83\xe6\xf3\x6c\x3f\xce\x8e\xb2\x70\x6b\x5f\x00\xd1\ +\xb6\xf6\xab\xcd\xbe\xbf\xea\x36\x8e\x4c\x31\x3e\xb1\x48\x83\x0d\ +\x5a\x26\xd9\x3c\x48\xc6\x05\x76\x71\x0a\x4a\x42\xc7\x27\x2e\xc2\ +\x5a\x1b\x9c\x4a\x34\xef\x5d\x1e\x56\xf7\x48\xec\xbb\x40\x7b\xca\ +\x3a\xdc\xcf\x5a\x07\xfb\x78\x1d\x7f\x31\x51\x17\x36\x3b\xad\xd8\ +\x9b\xf5\xd5\x72\xc4\xf4\x40\x6d\x8d\xab\x97\x07\xfb\xb6\xb7\x3f\ +\x58\xda\x00\x69\x96\x40\x75\xaf\xd7\xce\xf2\x78\x19\xa7\xfb\x7e\ +\x5e\xa8\x49\x87\x3e\xc9\xbe\x04\xc6\xe9\x72\x5f\xf9\x5f\xdd\xcc\ +\x9d\xf2\x0e\x7d\x5e\x03\x90\x73\x5c\x54\xf4\xb5\x29\x83\x28\x28\ +\x83\x0e\x24\x0d\x05\xce\xd6\x94\x10\x37\x79\xb4\xf0\xff\xf9\xcb\ +\xaf\x6d\x4e\x0a\x43\xff\x5f\x59\xfe\xb9\x4b\x27\x56\x20\x98\x67\ +\x5b\xb0\x44\x9b\x29\xed\x8b\x5d\xe8\x5b\x74\x07\xe5\xfb\x78\x0d\ +\xae\x6f\xdf\x5b\xff\xba\x5f\x27\x00\xd7\x96\x31\x10\xb6\xca\xea\ +\x16\xad\x97\xcd\x4d\xfd\x9e\x3a\xfa\x04\x1d\x85\xeb\xd8\x4e\x9a\ +\x7d\x28\xe3\x24\xf9\xcd\x6e\xd2\xcb\x9d\xc7\x45\xe3\x32\x31\xbd\ +\x84\x3a\x3b\x9e\xbe\xc9\x78\xbd\xcb\xdd\xcc\x9a\xdb\x57\xa3\x65\ +\xa7\x95\x01\x68\x5a\x43\x27\xc1\xdc\x80\x07\xff\x6e\x99\xce\xb9\ +\x9f\xe4\xd9\x76\xb3\xce\x22\x73\x9c\xde\x68\xd3\x24\x49\xbc\x29\ +\xda\x8b\x1e\x53\xfa\xb0\x34\x8a\xe2\x62\x03\x93\xfc\x38\xb5\x91\ +\xf6\x3a\xbb\x33\xf9\x22\xc9\x76\xfe\x5d\x5c\xc4\xf3\xc4\x5c\x57\ +\xff\xc6\x89\xcd\xf5\x0d\x69\x01\x1a\xf0\xd3\x0c\xa4\x8b\x32\xcf\ +\x3e\x1b\xff\x8d\x16\x86\x2d\x16\xc7\x61\x0d\x26\x9f\xba\x92\x08\ +\xca\x09\x16\x0d\xdd\x6e\x00\xe7\xf5\xe7\xdb\xb2\xec\xd3\xfe\x9d\ +\xc5\xa9\x0f\xea\x35\x79\x43\xad\x06\x09\xe0\xa2\xf4\x79\x43\x8b\ +\x02\x08\x68\x79\x0e\x47\xed\x6d\x5d\x51\xeb\xb2\xc3\xc7\x0d\xad\ +\xab\x85\xd6\x41\xfe\xd9\xe4\xf5\x04\x93\x06\x70\x78\x34\x0f\xc2\ +\xcf\x56\x5f\x69\xe4\x07\x21\x44\x95\x6d\x12\x94\xc3\xcc\xb4\x09\ +\xca\x15\xc3\x5c\x22\x81\xb8\x2d\x59\x5a\x80\x8d\xe4\x10\xad\xa4\ +\x82\x48\xc8\x20\x7f\x10\x49\x34\x93\xca\xa6\x0f\x88\xab\x94\x30\ +\x41\xa7\x56\x00\x4a\x00\x2c\xa4\x4d\x31\xef\xda\xa5\x6c\x88\xd5\ +\xae\xe4\x98\x68\xd1\xb5\x75\x36\xb6\x42\xdc\x05\xaa\xa4\x5d\x8e\ +\xcb\x41\x96\xbb\x0c\x4b\xdd\x95\x55\xf9\xc1\x66\x64\x48\x51\x12\ +\xb6\xe9\x72\xbd\x3d\xf9\x83\xc6\x5e\x64\x10\x43\x2b\x0e\xe8\x04\ +\x50\x91\xd4\x94\xbb\x20\x8f\x83\xb4\x1c\xd0\x76\x55\xbc\x1b\x90\ +\x40\xbd\xa6\x0c\x57\x43\x1a\x84\x2e\x1f\x70\x1e\x6f\xd7\xd7\xd6\ +\x96\xc7\x38\x39\x90\x59\x04\xeb\x38\x39\xf8\x1f\x40\x7d\xd7\xa8\ +\x71\x5a\x54\x4f\xdf\x98\xb0\x7d\xca\xaf\x25\x4a\xb3\x2f\x41\x2a\ +\x82\x70\x0f\x26\xad\x46\x41\x12\x2f\x53\xbf\x28\x83\xbc\xac\x09\ +\x11\xa4\xd4\xbc\x9e\x53\xd9\xf6\x84\x58\x79\x55\xcd\x49\x4c\x09\ +\xae\x84\x8e\x01\xab\x39\xd6\x0e\x12\xec\x29\xad\x5a\xa3\xb5\x71\ +\x3d\x7b\x97\xc7\x25\x88\x20\x8b\x2d\x3f\xc9\x51\x39\x07\xbc\xe4\ +\x50\x68\xd8\x9d\x93\x32\xbf\xb6\x89\xbe\xba\x76\xb1\x8a\x17\xa5\ +\xdf\x0c\x8f\xc7\x4e\xc3\x15\x28\xbf\x3e\xf7\x73\x71\xd6\x60\xcb\ +\x0e\x7a\x9e\x7d\x44\x5e\x1f\x0a\x35\xec\xc0\x7f\xa4\xe7\x31\x46\ +\xf8\xe5\xde\x0f\xce\xff\x77\x87\x81\xd3\xda\x1f\x74\xa0\x8b\xc4\ +\x6e\x1d\xdb\x9d\x9f\x1d\x42\xa7\xd6\x35\x2b\x86\x03\x8c\x2a\xea\ +\x7b\x96\xa6\x4f\x87\xbf\x5b\x82\x9c\x12\xcf\x65\xb5\x78\xe8\x80\ +\xf3\x3b\x84\xbb\x50\x5b\x51\x57\xd5\x44\x0a\x55\x56\x3d\x09\x41\ +\x6d\x59\xed\xe3\xd0\x66\x67\x04\x0d\xac\xc3\xad\xb4\x57\x1f\x00\ +\x40\x25\x2c\x87\x5b\x69\xee\x7c\x39\x07\xac\x92\x14\x75\x25\x64\ +\xaf\x30\x4c\x21\xe8\x94\x59\x8e\xa0\x38\xb9\x0b\xca\x6d\x6e\x06\ +\x49\xae\x4d\x56\x60\x61\x1b\xdf\xa1\x8e\x08\xed\xe7\x07\xa8\xbe\ +\x67\x50\x41\x62\x7f\x7b\xfa\x8c\xa8\xb5\x7e\xf7\x7a\x28\xa3\xbc\ +\x76\x68\x36\xa5\xb2\x87\x32\xe9\x7a\x0a\x30\x30\xd5\x90\x4e\x34\ +\x13\x0c\xc0\x25\x5c\x45\x09\x91\x6c\xea\x01\xfc\x28\x16\xdc\x1b\ +\xa5\x01\xea\x20\xe3\x0a\xe9\xd1\xa9\xb2\xc8\x52\x58\x37\xc8\x93\ +\xb0\x95\x12\x9c\x4f\x41\x42\x43\xc6\x81\x93\x3b\xca\xf5\x38\x87\ +\xee\x67\x4a\xb4\x4b\x21\x8f\x78\xd8\x03\xf8\x71\xca\x05\x87\x23\ +\x41\xed\xaf\x15\x51\x0e\x73\x3d\xa6\x28\x50\x98\x0b\xe5\x3e\x85\ +\x33\xc2\x17\x06\x1d\x34\xb1\x10\xe5\x54\x28\xc2\xee\x03\xa3\xf7\ +\x2d\xc0\x68\xdd\xe4\x04\x8c\x75\x94\xc4\x58\x88\x88\x9f\xda\xaf\ +\x1a\xe6\x5b\x40\xa6\xb9\x33\xb0\x6a\xd4\x56\x2c\xed\xc3\x50\xcf\ +\xa8\x04\x7a\x5c\xa6\x15\x97\xf2\xf2\x3a\xa4\xdd\x73\xa0\x0c\x7b\ +\x5c\x28\x6f\xbb\x1a\xa2\xe9\x33\xc0\x54\x58\x41\x91\xd0\x32\x9a\ +\xf6\x02\x42\x27\x17\x94\xf4\x1e\x73\x6f\x27\x12\xbc\x42\x50\xd1\ +\x7f\x71\xbf\x9d\x08\xb0\x84\x86\x76\x55\x0c\x0a\x05\xe8\xcc\x30\ +\xf5\x14\xf7\x06\xa5\x02\x50\x15\xe1\xbd\x27\xfa\xf3\x52\x86\x40\ +\x81\x62\x1b\x5f\xc1\x3c\x09\xa2\xb6\x1f\xa6\x10\xd4\x39\x78\xcd\ +\xa0\x72\x79\xf0\x57\xf5\x31\x81\xf6\x97\xf5\x87\x02\xea\x79\x45\ +\x39\x66\x1f\x48\x4c\x84\x60\x70\x78\xb6\xd9\x5f\x5e\x53\x9e\x5b\ +\xc8\xf6\x20\x0e\x34\xb3\xec\x08\x44\x0f\xbc\xbd\xca\x4d\x50\x9a\ +\x01\x06\xaa\xff\xd6\xc0\xcf\x9c\x9b\x63\x2d\x91\xba\xc0\xbd\x47\ +\x9d\xf7\x7e\x0b\x60\xe2\x81\x01\x95\xb5\x80\xf6\x24\xd4\x91\x27\ +\x16\xa8\x0d\x2a\xc1\x53\xb9\x7c\xcc\xf8\xb6\x4c\xd4\x2e\xd3\x44\ +\xf5\x7f\x4b\xa9\x9c\x07\xb6\x61\xbd\x47\xee\xd6\xff\x88\x4b\xa8\ +\x56\x8f\x3b\x6c\xe3\xde\xe0\x2f\xbd\xbe\x70\x08\xc9\x20\xb0\xe9\ +\xf1\x65\x90\x24\x15\x20\xf1\x8b\x20\xf9\xe7\x77\x3d\x9b\x4f\xaa\ +\x1c\xd0\x73\x3d\x76\x8f\xeb\xbd\xcc\xf1\x06\x26\x5a\x2c\xea\x0a\ +\xe6\x85\x26\x62\x5a\x08\x45\xbf\x66\xd0\x04\xaf\xd2\x17\x04\x4d\ +\xe2\x42\x24\x24\xbd\x58\x68\x7b\x26\x6a\xf3\xaa\x92\xb2\x8f\x06\ +\xaa\x5c\xaa\x25\xeb\x39\xf8\x43\x51\xd3\xd3\x9a\x42\x83\xf7\x78\ +\xd8\xf4\x04\x66\x0a\x00\x35\xb5\x15\x33\xc1\x98\xdb\xaf\x16\xb4\ +\xad\x09\xbe\x65\x2b\x3e\x52\xcd\xd8\x1f\xb0\xee\xab\x66\x46\xc5\ +\x19\x7f\xf7\xdd\xb5\xef\x0f\x76\xee\x10\x59\xa1\x66\xf0\x34\x98\ +\xcc\x53\x4c\x61\x08\xb6\x75\xf8\x15\x50\x0c\xc9\x2a\xfa\xda\xb7\ +\x71\xe5\x9d\x77\xee\xf6\x51\xd8\xfe\x90\xd0\x79\x96\xed\xdc\x11\ +\xd4\x71\x5a\x41\x29\xf5\xa3\x73\xff\xd1\x64\xdc\xd7\x64\x28\x2d\ +\x5e\xb1\xc9\x60\x4d\x03\x6f\x7f\xc7\x20\xb6\xbf\x20\xc7\x12\xc7\ +\x76\xea\xaa\xc9\x38\x6a\x0a\xbd\x39\x6b\x4a\x9f\xfe\x28\x71\x70\ +\xd3\xa6\x1c\x9b\x7f\x3e\xd6\xcd\xf3\x91\x6e\xde\x7b\x42\x37\xcf\ +\x1e\xea\xe6\xbf\x45\xfb\xf0\xea\x51\x58\xb2\x8b\xa2\xb0\x14\xdf\ +\x5f\x14\x46\xbd\x2a\xf3\x2b\x3f\xa1\x42\xa3\x4b\x30\xd3\xbd\x4a\ +\xa9\x7a\x42\xe5\x50\xdc\x42\x10\x17\x5f\x29\x10\xff\x29\x2a\x44\ +\xdb\xa6\x3f\x5e\x1c\x5e\x58\x1a\xde\xcc\x96\xef\xaf\x6e\xec\x8f\ +\x25\xef\xaf\xfe\x03\xc5\x8d\xf3\xce\ +\x00\x00\x08\xf2\ +\x00\ +\x00\x32\x55\x78\x9c\xe5\x5a\x4b\x8f\xdb\x38\x12\xbe\xf7\xaf\xe0\ +\xba\x2f\x09\xd6\x92\xf9\xd0\x83\x52\xbb\x7b\x0e\x13\x0c\x32\xc0\ +\xe4\xb2\x33\x3b\x0b\xec\x25\x90\x25\xda\xd6\x46\x96\xbc\x14\xdd\ +\xb6\xf3\xeb\xa7\x48\xbd\x65\x3b\xe8\x74\x67\x83\x78\x5b\x41\x60\ +\xa9\xaa\xf8\xfa\xf8\x55\xb1\xc8\xe6\xfc\xa7\xc3\x26\x43\x8f\x42\ +\x96\x69\x91\xdf\x4f\x88\x8d\x27\x48\xe4\x71\x91\xa4\xf9\xea\x7e\ +\xf2\xcf\x3f\x7e\xb1\xf8\x04\x95\x2a\xca\x93\x28\x2b\x72\x71\x3f\ +\xc9\x8b\xc9\x4f\x0f\x37\xf3\xbf\x59\x16\xfa\x59\x8a\x48\x89\x04\ +\xed\x53\xb5\x46\xbf\xe6\x9f\xca\x38\xda\x0a\xf4\x66\xad\xd4\x36\ +\x9c\xcd\xf6\xfb\xbd\x9d\xd6\x42\xbb\x90\xab\xd9\x5b\x64\x59\x0f\ +\x37\x37\xf3\xf2\x71\x75\x83\x10\x82\x76\xf3\x32\x4c\xe2\xfb\x49\ +\x5d\x60\xbb\x93\x99\x31\x4c\xe2\x99\xc8\xc4\x46\xe4\xaa\x9c\x11\ +\x9b\xcc\x26\x9d\x79\xdc\x99\xc7\xba\xf5\xf4\x51\xc4\xc5\x66\x53\ +\xe4\xa5\x29\x99\x97\xb7\x3d\x63\x99\x2c\x5b\x6b\xdd\x9b\x3d\x33\ +\x46\x24\x08\x82\x19\xa6\x33\x4a\x2d\xb0\xb0\xca\x63\xae\xa2\x83\ +\x35\x2c\x0a\x7d\x3c\x57\x94\x62\x8c\x67\xa0\xeb\x2c\x9f\x66\x15\ +\x96\x00\xe8\x16\xfe\xb7\xe6\x8d\xc0\x2e\x8b\x9d\x8c\xc5\x12\xca\ +\x09\x3b\x17\x6a\xf6\xee\x8f\x77\xad\xd2\xc2\x76\xa2\x92\x5e\x35\ +\x0d\x9e\x83\x56\x07\x20\xe7\xd1\x46\x94\xdb\x28\x16\xe5\xac\x91\ +\x9b\xf2\xfb\x34\x51\xeb\xfb\x09\x73\x6c\xc2\xe0\x71\x8d\x70\x2d\ +\xd2\xd5\x5a\x8d\xa5\x69\x72\x3f\x81\xde\xd3\x80\x57\xdf\x3d\x72\ +\x90\xca\xa0\xae\x38\x6c\x35\xd8\x0e\xa8\x4d\x90\x24\x2e\xf3\x2b\ +\x9b\x66\x08\x61\x52\xc4\xba\x4f\x50\xa5\xd8\xa4\xd1\x4e\x15\x1b\ +\x98\xb5\x38\xce\xa2\xb2\x4c\x97\x69\x0c\x1f\x45\xbe\xcd\x76\xab\ +\x34\xff\x08\x95\x2a\x25\xe4\x47\x29\x4a\xa1\x3e\x6e\x8b\xec\xb8\ +\x2a\x72\xbb\x01\xb2\x6d\x55\x1c\xb6\x85\x54\xd6\x21\xd9\x02\x9c\ +\x9e\x7f\x56\x79\x6c\x94\x0f\xa0\x9d\x27\x62\x59\x6a\xab\x6a\x6c\ +\xfa\x0b\x06\xe7\x4f\xd0\xcc\x68\xdb\xae\xea\x7e\x26\x8f\xa9\xd8\ +\x77\xb6\x8b\xa8\xac\xf0\x43\x68\x1b\xad\x80\x6b\x59\x21\xef\x27\ +\xb7\x4b\xf3\xd4\x8a\x45\x21\x13\x21\x1b\x95\x67\x9e\x81\xaa\x80\ +\xf9\x48\xd5\xb1\xf2\xae\xba\xee\xa6\xbf\xba\xd6\x56\x8f\xcf\xeb\ +\xcb\x75\x94\x14\xfb\xfb\x09\x1d\x2b\x3f\x17\xc5\x46\xd7\x1a\xf8\ +\x81\x4b\xb0\x3b\x56\xc7\x87\xfb\x89\xc5\x88\x67\xd3\x80\x38\xa7\ +\x5a\x68\xd0\x0d\x6c\xee\xbb\xbe\x4b\x4e\x94\x3b\x29\xc1\xff\xac\ +\x2c\x3a\x0a\x18\x95\xf9\x69\x8c\xca\x75\xb1\x5f\x49\x8d\x8e\x92\ +\x3b\x31\x2e\xa9\x35\xd6\x62\x51\x1c\xce\xab\x81\x0e\x3b\xed\xd9\ +\xd6\x2e\x4f\x15\x78\xcf\xf6\xd0\xaf\x75\x97\x26\xa2\x3c\x5f\x70\ +\x9f\xe6\x00\x82\x55\xf3\x98\xb0\x16\xe3\xb1\x45\x43\x6a\x1f\xf3\ +\x0b\x16\xd0\xb5\x13\x9c\x6b\xd5\xf1\xb2\x6a\x13\x1d\xd2\x4d\xfa\ +\x59\xc0\xb8\x4f\xe0\x2a\xf3\x68\x6b\xad\xb2\x62\x11\x65\x75\xef\ +\x1f\x8c\xc5\x7c\x00\x4b\x55\x08\x21\x75\xd4\x1e\x7c\x38\x6a\xd9\ +\xa4\x11\x6a\x3c\xb5\x80\xf9\x9e\xdb\x0a\x0b\x99\x82\x63\xf4\xfa\ +\xdb\x88\x8e\x7d\x91\xf6\x77\x08\xd7\x07\x43\x30\x43\x3f\x7f\xac\ +\x3b\xf6\x75\x35\xef\x67\xa7\xc4\x37\xf2\x8d\x50\x51\x12\xa9\xa8\ +\xf3\x82\x46\x42\x83\x00\x37\x23\x83\xd0\x19\xfe\xe3\xdd\x2f\x0f\ +\x75\x43\xf3\x38\x0e\xff\x55\xc8\x4f\x4d\xbb\x08\x69\x83\x68\x51\ +\xec\x60\x2a\x26\x0f\xad\x78\x9e\xc4\x21\x04\x3b\x08\x02\x0f\xe9\ +\x06\xb8\xad\xe3\xe4\xdf\x21\xb8\xcd\x67\x9d\x62\x60\xac\xc1\xea\ +\x2a\xad\xaa\x85\x00\x61\xa2\xe6\xd9\xa5\x23\x89\x37\xa9\x2e\x34\ +\xfb\x5d\xa5\x59\xf6\xab\x6e\xa4\x1e\x71\xaf\xd2\x54\x65\xa2\x13\ +\xce\x67\x75\xef\xeb\xb1\xcd\x7a\x83\x9b\xcf\x9a\xd1\x9b\xaf\x55\ +\x87\xca\xc0\x29\xda\x89\xce\xa2\x85\x00\x12\xfc\xa6\x95\xe8\x44\ +\xbb\x92\xc5\x6e\xbb\x29\x12\x51\x17\x6f\xd0\x5c\x0d\x68\xc0\xb0\ +\xcb\xda\x19\x54\x32\xca\x4b\x8d\x0c\xcc\x43\xa4\x64\x7a\x78\x83\ +\x6d\xee\x11\xf3\x4c\xb1\xfe\xd7\x7d\x42\x28\xe0\x2e\xe1\x2e\x9d\ +\x52\xdb\x77\xcd\xf3\xb6\x05\x7f\x2e\x45\xac\x3a\x28\xcf\xd5\xeb\ +\xbb\x3c\x08\xb8\x47\xa1\x4e\x0f\x22\x4a\x40\x29\x9b\xc2\x22\xe4\ +\xfb\x3e\xc3\x4c\x37\x67\x7b\x10\x4b\xa8\x47\xb9\x6e\xf7\xed\xa4\ +\x37\xdb\x15\xc3\x5c\xc6\x3c\x16\xf4\xe5\xc0\x4a\x6a\x3b\x8e\xe7\ +\x11\x9f\xf4\xe4\x60\xae\x2b\x0e\x30\xc5\x1e\xf6\x7b\x0a\x6d\xef\ +\xd9\x9e\xc7\x3c\xee\xf6\xc4\x8d\x57\x73\x9b\xbb\x01\x76\xb9\xd3\ +\xd3\x35\x31\xc1\xb1\x3d\xee\x73\xaf\x5f\x4c\xc3\xa9\x87\x0d\xcc\ +\x0d\x2c\x6e\xb1\x9e\xaa\x54\xc7\x0c\xa6\x61\x09\x24\x09\x6f\x45\ +\x10\x2d\x88\x77\xa7\x3f\xac\x3a\x1c\x87\xa4\xfa\x94\xbb\x0c\x96\ +\x95\x47\x91\x17\x49\x72\x57\x2a\x59\x7c\x12\xe1\x2d\xe1\x89\xb7\ +\x5c\xd6\x9f\x55\x50\x0a\x71\xf3\x09\xfc\x13\x32\x83\x60\xa1\x42\ +\xa7\x91\x25\x11\x44\x71\x29\xa3\x63\x98\x43\x1a\xd5\x48\xdb\xa6\ +\x7a\x0c\x7d\xc2\x34\x05\xd4\x21\xae\x17\xf8\x30\x1f\x8c\x53\x4c\ +\x68\xe0\x9a\x69\xd2\x13\x46\x38\xcc\x0d\xbc\x3a\xc0\x04\xe6\x9c\ +\x9f\x26\x9f\xbb\x2e\xe5\x7c\x34\x4d\x40\x1e\x8a\x41\x1e\x8c\xa6\ +\x29\xb0\x03\xcc\x58\xe0\x8c\x66\x89\xb8\xb6\xc3\x59\xc0\xcf\x4c\ +\x12\xa8\x30\xf1\x7c\x97\x9d\x99\x24\x62\xbb\xd0\x5d\x4e\x2e\x4f\ +\x92\x7f\x85\xb3\x24\xcd\xea\xed\x62\x9f\x01\xcd\xc7\xfc\x07\x5e\ +\x92\xc0\x73\x19\x1d\x02\x4b\x7d\xdb\xd7\x59\x97\x33\xc4\xd5\xb5\ +\x19\xeb\x92\xb1\x21\xb0\x8e\x4d\x4d\x0c\x0f\x4e\x81\x3d\x57\xdb\ +\x18\x58\x8b\xbf\x0e\x64\xf1\x77\x43\xf4\x3a\xf1\x64\x36\xc7\x0e\ +\x84\x4a\x77\x04\x27\xb3\x5d\x97\xb9\x7e\xe0\x7d\x11\x4e\x5a\x6d\ +\x16\x06\xb8\xb4\x3b\x09\x7a\x06\x47\x62\x9f\xd8\x0f\x71\xbc\x06\ +\x14\xb7\x91\x5a\xf7\xba\xd9\xa6\x4e\xb0\x96\xeb\x6c\x03\xb2\xd6\ +\xf8\xc2\xd3\x1f\x76\x9b\x5f\x17\x79\x0e\xc3\x2f\xa4\x05\x99\xf6\ +\x63\xa4\x76\x52\x0c\x71\x1e\x00\xd4\x27\x27\xc8\x3f\x20\x58\x69\ +\x2b\x4a\x4f\x2d\xd8\x94\xa1\x3f\x11\x46\x8c\x22\xc6\xe0\x7d\x8d\ +\xb4\x84\x41\x30\x37\x8f\x8f\x2a\x03\x50\xff\x86\x98\x6b\x43\x66\ +\x00\x39\xbf\xc9\x03\x11\x75\x6c\xb7\xaa\x85\xf0\x7a\x4e\xd1\x23\ +\xb2\x3c\xdb\x69\x6d\x6b\x31\x33\x9f\x95\x2d\xd6\x36\xc4\xb4\x64\ +\x7e\xac\x5e\x5b\x9f\xd1\x06\x51\x53\x8e\xa2\xf7\xba\x3f\x55\x37\ +\xa1\x3a\x0a\x49\xc0\x94\x40\xfe\x50\x35\xfd\x27\x22\x81\x6d\xba\ +\xd4\xd8\x4c\x19\xac\x6b\xba\x50\xdd\x0e\x43\xff\x3e\xa5\x85\xd9\ +\x64\x85\xb7\xd8\x3c\x77\xcb\x02\xf6\x11\x46\x03\xd3\x00\x99\x63\ +\x56\x49\x1e\x23\x99\x46\xb9\x1a\xc8\xf6\x86\x9f\x03\x11\x4c\xb6\ +\x50\xf1\x7a\x28\x83\xfc\x3e\x84\x5c\x38\xdd\x6d\xee\xb2\x34\x17\ +\xf5\x66\x62\x60\xb3\x8c\x36\x69\x76\x0c\x7f\x87\x65\xf9\xce\x6a\ +\x26\xd4\xaa\x8a\x6f\x45\xdc\x6e\x6a\x2b\x0b\x25\x0e\x0a\xac\x12\ +\xd8\xf2\x00\x15\xcd\x57\x94\xa5\xab\x3c\x2c\x55\x24\x55\x25\x48\ +\x60\x5f\x29\xab\x32\x86\x86\x23\xa1\xa5\x7b\x52\x69\x32\xa1\x37\ +\xc8\x56\x9d\xd4\x37\xdd\xda\xc3\x2e\x73\x2c\x33\x75\xb4\xb9\x43\ +\x55\x7a\x2f\x53\x05\x26\x96\xce\x3f\xc3\x4c\x5a\x6a\x71\x97\xa4\ +\x9a\x64\xba\xe5\x4c\xc9\x3b\xbd\xdb\x35\xc3\x2e\xd7\xe9\x52\x85\ +\xcd\x67\xdd\xed\x3c\x5e\x03\xf8\x55\xbf\x93\xb4\xdc\x42\x02\x1b\ +\xa6\xb9\x31\x28\x1e\x85\x5c\x66\xc5\x3e\x7c\x4c\xcb\x74\x91\x89\ +\x3b\xf3\x9b\x66\xda\x8b\x1a\x51\xe5\xd2\xb5\x8b\x3e\xd5\xa5\xfb\ +\x6e\x59\xf9\x33\x50\xd2\x77\x21\xe5\xe1\xec\x6e\x13\xc9\x4f\x42\ +\x56\x36\x22\x8f\xa0\x11\x6b\x11\xc5\x9f\x74\x8e\x9d\x27\x61\x14\ +\xc3\x4e\x73\x97\x45\x4a\x5c\x76\xe3\xaf\xf3\x47\x5d\x96\x05\xd8\ +\x19\x7a\x23\x30\xbe\x0e\x70\xe0\x47\x7e\xb5\xc9\xf2\x51\x8c\xc0\ +\x8d\xa6\xda\x95\x46\xbf\x97\x62\x1d\x07\x46\x73\x3c\x06\xa6\x89\ +\x6c\xcb\x8a\xf1\x03\x24\x88\xcd\x1d\xdf\xa5\x98\xb3\xed\xa1\xd1\ +\xe8\xd9\x80\x01\x85\x8b\x9d\x52\x7d\xd9\x7f\x8a\x34\x0f\x4d\x04\ +\xfc\x8a\x20\xf7\x2c\x74\xbc\x13\x74\xea\x65\x74\x88\x8e\xd5\xc0\ +\x72\xf2\x72\x09\x20\x8c\x3d\x46\x4e\x98\xf3\x25\x80\xda\x85\xca\ +\xf9\x91\x00\x72\x2c\x7a\x99\x40\x1a\x88\xd7\x4b\x1d\x8b\x5c\x26\ +\x4f\x85\xcc\xab\xa6\xcd\x29\x3c\x7a\xcd\xac\xf3\x80\x6e\xa9\x7e\ +\xcd\xfc\x39\x03\x91\xdf\xf8\xd6\x00\xa2\xd7\x4d\x24\x7f\x8c\x92\ +\xd5\x9e\x0e\x4e\x2d\xc8\xc0\x5e\x37\x87\x82\x31\x3a\xcd\x06\x92\ +\x35\xe0\xbc\x6e\xf6\x9c\xe0\x83\xa7\x94\xdb\xfc\x75\x93\xc6\x19\ +\xef\xd1\xf4\xd8\x0d\x2c\x3f\x03\x3e\x7a\xfb\x34\xfc\x79\x0d\x44\ +\x39\x49\x74\xba\xf5\xaa\x5d\xd8\x5f\x37\x6b\x4e\xb2\xe5\x6e\xb9\ +\xea\x23\x74\x8d\xf1\x66\x3e\x5b\xd5\x2f\x7d\xac\xfa\x9d\xec\x6d\ +\xee\xda\x3d\xfd\x85\x2e\x7d\x7d\x87\x9e\x73\xdc\x73\xd3\xcd\xc4\ +\x07\x70\x53\xac\xcf\x4d\xea\x3f\x8d\x77\x67\xd2\xcd\x0c\xd2\xa0\ +\x77\x4e\xf6\x54\x02\x9c\x3f\x37\xea\x30\xbb\x4e\xa8\x5a\x90\xa6\ +\xed\x1b\x7a\x8f\xf0\x39\xc8\xf8\x8f\x03\x99\x3e\xb6\xf2\x30\x75\ +\xf9\xcb\xf8\x3e\x40\xa2\x4b\xa3\xea\xd0\xcf\xf4\x69\x98\x7e\x3d\ +\x79\x39\x41\x87\xf9\x3e\xb5\xf0\x93\xf1\xf9\x26\x9c\x21\xbe\xeb\ +\x10\xd7\xfd\x66\x08\xf4\x73\x25\xb3\xd8\xc5\xe0\x47\x56\x7d\xc8\ +\xee\x5f\x7a\x3f\x85\x82\x3b\x57\x0f\x44\x7b\xd8\xf9\x52\x20\xac\ +\xa7\xfb\xcc\x0f\x0a\x45\x77\xbe\xf1\x52\x28\x82\xab\x87\xc2\xfb\ +\x56\xac\xb8\x7a\x07\x61\xf4\xc5\x18\xb0\x6b\xc7\x80\x78\x2f\xc6\ +\xe0\xe9\x49\xc8\x8f\xb8\x64\x6e\xfa\x4b\x26\xb3\x9d\xe6\x7c\xb8\ +\x3d\xab\x81\x2c\xec\xc2\xfb\x85\x05\xb4\xb7\xeb\xb8\x76\x40\xba\ +\x3f\xcb\xbd\x08\x10\x72\xd5\x80\xf4\x93\x2a\x42\xdb\xa4\xca\xbc\ +\x9e\xbc\x5c\x82\xe0\x7b\x06\x8a\xff\x2d\x27\xfc\xca\x47\x5e\xea\ +\x24\xce\xff\x0d\x20\xfd\x53\xdd\x17\x00\xf2\x8c\xcc\x62\x7c\x69\ +\x8f\x9d\xbd\xb4\x67\x5e\xf5\x9f\x21\xdf\x70\x88\xe5\x6d\x2a\x74\ +\xf1\x5e\x9e\xbe\xa0\xe1\xc0\xe8\x98\x13\xd0\xfe\x4d\xa8\xe3\xf8\ +\x9e\x76\xf5\xe8\x3b\xbe\x9e\x6f\x13\xf3\x07\xf8\x33\x37\x32\xce\ +\xdd\xbe\x78\xc2\xc5\x0c\x86\x49\xff\xd8\x62\x70\xb6\xb0\x5c\x56\ +\x7f\x7e\x7f\xea\xb5\x8c\xea\xb6\xf4\x98\x13\x5e\x45\x15\x3a\xa6\ +\x44\xf9\xdf\x5d\x24\xc5\x97\x49\xf1\xf4\x1d\xab\x96\x16\xcb\x65\ +\x29\x54\x77\x13\xe4\xd9\xf7\x3b\x9e\x7d\x93\xa3\xe2\x19\x1f\x9d\ +\x87\x7d\x40\x96\xe7\xd6\x7f\x12\x9d\x3a\x0e\x84\xb1\xf7\xc8\x72\ +\x2e\xdd\x86\x19\xb8\xd9\x39\x48\x1d\xdb\xd5\x97\xee\x82\xef\x74\ +\x02\x30\x3a\xe7\x31\x3f\x73\x7d\x9d\xf7\xe1\xe6\x2f\x67\xa7\x75\ +\x87\ +\x00\x00\x0e\x79\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x73\x6d\x5f\x61\ +\x64\x64\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\ +\x6f\x6d\x3d\x22\x33\x2e\x39\x35\x39\x30\x32\x30\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x2d\x37\x32\x2e\x39\x38\x31\x36\x37\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x34\ +\x37\x2e\x30\x36\x32\x39\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ +\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ +\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ +\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ +\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ +\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ +\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ +\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ +\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\ +\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x36\x30\x30\ +\x38\x39\x32\x34\x31\x2c\x30\x2e\x37\x39\x39\x33\x32\x39\x39\x31\ +\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x39\x2e\x38\x39\x33\x32\x36\x35\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x36\x31\x36\x38\x33\x38\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x31\x34\ +\x2e\x36\x37\x38\x39\x36\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x31\x2e\x38\x34\x36\x31\x39\x30\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x36\x35\x2e\ +\x33\x38\x38\x31\x30\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x35\x35\x2e\x35\x31\x36\x38\x34\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x33\x37\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\ +\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x36\x65\x36\x65\x36\ +\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\ +\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\ +\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\ +\x34\x30\x33\x30\x37\x30\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\x31\x62\x64\x66\x63\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x36\ +\x39\x35\x32\x36\x35\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x32\x37\x2e\x31\x37\x34\x30\x34\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x33\x35\x2e\x34\x31\x31\x33\x37\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x31\x33\x2e\x36\x37\x32\x34\x38\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x35\x34\x30\x36\ +\x39\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\ +\x33\x2e\x32\x33\x38\x37\x36\x39\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x72\x79\x3d\x22\x35\x2e\x33\x35\x37\x37\x36\x34\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\ +\x2e\x35\x34\x33\x31\x30\x33\x31\x33\x2c\x30\x2e\x38\x33\x39\x36\ +\x36\x36\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\ +\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x74\x65\x78\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x78\ +\x6d\x6c\x3a\x73\x70\x61\x63\x65\x3d\x22\x70\x72\x65\x73\x65\x72\ +\x76\x65\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\ +\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x31\ +\x32\x2e\x38\x30\x30\x30\x30\x30\x31\x39\x70\x78\x3b\x6c\x69\x6e\ +\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x30\x25\x3b\x66\x6f\x6e\x74\ +\x2d\x66\x61\x6d\x69\x6c\x79\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\ +\x69\x66\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\ +\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\ +\x27\x53\x61\x6e\x73\x20\x42\x6f\x6c\x64\x27\x3b\x6c\x65\x74\x74\ +\x65\x72\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\x77\ +\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x30\x70\x78\x3b\ +\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\ +\x31\x2e\x34\x33\x30\x32\x31\x38\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x32\x33\x2e\x34\x38\x31\x39\x39\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x74\x65\x78\x74\x33\ +\x37\x39\x35\x22\x3e\x3c\x74\x73\x70\x61\x6e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x72\x6f\ +\x6c\x65\x3d\x22\x6c\x69\x6e\x65\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x74\x73\x70\x61\x6e\x33\x37\x39\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x31\ +\x2e\x34\x33\x30\x32\x31\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x79\x3d\x22\x32\x33\x2e\x34\x38\x31\x39\x39\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x3a\ +\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\x65\x69\x67\ +\x68\x74\x3a\x62\x6f\x6c\x64\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x72\ +\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\ +\x2d\x73\x69\x7a\x65\x3a\x31\x34\x2e\x36\x36\x36\x36\x36\x36\x39\ +\x38\x70\x78\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\ +\x31\x2e\x32\x35\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ +\x3a\x73\x61\x6e\x73\x2d\x73\x65\x72\x69\x66\x3b\x2d\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\ +\x66\x69\x63\x61\x74\x69\x6f\x6e\x3a\x27\x73\x61\x6e\x73\x2d\x73\ +\x65\x72\x69\x66\x2c\x20\x42\x6f\x6c\x64\x27\x3b\x66\x6f\x6e\x74\ +\x2d\x76\x61\x72\x69\x61\x6e\x74\x2d\x6c\x69\x67\x61\x74\x75\x72\ +\x65\x73\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\ +\x61\x72\x69\x61\x6e\x74\x2d\x63\x61\x70\x73\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\x6e\x74\x2d\ +\x6e\x75\x6d\x65\x72\x69\x63\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\ +\x6f\x6e\x74\x2d\x66\x65\x61\x74\x75\x72\x65\x2d\x73\x65\x74\x74\ +\x69\x6e\x67\x73\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x74\x65\x78\x74\ +\x2d\x61\x6c\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x77\x72\x69\ +\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\ +\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x32\x22\x3e\x4f\x53\x4d\x3c\x2f\x74\x73\x70\x61\ +\x6e\x3e\x3c\x2f\x74\x65\x78\x74\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0b\xb0\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x63\x6b\x73\ +\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x32\ +\x31\x2e\x37\x33\x36\x36\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x32\x34\x2e\x32\ +\x35\x36\x35\x31\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ +\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ +\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ +\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ +\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ +\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ +\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ +\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ +\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ +\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ +\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ +\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x3c\x2f\x64\x63\x3a\x74\ +\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ +\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ +\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ +\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\ +\x23\x62\x66\x61\x64\x61\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ +\x62\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x2e\x31\x33\x33\ +\x33\x33\x34\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\ +\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\ +\x23\x36\x36\x36\x36\x36\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ +\x62\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x30\x2e\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x34\x35\x31\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x33\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x32\x2e\x38\x30\x30\ +\x30\x30\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\ +\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x23\ +\x62\x66\x61\x64\x61\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x62\ +\x66\x62\x66\x62\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x30\x32\x2d\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\ +\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x39\ +\x2e\x33\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x32\x2e\x31\x33\x33\x33\x33\x36\x35\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x66\x69\x6c\x6c\x3a\x23\x36\x36\x36\x36\x36\x36\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x66\x62\x66\x62\x66\x62\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x35\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x34\x35\x31\x39\x2d\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\ +\x35\x2e\x33\x33\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x35\x2e\x33\x33\x33\x33\ +\x33\x33\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\ +\x2e\x33\x33\x33\x33\x33\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x79\x3d\x22\x32\x33\x2e\x34\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0c\xc4\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6c\x75\x73\x2e\ +\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ +\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ +\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ +\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ +\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\ +\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\ +\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\ +\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ +\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ +\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ +\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\ +\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x2e\ +\x34\x32\x37\x36\x31\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x32\x2e\x33\x39\ +\x35\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\ +\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\ +\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\ +\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\ +\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\ +\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\ +\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ +\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\ +\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\ +\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ +\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ +\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ +\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ +\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ +\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ +\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ +\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ +\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ +\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\ +\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ +\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x37\ +\x2e\x30\x30\x33\x36\x30\x39\x36\x36\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ +\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x36\x2e\x39\ +\x34\x34\x39\x37\x35\x2c\x35\x2e\x31\x31\x39\x36\x33\x36\x39\x20\ +\x31\x37\x2e\x31\x38\x38\x33\x35\x38\x2c\x32\x38\x2e\x35\x38\x35\ +\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x37\x38\x32\x2d\x38\x2d\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ +\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ +\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ +\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\x64\x30\x64\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x37\x2e\x30\x30\x33\x36\x30\x39\ +\x36\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ +\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x64\x3d\x22\x4d\x20\x35\x2e\x33\x33\x33\x33\x33\x33\x33\x2c\x31\ +\x36\x2e\x38\x35\x32\x33\x33\x39\x20\x48\x20\x32\x38\x2e\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x37\x38\x32\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ +\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ +\x30\x64\x30\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ +\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\ +\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x38\x36\x31\x32\ +\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ +\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\ +\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\ +\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ +\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ +\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ +\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x36\x2e\x39\ +\x34\x31\x36\x33\x35\x2c\x35\x2e\x36\x35\x33\x30\x33\x33\x36\x20\ +\x30\x2e\x32\x33\x32\x33\x32\x2c\x32\x32\x2e\x33\x39\x38\x37\x39\ +\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x33\x37\x38\x32\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ +\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x05\xc2\ +\x00\ +\x00\x16\xb0\x78\x9c\xed\x58\x59\x8f\xdb\x36\x10\x7e\xdf\x5f\xa1\ +\x6a\x51\xf4\x82\x6e\xcb\xb6\xb4\xb6\x03\xb4\x41\x80\x00\x7d\x6a\ +\x52\xf4\x31\xa0\x45\xca\x66\x57\x22\x55\x92\xf2\x91\x5f\xdf\x21\ +\x75\xdb\xde\x74\xdb\x34\x2d\x10\x44\xc6\x42\xcb\x39\xc8\x99\x6f\ +\x0e\x92\x5a\xbd\x38\x95\x85\x75\x20\x42\x52\xce\xd6\x76\xe0\xfa\ +\xb6\x45\x58\xc6\x31\x65\xbb\xb5\xfd\xeb\xdb\x57\xce\xd2\xb6\xa4\ +\x42\x0c\xa3\x82\x33\xb2\xb6\x19\xb7\x5f\x6c\xee\x56\x5f\x39\x8e\ +\xf5\x93\x20\x48\x11\x6c\x1d\xa9\xda\x5b\xaf\xd9\xa3\xcc\x50\x45\ +\xac\x6f\xf7\x4a\x55\xa9\xe7\x1d\x8f\x47\x97\xb6\x44\x97\x8b\x9d\ +\xf7\x9d\xe5\x38\x9b\xbb\xbb\x95\x3c\xec\xee\x2c\xcb\x82\x75\x99\ +\x4c\x71\xb6\xb6\x5b\x85\xaa\x16\x85\x11\xc4\x99\x47\x0a\x52\x12\ +\xa6\xa4\x17\xb8\x81\x67\x0f\xe2\xd9\x20\x9e\xe9\xd5\xe9\x81\x64\ +\xbc\x2c\x39\x93\x46\x93\xc9\xfb\x91\xb0\xc0\x79\x2f\xad\xad\x39\ +\x46\x46\x28\x48\x92\xc4\xf3\x43\x2f\x0c\x1d\x90\x70\xe4\x99\x29\ +\x74\x72\xa6\xaa\x60\xe3\x2d\xd5\xd0\xf7\x7d\x0f\x78\x83\xe4\xf3\ +\xa4\x52\x09\x80\x56\xf0\xd7\x8b\x77\x04\x57\xf2\x5a\x64\x24\x07\ +\x3d\xe2\x32\xa2\xbc\x97\x6f\x5f\xf6\x4c\xc7\x77\xb1\xc2\xa3\x69\ +\x3a\x3c\x27\xab\x4e\x40\x66\xa8\x24\xb2\x42\x19\x91\x5e\x47\x37\ +\xfa\x47\x8a\xd5\x7e\x6d\x47\x33\x37\x88\xe0\x89\x0d\x71\x4f\xe8\ +\x6e\xaf\x2e\xa9\x14\xaf\x6d\xb0\x3e\x4c\x96\xcd\x78\x94\x1c\x41\ +\x23\xd0\x4e\x9c\xf6\x1c\xdf\x4d\x42\x37\xb0\x44\x10\x47\x8b\x46\ +\xa6\x73\x21\xc5\x3c\xd3\x36\xc1\x94\xa4\xa4\xa8\x56\xbc\x84\xa8\ +\x65\x59\x81\xa4\xa4\x39\xcd\x60\xc0\x59\x55\xd4\x3b\xca\xde\x6d\ +\x21\xcb\x32\x54\x64\xef\x14\xe7\x85\xdb\x01\xd8\xaf\x46\x4e\x15\ +\x17\xca\x39\xe1\x0a\x60\x9c\x2f\x6e\x32\xcf\x1d\x73\x03\xdc\x15\ +\x26\xb9\xd4\x52\x8d\x4f\x7a\x04\x4e\x2d\x6c\xcb\x33\xdc\xde\x44\ +\x6d\x1f\x3e\x50\x72\x1c\x64\xb7\x48\x36\xb8\x59\x56\x85\x76\x90\ +\x63\x05\x17\x6b\xfb\x3e\x37\x4f\xcb\xd8\x72\x81\x89\xe8\x58\x73\ +\xf3\x4c\x58\x1c\xe2\x40\xd5\xb9\xa9\xaa\x76\xee\xce\x5e\x3d\x6b\ +\xcf\xf7\x6f\xf3\xe5\x1e\x61\x7e\x5c\xdb\xe1\x25\xf3\x3d\xe7\xa5\ +\x9e\x35\x4a\x92\x45\x18\x47\x97\xec\xec\xb4\xb6\x9d\x70\xb1\x70\ +\x83\x65\x32\xbf\x52\xce\x60\xc1\x38\x72\x63\x3f\x48\x82\xd9\x15\ +\xb3\x16\x02\xea\xce\x29\xd0\x99\x80\x57\xe6\x15\xb4\x42\x72\xcf\ +\x8f\x3b\xa1\xd1\x51\xa2\x26\x97\x9a\x9a\xe3\x6c\xb7\xfc\x74\x9b\ +\x0d\x69\x50\xeb\x8a\x76\x6a\x46\x15\x54\x4d\x75\x1a\xcf\x5a\x53\ +\x4c\xe4\x6d\x45\xc9\x50\xe5\xec\x0a\xbe\x45\xc5\x6d\x81\x23\x65\ +\x80\x92\xd3\x26\x78\x10\xf5\x41\xb8\x94\xe8\xb2\x7d\xe1\x2f\x9f\ +\x90\x00\xdb\xaf\x02\xd1\xb2\xce\x4f\xb3\x4a\x74\xa2\x25\x7d\x4f\ +\x00\x98\xe0\x0a\x15\xed\xd9\x18\x96\x8d\x11\x58\x4d\x60\x6b\x74\ +\x2c\x4b\x9d\x75\x65\x9f\xce\x9a\x66\x77\x44\x8d\xb7\x26\x84\x10\ +\xeb\x9e\xc8\x05\x85\x82\x19\x99\xdb\x91\xce\x63\x92\xee\x03\xd0\ +\xc6\x4f\x26\x01\x4d\x7a\x2e\x2e\x79\xe7\x31\xaf\xad\x0b\xef\xba\ +\x30\x0c\xbd\x24\x0a\x61\xa4\xd0\x50\x25\x1d\x05\x6c\xf3\x3b\xcf\ +\xa0\xa5\xa6\xbf\xbc\x7c\xb5\x69\x17\x5a\x65\x59\xfa\x1b\x17\x8f\ +\xdd\xba\x96\xa5\x05\xd0\x96\xd7\x10\x09\x7b\xd3\x93\x57\x38\x4b\ +\xa1\x09\x42\x73\xd8\xd0\x12\x72\x5f\xf7\xcf\x1f\xa0\xe9\xad\xbc\ +\x81\x31\x11\xd6\x60\x0d\x93\x36\xd3\x0a\xd2\x74\xd3\x9b\x5b\x0a\ +\xce\x4a\xaa\x95\xbc\x37\x8a\x16\xc5\x6b\xbd\x48\xeb\xf1\x68\x52\ +\xaa\x0a\x32\x10\x57\x5e\x6b\x7d\xeb\x9b\x37\x72\x6e\xe5\x75\xde\ +\x9b\xd1\x6e\x40\x65\x52\x34\x7d\xa0\x0b\xb4\x25\x90\xc1\x3f\x6b\ +\xa6\x75\x9d\x27\x82\xd7\x55\xc9\x31\x69\xd5\x7b\x34\x49\xa6\xfa\ +\x90\xa9\x73\x01\x7c\xd3\x70\xd2\x7b\xdf\x3c\x0f\x98\xca\x0a\x34\ +\x60\x67\x28\x28\x23\x0f\x1c\x5a\x72\x5e\xf0\x63\x7a\xa0\x92\x6e\ +\x0b\xf2\x60\xde\xb4\x00\xcf\x7b\x52\x0e\xee\x1b\xfd\x3c\x0c\xcd\ +\xc0\x69\x1b\x51\x1a\x34\x43\x51\x17\x24\x65\x9c\xbd\x87\x16\xf6\ +\x20\x95\xe0\x8f\x24\xbd\x8f\x43\xfd\x6b\x87\x4d\xb5\xa5\x81\x1b\ +\x26\x10\xfb\x38\x8a\x3a\xba\x36\x02\x1c\x4a\xb7\xb5\x52\x63\xda\ +\xef\x9c\xb2\x14\xf0\x27\xa2\xa3\x9a\x41\x01\x85\xa3\xd2\x59\x47\ +\xc3\x08\x5a\x9e\x10\xe0\x0e\xac\x4e\xc6\x54\x9e\xe7\x92\xa8\xd4\ +\xef\x68\x83\xc5\x25\x12\x8f\x44\x34\x0a\x84\x21\x70\xd0\xd9\xa2\ +\xec\x51\x03\xca\x70\x8a\x32\x68\x3b\x75\x01\xc7\x94\x49\x41\x69\ +\x58\x23\x3f\x98\xf7\xc4\x6e\x7b\x0c\x7b\xca\xed\xbd\x51\x3f\x37\ +\xeb\xe9\x7c\x8b\x28\x80\x3a\x73\xe7\x21\x68\x07\xc1\x60\xc0\x87\ +\x36\xb4\x5b\x02\xfd\xa6\xd6\x65\xe6\xad\xb4\x68\xa2\x8a\x23\xfd\ +\x7b\x3a\xaa\xe4\x40\x18\xc7\xb8\x8f\x6a\x2b\x3f\x89\x6a\xe8\xce\ +\x02\x3f\x9a\x47\xb3\xd9\x65\x54\xe5\x1f\x35\x12\xe4\x3f\x89\xeb\ +\x75\xb8\x16\xcb\xab\x70\x85\x91\x3b\x9b\x22\xde\x45\x2d\xf0\xdd\ +\x8b\x58\x40\xd4\x62\x37\x8a\xa6\xa1\x84\xf8\x44\x6e\x78\x11\xaf\ +\x28\x9a\x45\x09\xe4\xc6\x87\xd0\x9e\x62\x9b\xde\x27\xf1\x92\x90\ +\xc5\xf3\x71\x6f\xe5\x27\xb8\xc3\x21\x2a\x9e\xf9\x71\xbc\xb8\xaa\ +\xa6\xff\x15\xf7\x65\x74\x85\xfb\x35\x90\x1d\xee\x61\x53\x2c\xd1\ +\x6c\x8c\xfb\xdc\x9d\x99\x66\x15\x8c\x71\x0f\x03\xf7\x42\x52\x98\ +\xcd\xeb\xef\xa0\xde\xf6\xc0\xcf\x14\x75\xe7\x63\x71\x0f\x66\x6e\ +\x62\xa8\xcf\xc1\xfd\xaa\xf9\x28\x81\x98\xd4\x3b\xaf\x93\xc1\xb9\ +\x8d\x08\xc7\xf4\xbd\xf9\x33\x04\x61\x3e\xe7\xf2\x54\xf1\xa5\x8c\ +\x20\xa0\xf1\x47\x06\xf4\xba\xdf\x7d\x29\xa4\xe7\xe0\xbe\xf8\x24\ +\x0d\x6c\xee\x4e\xee\x7c\xff\x04\xf7\x65\x8c\xfc\x3c\xff\x6c\x71\ +\x4f\x3e\x49\x03\xfb\x17\x70\xff\xcc\xf3\xdd\xff\x24\x7d\xe6\xaf\ +\x70\x57\xe4\xd4\xe3\x0e\x37\xb7\xd4\x7c\x86\x82\x9b\x3e\xdc\xca\ +\x88\x38\x0c\x07\xf0\xee\xc0\xca\x99\x72\xcc\xff\xe0\x2e\xdc\xef\ +\x8a\x07\x43\x39\x1a\xc3\x26\x24\x09\x97\xeb\x34\x08\xdd\x65\x53\ +\x84\x49\x75\x7a\xd0\xa0\xb6\x17\xfa\xd4\xff\xba\x11\xcb\x51\x49\ +\x8b\x73\x2a\x61\x37\x72\x60\x45\x9a\x3f\x14\x44\xe9\xfd\xa8\xbd\ +\xeb\xa6\x3e\x28\x1e\xb9\xc0\x13\xc2\x87\x12\xa2\x0d\xff\x38\x1a\ +\xdd\xc5\xa7\xdd\xdd\xc2\x31\x6c\x8b\x06\xb5\x8b\x5b\x41\xe0\x2e\ +\xa6\x00\x9b\x2f\x28\x80\x15\x1c\x32\xe1\xd6\xbc\x52\x60\x0d\x1b\ +\x6e\xb2\xfd\xe5\x5b\x70\x8d\x92\x76\xd4\x1e\xb8\x46\x57\x2b\x80\ +\x72\x38\xa2\xdf\x5c\xfd\x89\xf5\xa7\x11\x68\xf1\xde\xf2\x02\x8f\ +\xd1\x6e\xcf\xcf\xf3\x64\x79\x81\x36\xdc\xf9\xe2\xa7\xf0\x76\xba\ +\x33\x81\xd3\xcc\x54\x91\xac\xff\xc6\x97\x7e\xf3\x06\x04\xad\x1f\ +\x61\x9d\x6f\x9e\x04\x73\x13\x7c\x1f\xae\x3c\xe3\xe0\x06\xde\x00\ +\x52\x73\xd5\xde\x6d\xee\x56\xfa\x8b\xc0\xe6\xee\x4f\xda\x83\xd1\ +\x26\ +\x00\x00\x12\xc2\ +\x00\ +\x00\xe7\x3e\x78\x9c\xd5\x5d\x5b\x73\xdb\xba\x11\x7e\xcf\xaf\x60\ +\x95\x97\x64\x6a\x52\xc4\x8d\x20\x5c\x3b\x9d\x69\xcf\x9c\xb6\x33\ +\x27\x2f\xbd\x9c\xce\x9c\x37\x5a\xa2\x6d\xcd\x91\x25\x8f\x24\xc7\ +\x76\x7e\x7d\x01\x12\x04\x01\x12\x50\xe4\x98\x48\xbd\xf6\x64\x62\ +\x2e\xb0\xb8\x7c\x58\x2c\x76\x17\x00\x79\xf1\xe7\xa7\xbb\x75\xf2\ +\xa5\xde\xed\x57\xdb\xcd\xe5\x0c\x65\xf9\x2c\xa9\x37\x8b\xed\x72\ +\xb5\xb9\xb9\x9c\xfd\xe7\xdf\x3f\xa7\xe5\x2c\xd9\x1f\xaa\xcd\xb2\ +\x5a\x6f\x37\xf5\xe5\x6c\xb3\x9d\xfd\xf9\xd3\xbb\x8b\x3f\xa4\x69\ +\xf2\xd7\x5d\x5d\x1d\xea\x65\xf2\xb8\x3a\xdc\x26\xff\xd8\xfc\xbe\ +\x5f\x54\xf7\x75\xf2\xe1\xf6\x70\xb8\x3f\x9f\xcf\x1f\x1f\x1f\xb3\ +\x95\x26\x66\xdb\xdd\xcd\xfc\x63\x92\xa6\x9f\xde\xbd\xbb\xd8\x7f\ +\xb9\x79\x97\x24\x89\xac\x77\xb3\x3f\x5f\x2e\x2e\x67\x9a\xe1\xfe\ +\x61\xb7\x6e\x32\x2e\x17\xf3\x7a\x5d\xdf\xd5\x9b\xc3\x7e\x8e\x32\ +\x34\x9f\xf5\xd9\x17\x7d\xf6\x85\xaa\x7d\xf5\xa5\x5e\x6c\xef\xee\ +\xb6\x9b\x7d\xc3\xb9\xd9\xbf\xb7\x32\xef\x96\xd7\x26\xb7\x6a\xcd\ +\x23\x69\x32\x21\x21\xc4\x3c\xc7\x73\x8c\x53\x99\x23\xdd\x3f\x6f\ +\x0e\xd5\x53\xea\xb2\xca\x36\xfa\x58\x71\x9e\xe7\x73\x99\xd6\xe7\ +\x3c\x2d\xd7\xf9\x5e\x02\x7a\x2f\xff\x99\xec\x1d\x21\xdb\x6f\x1f\ +\x76\x8b\xfa\x5a\xf2\xd5\xd9\xa6\x3e\xcc\x7f\xfa\xf7\x4f\x26\x31\ +\xcd\xb3\xe5\x61\x69\x15\xd3\xe1\xe9\xd4\xea\x80\xbc\xa9\xee\xea\ +\xfd\x7d\xb5\xa8\xf7\xf3\x8e\xde\xf0\x3f\xae\x96\x87\xdb\xcb\x19\ +\xa1\x19\x22\xf2\x87\x35\xc4\xdb\x7a\x75\x73\x7b\x18\x52\x57\xcb\ +\xcb\x99\x6c\x3d\x16\x65\xfb\x6c\x09\x07\x6a\x33\xe8\x82\xcf\x4d\ +\x4a\x9e\x09\x9c\xa1\x64\x87\x18\xe1\x6d\x9e\xae\x0b\xe7\xcb\xed\ +\x42\xb5\x49\x16\x59\xdf\xad\xaa\x87\xc3\xf6\x4e\x8e\xda\x62\xb1\ +\xae\xf6\xfb\xd5\xf5\x6a\x21\x1f\xb6\x9b\xfb\xf5\xc3\xcd\x6a\x93\ +\x75\x90\x99\xf2\xeb\xa7\xfb\xed\xee\x90\x3e\x2d\xef\x25\x70\x8c\ +\xe6\xde\xd4\x67\x93\xfa\x49\x26\x5f\x2c\xeb\xeb\xbd\xca\xd6\xf6\ +\x43\x3d\xc9\x8e\xf0\x26\x4d\xa6\x5e\xaf\xd6\x87\x7a\xd7\xa6\x5b\ +\x45\x2d\xb6\xeb\x75\xbd\x90\x48\x54\xeb\xc7\xea\x79\x3f\xeb\x32\ +\xec\x0f\xcf\x6b\xd9\x74\x99\xbc\xdd\xa5\xab\x8d\x64\xbd\xdf\xae\ +\x9b\x26\xa7\x6d\x49\x72\x64\xff\xf9\xb7\xbf\x98\xfc\xaa\xca\x36\ +\xa1\x60\x25\x32\xe4\xa7\xcb\x99\x1c\xca\x9c\x14\x86\xa2\x87\x43\ +\x4e\x37\x8e\x0d\xf1\x79\x94\xad\x1b\xa0\x36\xdf\x27\x4d\xbe\xb8\ +\xae\xff\x56\x3d\x48\xfc\xaa\xcd\x5f\xd6\x0f\xa6\x37\x27\xf4\x47\ +\xf5\x68\xf9\x53\xfd\x65\xd5\xf4\x41\x8d\x1b\x62\xa2\xf9\xb1\xb2\ +\x34\x9d\x70\x6a\x90\x9d\x21\xb3\x64\xae\x31\x9c\xb7\x3d\xfc\xe1\ +\x88\x16\xf9\x08\x51\x2c\x05\x2e\xcf\x29\xf6\xe0\x4a\x49\x6e\x33\ +\x68\x6c\x71\x21\x10\x66\x05\xf2\x21\xcc\x48\x89\x19\x8a\x82\x32\ +\x2e\x79\x5e\x70\x42\x8f\xa3\x5c\xe4\x7e\x94\x2f\xe6\x4a\x8c\x9b\ +\xbf\xcc\xb4\x52\x73\x6a\xf9\x65\x55\x3f\xf6\xb2\x7e\x55\xed\x6b\ +\x5d\xc1\x7d\x75\x53\x37\x10\x5f\xce\xde\x5f\x37\x3f\x3a\xe1\x6a\ +\xbb\x5b\xd6\xbb\x2e\xa9\x68\x7e\x9c\xa4\xad\xd4\x1d\xab\xc3\x73\ +\xbb\x12\xbc\x73\xfb\xab\x4a\x35\xe9\xb9\x3f\x7d\x7f\x5b\x2d\xb7\ +\x8f\x97\x33\x3c\x4c\xfc\xba\xdd\xde\x5d\xce\x78\x26\x50\x99\x53\ +\xc4\x87\xc9\x0b\x39\xa2\x65\x56\x10\x21\x0a\x24\x46\x89\xb2\x3e\ +\x8c\xb2\x12\x97\x0c\x15\xa3\xc4\x87\xdd\x4e\x2e\x15\xe9\xba\x7a\ +\xae\x65\xa7\x9a\xff\xba\xf1\xdd\xdf\x6e\x1f\x6f\x76\x0a\x9c\xc3\ +\xee\xa1\x1e\x72\xaa\x94\xf4\xea\x6a\xfb\xe4\x4f\x96\x9a\xeb\x41\ +\x2d\x42\xe9\xc3\x66\x75\x90\x8a\xfe\xfe\xc9\x2e\xf5\x61\xb5\xac\ +\x25\xf1\xba\x5a\xef\x47\x9c\xfb\x4d\x75\x9f\xde\xac\xb7\x57\xd5\ +\xda\x5f\xf4\xe3\x6a\x23\x51\x4a\x3b\x69\x25\xc5\xa8\x57\x3a\x47\ +\x27\x9e\x3c\x2f\x03\x39\x64\xe3\x47\x03\xa1\x93\x9e\xc3\x49\x77\ +\xd5\xd3\xea\x6e\xf5\xb5\x96\xc8\xa0\x11\x2c\xaa\x6b\x36\x2e\x5a\ +\x22\x1d\xdc\x3a\x41\x3e\x3c\xab\xd5\xe8\xe9\x59\xd1\x9c\x49\xab\ +\x08\x58\x08\x6e\x88\xdb\xdd\x4a\x2a\x79\xab\xb9\x1d\xe9\xd9\x26\ +\xa9\xb5\x4b\x9a\x1e\x4f\x8d\x00\x36\xe2\xc9\x87\x69\xcf\x76\x5a\ +\x3b\x5f\x2e\xe6\xe3\x89\xd1\xd0\xef\xea\x43\xb5\xac\x0e\x55\x3f\ +\x4b\x3a\x8a\x6c\x5b\xde\xf5\x4c\x9a\x01\xe7\xff\xfc\xe9\x67\x33\ +\xf3\x17\x8b\xf3\xff\x6e\x77\xbf\xf7\x93\x55\x65\xa8\xae\xb6\x0f\ +\x72\x24\x8c\x7e\x50\x6b\xcd\xe2\x5c\x2e\xdc\x72\x41\xfb\xb4\xba\ +\x93\xb2\xaf\xd6\xfc\x3f\xca\x85\x5a\xce\x57\x93\xe0\x64\x56\x60\ +\xf5\x85\xb6\xc5\xee\xea\xd6\x02\xf0\x9a\x41\xcb\xc5\xdd\x4a\x31\ +\xcd\xff\x75\x58\xad\xd7\xff\x50\x95\x18\x0d\x61\x0a\x5d\x1d\xd6\ +\x75\x4f\xbc\x98\xeb\xd6\x77\x7a\xc4\xea\xdc\xc5\xbc\xeb\x7d\xf3\ +\x74\xd3\xa3\xe2\xcc\x1a\x33\xd0\xeb\xea\xaa\x96\x12\xfc\x8b\x4a\ +\x4c\xc6\x72\xb2\xdb\x3e\xdc\xdf\x6d\x97\xb5\x66\xef\xd0\xbc\xaf\ +\x0e\xb7\x9e\xf5\x60\xb3\x91\xba\x52\x2a\x7d\x39\x5f\xbf\x54\x87\ +\x87\x5d\x6d\x0f\xbb\x1a\x98\x84\xe0\x2c\x57\x3f\xf8\x4c\x5a\x1a\ +\x54\x4e\xf6\x92\x24\xb7\x89\x1e\x6b\x9e\x7c\x49\x34\x99\x63\x49\ +\x4e\x0d\xfd\x6b\x72\x97\xa4\x44\x9a\x20\xca\x84\x21\xc5\x59\x9e\ +\xfc\x3d\xc1\xda\xa0\x41\xc9\xaf\xf2\x6f\xc5\x83\x18\x93\x74\xcd\ +\x54\xd2\xe4\x37\xc9\x95\x9f\x9c\xf7\x73\x42\xb2\x12\x15\x14\x73\ +\x5e\xa7\xc5\x99\xce\x46\x59\xcf\x2e\x1b\xf5\x6b\x42\x33\x45\xc5\ +\x42\x92\xed\xfc\xba\xb2\xa2\x4e\x79\x80\xa1\x18\x73\x7c\xee\x1b\ +\x70\xd6\x21\x43\x2d\xf6\x52\xb2\x13\xd2\x20\x52\x8c\x5a\xcb\x33\ +\x54\x88\xb2\x40\xb2\xc6\x33\x2c\x32\x55\x47\x59\xf6\xcc\x14\x49\ +\x34\xbb\xbe\x4a\xb2\x95\xbd\x69\x2b\xce\xe4\x43\x8e\x89\xea\x6b\ +\xaa\xf3\x61\xab\x6e\x85\x54\x5b\x6a\xdb\x55\xc6\xcb\x3c\x17\xa8\ +\xef\x6a\xc7\x54\xd8\x4c\xa6\x4a\x7a\x9c\x89\x78\x99\xd8\xf7\xd4\ +\xe4\x61\xfa\x2c\x99\x50\xd9\x26\x73\x29\x48\x9a\x89\x50\x97\x2b\ +\xd7\xa3\x8e\x72\x84\x38\x56\x40\xa0\xa2\x1d\x04\xab\x79\x05\x1b\ +\x76\xca\x64\x6f\xd8\x45\xc6\xa4\x61\x4a\x0b\xa6\xc6\x01\x91\x76\ +\x1c\x84\x35\x0e\xd4\xe5\xb7\xf3\x8f\xa5\x0e\xa1\xac\x11\x7f\xea\ +\x08\xd1\xa0\x01\x03\x19\xa2\x19\x16\x04\x17\x54\xa8\x02\x84\x91\ +\x96\x8e\x7d\x00\x95\x9d\x5b\xb3\xe7\x8c\x96\xb4\x68\x24\xa1\xc8\ +\x9a\x6a\x88\x2d\x09\x4c\x8a\x82\xd0\xd3\x92\x37\x25\xf4\x0c\xba\ +\x07\x3d\xfa\x67\xd6\xfc\xb0\x44\xa9\x2b\xd7\x3b\x58\x9d\xe8\x9b\ +\x49\x57\xd8\x83\x66\xf5\x9e\x2a\xa5\x60\xe8\x8d\x52\xe8\xea\x90\ +\xd3\xfc\x85\x2c\xe4\xe5\x2c\xf4\x4c\xaa\xa4\xa6\xd9\x86\x91\x9a\ +\x19\x4e\x2c\x36\x1a\xae\xe9\x14\x06\xf6\x52\x86\x41\x5f\x7c\x0c\ +\x47\x3b\xff\x6d\x06\xfa\xd2\x26\x05\x19\xa4\x1e\x93\xba\xa7\x99\ +\xda\xdf\x0d\x90\x1a\x09\xd6\xaa\x5a\x94\x67\xad\x9d\x30\x50\xb5\ +\x65\xc6\xda\xc5\xc2\xad\x89\x37\xeb\x41\x97\x48\x06\x4c\x45\x46\ +\x5a\x5f\xc9\x65\xc2\x0d\x53\x91\xd1\x46\x4c\xd1\x80\x49\xce\x28\ +\xdd\x82\x61\x9f\x4c\xda\x68\x21\x30\xcd\x69\x26\x80\x54\xb4\xa5\ +\xca\x26\xd4\x04\xa0\x94\x17\xd8\x91\x31\xd2\xaf\x5a\x45\x79\xfa\ +\x90\x7e\x9b\x45\xa2\x28\xb2\xa2\x59\x86\x15\x98\xce\x10\x74\x2a\ +\x83\x9f\x2e\xd6\xdf\x66\x19\x09\xf6\x0b\x6b\x21\x01\x96\xd3\x90\ +\x38\xc2\x32\x92\xd6\x6f\x37\xec\x08\xcb\x29\x22\xee\xe4\x36\x32\ +\xac\xa4\xc1\x48\xee\x19\xcf\x94\x30\x20\x81\xc7\xa2\xde\xb1\xe3\ +\xa0\xa8\xe3\xd2\x16\x75\x4a\x06\x4c\x9d\x34\xbb\xcd\xa4\x68\x24\ +\xea\x36\xd3\xa9\xa2\x6e\xf3\xb8\xa2\xde\xeb\x7a\x3d\xc7\x11\x02\ +\xa4\xeb\x7b\x46\x76\xea\xb4\x38\x85\x85\xbd\x9c\x25\xd8\x23\xf6\ +\x72\x10\xc2\x2c\xf4\xe5\x0d\x1b\x4d\x0b\xbd\xf4\x37\x86\xf4\xb7\ +\xa6\xc5\x49\x3d\x97\x23\x43\xc7\x13\xa2\xab\x26\xac\xfa\xb1\xa3\ +\xfa\x4b\x97\xa7\x93\x78\xea\x5b\x2e\xec\xe9\x60\xf1\x04\x66\x03\ +\xb6\xa7\x43\x21\x5c\x9e\x2e\x13\x4b\x7e\x1b\x06\xcc\xae\xa5\xff\ +\x77\xfe\x1e\x33\xbe\xcc\xc5\x9f\xd4\x43\xaa\x23\x31\xe7\xe8\x4f\ +\xfb\xc3\x6e\xfb\x7b\x7d\xbe\xd9\x6e\x6a\xfd\x77\x1b\x59\x38\x97\ +\xd3\x09\x95\x94\x4a\x1d\xd1\xd1\xa5\x3b\x59\xef\xd6\xd2\xf5\x3f\ +\x9c\xd3\x8e\xb6\xac\xf6\xb7\xd5\x6e\x57\x3d\x3b\x25\x98\xe2\x1d\ +\xaf\x7e\x27\x7d\xb8\xb2\x2c\x53\xc1\x53\x94\xd2\x94\xc9\x7f\x42\ +\xed\x10\x74\x51\xab\x1b\x27\x04\x20\x58\x4e\x0c\xfb\x61\x57\x6d\ +\xf6\xca\x2b\x96\xae\x5e\x75\xd8\xad\x9e\x3e\x48\x75\x22\x7f\x55\ +\x6c\xb3\x31\x4b\xcf\x48\x56\x30\xc4\xa5\xfd\xd7\xb8\x1d\x34\x13\ +\x82\x94\xa8\x94\xa6\x6c\xf9\xd1\x0f\x07\x5b\xa8\xdf\x21\x1c\x6d\ +\xe0\xec\x5c\xba\xd1\x1f\xde\xf7\xa1\xc3\x8f\x7d\x60\xcf\x76\x50\ +\x4f\x2a\x31\x08\x30\x55\xd1\xda\xb2\x24\x25\x99\x02\xe0\xc6\x0d\ +\x56\x5a\xb0\x95\x09\x8a\x91\x48\x7e\x51\x8f\x8d\x81\x2d\x71\x41\ +\xed\x63\xe3\x07\x70\x2e\x45\xbf\x7d\x6c\xfc\x0a\x39\xce\xfa\xb1\ +\xd0\xff\x37\x3e\x0e\x62\xea\xb1\xb1\x21\x38\x92\x2e\xa0\x43\xe5\ +\x19\x27\x98\xe2\x41\x5e\x96\x31\x21\x8a\x5c\x04\xa8\x38\x97\xba\ +\x19\x4b\xf9\x75\xa9\xb8\x6d\x32\x76\xa9\x4c\xb7\x5c\x51\x49\x46\ +\xe5\x74\x10\xdc\xa5\xa2\x4c\x0a\xbc\x90\x6e\xab\x4d\x45\xb2\xc7\ +\x42\xa8\xfe\x07\xa8\xbc\x47\xc0\xa2\x8a\x1e\x88\x9e\x4a\x54\x93\ +\x10\x57\xee\x31\xcd\x0b\xfd\x48\x55\xb4\x80\x09\xaa\x1f\x65\xe3\ +\xf3\x5c\xe1\xdb\x3e\x36\x9a\x23\x47\x3a\x73\xa3\x14\x70\x4e\x74\ +\x6a\x33\xdf\x89\xe8\x8a\x52\x53\x99\x33\xc3\xab\xa6\x30\x2e\x11\ +\x66\xa3\x47\xda\x83\x69\xf1\x58\x54\xab\x60\x8b\x6a\xd5\x6e\x51\ +\xad\x26\xda\xd4\xbe\x1f\x36\xb5\xef\xac\x4d\xed\x11\xb1\xa9\x3d\ +\x6c\x16\xb5\x1f\xa4\x00\x15\xbb\x23\x69\x8d\x83\x45\xb5\xc6\xcc\ +\x92\x05\x9b\xda\xcb\x8d\x4d\x35\x52\x1a\xa0\xda\xd2\xd4\x53\x6d\ +\x79\xec\xa9\xb6\xec\x9a\x39\x61\x53\x89\x9b\xa9\xd9\x19\x53\x03\ +\x18\xa0\xda\x53\xc4\xa2\x0e\x1e\xed\x09\xda\x53\xed\x59\x6c\xa8\ +\xce\x54\x37\xd4\x81\x3e\xe8\x1f\xbf\x26\x96\xf6\x08\x69\xd8\x2e\ +\x34\x46\xd0\x59\xea\xe8\x58\x2a\x85\x28\x2f\x05\x27\x8e\x8a\x75\ +\x35\x7d\x91\x96\x4c\xea\x78\x91\x32\x6b\x6f\xe2\xc6\xaf\xee\x89\ +\xb5\xe1\xe2\xa8\xd5\xba\xba\xca\x69\x35\x50\xab\x27\xac\x0c\x48\ +\x29\x57\x44\xe4\x5f\x4c\x2e\x63\x65\x29\x97\xf6\x52\x99\x5e\xbc\ +\x28\x30\xa1\xcc\xd2\xe9\xaa\xb9\x7d\x07\x9e\x2f\x67\xdd\xb2\x5c\ +\x58\xfd\x7a\xba\x9c\x75\x4b\xac\xbd\xe1\xd5\x05\xd9\x8d\x0d\x61\ +\xa5\xe9\x10\xbd\x2f\xc9\x5d\x0f\x67\x81\x15\xc5\xdb\xf5\xf0\x8a\ +\x42\x32\xd1\x5a\x13\xaf\x59\x50\xac\x68\xf0\xa9\xb8\x18\x8b\x64\ +\x5a\x5c\x8a\x14\x3a\x30\xc6\xbc\x9b\x16\x18\x94\x16\xc0\x81\x31\ +\xb6\xf2\xd4\x12\x93\xa7\x9c\x00\xc3\x06\xb9\xd0\x18\xd7\x63\x62\ +\x68\xe0\x09\xcd\x10\x18\xb9\x2a\x4f\x2d\x2e\x2c\x65\xc0\x41\xa1\ +\xed\xfa\x4c\xa7\xd6\x30\x02\xbc\xb8\x70\xbd\xa9\x35\xbd\x8a\xa1\ +\x29\x74\x1d\x23\x32\x1c\x61\x5d\x92\x96\x1e\x6c\x5c\x5a\x87\x63\ +\xf2\xd9\x24\x65\x46\xa4\x14\x38\x34\x8d\xd7\x35\xb9\x8d\x87\xe4\ +\x6f\x09\x1c\x19\x96\x15\xcd\xc9\x83\x08\xb6\x4c\x8a\x80\x61\x83\ +\x07\xd8\x28\xef\x99\x74\x87\x43\xa7\xc3\x06\x49\x68\x30\x70\x68\ +\xba\xad\xb9\xe9\x6d\x1a\x04\x47\x0f\xfb\x1c\x81\xde\xd3\xa6\x13\ +\xcf\x29\x91\x03\xc7\xa5\xdb\x0a\x9b\x7c\x81\x02\xa3\x83\x03\xc0\ +\x74\xaa\x79\x62\x45\x03\x68\x71\x0a\x00\xd3\xed\xd2\x4e\xed\x4e\ +\xca\xd5\x09\x8c\xeb\xe4\xc3\xc0\xf2\xb4\xa7\xf6\x10\x50\x0a\x4d\ +\xcd\x8c\x90\x69\xf6\x02\x26\xf7\x0f\xd4\xda\x04\x6d\x65\x1a\x41\ +\xa3\x1d\xee\xc9\x15\x8d\x74\xb8\xc1\x78\x95\x21\x6c\xb4\xcb\x3d\ +\xb9\x49\xa3\x5c\x6e\x68\x8a\x78\x04\x4e\x2c\x9f\x1b\xba\x1a\x8e\ +\xe9\x74\x83\x89\x61\x85\xb0\x89\xe7\x75\x83\xf1\x2c\x43\xd0\x44\ +\x75\xbb\xa1\x4d\x2a\x36\x44\x27\xa2\xe3\x0d\x6d\x09\x1f\x61\x13\ +\xd3\xf3\x06\xb3\x4c\xf9\xf6\x99\xac\x3d\xee\x89\xfd\x05\xe8\xb0\ +\x44\xdb\xe2\x06\xa3\x86\x03\xc0\xf8\x36\x78\x27\x59\xa1\xc0\xf8\ +\x50\x01\x60\x22\x6e\x71\x83\xf1\x13\x7c\x1e\x76\xd4\x2d\xee\x1c\ +\xcc\x2e\x4b\x08\x9a\x28\x9b\xdc\xe0\x51\x89\xb7\xcb\x0d\x1e\x9a\ +\x98\xdb\xdc\xe0\xc1\x89\xe5\x73\x83\x39\x98\x16\x00\x26\xaa\xcf\ +\x0d\x7d\x79\x8a\xe9\x74\x83\x17\x9c\x98\x5e\x37\x18\xa7\xbb\x03\ +\x47\x0c\xc0\x89\xe9\x74\x83\x09\x65\x85\xc0\x69\xbd\x6e\x1e\x61\ +\x4f\x01\xc1\x39\x0b\xe0\xdb\x59\xe9\xbd\xee\x7c\xe2\x55\x1c\x8e\ +\xb6\xf1\xc3\xa2\xbd\xee\xe9\x77\xbb\xe1\x68\x1a\x3f\x30\xfa\x3a\ +\x79\x39\xb1\x1a\x46\xe0\x25\x46\x7b\xdd\x79\x8c\x2d\x28\x38\xa1\ +\x1a\x3f\x36\x9d\x62\x9e\x7a\x3a\x41\x0a\x7a\x06\x90\xc1\x19\x57\ +\xf3\x69\xf2\x43\x12\x2c\x65\x60\xa2\xe5\x21\x6c\xb4\xef\x3d\xf9\ +\x1d\x16\x48\x5e\x54\x00\x1a\xed\x7b\x4f\xef\x45\xa9\xeb\xd1\xd0\ +\xc1\x69\x6e\x83\x4e\x3e\xa7\x04\xa0\xe8\x67\xc0\xd6\xd3\xbe\x77\ +\x04\xd7\x1b\xba\x1e\xee\x3c\xef\xc9\x0f\xd7\xc8\x25\x0a\xbc\xd8\ +\x48\xcf\x3b\x86\xd3\x8d\xc0\x09\x0d\x19\x00\xa3\xbd\xee\xa9\x43\ +\x12\xad\xd7\x0d\x27\x04\x1a\x40\x47\x6f\x76\x47\x30\x6d\x10\x20\ +\x55\xec\xd9\x40\xb0\x36\xbb\xa7\xc5\xa6\x84\x13\xaa\xf1\xc3\xa2\ +\xdd\x6e\x36\xbd\x13\x05\x67\x36\xf9\x91\x89\x76\xa1\xbb\x84\xa3\ +\x85\xfd\xc8\x44\xdc\xee\x86\x0e\x4d\xbc\xed\x6e\x38\xbe\x65\x00\ +\x99\x28\xbb\xdd\x70\xdc\xca\x00\x2a\xf1\x8e\x98\x73\xe8\x4b\x53\ +\xdc\xed\x6e\xe8\xf6\x4c\xb4\xfd\x6e\x38\x87\xb1\x02\x86\x9e\xf6\ +\xb9\xa7\xdf\xb6\x84\x14\x8f\x08\x60\xa3\x9d\xee\x89\x97\x27\x04\ +\xea\x0c\x5f\x00\x9a\x98\xbb\xdd\xd0\x17\xef\xce\xef\x9e\x7e\x3b\ +\x81\xa7\x18\x4e\xf4\x33\x00\x4e\xcc\x33\xe6\x70\xbc\x28\xcf\x6a\ +\x6d\xdc\x6e\x2c\x26\x06\x07\x8e\xcc\xf8\x61\xd1\x6e\xf7\xd4\x3b\ +\x2d\x05\x20\x4d\xe3\x07\x26\xda\x6e\x37\xf4\x89\x14\x71\xb7\x1b\ +\x8e\xa3\xe0\x87\x26\xde\x66\xb7\x80\x73\xd8\x28\x00\x4d\xbc\xdd\ +\x6e\xf0\xd0\xc4\xdb\xec\xa6\x70\xc2\x12\x01\x6c\x62\xee\x76\x83\ +\x07\x27\xd6\x6e\x37\x83\xbe\x46\xc5\xdc\xee\x86\x73\x22\x2b\x80\ +\x4d\xbc\xfd\x6e\x38\x9a\xd8\x13\xb3\x7a\xf2\xf7\x71\x02\x68\xe0\ +\x44\x24\xfc\xb0\x74\xf7\x50\x27\x57\xc2\xd0\xe5\xa5\xfb\xc0\xd2\ +\xe4\xf7\x50\x11\x74\x91\xd1\x4e\x02\x8e\x10\x32\x67\x70\x14\xb0\ +\x1f\x9b\x78\x5b\x73\xe0\x91\x89\xb2\x35\x07\x7d\x2e\x75\xfe\xc1\ +\xc4\xd6\x0c\x4a\x21\x9d\xdd\x0b\x40\x13\x73\x67\x8e\x81\x17\x1c\ +\xed\x1f\x4c\xfd\xe9\x08\x40\x71\x9a\x80\x9d\x17\xf3\x95\xcb\xe0\ +\xc1\x89\x77\x13\x15\xce\x0e\x8b\x4f\x42\xe2\x39\x08\x82\xc3\x89\ +\x0a\x07\x90\x89\xe6\x23\x70\x38\xeb\x77\x00\x9a\x68\x5e\x42\x01\ +\x47\x11\x07\xa0\x89\xe8\x26\x70\x02\xc7\xbd\x0c\xa0\x13\xf1\xab\ +\x2c\x70\xb6\xe7\x42\xd8\xc4\xf9\x30\x0b\x7c\x5c\xe2\x39\x0b\x05\ +\x78\x4d\x1c\xf7\xf3\x2c\x70\xbc\xa9\x10\x3c\xb1\xfc\x05\x01\x27\ +\x32\x11\x32\xfc\x62\x7a\x0c\x70\x4e\xf3\x85\xd0\x89\xf8\x9d\x16\ +\x40\xa2\xe3\x39\xd3\x18\xd1\x67\xc8\x01\xa9\x63\x3f\x32\xd1\x7c\ +\x86\x12\xd0\x8c\xf2\x43\x13\xed\x0d\x97\x25\x20\x0b\xc7\x0f\x4d\ +\xc4\x4b\x3f\x0c\xbc\xb2\x89\xf8\x96\x4b\xf0\x82\x13\xc7\x65\x00\ +\x14\x0d\x0d\xe1\x12\xf3\xeb\x12\xf0\xa5\x26\xea\xf7\x25\x00\x2d\ +\x54\xee\xab\x00\xe2\x19\x36\x80\xce\x4b\x8c\x31\x89\x66\xd2\x00\ +\xba\xd7\x32\x46\x25\x5a\x04\x34\x07\x14\x37\x1f\xa1\x12\x31\xf8\ +\x49\x00\x2d\x4a\x23\x5c\x62\xbe\xa9\x1b\x50\x4c\x78\x8c\x4b\x9c\ +\xd7\x74\x83\x16\x95\x78\xd1\x4e\x40\xc7\x83\x3d\xb8\x44\xbd\xb1\ +\x0c\xe7\xd2\x93\xef\xba\xa0\xf5\xe6\xd3\x89\xd7\x23\x40\xd7\x2b\ +\x03\xc0\x74\xb7\xc1\x26\x7f\xe9\x53\x09\x69\x67\xc5\x8f\x8d\x36\ +\x62\xf8\xe4\x57\x96\x39\x20\x0d\xec\x87\x46\x5b\x32\x11\x94\x0d\ +\x24\xb3\xd7\x8f\x4d\x67\xcd\x4c\x8d\x8e\x0a\xe5\xc1\x31\x66\x02\ +\xd8\xe8\x4b\x61\x93\xab\x1b\xf5\x0a\x54\x40\xeb\x77\x00\x1d\x6d\ +\xdc\x4c\x6f\xdb\xc0\xd7\x38\x71\xdf\x82\xfa\x36\xc3\xc0\x17\xf3\ +\x1b\xfd\xc7\xcd\x3b\xab\xed\x37\x2c\x17\x6c\x16\x46\x90\x65\x1c\ +\x51\x5c\x0e\xaf\x01\x91\x63\x6f\x6d\xa1\x82\xb0\xdc\x71\xc0\x4e\ +\x3f\xc9\x16\x9c\x76\x14\x13\x8c\x8a\x93\xb1\x93\xb6\x08\x2a\x48\ +\xc9\x31\x8f\x25\x5b\x01\x64\x58\xbb\xc7\x19\x88\x87\x7e\x37\x34\ +\xc5\xb1\x69\x07\x05\x1b\xd1\xbe\x9b\x24\xf7\xcf\xbb\x57\x60\xd3\ +\x1c\xd8\x0a\x9a\x88\x50\xe0\x41\xe8\xd8\xeb\x49\xbe\x1f\x1e\x74\ +\xec\xf0\x0d\x18\x70\x8a\xac\x91\x1d\xff\x1b\x15\xbe\x1b\x9c\xf6\ +\x68\x52\xf0\xec\x0d\x18\x74\xca\xb6\x9f\x93\x6b\x9d\xf6\x6c\x12\ +\x78\xad\x8c\x71\xbb\x25\x3e\xb1\xf4\xe8\x13\x38\xe0\x27\x17\xa6\ +\xad\x0f\xe6\xf7\x4e\x5f\x31\xb9\xd0\xb1\x4d\xaa\xb7\x8a\x8e\xf3\ +\xba\x0c\x85\x4e\x39\x7e\x4f\xf1\x34\x7a\x99\xa7\x18\x3e\x3c\x24\ +\x6f\x3d\x0d\xbf\x1f\xf6\x8a\xb9\xc5\x8e\x7f\x72\xe1\xcd\xe1\x53\ +\x4a\xa3\x98\x73\x41\x87\xf8\xc4\xb1\x95\xf3\x14\xc3\x31\x08\x43\ +\xd0\xe4\xc7\xbe\x92\xf9\x3a\x6c\x00\x09\x0e\x22\x19\x12\xb4\xcc\ +\xf9\x0f\x11\x1c\x7e\xec\x56\xcc\xdb\xc3\x86\x65\x45\x59\x12\x44\ +\x7f\xd8\xa4\x02\x64\x0d\xe2\x3c\x2b\x38\x23\xce\xcd\xb8\xb8\x82\ +\x03\x47\xe5\x60\x39\xa9\x94\xe4\xfc\x18\x6c\x1a\xc1\x09\x46\x54\ +\xdf\x1e\x38\xd2\x5f\x60\xac\xa4\x3f\x2c\xac\x13\x3e\x6a\xf1\xe6\ +\xb0\x91\x8b\x52\xa1\xfa\x4a\x7e\x9c\xe0\x70\x38\xb1\x8b\x00\x3a\ +\x3a\xec\x45\x27\x0f\xed\x48\x95\x03\xc8\x44\x0e\xa0\x23\x32\xd6\ +\x1c\x61\x8a\x14\xf8\x02\x14\xfa\x0a\x00\x14\x35\xf4\x05\x48\x2f\ +\x87\xe0\x99\xd8\xb7\xd2\x51\x2f\x40\x96\x4e\x08\x98\xc8\x71\x2f\ +\x40\xaa\x27\xb0\xa4\xc7\x43\xa8\x89\x7c\x01\xf4\x24\x86\x9f\x9b\ +\x2a\xc7\x1f\x2f\x9b\x30\xba\x13\xde\x0d\x7c\x7b\x00\x69\x37\x74\ +\x68\x14\x6a\x27\xdd\x7f\x1c\xec\xf5\xf1\x9d\xf0\x81\xb0\xb7\x87\ +\x90\x5f\x84\x22\x45\xc0\xb4\x6d\x08\xc8\x74\x0e\xf8\xa3\x5d\x78\ +\x39\x52\x00\x35\x3d\xf2\x59\xa1\xb7\x07\x91\x76\x4b\x87\x5a\x28\ +\xd6\x06\x85\x99\x64\x80\xac\xa0\x10\x46\x5a\x8c\xa2\x2d\x65\xc7\ +\x0e\xa7\xbe\x39\x90\x42\xcb\x59\xd1\x9e\x18\x8b\xa7\xad\xe5\x94\ +\x3b\xf2\x09\x99\x37\x87\x53\x48\x98\xf2\xf6\xb4\x6a\x64\x9c\xde\ +\x66\x10\x3a\x7c\x18\x08\xf7\x0d\x3e\xec\xaa\xcd\xfe\x7a\xbb\xbb\ +\xbb\x9c\x35\x7f\xae\xab\x43\xfd\x21\x45\x59\x81\x05\x11\xac\x4e\ +\xf9\x59\x2e\x75\x16\xe2\x24\x17\xe5\x47\xc3\xa5\x3b\xd9\x1f\x29\ +\xba\xaf\x0e\xb7\x01\x0c\xd8\x55\xbd\xbc\xbe\xfe\xc1\x18\xf4\x6d\ +\x91\x3d\xfe\x9c\xa8\x01\xc5\x25\xc2\x2c\xa1\x99\xe0\xb8\x60\x05\ +\x4e\x7e\xb1\xa8\x5c\xdd\xeb\xe3\xa2\x10\x0e\x55\x64\xa2\xc8\x05\ +\xe1\x4c\x52\xd5\xb1\x67\xce\x78\x89\x02\x54\xbb\x84\xe6\x66\x36\ +\x11\x79\x11\xa0\xda\x6d\xe8\x4b\xf0\xb7\xac\xa7\x7e\x4d\x3e\x27\ +\xcd\x29\x5a\x9c\x13\x37\x77\x4f\xb5\xeb\x6b\x4f\x95\xe6\xc8\x6d\ +\x45\xfb\x39\xd6\x61\x8b\x7b\xaa\x5d\x6e\x5f\x82\xbf\x36\xb7\x6d\ +\xed\x59\x44\x26\xa8\x5b\x86\xa1\x3a\xf5\x35\x67\xf3\xe8\x00\xa1\ +\xf6\xe5\x22\x18\x89\x00\xd5\x29\xd7\x94\xe0\xaf\xcd\x6d\x5b\xfb\ +\x52\x0a\x51\xba\x6d\xeb\xa9\xce\xf8\x93\xf6\x81\xbb\x54\xa6\xa2\ +\x3b\x72\xe0\x03\x54\xa7\x5c\x53\x82\xbf\xb6\x41\xdb\xd4\xf1\x45\ +\x4c\x31\x76\x73\x1b\xaa\x53\x9f\xfa\x7c\x0f\x47\x65\x19\xa0\xda\ +\xb2\x49\xf0\xf0\xd1\xe6\x21\x83\xea\x4c\x11\xfe\x46\x0c\x9a\x6c\ +\xc4\x53\x0a\x0e\x65\x44\xfd\x65\x0b\xad\x1a\x06\x2a\xf3\x17\x2e\ +\x55\xd6\x4f\x91\x1a\x32\x5b\xec\x03\x54\xab\x04\x8b\xea\xaf\xcd\ +\x50\x9b\xb6\x99\x9e\x38\xb9\x7b\xaa\xdd\x36\xd3\x3f\x87\x6a\x06\ +\x35\x40\xb5\x5a\x6c\x95\x60\x53\xfb\xda\x2c\x2a\xc1\xa3\x47\xab\ +\x7c\xf5\xe8\x6f\xb0\xdb\xbd\xbe\xdb\xa2\x93\x75\x1b\x0c\x65\x62\ +\x62\xce\xc9\x80\x2a\x2b\xc2\xa8\x1c\xe8\xac\x00\xd5\x2a\xc1\x82\ +\xde\x5b\x5b\x4f\x6d\xda\x66\xe4\xde\xc9\x6d\xa8\x4e\xdb\xcc\x6c\ +\xb0\xa9\xfd\x5c\x0f\x50\xad\x16\x5b\x25\xd8\xd4\xbe\x36\x9b\x6a\ +\x06\x2f\x40\xb5\x5b\xd6\x0f\xb4\xb7\x17\x83\x3e\xf7\x18\xcb\xb1\ +\x55\x43\xeb\xea\x6f\x39\x8e\x22\x2f\xa5\xba\x74\xa8\x44\x39\x02\ +\x98\x50\x17\x63\x9b\xda\xaf\x16\x7e\xaa\x5d\xae\x35\x76\x7e\xaa\ +\xbf\x65\x86\xda\x68\x6f\xa3\x4f\xed\xdc\x16\xd5\x2a\xb9\xd7\xb2\ +\x7e\xaa\xdd\xe2\xbe\x04\x87\x6a\x46\xd4\x4f\x75\xca\xed\xa9\xfe\ +\x96\x39\xfd\xe8\x57\x27\xbb\x8c\x9e\xea\xd4\x67\xd6\x37\x87\x6a\ +\xd6\x42\x3f\xd5\x69\x9b\x29\xc1\x5f\x5b\x4f\xfd\x9a\x58\x36\x89\ +\xd7\xe8\xb2\x6d\xae\xd4\x67\x74\x7d\xc3\x06\x4d\xe9\x37\x2d\x3f\ +\x94\xa3\x12\x5b\x6e\xb4\xb7\x1d\x84\xb6\xd6\x2f\x3d\x4b\x8d\xbf\ +\x3a\xb2\xfc\x8e\x99\xb7\xf2\x51\x1a\x6c\xe7\x0f\xbb\xf5\x87\xf7\ +\xed\xdf\x05\x2b\xd1\xc7\x23\xe7\xcf\x69\x3e\x3e\x99\x26\xad\xf7\ +\xa6\x7e\xaf\xe5\xfe\x9a\x3b\x31\x02\x1f\x7b\xd9\xd8\x0b\x2d\xf6\ +\xe8\x97\x1b\x48\xd1\x78\x30\x3e\x64\xc2\x91\x84\xd7\x5d\x19\x9a\ +\xee\x24\x68\x7c\x74\xca\x31\x0c\xf1\x04\xe7\xd8\x7b\x27\xde\x1a\ +\x32\xc1\x29\x75\x34\x72\xf0\x8a\x2b\x43\x74\xc2\x73\x23\xff\x3f\ +\x74\x8e\x06\x9f\x5e\x75\x67\xa8\x38\xf6\xb9\x62\x30\xf8\x1c\x8d\ +\xa7\xbc\xea\x36\x1e\x3e\xf6\x76\x4c\x28\xf8\x1c\xdf\x87\x7b\xdd\ +\xcb\x06\x54\x14\x7c\xaa\xc0\x65\x7c\x80\xf0\x58\xcd\x44\x53\xcc\ +\xea\x77\xaa\x50\x65\x7c\x64\xe8\xf8\x9c\x79\x34\x64\x8a\xc6\x30\ +\x9c\x6a\xdf\xe4\x87\x5c\x55\xa4\xea\xae\xaf\x81\xef\x26\xd0\xf2\ +\x6b\xa2\x7e\x87\x2d\xff\x96\x89\xdd\x22\x86\x05\x3b\xeb\xde\xe4\ +\x85\x86\xe6\xb5\xb4\x91\xa5\xb3\x6d\x1a\x30\x0a\x6d\x9e\xd4\x8e\ +\xb8\x08\xda\x8d\x69\xa2\x9b\xbd\x17\xd2\x7b\x29\xb6\x6f\xd2\x7b\ +\x66\x0e\xd5\x78\x50\xb6\xc7\x62\x53\x7b\x6f\x33\x40\x35\x9e\x99\ +\x53\x82\x45\xb5\x6a\xf3\x52\x7b\x1f\xde\xa1\x1a\x5f\xdb\xf1\xbb\ +\xfc\x54\xbb\x04\x43\x75\x6a\x33\xbd\x77\xa8\xa6\x47\x01\xaa\xd5\ +\x63\xab\x04\x9b\xda\xd7\xe6\xa7\xda\xa8\xf7\x54\xff\x08\x19\xaa\ +\xe3\x27\x86\xc2\xf3\xbd\x1c\xa7\x5e\x41\xf6\xeb\x01\x5b\x2d\x99\ +\xc9\xd7\xfe\xd1\xfc\x77\x31\xdf\x7f\x91\xff\xfd\x0f\xc9\x3d\x8a\ +\x57\ +\x00\x00\x0a\x23\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x6d\x6f\x76\ +\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ +\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ +\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ +\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ +\x6d\x3d\x22\x37\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x2d\x35\x38\x2e\x36\x33\x38\x31\x36\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\ +\x2e\x35\x33\x38\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ +\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ +\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ +\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ +\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ +\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ +\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ +\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ +\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x64\ +\x35\x66\x66\x64\x35\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\ +\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x34\ +\x35\x34\x35\x34\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x73\x71\x75\x61\ +\x72\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\ +\x66\x73\x65\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x30\x31\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x30\x39\x35\x32\x33\x38\ +\x32\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x38\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x38\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\ +\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x4d\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\ +\x2e\x38\x36\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\ +\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\ +\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\ +\x3e\x0a\ +\x00\x00\x06\x33\ \x00\ -\x00\x22\x51\x78\x9c\xe5\x59\x5b\x6f\xdb\xd8\x11\x7e\xf7\xaf\x60\ -\xe5\x97\x04\x15\xa9\x73\xbf\x28\xb6\xf7\x61\x83\x5d\x2c\xb0\x45\ -\x81\x6e\x82\x02\x7d\x59\x50\x24\x65\xb3\xa1\x48\x81\xa4\x2c\x29\ -\xbf\xbe\xdf\xa1\xc4\x8b\x2e\xb6\xe5\xc4\xbb\x45\x51\x09\x41\xc4\ -\x73\xe6\x5c\x66\xe6\x9b\x99\x6f\xe8\x9b\x1f\x36\x8b\xcc\x7b\x4c\ -\xca\x2a\x2d\xf2\xdb\x11\x0d\xc8\xc8\x4b\xf2\xa8\x88\xd3\xfc\xfe\ -\x76\xf4\xf9\xd3\x4f\xbe\x19\x79\x55\x1d\xe6\x71\x98\x15\x79\x72\ -\x3b\xca\x8b\xd1\x0f\x77\x57\x37\x7f\xf1\x7d\xef\xc7\x32\x09\xeb\ -\x24\xf6\xd6\x69\xfd\xe0\xfd\x92\x7f\xa9\xa2\x70\x99\x78\xef\x1e\ -\xea\x7a\x39\x9d\x4c\xd6\xeb\x75\x90\xee\x07\x83\xa2\xbc\x9f\xbc\ -\xf7\x7c\xff\xee\xea\xea\xa6\x7a\xbc\xbf\xf2\x3c\x0f\xe7\xe6\xd5\ -\xb4\xa8\x66\xb7\xa3\xc1\x8a\x62\x99\xe4\xd5\x3a\xac\xa3\x87\x59\ -\x51\x7c\x69\xd6\xad\xca\x74\xc2\x08\xb1\x13\xc8\x8e\xfa\x95\x71\ -\xd4\x2d\x5c\xae\xca\xac\x11\x8d\xa3\x49\x92\x25\x8b\x24\xaf\xab\ -\x09\x0d\xe8\x64\x20\x1e\xf5\xe2\x91\xbb\x77\xfa\x98\x44\xc5\x62\ -\x51\xe4\x55\xb3\x32\xaf\xae\x07\xc2\x65\x3c\x3f\xb8\xd5\x9a\x37\ -\x42\xd4\x5a\x3b\x21\x6c\xc2\x98\x0f\x09\xbf\xda\xe6\x75\xb8\xf1\ -\x0f\x97\x42\xbb\x73\x4b\xa1\x00\x99\x60\xae\x97\xbc\x4c\x6a\xba\ -\xc9\x60\xc4\x27\x2f\xd3\xcc\x0e\x4f\x87\xe3\x96\xf8\xd7\x2d\x68\ -\x07\x82\xaa\x58\x95\x51\x32\xc7\xca\x24\xc8\x93\x7a\xf2\xf1\xd3\ -\xc7\x6e\xd2\x27\x41\x5c\xc7\x83\x6d\x5a\xbf\x1d\x9c\x7b\xe0\xcc\ -\x3c\x5c\x24\xd5\x32\x8c\x92\x6a\xd2\x8e\x37\xeb\xd7\x69\x5c\x3f\ -\xdc\x8e\xb8\x08\x28\xc7\x47\x36\x83\x0f\x49\x7a\xff\x50\x1f\x8f\ -\xa6\xf1\xed\x08\xba\x32\x6b\x75\xf3\x3c\x00\x21\xdd\x09\xec\x37\ -\x9e\x76\x33\x24\xb0\x2c\xa0\x5e\x49\x25\xd7\x3b\x99\x56\x85\x69\ -\x5c\x44\xee\x4e\xd8\x32\x59\xa4\xe1\xaa\x2e\x16\xf0\x71\x14\x65\ -\x61\x55\xa5\xf3\x34\xc2\x43\x91\x2f\xb3\xd5\x7d\x9a\xff\x7e\x5f\ -\x24\xd5\xef\x75\x51\x64\x41\x6b\xea\xee\xa4\x64\xb3\x2c\xca\xda\ -\xdf\xc4\x4b\x98\x50\xe9\xb3\x93\xdb\x76\xf2\x0e\xb3\x37\xdd\x05\ -\xdc\xe9\xf1\x63\x9a\xac\xdd\x9a\x9d\x76\xb3\xb0\xda\x59\xc5\xf3\ -\x96\xe1\x3d\xf0\x96\x15\xe5\xed\xe8\x7a\xde\x7c\xf6\x13\xb3\xa2\ -\x8c\x93\xb2\x9d\x52\xcd\xe7\x60\xaa\x80\x95\xd3\x7a\xbb\x8b\xcd\ -\xfd\xde\xed\x8d\xdc\xae\xdd\x3c\x39\x3f\x5f\x3d\x84\x71\xb1\xbe\ -\x1d\xb1\xe3\xc9\xaf\x45\xb1\xb8\x1d\x89\xe3\xe1\x68\x73\x3b\xf2\ -\x29\x0b\x04\x1c\xc3\xf5\xc9\xec\xb6\x71\xa3\x55\xc2\xf0\x93\x1d\ -\xa3\x55\x59\x22\xf6\xfc\x2c\xdc\x26\xd0\xa6\xf9\x8f\xee\x85\xaa\ -\x87\x62\x7d\x5f\x3a\xab\xd4\xe5\x2a\x39\x5e\xe9\x66\xfc\xd9\xac\ -\xd8\x9c\x9f\x86\x73\x57\x2e\xaa\xfd\x55\x9e\xd6\x88\x9c\xe5\x66\ -\xb8\xeb\x2a\x8d\x93\xea\xfc\xc2\x2a\x0f\x97\xfe\x7d\x56\xcc\xc2\ -\xec\xbc\xc0\x3a\xcd\x61\x1d\x7f\x0f\x5b\xca\x3b\xe3\x1f\x4b\xb4\ -\x18\xd6\xc4\x3c\x21\x81\xbb\x9f\x38\x60\x3f\xb5\x7d\x7a\x6a\x11\ -\x6e\xd2\x45\xfa\x35\x81\x61\x68\x83\x28\x60\xea\xc0\x2c\xbb\x65\ -\x3b\x40\xb9\x67\x4e\x88\x1c\xb5\x83\xf5\xd6\x05\xe9\x66\xeb\x26\ -\xba\xc1\xa2\x4c\x01\xf3\xc1\x75\xda\xa1\xed\x70\xc8\x45\x2f\x92\ -\xfc\xa6\x01\x56\x03\x3b\x7d\x3c\xb7\x1d\xce\x79\x93\x06\xef\x93\ -\x53\xc0\x37\xe3\x71\x32\xaf\x7a\xe4\xbb\x27\xe0\xc7\xb6\x1a\x21\ -\x4d\x25\x61\xf9\x73\x19\xc6\x29\xdc\x38\x54\xe9\x70\x46\x1a\xd9\ -\xae\x71\xb1\x55\x17\xcb\x56\x16\x97\xaa\xb7\x99\x8b\x6f\x0c\xfa\ -\x4d\xbc\x4c\xaf\x6d\x14\x86\x84\x7c\x68\x86\xf6\x71\x30\xa5\x1f\ -\x46\xfd\x9a\x62\x3e\xaf\x92\x7a\xa8\xf6\x3e\xef\x60\x85\x34\x8a\ -\xee\xb5\xba\xf0\x34\xca\x63\x3a\xbb\xe0\x34\x7a\xfe\x34\xde\x9d\ -\x76\x33\x39\x54\xfb\xd5\x56\x62\xfd\x11\xa8\x8a\x88\xf3\x34\xc7\ -\xb9\x55\x91\x01\x06\x97\x2b\x34\x57\xa8\x37\x47\xe6\x23\x81\x36\ -\x86\x71\xc9\x5f\x61\x47\xf6\x86\x9a\x51\xf9\x26\x9a\xcd\x67\x7a\ -\xa6\xbf\x19\x18\x54\x7f\xa3\x42\x5d\x26\x2c\xb2\x2c\x89\xb0\x7f\ -\x98\xad\xc3\x6d\xd5\x1d\xd2\xd4\xeb\xe9\x43\x99\x80\x5f\x5c\x9f\ -\x81\xfe\x73\x96\x51\xbd\x65\x36\x14\x20\xa3\x81\xa6\x42\x0d\x92\ -\xc1\x96\x36\x45\x80\x4a\x4a\x88\xb0\xaa\x97\x66\xc8\xd9\x34\x30\ -\x84\x30\xc2\x7b\x69\x76\x5e\xfa\x7e\x7f\xe0\xe7\x5d\xaa\x5d\x55\ -\x49\xf9\x9b\x2b\xf4\x7f\xcf\x3f\x77\xd5\xac\x97\xfa\x54\x86\x79\ -\x05\x56\x81\x4a\x82\x82\x5b\xa6\x9b\x77\x20\x13\xcc\x32\xab\xad\ -\x11\x63\x1f\xe9\x83\x49\x25\xa8\x1c\xbb\x44\x42\x09\x13\x76\x0c\ -\x01\x4a\xac\x54\x9c\x88\x31\xe3\x81\xd4\x42\x19\x36\xc6\x05\xa5\ -\xd5\x9a\xbe\xef\x2d\xff\x8a\x70\xd0\x3e\xf1\x9f\x4c\x1c\x03\xa0\ -\x5a\x5f\xfb\xf4\x05\x18\x9c\x81\x13\x21\xf3\x30\x0e\x4f\xe0\xf4\ -\x64\xf2\xe8\x4f\xe4\x14\x37\x33\x2f\xe4\x88\x33\x27\x9a\xd0\x7d\ -\x8f\x42\xf3\x25\x50\xba\xa7\x30\x7b\x5b\x50\xee\x4d\x3b\xb4\xfe\ -\xe1\x31\xdc\x48\xfd\x76\xe0\x01\x1e\xb8\x94\x5c\x51\x00\xc6\x0a\ -\xaa\xad\x65\x0e\x30\x4a\x11\xc3\x89\xe2\x0d\xa2\xb8\xc0\x57\x8d\ -\xb5\x0a\x94\x85\xb0\x18\x03\xc6\x82\x0a\x43\xed\xfb\xee\x08\xc7\ -\x62\xa8\x0c\xfa\xe0\x70\xc4\x85\xea\x40\x5b\x61\x6c\x7f\xdf\xf9\ -\xb1\xd8\xfc\xac\x18\xc8\x0c\x35\x81\x54\x4c\x76\x65\xd0\x55\xb8\ -\xe6\xd7\x22\xa9\x81\x8d\x3a\xec\x8b\x5f\x3b\x82\x4a\xcd\xda\x02\ -\x88\x7e\x61\xfa\x8f\x8f\x3f\x75\x78\x89\xa2\xe9\x3f\x8b\xf2\x4b\ -\x8f\x01\x27\x10\xce\x8a\x15\xdc\xd3\xe1\xd8\x95\xd5\x68\xea\x0c\ -\x14\xd6\x77\xe9\x02\x64\xce\x35\x07\x7f\x05\x47\xc7\xf9\xdd\xc4\ -\x81\xb0\x23\x04\xfd\xa6\xbb\x6d\xcb\x64\x47\xfe\xcf\xf6\x4b\x71\ -\xb4\x48\xdd\xa2\xc9\x6f\x75\x9a\x65\xbf\xb8\x43\x06\xb8\xde\x6f\ -\x9a\xd6\x59\x72\xd7\x9c\xb9\xfb\xd9\x6a\x31\xd9\xab\xd1\xa2\x72\ -\xa0\xe5\xcd\xa4\x35\x43\xf3\x74\x7f\x42\xf8\x8a\xd5\x72\x51\xc4\ -\xc9\x9e\x26\x1e\xb3\xa3\x2c\x9c\x25\xa0\x6c\xbf\xba\x39\xaf\x8d\ -\x95\x26\xf4\x77\xa4\xb2\x35\x2b\xf0\xdc\x91\x96\x5d\x14\xcd\xa1\ -\xc6\xf4\x3a\x51\xee\xfb\xc1\x3d\x0c\x22\xb6\x79\x2c\x57\x19\xb8\ -\xfc\x63\x92\x17\x71\x8c\x00\x2b\x8b\x2f\x89\x8b\xf0\x7d\x29\x74\ -\x8f\x3b\x3a\x88\x52\x48\x29\x97\x44\x4b\xd5\x8e\xc3\x54\x49\x99\ -\x81\xaf\xd5\x53\xd1\x8e\xc5\x21\x18\x76\x59\x86\xdb\x69\x8e\x06\ -\xb9\x1d\xed\xce\x3c\x8c\x1c\x5c\x57\x5a\xaa\x7c\x31\x08\xa9\x96\ -\x7b\xa2\xb9\x21\x72\x98\xa1\xbb\xb6\x09\x25\x99\x28\x21\x58\x1f\ -\xb1\xa0\xe8\x4c\x04\x46\x0b\x3d\xa8\x0a\x5b\x37\xca\x03\xd4\x6e\ -\x63\xfb\xed\xcb\x86\xe1\x71\xc5\xa9\x24\xa2\x1f\x85\x30\x0b\x0c\ -\x97\xe0\xf1\x7d\xee\xaf\xcf\x65\x73\x43\x8d\x14\x4a\x68\x17\x87\ -\x48\xd6\x42\x10\x4e\xdd\x6f\x21\x29\x63\x42\x34\xbf\x8d\x65\x82\ -\xe2\xf6\x63\x32\x26\x7d\x10\x76\xde\xec\xf6\xf5\x23\x84\x7d\x52\ -\x3a\xae\x2c\x10\xd4\x96\xa2\x20\x5c\x20\xee\x34\x93\x01\x35\x94\ -\x59\x31\x28\xcd\x49\x96\xa5\xcb\x2a\x39\x07\x00\x20\xfc\xdd\xf5\ -\x69\xa2\x7a\xff\x9d\x88\x78\x2b\x20\x2c\xc3\xfa\x41\x29\xce\x0e\ -\xf3\x15\xd9\xb5\xc7\xfc\x30\x69\xa1\xce\xbb\x41\x71\xe0\x51\x76\ -\xe4\x4a\xf4\x6b\xbd\x5d\xdc\xee\x4f\x1a\xe5\x94\x56\x7c\xaf\x51\ -\x02\x62\xe0\x49\x24\xeb\xe7\xac\x73\x6a\x07\x98\xe1\x6f\x1e\x1a\ -\x4d\x33\xa6\x02\xb5\xdf\x12\xee\x99\x40\x4b\x2d\x05\x05\x8e\x02\ -\x14\x6b\x18\x48\x7b\x3f\x62\x54\x10\x49\x28\x6d\x90\x86\xc6\x9f\ -\xa2\x18\x68\xb7\x12\xf0\xd7\xb2\xa9\x0f\x80\xa1\xb0\x90\xf0\x28\ -\x0f\xc0\x22\x20\xd0\x54\x0d\xcd\x41\x6e\xb8\xf5\x7e\xf5\xa8\x02\ -\xd8\x85\x92\xae\x80\x30\x08\x0a\xa2\xbd\xc8\xc3\x6f\x66\x8d\x94\ -\x4e\x98\x71\xb7\xaf\xf0\x78\x20\xac\x00\xb6\x71\x05\xc4\x9c\x24\ -\x60\x25\x18\x33\x42\x39\x42\x03\x16\x25\x24\xf2\xba\x16\xd8\x13\ -\x11\xa8\x99\x20\x96\x3b\x05\x10\x15\x52\x1a\xec\xe9\x2e\x83\x10\ -\xb7\x90\x95\xae\x85\xa6\x9e\xbb\x1f\x63\xd8\x7f\x8c\xe0\xc4\x1d\ -\x94\xf4\xfc\xfd\x46\x7c\xbc\xdf\x5a\x7a\x88\x1c\x27\x69\x19\x53\ -\xd0\x09\xd5\x8f\x71\x61\x99\x07\xdc\x33\x4e\xac\x72\x43\x50\x05\ -\x05\x0f\x16\x81\x96\x9c\x5b\xe9\x68\x95\x33\x8e\xb2\xac\xd1\x9c\ -\x11\xc1\x10\xa7\x28\x68\x56\xe3\xda\xf4\xc8\xba\xff\x3a\xc9\x45\ -\x10\x97\xa7\xe1\x17\x15\x79\x8e\xc9\xa2\xf4\xd1\xd0\x3f\x86\xf5\ -\xaa\x4c\x0e\x1a\xc7\xae\x01\x44\xfa\x76\xa5\x03\x85\xbe\x6a\x3e\ -\xd1\xd7\xea\x65\x10\x0e\x82\xe3\x29\x3c\x31\xae\x08\x67\x96\xb7\ -\xe3\x0e\xb2\xb8\xd9\x74\xb6\xaa\xeb\xe1\xd8\xbf\x8b\x34\x9f\x36\ -\x60\x7b\x8b\xb8\xdc\xe1\x91\x06\xc2\x91\x0d\xf0\x0f\xf8\x42\x13\ -\x6e\x94\xe7\x82\xcb\x5d\x93\x8e\xc1\x01\x9a\x50\xe4\x27\xc1\x2c\ -\xcd\x80\x42\xbf\x64\xc9\x37\xb1\x91\x26\x14\x38\x97\x7f\xba\x8d\ -\x16\x1e\xc3\xe9\xcd\x3b\x81\x31\x03\x05\x73\x1f\xe3\xd9\x40\xed\ -\x4c\xa4\x9d\xfd\x86\xef\x12\x86\x16\xf2\xf9\xeb\x6d\xf4\x07\x97\ -\x78\x82\x6c\xa1\xb5\x7d\x36\x77\x7d\x6b\x89\xf7\xd5\x71\x91\x47\ -\x64\x22\x2e\xc5\xa0\x10\xf7\x45\x9e\x51\x8b\xa0\xe5\xc3\x22\x6f\ -\x41\x44\x15\x57\x03\x82\xed\x72\xbd\x08\xa8\xd6\xa8\x84\x07\x05\ -\x01\x7d\x3b\xba\x38\xc1\xa4\x3c\xaa\xf1\xc8\x8c\xc8\x2f\xf4\x99\ -\x1a\x0f\xa0\x4b\x64\x54\xc1\x54\x93\x60\xd1\x9b\x69\xcd\xe5\xd8\ -\xfd\x94\x5c\x30\x6d\xc6\x4e\x02\xb5\x9e\xc9\x57\xd4\x77\x1f\xb9\ -\xc7\x58\x2c\x17\x97\x15\x78\x86\x56\x91\x5a\xa2\xfe\xe7\x33\x48\ -\x93\x73\x55\xd0\xdc\x8b\x7a\x20\x64\x28\xdf\xe8\x62\x90\x9f\xd1\ -\x40\x58\x61\xcf\x47\x06\xfb\x73\xb3\xc7\x7f\xcf\x3e\xfb\x4c\x81\ -\xd2\x27\x83\x86\xed\x08\xe6\x32\x8a\x6c\x8c\x04\xdb\xa1\xd4\x19\ -\xc6\xce\x1b\x49\xff\xdf\xa4\xd8\xae\xe4\x1c\xa4\xd8\x97\xb2\xeb\ -\x2b\x50\x74\x51\x0c\x1b\x24\x7a\x42\x89\xbe\x94\xa3\x83\xd5\x28\ -\xb4\x02\xc3\xf7\x81\x4f\xa6\x6f\x11\xbb\xef\x77\x77\x68\x8e\xaa\ -\x59\xcd\xfe\x80\xf4\xcd\x8f\x93\x37\xb8\x01\x3c\xd2\xfe\xe5\xc9\ -\x7d\xda\xe4\x8d\x68\xd7\x60\x63\x83\x3c\xbd\x71\x19\xdd\x72\xb4\ -\x4d\xe4\xa0\x41\x63\x12\xf4\xd2\x08\xcd\x0e\x92\x37\xfa\x33\xac\ -\x47\x61\x38\xc8\xdd\xe0\x6d\x12\xd9\x5f\x89\xe7\x73\xb7\x51\x9c\ -\x6b\xdb\x90\x63\x8a\xf3\x38\x18\xa0\x6b\xce\xb8\x6b\xf9\xb8\x23\ -\xd2\x96\x72\x06\x9d\x5e\x93\xbb\x15\xc0\x4f\x19\x68\xfd\x65\x8e\ -\x17\x01\x58\x30\xb1\x56\x5c\xe0\xf7\x26\xe6\xf9\x77\xfb\xdd\xbd\ -\x41\x44\xbd\x7c\x4b\xbf\x23\x2f\xd9\xc1\xdb\xc1\xbd\xd7\x41\xf2\ -\x91\x2a\xc9\xd9\xbe\xdc\x30\x63\x07\x8d\xd9\xa6\xf9\xdb\x98\x90\ -\x96\x0c\xfc\xdb\xc4\x85\x02\x9d\x37\xf0\xd4\x51\xc9\x96\x44\xa1\ -\x31\x50\xf4\xc0\xed\x00\x83\x25\xcc\x92\xe7\x4b\x36\xda\x6d\x85\ -\xfc\xe4\xda\x14\x34\x3e\xda\xbd\x6c\x05\x05\x40\x4b\x8e\x8e\xc7\ -\x15\x6c\x90\x58\x02\x00\xd8\x4b\xbd\xee\xae\xc9\x03\x2a\xd1\x95\ -\xd2\xcb\x40\x22\x03\x43\x01\x5a\x61\x2e\x70\xba\x8a\x24\x97\xdf\ -\xed\x74\x68\x6c\x19\x3a\xd6\x37\x77\x3a\x3b\x76\x3a\x2c\x81\xa6\ -\x16\x20\x3b\x71\x3a\x43\xcb\xa8\xb8\xb4\x07\x5e\xf7\xd1\x86\x51\ -\xc3\xa9\xb1\x43\xb7\x4b\xf7\xee\x84\x71\x69\x8f\xbc\x8e\x92\x87\ -\x70\xa4\xec\xc0\xeb\x90\x25\x86\xa3\xbd\x7b\x3e\xda\x8d\x01\x1d\ -\xa4\xee\x45\x28\x20\xa0\x0c\x45\x83\xaa\x5c\x8c\x6b\x2a\xd1\x1d\ -\xba\x70\x17\x68\xf5\x8c\x79\xd5\xab\x18\x00\x07\x7e\x44\xcb\x78\ -\x86\x9e\x9f\x03\x8a\x3b\x0f\x8d\xad\xe9\xff\x28\x78\x7f\x77\x75\ -\xe3\xde\x4d\xde\x5d\xfd\x07\x74\x60\xa1\xb7\ -\x00\x00\x07\x56\ +\x00\x4e\xa2\x78\x9c\xe5\x5c\xdd\x8f\xa3\x36\x10\x7f\xdf\xbf\x82\ +\xb2\x2f\xad\x2a\x9b\xcf\x24\xc0\x25\xb9\x87\xae\x4e\x3a\xa9\x4f\ +\xed\x55\x7d\x3c\x11\x70\x12\x6b\x01\x47\x86\x6c\x92\xfb\xeb\x3b\ +\xe6\x2b\x21\x61\xa5\x56\x06\x89\xad\x59\x9d\x56\xcc\x8c\x8d\xfd\ +\xe3\x37\xb6\x67\x86\xbd\xe5\xe7\x73\x9a\x68\x6f\x84\xe7\x94\x65\ +\x2b\xdd\xc2\xa6\xae\x91\x2c\x62\x31\xcd\x76\x2b\xfd\xaf\x6f\x5f\ +\x90\xa7\x6b\x79\x11\x66\x71\x98\xb0\x8c\xac\xf4\x8c\xe9\x9f\xd7\ +\x4f\xcb\x9f\x10\xd2\x7e\xe3\x24\x2c\x48\xac\x9d\x68\xb1\xd7\xbe\ +\x66\xaf\x79\x14\x1e\x88\xf6\xf3\xbe\x28\x0e\x81\x61\x9c\x4e\x27\ +\x4c\x6b\x21\x66\x7c\x67\xfc\xa2\x21\xb4\x7e\x7a\x5a\xe6\x6f\xbb\ +\x27\x4d\xd3\xe0\xb9\x59\x1e\xc4\xd1\x4a\xaf\x1b\x1c\x8e\x3c\x29\ +\x0d\xe3\xc8\x20\x09\x49\x49\x56\xe4\x86\x85\x2d\x43\xbf\x9a\x47\ +\x57\xf3\x48\x3c\x9d\xbe\x91\x88\xa5\x29\xcb\xf2\xb2\x65\x96\x3f\ +\xdf\x18\xf3\x78\xdb\x5a\x8b\xd1\x9c\x9c\xd2\xc8\xf2\x7d\xdf\x30\ +\x6d\xc3\xb6\x11\x58\xa0\xfc\x92\x15\xe1\x19\x75\x9b\xc2\x18\xfb\ +\x9a\xda\xa6\x69\x1a\xa0\xbb\x5a\xfe\x3b\xab\x20\x07\x40\x0f\xf0\ +\xaf\x35\x6f\x04\x38\x67\x47\x1e\x91\x2d\xb4\x23\x38\x23\x85\xf1\ +\xf2\xed\xa5\x55\x22\x13\xc7\x45\x7c\xd3\x4d\x83\x67\xe7\xa9\x1d\ +\x90\xb3\x30\x25\xf9\x21\x8c\x48\x6e\x34\xf2\xb2\xfd\x89\xc6\xc5\ +\x7e\xa5\x3b\x2e\xb6\x1c\xb8\x66\xa5\x70\x4f\xe8\x6e\x5f\xdc\x4b\ +\x69\xbc\xd2\x61\xf4\xb6\xef\x55\xf7\x37\xe4\xb0\x2a\x83\xba\xe3\ +\xa0\xd5\x98\xd8\xb7\xb1\xa5\x71\x6b\xe6\x2c\x2a\x9b\x66\x0a\x41\ +\xcc\x22\x31\x26\xe8\x92\xa4\x34\x3c\x16\x2c\x85\xb7\x16\x45\x49\ +\x98\xe7\x74\x4b\x23\xb8\x61\xd9\x21\x39\xee\x68\xf6\xbd\x2b\xfc\ +\x9e\x53\xf2\x46\x70\x83\x63\xfb\x50\x72\x3e\x30\x5e\xa0\x73\x7c\ +\x00\x34\xe7\x8b\x5e\xe5\xa5\x51\xae\x41\xbb\x8c\xc9\x36\x17\x56\ +\xd5\xd4\xc4\x1d\xcc\x6d\xa1\x6b\x46\xa9\x6d\x47\x2a\x86\x19\xbf\ +\x51\x72\xba\xda\x6e\xc2\xbc\x82\x4f\xd3\x0e\xe1\x0e\xa8\x96\x30\ +\xbe\xd2\x9f\xb7\xe5\x55\x2b\x36\x8c\xc7\x84\x37\xaa\x79\x79\x75\ +\x54\x0c\x5e\x07\x2d\x2e\x95\x73\xd5\x7d\x37\xe3\x15\xbd\xb6\x7a\ +\xb3\x5f\x9f\xef\xc3\x98\x9d\x56\xba\x7d\xaf\xfc\xc1\x58\xba\xd2\ +\x67\x78\xe6\x7b\xbe\x69\xdd\x6b\xa3\xf3\x4a\x47\xb3\x05\xf6\x7c\ +\xd7\xf7\x1f\xb5\xf0\x3c\xd7\xc6\xee\xc2\xb4\xe7\x8f\xca\x23\xe7\ +\xe0\x7d\x28\x09\x2f\x04\x26\x55\xfe\x6a\x8c\xf2\x3d\x3b\xed\xb8\ +\x00\xa7\xe0\x47\x72\xdf\x52\x68\xd0\x66\xc3\xce\xfd\x6a\x20\xc3\ +\x51\xf8\x35\x3a\x66\xb4\x00\xdf\x39\x9c\x6f\x7b\x3d\xd2\x98\xe4\ +\xfd\x0d\xf3\x2c\x3c\xa0\x5d\xc2\x36\x61\xd2\x6f\x70\xa2\x19\x80\ +\x84\x6a\x9a\x5b\x4e\xfb\x0e\xee\x2d\x1a\xce\x2f\x4c\xef\x1d\x0b\ +\x18\xfb\xc3\x7b\xa8\x55\x97\xf7\x55\x69\x78\xa6\x29\xfd\x41\x00\ +\x18\xab\xa4\x1d\x50\xab\x03\x4b\xd5\x4c\xd3\x8a\x8b\xf0\xdf\xf3\ +\x45\xc8\xf4\x46\x28\xf0\x14\x02\xdb\xf7\x17\xad\x90\x71\x0a\x6e\ +\x71\x33\x9c\x46\x74\xb9\x15\x09\x6f\x87\xc5\xfa\x5c\xf2\xab\x64\ +\xdf\xe2\x5e\x77\xb9\xd5\xd5\xb4\x37\x1e\x79\x5f\xca\x53\x52\x84\ +\x71\x58\x84\x57\x27\x68\x24\x30\x36\xb3\x99\x19\x2c\x9c\xc1\x1f\ +\x2f\x5f\xd6\xf5\x83\x96\x51\x14\xfc\xcd\xf8\x6b\xf3\x5c\x4d\x13\ +\x06\xe1\x86\x1d\x01\x69\x7d\xdd\x8a\x97\x71\x14\xc0\x52\x07\x4b\ +\xc0\x9a\xa6\x40\x6d\xb1\x4a\xfe\x0a\x4b\xdb\xd2\xb8\x2a\x3a\xc6\ +\x02\xac\x6b\xa7\x55\xb7\x9c\x54\x6b\x66\xef\xc6\x11\x47\x29\x15\ +\x8d\x8c\x3f\x0b\x9a\x24\x5f\xc5\x43\xea\x19\xdf\x74\x4a\x8b\x84\ +\x5c\x85\x4b\xa3\x1e\x7d\x3d\x37\xe3\x66\x72\x4b\xa3\x99\x7d\x79\ +\xb7\xbb\xa2\xd2\x71\x8a\xf6\x45\x27\xe1\x86\x00\x43\x7f\x17\x4a\ +\xed\x41\xbb\xe3\xec\x78\x48\x59\x4c\xea\xe6\x2d\x9a\x24\x2a\xda\ +\x57\x56\x5c\x12\xd0\x6f\x61\xf4\xc1\xb3\x69\xba\xfe\xc6\xfe\x24\ +\x6e\x50\xbd\x4c\x04\x56\x75\xcb\x8f\x09\x2c\x77\x6f\x24\x63\x71\ +\xfc\x29\x2f\x38\x7b\x25\xc2\x5e\x5c\xf5\x6d\xe5\x0c\x81\x89\x5d\ +\xc7\x77\xc5\xbb\x6f\xe4\x80\x10\xe1\x09\xb0\xb5\x08\xdc\x46\x16\ +\x87\xb0\xcc\x70\x1e\x5e\x82\x0c\xb6\xf9\x46\xda\x3e\xb3\x43\x54\ +\x31\xdc\x99\xe7\xf8\xc8\x42\x5e\xab\xa8\x3d\x6f\x86\x1d\xe7\xba\ +\x95\x88\xab\x71\x38\x17\xfb\xa5\xc6\x6d\x35\x82\xb2\x26\xbe\xa3\ +\x2c\x70\xd5\xc1\x5e\x67\x19\x85\xd7\xde\x71\x02\x5e\xf2\x79\xee\ +\x8a\x6b\xde\xbe\xdd\xf7\x51\xdc\x38\xe2\x67\xca\x28\x22\x6b\x0c\ +\x1c\xd1\xe3\x82\x20\x07\xe4\xf4\xe9\x88\xfc\x31\x80\xb4\x1c\xbc\ +\xe8\x5a\xca\xe1\x28\x4e\x0f\x80\xcb\x94\x71\xb4\xd0\x6c\x0c\x24\ +\x3d\xec\x95\x73\xb1\xd5\x41\x72\x31\x06\x8e\xb6\x83\x87\x5a\x1d\ +\x3f\x80\x53\x03\x19\x47\x61\xa3\xe5\x61\xd5\x36\x1a\x7f\x1c\x3e\ +\x3a\x0e\x76\x15\xdb\x69\x80\x94\xc8\x1c\xc5\xb7\x3d\x3c\x2b\x4d\ +\x95\x60\xa5\x24\x82\x66\x87\x85\x03\x1f\x1c\xa7\xce\x42\x49\xec\ +\x1e\xcd\x55\x3c\x7c\xbb\x63\xa0\x38\xf8\xd1\x7b\xe2\x30\xca\xc6\ +\x81\x1d\x37\x1e\xfa\xb8\x3d\x75\x37\x46\x9e\x2c\x7c\xbd\x1c\x1c\ +\x1a\xc6\x89\x53\xd0\x94\xf6\xe4\x0e\x09\x87\x8e\x54\x26\x4f\x42\ +\x17\xd9\x63\xb0\x70\x68\x1c\xa7\xce\x42\x67\x48\x12\xaa\x14\xe6\ +\xcd\xc7\x60\xdf\x80\x00\x4e\x9d\x78\xd2\x81\x5d\x77\x0f\x1e\x38\ +\x34\x9e\x3c\xfd\xdc\x71\x08\xa8\x5e\x8a\x41\x3e\x99\xdd\x1f\x97\ +\x0c\x9c\x61\x98\x38\x90\x70\x9a\x91\xc6\xb1\xbb\x95\x0c\x9c\x55\ +\xf8\x00\x0e\x6d\x4b\x2f\x89\xfd\x7b\x8a\x52\xf9\x99\x8a\x89\xc3\ +\x9e\xad\x55\xf4\x65\xe9\xd3\x75\x07\x41\xd5\xf2\x0b\x22\xe1\xea\ +\xca\x72\xd0\x9e\xdf\xef\xc5\x65\xbe\x6b\xe1\x28\xe4\xcd\x55\xe6\ +\x5a\x76\x5d\xec\x45\x12\x38\xa9\x48\x90\x57\x15\x52\x64\x93\xff\ +\xbd\x20\x5a\xca\x04\x2c\x4d\x0d\x45\xb6\xb2\xd7\x0b\xa3\x77\x5f\ +\x57\xf9\x9f\x1f\x76\x3c\xb4\x90\xde\x60\x7a\x81\xb4\x95\x2c\xec\ +\xcd\x90\x29\x1b\x0d\xf6\x7b\xb7\x5a\x47\xc7\xba\xe0\x3c\x0e\x33\ +\xe1\x10\x59\x5a\x2a\x93\xa0\xad\x4b\xce\xd2\x47\xf1\x7e\x3f\xf7\ +\xb0\x22\xe5\x16\xe9\xef\x1f\xd4\x3e\x3e\x4a\xfb\xb2\x85\xef\x84\ +\x2a\xa2\xe8\x22\x5b\xb6\xe6\xd7\x0b\xe4\x80\x67\xf0\x89\xbb\xb1\ +\x87\x64\x2b\x2d\x96\xba\x07\x6f\x79\xf0\x7a\xd9\x37\x20\x86\x13\ +\x67\x5f\x99\xd2\x71\xa5\xbf\x7e\x1f\x33\x66\x99\x3c\x0b\x45\x82\ +\x76\x94\x45\x50\xad\xe0\xcf\x74\x06\x3e\xd2\x0c\x1d\xf2\x4d\xfe\ +\x1b\xed\xb9\x7c\x0e\xa2\x8f\x86\x8a\x85\xce\x26\x04\x7a\xc3\x2e\ +\x88\x43\x47\xcb\x13\x07\xb0\xac\x41\x23\x47\xb6\xea\xd7\xbf\x33\ +\x2b\x97\x78\x10\xd1\xb2\x2f\x9d\xa2\xed\x0d\x56\xd4\x4a\x3c\x54\ +\xd5\x2b\x6f\xd8\xd3\xb6\x3a\xe9\x86\xba\x10\x2d\x5d\xcc\xef\xdf\ +\x62\x86\x83\x71\xe2\x1e\x5d\x57\xa1\xe5\xff\x2a\x6d\xd4\x1c\xe2\ +\x87\x00\xd1\x46\xbe\x6c\x72\xdb\x52\xb8\xf0\xe7\xca\x7f\x28\x7b\ +\xc3\x37\x15\x93\x5f\x65\x05\x5a\xfa\x73\xbb\x2e\x88\x6a\x71\x50\ +\xb8\xb2\xec\x59\xbb\x8b\x9f\x52\xe9\xaf\xaa\xee\x2c\xbd\x25\x77\ +\x11\x54\x2d\x7d\x53\x96\x9c\xa5\x53\x0f\x5d\x0c\x87\x0e\x99\x3f\ +\x00\x88\x75\xb5\x79\xe0\x3d\x45\xbd\x78\xaf\x2a\x34\x4b\xe7\xb5\ +\xef\xb6\x66\xb5\xce\x87\x37\x35\x66\xe9\x2a\xf3\x9d\x63\xff\xb7\ +\x40\x65\x69\xec\xd6\x4f\x4b\xf1\xbf\x03\xad\x9f\xfe\x01\xed\x59\ +\x64\x2c\ +\x00\x00\x0b\xed\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x65\x6c\x6f\x61\ +\x64\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\ +\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\ +\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\ +\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\ +\x6d\x3d\x22\x31\x2e\x39\x37\x39\x35\x31\x30\x34\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x33\x36\x2e\x39\x36\x33\x33\x31\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x38\x2e\ +\x39\x35\x30\x31\x32\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\ +\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\ +\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\ +\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\ +\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\ +\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\ +\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ +\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\ +\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\ +\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\ +\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\ +\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\ +\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\ +\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\ +\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\ +\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\ +\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\ +\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\ +\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ +\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\ +\x30\x30\x30\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\ +\x65\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\ +\x72\x69\x61\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x77\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x66\x6f\x6e\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\ +\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\ +\x64\x69\x75\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\ +\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\ +\x69\x6c\x79\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2d\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\ +\x61\x74\x69\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\ +\x69\x6e\x64\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\ +\x69\x67\x6e\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\ +\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\ +\x65\x78\x74\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\ +\x69\x6e\x65\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\ +\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\ +\x6f\x72\x64\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\ +\x61\x6c\x3b\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\ +\x6d\x3a\x6e\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\ +\x6f\x64\x65\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\ +\x69\x6f\x6e\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\ +\x2d\x73\x68\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\ +\x74\x65\x78\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\ +\x74\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\ +\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\ +\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x32\x32\x32\ +\x62\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\ +\x33\x33\x34\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ +\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ +\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2c\x39\x2e\x36\ +\x36\x36\x36\x36\x36\x37\x20\x43\x20\x33\x2e\x38\x31\x34\x30\x31\ +\x30\x37\x2c\x31\x34\x2e\x38\x37\x36\x37\x39\x35\x20\x34\x2e\x34\ +\x33\x32\x38\x39\x30\x37\x2c\x32\x32\x2e\x36\x34\x34\x37\x39\x34\ +\x20\x39\x2e\x34\x2c\x32\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x31\ +\x34\x2e\x33\x36\x37\x31\x30\x39\x2c\x33\x31\x2e\x34\x38\x38\x35\ +\x34\x20\x32\x31\x2e\x39\x34\x37\x33\x34\x32\x2c\x33\x30\x2e\x38\ +\x31\x30\x31\x32\x38\x20\x32\x36\x2e\x31\x33\x33\x33\x33\x31\x2c\ +\x32\x35\x2e\x36\x20\x63\x20\x34\x2e\x31\x38\x35\x39\x39\x2c\x2d\ +\x35\x2e\x32\x31\x30\x31\x32\x38\x20\x33\x2e\x35\x36\x37\x31\x31\ +\x2c\x2d\x31\x32\x2e\x39\x37\x38\x31\x32\x37\x20\x2d\x31\x2e\x34\ +\x2c\x2d\x31\x37\x2e\x34\x20\x6c\x20\x33\x2c\x2d\x32\x2e\x38\x36\ +\x36\x36\x36\x36\x37\x20\x48\x20\x31\x37\x2e\x30\x36\x36\x36\x36\ +\x35\x20\x56\x20\x36\x2e\x34\x20\x6c\x20\x33\x2e\x32\x2c\x38\x2e\ +\x35\x33\x33\x33\x33\x33\x20\x32\x2e\x36\x36\x36\x36\x36\x36\x2c\ +\x2d\x33\x2e\x37\x20\x63\x20\x32\x2e\x33\x37\x39\x33\x30\x32\x2c\ +\x33\x2e\x32\x37\x37\x37\x32\x39\x20\x33\x2e\x31\x37\x31\x30\x35\ +\x38\x2c\x38\x2e\x39\x35\x30\x32\x36\x36\x20\x30\x2e\x35\x33\x33\ +\x33\x33\x34\x2c\x31\x32\x2e\x32\x33\x33\x33\x33\x34\x20\x2d\x33\ +\x2e\x30\x34\x31\x38\x35\x39\x2c\x33\x2e\x37\x38\x36\x30\x37\x34\ +\x20\x2d\x38\x2e\x32\x32\x30\x37\x31\x35\x2c\x34\x2e\x32\x31\x39\ +\x37\x32\x20\x2d\x31\x31\x2e\x37\x39\x39\x39\x39\x38\x2c\x31\x2e\ +\x30\x33\x33\x33\x33\x33\x20\x2d\x33\x2e\x35\x37\x39\x32\x38\x33\ +\x35\x2c\x2d\x33\x2e\x31\x38\x36\x33\x38\x37\x20\x2d\x34\x2e\x30\ +\x34\x31\x38\x35\x38\x35\x2c\x2d\x38\x2e\x39\x31\x33\x39\x32\x35\ +\x20\x2d\x31\x2c\x2d\x31\x32\x2e\x37\x20\x43\x20\x31\x31\x2e\x32\ +\x2c\x31\x32\x2e\x33\x20\x31\x31\x2e\x32\x2c\x36\x2e\x39\x36\x36\ +\x36\x36\x36\x37\x20\x38\x2c\x39\x2e\x36\x36\x36\x36\x36\x36\x37\ +\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ +\x61\x74\x68\x32\x39\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ +\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x73\x73\x63\ +\x63\x63\x63\x63\x63\x73\x73\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x09\x8a\ +\x00\ +\x00\x63\x16\x78\x9c\xe5\x5c\x5b\x6f\xe3\xb8\x15\x7e\x9f\x5f\xa1\ +\x3a\x2f\x33\x68\x44\xf3\x26\x91\xf4\x38\xd9\x87\x0e\x16\x58\xa0\ +\xfb\xd2\x6e\xdb\xc7\x85\x2c\xd1\x8e\x3a\xb2\x64\x48\x72\xe2\xcc\ +\xaf\xef\xa1\x6c\xc9\xb2\x63\x1a\x33\xdd\x70\xb0\xe1\xd8\x08\x12\ +\x1d\x92\x12\xcf\xc7\x73\xf9\x78\xcc\x78\xfe\xd3\x6e\x5d\x04\x8f\ +\xba\x6e\xf2\xaa\xbc\x9b\x10\x84\x27\x81\x2e\xd3\x2a\xcb\xcb\xd5\ +\xdd\xe4\x5f\xbf\xfd\x1c\xca\x49\xd0\xb4\x49\x99\x25\x45\x55\xea\ +\xbb\x49\x59\x4d\x7e\xba\x7f\x37\xff\x4b\x18\x06\x7f\xab\x75\xd2\ +\xea\x2c\x78\xca\xdb\x87\xe0\x97\xf2\x73\x93\x26\x1b\x1d\xbc\x7f\ +\x68\xdb\xcd\x6c\x3a\x7d\x7a\x7a\x42\xf9\x41\x88\xaa\x7a\x35\xfd\ +\x10\x84\xe1\xfd\xbb\x77\xf3\xe6\x71\xf5\x2e\x08\x02\x78\x6e\xd9\ +\xcc\xb2\xf4\x6e\x72\x18\xb0\xd9\xd6\x45\xd7\x31\x4b\xa7\xba\xd0\ +\x6b\x5d\xb6\xcd\x94\x20\x32\x9d\x1c\xbb\xa7\xc7\xee\xa9\x79\x7a\ +\xfe\xa8\xd3\x6a\xbd\xae\xca\xa6\x1b\x59\x36\x37\xa3\xce\x75\xb6\ +\x1c\x7a\x9b\xd9\x3c\xb1\xae\x13\x51\x4a\x4d\x31\x9d\x52\x1a\x42\ +\x8f\xb0\x79\x2e\xdb\x64\x17\x9e\x0e\x85\x39\x5e\x1a\x4a\x31\xc6\ +\x53\x68\x3b\xf6\xfc\xba\x5e\xb3\x06\x00\xdd\xc0\xcf\xd0\xbd\x17\ +\xa0\xa6\xda\xd6\xa9\x5e\xc2\x38\x8d\x4a\xdd\x4e\x3f\xfd\xf6\x69\ +\x68\x0c\x31\xca\xda\x6c\x74\x9b\x1e\xcf\x93\xa7\x9e\x80\x5c\x26\ +\x6b\xdd\x6c\x92\x54\x37\xd3\x5e\xde\x8d\x7f\xca\xb3\xf6\xe1\x6e\ +\xc2\x38\x22\x0c\x5e\x51\x27\x7c\xd0\xf9\xea\xa1\x3d\x97\xe6\xd9\ +\xdd\x04\x66\x4f\x95\xdc\x5f\x8f\x8c\x83\xec\x3b\x1c\x6e\x3c\x1b\ +\x5a\x30\x52\x14\x91\xa0\x26\x11\x13\xfb\x3e\xbd\x0a\xb3\xac\x4a\ +\xcd\x9c\xe0\x96\x7a\x9d\x27\xdb\xb6\x5a\xc3\xaa\xa5\x69\x91\x34\ +\x4d\xbe\xcc\x53\xb8\xa8\xca\x4d\xb1\x5d\xe5\xe5\xef\xb5\x5e\x57\ +\x8f\xfa\xf7\x56\xaf\x37\xa8\x87\x6f\x78\x96\xde\x6d\xaa\xba\x0d\ +\x77\xd9\x06\x40\x8c\xc5\xc5\xc6\xe7\xbe\xf1\x1e\x5a\xe7\x99\x5e\ +\x36\xa6\xd7\x5e\x23\x73\x05\x2a\x89\x49\x30\xed\x5a\x87\x09\x9a\ +\xd9\x65\x8f\xb9\x7e\x3a\xf6\x5d\x24\xcd\x1e\xb5\x20\xd8\x24\x2b\ +\xb0\xb0\xa2\xaa\xef\x26\x37\xcb\xee\x75\x68\x58\x54\x75\xa6\xeb\ +\xbe\x29\xee\x5e\x27\x4d\x15\xac\x42\xde\x3e\xef\x7d\xea\x70\xef\ +\x7e\xbe\xe6\xae\x43\x3b\xbe\xdc\xde\x3c\x24\x59\xf5\x74\x37\xa1\ +\xe7\x8d\x5f\xaa\x6a\x7d\x37\x89\x50\xa4\xa4\xc2\x58\x9d\x37\xa7\ +\xbb\xbb\x49\xc8\x29\x8a\x98\x14\x07\x9c\xc6\xad\x66\x42\x02\x09\ +\xc1\x09\x7b\x71\xe7\x74\x5b\xd7\xe0\x75\x61\x91\x3c\x6b\xd0\xaa\ +\xfb\x45\x0e\x9d\x9a\x87\xea\x69\x55\x1b\x74\xda\x7a\xab\xcf\x47\ +\x9a\x96\x70\xb1\xa8\x76\x97\x9b\xc1\x08\xb6\xc6\x9f\xc3\x6d\x99\ +\xb7\xe0\x33\x9b\xdd\xf8\xae\xdb\x3c\xd3\x20\x5c\x26\x45\xf3\x62\ +\x64\x53\x26\x9b\x70\x55\x54\x8b\xa4\xb0\xf4\x78\xca\x4b\xc0\x29\ +\x3c\x18\x38\x61\xc3\x32\x9c\xf7\xe8\xad\x5d\x60\x69\xe9\x01\xb3\ +\x7f\xb1\x14\x87\xa6\x67\x7b\xd3\x3a\xd9\xe5\xeb\xfc\x8b\x06\x68\ +\x48\x67\x79\x60\x5d\x27\xc0\xec\x87\x05\x41\xfb\x6c\x3c\x77\xf7\ +\x6c\x64\x93\x5e\x68\x10\x35\x02\xaa\x94\x18\x84\x55\x9d\x83\x43\ +\x8c\xa6\xd3\x8b\x9e\xc7\x22\xe3\xe7\x10\xa6\x77\x9d\x89\x75\x06\ +\x28\xce\xdb\x9e\xc7\x6d\x07\xcb\x9f\xbe\x34\xfd\x4e\xbe\xd6\x6d\ +\x92\x25\x6d\x72\xf4\x83\x5e\x02\x73\xc3\xbd\x66\x10\x32\x67\xff\ +\xf8\xf4\xf3\xfd\xe1\x41\xf3\x34\x9d\xfd\xa7\xaa\x3f\xf7\xcf\x0d\ +\x02\xd3\x21\x59\x54\x5b\x40\x7a\x72\x3f\x88\xe7\x59\x3a\x83\x20\ +\x07\xce\x7f\x9f\xaf\xc1\xba\x4d\x7c\xfc\x2b\x04\xb5\xf9\xf4\xd8\ +\x70\xd2\xd9\x80\x75\xbc\xe9\xfe\xb6\xb5\xde\x47\xcb\x8b\x29\x23\ +\x4b\xd7\xb9\x19\x34\xfd\x67\x9b\x17\xc5\x2f\xe6\x21\x07\x8d\x47\ +\x37\xcd\xdb\x42\x1f\x85\xf3\xe9\x61\xf6\x07\xdd\xa6\x23\xe5\xe6\ +\xd3\x5e\xfb\xee\x6a\x75\x44\xe5\xc4\x2d\x86\x85\x2e\x92\x85\x06\ +\x13\xfd\xbb\x69\x0c\x5e\xb4\xae\xea\x6a\xbb\x59\x57\x99\x3e\x0c\ +\xef\xd1\xd4\x45\x91\x6f\x9a\x41\xd1\xa6\x7d\x2e\xa0\x4b\x17\x55\ +\x66\x37\xb8\x7b\x7d\xcc\xf2\x66\x03\x83\x20\xf8\x17\x79\xa9\x3f\ +\x42\x88\xac\x97\x45\xf5\x34\x7b\xcc\x9b\x7c\x51\xe8\x8f\xdd\xef\ +\xbc\x00\xe5\x07\xd1\x12\x10\x98\xdd\xf0\xcc\xbc\xbb\x8b\xf0\x10\ +\x6d\x66\x64\x7f\x59\x6f\x0b\x3d\x2b\xab\xf2\x0b\xc4\xa9\x8f\x4d\ +\x5b\x57\x9f\xf5\xec\x86\x4a\xca\xe0\x79\xfb\xcb\xbd\x43\xcd\x18\ +\x8a\x09\x26\x4c\x12\xd9\xcb\xcd\x24\x40\xa7\xd9\x62\xdb\xb6\x63\ +\xd9\x7f\xab\xbc\x9c\xc1\x12\xe8\xba\x97\x76\x17\x05\xf8\x46\x3b\ +\xe3\xbd\x2c\x4b\x20\xae\xd5\x35\xa8\x03\x4f\xd7\x63\x69\xb5\x5c\ +\x36\xba\x9d\x51\x24\x19\x95\x98\x44\xc3\x03\x8f\x53\x5f\x27\xf5\ +\x67\x5d\xef\x47\xea\x32\x01\x4d\xc3\x45\x92\x7e\x36\xe0\x96\xd9\ +\x2c\x49\x21\xc8\x6c\x0b\xa0\x24\x27\xce\xb5\x49\xda\x07\xa6\x44\ +\x3c\x08\x4d\x80\xa4\x0c\x11\x2e\x38\xa6\x47\x29\xb8\x0a\x8d\x51\ +\x8c\x25\xe6\x47\x37\xaa\x8d\x73\x49\x64\x28\x83\x3c\xde\xa1\x86\ +\xbe\x1c\xc9\x98\x63\xc6\xc5\x60\x64\xf3\x5a\xa7\xad\x9b\x95\x94\ +\xd8\xbc\xbf\x7a\x25\xc7\xd0\xee\x97\x91\x22\x2e\xa4\x62\xec\xff\ +\xc4\xd0\x68\xc6\x94\x3a\x22\x70\x88\xb6\x94\x23\x15\x09\x2a\xd4\ +\xd0\xd0\x07\x59\x2a\x10\x8e\xa8\xa2\xc7\x16\x40\x92\x21\x49\x30\ +\x15\x24\x1a\x84\x06\x74\x14\x03\xd3\x50\x94\x9f\x82\x6e\xd2\x9b\ +\x8c\xc9\x19\xe6\x9c\x47\x92\x4a\x7e\xc4\xdc\xa9\x03\xc5\x0b\xb9\ +\x88\xe5\x37\x38\x10\x31\xef\x73\xe4\x65\x2c\x24\x03\x98\xde\xba\ +\x03\x85\xe4\xc4\x85\x48\x84\x14\x16\x52\x46\x27\x2e\x14\x23\x46\ +\x24\xe3\xea\x6c\x35\x29\x12\xf1\x89\x5f\x75\xab\xc9\x84\x90\x82\ +\x46\xc7\xd5\x34\x8f\x3a\x5b\xca\x6e\x25\x46\xaa\x0e\xab\x7a\x82\ +\xf2\x90\xe4\xe8\x66\xf7\xed\x38\x0f\x00\x0d\xf3\x03\xb5\x7f\x0d\ +\x04\xa2\xb0\x6e\x24\xa6\xb7\xa0\x2b\x15\x94\x4b\x15\xfc\x3b\x00\ +\x9b\xe7\x44\x10\x7e\x01\x23\x25\x8f\xc2\x81\x53\x55\x25\x4c\xa3\ +\xad\xea\x10\xd8\xd5\x63\xd2\x6e\x6b\x6d\x72\xf8\x9f\x52\xe5\x75\ +\x40\x08\xa2\x10\xd5\x70\xa7\x72\x1c\x31\xd0\x3e\x80\x5d\x08\x51\ +\x38\x22\xfc\x56\xa1\x88\x46\xf1\xc8\xdb\x7b\xd5\x39\xcc\xee\x6d\ +\xab\xfe\x6b\x40\x62\x84\x31\x23\x9c\xdc\xc2\x5f\x9c\x44\x91\x08\ +\x00\x03\x49\x68\x4c\xc5\x2d\x84\x33\x2a\xb8\xe4\xd1\x25\xd5\xe9\ +\xdb\x56\x7d\x1d\x50\x02\xae\xac\xb0\x31\x74\x48\x6b\x8a\xf0\x98\ +\x04\x87\x45\x67\xb7\xe0\xa6\x90\xfd\x09\xbb\xa4\x39\x7f\x3d\xcd\ +\x3b\x6d\x25\x1e\x94\x5f\x08\xf3\xfe\x0e\xeb\xce\xc0\xcb\xa5\x60\ +\x58\x81\x79\xc3\xe6\x01\xec\x5b\x04\xb0\x1f\x56\x04\x76\x8b\xf2\ +\x96\x4a\x84\x59\x2c\xc7\x9e\x7d\x54\x3f\xfe\x76\xf5\x2f\x70\x84\ +\xbd\xfa\x5a\x25\x0b\x12\xdb\x73\x8d\x7e\xd4\x65\x95\x65\x03\x3e\ +\x44\x66\xf1\x72\x79\x8a\x0f\x46\x02\xac\x51\x0a\xcc\xbf\x3d\x83\ +\xbc\x44\xa7\x4f\xfc\xc0\xfe\x55\x18\x9d\xa7\x7e\x82\x11\x83\x40\ +\x31\x8a\x83\x7d\xea\x7f\xd9\x62\x08\x97\x44\x94\x44\xa3\x0d\x0a\ +\x24\x80\x90\x21\x45\x0d\xf8\xe4\x2c\xf5\x0b\x88\xb9\xe4\x2c\x5b\ +\x40\x60\xa2\x11\x8e\xd8\x51\xda\xd6\x49\xd9\x98\xad\x03\x4c\xb3\ +\x6a\x21\x6b\xbd\x87\x87\x70\x41\xb0\xa2\x1f\x8e\x80\xaf\x4e\x36\ +\x5a\x4c\x8d\x0c\x79\x74\x03\xd8\x7e\xd4\xf9\xee\x3d\x46\x11\x98\ +\x7a\x44\x14\xbb\x0d\x8d\x16\x24\x26\x82\xb3\xdb\x93\x3f\x87\x1e\ +\x1c\x61\xc9\xa4\xa2\xf1\x2d\xf8\x0f\x8b\x23\x8a\xd9\x87\x61\xc7\ +\x73\xb2\xd0\x7b\x0d\x30\x04\x13\x22\xc0\xc4\x8e\xc0\xec\x15\xc6\ +\xa3\x6b\xa3\x69\x6c\x60\xe1\x8a\x8c\xc4\x06\x16\xc8\x3b\x8a\x45\ +\x2c\x1a\x89\x07\xb6\x85\x38\x8b\xe8\x78\x40\x4f\xd0\x5e\x34\xf4\ +\xab\x1a\x01\x27\x19\x89\xcf\x5c\x31\x4d\xc1\xb6\xbe\xda\x16\xf7\ +\x85\x91\x33\x5b\xfc\x23\x26\x38\xda\xa2\xbd\x3e\x8e\x46\x2c\x05\ +\x7f\x45\x1c\x43\x62\x47\x32\x49\x32\xee\x2b\x92\x26\x60\x02\x43\ +\x7a\x55\x24\x43\x69\xc7\x32\x8e\xaf\x6d\x82\xde\x34\x96\x10\x42\ +\x84\x52\xe4\x64\xf4\x1f\xc7\x12\xdb\xb1\x84\x9d\x54\xe4\x2b\x96\ +\x1c\x52\x3a\x67\xe2\x55\xed\x92\xd9\xa0\x5c\x2e\x69\x42\x13\x5f\ +\xa1\x8c\x51\x1c\xab\x48\xbe\xae\x59\x8a\x1f\x13\x4b\x85\x08\xec\ +\x81\xd5\xeb\x62\x29\xc3\xe8\x87\x44\x93\x11\x14\x99\x6d\xe7\xeb\ +\x26\x1f\x1c\xfa\xee\xe7\xc0\x22\xa5\xa0\x92\x9d\xa2\xe9\x84\x14\ +\x85\xdc\x86\xa5\x27\xb4\xc8\x82\xa5\x1b\x5a\x74\x8d\x64\x7a\x41\ +\x8c\x2e\xa3\xe9\x88\x18\xd9\x73\x90\x27\xd4\xc8\x82\xa6\x13\x6a\ +\x14\xc6\xf6\xa0\xa9\x94\xbf\x60\xba\x21\x47\x21\xfd\x31\xd1\x74\ +\x45\x8f\x42\x6b\x9d\xc3\x0f\x3c\xbb\x08\x49\x15\xa1\xa7\x78\x3a\ +\xa8\x17\x5d\xdb\x9b\xfb\x50\x31\xb2\x21\xe9\x84\x1c\xc9\x2b\x60\ +\xfa\xc0\x8e\x6c\x60\x3a\x62\x47\x57\x8a\x99\x3e\xb0\x23\x0b\x9a\ +\xae\xd8\x91\x35\xa1\xfb\xc1\x8e\x6c\x68\xba\x61\x47\xd6\x7c\x2e\ +\xf7\x1f\xf0\x79\x0a\xa6\x23\x76\x64\xdd\xa0\xfb\x8d\xa6\x33\x76\ +\x64\x4d\x43\x5e\xe3\xe9\xac\x7c\x64\xdf\x58\xfa\x81\xa7\xc9\xdf\ +\x91\x10\xf8\x3b\xb0\x4d\x7c\xad\x80\xe4\x03\xdf\xb4\x61\xe9\xa6\ +\x18\x67\xcf\x43\x7e\x10\x4e\x1b\x9a\xae\xca\x71\xf6\xc2\xbb\x1f\ +\x94\xd3\x82\xa7\xb3\x82\xdc\x35\x0a\xef\x03\xe9\xb4\xe1\xe9\xa8\ +\x24\x67\x77\xf7\x8c\x7b\x9c\x88\x9c\x15\xe5\xec\x89\xdd\x6f\x3c\ +\xdd\x95\xe5\xec\xc7\x13\xbc\x46\xd4\x1d\xf5\xa4\xf6\xcf\x88\xfc\ +\x40\xb4\x73\x6e\xc6\xd8\xf7\x20\x9f\xd6\x7d\xa6\xc9\xed\xfe\x42\ +\xe9\x84\x7b\x5a\xcb\x49\x7e\x63\xe9\x88\x79\x5a\x13\x91\xd7\x68\ +\xba\xe2\x9d\xd6\xfa\x87\xdf\x68\x3a\x2a\x75\x5e\xf9\x58\x9d\xb1\ +\xb7\xbf\x27\xb2\xa1\xe9\x88\x74\x5e\xd9\x61\x72\x9e\xbc\xf9\xc3\ +\x48\x36\x34\x9d\x51\x4e\x6b\x4e\xa7\x89\x58\xbe\xfd\x7a\x92\x05\ +\x4f\x87\xb5\x4e\x7b\x31\x5e\x24\x49\xa6\xdf\x3c\xa0\x10\x25\xa9\ +\x24\x27\x30\x38\x2b\x76\x5a\x43\xa7\x29\x7e\x78\x90\x88\x2c\x58\ +\x3a\x2a\x76\x5a\x29\xa7\xdf\x68\xba\x2b\x76\x5a\x73\x91\xd7\x80\ +\xba\xab\x76\x5a\x3f\xdb\xf0\x1b\x4f\x57\xd5\xce\x2b\x54\xc9\x0b\ +\xe2\x69\x81\xd3\x59\xb5\xf3\xea\x09\x10\x0f\xa8\xa7\x05\x4f\x87\ +\xd5\x4e\xdf\xc9\xe7\x65\x44\x5d\x56\x3b\xad\xf5\x63\x3f\xd8\xa7\ +\x81\x8e\x41\xa8\xfc\x2e\x8c\x49\x5e\xf9\x07\x83\x45\x9a\xb1\xe8\ +\xcd\x1b\xa8\x0d\x4e\x57\x07\x12\xed\x84\xde\x6b\x3c\x9d\x1d\x49\ +\xb4\xa7\x24\xbf\xf1\x74\x54\xa9\xf3\x9d\x31\xd9\xe0\x74\x75\x2c\ +\xf1\xda\x61\x25\x1f\x18\x93\x0d\x4f\x77\x07\x13\xed\x16\xea\x09\ +\x63\x52\x08\x2b\x19\xf1\xef\x52\x5d\xe2\xf6\xf4\x2e\x65\x92\x78\ +\xb0\xe1\xb4\xa0\xe9\xea\x30\xdd\x95\x83\x9e\x5e\xe3\xe9\xae\xc2\ +\x74\x85\xcf\xfb\x8c\xa8\xc3\x03\x75\x57\x0e\xcb\x7b\x8d\xa8\xb3\ +\x23\x75\xd7\xbe\x51\xc5\x07\xd2\x64\x03\xd4\xdd\xa1\xba\xeb\xff\ +\x88\xfd\xf6\x69\x93\x0d\x51\x97\xc7\xea\xec\x56\xea\x35\x71\x72\ +\x7a\xb0\xee\x0a\x7d\xfa\x53\x17\x9b\x28\x22\x02\x72\x0b\x3b\x43\ +\x94\x21\xcc\x29\xa3\x27\x58\x3d\x77\x5f\xea\x8a\x55\x8c\x65\x74\ +\x8a\x2c\x88\x09\xa6\x10\xe0\x2e\x20\x4b\x24\xa2\x31\xc7\x82\xbe\ +\xc4\xf6\x52\xd3\xf8\x5b\x05\x2d\x88\x7e\xc5\x97\x60\x52\x4e\x18\ +\x70\x64\xf1\x1a\xb0\xcd\xa7\xab\xfd\x17\x7e\xc3\xaf\xb9\xf9\x5e\ +\xf2\xfb\x77\xff\x03\x89\x24\xec\x97\ +\x00\x00\x09\x99\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6f\x70\x65\x6e\x5f\ +\x64\x69\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x35\x2e\x35\x39\x38\x39\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\ +\x22\x2d\x36\x38\x2e\x36\x31\x31\x38\x34\x39\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x2d\ +\x32\x2e\x36\x31\x31\x30\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\ +\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\ +\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\ +\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\ +\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\ +\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\ +\x72\x69\x64\x33\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\ +\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\ +\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\ +\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\ +\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\ +\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\ +\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\ +\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\ +\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\ +\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x38\x30\x38\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x31\x2e\x31\x39\x32\x35\x36\x39\x36\x31\x70\ +\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\ +\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\ +\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\ +\x33\x33\x33\x33\x33\x20\x48\x20\x32\x36\x2e\x36\x36\x36\x36\x36\ +\x37\x20\x56\x20\x32\x38\x2e\x38\x20\x48\x20\x30\x20\x5a\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ +\x30\x32\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ +\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x66\x66\ +\x66\x66\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x30\x2e\x38\x37\x30\x39\x32\x39\x37\x32\x70\x78\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\ +\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\ +\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x64\x3d\x22\x4d\x20\x30\x2c\x32\x2e\x31\x33\x33\x33\x33\x33\ +\x33\x20\x31\x36\x2c\x39\x2e\x32\x34\x34\x34\x34\x34\x35\x20\x56\ +\x20\x33\x34\x2e\x31\x33\x33\x33\x33\x33\x20\x4c\x20\x30\x2c\x32\ +\x37\x2e\x30\x32\x32\x32\x32\x32\x20\x76\x20\x2d\x32\x34\x2e\x38\ +\x38\x38\x38\x38\x38\x37\x20\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x32\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\ +\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\xff\ \x00\ -\x00\x62\xc2\x78\x9c\xed\x5c\xdd\x8f\x9b\x38\x10\x7f\xdf\xbf\x82\ -\xa3\x2f\xad\xee\x0c\x18\x08\x5f\x4d\xb6\x0f\x57\x55\xaa\x74\x4f\ -\x77\x3d\xdd\x63\xe5\x05\x27\x8b\x4a\x20\x02\xb2\x49\xfa\xd7\xdf\ -\x98\xaf\x40\xc2\x56\x6d\x6d\xee\xdc\x12\xa4\x6a\x8b\x67\x0c\xe6\ -\x37\xbf\xb1\x67\x3c\x84\xe5\x9b\xe3\x36\x51\x9e\x68\x5e\xc4\x59\ -\xba\x52\xb1\x66\xa8\x0a\x4d\xc3\x2c\x8a\xd3\xcd\x4a\xfd\xfb\xc3\ -\x3b\xe4\xa9\x4a\x51\x92\x34\x22\x49\x96\xd2\x95\x9a\x66\xea\x9b\ -\xfb\xbb\xe5\x2f\x08\x29\xbf\xe7\x94\x94\x34\x52\x0e\x71\xf9\xa8\ -\xbc\x4f\x3f\x15\x21\xd9\x51\xe5\xe5\x63\x59\xee\x02\x5d\x3f\x1c\ -\x0e\x5a\xdc\x34\x6a\x59\xbe\xd1\x5f\x29\x08\xdd\xdf\xdd\x2d\x8b\ -\xa7\xcd\x9d\xa2\x28\x70\xdf\xb4\x08\xa2\x70\xa5\x36\x1d\x76\xfb\ -\x3c\xa9\x14\xa3\x50\xa7\x09\xdd\xd2\xb4\x2c\x74\xac\x61\x5d\x3d\ -\xab\x87\x67\xf5\x90\xdd\x3d\x7e\xa2\x61\xb6\xdd\x66\x69\x51\xf5\ -\x4c\x8b\x17\x3d\xe5\x3c\x5a\x77\xda\x6c\x34\x07\xab\x52\xc2\xbe\ -\xef\xeb\x86\xa9\x9b\x26\x02\x0d\x54\x9c\xd2\x92\x1c\xd1\xb0\x2b\ -\x8c\x71\xac\xab\x69\x18\x86\x0e\xb2\xb3\xe6\xd7\x69\x05\x05\x00\ -\xba\x83\x7f\x9d\x7a\xdb\xa0\x15\xd9\x3e\x0f\xe9\x1a\xfa\x51\x2d\ -\xa5\xa5\xfe\xf6\xc3\xdb\x4e\x88\x0c\x2d\x2a\xa3\xde\x65\x5a\x3c\ -\x07\x77\x1d\x80\x9c\x92\x2d\x2d\x76\x24\xa4\x85\xde\xb6\x57\xfd\ -\x0f\x71\x54\x3e\xae\x54\xcb\xd6\xb0\x05\xc7\xa2\x6a\x7c\xa4\xf1\ -\xe6\xb1\xbc\x6c\x8d\xa3\x95\x0a\xa3\x37\x7d\xaf\x3e\xef\x91\x03\ -\xd7\x0a\xcd\x85\x83\x4e\x62\x68\xbe\xa9\x61\x25\xc7\x0b\xcb\xad\ -\x75\xda\x47\x08\xa2\x2c\x64\x63\x82\x4b\xd2\x6d\x4c\xf6\x65\xb6\ -\x05\xab\x85\x61\x42\x8a\x22\x5e\xc7\x21\x9c\x64\xe9\x2e\xd9\x6f\ -\xe2\xf4\x23\x8d\xe2\xf2\x63\x4e\x8a\x92\xe6\x5a\x0b\x5f\x77\x2f\ -\x7a\xdc\x65\x79\x89\x8e\xd1\x0e\x40\x74\xdc\x51\xe1\xa9\x15\xde\ -\x83\x74\x19\xd1\x75\xc1\xb4\xea\x27\x62\x67\xf0\x48\xae\xaa\xe8\ -\x95\xb4\x1b\x20\x1b\x5d\xf4\x14\xd3\xc3\x59\xf7\x81\x14\x35\x6a\ -\x8a\xb2\x23\x1b\x60\x58\x92\xe5\x2b\xf5\xc5\xba\x3a\x1a\xc1\x43\ -\x96\x47\x34\x6f\x45\x4e\x75\x0c\x44\x19\x58\x21\x2e\x4f\xb5\x4f\ -\x35\xd7\x6e\xc7\xcb\xae\xda\xc9\x8d\x71\x79\xf1\x48\xa2\xec\xb0\ -\x52\xcd\x4b\xe1\xe7\x2c\xdb\xae\x54\x57\xf3\xb1\x67\xd8\xd8\xbd\ -\x14\x87\xc7\x95\x8a\xb0\xab\x99\x9e\xe3\x76\x43\x3a\x4b\xe1\x86\ -\x0b\xcd\xf6\x1d\xc3\xc7\xf8\x4a\xb8\xcf\x73\xf0\x3a\x94\x90\x13\ -\x85\xa7\xaa\xfe\xb4\x4a\xc5\x63\x76\xd8\xe4\x0c\x9d\x32\xdf\xd3\ -\xcb\x9e\x4c\x82\x1e\x1e\xb2\xe3\xb8\x18\x48\xb0\x67\xfe\x8c\xf6\ -\x69\x5c\x82\xcf\xec\x8e\xfd\xab\xee\xe3\x88\x16\xe3\x1d\x8b\x94\ -\xec\xd0\x26\xc9\x1e\x48\x32\xae\x70\x88\x53\x40\x09\x35\xf4\xc6\ -\xd6\xf5\x13\x37\x1a\x2d\xd7\x5d\xc3\x7b\x46\x03\xc6\x7e\x65\x88\ -\x46\x74\x7a\x5e\xb4\x25\xc7\x78\x1b\x7f\xa6\x00\x0c\xae\x78\x07\ -\xdc\x1a\xc0\x52\x77\x53\x94\xf2\xc4\xfc\xf6\x78\x62\x6d\x6a\xdb\ -\xc8\xf0\x64\x0d\xa6\xef\xbb\x5d\x63\x96\xc7\xe0\x0e\xbd\xe1\xb4\ -\x4d\xa7\x7e\x13\xf3\x72\x98\xa4\x8f\x15\xc1\x2a\xfa\xb9\x97\xb2\ -\x53\x5f\xd6\xf0\x5e\xbf\x26\x7e\xd5\xbe\xa5\x25\x89\x48\x49\xce\ -\x5e\xd0\xb6\xc0\xd8\x8c\xf6\xc9\x60\xc2\x0c\xfe\x7c\xfb\xee\xbe\ -\xb9\xd1\x32\x0c\x83\x7f\xb2\xfc\x53\x7b\x5f\x45\x61\x0a\xe4\x21\ -\xdb\x03\xd2\xea\x7d\xd7\xbc\x8c\xc2\x00\xa6\x38\x70\xfd\xfb\x78\ -\x0b\xdc\x66\xb3\xe3\xaf\x30\xa5\x2d\xf5\xb3\x60\xa0\xcc\xc0\x3a\ -\x5f\xb4\xbe\x6c\x4e\xeb\xb9\x72\x74\xc1\x88\xc2\x6d\xcc\x3a\xe9\ -\x7f\x95\x71\x92\xbc\x67\x37\x69\x9e\xb8\x77\xd1\xb8\x4c\xe8\xb9\ -\x71\xa9\x37\xa3\x6f\x9e\x4d\xef\x3d\xdc\x52\x6f\x9f\xbe\x3a\xdb\ -\x9c\x51\x19\x38\x45\x67\xe8\x84\x3c\x50\x60\xe8\x1f\x4c\xa8\x5c\ -\x49\x37\x79\xb6\xdf\x6d\xb3\x88\x36\xdd\x3b\x34\x69\x58\x76\x26\ -\x2b\x4f\x09\xc8\xd7\x30\xfa\xe0\x85\x61\x10\xe2\x79\xaf\xd9\x09\ -\x6a\xe6\x89\x00\xd7\xa7\xf9\x3e\x81\xf9\xee\x89\xa6\x59\x14\xbd\ -\x2e\xca\x3c\xfb\x44\x03\x98\x99\x1c\x62\x18\xcd\x69\xed\x0c\x81\ -\xa1\x59\x6c\x21\x32\x0c\xb3\x6d\x07\x84\x68\x9e\x00\x5b\xcb\xc0\ -\x6e\xdb\x22\x02\xf3\x4c\x9e\x93\x53\x90\xc2\xf2\xde\xb6\x76\xf7\ -\x1c\x10\x95\x0d\x77\xe1\x59\x3e\xc2\xc8\xeb\x04\x8d\xe7\x2d\x34\ -\xcb\x3a\x2f\x21\xec\x68\x1d\xce\xd6\xfc\x4a\x62\x77\x12\x46\x59\ -\x43\xbb\xa0\x2c\x70\xd5\xd2\xbc\xc1\x3c\x0a\x66\x1f\x38\x41\x5e\ -\xf1\xd9\xb1\xd9\xe1\x74\xd6\xfd\x91\x51\x44\x78\x0a\x1c\xd1\xf5\ -\x84\xf0\xd3\x03\xe9\x4f\x01\x24\xb6\x34\x77\xa8\xf9\xd3\xe3\x88\ -\xd1\x62\x0a\x24\x3d\xcd\xab\x07\x3d\x1f\x24\xdd\x29\x70\x34\x2d\ -\x6d\x4e\xb3\x23\x5a\x4c\xc2\x46\xec\x69\x73\x5b\x68\xfc\x69\xf8\ -\x68\x59\x9a\x3d\xb3\x95\x06\x48\x89\x8c\x49\x7c\xdb\xd3\x16\x95\ -\xaa\x30\x2c\xd7\xeb\x30\x94\x15\x4b\x4e\x04\x8d\x01\x0b\x85\x07\ -\x8e\x91\x4d\x88\xac\xc8\x71\x07\x8d\xd7\xea\x33\xc4\x10\xd9\x53\ -\xa0\x38\x41\xe8\x2d\xb3\x13\x73\xe7\x81\x03\x37\x16\x1f\x6e\x4b\ -\x4e\x41\x8f\x17\xbe\x51\x0e\x8a\x87\x51\x6a\x0a\x1a\xdc\x9e\x3c\ -\x20\xa1\xf8\x4c\x45\x72\x12\xda\xc8\x9c\x82\x85\xe2\x71\x94\x9b\ -\x85\x96\x48\x12\x0a\x4d\xf3\x24\xe7\x9f\x33\x05\xfb\x84\x02\x28\ -\x37\xf1\xb8\x13\xbb\xe1\x1a\x2c\x3c\x35\x96\x9c\x7e\xf6\x34\x04\ -\x9c\x1d\x8e\x1e\xff\x66\xf6\x78\x5e\x22\x7c\x87\x41\x72\x77\xb6\ -\xb9\x71\x1c\x2e\x25\xc2\x77\x15\x24\x27\x22\xc4\x33\xdc\x53\xe2\ -\xf8\x9a\x32\xab\xfd\x99\x9a\x89\x62\x63\xeb\x39\xfa\x32\x77\x74\ -\x3d\x40\x70\x82\xfd\x05\x0f\x2e\x28\x2d\x84\x6c\xc3\xd5\xe6\xe5\ -\xa0\xe9\x5c\xae\xc5\xd5\x7e\x97\x6b\x89\xf5\x66\xe9\x81\xc4\xdc\ -\xf3\xe2\x28\x92\xc0\x49\x71\x49\x9e\xf4\x20\xfa\xdc\x9b\xff\xa3\ -\x20\x62\x91\x09\x8b\xf4\x20\xb2\x1a\x0a\x6f\x65\x6f\x14\x46\xef\ -\xb2\xae\xf2\xd3\x43\xe9\x72\x2f\x30\xa3\x40\x9a\xc2\x97\x6a\xe9\ -\x91\x64\xd5\x66\x64\xf0\x66\x83\xe3\xde\x2d\x3c\x74\x94\x1e\x4d\ -\x7f\x2a\x66\x42\x10\x59\x69\xce\x68\xcd\xa9\x4a\xce\xdc\xa1\xf8\ -\xb8\x9f\x7b\x9a\xb8\x3a\x81\xd4\x40\x72\xbf\xff\x30\x71\xf8\xb8\ -\x58\xd8\xb6\xb4\xe0\xf1\xa7\x31\x26\xd6\x2e\x1a\xe7\x88\xa2\x8d\ -\x4c\xde\x9a\xdf\x28\x90\xf3\x89\xc1\x3d\xc4\x5b\x69\xc1\xd3\x05\ -\xde\x92\xb3\xcf\xe3\x07\x6f\x94\x7d\xf3\x49\x5e\xaa\x2d\x1d\x9b\ -\xfb\xed\xf7\x69\x73\x16\xc9\x59\xc8\x36\x68\x27\x99\x04\xe7\x95\ -\xfc\x19\x96\xe0\x90\x46\x7c\xca\x27\x39\x11\x1d\xfe\x3d\x88\x31\ -\x1a\xce\x2c\x75\x36\x20\xd1\x13\x3b\x21\x8a\xcf\x96\x25\x27\xa2\ -\x0d\x54\xb4\x78\xab\x7e\xe3\x2b\xf3\xdc\xa0\x64\x65\x68\xe4\x73\ -\x6f\xd1\x8e\x26\x2b\xf3\xda\x78\xa8\xab\x57\x9e\xd8\x68\x5b\xe8\ -\x76\x83\xe4\x54\xac\x0a\xd1\xdc\xc5\xfc\xf1\x25\x66\x36\xbb\x36\ -\x4d\x15\x9a\xff\x57\x69\x73\xde\x43\x6c\x0a\xd1\xc8\xe7\xdd\xdc\ -\xc6\xd3\x15\xfe\xa4\xff\xdd\x8f\xcd\xff\xa2\x6c\x8f\x6f\x93\x6c\ -\x7e\x49\x8f\x21\x86\x09\x91\x97\x83\x43\x10\xe7\xc5\x41\xe6\xca\ -\xbc\xb1\xf6\x10\x3f\xa1\x5b\x37\xd2\xe3\x57\xd5\x9d\xb9\x97\xe4\ -\x21\x82\xc2\x77\x1d\xa4\x47\xd1\x15\xf0\x86\xdd\x10\x43\xf1\x29\ -\xb3\xf4\x20\x36\xd5\x66\xc1\x6b\x8a\xf8\x7c\x4f\x7a\x20\xab\x42\ -\x33\xf7\xbe\xf6\xc5\xd2\x2c\x3c\x3e\x94\x1e\xc6\xa6\xc6\xcc\x5d\ -\x65\xbe\x70\xec\x6f\x4e\x54\x36\xfd\x11\x6e\x2c\x13\x9f\x7f\x29\ -\x5c\xe6\x24\x2d\xd8\xd7\x82\xd8\xa7\xa0\xe0\xbf\x09\x29\xe9\x4b\ -\x30\x55\xf5\x46\xa4\xfb\x5b\x93\x28\x59\xd6\x2b\x75\xd4\x08\x00\ -\xaa\xd3\x81\x1a\x34\x5f\xf3\xba\x46\xa8\xfb\x3c\x50\xdf\x9a\x5f\ -\xf8\xd6\xd8\xf3\x2a\xc7\x6b\x95\xe1\x43\xf7\xda\x07\xd0\xd4\xae\ -\x8c\xeb\x5f\xe4\xf6\xbb\x57\x9f\xf6\xc2\x97\x3f\xef\xfb\x92\x45\ -\xbe\x60\xc6\xd1\x99\xbd\xdf\x73\x0c\xbd\x6f\xa0\x70\x1f\xde\x96\ -\xc2\x5e\x3d\x3b\x2d\x78\x28\xdc\xfb\x82\xd3\xff\x6c\x22\x67\x04\ -\xee\xa9\x4d\x54\xaf\x1b\x37\x2b\x7d\xbd\x95\xcc\x11\x6b\x4c\x6d\ -\x25\xff\xe6\x4a\xdf\x66\x24\xec\x68\xae\xcf\x8e\xff\xd6\x95\x60\ -\xc9\xf3\x6f\x66\xe2\x5f\x94\x4c\x53\x13\x6d\x21\xc3\xea\xa5\xba\ -\x37\xd3\x7c\x7f\xbc\xe0\xd6\x01\x92\x27\xdc\x83\x1c\xe4\xdc\x0c\ -\xc4\x1f\x2d\x4c\xe1\x3b\x83\x97\x6f\x6f\xb6\xf9\xfe\x48\x6e\x32\ -\xe7\xa9\x6a\xbe\x37\x13\x09\x08\xe3\x26\x33\x51\x5d\x4b\xbe\xd9\ -\x88\x3f\x8a\x9b\x64\x8a\xb3\x07\xdf\xa1\xbd\x59\xe7\xfb\x63\xec\ -\x09\x27\x39\x56\x02\x77\x6f\x46\xe2\x9f\xe6\x26\x73\x21\xfb\x47\ -\x72\xa2\xa5\xbe\xa9\x3f\xcf\x0d\x7f\x96\xec\x2b\xe2\xf7\x77\xff\ -\x02\x60\x10\xdc\xe1\ -\x00\x00\x0c\xc4\ +\x00\x32\x47\x78\x9c\xe5\x5a\x59\x8f\xe3\x36\x12\x7e\xef\x5f\xc1\ +\x75\xbf\x64\xb0\x2d\x99\x87\x0e\x4a\x76\x77\x1e\x32\x08\x12\x20\ +\x79\xd9\x64\x13\x60\x5f\x06\xb2\x44\xdb\xdc\x96\x25\x83\xa2\xdb\ +\xf6\xfc\xfa\x2d\xea\x96\x6c\x27\x3d\xd3\x93\x60\xbc\x56\xa3\x61\ +\xb1\xaa\x78\x7d\x75\xb0\x48\x71\xfe\xed\x61\x93\xa2\x17\xa1\x0a\ +\x99\x67\x8f\x13\x62\xe3\x09\x12\x59\x9c\x27\x32\x5b\x3d\x4e\xfe\ +\xfd\xeb\xf7\x16\x9f\xa0\x42\x47\x59\x12\xa5\x79\x26\x1e\x27\x59\ +\x3e\xf9\xf6\xe9\x6e\xfe\x0f\xcb\x42\xdf\x29\x11\x69\x91\xa0\xbd\ +\xd4\x6b\xf4\x63\xf6\x5c\xc4\xd1\x56\xa0\x6f\xd6\x5a\x6f\xc3\xe9\ +\x74\xbf\xdf\xdb\xb2\x26\xda\xb9\x5a\x4d\xdf\x21\xcb\x7a\xba\xbb\ +\x9b\x17\x2f\xab\x3b\x84\x10\xf4\x9b\x15\x61\x12\x3f\x4e\xea\x0a\ +\xdb\x9d\x4a\x4b\xc1\x24\x9e\x8a\x54\x6c\x44\xa6\x8b\x29\xb1\xc9\ +\x74\xd2\x89\xc7\x9d\x78\x6c\x7a\x97\x2f\x22\xce\x37\x9b\x3c\x2b\ +\xca\x9a\x59\x71\xdf\x13\x56\xc9\xb2\x95\x36\xa3\xd9\xb3\x52\x88\ +\x04\x41\x30\xc5\x74\x4a\xa9\x05\x12\x56\x71\xcc\x74\x74\xb0\x86\ +\x55\x61\x8c\xe7\xaa\x52\x8c\xf1\x14\x78\x9d\xe4\xeb\xa4\xc2\x02\ +\x00\xdd\xc2\x7f\x2b\xde\x10\xec\x22\xdf\xa9\x58\x2c\xa1\x9e\xb0\ +\x33\xa1\xa7\xef\x7f\x7d\xdf\x32\x2d\x6c\x27\x3a\xe9\x35\xd3\xe0\ +\x39\xe8\x75\x00\x72\x16\x6d\x44\xb1\x8d\x62\x51\x4c\x1b\x7a\x59\ +\x7f\x2f\x13\xbd\x7e\x9c\x30\xc7\x26\x0c\x1e\xb7\x24\xae\x85\x5c\ +\xad\xf5\x98\x2a\x93\xc7\x09\x8c\x9e\x06\xbc\x2a\xf7\x8c\x83\x54\ +\x02\x75\xc3\x61\xcb\xc1\x76\x40\x6d\x82\x14\x71\x99\x5f\xc9\x34\ +\x53\x08\x93\x3c\x36\x63\x82\x26\xc5\x46\x46\x3b\x9d\x6f\x40\x6b\ +\x71\x9c\x46\x45\x21\x97\x32\x86\x42\x9e\x6d\xd3\xdd\x4a\x66\x1f\ +\xa0\x51\xad\x85\xfa\x20\x12\xa9\x3f\x6c\xf3\xf4\xb8\xca\x33\xbb\ +\xc1\xb1\xed\x54\x1c\xb6\xb9\xd2\xd6\x21\xd9\x02\x9a\x9e\x7f\x96\ +\x79\x6c\x98\x4f\xc0\x9d\x27\x62\x59\x18\xa9\x6a\x6a\xa6\x04\x73\ +\xf3\x27\x68\x5a\x72\xdb\x91\x9a\x61\x26\x2f\x52\xec\x3b\xd9\x45\ +\x54\x54\xf0\x21\xb4\x8d\x56\x60\x6a\x69\xae\x1e\x27\xf7\xcb\xf2\ +\xa9\x19\x8b\x5c\x25\x42\x35\x2c\xaf\x7c\x06\xac\x1c\xd4\x21\xf5\ +\xb1\x72\xae\xba\xed\x66\xbc\xa6\xd5\x96\x8f\xcf\xf3\x8b\x75\x94\ +\xe4\xfb\xc7\x09\x1d\x33\x3f\xe6\xf9\x06\x94\x67\x07\x6e\x80\x29\ +\x0e\xc6\xec\xf8\xf0\x38\xb1\x08\x61\x36\xc1\x7e\x3b\xa4\x8e\x0b\ +\x1d\x52\xd0\x1b\xa1\xe4\x0c\x73\xa7\x14\xb8\x9f\x95\x46\x47\x01\ +\xb3\x2a\x7f\x48\x2d\x54\xac\xf3\xfd\x4a\x19\x74\xb4\xda\x89\x71\ +\x4d\xc3\xb1\x16\x8b\xfc\x70\x9e\x0d\xd6\xb0\x33\x8e\x6d\xed\x32\ +\xa9\xc1\x79\xb6\x87\x7e\xab\x3b\x99\x88\xe2\x7c\xc5\xbd\xcc\x00\ +\x04\xab\x36\x63\xc2\x4e\xc7\x5c\x4b\x34\x36\xed\x63\x7e\x41\x02\ +\x86\x76\x82\x73\xcd\x3a\x5e\x66\x6d\xa2\x83\xdc\xc8\x8f\x02\xe6\ +\x4d\xc6\x22\x45\x16\x6d\xad\x55\x9a\x2f\xa2\xb4\x1e\xfd\x53\x29\ +\x31\x1f\xc0\x52\x55\x42\x48\x1f\x8d\x03\x1f\x8e\x86\x36\x69\x88\ +\x06\x4f\x43\x60\xbe\xe7\xb6\xc4\x5c\x49\xf0\x8b\xde\x78\x1b\xd2\ +\xb1\x4f\x32\xee\x0e\xd1\xfa\x50\x1a\x58\x69\x7e\xfe\x98\x77\xec\ +\xf3\x6a\xbb\x9f\x9e\x1a\x7e\x49\xdf\x08\x1d\x25\x91\x8e\x3a\x2f\ +\x68\x28\x34\x08\x70\x33\x33\x88\x9c\xe1\xbf\xde\x7f\xff\x54\x77\ +\x34\x8f\xe3\xf0\xf7\x5c\x3d\x37\xfd\x22\x64\x04\xa2\x45\xbe\x03\ +\x55\x4c\x9e\x5a\xf2\x3c\x89\x43\x88\x75\x10\x03\x9e\xe4\x06\x6c\ +\xdb\x84\xc9\x7f\x42\x6c\x9b\x4f\x3b\xc6\x40\xd8\x80\xd5\x35\x5a\ +\x35\xab\x44\x15\x34\xcf\xae\x1c\x49\xbc\x91\xa6\xd2\xf4\x17\x2d\ +\xd3\xf4\x47\xd3\x49\x3d\xe3\x5e\xa3\x52\xa7\xa2\x23\xce\xa7\xf5\ +\xe8\xeb\xb9\x4d\x7b\x93\x9b\x4f\x9b\xd9\x97\xa5\x55\x87\xca\xc0\ +\x29\x5a\x45\xa7\xd1\x42\x80\x11\xfc\x64\x98\xe8\x84\xbb\x52\xf9\ +\x6e\xbb\xc9\x13\x51\x57\x6f\xd0\x5c\x0d\xcc\x80\x61\x97\xb5\x1a\ +\xd4\x2a\xca\x0a\x83\x0c\xe8\x21\xd2\x4a\x1e\xbe\xc1\x36\xf7\x48\ +\xf9\x3c\x60\xf3\xd7\x15\x89\x0d\x31\x9b\x70\x97\x3e\x50\xdb\x77\ +\xcb\xe7\x5d\x0b\xfe\x5c\x89\x58\x77\x50\x9e\x6b\xd7\x77\x79\x10\ +\x70\x8f\x42\x9b\x9e\x4b\x70\x40\x29\x7b\x80\x35\xc8\xf7\x7d\x86\ +\x99\xe9\xce\xf6\x28\x04\x0c\x8f\x72\xd3\xef\xbb\x49\x4f\xdb\x95\ +\x85\xb9\x8c\x79\x2c\xe8\xd3\xc1\x2a\xa9\xed\x38\x9e\x47\x7c\xd2\ +\xa3\x83\xb8\x69\xd8\xc4\x2d\x0f\xfb\x3d\x86\x91\xf7\x6c\xcf\x63\ +\x1e\x77\x7b\xe4\xc6\xab\xb9\xcd\x21\xd8\xb9\xdc\xe9\xf1\x9a\x98\ +\xe0\xd8\x1e\xf7\xb9\xd7\xaf\x66\xe0\x34\xd3\x06\xcb\x0d\x2c\x6e\ +\xb1\x1e\xab\xd0\xc7\x14\xd4\xb0\x04\x23\x09\xef\x45\x10\x2d\x88\ +\x37\x33\x05\xab\x0e\xc7\x21\xa9\x8a\x6a\x97\xc2\xb2\xf2\x22\xb2\ +\x3c\x49\x66\x85\x56\xf9\xb3\x08\xef\x09\x4f\xbc\xe5\xb2\x2e\x56\ +\x41\x29\xc4\x4d\x11\xec\x4f\xa8\x14\x82\x85\x0e\x9d\x86\x96\x44\ +\x10\xc5\x95\x8a\x8e\x61\x06\x59\x54\x43\x6d\xbb\xea\x59\xe8\x2b\ +\xd4\x14\x50\x87\xb8\x5e\xe0\x83\x3e\x18\xa7\x98\xd0\xc0\x2d\xd5\ +\x64\x14\x46\x38\xe8\x06\x5e\x1d\xb0\x04\xe6\x9c\x57\x93\xcf\x5d\ +\x97\x72\x3e\x52\x13\x18\x0f\xc5\x40\x0f\x46\x6a\x0a\xec\x00\x33\ +\x16\x38\x23\x2d\x11\xd7\x76\x38\x0b\xf8\x19\x25\x01\x0b\x13\xcf\ +\x77\xd9\x19\x25\x11\xdb\x85\xe1\x72\x72\x59\x49\xfe\x15\x6a\x49\ +\x95\xab\xb7\x8b\x7d\x06\x66\x3e\xb6\x7f\xb0\x4b\x12\x78\x2e\xa3\ +\x43\x60\xa9\x6f\xfb\x26\xe9\x72\x86\xb8\xba\x36\x63\x5d\x2e\x36\ +\x04\xd6\xb1\x69\x19\xc3\x83\x53\x60\xcf\xb5\x36\x06\xd6\xe2\xb7\ +\x81\x2c\xfe\xdb\x10\xbd\x4e\x3c\x99\xcd\xb1\x03\xa1\xd2\x1d\xc1\ +\xc9\x6c\xd7\x65\xae\x1f\x78\x7f\x08\x27\xad\xf6\x0a\x03\x5c\xda\ +\x8d\x04\x3d\x83\x23\xb1\x4f\xe4\x87\x38\x5e\x03\x8a\xdb\x48\xaf\ +\x7b\xc3\x6c\x53\x27\x58\xcb\x4d\xb6\x01\x59\x6b\x7c\xe1\xe9\x4f\ +\xbb\xcd\xaf\xf3\x2c\x83\xe9\xe7\xca\x82\x4c\xfb\x25\xd2\x3b\x25\ +\x86\x38\x0f\x00\xea\x1b\x27\xd0\x7f\x46\xb0\xd2\x56\x26\xfd\x60\ +\xc1\x9e\x0c\xfd\x86\x30\x62\x14\x31\xc8\xf4\xd1\x1a\x19\x0a\x83\ +\x60\x5e\x3e\x3e\xaa\x04\x80\xfd\x13\x62\xae\x0d\x99\x41\x00\xf9\ +\x82\xc9\x03\x11\x75\x6c\xb7\x6a\x85\xf0\x5a\xa7\xe8\x05\x59\x9e\ +\xed\xb4\xb2\x35\x99\x95\xc5\x4a\x16\x1b\x19\x52\xf6\x54\xfe\x58\ +\xbd\xbe\x3e\xa2\x0d\xa2\x65\x3d\x8a\x7e\x30\xe3\xa9\x86\x09\xcd\ +\x51\x48\x02\x1e\x08\xe4\x0f\x55\xd7\xbf\x21\x12\xd8\xe5\x90\x1a\ +\x99\x07\x06\xeb\x9a\xa9\x54\xf7\xc3\xd0\x7f\x4e\xcd\xa2\xdc\x64\ +\x85\xf7\xb8\x7c\x66\xcb\x1c\xf6\x11\x25\x07\xd4\x00\x99\x63\x5a\ +\x51\x5e\x22\x25\xa3\x4c\x0f\x68\xfb\xd2\x3e\x07\x24\x50\xb6\xd0\ +\xf1\x7a\x48\x83\xfc\x3e\x84\x5c\x58\xee\x36\xb3\x54\x66\xa2\xde\ +\x4c\x0c\x64\x96\xd1\x46\xa6\xc7\xf0\x17\x58\x96\x67\x56\xa3\x50\ +\xab\xaa\xbe\x15\x71\xbb\xa7\xad\x24\xb4\x38\x68\x90\x4a\x60\xcb\ +\x03\xa6\x58\x96\xa2\x54\xae\xb2\xb0\xd0\x91\xd2\x15\x21\x81\x7d\ +\xa5\xaa\xea\x94\x66\x38\x22\x5a\x66\x24\x15\x27\x15\x66\x7f\x6c\ +\xd5\x49\x7d\x33\xac\x3d\xec\x32\xc7\xb4\xb2\x8d\x36\x77\xa8\x6a\ +\xef\x95\xd4\x20\x62\x99\xfc\x33\x4c\x95\xa5\x17\xb3\x44\x1a\x23\ +\x33\x3d\xa7\x5a\xcd\xcc\x6e\xb7\x9c\x76\xb1\x96\x4b\x1d\x36\xc5\ +\x7a\xd8\x59\xbc\x06\xf0\xab\x71\x27\xb2\xd8\x42\x02\x1b\xca\xac\ +\x14\xc8\x5f\x84\x5a\xa6\xf9\x3e\x7c\x91\x85\x5c\xa4\x62\x56\xfe\ +\xca\xd4\x78\x51\x43\xaa\x5c\xba\x76\xd1\xd7\xba\x74\xdf\x2d\x2b\ +\x7f\x06\x93\xf4\x5d\x48\x79\x38\x9b\x6d\x22\xf5\x2c\x54\x25\x23\ +\xb2\x08\x3a\xb1\x16\x51\xfc\x6c\x72\xec\x2c\x09\xa3\x18\x76\x9a\ +\xbb\x34\xd2\xe2\xb2\x1b\x7f\x9a\x3f\x9a\xba\x2c\xc0\xce\xd0\x1b\ +\xc1\xe2\xeb\x00\x07\x7e\xe4\x57\x9b\x2c\x1f\xc5\x08\xdc\xe8\xc1\ +\xb8\xd2\xe8\xf7\x52\xac\xe3\x60\xd1\x1c\x8f\x81\x69\x22\xdb\xb2\ +\xb2\xf8\x01\x12\xc4\xe6\x8e\xef\x52\xcc\xd9\xf6\xd0\x70\x8c\x36\ +\x60\x42\xe1\x62\xa7\x75\x9f\xf6\xdf\x5c\x66\x61\x19\x01\x3f\x21\ +\xc8\x7d\x16\x3a\xde\x09\x3a\xf5\x32\x3a\x44\xc7\x6a\x60\x39\x79\ +\xb9\x04\x10\xc6\x1e\x23\x27\x96\xf3\x47\x00\xb5\x0b\x95\xf3\x35\ +\x01\xe4\x58\xf4\xb2\x01\x19\x20\x6e\xd7\x74\x2c\x72\xd9\x78\x2a\ +\x64\x6e\xda\x6c\x4e\xe1\x31\x6b\x66\x9d\x07\x74\x4b\xf5\x2d\xdb\ +\xcf\x19\x88\xfc\xc6\xb7\x06\x10\xdd\xb6\x21\xf9\x63\x94\xac\xf6\ +\x74\xf0\xc1\x82\x0c\xec\xb6\x6d\x28\x18\xa3\xd3\x6c\x20\x59\x03\ +\xce\x6d\x5b\xcf\x09\x3e\xf8\x81\x72\x9b\xdf\xb6\xd1\x38\xe3\x3d\ +\x9a\x99\x7b\x09\xcb\x77\x80\x8f\xd9\x3e\x0d\x7f\x6e\xc1\x50\x4e\ +\x12\x9d\x6e\xbd\x6a\x17\xf6\xdb\xb6\x9a\x93\x6c\xb9\x5b\xae\xfa\ +\x08\x5d\x63\xbc\x99\x4f\x57\xf5\x4b\x1f\xab\xfe\x20\x7b\x9b\xbb\ +\x76\x4f\x7f\x61\x48\x9f\x3e\xa0\xcf\x39\xee\xb9\xeb\x34\xf1\x33\ +\xb8\x29\x36\xe7\x26\xf5\x97\xf1\xee\x4c\xba\xd1\x20\x0d\x7a\xe7\ +\x64\xaf\x35\x80\xf3\xe7\x46\x1d\x66\xd7\x09\x55\x0b\xd2\x43\xfb\ +\x86\x7e\x40\xf8\x1c\x64\xfc\xeb\x81\xcc\x1c\x5b\x79\x98\xba\xfc\ +\x6d\xf6\x3e\x40\xa2\x4b\xa3\xea\xd0\xcf\xcc\x69\x98\x79\x3d\x79\ +\x39\x41\x87\xf9\x3e\xb5\xf0\xab\xf1\xf9\x22\x36\x43\x7c\xd7\x21\ +\xae\xfb\xc5\x10\xe8\xe7\x4a\xe5\x62\x17\x83\x1f\x59\xf5\x21\xbb\ +\x7f\xe9\xfd\x14\x0a\xee\x5c\x3d\x10\xed\x61\xe7\x5b\x81\xb0\x5e\ +\xef\x33\x5f\x29\x14\xdd\xf9\xc6\x5b\xa1\x08\xae\x1e\x0a\xef\x4b\ +\x59\xc5\xd5\x3b\x08\xa3\x6f\xc6\x80\x5d\x3b\x06\xc4\x7b\x33\x06\ +\xaf\x4f\x42\xbe\xc6\x25\x73\xd3\x5f\x32\x99\xed\x34\xe7\xc3\xed\ +\x59\x0d\x64\x61\x17\xde\x2f\x2c\xa0\xbd\x5d\xc7\xb5\x03\xd2\x7d\ +\x96\x7b\x13\x20\xe4\xaa\x01\xe9\x27\x55\x84\xb6\x49\x55\xf9\x7a\ +\xf2\x72\x09\x82\xbf\x33\x50\xfc\xb5\x36\xe1\x57\x3e\xf2\x56\x27\ +\x71\xfe\x6f\x00\xe9\x9f\xea\xbe\x01\x90\xcf\xc8\x2c\xfa\x17\x2b\ +\x06\x9b\x6f\x8f\x72\x4f\xc4\xc3\xcd\xb7\xb9\xaa\x05\x20\x04\x0e\ +\xf9\xb3\x55\xa6\xf9\xbc\xf9\x05\x76\x67\xfd\x5b\x04\x2d\xb1\xb9\ +\x09\xde\xc5\xc9\x33\xb7\x37\xce\x5e\x26\x3d\x9e\x23\xaa\xfa\x86\ +\x0d\x66\xbd\x4b\x34\xc3\x5b\x26\x2d\x62\xb1\x54\x71\x2a\x46\x98\ +\x0d\x3f\xea\x7f\xc6\x97\xe5\x0e\xe2\x80\x57\x37\x11\x66\xcd\x21\ +\xc8\x72\x89\xf1\x58\x0f\xae\xe3\xe2\x00\x86\xd6\xfb\xea\x0c\x28\ +\x7e\x14\x2a\x1f\x68\xc6\xf1\x87\x9a\x81\x9d\xad\xe7\x31\x68\xdc\ +\xfb\x2b\x77\xd8\x86\x9a\x2f\x97\x85\xd0\x60\x0a\x9c\x51\x8e\x89\ +\xcb\x4f\x14\xfc\xfa\x4f\xdf\x67\x52\x86\xce\xf5\xcd\x05\xf1\xe6\ +\xa3\x6c\x17\x3a\xcd\xc5\xf0\x53\xaa\xea\x5f\xfc\x69\x6e\x10\xaf\ +\x9e\xee\xe6\xe6\x06\xef\xd3\xdd\xff\x00\x1d\x74\x75\x40\ +\x00\x00\x12\xe9\ +\x00\ +\x01\xe7\x43\x78\x9c\xed\x5d\x4b\x73\xdb\xc8\x11\xbe\xfb\x57\x30\ +\xf4\x25\xa9\x18\x43\xcc\xe0\x4d\x4b\xde\x43\xb6\xb6\xb2\x55\xc9\ +\x25\xd9\x24\x55\xb9\x6c\x51\x24\x28\x31\x26\x09\x15\x08\x5a\xd2\ +\xfe\xfa\xcc\xe0\x49\x42\xad\xb5\xb8\x0d\x34\xac\x45\xd3\xbb\x65\ +\x13\x00\x5f\xf3\xa1\x9f\x5f\x4f\xf7\xd5\x77\x8f\xbb\xed\xe4\x4b\ +\x9c\x1e\x36\xc9\xfe\x7a\x2a\x85\x3d\x9d\xc4\xfb\x65\xb2\xda\xec\ +\x6f\xaf\xa7\xff\xfa\xe9\x07\x2b\x9c\x4e\x0e\xd9\x62\xbf\x5a\x6c\ +\x93\x7d\x7c\x3d\xdd\x27\xd3\xef\x3e\xbd\xbb\xfa\x83\x65\x4d\xfe\ +\x92\xc6\x8b\x2c\x5e\x4d\x1e\x36\xd9\xdd\xe4\xc7\xfd\xe7\xc3\x72\ +\x71\x1f\x4f\xfe\x78\x97\x65\xf7\xf3\xd9\xec\xe1\xe1\x41\x6c\xca\ +\x83\x22\x49\x6f\x67\x7f\x9a\x58\xd6\xa7\x77\xef\xae\x0e\x5f\x6e\ +\xdf\x4d\x26\x13\xfd\xb9\xfb\xc3\x7c\xb5\xbc\x9e\x96\x2f\xb8\x3f\ +\xa6\xdb\xfc\xc2\xd5\x72\x16\x6f\xe3\x5d\xbc\xcf\x0e\x33\x29\xe4\ +\x6c\xda\x5c\xbe\x6c\x2e\x5f\x9a\x4f\xdf\x7c\x89\x97\xc9\x6e\x97\ +\xec\x0f\xf9\x2b\xf7\x87\xf7\x27\x17\xa7\xab\x75\x7d\xb5\xf9\x36\ +\x0f\x4e\x7e\x91\x8c\xa2\x68\x66\xab\x99\x52\x96\xbe\xc2\x3a\x3c\ +\xed\xb3\xc5\xa3\x75\xfe\x52\xfd\x1d\xa1\x97\x2a\xdb\xb6\x67\xfa\ +\x5c\x73\xe5\xeb\xae\x9a\x1f\xf4\x82\xde\xeb\xff\xeb\xcb\xab\x03\ +\xe2\x90\x1c\xd3\x65\xbc\xd6\xaf\x8b\xc5\x3e\xce\x66\xdf\xff\xf4\ +\x7d\x7d\xd2\xb2\xc5\x2a\x5b\x9d\xbc\x4d\xb5\x9e\x67\x9f\x7a\xb6\ +\xc8\xfb\xc5\x2e\x3e\xdc\x2f\x96\xf1\x61\x56\x1d\xcf\x5f\xff\xb0\ +\x59\x65\x77\xd7\x53\xc7\x15\xd2\xd1\x0f\x2f\x3f\x78\x17\x6f\x6e\ +\xef\xb2\xf6\xd1\xcd\xea\x7a\xaa\xbf\xbd\xe7\x28\x3b\x7f\x7e\x72\ +\x73\xc8\xe2\x82\xf2\x8d\xe7\xf5\x19\x5b\x44\x4a\xc8\x49\x2a\x3d\ +\x27\x28\xae\xa9\x7e\xc2\x7c\x95\x2c\xcd\x77\xd2\x6f\x19\xef\x36\ +\x8b\x63\x96\xec\x34\x6a\xcb\xe5\x76\x71\x38\x6c\xd6\x9b\xa5\x7e\ +\x92\xec\xef\xb7\xc7\xdb\xcd\xfe\x67\xfd\xa6\x59\x16\xa7\x3f\xa7\ +\x8b\x83\xf9\x6b\xb3\x5b\xe8\x35\xa9\xd6\xb1\xfe\xd0\xf8\xf1\x3e\ +\x49\x33\xeb\x71\x75\xaf\x57\xd3\x0f\x84\x07\x9e\x7e\x6a\x4e\x7f\ +\xd2\xe7\xaf\x56\xf1\xfa\x60\xae\x2b\x7e\x9e\x79\xa6\x7f\x9f\x9a\ +\x4e\x66\xf9\xd9\xfa\xdb\x9a\xaf\xba\xfa\xb2\x89\x1f\x9a\x6b\x6f\ +\x16\x87\x62\x09\x27\x93\x7b\xfd\x85\x96\xc9\x36\x49\xaf\xa7\xef\ +\xd7\xf9\xa3\x3c\x71\x93\xa4\xab\x38\xad\x4e\xf9\xf9\xe3\xec\x54\ +\xa2\x21\xd9\x64\x4f\x85\x80\x95\xef\x5d\x7d\x63\xf3\xae\xf5\x79\ +\x1b\x3e\x7f\xb8\x5b\xac\x92\x87\xeb\xa9\x6a\x9f\xfc\x25\x49\x76\ +\xd7\xd3\x40\x44\x32\xb4\x5d\x19\xb4\x4f\x2f\x1f\xaf\xa7\x96\xaf\ +\x84\xf2\xdd\x28\x72\x9f\x9d\x35\x5f\x28\x12\xa1\xe3\xf9\x25\x6c\ +\xa7\x27\x8f\x69\xaa\x45\xd0\xda\x2e\x9e\x62\xfd\xab\xf2\xbf\x9c\ +\xf2\xa2\xc3\x5d\xf2\x70\x9b\x9a\xd5\xc9\xd2\x63\xdc\x7e\xa5\x39\ +\x63\xdd\xdc\x24\x8f\xf0\x69\x7d\x47\x1c\x8d\x70\x5b\xc7\xfd\x26\ +\xd3\x02\x74\xff\x78\xfa\xae\xc7\xcd\x2a\x3e\xbc\xf0\xbe\xe6\xdc\ +\xaf\xbc\xf1\xc3\x66\xaf\x17\xc9\x2a\x6f\x75\xe9\xd4\x18\xb4\xaf\ +\xa8\xee\xfb\xc0\x0e\x5f\xb8\x42\x7f\xc2\x33\x1c\xca\x53\x4f\x2f\ +\x9f\xda\x2d\x1e\x37\xbb\xcd\x2f\xb1\x5e\x17\x99\xdf\x76\xfa\xd6\ +\x3a\x5b\x95\xe2\x65\x93\x49\xf6\x64\x64\xf8\xf1\xc9\x1c\x9b\x56\ +\x07\xcd\x72\x9a\x03\x9e\xe3\xfa\xf5\xc1\x24\xdd\x68\xd1\x38\xf9\ +\x3a\xd5\xa1\xa7\xd3\x43\x46\xe2\xb5\xc2\x7e\xcc\xef\xaf\xfc\xee\ +\x0b\xda\xe7\x9e\x4e\xcf\x95\xb7\xfd\xec\xf9\x7d\x9f\x1f\xdf\xc5\ +\xd9\x62\xb5\xc8\x16\x8d\x10\x54\x47\xb4\xd0\x78\xd5\x2f\xd3\xca\ +\x73\xfe\x8f\xef\x7f\xf8\x54\x7e\xd0\xd5\x72\x39\xff\x4f\x92\x7e\ +\xae\x3e\x77\x32\x31\x17\x2c\x6e\x92\xa3\x5e\xe9\xe9\xa7\xfa\xf0\ +\xd5\x6a\x39\xd7\xea\x4e\xab\x81\x4f\xb9\x84\x1b\x4d\xf9\x67\xad\ +\xde\xae\x66\xcd\x89\xb3\x8b\xcd\x62\x35\x6f\x5a\xbc\x6d\x1a\x17\ +\x7a\x13\x34\x1e\xab\xe5\x6e\x63\x5e\x34\xfb\x67\xb6\xd9\x6e\x7f\ +\x34\x1f\x52\xfe\xe2\x93\x37\xdd\x64\xdb\xb8\x39\x78\x35\x2b\xbf\ +\x7d\xf9\xdb\x66\x27\x3f\xee\x6a\x56\xfd\xfa\xfc\xd9\x6d\xb3\x2a\ +\xb9\x4c\x3c\x13\x9c\xed\xe2\x26\xde\x5e\x4f\xff\x66\x4e\x4e\x9e\ +\x9d\xbd\x4d\x93\xe3\xfd\x2e\x59\xc5\xe5\xcb\x2b\x2c\x6e\xbf\x76\ +\x5d\xeb\x63\x9d\x97\x3e\x56\x9b\xc4\xed\x36\xa9\x41\x8a\x97\x59\ +\x7d\x27\x64\x4f\x5b\xfd\x76\xb9\x9a\x9a\xbf\xb7\xf3\xc7\xc7\xd5\ +\xe6\x70\xaf\xdf\x50\x9b\x96\xed\x66\x1f\x7f\x4c\xb4\x4e\x5f\x6f\ +\x93\x87\xf9\x97\xcd\x61\x73\xb3\x8d\x3f\xe6\x7f\x6f\xb6\x7a\x41\ +\xeb\x43\x6b\xbd\xaa\xf3\xf7\x37\x8e\xf9\x93\x3f\xb1\x4a\xf5\x35\ +\x97\xc5\xd3\xf4\xb8\x8d\xe7\xfb\x64\xff\x8b\x56\x7c\x1f\x0f\x59\ +\x9a\x7c\x8e\xe7\xef\xa5\xb7\x5e\xeb\xcf\x2b\x9e\x16\x42\x3a\xd7\ +\x8a\xc9\xcd\xbf\x86\xac\x8e\x9b\x2f\xa1\x7f\xce\xfc\xe6\x98\x65\ +\xa7\xc7\xfe\x97\x6c\xf6\x73\x0d\x6b\x9c\x56\x47\xf3\x27\x5b\x2d\ +\x6f\xd9\xdc\xad\x8e\xad\x16\x5a\x51\xa6\xa9\xfe\x39\xfa\xd3\xe3\ +\xd3\xa3\xc9\x7a\x7d\x88\x33\xfd\x81\xa1\xa3\x42\x5b\x7a\x61\x75\ +\xb2\xf9\xea\xbb\x45\xfa\x39\x4e\x8b\x57\xc6\xfb\x85\xfe\xa5\xd6\ +\xcd\x62\xf9\xd9\x00\xb1\x5f\xcd\x17\x4b\xad\xb5\x8e\x5b\xed\xf0\ +\x9c\x09\xac\x59\x5f\xc7\xb6\x1b\x71\x2b\xb5\x8f\xeb\x8a\x20\x32\ +\x8f\xfa\x44\x6d\x6c\x03\x61\x6c\xad\xa3\xea\x33\xb9\x8e\x16\xe5\ +\x42\xd4\x47\xb5\xc0\x5a\xaa\xb0\xcb\x8e\x5b\x1f\x4d\xf5\xe1\x48\ +\x68\x2b\x6b\x2b\xdb\xa9\xef\xea\xab\xfb\x45\x76\xd7\x82\xb9\x42\ +\x69\xbd\x0e\xed\x1a\x84\x12\xf4\x33\x10\xb4\x59\x77\x02\xfd\xf0\ +\xa3\xfb\xc7\xcb\x61\xa8\xd7\xaf\xfe\x8a\x7a\x55\xfe\x3e\x91\x52\ +\xe4\x6f\x1a\x7e\xb0\x27\x95\x7b\xe1\x7c\xa8\x8f\x4e\x94\x12\x81\ +\x67\x1e\x1f\xea\xb3\x13\xfb\x43\x7d\x74\xf2\xdf\xb3\x55\x36\x3f\ +\x4f\x45\x51\xb3\xca\x8d\x95\x4a\xf6\xfa\x9b\x66\x49\x6a\x69\x7b\ +\xf5\x65\x91\x1d\xd3\xd8\x28\xc6\xaf\x2e\xcc\xc9\xfd\x01\xaf\x4a\ +\xbd\xf4\x6e\x9f\xb7\xe6\x4b\xab\x57\x69\xea\x0f\x56\xfd\xcf\xc9\ +\xbf\x27\x8e\x53\x3c\x09\xa0\xc5\xf1\x5f\xbd\x38\xf5\x7a\xd4\xda\ +\x5f\xab\x19\xa3\x30\xb5\xdd\x5d\x2e\xdf\xfa\xda\x39\x9e\x50\x1f\ +\xea\x95\x9a\xfc\x75\xf2\xdc\x24\x9e\xac\x5a\xf8\xed\xac\x9a\x14\ +\x1a\x44\x5b\x79\x61\x67\x62\xb8\x9b\x54\x48\x38\x1f\x54\x20\x82\ +\x42\xcc\x96\xf5\x51\x57\x0b\xe7\x0b\xff\x7e\xb6\x56\x5a\x6e\x95\ +\x65\xd3\x0a\xa0\x0c\x3c\x57\x7a\x5e\x87\xeb\xa1\xd5\xec\x89\xc2\ +\x59\x6a\x95\x63\xb9\xda\x39\x36\x8f\x97\xfe\xfd\x7c\x25\x42\xf7\ +\xcd\xaf\x83\x56\xc4\xc5\xdd\xd0\xc9\x6a\x58\xaf\x97\xa2\x6f\x74\ +\x3d\xb4\xe1\xe9\xe6\xc6\xb0\xa2\x37\xbf\x14\x41\xa7\xb7\xc6\x9b\ +\x17\x95\xda\x94\x74\xb3\x1e\xce\x5b\x5f\x0f\x19\x74\xba\x1e\xaf\ +\x77\x5b\xbe\xee\xec\x9a\x8c\x8c\xfd\x35\x67\xb7\x57\x23\xab\xd5\ +\x08\xca\xbe\x5a\xea\xf7\xb4\x1c\xf5\xad\x82\x5b\x13\x49\x28\x32\ +\x3d\x2f\x88\xec\xc2\x09\x23\xd5\x21\xfd\x2e\x88\x8f\x95\x17\xf7\ +\x77\xb3\x14\x4d\xa0\x87\x5a\x90\xdf\xe0\x7f\xf4\x97\x23\x32\xfa\ +\x47\xbf\xfe\xd5\x39\x22\x68\xd5\xed\xcb\xd7\xfa\x37\xa5\x86\xec\ +\x67\x48\x21\x32\x42\xa1\xdd\x28\xf2\x2a\x1f\x2d\x9a\x43\x55\x2e\ +\xc8\x16\x91\x74\x55\xe8\x05\x67\xc9\x20\xe9\x08\xf7\xdc\x62\x9a\ +\xe4\x6d\xa9\x3a\x3c\xc6\xad\x5f\xdc\x4e\x54\xca\xe5\xc8\x79\x22\ +\x3c\x4f\x35\x30\x72\x84\xc8\x45\x08\xe4\x5c\xe1\x3f\x47\xce\x13\ +\x4e\x64\xbb\x81\xcf\xc8\xf5\x2d\x73\x27\x29\x84\xcb\xb1\x2b\xdd\ +\xcc\x90\xb1\x1b\x02\x3b\x8c\xa5\x83\xa4\x2e\x12\x39\x6e\x8e\x62\ +\xe4\x7a\x97\x3a\xbf\x63\xa9\x63\xec\xc8\x6c\xdd\x49\x14\xd8\x91\ +\x9f\xe2\x08\xcf\x97\x91\xcd\x7e\x0a\x81\xb5\x43\xf9\x2a\x61\x3b\ +\xa3\xc6\xe8\x51\xda\xbb\xae\x05\x2f\x14\x76\xa0\xa1\x93\x11\x43\ +\xd7\xbb\xe0\x75\x2d\x76\x8c\x1d\x9d\xc1\x43\x38\x9a\xca\x16\x3e\ +\xa7\x54\x86\x35\x78\xb2\x6b\x8b\xc7\xf0\x11\xc1\x87\x89\x12\xc0\ +\x5c\x26\xfb\x2a\x64\x82\x87\x70\x56\x60\xa5\xc9\xd8\x91\x19\x3c\ +\x8c\xc6\x8c\x0a\xb9\xe3\xcc\xca\x60\x06\x0f\xa1\x35\x95\x04\xc2\ +\x04\x52\xf4\xcc\xab\xc3\xb1\xa2\x17\x01\x4a\xb3\x5d\x43\x5a\x01\ +\xf8\xfc\x4c\x81\x5f\xc1\xd3\x9e\x69\x4e\xbb\x4a\x76\x32\x7e\xbd\ +\x5b\x3d\x34\x82\x0e\xa0\x3f\x19\x41\x3a\xdb\x07\x68\xcf\xcb\x00\ +\x54\xe2\x5c\xfa\x5c\x11\xe5\x32\xc9\xd8\x11\xd8\x3e\x0f\x8b\x9e\ +\x2b\xbc\x02\x2d\x86\x70\x88\x14\x27\x14\x36\xa0\xc4\x2f\x2c\xf1\ +\x0c\x19\xbb\xfe\x49\x3d\x28\x70\xc0\x8b\x1f\x43\x48\xc8\xed\xe1\ +\x35\x28\xe8\xc0\x28\xc1\xe8\x91\x24\x3b\x21\xa2\xe1\x32\xfc\x3c\ +\xe1\x33\x74\xe4\xd4\x1e\x1e\x37\x48\xee\x9a\xdd\xbd\x8c\x60\xef\ +\x0c\x1f\x3e\x74\x68\x89\x1e\xa3\x47\xc8\xf1\xe1\xd1\x2b\xf7\xaf\ +\x71\xee\x65\x40\xaa\x0f\xef\x81\xb6\xcd\x1f\x03\x48\x45\xf6\xe1\ +\x63\x3f\x30\xfb\xc9\xfe\x0b\x49\xe2\xd3\x7a\xd6\x8a\xa4\x13\xfd\ +\xc9\xe8\x91\x10\x7e\x78\xf7\xd3\x07\x38\x5b\x8e\xdc\x49\x79\x3f\ +\x7c\xec\x1e\xb6\x9b\x07\x31\x88\x84\x20\x62\xed\x5f\xe3\xab\x9c\ +\x6a\xd0\x48\x28\x0e\x22\x88\x8c\x20\xb0\x85\xef\x32\x04\x8d\xb9\ +\x63\xf0\x06\xb1\x81\x58\xff\xa5\x2a\x0b\x3c\xf3\x5f\x9a\xac\x0c\ +\x03\x48\x60\x01\xb1\x06\x50\x3a\x40\xfd\x0b\x63\x48\x47\xff\x01\ +\xa5\xd6\x78\x21\x6c\x76\x8c\x31\x80\xfd\x73\x80\x68\x3d\x0a\xc9\ +\x20\x43\x48\xc9\x01\x62\x53\xa1\x6d\x37\xa6\x49\xcc\x30\x7a\x14\ +\x1c\xa0\x8d\xc5\xaf\x2e\x78\x61\x10\x87\x61\x03\xd1\x08\xb6\x03\ +\x09\x2e\x61\x22\x24\x02\x7b\x91\x3f\x86\x90\x92\x0d\x44\x7b\x31\ +\x60\x6f\x10\x0e\xe7\x69\xd9\x40\x74\x38\x01\x0a\x22\xa3\x48\x47\ +\x09\xa2\x55\x29\x94\x13\x65\x57\x86\x92\x18\x44\x27\x65\x20\x55\ +\xca\x10\x92\xb2\x83\x68\x0c\xcf\x8b\x2a\x38\x9a\x27\xe5\x05\xd1\ +\x4a\x34\x2c\xfb\x7f\x32\x88\x03\x6d\x4a\x42\xd7\x35\xc1\x10\x92\ +\x34\xa9\x1b\x35\x76\xf9\xa6\x24\xb4\x1f\xaa\x6c\xa8\x0f\x05\xa3\ +\x47\x91\x0c\xf5\xd0\xb5\x31\x4d\xc0\x70\x8a\x5e\x9d\xe6\x66\x10\ +\x49\xf6\x45\xe0\x85\x10\x2c\x2f\x64\x18\xe9\x82\x41\xbc\x24\x82\ +\x59\x19\x86\x90\xb2\x4c\x14\x5f\x28\x0a\xee\x30\x63\x10\x09\xbd\ +\x51\x74\xa5\x1a\x6f\x31\x1b\xc8\x11\x45\x07\xf2\x60\x1c\xc1\x00\ +\xd2\xb9\x31\xfd\x78\xa3\xbc\xcd\x85\xd0\x8d\xc1\xe6\x63\xc0\x3a\ +\x6d\xaf\xf0\x4e\x69\xda\x12\x8e\x1a\xc2\xd2\x8d\x41\x57\xdb\x7f\ +\x03\xcd\x9a\xcc\xa8\xae\x91\xa2\x18\x39\xd0\xec\x07\xd7\x33\x7f\ +\x3c\x00\x41\xc7\x76\x02\xfd\x5f\x2b\x2d\x13\x99\xcb\xcf\xbd\x19\ +\x4f\x04\xbe\x8a\x7c\x22\x66\x62\xc4\x08\x9a\x76\x5b\x50\xad\xda\ +\x65\x18\xea\xc0\xc1\x5c\xcf\x18\x0e\x16\x4d\x00\xbb\x26\x2e\x83\ +\xb0\xd5\xf3\xc7\x88\xa5\x99\xf6\x4d\xd2\x1b\x7b\xd4\xe8\x15\x41\ +\x05\xe0\x91\x5e\x86\x9f\x76\x5d\xec\xc8\x8e\x14\x83\x38\x50\xd3\ +\x2d\x88\xa3\x47\x89\xa0\x74\x84\xf4\xf4\x83\xdd\x98\xfe\x45\xd0\ +\xb7\xc0\xb6\x07\x78\x11\x64\x10\x89\x79\x26\x20\xad\xd6\x81\x2f\ +\x13\x0a\x73\xa1\xcf\x8a\x94\x2a\x43\x83\x16\x46\x5f\x7b\x9f\x8e\ +\xef\x84\x0c\xe3\x50\xcd\xb8\xa0\x0c\x77\x07\xa2\x68\x0b\xcf\x0d\ +\xa5\x4b\x94\x2c\x1d\x31\x86\x79\x3b\x2e\x7c\x7c\x0f\x0a\x22\x83\ +\x48\xdc\xd2\xa9\x27\x85\xca\x31\x3e\x61\xca\x1b\x1d\x60\x80\xa9\ +\x36\xb6\x89\x94\xbb\x9a\xd0\x46\x51\x2a\xa1\x64\xa8\xff\x9c\x81\ +\x18\x09\x3f\x70\xed\x80\x68\xbc\xc4\x88\x41\xcc\xeb\x48\x21\xf2\ +\xe9\x32\x10\x7d\xe1\x69\x0c\x39\x59\x33\x24\x8d\x0f\x15\xd1\x5c\ +\x86\x62\x24\x5c\x1d\xef\x4b\x46\x71\xc0\x78\x1f\xaf\x50\x43\xa1\ +\xcd\x9f\xe3\xb3\x55\x1c\x34\xe0\x07\x9b\xc7\x76\xe0\xde\xb0\x65\ +\xa4\xac\x2d\x45\x87\x19\x3a\xa2\x90\x2a\x50\x81\x64\x69\x1c\xb0\ +\x2c\x03\x4f\x47\x81\xa9\x1b\x96\x45\xca\xfa\x52\x34\x88\xd2\xd1\ +\x78\x69\x61\x1c\x72\xdf\xe1\x88\x41\xac\xaa\x4d\x7b\x89\x36\x18\ +\x46\x5a\x3f\x55\xa1\x2b\x34\x60\xcb\xe8\xea\x37\x89\x94\x4f\xd4\ +\x47\x61\xc4\x30\xd6\xa5\xc3\xe8\x8c\x38\x1c\x70\x30\x90\xc4\x95\ +\xa7\xf8\x92\xa9\x6f\xa0\x72\x71\xc4\x15\xc4\xa6\xf6\x14\x3d\x6f\ +\x84\x07\xfe\x0c\x5e\x7c\x8a\xde\x52\xca\x13\x7f\x06\x82\x2f\x2f\ +\x7a\x03\xac\x21\x7e\x5c\xa1\x5b\x6e\xd5\x27\x0a\xf8\x47\x8c\x61\ +\x51\xfa\x86\xde\x86\x01\x4d\xae\x60\x10\x69\x43\x0c\xb4\x24\xb6\ +\x14\x29\x0f\xad\xa0\x8e\x2d\xd0\x08\x42\xe3\x7f\x18\x46\xd2\xa2\ +\xb7\xae\x87\xa7\xa9\x72\xaf\x30\x07\x14\xfd\x4b\xa1\x49\x9b\xf6\ +\x32\xc2\x90\x41\xa4\x33\x85\x9d\x4c\xc1\x8b\x80\xfe\xf9\x1c\x58\ +\x90\x17\x2d\xa2\x37\x79\x43\xc2\xc8\x38\x52\x52\xc2\xbd\x74\xaa\ +\x61\x9f\x86\x36\x5b\x8a\x36\x8a\x90\x3e\x65\x10\xe9\x8c\xa2\xec\ +\x60\x38\x17\xd8\x31\x83\x83\x7c\x4a\xa3\xe8\x77\xd0\x07\xd3\xb1\ +\x8b\x7e\xec\x8a\x61\x1c\x96\x47\xc4\x0e\x3a\x04\x7b\x9f\xb0\x73\ +\x43\xda\x84\x08\x6d\x19\x41\x69\x6c\xae\x64\x10\x89\xc8\x60\x74\ +\x06\x9c\x99\xc4\x81\xc9\x60\x34\x82\xad\xc4\x1b\xb7\x73\x23\xa5\ +\x81\xd1\xc3\xd3\xa1\x50\x9f\x31\x24\xe5\x82\xd1\x18\x42\x34\x22\ +\x87\x89\xb4\x5c\x30\x1a\x44\x28\x4c\x64\x10\x69\xb9\x60\x74\x6c\ +\x01\x6a\x53\x6e\x51\x4b\x17\x1f\xa2\xdd\x19\x28\xe5\xc6\x08\x52\ +\x98\xc2\x9c\x06\xee\x45\x02\x39\xa0\x20\x6e\x7e\xd2\x4b\xe2\x9b\ +\x51\xa4\x65\x83\xd1\x39\x9a\xf3\xe4\x0c\xc7\x14\xd4\x34\x30\xba\ +\x2e\x0a\xb4\x85\x8c\x23\x61\xa6\xb4\xeb\x2a\x6f\xf6\x64\xc8\xb2\ +\xa3\xd8\x22\x8c\x96\xfa\x64\xe0\x28\xec\x9e\x21\x7c\x7b\xe1\x26\ +\x38\x92\x27\x27\x7c\xd1\x38\x3a\xe5\x51\xc6\x71\x58\xc6\xb7\x97\ +\xed\x6a\xec\xc7\xd0\x32\xbe\xd8\x02\x6f\x50\x1a\x79\xf0\x0c\x39\ +\xe3\x8b\xce\x73\x33\x5f\x38\x94\x77\x83\x67\x0b\x23\xe1\xe7\x2b\ +\x72\x9e\xdf\xae\xa7\x7a\x11\x20\xb8\x5e\xe7\xaf\x1f\x27\x82\x39\ +\xe3\x8b\x1e\xa3\x27\x21\x8e\x82\x12\xc3\x51\x4b\xa1\x61\x7c\xd1\ +\x33\x2c\x6b\x9d\x79\x0a\x21\x6d\x6b\x9a\x11\x43\x58\x10\xbe\xd8\ +\xec\x5a\x1e\xd1\x33\x7e\xc3\xed\xfb\x45\x4b\x21\xa4\x48\x9b\xea\ +\x52\x46\x91\x26\x3e\xc4\xe6\xd9\x9a\xf1\xcd\x0c\xe3\x50\xb4\x2f\ +\x96\xf5\x85\x7d\x1a\xb7\xc8\xc3\x39\x8c\x21\x09\xeb\x8b\x76\x4c\ +\x21\x41\x64\x10\x69\x49\x5f\x2c\xe1\x24\xdb\xad\x4b\x39\xac\x20\ +\x1e\x58\x82\xd6\xa5\xa0\x18\x32\x90\x84\xd9\x52\x6c\x68\x01\xa6\ +\x69\xd8\xa5\xa1\xcd\x95\x76\xab\x49\x19\x3d\x5a\x12\x18\x4b\x57\ +\x34\x7e\x0b\x87\xf8\x03\x92\xc0\xd8\x84\x77\x83\x18\xc3\x38\x28\ +\x07\x8c\x05\xb2\xe1\xed\x4f\x95\xaa\x5d\xee\xdf\x66\x20\x49\x38\ +\xe0\x7e\xa4\xb1\xf6\x57\x19\x44\x22\x0e\x18\xdb\x12\xe3\x5b\xc8\ +\x9c\x8e\xb8\x95\xb7\x69\x01\x8d\x1e\x1b\x34\x7c\x3b\x76\xa6\x82\ +\x3b\x18\x33\x0b\x36\x63\xe7\xa6\xfa\x84\x03\x67\x5c\x28\x52\x44\ +\x0f\xd4\xe3\xa1\x41\x94\x3e\xaa\x07\x7b\xa8\x97\x89\xa2\x12\xed\ +\x92\x0c\x46\x90\x6e\x13\x3e\x7e\x5c\x10\x24\x85\x52\x84\x9e\x0c\ +\x3d\x22\xf6\x62\xc4\x18\x16\x35\x19\xe0\x36\x7c\x9c\x14\x32\x82\ +\xa4\x55\x19\x11\xb8\xe7\xa9\x03\x9f\x86\x07\x77\x11\xe7\x6c\x3a\ +\x90\x45\x70\x1a\x22\x03\x49\x59\x99\xe1\xf4\x33\x5f\x36\x12\xca\ +\xd5\x0f\x8f\x51\xec\x5f\x1c\xf3\x1d\xf9\x78\x18\x21\x61\x64\x18\ +\xe9\xf9\x7d\xf4\xac\x60\x58\xad\x72\xcc\x4f\x98\x0a\xc7\x4f\xd1\ +\x83\xd3\x6f\x94\xb6\x71\xd4\xe9\xb7\x28\x0f\x37\x6c\x28\x13\xde\ +\xc1\xac\x60\x8e\xfc\x49\x73\x37\xca\x0a\xf0\xd3\x49\xa1\x61\xc1\ +\x8c\x23\x6d\xec\xd8\xc5\xf0\x6e\x70\x5c\x30\xc7\x1c\xc4\xc1\xa3\ +\x82\xeb\x89\x3b\x30\x91\xa1\x30\x17\x52\x75\x6c\x1f\x31\x94\xc6\ +\xcf\x31\x59\x00\x34\xd1\xa8\x84\x92\x5a\xb5\xb2\x44\x0e\x49\xfa\ +\x1b\x99\xec\x25\x2f\xc7\xf2\x48\xeb\xeb\x78\xda\x6b\x45\x3b\x3b\ +\xa0\xd7\x4a\x3b\xc2\x7b\xc4\x48\x16\xde\x4e\x2e\x9a\xbd\xe8\x56\ +\x47\x48\x4f\x3f\x88\x0a\xaa\x46\x0c\x64\x53\xde\x18\xf6\xe4\xb8\ +\x32\x94\xd4\xb5\x71\x2e\x9e\x48\xe6\xca\xaa\x41\x91\x04\x94\xaa\ +\x7a\x86\x9c\xf6\x65\xa4\xab\x42\x2f\x50\x67\xd0\xb9\x50\x63\x06\ +\x25\x7c\x37\xf0\x25\x89\x8b\x33\x6e\xe8\xac\x10\x48\xc8\xbd\x1a\ +\x3c\xb0\xba\x98\xc1\x23\xab\xc2\x01\x22\xc5\x57\x63\xe7\xc1\xad\ +\x6a\x43\x19\xd9\x24\xcd\xc1\x46\x0d\x9d\x29\xbe\x01\xfc\x97\x57\ +\x83\x17\x56\xdb\x30\x18\xbc\x61\xf6\x7d\x03\x01\xe1\x6b\xc1\x53\ +\x12\x1e\x98\xc0\x5a\x93\x92\x17\xc6\x98\xbd\x08\xea\x8e\xc9\x00\ +\x12\x6e\x37\x45\x18\x3e\x65\x03\xb3\x9f\x58\x77\x92\x6e\x33\x05\ +\xb8\xfc\x57\xc3\xe7\x40\x3e\x27\xc3\x47\xe4\x72\x62\xd4\x26\x18\ +\xea\x05\x22\x0a\xed\xc8\x65\xb5\x49\x20\x79\x98\x70\xe1\x85\x6d\ +\xdd\x0c\x1e\x91\xcd\x0b\x30\x92\x07\xc5\x7a\xda\x0d\xf5\x1d\x83\ +\x1e\x83\x47\x60\xf3\x00\x2a\x10\x15\xec\x31\x7a\x74\x59\x16\x44\ +\xac\x07\x67\x59\x7c\x21\x3d\x45\x33\x10\x61\xd4\xd0\xb9\x38\x57\ +\x13\xce\xb2\x30\x78\x74\x9c\xad\x8f\xc9\x91\x81\x1e\x4b\x24\xb4\ +\xd2\xf4\x14\x93\x42\x24\x69\x96\xee\xb3\x2c\x8c\x1f\xdd\x5e\x26\ +\x8c\xcf\x02\x0a\x9f\x2b\x1c\xad\x39\x19\xbb\xfe\x65\x0f\xdc\x5c\ +\x8f\x93\x3c\x06\x8f\x8e\x5d\x00\x36\x2c\xe1\xd8\x05\x0e\xd4\x69\ +\xd9\x05\x4c\xa6\x05\x94\x3e\x06\x90\xac\x08\xbb\xf3\x14\x27\xfb\ +\x2c\x84\x25\x65\x9d\x13\xb3\x8c\x1e\x21\xaf\x87\x70\x39\x61\x5e\ +\x8f\xa3\x75\x4a\x5e\xcf\x46\x54\x02\xc2\xc4\x1e\xe3\x47\x55\xc3\ +\x89\xb2\x7b\x60\x9a\x33\x14\xa1\x56\x9c\x0e\xfb\x2c\x04\xc2\x17\ +\x40\x9b\xff\x70\x89\x4e\x86\x8f\xae\x8e\x13\x15\xae\xff\x5a\xc7\ +\x6d\xe6\x87\x28\x48\x06\x70\xe2\x32\x36\xe0\x63\xfc\xe8\xaa\x39\ +\x31\xc6\x0f\x76\x5c\x58\x7b\x12\xd7\x73\x76\x1f\x3b\x30\x84\x94\ +\x15\x9d\xd0\xd6\x4c\x6c\xd2\x93\x55\x28\x65\x51\x27\x4a\x89\xba\ +\x90\x0b\x4a\x89\xa0\x79\xf5\x88\x07\x15\x14\xfb\x6a\x01\x37\x06\ +\x37\xa2\x97\x87\x11\x92\x76\x2d\xf4\xd0\xb3\x5d\x5b\x00\x36\x53\ +\x60\x18\xc0\xfe\xfd\x50\xb0\x5c\xa9\x83\x29\x5a\x06\x54\xc6\x8f\ +\xa8\xdf\x24\x7a\x4a\x76\x5b\x87\x32\x7a\x34\xd4\x11\xd8\xd3\xae\ +\x03\xe9\x63\x1b\x48\x3b\x88\x10\x2d\x80\xe0\x3c\x57\xbb\xa2\x76\ +\x19\x45\x9a\x49\x84\x68\x57\xa6\xbd\xc3\x8f\xf1\x23\x9c\x5c\xd7\ +\xed\x30\xd7\xa0\x48\x91\x52\xa1\x37\xea\xb6\x3c\xe5\x58\x10\x74\ +\xa3\x5e\x25\x3c\x3b\xb2\xa3\x33\x21\xf4\x84\x0a\xc3\x90\x5b\xd7\ +\xd1\x44\x83\x21\xba\xf3\xb9\x36\x85\x91\xef\xf8\x8e\xd7\x72\x48\ +\xfd\x50\xba\x21\x51\x97\xde\x11\xab\xd2\x7c\x66\x9d\xc2\x4f\x01\ +\xe5\xa0\x7e\x50\x6d\xea\xe1\x87\x63\x43\x2e\xa9\x2f\xdc\x7c\xad\ +\x88\x26\x10\x8c\x18\xc6\xa2\x7f\x24\xb8\x8b\x13\x17\xda\xb3\x53\ +\x4a\x9c\xe0\x0e\xf1\x61\x05\x18\xe3\x33\x90\x94\x33\x96\xc0\x49\ +\x59\x17\xa1\xd8\x0c\x32\x3f\x41\xd1\x2b\xe6\x29\x3b\x24\x7d\x44\ +\x46\x8d\x62\xe1\x9f\xfa\x78\x61\x8c\x84\x2a\x4c\x20\xc3\x38\x18\ +\x67\x01\x16\xdd\xe3\xc7\xd4\xb3\x97\x4a\x4e\x5d\xd8\x78\x47\x15\ +\xb2\x8e\x8c\x24\x2d\x8d\xe1\xe3\x1d\x55\xb0\xa6\x94\x9d\x1c\x52\ +\x22\x23\xc0\x53\x89\x67\xee\x0d\xc7\x8b\xd4\x14\x86\xc2\x3b\x38\ +\xa1\x90\xcf\xf4\x29\x03\x49\xcb\x65\x80\xe5\xf9\x97\x85\x1b\xad\ +\x21\xd9\x8e\xe0\xe4\x69\xef\x4a\x34\x9f\xf9\xc1\xc5\x18\x6f\x0f\ +\xb9\x3c\xed\xdd\x41\x31\x22\xd7\x42\x0d\x95\xa4\x31\xf9\xd2\x08\ +\x1f\x16\x72\x21\xc6\xf0\xe4\x45\x07\x72\xc8\x85\x18\x03\xb2\x16\ +\x6e\x3f\x31\x3d\x57\xb5\x51\x53\x17\x1e\x5e\x10\x5f\xe8\xca\xc5\ +\x40\x12\x52\x17\xe0\x0c\x3a\xce\xb1\xbd\x1d\x18\xcb\xda\x1a\xbf\ +\x1f\x71\x24\xc5\x71\xd4\xbb\xd6\x0a\xf2\xc2\xc7\x7b\xa9\x10\x07\ +\xc5\x61\x06\x25\x6f\x01\xee\xdf\xee\xc0\x34\x32\x88\x34\x29\x36\ +\xd5\x7d\x9e\x86\xd2\xab\x19\xb5\x1a\x2d\x28\x27\x1b\x6f\x0d\x41\ +\x35\xca\xce\x29\x29\xe5\xd4\x41\x45\x06\x44\x58\x70\xcc\x4f\xce\ +\x3c\x81\x7d\x2c\xf1\x25\x52\x8c\x24\x2d\xf5\x24\xd1\xee\x29\x08\ +\x23\xf1\x7e\x9a\x11\xc3\x58\x8f\xb9\x8e\x98\x8b\x7a\x8b\xf8\x39\ +\xe8\xf4\x69\x13\xd1\x9f\x60\xa7\x9c\xaa\xe9\x17\x03\xd8\xbb\x00\ +\x82\x13\xe6\x2f\x13\x3d\x1b\x68\xec\xcc\x18\xd2\x39\xa7\xf8\x5a\ +\xa8\x48\xf8\xf9\x92\x9c\xd5\x61\xa8\x40\x04\x46\x36\xb9\xc3\x10\ +\x89\x63\xea\x41\x5d\x4a\x2f\x13\x44\x59\x01\xc6\x28\x0e\x35\x94\ +\x09\x9f\x31\x05\xb5\xa9\x27\x7c\xc6\x8f\x84\x4b\xb4\xf1\x6d\x86\ +\x5a\xae\x28\x83\x47\x44\x58\x80\x6d\x2e\xf1\xec\x21\xbb\x32\xc4\ +\x9c\x85\xea\xbc\xd5\x1e\x43\x48\x98\x99\xb1\xd1\x36\x10\x8e\x0a\ +\x59\x8d\xd2\x64\x64\x3a\xe8\x2e\x04\xaa\x51\x32\xfc\x46\xdc\xdb\ +\x24\xca\x7b\xcd\x02\xea\xf3\xa2\xce\x26\x60\x5a\x54\xe3\xa7\x5c\ +\xfd\x60\x10\x29\xcc\xa0\x07\xd7\x96\x5e\x06\xa3\x23\x64\xe0\x05\ +\x5e\x5b\x8d\x32\x8c\x64\xb5\x50\xb6\x89\x09\x91\x30\xea\x88\xd0\ +\x0e\xdd\xd0\x6d\xe7\xd7\x22\xd7\x0e\x68\x1a\xb0\x8f\x1a\xc6\x28\ +\xaf\xf4\x06\x39\xfc\xcb\x60\x74\x85\xab\x51\x0c\xdb\x46\x91\xa5\ +\x91\x50\xa9\x9a\x20\x11\xdd\xbc\x2d\x10\x8e\xd6\xaa\x01\x5b\xc7\ +\x01\xd3\x34\x65\x77\x05\x2c\x94\xa1\x08\xa5\x92\x4a\xb1\x6a\x1d\ +\x90\xff\xb5\xc0\xdd\x50\x97\xb9\x3a\x52\x04\xca\x20\x39\x20\x90\ +\x23\x0e\x1b\x23\x07\x9e\xaa\x7d\x51\xd4\xd8\xd4\x5d\x70\xe6\x66\ +\xa8\x8d\xa5\xf8\x6e\x7c\x30\x8a\x4c\x42\xd1\x76\xe3\x73\xd0\x39\ +\x1c\x98\x12\xe6\x1c\x1c\x9d\x83\xd3\x41\xd9\x30\x48\x08\x33\x86\ +\x34\x74\x94\xaf\xff\xef\xa5\xb7\x29\xdb\x44\xf2\x4d\x34\x5d\xec\ +\x4c\x04\x85\x91\xa1\x24\x2c\x19\x06\x7b\x7e\x77\xe0\xdd\xb0\x46\ +\xa5\x8a\x15\x15\xbe\x3a\x03\xd4\xa8\x8c\x20\x59\xb4\xef\x99\x26\ +\x7c\x6f\xdb\x39\x1d\x71\xca\xa6\x20\x18\x15\x54\xab\xd8\x41\x12\ +\x95\x33\x6f\xc4\x14\x63\x07\x24\x23\xc8\x15\x33\x90\xc4\xec\x54\ +\x00\x05\xfc\x97\x49\xa4\x14\x9e\x13\x39\x11\xe7\xc2\x07\xe6\xa7\ +\xc0\x0d\xfb\x1d\x50\x8d\x94\x50\x8e\x7a\xd7\x77\x64\x05\xa8\x89\ +\xeb\xda\x45\x05\xd3\x36\x91\xed\x06\x24\x1e\xce\xa8\xd1\x33\x82\ +\xa8\x30\x03\xd7\xa5\x0f\xec\xf2\x66\xf8\x28\x77\x61\x44\x98\x71\ +\xeb\x70\xf5\xa2\x2b\xec\xc0\x97\x34\xe3\xd9\x46\x0d\x60\x91\xfe\ +\x06\x63\xc4\x57\x23\x18\x14\x53\x2e\x5c\x46\x70\x98\x54\x1b\xe8\ +\x8d\xbe\x1a\x3d\x55\x94\x7f\x33\x7a\x83\xa5\x69\x42\x28\xbe\x7f\ +\x35\x7e\x11\xe4\xbe\xb4\xf0\xbb\x9a\xdd\x7e\x7a\x77\x35\x3b\x7c\ +\xd1\x7f\xfd\x1f\xc3\xde\xb3\xe7\ +\x00\x00\x0a\x16\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x6d\x69\x6e\x75\x73\ +\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\ +\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\ +\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\ +\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\ +\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\ +\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\ +\x3d\x22\x34\x34\x2e\x37\x39\x31\x32\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x31\ +\x37\x2e\x37\x39\x33\x31\x31\x38\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x35\x2e\x32\ +\x34\x32\x30\x33\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\ +\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\ +\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\ +\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\ +\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\ +\x22\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\ +\x37\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\ +\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\ +\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\ +\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ +\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\ +\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\ +\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\ +\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\ +\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ +\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\ +\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\ +\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\ +\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\ +\x30\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\ +\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x37\x2e\x30\x30\x33\x36\x30\x39\x36\x36\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x33\ +\x33\x33\x33\x33\x33\x33\x2c\x31\x36\x2e\x38\x35\x32\x33\x33\x39\ +\x20\x48\x20\x32\x38\x2e\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x38\x32\x2d\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\ +\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\x64\x30\x64\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\x2e\x31\x39\x31\x32\ +\x39\x38\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x4d\x20\x35\x2e\x38\x36\x36\x36\x36\x36\x37\ +\x2c\x31\x36\x2e\x38\x36\x31\x32\x31\x31\x20\x48\x20\x32\x38\x2e\ +\x32\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x37\x38\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\ +\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\ +\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\ +\x73\x76\x67\x3e\x0a\ +\x00\x00\x0a\xea\ \x3c\ \x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ \x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ @@ -22990,612 +21161,2533 @@ \x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ \x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ \x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ -\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x70\x6c\x75\x73\x2e\ -\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ -\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\ -\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\ -\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\ -\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ -\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\ -\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\ -\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\ -\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\ -\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\ -\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\ -\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\ -\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ -\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\ -\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\ -\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x33\x2e\ -\x34\x32\x37\x36\x31\x38\x34\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ -\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x32\x2e\x33\x39\ -\x35\x38\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ -\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\ -\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ -\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\ -\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ -\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\ -\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\ -\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x6f\x69\x5f\x73\ +\x69\x6e\x67\x6c\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\ +\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\ +\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\ +\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\ +\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\ +\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\ +\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\ +\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\ +\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x78\x3d\x22\x2d\x31\x34\x2e\x39\x31\x38\x38\x38\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\ +\x3d\x22\x32\x31\x2e\x39\x38\x36\x31\x39\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\ +\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\ +\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\ +\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\ +\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\ +\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ +\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\ +\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\ +\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\ +\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\ +\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\ +\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\ +\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\ +\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\ +\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\ +\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\ +\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\ +\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\ +\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\ +\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\ +\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\ +\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\ +\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\ +\x38\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\ +\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\ +\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\ +\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\ +\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\ +\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\x37\x38\x35\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x39\ +\x39\x39\x39\x39\x39\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\ +\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x33\x2e\x32\x34\x30\x30\x35\x36\x30\x34\x70\x78\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\ +\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\ +\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\ +\x2c\x37\x2e\x34\x36\x36\x36\x36\x36\x37\x20\x63\x20\x30\x2c\x31\ +\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\x32\ +\x30\x30\x30\x30\x30\x33\x20\x30\x2c\x31\x39\x2e\x32\x30\x30\x30\ +\x30\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x33\x37\x36\x39\x2d\x36\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\ +\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\ +\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\ +\x69\x6c\x6c\x3a\x23\x38\x30\x38\x30\x38\x30\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x35\x38\x39\x30\x39\x35\ +\x31\x32\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x37\x2e\x34\ +\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x36\x30\x32\x32\x38\x39\ +\x20\x63\x20\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\ +\x31\x39\x2e\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x20\x31\x39\x2e\ +\x32\x30\x30\x30\x30\x30\x33\x2c\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\ +\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x17\xc8\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x73\x65\x61\x72\x63\x68\x5f\ +\x69\x6d\x61\x67\x65\x73\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x37\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x30\x66\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\ +\x30\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x62\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\ +\x30\x33\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\ +\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\ +\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x31\x34\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\ +\x32\x34\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\ +\x38\x2c\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\ +\x35\x38\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x67\x72\x61\x64\ +\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\x65\x72\x53\ +\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x32\x3d\x22\x32\x2e\x33\x36\x33\x36\x33\x36\x33\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x32\x3d\x22\x33\x2e\x31\x38\ +\x31\x38\x31\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x31\ +\x3d\x22\x31\x31\x2e\x34\x35\x34\x35\x34\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x31\x3d\x22\x2d\x37\x2e\x37\x32\x37\x32\x37\ +\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\x30\x32\ +\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\x69\x6e\x6b\x3a\ +\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\ +\x63\x74\x3d\x22\x61\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x36\ +\x34\x2c\x30\x2c\x30\x2c\x30\x2e\x36\x31\x33\x33\x33\x33\x33\x33\ +\x2c\x33\x30\x2e\x39\x33\x33\x33\x33\x33\x2c\x32\x2e\x37\x32\x29\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\ +\x6e\x74\x36\x30\x32\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\ +\x22\x61\x6c\x77\x61\x79\x73\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x73\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x73\x74\x6f\x70\x36\x30\x32\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\ +\x66\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\ +\x74\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x73\x74\x6f\x70\x36\x30\x32\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\ +\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x66\x66\x66\ +\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\ +\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x6c\x69\x6e\x65\ +\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x3e\x0a\x20\x20\x3c\x2f\ +\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\ +\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\ +\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\ +\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\ +\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x78\x3d\x22\x2d\x31\x39\x2e\x35\x37\x35\x38\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x79\x3d\x22\x31\x39\x2e\x32\x38\x36\x34\x39\x36\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\ +\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ \x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ -\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\ -\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\ -\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\ -\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ -\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\ +\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x66\x61\x6c\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\ +\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x66\x61\x6c\x73\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\ +\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\ \x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ -\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\ -\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\ -\x74\x72\x75\x65\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ -\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x33\x37\ -\x36\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ -\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ -\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ -\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\ -\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ -\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ -\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ -\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ -\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ -\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ -\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ -\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ -\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ -\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ -\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ -\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ -\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ -\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ -\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ -\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ -\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ -\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ -\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ -\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ -\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ -\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ -\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\ -\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\ -\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x37\ -\x2e\x30\x30\x33\x36\x30\x39\x36\x36\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ -\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\x36\x2e\x39\ -\x34\x34\x39\x37\x35\x2c\x35\x2e\x31\x31\x39\x36\x33\x36\x39\x20\ -\x31\x37\x2e\x31\x38\x38\x33\x35\x38\x2c\x32\x38\x2e\x35\x38\x35\ -\x30\x34\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ -\x70\x61\x74\x68\x33\x37\x38\x32\x2d\x38\x2d\x30\x22\x0a\x20\x20\ -\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\ -\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\ -\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\ -\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\ -\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\ -\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ -\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\x64\x30\x64\x3b\x66\x69\x6c\ -\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\ -\x6b\x65\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x77\x69\x64\x74\x68\x3a\x37\x2e\x30\x30\x33\x36\x30\x39\ -\x36\x36\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\ -\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ -\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ -\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ -\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x64\x3d\x22\x4d\x20\x35\x2e\x33\x33\x33\x33\x33\x33\x33\x2c\x31\ -\x36\x2e\x38\x35\x32\x33\x33\x39\x20\x48\x20\x32\x38\x2e\x38\x22\ -\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ -\x33\x37\x38\x32\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ -\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\ -\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ -\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\ +\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\ +\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\ +\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\ +\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\ +\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\ +\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ +\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\ +\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\ +\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\ +\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\ +\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\ +\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\ +\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\ +\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\ +\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\ +\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\ +\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\ +\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\ +\x22\x66\x69\x6c\x6c\x3a\x23\x62\x33\x66\x66\x38\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x38\x35\x38\x31\ +\x35\x32\x39\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\ +\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x31\ +\x35\x2e\x32\x38\x34\x35\x30\x36\x2c\x31\x2e\x36\x38\x35\x37\x36\ +\x38\x32\x20\x33\x32\x2e\x34\x34\x37\x35\x36\x35\x2c\x31\x30\x2e\ +\x32\x36\x37\x32\x39\x38\x20\x32\x33\x2e\x38\x36\x36\x30\x33\x35\ +\x2c\x32\x37\x2e\x34\x33\x30\x33\x35\x37\x20\x36\x2e\x37\x30\x32\ +\x39\x37\x35\x34\x2c\x31\x38\x2e\x38\x34\x38\x38\x32\x38\x20\x5a\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\ +\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\ \x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\ \x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\ -\x30\x64\x30\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\ -\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ -\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ -\x68\x3a\x35\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\x74\x72\ -\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\ -\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ -\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ -\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ -\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ -\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x4d\x20\x35\ -\x2e\x38\x36\x36\x36\x36\x36\x37\x2c\x31\x36\x2e\x38\x36\x31\x32\ -\x31\x31\x20\x48\x20\x32\x38\x2e\x32\x36\x36\x36\x36\x37\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\ -\x37\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ -\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\ -\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\ -\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\ -\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\x22\x20\x2f\x3e\x0a\x20\ -\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\ -\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x64\x30\ -\x64\x30\x64\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\ -\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ -\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x35\ -\x2e\x31\x39\x31\x32\x39\x38\x39\x36\x3b\x73\x74\x72\x6f\x6b\x65\ -\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\ -\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\ -\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\ -\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\ -\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\ -\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x36\x2e\x39\ -\x34\x31\x36\x33\x35\x2c\x35\x2e\x36\x35\x33\x30\x33\x33\x36\x20\ -\x30\x2e\x32\x33\x32\x33\x32\x2c\x32\x32\x2e\x33\x39\x38\x37\x39\ -\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\ -\x61\x74\x68\x33\x37\x38\x32\x2d\x30\x22\x0a\x20\x20\x20\x20\x20\ -\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\ -\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\ -\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\ -\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x63\x63\ -\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ -\x67\x3e\x0a\ -\x00\x00\x07\xf6\ -\x00\ -\x00\x1f\x0c\x78\x9c\xdd\x59\x59\x6f\xe3\x46\x12\x7e\xf7\xaf\xe0\ -\xd2\x0f\x49\xb0\x26\xd9\xf7\xc1\x91\x14\x20\x3b\x18\x20\xc0\xe6\ -\x25\x9b\xc5\x3e\x06\x14\xd9\x92\xb9\x43\x91\x02\xd9\xb2\xa4\xf9\ -\xf5\xa9\xe6\xa9\xcb\xce\x6c\xe2\x9d\x99\x8c\x60\xc3\x66\x1d\xdd\ -\x55\x5f\x7d\x5d\xdd\x6c\xcd\xbe\x3f\x6c\x0a\xef\xc9\xd4\x4d\x5e\ -\x95\x73\x1f\x87\xc8\xf7\x4c\x99\x56\x59\x5e\xae\xe7\xfe\xbf\x7f\ -\x79\x17\x28\xdf\x6b\x6c\x52\x66\x49\x51\x95\x66\xee\x97\x95\xff\ -\xfd\xe2\x6e\xf6\xb7\x20\xf0\xfe\x51\x9b\xc4\x9a\xcc\xdb\xe7\xf6\ -\xd1\xfb\xb1\x7c\xdf\xa4\xc9\xd6\x78\xdf\x3e\x5a\xbb\x8d\xa3\x68\ -\xbf\xdf\x87\x79\x2f\x0c\xab\x7a\x1d\x7d\xe7\x05\xc1\xe2\xee\x6e\ -\xd6\x3c\xad\xef\x3c\xcf\x83\x79\xcb\x26\xce\xd2\xb9\xdf\x3b\x6c\ -\x77\x75\xd1\x1a\x66\x69\x64\x0a\xb3\x31\xa5\x6d\x22\x1c\xe2\xc8\ -\x9f\xcc\xd3\xc9\x3c\x75\xb3\xe7\x4f\x26\xad\x36\x9b\xaa\x6c\x5a\ -\xcf\xb2\xb9\x3f\x31\xae\xb3\xd5\x68\xed\xa2\xd9\xd3\xd6\x08\x6b\ -\xad\x23\x44\x22\x42\x02\xb0\x08\x9a\x63\x69\x93\x43\x70\xee\x0a\ -\x31\xde\x72\x25\x08\xa1\x08\x74\x93\xe5\xc7\x59\xc5\x0d\x00\xba\ -\x85\xdf\xd1\x7c\x10\x84\x4d\xb5\xab\x53\xb3\x02\x3f\x13\x96\xc6\ -\x46\x6f\x7f\x79\x3b\x2a\x03\x14\x66\x36\x3b\x19\x66\xc0\xf3\x6c\ -\xd6\x33\x90\xcb\x64\x63\x9a\x6d\x92\x9a\x26\x1a\xe4\xad\xff\x3e\ -\xcf\xec\xe3\xdc\xa7\x2c\xc4\x14\x3e\xbc\x15\x3e\x9a\x7c\xfd\x68\ -\x2f\xa5\x79\x36\xf7\x21\x7a\xa2\x55\xf7\x7c\x42\x0e\xdc\x19\xf4\ -\x03\xc7\xa3\x06\x85\x9a\x84\xd8\xab\x31\xa7\xb2\xb3\x19\x52\x88\ -\xb3\x2a\x75\x31\xc1\x90\x66\x93\x27\x3b\x5b\x6d\xa0\x6a\x69\x5a\ -\x24\x4d\x93\xaf\xf2\x14\x1e\xaa\x72\x5b\xec\xd6\x79\xf9\x6b\x0d\ -\x2c\xab\x36\xbf\x02\x16\xa6\xb1\xe1\x00\xe0\x38\x9b\x39\x6c\xab\ -\xda\x06\x87\x6c\x0b\x30\x0a\x79\x53\x79\x3c\x55\x3e\xe5\x66\xff\ -\x43\x75\x80\xf0\x3c\xe4\x51\x02\x3f\xfe\x02\xe4\xb3\xcc\xac\x1a\ -\xa7\xef\x52\x75\x4f\x90\xab\xf4\xbd\xa8\xd5\x8e\x91\xbb\xb0\x33\ -\x37\xc6\x64\xbb\x4c\x9a\x0e\x4e\xcf\xdb\x26\x6b\xa0\x5e\x51\xd5\ -\x73\xff\x7e\xd5\x7e\x7a\xc5\xb2\xaa\x33\x53\x0f\x2a\xd1\x7e\xce\ -\x54\x15\x94\x27\xb7\xc7\x6e\xb1\xf5\x63\x0f\x69\xb8\x51\x47\x3d\ -\xba\xad\x6f\x1e\x93\xac\xda\xcf\x7d\x72\xa9\xfc\x50\x55\x9b\xb9\ -\x2f\x43\x8d\x15\x62\x58\x5e\xaa\x53\x40\x22\x20\x24\x54\x18\x51\ -\xc6\xae\xb4\x2e\x20\x1e\x12\x2a\xa5\xbc\x1a\x39\xdd\xd5\x35\x2c\ -\xc7\xa0\x48\x8e\x06\xb2\x6a\xff\xe0\xde\xa8\x79\xac\xf6\xeb\xda\ -\xa1\xb3\x4a\x8a\x11\x9e\xd1\xd5\xa9\x82\xe5\xd2\x95\xc1\xd6\xbb\ -\x2b\x35\xd0\x63\xe7\x56\x7a\xb0\x2b\x73\x0b\xab\x69\x7b\x38\x1d\ -\x76\x97\x67\xa6\xb9\xed\xb8\xcf\x81\x2c\xfb\xa0\xe7\x35\xa6\x23\ -\xc8\x97\x16\x03\xc9\x25\x52\xcf\x58\x38\x86\x3c\xa3\x3a\x3e\xaf\ -\xda\x24\x87\x7c\x93\x7f\x30\x90\x38\xbe\x34\x69\xca\x64\x1b\xac\ -\x8b\x6a\x99\x14\x7d\xf4\x8b\xd6\x62\x76\x06\x4b\xe7\xe4\x79\xf6\ -\xe8\x56\xf4\xe1\xe8\x64\xfe\x20\x74\x80\x3a\x01\x95\x82\x8f\xc2\ -\xaa\xce\x61\xa1\x9c\xc4\x3b\x88\x8e\xa7\x22\xb7\xfe\xa1\x7d\x1f\ -\xa6\xc0\x46\x99\x2b\xf2\x40\xf4\xe8\x9a\xe9\xad\x7c\x63\x6c\x92\ -\x25\x36\x99\x68\x3f\x48\x88\xd6\x68\xc8\x04\x5a\x67\xfc\xf3\xdb\ -\x77\x8b\x7e\x82\x59\x9a\xc6\xff\xa9\xea\xf7\xc3\x7c\x9e\xe7\x0c\ -\x92\x65\xb5\x03\xe8\xfd\xc5\x28\x9e\x65\x69\x0c\x0b\x1c\x9a\xc0\ -\x22\xdf\x00\x99\x5d\x9f\xfc\x3b\x34\xb7\x59\x34\x29\xce\x8c\x1d\ -\x38\xd3\xa0\xdd\xb0\xd0\x1f\xda\xae\x79\x73\xeb\xc8\xd2\x4d\xee\ -\x9c\xa2\x7f\xd9\xbc\x28\x7e\x74\x93\xf4\x19\x9f\x0c\x9a\xdb\xc2\ -\x4c\xc2\x59\xd4\x47\xdf\xe7\x16\x9d\x24\x37\x8b\x86\xec\xdb\xa7\ -\xf5\x84\xca\xd9\x2a\x18\x0b\x5b\x24\x4b\x03\x45\xff\xa7\x53\x7a\ -\x57\xda\x75\x5d\xed\xb6\x9b\x2a\x33\xbd\xfb\x88\xa6\x49\xed\x58\ -\x2a\x7b\x2c\x40\xbf\x82\xe8\xe3\xfb\x8c\xb9\xd6\xf2\xc6\x3d\x04\ -\x7d\x63\x88\xf1\x9b\xc6\xd6\xd5\x7b\x13\x43\xe3\x91\x5a\x98\xfe\ -\xb1\x5b\x0b\x31\x0d\x05\x17\x84\x0f\x42\x00\xc3\xd4\x05\x30\xd5\ -\xc6\x6c\x90\x65\x09\xf4\x90\xba\x4e\x8e\x71\x09\x7b\xfa\x20\x1d\ -\x87\x3f\xe3\xa0\x8b\x8c\x71\x41\x47\x61\xbf\xe2\x38\x0a\x85\xe4\ -\x0c\xb1\x51\x31\x2c\x34\xac\x42\xae\x94\x92\x13\x6d\x5d\xe3\x51\ -\x21\x16\x5a\x50\xaa\x47\xe9\xd1\xf5\x2a\x84\x25\x73\x1b\xcd\x50\ -\x8c\xd9\x36\xb1\x8f\xe3\xfc\x63\xff\xa9\xca\x12\xe2\xa8\xea\x00\ -\x3a\xd1\x53\x62\x77\xb5\x39\x25\xbc\x8b\xd3\xf9\x41\x9c\x53\xf0\ -\x8e\xb7\x1e\x26\x21\x82\x28\xc9\x03\x0b\x09\x16\x9c\x62\xe9\x61\ -\x1c\x2a\xd8\xa5\x94\x7e\x80\xfe\xaa\x30\x99\x02\x3a\x03\x1e\xa1\ -\x16\xf8\x97\x90\x96\xa1\xc0\x18\x13\xc1\xc8\x20\x2f\x72\x08\x33\ -\xd9\xc6\xcb\x9d\xb5\xa7\xb2\xff\x56\x79\x19\xb7\x95\xf8\x33\x65\ -\xb9\x89\xd1\x4b\x41\x23\x94\xe0\x44\x7e\xde\xa0\xcf\xca\x41\x28\ -\x6c\x4e\x44\x20\xed\xea\xa1\xa5\x22\x2f\xd6\x63\x2a\x2b\xd1\x01\ -\xf1\x3f\x96\x15\xaf\x44\x25\xac\x02\x79\x1a\xfd\x4f\x1e\x82\xdd\ -\x51\x11\xa2\xa9\xa3\x13\xa6\x9c\x30\x17\xfe\x15\xc3\x6e\xf3\x69\ -\xb5\x5a\xca\x25\x7f\x76\x21\x8b\xd4\x88\xe4\x0b\xa4\xd7\x1f\xc1\ -\xed\x62\x09\xe2\x90\x13\x38\x17\xea\x07\xa2\x42\x89\xb4\x40\x74\ -\xa8\xb9\xc6\xbf\xbf\x06\x11\x1a\x41\x62\xe9\xc9\xe3\x97\x04\xd2\ -\x45\xa1\xe1\xf8\x3f\x05\xcd\x09\xac\x48\xf2\x65\xad\x41\x0a\xfb\ -\x83\x6c\xcb\xa1\x91\xd2\x6c\x2c\xc7\x8b\x2b\xf0\xcf\xad\xbf\x53\ -\x88\x4e\x82\x8c\xef\x0d\xfa\xfc\x45\x3d\xc3\x07\x5e\xba\x28\xc6\ -\xee\x90\xec\x10\x12\x44\xc1\xd3\xd4\xa4\xe8\xb3\x18\x01\xc3\x5f\ -\x11\xa3\x7b\x47\x22\x35\xd1\xc8\x3d\x2e\x2f\x68\x04\x3b\x30\x65\ -\x14\x5a\xce\x27\x47\xc9\xf5\x42\xa5\xa8\x56\x8c\x2b\x07\x08\x87\ -\xb6\xc8\x18\xf6\x28\x0f\x11\x44\xc4\x39\x08\x29\x55\x90\x01\xc5\ -\xd7\x40\x29\xfc\xc9\x81\xd2\x14\x8e\x19\x5a\xb3\xed\xe1\x7f\xc7\ -\xea\x19\x9e\x60\x19\x2a\x21\x28\xc7\x0f\x81\x0e\xa5\xa2\x80\x81\ -\x97\x02\x2e\x88\x48\xe9\xfa\x1a\x41\x50\x1d\xac\x9d\x44\x62\xc6\ -\x40\xc2\x80\xd4\x5c\x39\x01\xc0\x02\xcf\x02\x6b\x04\xef\x5b\x4e\ -\x80\x19\x72\xcc\x22\x1c\xc1\xdb\x17\x71\x1c\x44\x08\xf6\x14\x14\ -\x72\xb0\xc0\xbd\x40\x38\x81\xe4\x94\x49\x84\x3b\x49\x3b\x91\x12\ -\x1c\xba\x6a\x67\x83\x19\x8c\x8c\x43\x49\x11\x8c\xad\x5a\x11\xc1\ -\x8c\x3f\x90\x90\x6b\x4e\xc0\xb2\xb3\x82\xc2\x81\x88\x3a\x44\x3a\ -\x3f\xaa\x85\x82\x1d\x0c\x28\xac\x54\x67\x03\xf6\xf8\x41\x86\x18\ -\x24\x44\xf6\xf3\xbb\xe9\x09\xe7\x82\x75\xd3\x63\x50\xc2\x64\xd0\ -\xf2\x31\x51\xac\x13\x29\x18\x17\x4b\x21\x34\x16\x9d\x13\x76\x04\ -\x21\x84\x12\x98\xbe\x93\x50\xe9\xb0\x60\x10\x35\xe9\x9c\x50\xcb\ -\x17\xf0\x91\xad\x0d\x84\x61\x02\xd6\xd2\x8a\x03\x55\x3c\x80\x57\ -\x88\x4e\x02\x00\x8a\xc1\x09\xb7\x02\x21\x19\xd5\xa4\x75\xc2\x67\ -\x5e\x2e\x73\xd2\x22\x06\x87\x0c\x45\x18\xbd\xf4\x52\x5d\x12\x1c\ -\x43\x2b\x84\x7f\x30\x52\x10\x64\x17\x22\x17\x4a\x39\x19\x08\x80\ -\x38\x1d\x42\x8a\xc3\xb6\xef\x7a\x03\xd3\x0c\x9c\xae\x58\xad\xd8\ -\x5f\x9f\xd4\x3f\x79\xc0\x64\x06\xa8\x69\xf2\xc0\x43\xcc\xb4\x84\ -\x09\x3c\x22\x9d\x10\x61\x0e\x32\x77\x29\x24\x94\xb8\xce\x9e\xd3\ -\xbf\x7c\xf6\x1b\xc8\x5e\x28\x26\x05\x2c\x56\x38\xd5\x41\xfa\x9c\ -\x72\xc7\x23\x2e\x15\x50\x44\x84\x30\x9b\xbc\x95\xba\xfc\x0a\x52\ -\x87\x22\x43\xee\x18\xd6\x3c\xa4\x0e\x55\x06\xe6\xf7\xa9\x8b\x31\ -\x75\xc4\xaf\x93\x3f\x79\xe1\xfa\x44\xc9\xc3\x1e\xac\x24\xc6\xf4\ -\x15\x93\xe7\x2e\x77\x0d\xaf\xa2\x6d\xdd\xb1\x60\x12\x03\x17\x20\ -\x67\xc1\x55\xb7\xe1\x13\x71\xa3\xf0\xe2\x93\x73\xfe\xff\x90\x3b\ -\xc1\x2e\x79\xd8\xb3\xdb\xc2\x33\x25\x29\x19\x73\x7f\x21\x75\xfe\ -\x15\x70\xfe\x56\xd9\x83\x9e\xf4\xec\xe1\xd9\xf5\x2e\x3e\xd3\x7a\ -\x57\xea\x35\x4f\x2f\x6d\xf2\x5c\xb4\xa9\x6b\x8d\x29\x1d\x52\x97\ -\x43\xe6\xe4\x56\xea\xc1\x67\xea\xf3\xaf\x9a\xfc\x2d\xce\x0f\x85\ -\x7f\xa9\xee\x81\xf8\x0a\x92\xa7\x6d\xf2\x08\x53\x97\x3c\xa5\x98\ -\x6a\xfe\x71\xc9\xff\x01\xda\x5b\x73\x18\xaf\x35\x0f\x9b\x22\x6e\ -\xbf\x99\x82\x11\x6b\xd3\x98\xfa\xc9\xf8\x97\xc0\x54\xa5\x0d\xda\ -\xff\xe1\x15\xa4\xde\x24\xc5\x9b\x56\xb2\x6f\x2f\x16\xcf\x44\x4d\ -\xfe\xc1\xc4\x84\x84\x70\x48\xd5\x9a\xb6\x5d\xc1\x81\xd0\x5f\xf6\ -\xc7\x18\x4e\xd2\x9d\xe1\x2a\xd9\xe4\xc5\x31\x6e\x92\xb2\x09\x60\ -\xce\x7c\xf5\xa6\x30\x16\x40\x0a\xfa\x0b\xf1\x18\x81\xeb\xbe\xaa\ -\xb3\x33\xc1\x54\x21\x78\x35\xbd\x7d\x65\x73\xfa\x8e\x34\x54\x8b\ -\x4b\xf7\x12\xa8\x27\xc0\xdd\xc5\x27\x76\x6f\x42\x5c\xa9\xa9\x63\ -\x1e\xe7\x3e\x85\x03\xb9\x24\x9a\x9d\xef\xa8\x0e\x2e\x38\x4d\x4f\ -\xf0\xdb\x1a\xe2\x76\xb7\xe2\x73\x1f\x00\x2f\xcc\xb7\x18\x8e\xea\ -\x0a\x75\x2f\x0b\xee\x36\x95\x53\x49\xbf\xf3\x17\x33\x0b\xd1\x97\ -\xd3\x35\xf9\x78\xb3\x5f\x57\x0e\x57\x07\x8d\x3f\x69\xdb\xa9\x9c\ -\x03\xcc\xc5\x4e\xe4\xb7\xa3\x7d\x26\xde\xdf\x2b\xda\x53\x52\xe7\ -\x49\x69\x6f\x15\x72\x59\x15\x59\x5f\x46\x5b\x1b\x9b\x3e\x9e\x19\ -\x5d\x57\x2c\x18\xf8\x16\x74\x4e\x5b\x93\x8e\x5f\x1d\xc6\xdf\x4c\ -\x86\xde\x0f\x30\xf0\x37\xcf\x16\x65\xf1\xf3\xbb\x59\xd4\xe6\xbd\ -\x80\xbf\x00\x75\x77\xbd\xbf\x5e\xdc\xcd\xdc\xb7\x10\x8b\xbb\xdf\ -\x00\x0b\x26\x09\xc9\ -\x00\x00\x04\x5e\ +\x30\x30\x36\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x66\ +\x66\x66\x66\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\ +\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\ +\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x32\x32\x2e\x37\x39\x33\x33\x34\x34\ +\x2c\x36\x2e\x31\x31\x30\x36\x31\x39\x36\x20\x2d\x33\x2e\x30\x39\ +\x34\x33\x30\x32\x2c\x33\x2e\x34\x36\x35\x36\x31\x37\x32\x20\x2d\ +\x31\x2e\x37\x33\x32\x38\x30\x38\x2c\x33\x2e\x33\x37\x32\x37\x38\ +\x39\x32\x20\x2d\x30\x2e\x38\x36\x36\x34\x30\x36\x2c\x33\x2e\x33\ +\x34\x31\x38\x34\x35\x20\x76\x20\x35\x2e\x30\x31\x32\x37\x36\x38\ +\x20\x32\x2e\x35\x30\x36\x33\x38\x36\x20\x4c\x20\x36\x2e\x37\x30\ +\x32\x39\x37\x35\x34\x2c\x31\x38\x2e\x37\x39\x37\x32\x35\x37\x20\ +\x31\x35\x2e\x33\x36\x37\x30\x32\x2c\x32\x2e\x30\x38\x38\x30\x32\ +\x37\x34\x20\x32\x30\x2e\x33\x37\x39\x37\x38\x39\x2c\x34\x2e\x35\ +\x30\x31\x35\x38\x32\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x30\x30\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\ +\x3d\x22\x63\x63\x63\x63\x63\x63\x63\x63\x63\x63\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\ +\x69\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\ +\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\ +\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\x38\x34\x30\x39\ +\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\ +\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\ +\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x39\ +\x2e\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x34\x38\x34\ +\x34\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x31\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x32\x32\ +\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x32\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x30\x35\x31\ +\x33\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\x2e\x32\x35\x37\ +\x38\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\ +\x31\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\x35\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x32\x30\ +\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\ +\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\x39\ +\x2e\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x69\x76\x65\x6c\ +\x6c\x6f\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\ +\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\ +\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\ +\x31\x2e\x30\x32\x32\x33\x33\x34\x32\x2c\x30\x2c\x30\x2c\x30\x2e\ +\x39\x37\x36\x33\x34\x38\x33\x36\x2c\x2d\x31\x2e\x32\x30\x34\x35\ +\x35\x30\x32\x2c\x32\x31\x2e\x34\x30\x37\x32\x34\x32\x29\x22\x3e\ +\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\ +\x68\x35\x39\x38\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x75\x72\x6c\x28\ +\x23\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x36\ +\x30\x32\x39\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\ +\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x30\x2e\x36\x32\x36\x35\x32\x34\x38\x31\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x2e\x37\ +\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x36\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x34\x30\ +\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x72\x79\x3d\x22\x36\x2e\x31\x33\x33\x33\x33\x33\x32\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x31\x37\x39\x33\x39\x35\x38\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x78\ +\x3d\x22\x32\x37\x2e\x34\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\x2e\x34\x30\x30\x30\ +\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x32\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x35\x2e\x38\x36\x36\x36\ +\x36\x36\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x65\ +\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x32\ +\x36\x37\x34\x32\x37\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x63\x78\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x36\ +\x2e\x34\x30\x30\x30\x30\x30\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x33\x33\x33\x33\x33\x33\x35\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x35\ +\x2e\x38\x36\x36\x36\x36\x36\x38\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\ +\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\ +\x68\x3a\x30\x2e\x31\x38\x35\x34\x31\x33\x31\x34\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\ +\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x36\x30\x34\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\x30\x30\x35\ +\x39\x34\x30\x32\x37\x2c\x30\x2e\x39\x39\x39\x39\x38\x32\x33\x36\ +\x2c\x2d\x31\x2c\x30\x2c\x30\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x36\x2e\x34\x30\x30\x31\x31\ +\x33\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\ +\x22\x2d\x32\x37\x2e\x38\x32\x38\x36\x39\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x34\x30\x30\x30\ +\x37\x39\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x36\x2e\x32\x36\x36\x36\x32\x30\x36\x22\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\x5d\ +\x00\ +\x00\x5c\xbe\x78\x9c\xe5\x5c\x59\x8f\xe3\xb8\x11\x7e\xef\x5f\xa1\ +\x68\x10\xec\x0e\xd2\xba\xa8\x5b\x6d\x7b\x81\x64\xb0\xc0\x22\x9b\ +\x97\xec\x06\x79\x5c\xb0\x25\xda\x2d\x8c\x0e\x83\xa2\xdb\xf6\xfc\ +\xfa\x14\x75\xdb\x6d\x6a\x73\x34\xa7\xd3\x1c\x0f\x66\x7a\x54\x55\ +\xbc\xbe\x2a\x92\x9f\x4b\x6c\xae\x7e\x38\x95\x85\xf6\x4c\x68\x93\ +\xd7\xd5\x5a\x77\x4c\x5b\xd7\x48\x95\xd6\x59\x5e\xed\xd6\xfa\x3f\ +\x7e\xfd\xd1\x88\x74\xad\x61\xb8\xca\x70\x51\x57\x64\xad\x57\xb5\ +\xfe\xc3\xe6\x6e\xf5\x07\xc3\xd0\xfe\x42\x09\x66\x24\xd3\x8e\x39\ +\x7b\xd2\x7e\xaa\x3e\x37\x29\xde\x13\xed\xfb\x27\xc6\xf6\x89\x65\ +\x1d\x8f\x47\x33\xef\x85\x66\x4d\x77\xd6\x47\xcd\x30\x36\x77\x77\ +\xab\xe6\x79\x77\xa7\x69\x1a\xb4\x5b\x35\x49\x96\xae\xf5\xbe\xc0\ +\xfe\x40\x8b\xd6\x30\x4b\x2d\x52\x90\x92\x54\xac\xb1\x1c\xd3\xb1\ +\xf4\xc9\x3c\x9d\xcc\x53\xde\x7a\xfe\x4c\xd2\xba\x2c\xeb\xaa\x69\ +\x4b\x56\xcd\x87\x99\x31\xcd\xb6\xa3\x35\xef\xcd\xd1\x6d\x8d\x9c\ +\x38\x8e\x2d\x1b\x59\x08\x19\x60\x61\x34\xe7\x8a\xe1\x93\x71\x59\ +\x14\xfa\x78\xab\x28\xb2\x6d\xdb\x02\xdd\x64\xf9\xef\x59\x25\x0d\ +\x00\xba\x87\xbf\xa3\xf9\x20\x30\x9b\xfa\x40\x53\xb2\x85\x72\xc4\ +\xac\x08\xb3\x3e\xfd\xfa\x69\x54\x1a\xb6\x99\xb1\x6c\x56\xcd\x80\ +\xe7\x45\xab\x17\x20\x57\xb8\x24\xcd\x1e\xa7\xa4\xb1\x06\x79\x5b\ +\xfe\x98\x67\xec\x69\xad\xbb\x9e\xe9\xb8\xf0\xf1\x5b\xe1\x13\xc9\ +\x77\x4f\xec\x5a\x9a\x67\x6b\x1d\x7a\x8f\xe2\xa8\x7b\x9e\x05\x87\ +\xd3\x19\xf4\x15\x27\xa3\xc6\x36\x63\x64\x3a\x1a\x75\x7c\x37\xec\ +\x6c\x86\x21\x24\x59\x9d\xf2\x3e\x41\x95\xa4\xcc\xf1\x81\xd5\x25\ +\x78\x2d\x4d\x0b\xdc\x34\xf9\x36\x4f\xe1\xa1\xae\xf6\xc5\x61\x97\ +\x57\xbf\x7d\x2e\x8b\xdf\x70\x96\x99\x03\x74\x63\x3b\xe4\xb4\xaf\ +\x29\x33\x4e\xd9\x1e\x00\x0c\xc2\x9b\xca\xf3\xa0\xdc\x80\x76\x95\ +\x91\x6d\xc3\xad\xba\xd1\xf0\x27\x18\x4e\xa8\x6b\x56\xab\x1d\x3b\ +\xc7\x7b\x96\x3d\xe7\xe4\x38\xd9\x3e\xe2\xa6\x43\x4c\xd3\xf6\x78\ +\x07\xd1\x55\xd4\x74\xad\x7f\xd8\xb6\x9f\x5e\xf1\x58\xd3\x8c\xd0\ +\x41\x15\xb4\x9f\x0b\x55\x0d\x1e\xc8\xd9\xb9\x9b\x4f\x7d\xdd\x43\ +\x7f\x79\xad\xa3\xde\xbe\xad\x6f\x9e\x70\x56\x1f\xd7\x3a\xba\x56\ +\x7e\xa9\xeb\x12\xfc\x65\xc6\x7e\x6c\x23\x3b\xbe\x56\xa7\xa7\xb5\ +\x6e\x38\x1e\xb4\xea\xc2\xbf\x2f\xb4\xd0\xa0\x17\x9a\x76\x80\xe2\ +\xde\xd5\x73\xe5\x81\x52\x98\x71\x46\x81\xcf\x04\x46\xd5\xfe\x18\ +\x6a\x68\x9e\xea\xe3\x8e\x72\x74\x18\x3d\x90\xeb\x92\x5c\x63\x3c\ +\x3e\xd6\xa7\xdb\x6a\x08\x80\x03\x9f\xcb\xc6\xa1\xca\x19\xcc\x97\ +\xfd\x69\x5e\xeb\x21\xcf\x08\x08\xb7\xb8\x68\x5e\x94\x3c\xe6\x15\ +\xa0\x60\xf4\xa1\xeb\xb8\x23\xc8\xd7\x16\x43\x1c\x87\x76\x24\xb0\ +\x80\xbe\xbd\x00\xba\x57\x9d\xc5\xaa\x12\x9f\xf2\x32\xff\x42\x60\ +\xe0\x4e\x1b\x57\x10\x3b\x17\xc3\xee\x8a\x69\x1a\x3b\xf3\x39\x79\ +\x3a\x73\x99\x3e\x08\x39\x5e\x5c\xe0\x86\x81\x3f\x0a\x6b\x9a\x43\ +\xa8\xcf\xba\x33\x88\xce\x73\x11\x9f\xc1\xb0\x00\x9f\xda\x00\x6a\ +\xc3\x2b\xbc\xd6\x9d\xe7\xba\x3e\xae\xad\x97\x81\xdd\xca\x4b\xc2\ +\x70\x86\x19\x9e\xa2\x7c\x90\xa0\x38\xb6\x87\x91\xc1\x62\x98\xfc\ +\xfd\xd3\x8f\x9b\xbe\xa1\x55\x9a\x26\xff\xac\xe9\xe7\xa1\x5d\x4d\ +\xe3\x06\xf8\xb1\x3e\x00\xd2\xfa\x66\x14\xaf\xb2\x34\x81\xe5\x0b\ +\xa6\xf5\x26\x2f\x21\x76\xf9\xca\xf7\x27\x58\xae\x56\xd6\xa4\xb8\ +\x30\xe6\x60\x4d\x95\x76\xd5\x52\xd2\xad\x83\x37\x37\x83\x2c\x2d\ +\x73\x5e\xc8\xfa\x85\xe5\x45\xf1\x13\x6f\xa4\x1f\xf1\xac\xd2\x9c\ +\x15\x64\x12\xae\xac\xbe\xf7\xfd\xd8\xac\xd9\xe0\x56\xd6\x30\xfa\ +\xf6\x69\x37\xa1\x72\x11\xf4\xa3\xa3\x0b\xfc\x48\x8a\xb5\xfe\x33\ +\x57\x6a\x2f\xb4\x3b\x5a\x1f\xf6\x65\x9d\x91\xbe\xf8\x80\xe6\xee\ +\x22\x0c\xbc\xd0\x46\xa3\x07\x19\xc5\x55\xc3\x91\x01\x3f\x60\x46\ +\xf3\xd3\xf7\x8e\x09\x7b\x46\x18\x7a\xd1\xbd\x6d\xa2\xc8\x0b\x42\ +\xe4\x85\xf7\xb0\xfa\xfb\x0e\x8a\x1d\x58\xb8\x40\x0c\x7e\xf6\x5c\ +\xcf\x8f\xef\x23\x64\xda\x20\x0c\xd1\xbd\x8b\x4c\xb0\x0b\x1d\xff\ +\xe3\xe8\x8e\x15\x25\x29\x9b\x79\xac\x8d\x12\x0f\xf1\x8f\xab\xcf\ +\xe4\x17\x01\xa8\x69\x67\xbe\x6c\xb4\x6d\x04\x41\x3c\x93\xf3\xe5\ +\x24\xb4\x4d\x0f\x36\xb4\x59\xff\xa7\x8d\xc3\x33\xd1\x8b\x32\xfd\ +\x74\xbd\xa5\xe2\x50\xf0\x0e\xfa\x91\x3b\x17\x37\xec\x5c\x00\x7c\ +\x5b\x70\x6e\xf2\xc1\xb6\xd3\x74\xbb\x7d\xe0\x0f\x46\xbf\x4c\x26\ +\x4e\xf7\x48\x0f\x05\x2c\xf7\xcf\xa4\xaa\xb3\xec\xa1\x61\xb4\xfe\ +\x4c\x92\x7e\x61\xee\x1f\xbb\xb5\x22\xb1\x87\x47\x88\x1b\x42\x0b\ +\x98\xc3\x2c\xf1\x06\x59\x86\x61\x75\xa5\x14\x9f\x93\x0a\x08\xcd\ +\x20\x1d\x9b\x9a\x45\x96\x04\x30\x83\xa0\xdb\x69\xe3\xd7\x05\xd3\ +\x70\xc4\x70\x62\x9c\x79\xca\xc2\xe9\x98\xd1\xb5\xfc\x55\xe0\x34\ +\x22\x31\xa0\x41\x10\xd9\xaa\x02\xea\x87\x66\x20\x61\xb2\x03\xa0\ +\xb6\x18\x50\xcf\xf3\x7d\x65\x01\x75\x4d\x3e\xdf\xdd\x57\x07\xd4\ +\x15\xe1\xb9\xdd\x22\x8c\xb0\xaa\x78\x7a\x71\x4f\x7a\x5e\x3d\x40\ +\xc3\x6f\x14\x50\xcf\x8c\xf8\x8c\x77\x5f\x7f\x09\x35\xfc\x6f\x14\ +\x52\x20\x6e\xed\xa4\x7f\xfd\x45\xd4\x50\x7d\xda\x7b\x66\x3c\x65\ +\x22\x26\x48\xa5\xf1\x26\xc3\x53\x9c\x39\x89\x00\x95\xc7\x9c\x96\ +\xc8\xa8\x12\xdc\x49\x00\xa9\x44\xee\x24\xde\x9c\x14\x61\x4f\x22\ +\x48\xa5\xb1\x27\x23\x10\x2f\xa4\x71\xac\x2e\xa2\x12\xf9\x93\x81\ +\xbe\x51\x48\x65\x32\x28\x43\x98\x28\x51\x03\x54\xd4\xed\xeb\x1e\ +\xba\x02\x55\x52\xd6\x69\xe9\x7b\xbd\x0a\x79\x27\x11\x9c\xf2\xf8\ +\x53\xb4\x80\xa8\x0a\x04\x4a\x88\xa8\x44\x02\xb5\x90\x1c\x55\x81\ +\x40\x89\x20\x95\x49\xa0\x84\xdb\xbd\x1a\x04\x4a\x08\xa9\x3c\x02\ +\x25\xdc\xed\xdb\xcd\x50\xd9\x20\x95\x49\xa0\x84\x5f\xee\x15\x87\ +\x54\x2a\x81\x12\xee\x4f\x8a\x83\x2a\x33\x09\x25\xfe\x3e\xaa\x06\ +\xa8\x41\x47\x3e\xed\xe0\x0a\x54\x59\xac\xd4\x5e\x4a\x43\xa9\xc0\ +\x4b\x45\x80\x4a\xcc\xeb\x89\x37\x28\x35\x88\xa9\x10\x52\x99\x99\ +\x3d\x71\x4a\x5f\x0d\x6a\x2a\x02\x55\x6a\x6e\x6f\x89\xef\xab\x40\ +\x4e\x85\xa0\x4a\xcc\xee\x89\x67\x7f\xe6\xa9\xbc\x43\x49\xcd\xef\ +\x89\xb7\x7d\xc5\x41\x95\x9b\xe1\x13\x9f\x8d\x50\x1c\x56\xa9\x14\ +\x15\x89\xdf\x43\x29\x01\xeb\x57\xe7\xa8\xc2\x6f\xa7\x7c\xe3\x57\ +\x16\x4e\x79\x0c\x55\x98\x92\x52\x1b\x4f\x89\xf4\x54\xb8\x3d\x29\ +\x8d\xa8\x4c\x6e\x2a\x4c\x9e\xa8\x8d\xa8\xc4\xac\xe9\xc2\x9b\x7c\ +\xd7\x7d\xf7\x5f\xa0\xde\x82\x96\x2e\x7c\x25\xf5\x3c\xfc\xde\x8f\ +\x44\xbd\x0d\x27\x15\xee\xf5\x08\x87\xdb\x77\x9f\x8e\x7a\x1b\x42\ +\x1a\x8a\xd3\xfb\x21\xc6\x19\x79\xe7\xa0\x7e\xed\x37\xf9\x0b\x87\ +\xa2\x78\xd2\xe4\xdd\x6f\x4e\x5f\xff\x55\xbe\x27\xa6\xa4\x6a\x23\ +\x2a\x37\x63\x2a\xdc\x9f\x94\x06\x55\x6e\xc6\x54\xf8\xba\x44\x6d\ +\x4c\x65\x26\x4c\x17\x68\x94\x02\xc4\xf4\x2d\x5e\xe7\xa3\xe5\x53\ +\x27\xef\x9e\x9a\xbe\xcd\xfb\xfc\x58\x71\x72\xfa\x36\x2f\xf4\x91\ +\x38\x09\xad\x04\x3b\x1d\x0e\xef\xba\x57\xa8\xca\x3c\x18\x29\x4e\ +\x40\x3f\xa6\x99\xeb\xbf\xf7\x40\x15\x42\x2a\xf3\x64\xa4\x98\xf4\ +\x2b\x8d\xa9\xd4\xa3\x91\xe2\x6d\x4a\x6d\x4c\x25\x66\xf9\x14\x67\ +\x53\x22\x48\xa5\x1e\x8e\x5c\x3a\x23\xa5\x00\x9b\x12\x62\x2a\xf7\ +\x74\xa4\x38\x52\x95\x60\x53\xc3\xef\xe8\x86\x57\xa8\x4a\x3c\xc9\ +\x27\xde\xf6\xa3\x08\xe3\x77\xff\xe5\x54\x84\xa8\xd4\xa3\x7c\x0b\ +\x07\x4e\x95\xc6\x54\x6e\x66\x6a\x81\xf3\xab\x8c\xaa\xe4\xc3\x7c\ +\x0b\xc7\xf8\x95\x46\x55\xea\x69\xbe\xa5\xfb\x63\x54\x20\x54\x02\ +\x50\x25\x1f\xe7\x5b\xfe\xbd\xf2\xf7\x4f\xa9\x44\xa8\xca\x3e\xcf\ +\x27\x8e\x56\xa5\x49\x95\xf4\x03\x7d\x0b\xd4\xea\xff\x25\x49\xb5\ +\xb2\x76\xc3\x7d\x8a\x33\x78\x6f\x5c\xf9\x77\x6f\xf3\x1b\xfe\x60\ +\x23\x8a\x62\xe4\xc1\x93\x19\xc6\xb1\x8b\xe2\x98\x2b\xec\x8f\xe3\ +\x38\xb9\x5b\x62\x33\x02\x55\xe0\x4f\x78\x73\xa7\x04\x66\xe0\x04\ +\x91\x1b\x4d\x04\xbe\xff\x2d\xf5\x20\x8c\xe2\x60\x5a\x86\xdb\x5b\ +\x24\x23\x2f\x70\x62\x7b\x32\x1d\xdc\x12\xf8\xa6\x1b\x45\x8e\x3d\ +\x55\xdd\x3b\xc5\xf7\x4d\x1f\xaa\xf7\xa6\x95\x67\x70\x89\x1b\x86\ +\x93\x1b\x2e\x9c\x40\x02\xfe\xe7\xd2\x09\x30\x44\xc7\xb3\x63\x37\ +\x0e\xfe\x43\x6f\xf8\x40\xd0\x5d\x3b\xb4\x3d\xff\x7f\x71\xcb\xd8\ +\xf9\xa5\xbb\x64\x6f\x19\x8c\xf7\xc9\x8e\x8e\x65\xe4\x34\xfa\xf3\ +\x54\x16\x49\x7b\xcd\xee\x5a\xdf\x53\xd2\x10\xfa\x4c\x5e\x40\x52\ +\x57\xcc\x68\xff\x0f\x5d\xa3\x25\x2e\x1e\x5a\xc9\xb1\x05\x3e\x79\ +\xac\x8b\xac\x13\x34\xf9\x17\x92\x38\xa8\x5b\x91\x6c\x27\xde\x9f\ +\x1e\x8a\xbc\x22\xfd\xa5\xa6\x89\xfd\xc7\xce\x6c\x8b\xcb\xbc\x38\ +\x27\x0d\xc4\x91\x01\xed\xe5\xdb\x07\x63\xe8\xb2\xd1\xd5\xb3\x27\ +\xe9\x78\xa3\x6e\xf2\xdd\x2f\x60\xa8\xfd\x19\x5a\xf9\xee\xa1\x20\ +\x0c\x80\x33\xfa\x8b\x43\x13\x1b\x5a\x38\xd6\x34\xbb\x10\x0c\xab\ +\xfe\xad\x83\xb1\x4b\x5e\x1a\xef\x20\x45\x62\xec\xbb\x6b\x4c\x63\ +\x3f\xf0\x23\x6f\x1e\xab\x08\x99\x21\xf2\x90\xeb\x5d\x84\x18\x87\ +\xd9\x0d\x63\x5f\xdf\xac\x18\xf4\xb0\x9a\x4d\xf8\xe1\x76\x53\x5a\ +\x73\x80\x39\x4a\x57\x2b\x46\x5b\x00\x0a\x5f\x2d\x4c\x2f\x5b\x17\ +\xb4\xff\x7b\xce\x7b\xc6\x34\xc7\x15\xfb\x1d\x87\x32\x4a\x58\xfa\ +\x74\x61\xd4\x39\xb9\x67\x48\xae\x8d\xae\x9c\xec\x98\xc8\xff\xef\ +\xdc\x3c\x19\xde\xf7\xde\x9e\x77\xd4\x28\xf2\x1d\x66\x07\x88\xd0\ +\x5b\xc3\x30\xa0\xd6\xdb\x8a\xea\x50\x42\x95\xe9\x85\x6e\x4b\xda\ +\x9a\xa0\x31\xc6\x20\x6a\xc6\x82\xdc\x5f\x06\x86\x86\xaa\xa4\x61\ +\x98\xb2\x87\x23\xcd\xb9\x81\xc1\x2f\x45\x4d\x0a\x6a\xb0\xc7\xde\ +\xa6\x4a\x9f\x6a\xda\x1b\xf5\x31\x35\x9f\xb4\xd7\x01\xa5\x6f\xfe\ +\xfa\xb7\x9f\x57\x56\xeb\xd3\x0d\xfc\x84\x3a\xba\xeb\x5b\x61\x81\ +\x5d\xf1\x5b\x66\x37\x77\xff\x02\x1c\x7f\x12\x5b\ +\x00\x00\x0d\x25\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x72\x6f\x69\x5f\x72\ +\x65\x64\x6f\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\ +\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\ +\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\ +\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\ +\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\ +\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\ +\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\x37\x38\x30\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\ +\x3d\x22\x33\x2e\x36\x33\x30\x32\x37\x32\x34\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\ +\x38\x2e\x39\x37\x31\x31\x37\x35\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\ +\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\ +\x22\x70\x78\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\ +\x69\x64\x65\x73\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\ +\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\ +\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\ +\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\ +\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\ +\x64\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\ +\x69\x64\x32\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\ +\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\ +\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\ +\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\ +\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\ +\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\ +\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\ +\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\ +\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\ +\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\ +\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\ +\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\ +\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\ +\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\ +\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\ +\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\ +\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\ +\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x65\x39\x61\x62\x31\x36\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\ +\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\ +\x23\x31\x38\x64\x36\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\ +\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\x35\x30\x31\x32\x38\x33\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\ +\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\ +\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x39\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\ +\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x35\x2e\x33\x33\x30\ +\x33\x36\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x33\x2e\x38\x30\x34\x38\x37\x38\x35\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\ +\x30\x30\x30\x3b\x66\x6f\x6e\x74\x2d\x73\x74\x79\x6c\x65\x3a\x6e\ +\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x76\x61\x72\x69\x61\ +\x6e\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x77\ +\x65\x69\x67\x68\x74\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\ +\x74\x2d\x73\x74\x72\x65\x74\x63\x68\x3a\x6e\x6f\x72\x6d\x61\x6c\ +\x3b\x66\x6f\x6e\x74\x2d\x73\x69\x7a\x65\x3a\x6d\x65\x64\x69\x75\ +\x6d\x3b\x6c\x69\x6e\x65\x2d\x68\x65\x69\x67\x68\x74\x3a\x6e\x6f\ +\x72\x6d\x61\x6c\x3b\x66\x6f\x6e\x74\x2d\x66\x61\x6d\x69\x6c\x79\ +\x3a\x53\x61\x6e\x73\x3b\x2d\x69\x6e\x6b\x73\x63\x61\x70\x65\x2d\ +\x66\x6f\x6e\x74\x2d\x73\x70\x65\x63\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x3a\x53\x61\x6e\x73\x3b\x74\x65\x78\x74\x2d\x69\x6e\x64\ +\x65\x6e\x74\x3a\x30\x3b\x74\x65\x78\x74\x2d\x61\x6c\x69\x67\x6e\ +\x3a\x73\x74\x61\x72\x74\x3b\x74\x65\x78\x74\x2d\x64\x65\x63\x6f\ +\x72\x61\x74\x69\x6f\x6e\x3a\x6e\x6f\x6e\x65\x3b\x74\x65\x78\x74\ +\x2d\x64\x65\x63\x6f\x72\x61\x74\x69\x6f\x6e\x2d\x6c\x69\x6e\x65\ +\x3a\x6e\x6f\x6e\x65\x3b\x6c\x65\x74\x74\x65\x72\x2d\x73\x70\x61\ +\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\x77\x6f\x72\x64\ +\x2d\x73\x70\x61\x63\x69\x6e\x67\x3a\x6e\x6f\x72\x6d\x61\x6c\x3b\ +\x74\x65\x78\x74\x2d\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3a\x6e\ +\x6f\x6e\x65\x3b\x77\x72\x69\x74\x69\x6e\x67\x2d\x6d\x6f\x64\x65\ +\x3a\x6c\x72\x2d\x74\x62\x3b\x64\x69\x72\x65\x63\x74\x69\x6f\x6e\ +\x3a\x6c\x74\x72\x3b\x62\x61\x73\x65\x6c\x69\x6e\x65\x2d\x73\x68\ +\x69\x66\x74\x3a\x62\x61\x73\x65\x6c\x69\x6e\x65\x3b\x74\x65\x78\ +\x74\x2d\x61\x6e\x63\x68\x6f\x72\x3a\x73\x74\x61\x72\x74\x3b\x64\ +\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\x65\x3b\x6f\x76\ +\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\x6c\x65\x3b\x76\ +\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\x73\x69\x62\x6c\ +\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x66\x66\x66\x66\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x77\x69\x64\x74\x68\x3a\x33\x2e\x34\x31\x33\x33\x33\x33\x34\ +\x32\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\x65\x6e\ +\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\x64\x3a\ +\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x64\x3d\x22\x4d\x20\x38\x2c\x39\x2e\x36\x36\x36\x36\ +\x36\x36\x37\x20\x43\x20\x33\x2e\x38\x31\x34\x30\x31\x30\x37\x2c\ +\x31\x34\x2e\x38\x37\x36\x37\x39\x35\x20\x34\x2e\x34\x33\x32\x38\ +\x39\x30\x37\x2c\x32\x32\x2e\x36\x34\x34\x37\x39\x34\x20\x39\x2e\ +\x34\x2c\x32\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x31\x34\x2e\x33\ +\x36\x37\x31\x30\x39\x2c\x33\x31\x2e\x34\x38\x38\x35\x34\x20\x32\ +\x31\x2e\x39\x34\x37\x33\x34\x34\x2c\x33\x30\x2e\x38\x31\x30\x31\ +\x32\x38\x20\x32\x36\x2e\x31\x33\x33\x33\x33\x33\x2c\x32\x35\x2e\ +\x36\x20\x63\x20\x34\x2e\x31\x38\x35\x39\x39\x2c\x2d\x35\x2e\x32\ +\x31\x30\x31\x32\x38\x20\x33\x2e\x35\x36\x37\x31\x31\x2c\x2d\x31\ +\x32\x2e\x39\x37\x38\x31\x32\x37\x20\x2d\x31\x2e\x34\x2c\x2d\x31\ +\x37\x2e\x34\x20\x6c\x20\x33\x2c\x2d\x32\x2e\x38\x36\x36\x36\x36\ +\x36\x37\x20\x48\x20\x31\x37\x2e\x30\x36\x36\x36\x36\x37\x20\x56\ +\x20\x36\x2e\x34\x20\x6c\x20\x33\x2e\x32\x2c\x38\x2e\x35\x33\x33\ +\x33\x33\x33\x20\x32\x2e\x36\x36\x36\x36\x36\x36\x2c\x2d\x33\x2e\ +\x37\x20\x63\x20\x32\x2e\x33\x37\x39\x33\x30\x32\x2c\x33\x2e\x32\ +\x37\x37\x37\x32\x39\x20\x33\x2e\x31\x37\x31\x30\x35\x38\x2c\x38\ +\x2e\x39\x35\x30\x32\x36\x36\x20\x30\x2e\x35\x33\x33\x33\x33\x34\ +\x2c\x31\x32\x2e\x32\x33\x33\x33\x33\x34\x20\x2d\x33\x2e\x30\x34\ +\x31\x38\x35\x38\x2c\x33\x2e\x37\x38\x36\x30\x37\x34\x20\x2d\x38\ +\x2e\x32\x32\x30\x37\x31\x37\x2c\x34\x2e\x32\x31\x39\x37\x32\x20\ +\x2d\x31\x31\x2e\x38\x2c\x31\x2e\x30\x33\x33\x33\x33\x33\x20\x2d\ +\x33\x2e\x35\x37\x39\x32\x38\x33\x35\x2c\x2d\x33\x2e\x31\x38\x36\ +\x33\x38\x37\x20\x2d\x34\x2e\x30\x34\x31\x38\x35\x38\x35\x2c\x2d\ +\x38\x2e\x39\x31\x33\x39\x32\x35\x20\x2d\x31\x2c\x2d\x31\x32\x2e\ +\x37\x20\x43\x20\x31\x31\x2e\x32\x2c\x31\x32\x2e\x33\x20\x31\x31\ +\x2e\x32\x2c\x36\x2e\x39\x36\x36\x36\x36\x36\x37\x20\x38\x2c\x39\ +\x2e\x36\x36\x36\x36\x36\x36\x37\x20\x5a\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x38\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\ +\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\ +\x65\x73\x3d\x22\x63\x73\x73\x63\x63\x63\x63\x63\x63\x73\x73\x63\ +\x63\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x09\x49\ \x00\ -\x00\x0f\x16\x78\x9c\xe5\x57\x4d\x6f\xe3\x36\x10\xbd\xe7\x57\xb0\ -\xca\xa5\x45\x2d\x4a\xa4\x64\xeb\x63\x6d\xef\xa1\xc1\x02\x0b\xb4\ -\x97\x76\x8b\x1e\x0b\x5a\xa2\x6d\x36\x12\x29\x50\x54\x6c\xef\xaf\ -\xef\x50\xdf\x76\xbc\x40\xdb\x43\x10\xa0\x02\x82\x84\xf3\xde\x90\ -\x33\x8f\x33\x23\x65\xfd\xf1\x5c\x16\xe8\x85\xeb\x5a\x28\xb9\x71\ -\x08\xf6\x1d\xc4\x65\xa6\x72\x21\x0f\x1b\xe7\xf7\x2f\x9f\xdc\xd8\ -\x41\xb5\x61\x32\x67\x85\x92\x7c\xe3\x48\xe5\x7c\xdc\x3e\xac\xbf\ -\x73\x5d\xf4\x93\xe6\xcc\xf0\x1c\x9d\x84\x39\xa2\xcf\xf2\xb9\xce\ -\x58\xc5\xd1\xf7\x47\x63\xaa\xd4\xf3\x4e\xa7\x13\x16\xbd\x11\x2b\ -\x7d\xf0\x7e\x40\xae\xbb\x7d\x78\x58\xd7\x2f\x87\x07\x84\x10\x9c\ -\x2b\xeb\x34\xcf\x36\x4e\xef\x50\x35\xba\x68\x89\x79\xe6\xf1\x82\ -\x97\x5c\x9a\xda\x23\x98\x78\xce\x44\xcf\x26\x7a\x66\x4f\x17\x2f\ -\x3c\x53\x65\xa9\x64\xdd\x7a\xca\xfa\x71\x46\xd6\xf9\x7e\x64\xdb\ -\x68\x4e\x41\x4b\x22\x49\x92\x78\x3e\xf5\x28\x75\x81\xe1\xd6\x17\ -\x69\xd8\xd9\xbd\x76\x85\x18\xef\xb9\x52\xdf\xf7\x3d\xc0\x26\xe6\ -\x3f\x63\xa5\x35\x08\x5a\xc1\xcf\x48\x1f\x0c\xb8\x56\x8d\xce\xf8\ -\x1e\xfc\x38\x96\xdc\x78\x4f\x5f\x9e\x46\xd0\xf5\x71\x6e\xf2\xd9\ -\x36\x83\x9e\x57\xa7\x5e\x89\x2c\x59\xc9\xeb\x8a\x65\xbc\xf6\x06\ -\x7b\xeb\x7f\x12\xb9\x39\x6e\x9c\x20\xc4\x24\x80\x67\xd9\x1a\x8f\ -\x5c\x1c\x8e\xe6\xd6\x2a\xf2\x8d\x03\xd1\xd3\x24\xee\xd6\xb3\xe2\ -\x20\x1d\xa1\xdf\x38\x1d\x11\x1f\x27\x14\x13\xa4\xc9\x32\x88\x3a\ -\xce\x90\x42\x9a\xab\xcc\xc6\x04\x5b\xf2\x52\xb0\xc6\xa8\x12\x6e\ -\x2d\xcb\x0a\x56\xd7\x62\x2f\x32\x58\x28\x59\x15\xcd\x41\xc8\x3f\ -\x75\x23\xf1\x20\xdb\x78\x06\x3f\x57\x4a\x1b\xf7\x9c\x57\x20\x1e\ -\x19\x42\xbc\x41\x2f\x23\xba\x05\x78\x9d\xf3\x7d\x6d\x69\x5d\x2e\ -\x76\x05\xc9\x44\x0e\xf2\x5a\x74\x0c\xcd\xc6\x95\xbf\x08\x7e\x9a\ -\xb8\x3b\x56\x77\x7a\x21\x54\xb1\x03\xd4\x56\xa1\xf4\xc6\x79\xdc\ -\xb7\x4f\x0f\xec\x94\xce\xb9\x1e\xa0\x55\xfb\x5c\x41\x0a\xf4\x17\ -\xe6\xd2\x75\x53\xbf\xf7\x10\xb0\xdd\x75\xc4\xfd\xfb\x78\x7d\x64\ -\xb9\x3a\x6d\x1c\x7a\x0b\x7e\x55\xaa\x84\xdb\xc2\xc9\x32\xf1\xa9\ -\x1f\xdd\xc2\xd9\x79\xe3\xb8\x94\xe0\x64\x15\x05\x49\xf0\x0a\xb5\ -\x01\x11\x1c\x93\x24\xf4\x93\x57\x60\xa3\x35\xf4\x9b\x5b\xb0\x0b\ -\x87\xac\xda\x5f\xa4\x27\xd5\x47\x75\x3a\x68\xab\x8e\xd1\x0d\xbf\ -\xf5\xb4\x88\xbb\xdb\xa9\xf3\x7d\x18\xae\xbf\xb1\x9d\xec\x36\x52\ -\x18\xe8\x96\xea\x3c\xdf\xb5\x11\x39\x07\xe3\x9e\x15\xf5\x2b\xcf\ -\x93\x90\xa0\x82\xdb\x17\x2e\x09\x46\x91\x6f\x19\x43\x15\x47\x7e\ -\xfc\x0d\x06\xc4\xf6\x4a\xe8\x1e\xba\x7c\x1b\x2a\xd9\x59\x94\xe2\ -\x2b\x87\xc4\xc9\x2d\xa5\x96\xac\x72\x0f\x85\xda\xb1\xa2\xcf\x7b\ -\xdb\x32\xd6\x57\xba\x74\x4e\x08\x99\x8b\x6d\xd9\xf3\xc5\xda\x9c\ -\xc1\x68\x05\xb5\x86\x20\x5a\x2d\x47\xa3\xd2\x02\x3a\x61\x16\xef\ -\x60\xba\xcc\x4d\xb6\xc1\x61\x3e\x9f\xdb\x0a\x6b\xeb\x2f\xba\xc5\ -\x2e\x73\xac\x2f\x7c\xef\x75\xe5\xb7\xf6\x92\x1b\x96\x33\xc3\xa6\ -\x36\x18\x2c\x34\x49\xfc\x21\x33\x98\x95\xe9\xaf\x4f\x9f\xb6\xfd\ -\x41\xeb\x2c\x4b\xff\x50\xfa\x79\x38\x17\x21\x4b\x60\x3b\xd5\xc0\ -\x55\x38\xdb\xd1\xbc\xce\xb3\x14\xa6\x1b\x74\xfd\x56\x94\x50\xdc\ -\x76\x30\xfe\x08\xd3\x6c\xed\x4d\xc0\x15\xd9\x8a\x35\x6d\xda\x6d\ -\xab\x79\x37\x26\xef\xbe\x2b\xf2\xac\x14\xd6\xc9\xfb\xcd\x88\xa2\ -\xf8\x6c\x0f\xe9\x33\x9e\x6d\x2a\x4c\xc1\x27\xe3\xda\xeb\xa3\xef\ -\x73\xf3\x66\xc9\xad\xbd\x21\xfb\x76\x75\x98\x54\xb9\xea\x8a\xf1\ -\xa2\x0b\xb6\xe3\x50\x04\x3f\x5b\x10\xbd\x42\x0f\x5a\x35\x55\xa9\ -\x72\xde\xbb\x0f\x6a\x56\xcc\x1c\xc7\x2b\x33\x97\x02\xf0\x3d\x44\ -\x9f\x4a\x78\xc9\x7e\xb0\x7f\xb9\xfd\x94\x48\xc9\x87\xda\x68\xf5\ -\xcc\xd3\x47\xbf\x7d\xfa\x65\xd7\x18\x29\x0c\x83\xd6\x3a\xb0\xdc\ -\x42\x48\x0e\x27\xa7\xbb\xc6\x98\xb9\xed\x2f\x25\x64\x0a\x42\x71\ -\x3d\x58\xdb\x45\x01\x25\x6e\xd2\x70\xb0\xe5\x0c\x86\x8f\xd6\xec\ -\xd2\x05\xd2\x5b\xc7\x50\xc6\x2a\x03\x35\x7e\x41\x2b\x1c\x24\xf6\ -\x59\x2e\x22\x1c\xb6\x95\x16\x21\x1a\xe1\xc8\xbe\x4a\x82\x05\xa5\ -\x38\xb4\x91\x51\xd4\xa3\x2b\xba\x08\x82\xae\x26\x93\xab\x2e\xb0\ -\x5a\xc4\x51\x3c\xd9\xc6\xa9\xa4\x24\x24\x63\x94\x76\x61\x3e\xbd\ -\x30\xd3\x68\x6e\xdb\x60\xb8\xc7\xff\x24\x22\x63\xef\x4d\xc4\x70\ -\xb1\xea\x94\xf2\x57\x73\xf9\x08\x6e\xff\x58\x8e\xf2\x2d\x02\x8a\ -\x5b\x1a\xbd\xa7\x9e\x1b\xbd\x8d\x7e\xef\xb5\x08\x93\xc5\xb2\x13\ -\x2c\x0c\xe7\x2a\xfa\x98\x5a\xed\xe2\x51\xc5\x64\x11\xc0\xd7\xca\ -\xf4\xb5\x73\x2b\x23\x7d\x1b\x19\xc3\xd0\x16\xe2\x7b\x92\xb1\x2b\ -\x41\xb2\x08\x3b\xc5\x22\x32\x93\x91\x24\x98\x5e\xf7\x32\x59\xd0\ -\x04\xc7\xad\xb4\xf7\x65\x5c\xfd\x5f\xcb\x31\x5c\x04\x98\xce\xb5\ -\x8b\xfb\x8f\xeb\xa9\x91\x69\x8c\xe3\x36\xc0\xbb\xd2\x91\xb7\x51\ -\x8e\x12\x98\xd7\xf1\x7b\x52\x6e\x68\x64\xda\x09\x16\x5e\x55\x60\ -\xd4\xbd\x39\xe6\x8d\x3c\xa0\xf7\x1b\xd9\xff\x97\x32\xae\xbd\x03\ -\xfc\x5f\x6b\x3f\x4f\xb6\x0f\x7f\x03\xf2\x9e\x89\xe5\ -\x00\x00\x08\x74\ +\x00\x1f\x4f\x78\x9c\xed\x59\x5b\x6f\xdb\xc8\x15\x7e\xf7\xaf\x98\ +\x2a\x2f\x09\x4a\x52\x73\xbf\xc8\x97\x45\x91\x60\x17\x0b\x6c\x5e\ +\xda\x6d\xfb\xb8\xa0\x48\xda\x66\x4d\x91\x02\x49\x59\x56\x7e\x7d\ +\xbf\xa1\xc4\x8b\x6c\xd9\x49\xba\xce\xa6\x40\x2b\x21\xb0\x38\xe7\ +\xcc\xf0\x5c\xbe\x73\x9b\x5c\xfc\xf0\xb0\x2a\xc8\x7d\x56\x37\x79\ +\x55\x5e\xce\x58\x44\x67\x24\x2b\x93\x2a\xcd\xcb\x9b\xcb\xd9\xdf\ +\x7f\xfd\x31\xb4\x33\xd2\xb4\x71\x99\xc6\x45\x55\x66\x97\xb3\xb2\ +\x9a\xfd\x70\x75\x76\xf1\xa7\x30\x24\xef\xeb\x2c\x6e\xb3\x94\x6c\ +\xf3\xf6\x96\xfc\x5c\xde\x35\x49\xbc\xce\xc8\xdb\xdb\xb6\x5d\x2f\ +\xe6\xf3\xed\x76\x1b\xe5\x87\xc5\xa8\xaa\x6f\xe6\xef\x48\x18\x5e\ +\x9d\x9d\x5d\x34\xf7\x37\x67\x84\x10\xbc\xb7\x6c\x16\x55\xb3\xbc\ +\x9c\x4d\x76\x54\xeb\xac\x6c\xb6\x71\x9b\xdc\x2e\xab\xea\xae\xdb\ +\xb7\xa9\xf3\x39\xa7\xd4\xcd\xc1\x3b\x1b\x77\xa6\xc9\xb0\x71\xbd\ +\xa9\x8b\x8e\x35\x4d\xe6\x59\x91\xad\xb2\xb2\x6d\xe6\x2c\x62\xf3\ +\x09\x7b\x32\xb2\x27\x5e\xee\xfc\x3e\x4b\xaa\xd5\xaa\x2a\x9b\x6e\ +\x67\xd9\xbc\x99\x30\xd7\xe9\xf5\x91\x54\x5b\xd1\x31\x31\xe7\xdc\ +\x9c\xf2\x39\xe7\x21\x38\xc2\x66\x57\xb6\xf1\x43\x78\xbc\x15\xda\ +\x9d\xda\x0a\x05\xe8\x1c\xb4\x91\xf3\xcb\xb8\x16\x0d\x5c\xb1\xc6\ +\xbf\x81\xbd\x5f\x88\x9a\x6a\x53\x27\xd9\x35\xf6\x65\x51\x99\xb5\ +\xf3\x0f\xbf\x7e\x18\x88\x21\x8d\xd2\x36\x9d\x1c\xd3\x7b\xe2\xe8\ +\xad\x47\xee\x29\xe3\x55\xd6\xac\xe3\x24\x6b\xe6\xfd\x7a\xb7\x7f\ +\x9b\xa7\xed\xed\xe5\x4c\xc8\x88\x09\x7c\x54\xb7\x78\x9b\xe5\x37\ +\xb7\xed\xe3\xd5\x3c\xbd\x9c\x41\x7a\xee\x9c\xe9\x9e\x27\xb0\x62\ +\x7b\x86\xc3\xc1\x8b\x81\x42\x23\xc7\x23\x46\x6a\xa6\x84\xd9\xf3\ +\xf4\x2a\x2c\xd2\x2a\xf1\x32\xe1\xc8\x6c\x95\xc7\x9b\xb6\x5a\xc1\ +\x6b\x49\x52\xc4\x4d\x93\x5f\xe7\x09\x1e\xaa\x72\x5d\x6c\x6e\xf2\ +\xf2\xb7\x26\x6b\x5b\x00\xb6\xf9\xad\xad\xaa\x22\xea\x0d\x38\xbc\ +\x2d\x7b\x58\x57\x75\x1b\x3e\xa4\x6b\x98\x51\x9b\x93\xc4\x5d\x4f\ +\xbc\x02\xf5\x62\x10\xc2\x4b\x90\xde\xe7\xd9\xd6\xef\xd9\x6b\xb8\ +\x8c\x9b\xbd\x65\x08\x59\xc7\x37\x40\x51\x51\xd5\x97\xb3\x37\xd7\ +\xdd\xe7\x40\x58\x56\x75\x9a\xd5\x3d\x49\x77\x9f\x23\x52\x05\x4b\ +\xe7\xed\x6e\x1f\x71\x87\xb3\x7b\x89\xfc\xa9\x03\x9d\x9e\xa6\x37\ +\xb7\x71\x5a\x6d\x2f\x67\xfc\x31\xf1\x53\x55\xad\x2e\x67\x26\x72\ +\xcc\x52\xc9\xec\x63\x72\xf2\x70\x39\x0b\x99\x8c\x28\xb7\xe2\x04\ +\xd5\x0b\x24\x22\x29\x94\x79\x4a\xdb\xd4\x35\x02\x2b\x2c\xe2\x5d\ +\x06\xa5\xba\x3f\xec\xc0\xd4\xdc\x56\xdb\x9b\xda\x1b\xa7\xad\x37\ +\xd9\xe3\x9d\x9e\x12\x2e\x97\xd5\xc3\x69\x32\xfc\xbc\xf1\x21\x1b\ +\x6e\xca\xbc\x45\x58\xac\x1f\xa6\xa7\x6e\xf2\x34\x6b\x4e\x6f\x6c\ +\xca\x78\x1d\xde\x14\xd5\x32\x2e\x4e\x33\x6c\xf3\x12\x46\x0a\x0f\ +\x08\x66\x62\xf0\xc1\x63\x8e\x1e\xce\x86\x3e\x51\xfb\xc0\x01\xd9\ +\x9f\xf8\xe1\x40\xda\x3d\x4f\x5a\xc5\x0f\xf9\x2a\xff\x94\xc1\x30\ +\xac\x03\x16\xa0\x75\x64\x96\xfd\xb6\x3d\xae\xfc\xb3\xa0\x54\xcd\ +\xfa\xc5\x76\xe7\xe3\xf5\x61\xe7\x09\xc3\x62\x55\xe7\x40\xfc\x44\ +\x9c\x7e\x69\x37\x5d\xf2\x81\x8c\x80\x78\xe8\xf0\xd5\xa1\xcf\x3c\ +\xa6\xed\xa6\x34\x32\xef\x60\x3f\x7f\x8a\xfb\x6e\x3d\xcd\xae\x9b\ +\x31\x00\xfc\x13\x62\xdc\xf5\x1a\x15\x79\x99\xc5\xf5\x4f\x75\x9c\ +\xe6\x70\xe3\x54\xa5\x63\x8a\xb2\x9c\x8d\x42\x37\x4b\x00\x39\x2f\ +\x61\xf5\xa6\x2a\xa0\xe0\xd5\x81\x72\xd1\xb4\xd5\xba\xe7\x82\xb4\ +\xed\xae\xf0\x39\x00\x8b\x61\x17\x4f\x8b\x37\xd7\x1a\x69\x92\x9e\ +\x77\x4b\x87\x38\x59\xd0\xc8\x58\xcb\x85\x12\xec\x7c\x36\x6e\xae\ +\xae\xaf\x91\x1a\xa6\x86\x39\x24\x29\x6c\x85\x34\xe2\xa0\xb7\xd7\ +\xfc\x58\xd4\xaf\xd6\x8c\xa9\x57\xd1\xec\x7a\x69\x96\xe6\x58\xb3\ +\xaf\x50\x88\x99\x17\x15\xba\x98\x7b\xcf\x75\xbf\x56\x59\x1b\xa7\ +\x71\x1b\x8f\x4e\xed\x57\x80\x40\xde\x3b\x16\x45\x6e\xf1\xd7\x0f\ +\x3f\x0e\xf2\x27\xc9\xe2\x9f\x55\x7d\x37\xbe\xda\x33\xc4\xcb\x6a\ +\x03\x89\x06\x2d\x3d\x5c\x92\x05\xca\x12\xd2\xf5\x55\xbe\x42\xae\ +\xf2\x15\xed\xcf\x28\x43\x78\xff\x40\x38\x62\xf6\x40\x1f\x0f\xdd\ +\x1f\x5b\x67\xfb\xfa\x76\xb2\xc8\xa7\xc9\x2a\xf7\x9b\xe6\x7f\x6b\ +\xf3\xa2\xf8\xd9\xbf\x64\xd0\x7c\x38\x34\x6f\x8b\x6c\x5c\xbc\x98\ +\x1f\xa4\xef\xed\x33\x51\xee\x62\xde\x6b\xdf\x3d\xdd\x3c\xc9\x5f\ +\xd5\x66\xbd\xaa\xd2\xec\x90\xf5\x1e\x07\x7b\x11\x2f\x33\x64\xa0\ +\x5f\x3c\x8d\xf4\x08\xef\x40\xb2\xcf\x91\x87\x37\xae\xe3\xf6\x76\ +\x88\xc1\xbd\xef\xaf\x21\xfd\xe2\x8d\xb4\xc2\x08\xef\xf5\xba\xba\ +\xcb\x16\x6f\xb8\xf4\xdf\xc3\xe3\x3e\x79\x2d\x64\x24\xad\x07\x3d\ +\xe5\xfd\xba\x77\x2f\xde\xbe\x58\x6e\xda\x76\xba\xf6\xaf\x2a\x2f\ +\x17\xb0\x4e\x56\xf7\xab\xdd\x43\x81\x3c\xd4\x2e\x86\x53\xd3\x18\ +\x05\xa4\xae\xe3\xdd\xa2\x44\x57\xd7\xaf\x0e\x90\x1b\xd0\xe5\x81\ +\x41\x50\x2e\x1c\x75\xd4\xba\x80\xd9\x48\x52\x67\x9c\x24\x4c\x07\ +\x21\x53\x91\xdb\x7f\x66\xd3\xd0\xf0\x7a\x0a\x6a\x47\x88\x8e\x25\ +\xa4\x2a\x21\x74\x5b\xd5\x21\x8a\xc9\x7d\xdc\x6e\xea\xcc\x43\x79\ +\xc0\xec\xb3\x16\x82\xe2\xd7\x9c\x9f\xfb\x87\x49\x5c\x74\x8f\xf5\ +\xa6\x40\x0d\xbf\xcf\xca\x2a\x4d\x5f\x34\x21\x0a\xa9\x51\x5c\x4a\ +\xae\x5f\x32\xcc\x49\x13\x7c\x24\x50\x55\xa2\x7e\xf0\x80\xab\x48\ +\x73\x41\x9d\x25\x3a\x62\x4a\x5a\x4b\x55\x20\x44\xe4\x10\x7c\x82\ +\x91\xf7\x44\x45\x42\x1a\x29\x8d\x08\xd0\x1a\x69\xab\x90\xcf\x09\ +\x0a\x2a\xe3\xdc\x1a\x16\x08\x16\x29\x2d\x94\x96\x84\x47\xda\x29\ +\xca\x1c\x76\x23\x75\x69\xae\x95\x26\x05\x09\x59\x84\x74\xcc\xb5\ +\x80\x71\x23\xab\xa9\x32\x38\x92\x46\x82\x31\x89\x7a\xae\x02\x6e\ +\x23\x46\x19\x33\x06\x8b\x54\x70\x6a\xa5\x36\x01\x87\x24\x4c\xe1\ +\x05\x58\xb4\xc2\x29\xa6\xe1\x29\xc8\x29\xac\x15\x8a\xfc\x42\x18\ +\x78\x9d\xe5\x4a\x07\xcc\x44\x54\x09\xc1\x0c\x49\x08\xf3\x2d\x80\ +\x51\x2c\x08\x7d\x0b\xa6\x19\xd3\x90\xc9\x2a\x34\x0d\xce\xbf\x9c\ +\x52\xc3\x0c\x87\xe8\xd6\x08\xcb\xb8\xe7\x62\x86\x69\x45\x68\x40\ +\xb1\xd7\x09\xed\xa8\xf6\xab\x14\x7b\x3c\x1f\x75\x52\x39\x17\x08\ +\xbc\x56\x81\x81\x29\xa3\x9d\xc4\xa3\x44\x4d\xe5\x92\x80\xd3\x70\ +\x7f\x64\x20\x23\xc8\xea\x20\xad\x57\x56\x09\x2a\x4d\x00\x59\x61\ +\x13\xd8\xef\xd3\x11\x90\x6a\x60\x05\x6e\x54\x5f\x0c\xa4\x01\x3b\ +\x43\x15\x43\xd0\xfa\x3c\x81\x06\xa2\xe9\x3e\xc9\xa7\x66\x84\x5b\ +\x56\x14\xf9\xba\xc9\x4e\x22\xee\x80\xa0\x2f\x46\xdc\xbe\xfb\x7b\ +\x8c\x38\xed\x1c\xe2\x56\xab\xd7\x08\xc5\x21\xb4\x1c\x17\xa1\x18\ +\x9b\x84\x3a\x2e\x1b\x9f\x54\x11\xa9\x71\x5b\xe7\x0f\x6f\xbd\x53\ +\xd0\x4d\x1b\xc7\x4c\xe7\x5c\x67\x95\xe2\x00\x8f\xff\x6d\xa4\x95\ +\x07\xc7\x71\x20\x46\x6b\x26\x02\x78\xf4\xdd\x70\x5c\xd7\x1f\x02\ +\x66\x96\x31\xc4\xf9\xb8\xbc\xf3\xcb\x70\xa6\x96\x46\x8d\xad\x44\ +\x0d\x6e\x09\xc7\x5a\xe5\x98\x1c\x57\x77\x7e\x15\xf8\xb4\x4e\xb2\ +\xcf\x47\xf7\x44\xed\x2e\xd2\xf7\xb5\xfd\xc8\x8e\xdc\x18\x2a\x80\ +\xc3\x3f\x3c\xf9\x7d\xf4\xd1\x03\x28\x73\x89\xe8\xd1\x91\xb5\x0c\ +\xdd\x12\xe0\x8d\x18\x52\x14\x61\x8a\x30\xe3\x4c\x1b\xfa\xd4\x4d\ +\xca\x3a\x1d\x4e\x1d\xf5\x7b\xb2\xe0\xa1\x3d\x38\x18\x27\xcd\x9b\ +\x35\x4a\x0b\x66\x3a\xaf\xf3\x79\x85\x61\xea\xba\xa8\xb6\x8b\xfb\ +\xbc\xc9\x97\x45\x76\xde\xfd\xcd\x0b\xaf\x4c\xbf\xf4\xd4\xd0\xcb\ +\xcc\x7f\x8f\x0d\x8d\xb0\x47\xfa\x60\x86\xba\x6f\x69\x68\xbf\xba\ +\xef\x63\x16\xf4\x89\xf1\xcf\x57\x71\x7d\x97\xd5\xfb\x0d\x59\x19\ +\x43\xf8\x70\x19\x27\x77\xbe\x06\x97\xe9\x22\x4e\x30\x2b\x6c\x8a\ +\xb8\xcd\x1e\x95\x28\xa4\x65\x04\x9b\x41\xe2\xe3\x91\x07\xa3\x45\ +\x7e\xd1\x11\x62\x00\x79\x45\x23\xc1\x18\x9f\x02\x9f\x73\x12\x7b\ +\xc5\x52\x85\x54\x6a\x95\x7e\x9c\x38\x7a\xab\x27\xc6\x7f\xbf\x87\ +\xd5\x9f\x83\xb7\x88\x18\x47\x7d\x11\xbe\xb6\x2b\x86\x74\x2c\x51\ +\xd9\x50\x23\xa4\x76\x2c\xe0\x72\x9f\x26\xd4\xb3\x96\x0b\xdd\xeb\ +\xd9\xee\xb3\x89\x00\x96\xb2\xdc\x0f\x2c\xf2\x3b\x58\x0a\x75\xfa\ +\xd0\x05\x01\x6b\x5d\x13\xc4\x08\x47\x6a\xf2\x85\x82\xfb\xe4\xc0\ +\x91\x1c\xf5\xb3\x89\xe0\x15\xed\xf4\x4c\x3b\x34\xb1\x9c\xa7\xfe\ +\xb7\xf4\x8f\x1f\x09\x1a\x14\xc3\x95\x13\xc2\xe3\x09\x89\x13\xbf\ +\x89\x43\x6d\x94\x52\x19\x19\x38\x9f\xdd\xdd\x74\x80\x9a\x36\x91\ +\xa1\xf9\x5f\xc1\x17\x43\xfb\x85\x66\x4b\x70\x58\x84\x6a\xa9\x34\ +\x73\xc4\xc7\x9f\x44\x0a\xeb\x3a\x6f\xe7\xf4\x70\x3d\xf1\x14\x5e\ +\xa1\xfe\x46\x86\x3a\xd5\xd9\x30\x8c\x01\x9d\xa1\xfe\xf8\x94\xb5\ +\x02\x74\x10\x7c\x14\xcd\x0d\x72\x97\x12\x0a\xad\x31\x61\xa8\xc8\ +\x0a\x0d\xa4\x86\xed\x9c\x60\x8a\xbd\x60\x27\x17\xf2\xdf\x69\xa9\ +\xbe\xbb\xdc\xdf\xcf\xc4\x75\x32\xfb\x26\xe5\xfa\xb3\x53\x0f\x6c\ +\xf5\x29\xab\xab\x71\xea\x41\xeb\x6d\xf5\xb1\xa7\xe8\xb7\x74\xd0\ +\x2b\x57\xf2\xb1\xc3\x9d\x4c\x94\x83\xb5\xbb\xce\xd4\x37\xa6\xdc\ +\x99\xc9\x3d\xd2\x48\x47\xd7\x69\x23\x63\x8c\x16\x93\x30\x19\xc8\ +\xbe\x55\xc5\x9c\x21\xc6\xdb\xea\x63\xf2\xee\x14\xb9\x0b\xcc\xd0\ +\x0f\x31\x4e\x0b\xab\x83\xe1\x7c\xf2\x17\x32\x70\x07\xc3\x2f\x42\ +\xf1\x65\x04\x52\x1a\xe0\x52\x70\x19\x60\x74\x66\x8c\x0a\xa7\x5f\ +\x62\xf7\x4c\x52\xa2\xc1\xc5\xf9\xc8\x92\x1c\xc3\xd5\x4b\xec\x48\ +\x0f\x52\xa3\xea\x58\x3f\x5d\x49\x87\x81\x9c\x63\x74\x44\x25\x12\ +\x42\x2a\xde\x4d\x53\xdc\x72\xb4\xa5\x93\x71\x6a\xd0\xb3\x69\xe3\ +\xba\x3d\x39\x2b\x65\x65\xea\xdb\x76\xad\x31\x77\xf2\x31\x99\x4c\ +\xe6\x8b\xba\x6a\xe1\xae\xb7\xa1\xc3\x54\x88\xb4\x44\xc5\xbb\xff\ +\x07\xc8\x77\x0b\x90\xf0\x99\x10\xe1\xfe\x52\xc6\x50\x2a\x4f\x47\ +\x48\x37\xdb\x19\x0c\x77\x27\x22\xe8\x3f\x0d\x91\x15\x11\xc8\xbf\ +\x02\x00\xc6\xc0\x39\x9c\x4f\xe2\x97\x40\x8c\xb9\x49\x29\x80\xb7\ +\xa3\xa0\x73\x52\x2f\x33\x4b\xf4\x5d\x94\x05\xf8\xc5\x8c\x61\x94\ +\xbf\xc0\xad\xd0\x4e\x1b\x34\x68\x9e\x59\x5a\x61\xad\x1a\xa3\x43\ +\xf4\xc1\xc1\xbf\x51\x6c\x38\x8a\xf3\xfd\x6d\xca\x73\xa1\xf1\xa5\ +\x6d\xdc\xd8\x91\xec\x6f\xe8\xf9\xb1\xc1\x15\x8f\x44\xb7\x1e\x84\ +\xe8\x0c\xba\xff\x82\x13\x24\xf1\xb7\x2c\x4e\x51\x63\x31\xd4\xfb\ +\xeb\x15\x13\x60\x78\x55\x52\x2b\xb9\x7f\x62\xde\x0a\x9e\xf3\x9e\ +\x28\x1a\xd9\xee\x00\xec\xa2\x60\xd3\xc6\x6a\xe3\x60\x27\x23\x1d\ +\x67\x13\xd6\xa3\x7d\xb7\x44\xa0\x5d\xeb\x24\xf2\xfb\xc6\x97\x79\ +\xae\x70\x78\x59\xf7\x34\x6c\xfa\x87\x87\x87\x23\xef\x89\x85\x43\ +\xfc\xf5\x21\xf3\xf7\x58\x92\x2a\x67\x89\xa5\x01\x67\x11\xd3\x0e\ +\x53\x93\x7f\xf0\x4d\x90\xff\x8b\x7e\x15\x78\xb2\x68\x81\xc6\x4d\ +\x21\x68\xd8\x64\xac\x21\xc8\x40\x7b\xa7\x07\x18\xf2\xbc\x3a\x21\ +\xc6\xf4\x4e\x24\x2f\xc5\x41\x97\x70\x50\x66\x94\x25\x3c\x16\xed\ +\xe9\x7d\x93\x30\xee\x6b\xdb\x83\x8b\xf9\xcd\xd5\xd9\x85\xbf\xe4\ +\xbe\x3a\xfb\x37\x6c\xd0\x04\x1c\ +\x00\x00\x14\xeb\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x78\x6c\x69\x6e\x6b\x3d\x22\x68\x74\x74\ +\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\ +\x39\x39\x39\x2f\x78\x6c\x69\x6e\x6b\x22\x0a\x20\x20\x20\x78\x6d\ +\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\x68\x74\ +\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\x73\x6f\ +\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\x44\x54\ +\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\x74\x64\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\x61\x6d\ +\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\x2e\x31\ +\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\x68\x74\ +\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\ +\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\x20\x20\ +\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\x69\x6f\ +\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\x37\x31\ +\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x64\x6f\ +\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\x6f\x6d\ +\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\x74\x69\ +\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x7a\x6f\x6f\x6d\x5f\x74\x6f\ +\x5f\x49\x6d\x61\x67\x65\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\x39\x38\x37\ +\x22\x3e\x0a\x20\x20\x20\x20\x3c\x6c\x69\x6e\x65\x61\x72\x47\x72\ +\x61\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x33\x37\x37\x39\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\ +\x6f\x70\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x66\ +\x30\x66\x65\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x30\x3b\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\x6f\x70\x33\x37\x38\x33\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x37\x38\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x30\x2e\x34\x39\x33\x31\x35\ +\x30\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\x2d\x63\x6f\x6c\x6f\x72\x3a\ +\x23\x62\x62\x66\x61\x66\x66\x3b\x73\x74\x6f\x70\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x30\x2e\x34\x37\x30\x35\x38\x38\x32\x34\x3b\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x73\x74\x6f\x70\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x73\x74\ +\x6f\x70\x33\x37\x38\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x6f\x66\x66\x73\x65\x74\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x73\x74\x6f\x70\ +\x2d\x63\x6f\x6c\x6f\x72\x3a\x23\x38\x37\x66\x36\x66\x66\x3b\x73\ +\x74\x6f\x70\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x30\x2e\x39\x38\ +\x30\x33\x39\x32\x31\x36\x3b\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x3c\x2f\x6c\x69\x6e\x65\x61\x72\x47\x72\x61\x64\x69\x65\x6e\x74\ +\x3e\x0a\x20\x20\x20\x20\x3c\x72\x61\x64\x69\x61\x6c\x47\x72\x61\ +\x64\x69\x65\x6e\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6c\x6c\x65\x63\x74\x3d\x22\x61\ +\x6c\x77\x61\x79\x73\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x78\x6c\ +\x69\x6e\x6b\x3a\x68\x72\x65\x66\x3d\x22\x23\x6c\x69\x6e\x65\x61\ +\x72\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x61\x64\x69\x61\x6c\ +\x47\x72\x61\x64\x69\x65\x6e\x74\x33\x37\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\ +\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x35\ +\x2e\x36\x35\x35\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x66\x78\x3d\x22\x34\x2e\x33\x37\x35\x38\x35\x38\x38\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x66\x79\x3d\x22\x35\x2e\x36\x35\x35\ +\x35\x34\x34\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x3d\x22\ +\x31\x34\x2e\x32\x31\x36\x38\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x67\x72\x61\x64\x69\x65\x6e\x74\x54\x72\x61\x6e\x73\x66\x6f\ +\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2e\x30\x32\x30\ +\x32\x34\x34\x39\x2c\x30\x2c\x30\x2c\x31\x2e\x30\x31\x39\x32\x38\ +\x38\x2c\x31\x34\x2e\x39\x36\x37\x39\x33\x38\x2c\x38\x2e\x37\x34\ +\x35\x38\x30\x36\x34\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x67\ +\x72\x61\x64\x69\x65\x6e\x74\x55\x6e\x69\x74\x73\x3d\x22\x75\x73\ +\x65\x72\x53\x70\x61\x63\x65\x4f\x6e\x55\x73\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x3c\x2f\x64\x65\x66\x73\x3e\x0a\x20\x20\x3c\x73\x6f\ +\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\ +\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\ +\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\ +\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\ +\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\ +\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\ +\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\ +\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x32\x2e\ +\x37\x39\x39\x34\x35\x30\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x35\x34\x2e\x37\ +\x33\x33\x32\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x36\x30\x2e\x36\x36\x31\x37\ +\x30\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\ +\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\ +\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\ +\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\ +\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\ +\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\ +\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\ +\x64\x74\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x68\x65\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\ +\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\ +\x64\x3d\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x74\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\ +\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\ +\x6e\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\ +\x69\x67\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\ +\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\ +\x63\x69\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\ +\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x6d\x65\x74\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\ +\x0a\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ +\x3d\x22\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\ +\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\ +\x70\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\ +\x66\x3a\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\ +\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\ +\x63\x6d\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\ +\x67\x65\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ +\x64\x63\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\ +\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\ +\x62\x65\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\ +\x70\x6d\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\x4c\x61\x79\ +\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x6c\x61\x79\x65\x72\x31\x2d\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x30\x2e\x36\x33\x36\x33\x36\x33\x34\x2c\x30\x2c\ +\x30\x2c\x30\x2e\x35\x34\x32\x34\x35\x31\x33\x35\x2c\x38\x2e\x37\ +\x31\x34\x36\x36\x38\x37\x2c\x34\x2e\x39\x35\x35\x32\x35\x37\x32\ +\x29\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x74\ +\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\ +\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x38\x34\x33\x36\x37\x38\x34\x38\ +\x2c\x30\x2e\x35\x33\x36\x38\x34\x38\x37\x39\x2c\x30\x2c\x30\x29\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x32\ +\x2e\x37\x30\x35\x35\x37\x38\x31\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x34\x35\ +\x2e\x34\x35\x31\x31\x34\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x78\x3d\x22\x35\x32\x2e\x32\x31\x32\x38\x32\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\ +\x22\x31\x37\x2e\x38\x38\x32\x31\x32\x38\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\ +\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x32\x39\x39\x33\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x30\x30\x35\x35\x64\x34\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x38\x33\x37\x30\x35\ +\x30\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x30\x30\x61\x61\x30\x30\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\ +\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\ +\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x34\x32\x30\x34\x39\ +\x31\x37\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\ +\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\ +\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\ +\x33\x37\x36\x37\x2d\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\x2e\x33\x31\x36\x39\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x31\x39\x2e\x31\x31\x32\x33\x34\x31\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\x22\x33\x35\x2e\x39\x38\ +\x30\x38\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\ +\x3d\x22\x32\x37\x2e\x37\x39\x39\x37\x36\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\ +\x38\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\ +\x3d\x22\x32\x2e\x38\x39\x31\x37\x31\x30\x38\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\ +\x22\x6d\x61\x74\x72\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\ +\x38\x39\x33\x37\x32\x39\x33\x2c\x30\x2e\x36\x31\x33\x39\x31\x33\ +\x39\x38\x2c\x30\x2c\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\ +\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x33\x36\x32\x35\x30\ +\x38\x39\x2c\x30\x2e\x36\x37\x36\x37\x30\x38\x36\x38\x2c\x30\x2c\ +\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x33\x2e\x31\x30\x30\x33\x35\x33\x35\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\ +\x37\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\ +\x31\x32\x2e\x36\x31\x30\x30\x35\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x32\x33\x2e\x33\x32\x30\x36\x32\x39\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x32\x30\x2e\x34\x39\x31\x33\x33\x37\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ +\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x36\x39\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\ +\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\x30\x30\x3b\x66\x69\x6c\ +\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\ +\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\ +\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\ +\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x31\x2e\x39\x34\x34\x39\ +\x39\x37\x37\x39\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\x36\ +\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\x69\ +\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x63\x63\x63\x63\ +\x63\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\ +\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\x2e\x39\x30\x37\x36\x32\x34\x39\x36\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\ +\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x72\x65\x63\x74\x33\x37\x37\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x32\x31\ +\x2e\x33\x31\x36\x39\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x32\x31\x2e\x32\x32\x37\ +\x36\x39\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x3d\ +\x22\x31\x33\x2e\x38\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x34\x2e\x30\x34\x30\x31\x33\ +\x38\x34\x65\x2d\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x72\x78\x3d\x22\x32\x2e\x35\x34\x30\x36\x38\x37\x31\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x32\ +\x31\x31\x37\x36\x34\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ +\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\ +\x69\x78\x28\x31\x2c\x30\x2c\x2d\x30\x2e\x37\x31\x30\x37\x31\x31\ +\x35\x32\x2c\x30\x2e\x37\x30\x33\x34\x38\x33\x35\x38\x2c\x30\x2c\ +\x30\x29\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x67\x3e\x0a\ +\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x75\x72\x6c\x28\x23\x72\x61\x64\x69\x61\x6c\x47\x72\x61\x64\x69\ +\x65\x6e\x74\x33\x37\x37\x35\x29\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\ +\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x32\x2e\x30\x32\x36\x38\x34\x30\x39\x33\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x32\x39\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x31\x39\x2e\ +\x34\x33\x32\x33\x38\x36\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\ +\x79\x3d\x22\x31\x34\x2e\x35\x31\x30\x34\x33\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x31\x33\x2e\x34\x38\x34\x34\ +\x35\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\ +\x33\x2e\x34\x38\x34\x34\x35\x33\x22\x20\x2f\x3e\x0a\x20\x20\x20\ +\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x32\x32\x30\ +\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\ +\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\ +\x64\x64\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\ +\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\ +\x2e\x31\x33\x33\x33\x33\x33\x34\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x72\x65\x63\x74\x33\x37\x36\x37\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x31\x39\x2e\x30\x35\x31\x33\ +\x35\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x34\x2e\x34\x37\x37\x30\x36\x38\x39\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x78\x3d\x22\x2d\x32\x37\x2e\x32\x35\x37\x38\ +\x36\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x32\x31\ +\x2e\x32\x37\x38\x32\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x72\x78\x3d\x22\x31\x2e\x31\x35\x36\x30\x33\x35\x39\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x37\x32\x30\x33\ +\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x72\x61\x6e\x73\x66\ +\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\x65\x28\x2d\x33\x39\x2e\ +\x37\x39\x37\x38\x37\x33\x29\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\ +\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x0f\x7e\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x35\x33\x32\x30\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x64\x6f\x77\x6e\x6c\ +\x6f\x61\x64\x5f\x61\x72\x72\x6f\x77\x2e\x73\x76\x67\x22\x0a\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x2e\x35\x22\x0a\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\ +\x2d\x79\x64\x70\x69\x3d\x22\x36\x37\x2e\x35\x22\x3e\x0a\x20\x20\ +\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\ +\x65\x66\x73\x35\x33\x32\x32\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\ +\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\ +\x77\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\ +\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\ +\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\ +\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ +\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\ +\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x37\ +\x2e\x39\x31\x38\x30\x34\x31\x37\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x38\x2e\ +\x38\x36\x37\x33\x37\x33\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x30\x2e\x34\x39\x38\ +\x35\x35\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\ +\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\x73\ +\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\ +\x64\x2d\x62\x62\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\ +\x6d\x65\x6e\x74\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\ +\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x67\x75\x69\x64\x65\x2d\x62\x62\x6f\x78\x3d\ +\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\ +\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\ +\x22\x31\x22\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\ +\x79\x70\x65\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x35\x33\x34\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\ +\x69\x6e\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x70\x61\x63\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\ +\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\ +\x6e\x67\x79\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\ +\x2f\x3e\x0a\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x6d\x65\x74\x61\x64\x61\x74\x61\x35\x33\x32\x35\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\ +\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\ +\x6f\x72\x6d\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\ +\x78\x6d\x6c\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\ +\x72\x65\x73\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\ +\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\ +\x69\x74\x79\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\ +\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\ +\x3a\x74\x69\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\ +\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\ +\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\ +\x20\x20\x69\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\ +\x6c\x3d\x22\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\ +\x6f\x64\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\ +\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ +\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x66\ +\x32\x32\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ +\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\ +\x3a\x31\x2e\x32\x39\x32\x39\x39\x35\x33\x33\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\ +\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\ +\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\ +\x74\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\ +\x3b\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\ +\x6e\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x33\x2e\x37\x2c\ +\x30\x2e\x31\x36\x36\x36\x36\x36\x36\x37\x20\x63\x20\x2d\x31\x2e\ +\x30\x39\x32\x36\x31\x35\x2c\x30\x20\x2d\x31\x2e\x39\x36\x36\x36\ +\x36\x37\x2c\x30\x2e\x38\x37\x34\x30\x35\x31\x38\x33\x20\x2d\x31\ +\x2e\x39\x36\x36\x36\x36\x37\x2c\x31\x2e\x39\x36\x36\x36\x36\x36\ +\x36\x33\x20\x56\x20\x31\x36\x2e\x34\x33\x33\x33\x33\x33\x20\x48\ +\x20\x34\x2e\x32\x36\x36\x36\x36\x36\x37\x20\x63\x20\x2d\x32\x2e\ +\x31\x33\x33\x33\x33\x33\x37\x2c\x30\x20\x31\x31\x2e\x37\x33\x33\ +\x33\x33\x33\x33\x2c\x31\x36\x20\x31\x31\x2e\x37\x33\x33\x33\x33\ +\x33\x33\x2c\x31\x36\x20\x4c\x20\x31\x37\x2e\x30\x36\x36\x36\x36\ +\x37\x2c\x33\x33\x2e\x35\x20\x31\x38\x2e\x31\x33\x33\x33\x33\x33\ +\x2c\x33\x32\x2e\x34\x33\x33\x33\x33\x33\x20\x63\x20\x30\x2c\x30\ +\x20\x31\x33\x2e\x38\x36\x36\x36\x36\x38\x2c\x2d\x31\x36\x20\x31\ +\x31\x2e\x37\x33\x33\x33\x33\x34\x2c\x2d\x31\x36\x20\x48\x20\x32\ +\x32\x2e\x34\x20\x56\x20\x32\x2e\x31\x33\x33\x33\x33\x33\x33\x20\ +\x63\x20\x30\x2c\x2d\x31\x2e\x30\x39\x32\x36\x31\x34\x38\x20\x2d\ +\x30\x2e\x38\x37\x34\x30\x35\x31\x2c\x2d\x31\x2e\x39\x36\x36\x36\ +\x36\x36\x36\x33\x20\x2d\x31\x2e\x39\x36\x36\x36\x36\x37\x2c\x2d\ +\x31\x2e\x39\x36\x36\x36\x36\x36\x36\x33\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\x74\x35\x33\x34\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\ +\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x20\x20\ +\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\ +\x65\x3d\x22\x6c\x61\x79\x65\x72\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x61\x79\x65\x72\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ +\x4c\x69\x76\x65\x6c\x6c\x6f\x22\x3e\x0a\x20\x20\x20\x20\x3c\x65\ +\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ +\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x30\x30\x32\x33\ +\x34\x63\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ +\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\ +\x65\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x31\x2e\x33\x33\x35\x37\x31\x32\x34\x33\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ +\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ +\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ +\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x35\x39\x38\ +\x32\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x35\ +\x2e\x35\x39\x39\x39\x39\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x37\x2e\x34\x36\x36\x36\ +\x36\x35\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x36\x2e\x36\x36\x36\x36\x36\x36\x35\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\ +\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\ +\x35\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\ +\x2e\x32\x30\x32\x30\x31\x38\x37\x38\x3b\x73\x74\x72\x6f\x6b\x65\ +\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\ +\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\ +\x74\x79\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\ +\x22\x70\x61\x74\x68\x36\x30\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x63\x78\x3d\x22\x32\x35\x2e\x32\x38\x38\x38\x38\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x79\x3d\x22\x32\x37\x2e\x37\ +\x33\x33\x33\x33\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x32\x2e\x37\x39\x39\x39\x39\x39\x35\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x72\x79\x3d\x22\x36\x2e\x33\x37\x36\x38\x31\x31\ +\x35\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x65\x6c\x6c\x69\x70\ +\x73\x65\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\ +\x74\x68\x36\x30\x34\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\x65\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\x35\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\ +\x31\x31\x35\x31\x38\x31\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\x35\ +\x2e\x35\x39\x39\x39\x39\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x63\x79\x3d\x22\x32\x37\x2e\x37\x33\x33\x33\x33\x34\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x36\x2e\x32\x32\x32\x32\ +\x32\x31\x34\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\x22\ +\x36\x2e\x33\x37\x36\x38\x31\x31\x35\x22\x20\x2f\x3e\x0a\x20\x20\ +\x20\x20\x3c\x65\x6c\x6c\x69\x70\x73\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\ +\x72\x69\x78\x28\x30\x2e\x30\x30\x36\x33\x37\x35\x38\x37\x2c\x30\ +\x2e\x39\x39\x39\x39\x37\x39\x36\x37\x2c\x2d\x31\x2c\x30\x2c\x30\ +\x2c\x30\x29\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x70\x61\x74\x68\x36\x30\x34\x37\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x65\x35\x65\x35\x65\x35\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x32\x30\x38\x37\x39\x35\x32\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\ +\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\ +\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x63\x78\x3d\x22\x32\ +\x37\x2e\x37\x33\x33\x38\x39\x36\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x63\x79\x3d\x22\x2d\x32\x35\x2e\x35\x37\x38\x37\x38\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\x3d\x22\x32\x2e\x36\x30\ +\x38\x37\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x79\x3d\ +\x22\x37\x2e\x33\x31\x31\x30\x35\x36\x31\x22\x20\x2f\x3e\x0a\x20\ +\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\x0a\ +\x00\x00\x08\xc4\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x77\x69\x64\x74\x68\x3d\x22\x33\x34\ +\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\x20\x68\x65\x69\x67\ +\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\ +\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x32\x39\x38\x35\x22\x0a\x20\ +\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\x31\x22\x0a\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x76\x65\x72\x73\ +\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\x20\x72\x31\x35\x33\ +\x37\x31\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x73\x65\x6d\x69\x61\x75\x74\ +\x6f\x6d\x61\x74\x69\x63\x63\x6c\x61\x73\x73\x69\x66\x69\x63\x61\ +\x74\x69\x6f\x6e\x70\x6c\x75\x67\x69\x6e\x5f\x74\x72\x61\x69\x6e\ +\x69\x6e\x67\x5f\x69\x6e\x70\x75\x74\x2e\x73\x76\x67\x22\x0a\x20\ +\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\ +\x74\x2d\x78\x64\x70\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\ +\x64\x70\x69\x3d\x22\x36\x37\x22\x3e\x0a\x20\x20\x3c\x64\x65\x66\ +\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\x32\ +\x39\x38\x37\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\x20\ +\x20\x20\x20\x69\x64\x3d\x22\x62\x61\x73\x65\x22\x0a\x20\x20\x20\ +\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\ +\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\ +\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\x36\x22\ +\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\ +\x69\x74\x79\x3d\x22\x31\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\ +\x69\x74\x79\x3d\x22\x30\x2e\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\ +\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x31\x31\x2e\x31\x39\ +\x37\x38\x30\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x31\x34\x2e\x39\x31\x38\x38\ +\x38\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x79\x3d\x22\x32\x31\x2e\x39\x38\x36\x31\x39\x38\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x6c\x61\ +\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\ +\x72\x69\x64\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x69\x64\x2d\x62\x62\ +\x6f\x78\x3d\x22\x74\x72\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\ +\x2d\x75\x6e\x69\x74\x73\x3d\x22\x70\x78\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x75\x69\x64\x65\x73\x3d\x22\x74\x72\x75\ +\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x73\x6e\x61\x70\x2d\x67\x6c\x6f\x62\x61\x6c\x3d\x22\x74\x72\ +\x75\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\ +\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\ +\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ +\x3e\x0a\x20\x20\x20\x20\x3c\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x67\x72\x69\x64\x0a\x20\x20\x20\x20\x20\x20\x20\x74\x79\x70\x65\ +\x3d\x22\x78\x79\x67\x72\x69\x64\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x69\x64\x3d\x22\x67\x72\x69\x64\x32\x39\x39\x37\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x78\x3d\x22\x30\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x6f\x72\x69\x67\x69\x6e\x79\ +\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\ +\x69\x6e\x67\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x70\x61\x63\x69\x6e\x67\x79\ +\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\ +\x61\x64\x61\x74\x61\x32\x39\x39\x30\x22\x3e\x0a\x20\x20\x20\x20\ +\x3c\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x3c\x63\x63\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x20\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\ +\x61\x74\x3e\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\ +\x3c\x2f\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\ +\x6f\x75\x72\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\ +\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\ +\x70\x65\x2f\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\ +\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\ +\x74\x6c\x65\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\ +\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\ +\x61\x74\x61\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x6c\x61\x79\x65\x72\x31\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x6c\x61\x62\x65\x6c\x3d\x22\ +\x4c\x61\x79\x65\x72\x20\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x67\x72\x6f\x75\x70\x6d\x6f\x64\x65\ +\x3d\x22\x6c\x61\x79\x65\x72\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\ +\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\ +\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x65\x39\x61\x62\x31\x36\x3b\x66\ +\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x66\x69\ +\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x65\x76\x65\x6e\x6f\x64\x64\x3b\ +\x73\x74\x72\x6f\x6b\x65\x3a\x23\x31\x38\x64\x36\x66\x66\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x32\x2e\x31\x37\ +\x35\x30\x31\x32\x38\x33\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\ +\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\ +\x63\x74\x32\x39\x39\x39\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x77\ +\x69\x64\x74\x68\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x32\x22\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x78\x3d\x22\x31\x2e\x30\x36\x36\x36\x36\x36\x37\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x31\x2e\x30\x36\ +\x36\x36\x36\x36\x37\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x72\x78\ +\x3d\x22\x35\x2e\x33\x33\x30\x33\x36\x39\x22\x0a\x20\x20\x20\x20\ +\x20\x20\x20\x72\x79\x3d\x22\x33\x2e\x38\x30\x34\x38\x37\x38\x35\ +\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x2f\x67\x3e\x0a\x3c\x2f\x73\x76\ +\x67\x3e\x0a\ +\x00\x00\x06\x59\ \x00\ -\x00\x40\xa3\x78\x9c\xed\x5b\x59\x8f\xab\xc8\x15\x7e\xef\x5f\x41\ -\x7c\x15\x69\x46\x69\x8a\xda\x58\xdb\xf6\x3c\xe4\x6a\x94\x91\x66\ -\x5e\x92\x49\xf2\x38\xc2\x50\x76\x93\xc6\x94\x05\x78\xbb\xbf\x26\ -\xbf\x25\xbf\x2c\xa7\xca\x80\xc1\xc6\x69\x7b\xda\xd7\x69\x5f\x35\ -\x52\xcb\x70\xce\xa9\xe5\x7c\x67\x65\xe9\xe1\x0f\x9b\x79\x6a\xac\ -\x44\x5e\x24\x32\x1b\x0d\x08\xc2\x03\x43\x64\x91\x8c\x93\x6c\x36\ -\x1a\xfc\xfd\xd7\x1f\x4d\x6f\x60\x14\x65\x98\xc5\x61\x2a\x33\x31\ -\x1a\x64\x72\xf0\xc3\xf8\x61\xf8\x07\xd3\x34\xfe\x9c\x8b\xb0\x14\ -\xb1\xb1\x4e\xca\x67\xe3\xa7\xec\xa5\x88\xc2\x85\x30\xbe\x7b\x2e\ -\xcb\x45\x60\x59\xeb\xf5\x1a\x25\x15\x11\xc9\x7c\x66\x7d\x6f\x98\ -\xe6\xf8\xe1\x61\x58\xac\x66\x0f\x86\x61\xc0\xba\x59\x11\xc4\xd1\ -\x68\x50\x0d\x58\x2c\xf3\x54\x0b\xc6\x91\x25\x52\x31\x17\x59\x59\ -\x58\x04\x11\x6b\xb0\x17\x8f\xf6\xe2\x91\x5a\x3d\x59\x89\x48\xce\ -\xe7\x32\x2b\xf4\xc8\xac\xf8\xd4\x12\xce\xe3\x69\x23\xad\x76\xb3\ -\x66\x5a\x88\xf8\xbe\x6f\x61\x6a\x51\x6a\x82\x84\x59\x6c\xb3\x32\ -\xdc\x98\xdd\xa1\xb0\xc7\xbe\xa1\x14\x63\x6c\x01\x6f\x2f\x79\x9e\ -\x54\x50\x00\xa0\x0b\xf8\x6b\xc4\x6b\x02\x2a\xe4\x32\x8f\xc4\x14\ -\xc6\x09\x94\x89\xd2\xfa\xfc\xeb\xe7\x86\x69\x62\x14\x97\x71\x6b\ -\x9a\x1a\xcf\xce\xaa\x1d\x90\xb3\x70\x2e\x8a\x45\x18\x89\xc2\xaa\ -\xe9\x7a\xfc\x3a\x89\xcb\xe7\xd1\x80\x71\x44\x18\x1c\xb6\x26\x3e\ -\x8b\x64\xf6\x5c\x1e\x52\x93\x78\x34\x80\xdd\x53\xdf\xdb\x5d\xb7\ -\x9c\x83\xec\x04\xaa\x89\x83\x86\x83\x91\x4f\x11\x31\x72\x62\x33\ -\x77\x27\x53\xab\x10\xc4\x32\x52\x7b\x82\x29\xc5\x3c\x09\x97\xa5\ -\x9c\x83\xd5\xa2\x28\x0d\x8b\x22\x99\x26\x11\x5c\xc8\x6c\x91\x2e\ -\x67\x49\xf6\x5b\x18\x45\xcb\x3c\x8c\xb6\xbf\x95\x52\xa6\xa8\x06\ -\xb0\x59\x4d\x6c\x16\x32\x2f\xcd\x4d\xbc\x00\x18\x1d\xb7\x97\xb9\ -\xad\x99\x63\xe0\x0e\x63\x31\x2d\x94\xd4\x4e\x27\x75\x05\x4a\xb9\ -\x03\xc3\xd2\xdc\x66\x8b\x6a\x7f\xf1\x2a\x11\xeb\xbd\xec\x24\x2c\ -\x76\xb8\x19\xc6\x22\x9c\x81\x8f\xa5\x32\x1f\x0d\x3e\x4d\xf5\x51\ -\x31\x26\x32\x8f\x45\x5e\xb3\x1c\x7d\x74\x58\x12\xec\x90\x94\xdb\ -\x5d\x54\x55\x73\xd7\xfb\x55\xb3\x36\x7c\xdc\xcf\x2f\x9e\xc3\x58\ -\xae\x47\x03\x7a\xc8\xfc\x22\xe5\x7c\x34\xb0\x91\xed\x7b\x3e\x26\ -\x87\xdc\x68\x33\x1a\x98\x8c\x21\xee\x71\x97\x7a\x47\x5c\x58\x8f\ -\x12\xe4\x3a\x8c\x91\xa3\x89\x01\xff\x1c\xc2\xce\x4c\xc3\xad\x00\ -\xa5\xf4\x4f\x3d\x7f\xf1\x2c\xd7\xb3\x5c\x81\x53\xe6\x4b\x71\x38\ -\x52\x71\xcc\xc9\x44\x6e\xfa\xd9\xe0\x05\x4b\x15\xd0\xe6\x32\x4b\ -\x4a\x08\x9a\xc5\xa6\x3d\xeb\x32\x89\x45\xd1\x3f\xb0\xc8\xc2\x85\ -\x39\x4b\xe5\x24\x4c\xfb\x05\xd6\x49\x06\x20\x99\x95\x7f\x13\xd6\ -\xd8\xe0\x50\xa2\x76\x76\x17\x1f\x61\x52\x49\xc0\xde\x8f\xec\x50\ -\xb1\xb6\xa7\x59\xf3\x70\x93\xcc\x93\x2f\x02\x80\x21\xda\xed\xc0\ -\xb5\x3a\xb0\xec\x86\x19\x46\xb9\x55\x81\xbb\xd9\x2a\xda\xa0\x26\ -\x2a\x3c\x15\x81\xfa\xbe\xdb\x10\x65\x9e\x40\x3c\xb4\xb6\x53\x93\ -\xb6\x6d\x92\x0a\x73\xc8\xd2\x1b\xed\x5f\xda\xfb\xdc\x43\xde\xb6\ -\xcd\xab\xdc\xde\x3a\xf6\x7b\x4d\x9f\x8b\x32\x8c\xc3\x32\xdc\x07\ -\x41\x4d\x81\xbd\xe1\x5a\x33\xc8\x98\xc1\x5f\x3f\xff\x38\xae\x16\ -\x1a\x46\x51\xf0\x4f\x99\xbf\xd4\xeb\x1a\x86\x12\x08\x27\x72\x09\ -\x48\x0f\xc6\x0d\x79\x18\x47\x01\xe4\x38\x88\xfd\x71\x32\x07\xd7\ -\x56\xe9\xf1\x4f\x90\xd3\x86\xd6\x9e\xd1\x11\x56\x60\xed\x27\xdd\ -\x4d\x9b\x8b\x5d\xb2\xec\xad\x18\x71\x34\x4f\xd4\x20\xeb\x6f\x65\ -\x92\xa6\x3f\xa9\x45\x2a\x8d\x5b\x93\x26\x65\x2a\xf6\xc4\xa1\x55\ -\xed\xbe\xd2\xcd\x6a\x29\x37\xb4\x6a\xed\xf5\xd5\x6c\x8f\x4a\x27\ -\x28\x1a\x43\xa7\xe1\x44\x80\x87\xfe\xac\x98\xc6\x11\x77\x96\xcb\ -\xe5\x62\x2e\x63\x51\x0d\x6f\xd0\x14\x51\xd9\x98\xac\xdc\xa6\xc0\ -\xd7\xf9\x24\xf8\x84\xf5\xf1\x14\x27\xc5\x02\x46\x40\xe2\x4f\x93\ -\x4c\x3c\x49\xc8\xb8\xd3\x54\xae\x83\x55\x52\x24\x93\x54\x3c\xe9\ -\xdf\x24\x05\xcd\x1b\xd2\x14\xd4\x0f\xaa\x4c\xa5\x2f\xcc\x2a\xcf\ -\x04\x64\x77\x99\x2f\x53\x11\x64\x32\xfb\x02\x19\xea\xa9\x28\x73\ -\xf9\x22\xb4\xfc\x64\x3a\xa9\x2e\x77\xd1\x14\x40\x56\xc7\xcc\x73\ -\x99\xcb\x6b\xba\xda\x04\x28\x14\x4c\x96\x65\xd9\xa6\xfd\x4b\x26\ -\x59\x00\xf8\x8b\xbc\xa6\xea\x8b\x14\x02\xa3\x0c\x9a\xd1\x71\x08\ -\x19\x2d\xcf\x41\x1d\x58\x5d\xb4\xa9\x72\x3a\x2d\x44\x19\xe0\x9a\ -\xb6\xdf\xf1\x3c\xcc\x5f\x44\xbe\x1b\x20\xb2\x10\x14\x34\x27\x61\ -\xf4\xa2\x00\xcd\xe2\x40\x55\x8c\xf9\x32\x85\x2e\xa4\x13\x50\x0a\ -\x56\xe6\x7a\xc4\xc4\xe6\x3e\x5c\xea\x0c\xc1\x91\x47\xb8\x47\x9c\ -\x86\x51\x27\x06\x62\x23\x46\x3c\x9b\x78\x0d\x07\x42\x8b\x62\xe4\ -\x72\xec\x72\xda\x10\x21\xa6\x18\x45\x98\xfa\x0e\xf5\x1b\x62\x0e\ -\xa2\x2e\x72\x6c\x0c\xc1\xd6\xa2\xea\x78\xad\x1d\xee\x9d\x5b\x9b\ -\x20\xc6\x61\xf7\x84\x93\xfb\xb5\xb6\x6b\x7a\x47\xf6\x76\x90\x36\ -\x95\x7b\x64\x6f\x86\x91\xc3\x5c\x5c\x75\x3d\x95\xbd\x39\xe2\xfa\ -\xe8\xd8\x9b\x78\x88\x60\x10\xe5\x1d\x7b\x7b\x88\x13\x1b\xbb\x8c\ -\xdf\xab\xbd\xa9\xeb\x51\x50\xca\xbb\x63\x7b\x9f\x1f\xdd\xbd\xd6\ -\x66\xd0\x43\xa9\x83\xb5\xad\x4d\x91\xab\xb2\x00\x77\xbe\xa5\xe8\ -\xfe\x06\x72\xf9\xd7\xc8\xe4\xb5\xad\xf9\x7b\xb1\xb5\x43\xa6\x53\ -\xc6\xdf\x6a\x6b\x8f\xb8\xb6\xc7\x6d\xf7\x5e\x6d\x4d\x4c\xe7\x02\ -\x6b\x53\x64\xab\xbb\x57\xfe\x6a\x64\xbf\xbb\xba\x7d\x25\x6b\x3b\ -\xc4\xc3\xbe\xcb\xee\xd6\xda\x17\xd8\x9a\x21\x9f\xda\x3e\x75\x5f\ -\x8d\xec\xfe\x9a\x7d\xf7\xb6\xbe\xf3\x2c\xfe\xc6\x1c\x6e\xef\xac\ -\x6f\xbb\x3d\x39\xdc\x26\x6f\xb6\xf4\xe9\x72\x8b\x5b\x86\x12\x2b\ -\x91\xc9\x38\x6e\x0c\x55\x39\x46\xc7\x50\x0e\xf2\x98\x43\x09\xa6\ -\xf6\xe5\xf0\x37\x50\x1f\x21\x08\x37\xe2\xfe\x21\x82\x36\x46\xaa\ -\xad\x69\xe9\x59\x23\xc8\x3d\x1d\x16\xac\x5b\x05\x91\xca\x7f\xed\ -\x14\xa8\x9f\x11\xb0\x1d\xae\x07\xfd\x2d\x03\x6f\xf3\x6d\xda\x41\ -\xd0\x46\xae\x6f\x33\x9f\xed\x27\x68\xee\x72\xcb\x3c\xcc\x0a\x75\ -\x33\x6f\x46\x22\x03\x6d\xd5\x03\x15\xd3\x41\x2e\x71\xa0\xc9\x74\ -\xcf\x90\xdf\x6a\x79\xee\x7b\xae\xe3\xd8\x7b\x4b\x2d\xc2\xf2\xb9\ -\xcf\x52\x2d\xd0\xfa\xad\x40\x10\x67\x0e\xe3\xbe\xc3\x16\x9b\xcb\ -\x03\xe6\xd8\x0e\xea\x99\x88\x51\x67\x9b\x47\x8e\x88\xab\x0e\xcf\ -\x58\x19\x9c\x20\x7d\xee\x52\x03\x77\xcc\xa6\xf6\xce\x5c\x97\x1d\ -\x6b\x1f\xc9\x0c\x76\x52\xca\xdc\x8c\x96\xf9\x2a\x2c\x97\xb9\xe8\ -\xf8\xe7\x7b\xd2\xfa\x17\xa3\xae\xa7\x76\x4b\xed\x7f\x18\x1c\x02\ -\x52\x53\xfb\x74\xb6\xef\x5d\xe7\xfa\x5e\xd0\x7e\xac\x8b\x89\x6d\ -\xfc\xc5\x80\xb0\xf2\xd4\xe1\xf7\xe9\xdc\xe3\xe5\xf7\xaa\x73\xd3\ -\x2c\xbd\xa6\x73\x4f\x26\x78\x4d\xe7\x52\x6c\x9a\xdc\xbb\x99\xa7\ -\x81\x7e\x63\x01\x13\xe6\xa2\x10\xf9\x6a\x5f\x3a\x6a\x3c\x64\x56\ -\x9a\xfa\x1c\x50\xc9\xe7\x61\xfa\xa4\x29\x6b\x9d\xe8\x3a\xa4\x22\ -\xf9\x22\x02\x68\x08\x3d\x8d\x17\xf1\x01\x19\xa5\x7e\xf5\xf0\x37\ -\xc0\x7f\xdc\x89\x4d\xc3\x79\x92\x6e\x83\x02\xf2\x8f\x09\x2b\x26\ -\xd3\xa7\x54\x94\x2a\x03\x55\xcf\x4d\x03\x0c\x03\xd7\x32\x8f\x3b\ -\x84\x5d\x79\xa8\x4c\x71\x50\xc7\x2b\x43\xb5\xf3\x78\x6d\x25\xdc\ -\x79\x35\xa0\xb3\xb0\x87\x74\xcb\xe6\xf0\x4e\x16\x56\xa9\xd5\x87\ -\xb6\xbd\x03\xb2\x82\x8a\x79\x64\x0f\x72\x93\x35\x47\x03\x00\x3b\ -\x15\xdf\xc1\x0a\x8c\x70\x4a\xe8\x23\xb4\x07\x0e\x24\x67\xe7\xfb\ -\x63\x8b\xf4\xbd\x3c\xe9\x13\xd8\xbf\x40\x19\x96\xa0\x7b\xb6\x7f\ -\x06\xdb\x3c\x36\xce\xa5\xb2\x89\x82\x75\xb0\xe7\xea\xad\xaa\x01\ -\xcc\xa3\xa4\x45\xef\x55\xf6\x84\xba\x07\xf6\xae\x4c\x09\xcd\x1e\ -\xe1\xf6\x81\x21\x09\x82\xca\x7a\xc2\x94\x27\xe0\x1f\xbb\x43\x4b\ -\xef\x70\x0c\xbf\x00\xea\x87\x2b\xee\x1a\x02\x40\xd8\x23\xb6\xdf\ -\x71\x45\x86\x11\x71\xda\x77\x54\x6d\x4f\x34\xe9\x65\xbe\xf8\x16\ -\x4f\x32\x59\xd7\x97\x8e\x77\xdb\xbf\xdf\xaf\xec\x4a\xde\x87\x2b\ -\xf5\xb8\x12\x73\x11\xe3\x36\xf6\x3a\xbd\x25\xe7\xc8\xa6\x8e\x77\ -\xca\x95\xcc\x0b\x13\xdb\xdb\x9c\xa9\xf5\xc0\xf0\xc4\x8e\xfb\xf7\ -\xfc\x95\xdd\x89\x36\xee\x74\x91\x72\xa7\x15\x70\x30\x72\x3c\x1b\ -\xba\xd1\x1b\x69\xd0\x0b\x38\xb4\xf0\xe3\xff\xfc\xfb\x23\x52\xce\ -\x4d\xba\xff\xbb\xfe\x43\xa8\xe0\x9b\x86\xca\x79\x99\xf7\xe6\x55\ -\x1c\x7f\x38\xd4\xb9\xa9\xf7\x75\x87\xba\x71\xf6\x3d\x37\xff\xde\ -\xdc\xa9\xf8\x87\x53\x9d\x7b\x97\xf2\x4a\x6b\x68\xde\xb8\x3d\x34\ -\x5d\x93\x76\x7d\xea\xc4\xed\xc6\xad\x5b\xc4\xdf\x5f\xd3\x4f\x28\ -\xc0\x1d\xc4\x28\xa5\x8e\xff\xff\xad\xe9\x00\xf7\x47\x55\xbf\xa0\ -\xaa\xbf\xda\xff\xde\xba\x03\x36\xc9\x59\x85\xfd\xd6\x3d\x30\xf9\ -\xdd\xf1\x72\x42\x81\x77\xd2\x03\x9b\xce\x47\xbc\x5c\x52\x5f\x5e\ -\x8f\x17\x76\xe3\x78\x71\xce\x4b\xcf\x37\x8e\x17\xf7\xda\xf5\xe5\ -\xbd\xc4\x0b\xfe\x88\x97\x4b\x9a\xfc\xd7\xfb\xb1\x56\x62\xbc\x4d\ -\xc0\xf0\xae\xbf\x9d\x68\xf2\x6f\xdd\x90\xe1\x6b\x3f\x64\x79\x2f\ -\x0d\x19\x3b\x19\x30\x67\xbd\x5a\xaa\x5e\x77\x7f\xfd\x17\xa7\x84\ -\x21\xa6\x8f\x47\x6c\x44\x06\x6e\xbd\x48\x3c\x75\xbe\xea\x79\x99\ -\xca\x71\xeb\x85\xf6\x75\x5f\xb2\xdd\x0c\x09\xea\xa0\xdd\x37\xf9\ -\x6f\x46\xa2\x75\xf3\x73\xaf\x58\xf8\x48\x7d\x90\xf0\x76\xa7\x30\ -\x29\xbf\x77\x2c\x38\xbe\x02\x0a\xad\xc7\x84\xf7\x0a\x43\xf5\x91\ -\xca\x55\x7c\xc2\xbc\x7f\xaf\xa8\xbe\x7a\x72\xae\x03\x87\x79\xff\ -\xe9\xb3\x76\x0f\x0f\xb1\xdd\x47\x29\x1d\x5c\xec\x93\xe7\x27\x71\ -\x21\xf7\x0e\xc9\xfe\xb3\x0d\xb8\x1b\xa6\xea\x93\x3a\xda\xc6\xc4\ -\x3b\x71\x7a\x1a\x90\xfb\x2f\x2c\x76\xd5\x6d\xb0\x47\xe6\x20\xaa\ -\xcb\xed\x1b\x21\xb9\xfb\xc0\x81\x49\xf5\xd7\x96\x57\xf4\x92\xfb\ -\x07\x85\x21\x7a\x35\x0f\xf9\x06\x8a\x6f\xf3\xff\xa2\x57\x04\xc5\ -\xbb\x18\x96\xa1\x35\x1b\x3f\x0c\xd5\x7f\x89\x8e\x1f\xfe\x0b\x5f\ -\x2f\x09\x26\ +\x00\x4e\xd5\x78\x9c\xe5\x9c\x4b\x8f\xdb\x36\x10\x80\xef\xfb\x2b\ +\x54\xed\x25\x41\x4b\xbd\x6d\x3d\x62\x3b\x87\x06\x01\x02\xf4\xd4\ +\xa6\xe8\x31\x90\x25\xda\x26\x56\x12\x0d\x8a\x5e\xdb\xf9\xf5\x21\ +\xf5\xb2\x65\x6b\x81\xa6\xa4\x0a\xed\x52\x45\x90\x6a\x66\x48\x91\ +\x9f\x66\xc8\x21\x45\x67\xf1\xf1\x94\x67\xda\x33\x24\x25\xc2\xc5\ +\x52\xb7\x0d\x4b\xd7\x60\x91\xe0\x14\x15\xdb\xa5\xfe\xf7\xd7\xcf\ +\x20\xd0\xb5\x92\xc6\x45\x1a\x67\xb8\x80\x4b\xbd\xc0\xfa\xc7\xd5\ +\xc3\xe2\x17\x00\xb4\xdf\x09\x8c\x29\x4c\xb5\x23\xa2\x3b\xed\x4b\ +\xf1\x54\x26\xf1\x1e\x6a\xef\x76\x94\xee\x23\xd3\x3c\x1e\x8f\x06\ +\x6a\x84\x06\x26\x5b\xf3\xbd\x06\xc0\xea\xe1\x61\x51\x3e\x6f\x1f\ +\x34\x4d\x63\xcf\x2d\xca\x28\x4d\x96\x7a\x53\x60\x7f\x20\x59\x65\ +\x98\x26\x26\xcc\x60\x0e\x0b\x5a\x9a\xb6\x61\x9b\xfa\xc5\x3c\xb9\ +\x98\x27\xfc\xe9\xe8\x19\x26\x38\xcf\x71\x51\x56\x25\x8b\xf2\xf1\ +\xca\x98\xa4\x9b\xce\x9a\xb7\xe6\xe8\x56\x46\x76\x18\x86\xa6\xe5\ +\x98\x8e\x03\x98\x05\x28\xcf\x05\x8d\x4f\xa0\x5f\x94\xb5\x71\xa8\ +\xa8\x63\x59\x96\xc9\x74\x17\xcb\x7f\x67\x15\x95\x0c\xe8\x9e\xfd\ +\xe9\xcc\x5b\x81\x51\xe2\x03\x49\xe0\x86\x95\x83\x46\x01\xa9\xf9\ +\xe9\xeb\xa7\x4e\x09\x2c\x23\xa5\xe9\x55\x35\x2d\xcf\xde\x53\x7b\ +\x90\x8b\x38\x87\xe5\x3e\x4e\x60\x69\xb6\xf2\xaa\xfc\x11\xa5\x74\ +\xb7\xd4\x5d\xcf\xb0\x5d\x76\xcd\x2a\xe1\x0e\xa2\xed\x8e\xde\x4a\ +\x51\xba\xd4\x59\xeb\x9d\x30\xa8\xef\xaf\x9c\xc3\xae\x0d\x9a\x8a\ +\xa3\x4e\x63\x19\xa1\x63\xd8\x1a\xb1\x67\xae\x5f\xdb\xb4\x5d\x88\ +\x52\x9c\xf0\x36\xb1\x2a\x61\x8e\xe2\x03\xc5\x39\x7b\x6b\x49\x92\ +\xc5\x65\x89\x36\x28\x61\x37\xb8\xd8\x67\x87\x2d\x2a\xbe\xf5\x85\ +\xdf\x52\x94\x55\xff\x63\xb4\x28\xbb\xe7\xc2\xd3\x1e\x13\x0a\x4e\ +\xe9\x9e\x01\x9d\xfb\x83\xca\x73\xab\x5c\x31\xed\x22\x85\x9b\x92\ +\x5b\xd5\xbd\xe3\x77\xac\x7b\xbe\xae\x99\x95\xb6\x6b\x2c\x6f\x69\ +\xfa\x8c\xe0\xf1\x62\xbb\x8e\xcb\x9a\xa0\xa6\xed\xe3\x2d\xf3\xb6\ +\x0c\x93\xa5\xfe\xb8\xa9\xae\x46\xb1\xc6\x24\x85\xa4\x55\xcd\xab\ +\xab\xa7\xc2\xec\x8d\x20\x7a\xae\xe3\xab\xa9\xbb\x6d\x2f\xaf\xb5\ +\xd3\x5b\xc3\xfa\x72\x17\xa7\xf8\xb8\xd4\x9d\x5b\xe5\x77\x8c\x73\ +\x56\x2b\x7b\x33\xa1\x1f\x58\x77\xea\xe4\xb4\xd4\x81\x1d\x18\xee\ +\xcc\x9b\xdb\x77\x4a\xde\x1e\xdf\xb0\x9c\xd0\x0a\xef\x74\x07\x42\ +\x58\xfc\x81\x2c\x3e\x43\xd6\xa7\xea\xaf\xb6\x82\x72\x87\x8f\x5b\ +\xc2\xd9\x50\x72\x80\xb7\x25\xb9\x06\xac\xd7\xf8\x34\xac\x66\xee\ +\x70\xe0\x91\x0d\x0e\x05\xa2\x2c\x7a\xf6\xa7\xeb\x5a\x0f\x28\x85\ +\xe5\x70\xc1\xb2\x88\xf7\x60\x9b\xe1\x75\x9c\x0d\x1b\x1c\x51\xc1\ +\x18\x81\xc6\xd1\x6d\xb7\x7b\x05\xb7\x16\xad\xd7\xfb\x56\xf0\x82\ +\x05\x6b\xfb\xdd\x6b\x68\x54\xe7\x97\x55\x79\x7c\x42\x39\xfa\x0e\ +\x19\x18\xbb\xf2\x3a\xe6\x59\x3d\x2c\x75\x31\x4d\xa3\x67\x1e\xc1\ +\xa7\x33\x97\xe9\xad\x90\xf3\xe4\x02\x27\x0c\xfd\x4e\x88\x09\x62\ +\x81\x71\xd5\x9c\x56\x74\xbe\x16\xf1\x78\x67\xc3\xf5\xa9\x72\xaf\ +\xca\xf9\xfc\x5b\xdd\xf9\x5a\xd7\x78\xbd\x79\xef\xf6\x95\x3c\x87\ +\x34\x4e\x63\x1a\x5f\x62\xa0\x95\xb0\xb6\x59\x6d\xcf\xd8\xd0\x19\ +\xfd\xf9\xe9\xf3\xaa\x79\xd0\x22\x49\xa2\x7f\x30\x79\x6a\x9f\xab\ +\x69\xdc\x20\x5e\xe3\x03\x23\xad\xaf\x3a\xf1\x22\x4d\x22\x36\xd8\ +\xb1\x41\x60\x85\x72\xe6\xd9\x7c\x9c\xfc\x95\x0d\x6e\x0b\xf3\xa2\ +\xe8\x19\x73\x58\x97\x4a\xeb\x6a\x09\xac\x47\xcd\xc1\xa9\x23\x4d\ +\x72\xc4\x0b\x99\x7f\x51\x94\x65\x5f\xf8\x43\x9a\x1e\x5f\x55\x8a\ +\x68\x06\x2f\xc2\x85\xd9\xb4\xbe\xe9\x9b\x79\xd5\xb9\x85\xd9\xf6\ +\xbe\xba\xdb\x5e\xa8\xf4\x82\xa2\x7b\xd1\x59\xbc\x86\xcc\x43\xff\ +\xe0\x4a\xed\x4e\xbb\x25\xf8\xb0\xcf\x71\x0a\x9b\xe2\x1d\x4d\x98\ +\xd0\xee\x95\xd1\x73\xc6\xf4\x1b\xd6\xfa\xe8\x71\xed\xf2\xff\x3e\ +\xf0\x1b\xd0\x8c\x12\x91\x5d\xdf\x92\x43\xc6\x46\xbb\x67\x58\xe0\ +\x34\xfd\x50\x52\x82\x9f\x60\xf4\x68\x55\x57\x73\x5b\x07\x43\x64\ +\x19\x9e\x1b\x7a\xfc\xdd\xb7\x72\x46\x08\x92\x8c\x79\x2b\x8d\xbc\ +\x56\x96\xc6\x6c\x94\x21\x24\x3e\x47\x05\x9b\xe8\x5b\x69\xf7\xcc\ +\x9e\xa3\xf2\xe6\xce\x02\x37\x04\x36\x08\xc0\x45\xd5\xc4\xde\xcc\ +\x70\xdd\xcb\x74\xc2\xaf\x36\xe4\x3c\x23\xac\x34\x5e\xa7\xe1\x4e\ +\x6b\x19\x37\x4e\x7b\xe6\xa3\xd6\x9d\x2b\x93\x5e\x1c\x90\xca\xa5\ +\xe7\x1e\xbf\xe6\xdd\x0b\x7e\x19\xa4\x65\xcd\x66\x0c\xcc\x94\x41\ +\x86\x63\x80\xb4\x5d\xc3\xef\x5b\xbe\x79\x8e\x36\x98\x8d\x41\x32\ +\x30\x82\xaa\x2f\x8e\x3a\x24\xfd\x31\x38\x3a\xae\x31\x57\x07\x21\ +\x73\xc6\x51\xbc\x91\x65\x75\xbd\x44\x53\x14\xe5\x2b\x98\x68\xc2\ +\x71\xfc\xd1\x75\x0d\x4f\xe6\x4c\x33\x6d\x92\x82\x04\xad\x1e\x39\ +\x23\x50\xcb\x07\x3d\x41\x7a\xf7\xe6\x63\xa4\x3a\x13\xc7\x18\xc8\ +\x74\x41\xd9\xe9\xcd\xc4\xd9\x59\xc2\x2e\xd8\xa3\x27\x3b\xa5\x99\ +\x3a\x3d\x57\x26\x3c\x89\x79\xcc\xd4\xb9\x09\x4f\xbc\xfd\x98\x55\ +\x2e\x75\x11\x5f\x24\x0f\xce\x1c\x6a\x65\x2e\x7c\xf0\x13\xe6\xd8\ +\x8f\xe0\xc0\x98\x55\x26\x0a\xf1\x93\x3b\x81\xa8\xe8\x81\xc0\x91\ +\x49\x50\xb5\xec\x8f\x2f\xe4\x3c\x51\x1f\x74\xe6\xb7\x33\x48\xb5\ +\x1a\xf1\x5d\x85\xa2\xb9\xde\x5c\x10\x9d\x98\x07\x49\x32\x9f\x54\ +\x24\x23\x6c\x76\x68\x84\x37\x0c\x07\x31\x06\xb7\x9b\x0d\x6f\x1e\ +\x65\x08\x7c\xe1\xd1\x71\x38\xb6\xdd\xba\x12\x65\xdc\xd2\x03\x8e\ +\xe8\x3a\xd9\xb1\x8d\x1b\xa1\xdc\xd0\x9e\xf8\xe6\x6b\x00\x44\x57\ +\x7b\x76\xcf\x05\x6d\x65\xb6\xad\xab\x2c\xc7\x13\x75\x3f\x7b\xcc\ +\xb1\x70\xea\x04\x5d\xf1\xad\xea\x1e\x3e\x47\x72\x9e\x3d\x71\x7e\ +\x36\x98\x8b\x4f\xc9\x43\xc3\x9f\x62\x1c\x2d\x36\x1f\xcb\x8d\x63\ +\x5b\xf2\x92\x79\xe2\x00\xf9\x44\x3c\x07\xae\xe8\xae\xc3\xa0\x2f\ +\xca\x46\x39\xf9\x9c\x86\x6f\x83\x81\xd0\x1a\x83\xa5\x62\xf9\x61\ +\xb3\x93\x23\x7e\xce\x41\xe5\x24\xbb\xd9\xcc\x01\xe1\x5c\x2a\x45\ +\xb5\x16\xcf\x9e\x27\xbc\xe0\xbb\xf2\x37\x65\x77\x71\x80\xa8\x0f\ +\xf6\x21\xaa\xe5\x83\x3c\x94\x45\xb3\x9c\x3e\x3f\x89\x6b\xbd\x57\ +\xc0\xaf\xda\x00\x13\xfe\xb2\xd2\x27\xa8\xde\xde\x97\xcf\xa6\x12\ +\xd1\x45\x5f\x9f\xa1\xec\xc5\xca\x2b\x80\xc8\x4f\xcb\x01\x6b\x2e\ +\x79\x4e\x91\x97\x69\xf7\xb1\xbd\x0a\xa4\xd5\x9e\xac\xf0\x5e\x18\ +\x70\xfd\xdb\xe4\xf0\xa7\x33\xc6\x56\x4a\x49\x5c\x94\xfc\xac\xff\ +\x52\x2f\x93\x38\x83\xef\x80\xfd\x9b\xfd\xfe\xcd\x38\x70\x95\x58\ +\x8a\x7e\xe1\xba\x19\x09\x02\x43\xde\xf9\xed\xcd\xe6\x67\x16\xdc\ +\xf5\x0f\x9d\xfe\x4f\x86\xa2\xd9\xf8\xe0\x19\x4f\xc9\x27\x15\xa7\ +\x4f\xb1\xf6\xc4\x31\x58\xca\x3e\x35\x31\x75\x96\x82\x0c\x87\x4f\ +\xee\x28\xe7\x8f\xa2\x61\x3d\x88\x51\xfe\x8f\x5b\x26\x8e\x51\x7c\ +\xb5\x3d\xc8\x51\xfe\x4f\x5b\x26\xce\x51\x74\xb9\x3d\x48\x51\xea\ +\x0f\x5b\x26\x0e\xd0\x1b\x07\xa1\xec\xa3\xa1\xaf\x80\xa3\xf8\xaa\ +\x71\xd8\x19\x15\x9b\xa5\xeb\x7d\x20\x41\x92\x83\x67\x4f\xa4\x7e\ +\xf8\x9f\x3c\xc4\x66\x05\x3e\x0a\x48\xf5\x5c\xb2\x59\x0e\x8e\x41\ +\x53\x9d\x35\xa1\xdc\xa3\x14\xb2\x3f\x30\x4c\x1c\x9e\xf8\x71\xe5\ +\xe1\x0f\xae\xaa\x51\x0c\xc4\xcf\x93\x0d\x9f\x02\x50\x68\x76\xe1\ +\xc9\xce\x28\xa7\x1a\xa5\x9f\x2e\x9b\x34\xc8\xfa\xc3\x75\x20\xf7\ +\x78\xa3\x3a\xd3\x49\x93\x74\x0b\x6f\xec\x0c\x1f\x30\x53\x08\x63\ +\x30\xd6\x69\xef\xff\xf2\xe1\x6b\x61\x6e\x57\x0f\x0b\xfe\xcf\x09\ +\xad\x1e\x7e\x00\x7b\xad\x87\x0c\ +\x00\x00\x06\xfb\ +\x00\ +\x00\x17\xd8\x78\x9c\xed\x58\x5b\x8f\xe3\xb6\x15\x7e\x9f\x5f\xa1\ +\x6a\x51\x24\x8b\xae\x28\x5e\x74\xa1\xe4\x4b\x80\x66\xb1\x40\x80\ +\xf4\xa5\x49\xd0\xc7\x40\x96\x68\x0f\x3b\xb2\x68\x50\xf4\xd8\xde\ +\x5f\x9f\x43\xdd\x2c\xc9\xf6\x76\xda\x4d\x51\x14\xad\x3c\x03\x5b\ +\xe7\x1c\x92\xe7\xf2\x7d\x87\x94\x96\xdf\x9d\xf7\xa5\xf3\x2a\x74\ +\x2d\x55\xb5\x72\x09\xc2\xae\x23\xaa\x5c\x15\xb2\xda\xad\xdc\x5f\ +\x7e\xfe\xe4\x71\xd7\xa9\x4d\x56\x15\x59\xa9\x2a\xb1\x72\x2b\xe5\ +\x7e\xb7\x7e\x5a\xfe\xc1\xf3\x9c\xef\xb5\xc8\x8c\x28\x9c\x93\x34\ +\xcf\xce\x0f\xd5\x4b\x9d\x67\x07\xe1\x7c\xfb\x6c\xcc\x21\xf5\xfd\ +\xd3\xe9\x84\x64\x27\x44\x4a\xef\xfc\xf7\x8e\xe7\xad\x9f\x9e\x96\ +\xf5\xeb\xee\xc9\x71\x1c\x58\xb7\xaa\xd3\x22\x5f\xb9\xdd\x80\xc3\ +\x51\x97\x8d\x61\x91\xfb\xa2\x14\x7b\x51\x99\xda\x27\x88\xf8\xee\ +\xd5\x3c\xbf\x9a\xe7\x76\x75\xf9\x2a\x72\xb5\xdf\xab\xaa\x6e\x46\ +\x56\xf5\xbb\x91\xb1\x2e\xb6\x83\xb5\xf5\xe6\xc4\x1a\x23\x92\x24\ +\x89\x8f\xa9\x4f\xa9\x07\x16\x5e\x7d\xa9\x4c\x76\xf6\xa6\x43\xc1\ +\xc7\x7b\x43\x29\xc6\xd8\x07\xdd\xd5\xf2\x6d\x56\x69\x0d\x09\x3d\ +\xc0\xff\x60\xde\x0b\x50\xad\x8e\x3a\x17\x5b\x18\x27\x50\x25\x8c\ +\xff\xf1\xe7\x8f\x83\xd2\xc3\xa8\x30\xc5\x68\x9a\x3e\x9f\x93\x55\ +\x27\x49\xae\xb2\xbd\xa8\x0f\x59\x2e\x6a\xbf\x97\x37\xe3\x4f\xb2\ +\x30\xcf\x2b\x97\x05\x88\x30\xb8\xc2\x46\xf8\x2c\xe4\xee\xd9\xcc\ +\xa5\xb2\x58\xb9\xe0\x3d\x4d\x78\x7b\x3f\x02\x07\x69\x0d\xba\x89\ +\xd3\x41\x83\x51\x42\x11\x71\x34\x09\x59\xdc\xda\xf4\x21\xa4\x85\ +\xca\xad\x4f\x30\xa5\xd8\xcb\xec\x68\xd4\x1e\xaa\x96\xe7\x65\x56\ +\xd7\x72\x2b\x73\xb8\x51\xd5\xa1\x3c\xee\x64\xf5\xeb\xa9\x71\xe7\ +\x57\xa3\x54\x89\xfa\xf4\x0d\x6b\x89\xf3\x41\x69\xe3\x9d\x8b\x03\ +\x24\x31\x8a\xef\x2a\x2f\xbd\x72\x0d\xda\x65\x21\xb6\xb5\xb5\x6a\ +\x23\xb2\x77\x10\x52\xec\x3a\x7e\xa3\x1d\x1c\xb4\xde\x15\xaf\x52\ +\x9c\xae\xb6\x9b\xac\x6e\xb3\xe6\x38\x87\x6c\x07\x08\x2b\x95\x5e\ +\xb9\xef\xb6\xcd\xd5\x29\x36\x4a\x17\x42\xf7\xaa\xa8\xb9\x26\x2a\ +\x05\x55\x90\xe6\xd2\x72\xaa\x9b\xbb\xf7\xd7\xce\x3a\xe8\xf1\x7d\ +\x7d\xfd\x9c\x15\xea\xb4\x72\xe9\x5c\xf9\x59\xa9\xfd\xca\x8d\x51\ +\x42\x38\x0e\x48\x3c\x57\xe7\xe7\x95\xeb\x31\x8c\x58\x42\x93\xe8\ +\x56\x0b\x0b\x86\x28\x20\x41\xcc\xd8\xcd\xcc\xf9\x51\x6b\x60\x9d\ +\x57\x66\x17\x01\x51\x35\x5f\xa4\x33\xaa\x9f\xd5\x69\xa7\x6d\x76\ +\x8c\x3e\x8a\xf9\x48\xab\xf1\x36\x1b\x75\xbe\xaf\x06\x10\x1c\x2d\ +\x9f\xbd\x63\x25\x0d\x70\xe6\x70\x1e\xcf\x7a\x94\x85\xa8\xef\x0f\ +\xac\xab\xec\xe0\xed\x4a\xb5\xc9\xca\xfb\x06\x27\x59\x41\x96\xbc\ +\x0e\xde\x84\x0d\x45\x98\x5b\xf4\x58\x8f\x31\x7f\x60\x01\xbe\xdf\ +\x14\xa2\x53\x5d\x1e\xab\xf6\xd9\x59\xee\xe5\x67\x01\x89\x21\x37\ +\x59\xb1\x91\x8d\xd3\xb2\x6e\x0c\x96\x93\xb4\xb5\x63\x1c\xc7\x5c\ +\x2c\xaf\xcf\x17\x2b\x73\x7b\xa1\xcd\xb7\x15\xd0\x24\x89\x07\xa1\ +\xd2\x12\xe8\x32\x72\xb7\x17\x5d\xc6\x22\xdb\x05\xa0\x89\x9f\x1b\ +\x00\x36\xf0\x8c\xe7\xba\xcb\x58\xd7\xf1\xc2\xbf\x25\x46\x23\xdf\ +\x0b\x93\x15\x99\xc9\xae\x2c\xe9\x25\xe0\x1b\xee\x23\x83\x86\x9a\ +\xfe\xf5\xe3\xa7\x75\xb7\xd0\x32\xcf\xd3\xbf\x29\xfd\xd2\xaf\xeb\ +\x38\xd6\x20\xdb\xa8\x23\x54\xc2\x5d\x0f\xe2\x65\x91\xa7\xd0\x02\ +\xa1\x35\xac\xe5\x1e\xb0\x6f\xbb\xe7\x9f\xa0\xe5\x2d\xfd\xab\x62\ +\x62\x6c\x93\x75\x9d\xb4\x9d\x56\x8b\xb6\x97\xde\xdd\x50\x8a\x7c\ +\x2f\xed\x20\xff\x27\x23\xcb\xf2\x07\xbb\x48\x17\xf1\x68\x52\x69\ +\x4a\x71\x15\x2e\xfd\xce\xfb\x2e\x36\x7f\x14\xdc\xd2\xef\xa3\x6f\ +\xee\x76\xd7\xac\x4c\x48\x33\x14\xba\xcc\x36\x02\x10\xfc\xa3\x55\ +\x3a\xb7\x38\xd1\xea\x78\xd8\xab\x42\x74\xc3\x87\x6c\x8a\xdc\x0c\ +\x25\x33\x97\x12\xf4\x4d\xc3\x49\xdf\xe1\xe6\x5a\x14\xb2\x3e\xc0\ +\x08\xd8\x17\x4a\x59\x89\x85\x82\x86\xbc\x2d\xd5\x29\x7d\x95\xb5\ +\xdc\x94\x62\xd1\x7c\xcb\x12\x22\x1f\x44\x5d\xdb\x49\xa1\x65\xf3\ +\xa4\xb9\x16\x5b\xc8\x08\x4c\x59\xd8\x4f\x73\xe3\xf5\x46\xa4\xbd\ +\xd5\xc7\x52\xa4\x95\xaa\x3e\x43\x57\x5b\xd4\x46\xab\x17\x91\x76\ +\xdd\xb0\xbb\x6d\x09\x98\x52\x84\x39\xb3\xfb\x2b\xef\xe5\xd6\x2f\ +\x88\x31\xdd\x1c\x8d\x19\xcb\xfe\xae\x64\x95\x42\x49\x84\xee\xa5\ +\xcd\x4d\x09\x5c\x32\x69\xd0\xcb\x8a\x0c\xba\xa0\xd6\x10\x21\xac\ +\x2e\xc6\x52\xb5\xdd\xd6\xc2\xc0\x82\x9c\x51\x8e\x49\x38\x2c\x78\ +\x75\x7d\x9f\xe9\x17\xa1\xdb\x91\xa2\xca\x20\x78\x6f\x93\xe5\x2f\ +\x36\xd9\x55\x91\x66\x39\xb4\xa4\x63\x09\x07\x98\x09\xd9\x6c\xca\ +\x19\x26\xc4\x0b\xbd\x60\x50\x74\xdd\x25\xe0\x83\xa4\xef\x26\x04\ +\xa3\x19\xb5\x80\x6f\x11\x0a\x9a\xf2\x90\x41\x68\x89\x96\x20\x3a\ +\x15\xea\xb3\x6d\xc5\x21\x86\x2e\xce\x47\x52\xb0\x65\x28\x61\x24\ +\xc6\x71\x32\x40\xf4\xff\x50\xf8\x4f\x42\xe1\x5f\x05\x02\x6d\x8f\ +\x55\x2c\xf8\xdf\x06\x42\x4c\x22\x12\x61\xf6\xdf\x8e\x83\xb7\xa0\ +\x80\x77\x15\x1f\xa3\xc0\x0b\x51\x23\x63\xe1\x18\x06\x94\xa0\x19\ +\x36\x1e\xc3\x20\x42\x11\x67\x09\x86\x03\xdb\x00\x83\xdd\xe0\xe1\ +\x17\xb7\x98\xf1\x9e\xe4\x5d\xb1\x69\x74\x56\xd5\x76\x5f\x85\x5d\ +\x3c\x33\x5a\x9e\xbf\xc5\x28\x4c\x48\xc0\xe3\x30\xfc\x80\xed\x07\ +\x85\x51\xc4\x39\x21\xc1\x87\x18\xc5\x09\xc7\x2c\x09\x3f\x00\x9c\ +\xa3\x98\xc7\x31\x79\x3f\x6c\xdd\x13\x38\x7e\xe1\x40\xfe\xd8\xe4\ +\x7c\x6b\x72\xeb\x1d\x01\x97\xe0\x61\x88\x07\x0c\x1c\x08\xb8\x75\ +\x8f\x45\xf0\x23\x4e\xac\xaf\xef\x47\x63\x6d\xba\x00\x71\x38\x0c\ +\xe3\x51\x12\xdb\xe4\x52\x14\x06\x38\xe2\xf1\x58\x0e\xe6\x01\x9c\ +\x87\x43\x88\x34\x19\x89\x6d\x29\x28\xa2\x84\x72\x4a\x47\xe2\xa1\ +\xce\x31\xe2\xdc\x6a\x47\xba\x0e\x15\xb6\xae\x24\x4a\xa6\x31\x77\ +\x28\x82\x93\x12\x1b\x89\x3b\xfa\x76\x54\x03\x97\x8b\xe0\x31\xd5\ +\xc4\xab\xa8\x54\x51\x0c\x54\xeb\xd8\x3e\xa3\x1a\xe1\x0c\x62\xc7\ +\xc9\x3f\xcf\xa0\x61\xcd\xd1\xb1\x68\x56\xdd\x99\xbf\x59\x06\xeb\ +\x7f\xa5\xbf\x38\xa0\x38\x48\x48\xfc\x35\xfe\xde\xe6\x99\xc5\x93\ +\xf4\x7f\xa1\x32\x43\x41\x13\x44\x08\x65\x01\x99\x62\x80\x85\xd0\ +\x11\x31\x0f\xa2\x29\x62\xa8\xe5\x44\x12\x47\xfc\x0d\x00\x6b\x01\ +\xc9\x21\x46\x82\xf9\x5b\x40\x1e\xf3\x84\xc5\x34\x61\x00\xf2\x88\ +\xb0\x04\xfe\x78\x0b\xf2\x87\x75\x79\x3c\x15\x8b\x28\xf4\x93\xc4\ +\x4e\x05\x29\xc1\x3c\xe2\xf7\xf8\xc2\x10\xc1\x98\x85\xa3\xfe\xf4\ +\x45\xbe\x10\x0a\x8e\x01\x5c\xe3\x69\xae\x28\x43\x8c\xe2\x88\x26\ +\x77\xd2\x4b\x31\x82\x2a\x33\xf6\xc6\xaa\x8c\xea\x98\x3c\xe2\xcb\ +\x76\xdb\xe0\xe9\xab\xf0\x47\x50\x12\x04\x50\xc8\xf8\xdf\xc3\x97\ +\xdf\xa7\x1b\x4e\xa2\xce\x9b\xeb\xab\xa3\xc6\x71\x44\x83\x24\xfa\ +\xbd\x59\x37\x41\xca\x1b\x58\x07\x3a\x4a\xa1\xc6\x74\x8a\x24\xc2\ +\x10\x9f\x9e\xa5\x1a\xdc\x79\x01\xb4\x0b\x4c\x18\x0f\x84\x47\xde\ +\x82\xd5\x16\xdb\x94\x90\x38\x9a\x30\xf8\x31\x5f\x08\x8e\x09\x09\ +\x29\xf0\x25\xc6\x2c\xe0\x2c\x9c\x51\x6f\xe9\xef\xba\x1f\x46\x9c\ +\x87\x4a\xc3\x83\x6a\xda\xbc\x73\x5b\xb9\x07\x78\x08\x15\xfa\xf5\ +\x7a\x80\xe8\xab\xa7\x2a\xe3\x35\xbf\x21\x9d\xf0\x38\x5b\x2e\x1a\ +\x49\xfb\xc6\x6b\x22\xaa\xe5\x67\x91\x02\xc5\x78\xfb\x08\x91\x1c\ +\xce\x0b\x7b\x38\xea\xde\x5f\xa4\xf8\x8f\xad\xd9\x36\xdb\xcb\xf2\ +\x92\xd6\x10\x89\x07\x2b\xca\xed\xa2\x14\x06\xaa\xe8\x75\x8f\xf6\ +\x29\x86\x81\x27\xa5\x8b\x89\xa0\x6f\xdd\x96\x3c\x73\x10\x75\x90\ +\x19\x57\xbb\xc7\x4b\xf7\x8a\xe0\x5a\x26\x48\x38\x87\x2d\xd8\x5e\ +\xd7\x9e\x66\xb3\x7d\x35\x69\xde\x14\x41\x92\x18\xf4\x77\x77\xbd\ +\x34\xe0\x46\x35\x02\x75\xff\x92\x41\x2b\x9b\x1e\x1b\xe1\x0c\x51\ +\xcd\x00\x86\xc3\x59\x47\xbe\x5d\x76\xbe\xf0\x3f\xca\xf9\x6b\xa6\ +\x65\x56\x99\x7b\x75\xd8\xa8\xb2\xe8\xaa\x60\xb4\x30\xf9\xf3\x9d\ +\xca\xc0\xd1\x83\x52\x0e\x27\x91\x78\x56\x19\xc0\x72\x38\xa9\xcd\ +\x27\x2d\xc4\x5f\x54\xa5\x16\x5e\xcf\x72\xaf\x9d\xe7\x20\xf2\xe1\ +\xd5\x67\xfa\x4d\x6f\xe6\xfc\x19\x56\xff\x66\x5a\xa2\x47\x75\x58\ +\xc3\xef\xa5\xdf\xa4\x68\x0d\xdf\x90\xe6\xf6\xa5\x04\xa0\x73\x69\ +\xdf\x9d\xac\x9f\x7e\x03\x05\x60\xed\xea\ +\x00\x00\x08\x05\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\ +\x33\x39\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\ +\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\ +\x33\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x52\x4f\x49\x5f\x70\x6f\x69\ +\x6e\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x33\x30\x34\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x3e\x3c\x2f\x64\x63\x3a\x74\x69\x74\x6c\x65\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\x6f\x72\x6b\x3e\x0a\x20\x20\ +\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x3c\ +\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\x3e\x0a\x20\x20\x3c\x64\x65\ +\x66\x73\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x64\x65\x66\x73\ +\x33\x30\x34\x33\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x73\x6f\x64\x69\ +\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x0a\x20\ +\x20\x20\x20\x20\x70\x61\x67\x65\x63\x6f\x6c\x6f\x72\x3d\x22\x23\ +\x66\x66\x66\x66\x66\x66\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\ +\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\x22\x23\x36\x36\x36\x36\x36\ +\x36\x22\x0a\x20\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x6f\x70\ +\x61\x63\x69\x74\x79\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x6f\ +\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\ +\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x72\x69\x64\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\ +\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x70\x61\x67\x65\x73\x68\x61\x64\x6f\x77\x3d\x22\x32\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x36\x36\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\x69\x67\x68\x74\x3d\x22\x37\ +\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6e\x61\x6d\ +\x65\x64\x76\x69\x65\x77\x33\x30\x34\x31\x22\x0a\x20\x20\x20\x20\ +\x20\x73\x68\x6f\x77\x67\x72\x69\x64\x3d\x22\x66\x61\x6c\x73\x65\ +\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x7a\x6f\x6f\x6d\x3d\x22\x33\x2e\x36\x38\x37\x35\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\ +\x34\x33\x2e\x38\x31\x35\x31\x34\x33\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x79\x3d\x22\x31\x37\x2e\ +\x31\x30\x31\x32\x37\x39\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x78\x3d\x22\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x79\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\ +\x6f\x77\x2d\x6d\x61\x78\x69\x6d\x69\x7a\x65\x64\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x75\x72\x72\x65\x6e\x74\x2d\x6c\x61\x79\x65\x72\x3d\x22\x73\x76\ +\x67\x33\x30\x33\x39\x22\x20\x2f\x3e\x0a\x20\x20\x3c\x70\x61\x74\ +\x68\x0a\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\ +\x6c\x6c\x3a\x23\x66\x33\x66\x33\x66\x33\x3b\x66\x69\x6c\x6c\x2d\ +\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\ +\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x77\x69\x64\x74\x68\x3a\x31\x2e\x33\x36\x36\x30\x30\x30\x30\x36\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\ +\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\ +\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x70\x61\x69\x6e\ +\x74\x2d\x6f\x72\x64\x65\x72\x3a\x6e\x6f\x72\x6d\x61\x6c\x22\x0a\ +\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\x35\x2e\x32\x30\x34\ +\x39\x37\x35\x2c\x38\x2e\x37\x39\x36\x32\x31\x31\x20\x76\x20\x33\ +\x2e\x33\x35\x37\x34\x32\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\ +\x20\x48\x20\x31\x31\x2e\x33\x32\x34\x31\x31\x36\x20\x37\x2e\x34\ +\x34\x33\x32\x35\x36\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\ +\x32\x20\x68\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x31\x20\x33\x2e\ +\x38\x38\x30\x38\x35\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\ +\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\x20\x68\x20\x33\x2e\x38\ +\x38\x32\x38\x31\x33\x20\x56\x20\x32\x32\x2e\x32\x32\x37\x38\x35\ +\x32\x20\x31\x38\x2e\x38\x37\x30\x34\x33\x20\x68\x20\x33\x2e\x38\ +\x38\x30\x38\x35\x39\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x20\x56\ +\x20\x31\x35\x2e\x35\x31\x33\x30\x30\x38\x20\x48\x20\x32\x32\x2e\ +\x39\x36\x38\x36\x34\x37\x20\x31\x39\x2e\x30\x38\x37\x37\x38\x38\ +\x20\x56\x20\x31\x32\x2e\x31\x35\x33\x36\x33\x33\x20\x38\x2e\x37\ +\x39\x36\x32\x31\x31\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\ +\x3d\x22\x72\x65\x63\x74\x38\x38\x38\x2d\x36\x31\x2d\x36\x2d\x39\ +\x2d\x37\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\ +\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\ +\x76\x67\x3e\x0a\ +\x00\x00\x15\x22\ +\x3c\ +\x3f\x78\x6d\x6c\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x31\x2e\ +\x30\x22\x20\x65\x6e\x63\x6f\x64\x69\x6e\x67\x3d\x22\x55\x54\x46\ +\x2d\x38\x22\x20\x73\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x3d\x22\ +\x6e\x6f\x22\x3f\x3e\x0a\x3c\x21\x2d\x2d\x20\x43\x72\x65\x61\x74\ +\x65\x64\x20\x77\x69\x74\x68\x20\x49\x6e\x6b\x73\x63\x61\x70\x65\ +\x20\x28\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x29\x20\x2d\x2d\x3e\x0a\ +\x0a\x3c\x73\x76\x67\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x64\ +\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\x6f\ +\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\x31\ +\x2e\x31\x2f\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x63\x63\ +\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x63\x72\x65\x61\x74\x69\x76\ +\x65\x63\x6f\x6d\x6d\x6f\x6e\x73\x2e\x6f\x72\x67\x2f\x6e\x73\x23\ +\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\ +\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\ +\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x76\x67\x3d\x22\x68\x74\x74\x70\x3a\ +\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x32\x30\x30\ +\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3d\ +\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\ +\x72\x67\x2f\x32\x30\x30\x30\x2f\x73\x76\x67\x22\x0a\x20\x20\x20\ +\x78\x6d\x6c\x6e\x73\x3a\x73\x6f\x64\x69\x70\x6f\x64\x69\x3d\x22\ +\x68\x74\x74\x70\x3a\x2f\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2e\ +\x73\x6f\x75\x72\x63\x65\x66\x6f\x72\x67\x65\x2e\x6e\x65\x74\x2f\ +\x44\x54\x44\x2f\x73\x6f\x64\x69\x70\x6f\x64\x69\x2d\x30\x2e\x64\ +\x74\x64\x22\x0a\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\ +\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x2f\x6e\ +\x61\x6d\x65\x73\x70\x61\x63\x65\x73\x2f\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x22\x0a\x20\x20\x20\x69\x64\x3d\x22\x73\x76\x67\x33\x30\ +\x33\x39\x22\x0a\x20\x20\x20\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\ +\x31\x2e\x31\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x76\x65\x72\x73\x69\x6f\x6e\x3d\x22\x30\x2e\x39\x32\x2e\x31\ +\x20\x72\x31\x35\x33\x37\x31\x22\x0a\x20\x20\x20\x77\x69\x64\x74\ +\x68\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\x33\x35\x22\x0a\x20\x20\ +\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x33\x34\x2e\x31\x33\x33\x33\ +\x33\x35\x22\x0a\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\ +\x64\x6f\x63\x6e\x61\x6d\x65\x3d\x22\x4c\x43\x53\x5f\x70\x6f\x69\ +\x6e\x74\x65\x72\x2e\x73\x76\x67\x22\x0a\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x78\x64\x70\ +\x69\x3d\x22\x36\x37\x22\x0a\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x3a\x65\x78\x70\x6f\x72\x74\x2d\x79\x64\x70\x69\x3d\x22\ +\x36\x37\x22\x3e\x0a\x20\x20\x3c\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x6d\x65\x74\x61\x64\x61\ +\x74\x61\x33\x30\x34\x35\x22\x3e\x0a\x20\x20\x20\x20\x3c\x72\x64\ +\x66\x3a\x52\x44\x46\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x63\x63\ +\x3a\x57\x6f\x72\x6b\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x72\ +\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x3e\x0a\x20\x20\x20\ +\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\ +\x69\x6d\x61\x67\x65\x2f\x73\x76\x67\x2b\x78\x6d\x6c\x3c\x2f\x64\ +\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x20\x3c\x64\x63\x3a\x74\x79\x70\x65\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x20\x20\x20\x20\x72\x64\x66\x3a\x72\x65\x73\x6f\x75\x72\ +\x63\x65\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\ +\x6f\x72\x67\x2f\x64\x63\x2f\x64\x63\x6d\x69\x74\x79\x70\x65\x2f\ +\x53\x74\x69\x6c\x6c\x49\x6d\x61\x67\x65\x22\x20\x2f\x3e\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x20\x3c\x64\x63\x3a\x74\x69\x74\x6c\x65\ +\x20\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x63\x63\x3a\x57\ +\x6f\x72\x6b\x3e\x0a\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\ +\x44\x46\x3e\x0a\x20\x20\x3c\x2f\x6d\x65\x74\x61\x64\x61\x74\x61\ +\x3e\x0a\x20\x20\x3c\x64\x65\x66\x73\x0a\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x64\x65\x66\x73\x33\x30\x34\x33\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x61\x6d\x65\ +\x64\x76\x69\x65\x77\x0a\x20\x20\x20\x20\x20\x70\x61\x67\x65\x63\ +\x6f\x6c\x6f\x72\x3d\x22\x23\x66\x66\x66\x66\x66\x66\x22\x0a\x20\ +\x20\x20\x20\x20\x62\x6f\x72\x64\x65\x72\x63\x6f\x6c\x6f\x72\x3d\ +\x22\x23\x36\x36\x36\x36\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x62\ +\x6f\x72\x64\x65\x72\x6f\x70\x61\x63\x69\x74\x79\x3d\x22\x31\x22\ +\x0a\x20\x20\x20\x20\x20\x6f\x62\x6a\x65\x63\x74\x74\x6f\x6c\x65\ +\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x67\x72\x69\x64\x74\x6f\x6c\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\ +\x30\x22\x0a\x20\x20\x20\x20\x20\x67\x75\x69\x64\x65\x74\x6f\x6c\ +\x65\x72\x61\x6e\x63\x65\x3d\x22\x31\x30\x22\x0a\x20\x20\x20\x20\ +\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x6f\x70\ +\x61\x63\x69\x74\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\ +\x6e\x6b\x73\x63\x61\x70\x65\x3a\x70\x61\x67\x65\x73\x68\x61\x64\ +\x6f\x77\x3d\x22\x32\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\ +\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x77\x69\x64\x74\ +\x68\x3d\x22\x31\x33\x36\x36\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x68\x65\ +\x69\x67\x68\x74\x3d\x22\x37\x30\x38\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x64\x3d\x22\x6e\x61\x6d\x65\x64\x76\x69\x65\x77\x33\x30\x34\ +\x31\x22\x0a\x20\x20\x20\x20\x20\x73\x68\x6f\x77\x67\x72\x69\x64\ +\x3d\x22\x66\x61\x6c\x73\x65\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x7a\x6f\x6f\x6d\x3d\x22\x35\x2e\x32\ +\x31\x34\x39\x31\x32\x35\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x78\x3d\x22\x2d\x33\x2e\x39\x31\x35\ +\x38\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x3a\x63\x79\x3d\x22\x31\x36\x2e\x38\x34\x32\x31\x38\x35\x22\x0a\ +\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\ +\x6e\x64\x6f\x77\x2d\x78\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\ +\x79\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\ +\x61\x70\x65\x3a\x77\x69\x6e\x64\x6f\x77\x2d\x6d\x61\x78\x69\x6d\ +\x69\x7a\x65\x64\x3d\x22\x31\x22\x0a\x20\x20\x20\x20\x20\x69\x6e\ +\x6b\x73\x63\x61\x70\x65\x3a\x63\x75\x72\x72\x65\x6e\x74\x2d\x6c\ +\x61\x79\x65\x72\x3d\x22\x73\x76\x67\x33\x30\x33\x39\x22\x20\x2f\ +\x3e\x0a\x20\x20\x3c\x67\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\ +\x67\x34\x35\x30\x34\x22\x0a\x20\x20\x20\x20\x20\x74\x72\x61\x6e\ +\x73\x66\x6f\x72\x6d\x3d\x22\x6d\x61\x74\x72\x69\x78\x28\x30\x2e\ +\x38\x31\x34\x35\x30\x34\x30\x32\x2c\x30\x2c\x30\x2c\x30\x2e\x38\ +\x31\x34\x35\x30\x34\x30\x32\x2c\x33\x2e\x32\x31\x38\x32\x34\x30\ +\x38\x2c\x33\x2e\x31\x39\x36\x32\x31\x37\x32\x29\x22\x3e\x0a\x20\ +\x20\x20\x20\x3c\x72\x65\x63\x74\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x74\x72\x61\x6e\x73\x66\x6f\x72\x6d\x3d\x22\x72\x6f\x74\x61\x74\ +\x65\x28\x34\x35\x2e\x36\x33\x38\x32\x30\x34\x29\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x72\x79\x3d\x22\x31\x2e\x31\x37\x33\x34\x35\ +\x33\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x79\x3d\x22\x2d\x36\ +\x2e\x39\x35\x39\x31\x38\x30\x38\x22\x0a\x20\x20\x20\x20\x20\x20\ +\x20\x78\x3d\x22\x31\x37\x2e\x34\x37\x36\x39\x31\x35\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x68\x65\x69\x67\x68\x74\x3d\x22\x31\x33\ +\x2e\x32\x31\x33\x38\x39\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x77\x69\x64\x74\x68\x3d\x22\x31\x33\x2e\x32\x31\x33\x38\x39\x33\ +\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\x65\x63\ +\x74\x33\x38\x31\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\ +\x79\x6c\x65\x3d\x22\x63\x6f\x6c\x6f\x72\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x64\x69\x73\x70\x6c\x61\x79\x3a\x69\x6e\x6c\x69\x6e\ +\x65\x3b\x6f\x76\x65\x72\x66\x6c\x6f\x77\x3a\x76\x69\x73\x69\x62\ +\x6c\x65\x3b\x76\x69\x73\x69\x62\x69\x6c\x69\x74\x79\x3a\x76\x69\ +\x73\x69\x62\x6c\x65\x3b\x66\x69\x6c\x6c\x3a\x23\x66\x66\x30\x30\ +\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x66\x69\x6c\x6c\x2d\x72\x75\x6c\x65\x3a\x6e\x6f\x6e\x7a\ +\x65\x72\x6f\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\ +\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\ +\x30\x2e\x33\x37\x37\x35\x33\x39\x38\x31\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\ +\x72\x6c\x69\x6d\x69\x74\x3a\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\ +\x64\x61\x73\x68\x61\x72\x72\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x6f\x66\x66\x73\x65\x74\ +\x3a\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\ +\x79\x3a\x31\x3b\x6d\x61\x72\x6b\x65\x72\x3a\x6e\x6f\x6e\x65\x3b\ +\x65\x6e\x61\x62\x6c\x65\x2d\x62\x61\x63\x6b\x67\x72\x6f\x75\x6e\ +\x64\x3a\x61\x63\x63\x75\x6d\x75\x6c\x61\x74\x65\x22\x20\x2f\x3e\ +\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\x20\x20\x20\x20\ +\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\ +\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\x61\x73\x73\x61\x22\x0a\ +\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\ +\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\ +\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\ +\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\x35\x2d\x30\x22\x0a\x20\ +\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\x33\x2e\x30\x32\ +\x34\x34\x30\x35\x2c\x31\x39\x2e\x35\x38\x34\x38\x35\x35\x20\x63\ +\x20\x2d\x31\x2e\x39\x34\x39\x31\x38\x33\x2c\x30\x2e\x32\x31\x34\ +\x39\x34\x34\x20\x2d\x33\x2e\x32\x34\x38\x39\x38\x36\x2c\x2d\x32\ +\x2e\x34\x35\x31\x39\x39\x37\x20\x2d\x34\x2e\x31\x30\x30\x35\x30\ +\x38\x2c\x2d\x34\x2e\x32\x31\x38\x34\x37\x33\x20\x2d\x30\x2e\x34\ +\x34\x37\x31\x35\x2c\x2d\x30\x2e\x39\x32\x37\x36\x30\x38\x20\x30\ +\x2e\x32\x37\x30\x35\x33\x34\x2c\x2d\x32\x2e\x32\x37\x35\x37\x38\ +\x33\x20\x2d\x30\x2e\x33\x39\x31\x37\x32\x36\x2c\x2d\x33\x2e\x30\ +\x36\x34\x33\x33\x32\x20\x2d\x30\x2e\x38\x32\x39\x38\x30\x37\x2c\ +\x2d\x30\x2e\x39\x38\x38\x30\x34\x39\x20\x2d\x33\x2e\x33\x39\x36\ +\x37\x30\x32\x2c\x30\x2e\x31\x30\x37\x39\x35\x36\x20\x2d\x33\x2e\ +\x36\x39\x37\x30\x33\x37\x2c\x2d\x31\x2e\x31\x34\x36\x38\x38\x33\ +\x20\x2d\x30\x2e\x32\x38\x37\x36\x33\x33\x2c\x2d\x31\x2e\x32\x30\ +\x31\x37\x36\x35\x36\x20\x31\x2e\x34\x32\x34\x31\x34\x34\x2c\x2d\ +\x32\x2e\x36\x30\x30\x36\x30\x36\x35\x20\x32\x2e\x36\x35\x39\x37\ +\x31\x35\x2c\x2d\x32\x2e\x35\x38\x32\x33\x37\x37\x31\x20\x31\x2e\ +\x38\x30\x31\x38\x37\x37\x2c\x30\x2e\x30\x32\x36\x35\x38\x35\x20\ +\x32\x2e\x37\x36\x30\x37\x30\x31\x2c\x32\x2e\x33\x38\x33\x31\x31\ +\x39\x31\x20\x33\x2e\x37\x36\x35\x39\x36\x36\x2c\x33\x2e\x38\x37\ +\x38\x37\x35\x31\x31\x20\x32\x2e\x32\x36\x35\x31\x33\x31\x2c\x33\ +\x2e\x33\x37\x30\x30\x35\x36\x20\x33\x2e\x35\x36\x38\x39\x35\x35\ +\x2c\x32\x2e\x30\x38\x37\x34\x37\x39\x20\x33\x2e\x37\x36\x35\x39\ +\x36\x35\x2c\x33\x2e\x38\x37\x38\x37\x35\x20\x30\x2e\x31\x33\x39\ +\x32\x35\x32\x2c\x31\x2e\x32\x36\x36\x31\x30\x35\x20\x2d\x30\x2e\ +\x37\x33\x36\x33\x31\x2c\x33\x2e\x31\x31\x34\x39\x34\x38\x20\x2d\ +\x32\x2e\x30\x30\x32\x33\x37\x34\x2c\x33\x2e\x32\x35\x34\x35\x36\ +\x34\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x31\x63\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\ +\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ +\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\ +\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ +\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\ +\x35\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x32\ +\x31\x2e\x36\x38\x38\x38\x39\x38\x2c\x32\x30\x2e\x34\x35\x38\x37\ +\x38\x20\x63\x20\x2d\x31\x2e\x39\x34\x39\x31\x38\x33\x2c\x30\x2e\ +\x32\x31\x34\x39\x34\x36\x20\x2d\x33\x2e\x32\x34\x38\x39\x38\x34\ +\x2c\x2d\x32\x2e\x34\x35\x31\x39\x39\x37\x20\x2d\x34\x2e\x31\x30\ +\x30\x35\x30\x38\x2c\x2d\x34\x2e\x32\x31\x38\x34\x37\x34\x20\x2d\ +\x30\x2e\x34\x34\x37\x31\x35\x32\x2c\x2d\x30\x2e\x39\x32\x37\x36\ +\x30\x33\x20\x30\x2e\x32\x37\x30\x35\x32\x39\x2c\x2d\x32\x2e\x32\ +\x37\x35\x37\x37\x38\x20\x2d\x30\x2e\x33\x39\x31\x37\x32\x38\x2c\ +\x2d\x33\x2e\x30\x36\x34\x33\x32\x37\x20\x2d\x30\x2e\x38\x32\x39\ +\x38\x31\x2c\x2d\x30\x2e\x39\x38\x38\x30\x34\x39\x20\x2d\x33\x2e\ +\x33\x39\x36\x37\x30\x34\x2c\x30\x2e\x31\x30\x37\x39\x35\x36\x20\ +\x2d\x33\x2e\x36\x39\x37\x30\x33\x36\x2c\x2d\x31\x2e\x31\x34\x36\ +\x38\x38\x34\x20\x2d\x30\x2e\x32\x38\x37\x36\x33\x35\x2c\x2d\x31\ +\x2e\x32\x30\x31\x37\x36\x34\x20\x31\x2e\x34\x32\x34\x31\x34\x33\ +\x2c\x2d\x32\x2e\x36\x30\x30\x36\x30\x35\x39\x20\x32\x2e\x36\x35\ +\x39\x37\x31\x35\x2c\x2d\x32\x2e\x35\x38\x32\x33\x37\x36\x37\x20\ +\x31\x2e\x38\x30\x31\x38\x37\x36\x2c\x30\x2e\x30\x32\x36\x35\x38\ +\x35\x20\x32\x2e\x37\x36\x30\x37\x30\x32\x2c\x32\x2e\x33\x38\x33\ +\x31\x31\x39\x37\x20\x33\x2e\x37\x36\x35\x39\x36\x37\x2c\x33\x2e\ +\x38\x37\x38\x37\x34\x39\x37\x20\x32\x2e\x32\x36\x35\x31\x32\x38\ +\x2c\x33\x2e\x33\x37\x30\x30\x35\x37\x20\x33\x2e\x35\x36\x38\x39\ +\x35\x33\x2c\x32\x2e\x30\x38\x37\x34\x37\x38\x20\x33\x2e\x37\x36\ +\x35\x39\x36\x36\x2c\x33\x2e\x38\x37\x38\x37\x35\x31\x20\x30\x2e\ +\x31\x33\x39\x32\x35\x2c\x31\x2e\x32\x36\x36\x31\x30\x31\x20\x2d\ +\x30\x2e\x37\x33\x36\x33\x31\x32\x2c\x33\x2e\x31\x31\x34\x39\x34\ +\x36\x20\x2d\x32\x2e\x30\x30\x32\x33\x37\x36\x2c\x33\x2e\x32\x35\ +\x34\x35\x36\x31\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\ +\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x35\x35\x64\x34\ +\x30\x30\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\ +\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x34\x33\x31\x63\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\ +\x33\x30\x38\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\ +\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\ +\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\ +\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\ +\x61\x74\x68\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\ +\x6f\x64\x69\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\ +\x61\x61\x61\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\ +\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\ +\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\ +\x33\x38\x33\x33\x2d\x38\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\ +\x3d\x22\x6d\x20\x31\x32\x2e\x37\x39\x39\x33\x38\x38\x2c\x31\x33\ +\x2e\x36\x37\x35\x30\x32\x34\x20\x63\x20\x31\x2e\x30\x36\x35\x33\ +\x37\x33\x2c\x2d\x30\x2e\x31\x34\x34\x32\x36\x33\x20\x32\x2e\x31\ +\x36\x33\x30\x35\x35\x2c\x30\x2e\x37\x31\x31\x36\x30\x31\x20\x32\ +\x2e\x38\x32\x32\x35\x36\x37\x2c\x31\x2e\x35\x36\x30\x36\x34\x36\ +\x20\x31\x2e\x30\x31\x38\x35\x38\x33\x2c\x31\x2e\x33\x31\x31\x33\ +\x30\x37\x20\x2d\x30\x2e\x30\x35\x31\x32\x2c\x33\x2e\x37\x39\x37\ +\x35\x36\x36\x20\x31\x2e\x32\x35\x37\x30\x35\x35\x2c\x34\x2e\x38\ +\x32\x30\x30\x37\x34\x20\x31\x2e\x31\x34\x37\x34\x30\x38\x2c\x30\ +\x2e\x38\x39\x36\x37\x39\x37\x20\x33\x2e\x37\x39\x34\x33\x33\x35\ +\x2c\x2d\x31\x2e\x32\x38\x39\x36\x31\x39\x20\x34\x2e\x33\x36\x38\ +\x36\x31\x33\x2c\x30\x2e\x30\x34\x38\x36\x36\x20\x30\x2e\x38\x35\ +\x33\x37\x32\x37\x2c\x31\x2e\x39\x38\x39\x35\x20\x2d\x32\x2e\x32\ +\x35\x37\x33\x37\x38\x2c\x34\x2e\x37\x32\x39\x34\x32\x32\x20\x2d\ +\x34\x2e\x34\x32\x32\x31\x34\x32\x2c\x34\x2e\x37\x35\x36\x38\x31\ +\x35\x20\x2d\x31\x2e\x38\x30\x31\x39\x32\x39\x2c\x30\x2e\x30\x32\ +\x32\x38\x20\x2d\x33\x2e\x39\x31\x33\x38\x39\x36\x2c\x2d\x32\x2e\ +\x30\x36\x38\x30\x33\x31\x20\x2d\x33\x2e\x37\x37\x39\x39\x35\x38\ +\x2c\x2d\x33\x2e\x38\x36\x35\x31\x31\x38\x20\x30\x2e\x37\x34\x31\ +\x30\x32\x36\x2c\x2d\x39\x2e\x39\x34\x32\x36\x33\x37\x20\x2d\x33\ +\x2e\x38\x35\x39\x39\x38\x32\x34\x2c\x2d\x32\x2e\x30\x36\x34\x38\ +\x32\x33\x20\x2d\x33\x2e\x37\x37\x39\x39\x35\x37\x32\x2c\x2d\x33\ +\x2e\x38\x36\x35\x31\x31\x37\x20\x30\x2e\x30\x36\x38\x37\x34\x38\ +\x2c\x2d\x31\x2e\x35\x34\x36\x35\x33\x37\x20\x31\x2e\x39\x30\x31\ +\x31\x31\x32\x32\x2c\x2d\x33\x2e\x32\x33\x34\x38\x37\x39\x20\x33\ +\x2e\x35\x33\x33\x38\x32\x32\x32\x2c\x2d\x33\x2e\x34\x35\x35\x39\ +\x36\x20\x7a\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x74\x79\x6c\ +\x65\x3d\x22\x66\x69\x6c\x6c\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\ +\x66\x69\x6c\x6c\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\ +\x74\x72\x6f\x6b\x65\x3a\x23\x30\x30\x30\x30\x30\x30\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x77\x69\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\ +\x39\x32\x36\x37\x39\x70\x78\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\ +\x69\x6e\x65\x63\x61\x70\x3a\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\ +\x6b\x65\x2d\x6c\x69\x6e\x65\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\ +\x72\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\ +\x3a\x31\x22\x20\x2f\x3e\x0a\x20\x20\x20\x20\x3c\x70\x61\x74\x68\ +\x0a\x20\x20\x20\x20\x20\x20\x20\x73\x6f\x64\x69\x70\x6f\x64\x69\ +\x3a\x6e\x6f\x64\x65\x74\x79\x70\x65\x73\x3d\x22\x61\x61\x61\x61\ +\x61\x73\x73\x61\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x69\x6e\x6b\ +\x73\x63\x61\x70\x65\x3a\x63\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\ +\x63\x75\x72\x76\x61\x74\x75\x72\x65\x3d\x22\x30\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x70\x61\x74\x68\x33\x38\x33\ +\x33\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x64\x3d\x22\x6d\x20\x31\ +\x34\x2e\x39\x31\x38\x32\x30\x39\x2c\x31\x32\x2e\x31\x35\x34\x31\ +\x32\x35\x20\x63\x20\x31\x2e\x30\x36\x35\x33\x37\x34\x2c\x2d\x30\ +\x2e\x31\x34\x34\x32\x35\x39\x20\x32\x2e\x31\x36\x33\x30\x35\x33\ +\x2c\x30\x2e\x37\x31\x31\x36\x30\x32\x20\x32\x2e\x38\x32\x32\x35\ +\x36\x34\x2c\x31\x2e\x35\x36\x30\x36\x34\x36\x20\x31\x2e\x30\x31\ +\x38\x35\x38\x35\x2c\x31\x2e\x33\x31\x31\x33\x30\x36\x20\x2d\x30\ +\x2e\x30\x35\x31\x32\x2c\x33\x2e\x37\x39\x37\x35\x36\x37\x20\x31\ +\x2e\x32\x35\x37\x30\x35\x37\x2c\x34\x2e\x38\x32\x30\x30\x37\x34\ +\x20\x31\x2e\x31\x34\x37\x34\x30\x39\x2c\x30\x2e\x38\x39\x36\x37\ +\x39\x38\x20\x33\x2e\x37\x39\x34\x33\x33\x36\x2c\x2d\x31\x2e\x32\ +\x38\x39\x36\x31\x38\x20\x34\x2e\x33\x36\x38\x36\x31\x34\x2c\x30\ +\x2e\x30\x34\x38\x36\x36\x20\x30\x2e\x38\x35\x33\x37\x32\x37\x2c\ +\x31\x2e\x39\x38\x39\x34\x39\x39\x20\x2d\x32\x2e\x32\x35\x37\x33\ +\x37\x38\x2c\x34\x2e\x37\x32\x39\x34\x31\x39\x20\x2d\x34\x2e\x34\ +\x32\x32\x31\x34\x31\x2c\x34\x2e\x37\x35\x36\x38\x31\x31\x20\x2d\ +\x31\x2e\x38\x30\x31\x39\x33\x2c\x30\x2e\x30\x32\x32\x37\x39\x20\ +\x2d\x33\x2e\x39\x31\x33\x38\x39\x34\x2c\x2d\x32\x2e\x30\x36\x38\ +\x30\x32\x39\x20\x2d\x33\x2e\x37\x37\x39\x39\x36\x2c\x2d\x33\x2e\ +\x38\x36\x35\x31\x31\x38\x20\x30\x2e\x37\x34\x31\x30\x32\x37\x2c\ +\x2d\x39\x2e\x39\x34\x32\x36\x33\x35\x32\x20\x2d\x33\x2e\x38\x35\ +\x39\x39\x38\x32\x2c\x2d\x32\x2e\x30\x36\x34\x38\x32\x31\x20\x2d\ +\x33\x2e\x37\x37\x39\x39\x35\x36\x2c\x2d\x33\x2e\x38\x36\x35\x31\ +\x31\x37\x20\x30\x2e\x30\x36\x38\x37\x35\x2c\x2d\x31\x2e\x35\x34\ +\x36\x35\x33\x35\x20\x31\x2e\x39\x30\x31\x31\x31\x32\x2c\x2d\x33\ +\x2e\x32\x33\x34\x38\x37\x38\x20\x33\x2e\x35\x33\x33\x38\x32\x32\ +\x2c\x2d\x33\x2e\x34\x35\x35\x39\x36\x31\x20\x7a\x22\x0a\x20\x20\ +\x20\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\ +\x3a\x23\x32\x31\x34\x34\x37\x38\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\ +\x61\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\ +\x30\x30\x30\x30\x66\x66\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\ +\x64\x74\x68\x3a\x30\x2e\x33\x30\x38\x39\x32\x36\x37\x39\x70\x78\ +\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\x63\x61\x70\x3a\ +\x62\x75\x74\x74\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6c\x69\x6e\x65\ +\x6a\x6f\x69\x6e\x3a\x6d\x69\x74\x65\x72\x3b\x73\x74\x72\x6f\x6b\ +\x65\x2d\x6f\x70\x61\x63\x69\x74\x79\x3a\x31\x22\x20\x2f\x3e\x0a\ +\x20\x20\x3c\x2f\x67\x3e\x0a\x20\x20\x3c\x70\x61\x74\x68\x0a\x20\ +\x20\x20\x20\x20\x73\x74\x79\x6c\x65\x3d\x22\x66\x69\x6c\x6c\x3a\ +\x23\x66\x33\x66\x33\x66\x33\x3b\x66\x69\x6c\x6c\x2d\x6f\x70\x61\ +\x63\x69\x74\x79\x3a\x31\x3b\x73\x74\x72\x6f\x6b\x65\x3a\x23\x30\ +\x30\x30\x30\x30\x30\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x77\x69\x64\ +\x74\x68\x3a\x31\x2e\x33\x36\x36\x30\x30\x30\x30\x36\x3b\x73\x74\ +\x72\x6f\x6b\x65\x2d\x6d\x69\x74\x65\x72\x6c\x69\x6d\x69\x74\x3a\ +\x34\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x64\x61\x73\x68\x61\x72\x72\ +\x61\x79\x3a\x6e\x6f\x6e\x65\x3b\x73\x74\x72\x6f\x6b\x65\x2d\x6f\ +\x70\x61\x63\x69\x74\x79\x3a\x31\x3b\x70\x61\x69\x6e\x74\x2d\x6f\ +\x72\x64\x65\x72\x3a\x6e\x6f\x72\x6d\x61\x6c\x22\x0a\x20\x20\x20\ +\x20\x20\x64\x3d\x22\x6d\x20\x31\x35\x2e\x32\x30\x34\x39\x37\x35\ +\x2c\x38\x2e\x37\x39\x36\x32\x31\x31\x20\x76\x20\x33\x2e\x33\x35\ +\x37\x34\x32\x32\x20\x33\x2e\x33\x35\x39\x33\x37\x35\x20\x48\x20\ +\x31\x31\x2e\x33\x32\x34\x31\x31\x36\x20\x37\x2e\x34\x34\x33\x32\ +\x35\x36\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\x32\x20\x68\ +\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x31\x20\x33\x2e\x38\x38\x30\ +\x38\x35\x39\x20\x76\x20\x33\x2e\x33\x35\x37\x34\x32\x32\x20\x33\ +\x2e\x33\x35\x39\x33\x37\x35\x20\x68\x20\x33\x2e\x38\x38\x32\x38\ +\x31\x33\x20\x56\x20\x32\x32\x2e\x32\x32\x37\x38\x35\x32\x20\x31\ +\x38\x2e\x38\x37\x30\x34\x33\x20\x68\x20\x33\x2e\x38\x38\x30\x38\ +\x35\x39\x20\x33\x2e\x38\x38\x30\x38\x35\x39\x20\x56\x20\x31\x35\ +\x2e\x35\x31\x33\x30\x30\x38\x20\x48\x20\x32\x32\x2e\x39\x36\x38\ +\x36\x34\x37\x20\x31\x39\x2e\x30\x38\x37\x37\x38\x38\x20\x56\x20\ +\x31\x32\x2e\x31\x35\x33\x36\x33\x33\x20\x38\x2e\x37\x39\x36\x32\ +\x31\x31\x20\x5a\x22\x0a\x20\x20\x20\x20\x20\x69\x64\x3d\x22\x72\ +\x65\x63\x74\x38\x38\x38\x2d\x36\x31\x2d\x36\x2d\x39\x2d\x37\x22\ +\x0a\x20\x20\x20\x20\x20\x69\x6e\x6b\x73\x63\x61\x70\x65\x3a\x63\ +\x6f\x6e\x6e\x65\x63\x74\x6f\x72\x2d\x63\x75\x72\x76\x61\x74\x75\ +\x72\x65\x3d\x22\x30\x22\x20\x2f\x3e\x0a\x3c\x2f\x73\x76\x67\x3e\ +\x0a\ " qt_resource_name = b"\ \x00\x07\ -\x07\x3b\xe0\xb3\ -\x00\x70\ -\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ -\x00\x07\ \x07\x60\x5a\x22\ \x00\x70\ \x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\ -\x00\x05\ -\x00\x6f\xa6\x53\ -\x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x73\ -\x00\x0f\ -\x04\x0a\xbe\x87\ -\x00\x52\ -\x00\x4f\x00\x49\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0f\ -\x08\x15\x58\x47\ -\x00\x4c\ -\x00\x43\x00\x53\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x07\ +\x07\x3b\xe0\xb3\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ \x00\x21\ \x03\xbc\xd8\xde\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \ -\x00\x2c\ -\x0a\x72\x64\x07\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x39\ -\x04\xc8\xa7\xe7\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x31\ +\x08\xcd\x14\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x61\ -\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2d\ -\x01\xf6\x20\xc7\ +\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x35\ +\x01\x5a\xa1\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x0a\x7c\xc7\x87\ +\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x37\ +\x09\x72\x22\x47\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x77\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x33\ -\x0d\x1b\x39\x27\ +\x00\x5f\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x63\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x5f\x00\x63\x00\x68\x00\x61\x00\x6e\ +\x00\x67\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x0b\x5f\xf5\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x2a\ -\x01\x2c\xbe\x27\ +\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3d\ +\x0b\x0c\x28\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x68\x00\x6f\x00\x6d\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3b\ -\x05\x89\xb6\xe7\ +\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\x00\x72\x00\x61\x00\x6c\ +\x00\x5f\x00\x6c\x00\x69\x00\x62\x00\x72\x00\x61\x00\x72\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2b\ +\x0b\x0b\x11\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x76\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ -\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x37\ -\x09\x72\x22\x47\ +\x00\x5f\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x31\ +\x0b\x10\xd2\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x63\x00\x6f\x00\x76\x00\x65\x00\x72\x00\x5f\x00\x63\x00\x68\x00\x61\x00\x6e\ -\x00\x67\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3a\ -\x08\x52\x72\x67\ +\x00\x5f\x00\x72\x00\x65\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x33\ +\x08\x31\xe6\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ -\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2c\ -\x09\x95\x7c\x87\ +\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x32\ +\x03\xcc\xbb\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x00\xfe\x9b\xa7\ +\x00\x5f\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x33\ +\x02\x86\x46\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x5f\x00\x64\x00\x69\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ \x00\x3a\ \x0a\x7a\x16\x07\ \x00\x73\ @@ -23603,131 +23695,140 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x74\x00\x75\x00\x72\x00\x65\ \x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x30\ -\x03\xf4\xa6\x67\ +\x00\x33\ +\x0c\x3f\xc2\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3d\ -\x0a\x2f\xdc\xc7\ +\x00\x5f\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x61\x00\x74\x00\x38\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x09\ +\x0f\xa8\x87\xa7\ +\x00\x67\ +\x00\x75\x00\x69\x00\x64\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x38\ +\x0c\x5f\xd5\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ -\x00\x64\x00\x69\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3c\ -\x04\xa6\x91\x27\ +\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x75\x00\x64\x00\x5f\x00\x6d\x00\x61\x00\x73\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x5f\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3a\ +\x0b\xe7\xf2\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ -\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x30\ -\x09\x73\xbf\x47\ +\x00\x5f\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\ +\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x45\ +\x03\x19\xe7\x47\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x08\ -\x0c\x33\x57\x07\ -\x00\x68\ -\x00\x65\x00\x6c\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x35\ -\x0d\x30\x6f\x07\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x63\x00\x75\x00\x6d\x00\x75\x00\x6c\x00\x61\x00\x74\ +\x00\x69\x00\x76\x00\x65\x00\x5f\x00\x73\x00\x74\x00\x72\x00\x65\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x08\x72\x6e\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x63\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x67\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x06\x9a\x7d\x47\ +\x00\x5f\x00\x72\x00\x67\x00\x62\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x37\ +\x06\x63\x81\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x49\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x3a\ -\x0a\x7e\x58\x47\ +\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\ +\x00\x63\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x34\ +\x0b\x58\x32\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ -\x00\x73\x00\x69\x00\x65\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x0b\x5f\xf5\xc7\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x32\ +\x01\xae\xc7\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x08\x3e\x26\x67\ +\x00\x5f\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x63\x00\x65\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x32\ +\x07\x2c\x8e\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x35\ -\x00\x7f\x00\xe7\ +\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x3c\ +\x09\x49\x98\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x65\x00\x72\x00\x67\x00\x65\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2c\ -\x0a\x73\xf2\x07\ +\x00\x5f\x00\x4c\x00\x43\x00\x53\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x73\ +\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x07\xf0\x2f\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x66\x00\x69\x00\x74\x00\x5f\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x33\ -\x0c\x3f\xc2\x67\ +\x08\x3e\x26\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6c\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x61\x00\x74\x00\x38\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\ \x00\x76\x00\x67\ -\x00\x35\ -\x02\x01\x3b\xe7\ +\x00\x3c\ +\x0f\xbb\x15\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x05\xfb\x52\x67\ +\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x5f\ +\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x29\ +\x00\x30\x94\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\x5f\x00\x62\x00\x79\x00\x5f\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x2f\ -\x0d\x9b\xac\xc7\ +\x00\x5f\x00\x72\x00\x75\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x36\ +\x03\xbd\xf7\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x35\ -\x0c\x28\x19\x87\ +\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x74\x00\x75\x00\x72\ +\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3b\ +\x05\x89\xb6\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x32\ -\x03\xcc\xbb\x27\ +\x00\x5f\x00\x76\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3b\ +\x00\xf7\x85\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x70\x00\x6c\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x38\ -\x05\x98\xb9\x87\ +\x00\x5f\x00\x72\x00\x65\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x30\ +\x09\x73\xbf\x47\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x4c\x00\x43\x00\x53\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x74\ -\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x36\ +\x02\x01\xeb\x67\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\ +\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x34\ \x0f\xca\xfb\x27\ \x00\x73\ @@ -23735,13 +23836,12 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x6c\x00\x6f\x00\x67\x00\x69\x00\x6e\x00\x2e\ \x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x0b\x06\xec\x67\ +\x00\x30\ +\x09\xb7\x00\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ +\x00\x5f\x00\x6d\x00\x61\x00\x6e\x00\x75\x00\x61\x00\x6c\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x3d\ \x0b\x0c\xe5\xa7\ \x00\x73\ @@ -23749,307 +23849,297 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\x00\x72\x00\x61\x00\x6c\ \x00\x5f\x00\x6c\x00\x69\x00\x62\x00\x72\x00\x61\x00\x72\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x37\ -\x06\x63\x81\x07\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\ -\x00\x63\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x36\ -\x02\x01\xeb\x67\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\ -\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x30\ -\x09\xb7\x00\xe7\ +\x00\x32\ +\x0b\x90\x78\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x61\x00\x6e\x00\x75\x00\x61\x00\x6c\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2b\ -\x08\x09\x78\x27\ +\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x33\ +\x0d\x1b\x39\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x73\x00\x65\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x0f\ -\x08\x44\x34\x67\ -\x00\x66\ -\x00\x72\x00\x6f\x00\x6d\x00\x47\x00\x49\x00\x53\x00\x74\x00\x6f\x00\x52\x00\x53\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x32\ -\x01\xae\xc7\x27\ +\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x42\ +\x03\xe4\x77\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x6f\x00\x73\x00\x74\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x63\x00\x65\x00\x73\x00\x73\x00\x2e\x00\x73\x00\x76\ +\x00\x5f\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\ +\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2e\x00\x73\x00\x76\ \x00\x67\ -\x00\x38\ -\x0c\x5f\xd5\x87\ +\x00\x2f\ +\x0d\x85\xeb\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x75\x00\x64\x00\x5f\x00\x6d\x00\x61\x00\x73\x00\x6b\x00\x69\x00\x6e\x00\x67\x00\x5f\x00\x74\ -\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x34\ -\x0b\x25\x0c\xa7\ +\x00\x5f\x00\x67\x00\x6f\x00\x65\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x29\ +\x0e\x16\x94\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x36\ -\x07\x83\x81\x87\ +\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x02\x01\x3b\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\ -\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3b\ -\x00\xf7\x85\xe7\ +\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3c\ +\x04\xa6\x91\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x35\ -\x01\x5a\xa1\xc7\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ +\x00\x64\x00\x69\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2f\ +\x06\xff\x4b\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3c\ -\x09\x49\x98\x67\ +\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2c\ +\x0a\x72\x64\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x4c\x00\x43\x00\x53\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x73\ -\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x29\ -\x0e\x16\x94\x87\ +\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x00\x7f\x00\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x32\ -\x0c\xae\xea\xe7\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x6d\x00\x65\x00\x72\x00\x67\x00\x65\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x36\ +\x07\x83\x81\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x34\ -\x0b\x58\x32\x67\ +\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\ +\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3c\ +\x06\x49\x1a\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x36\ -\x03\xbd\xf7\x87\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ +\x00\x65\x00\x72\x00\x6f\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x30\ +\x02\x41\xc2\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x61\x00\x74\x00\x75\x00\x72\ -\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x03\xc9\x19\x87\ +\x00\x5f\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x5f\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x34\ +\x0b\x2c\xaf\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6b\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ +\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x31\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ \x00\x2d\ -\x09\x19\xff\xe7\ +\x08\x78\xe0\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6f\x00\x73\x00\x6d\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x75\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x08\ +\x0c\x33\x57\x07\ +\x00\x68\ +\x00\x65\x00\x6c\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x3d\ -\x0b\x0c\x28\xa7\ +\x03\xe9\x26\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\x00\x72\x00\x61\x00\x6c\ -\x00\x5f\x00\x6c\x00\x69\x00\x62\x00\x72\x00\x61\x00\x72\x00\x79\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x35\ -\x03\x84\xa4\x27\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ +\x00\x74\x00\x65\x00\x6d\x00\x70\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0f\ +\x08\x44\x34\x67\ +\x00\x66\ +\x00\x72\x00\x6f\x00\x6d\x00\x47\x00\x49\x00\x53\x00\x74\x00\x6f\x00\x52\x00\x53\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x33\ +\x05\xfb\x52\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x6f\x00\x72\x00\x64\x00\x65\x00\x72\x00\x5f\x00\x62\x00\x79\x00\x5f\x00\x6e\x00\x61\x00\x6d\x00\x65\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ \x00\x32\ -\x08\xc0\xeb\xc7\ +\x0c\xc2\x5d\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ \x00\x67\ -\x00\x3c\ -\x0f\xbb\x15\x07\ +\x00\x39\ +\x04\xc8\xa7\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x5f\ -\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2c\ -\x0a\x26\x7c\x67\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x77\x00\x5f\x00\x72\x00\x61\ +\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x07\x8b\xc8\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x07\x3d\x00\xc7\ +\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x42\ +\x00\x32\x99\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x6f\x00\x73\x00\x61\x00\x69\x00\x63\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x36\ -\x05\x2e\xaf\xa7\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x73\x00\x74\x00\x64\x00\x5f\x00\x64\x00\x65\x00\x76\ +\x00\x5f\x00\x73\x00\x74\x00\x72\x00\x65\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x38\ +\x05\x98\xb9\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ -\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2b\ -\x0b\x0b\x11\x07\ +\x00\x5f\x00\x4c\x00\x43\x00\x53\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x33\ +\x0a\x12\x1b\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x65\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x07\xf0\x2f\xe7\ +\x00\x5f\x00\x61\x00\x63\x00\x63\x00\x75\x00\x72\x00\x61\x00\x63\x00\x79\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x31\ +\x0b\x06\xec\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x66\x00\x69\x00\x74\x00\x5f\x00\x70\x00\x6c\x00\x6f\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x08\x72\x6e\x67\ +\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x6f\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x31\ +\x08\x14\xc3\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x67\x00\x62\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x09\ -\x0f\xa8\x87\xa7\ -\x00\x67\ -\x00\x75\x00\x69\x00\x64\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2f\ -\x03\x9c\x4c\x27\ +\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x33\ +\x04\x8b\x22\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3b\ -\x0a\x87\x1d\x47\ +\x00\x5f\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x6d\x00\x5f\x00\x66\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x74\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x3c\ +\x00\x8a\xdd\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x65\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x70\ -\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x32\ -\x0c\xc2\x5d\xe7\ +\x00\x5f\x00\x72\x00\x65\x00\x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3c\ +\x03\xd6\xc9\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x2b\ -\x04\x0c\xee\x27\ +\x00\x5f\x00\x7a\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\ +\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x36\ +\x05\x2e\xaf\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x38\ -\x08\xd6\x91\xc7\ +\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ +\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x0d\x30\x6f\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x6c\x00\x63\x00\x73\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\ -\x00\x6f\x00\x6c\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2f\ -\x06\xff\x4b\xe7\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x70\x00\x72\x00\x6f\x00\x63\x00\x65\x00\x73\x00\x73\x00\x69\x00\x6e\x00\x67\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2d\ +\x01\xf6\x20\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x34\ -\x0a\xed\xd0\x07\ +\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2a\ +\x01\x2c\xbe\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x72\x00\x75\x00\x6c\x00\x65\x00\x73\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x3a\ -\x0c\x29\x56\xc7\ +\x00\x5f\x00\x68\x00\x6f\x00\x6d\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x30\ +\x09\x3e\x1f\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x76\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\ -\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x08\x31\xe6\x67\ +\x00\x5f\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x08\x42\x8e\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x25\ -\x08\xe6\x23\x67\ +\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x30\ +\x0b\x07\xa0\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x34\ -\x00\xc8\xd6\x67\ +\x00\x5f\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2b\ +\x0b\x55\x18\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x02\x83\x9e\x27\ +\x00\x5f\x00\x62\x00\x61\x00\x74\x00\x63\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x05\x02\xfb\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x2e\ -\x07\x8b\xc8\x87\ +\x00\x5f\x00\x6e\x00\x65\x00\x69\x00\x67\x00\x68\x00\x62\x00\x6f\x00\x72\x00\x5f\x00\x70\x00\x69\x00\x78\x00\x65\x00\x6c\x00\x73\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x32\ +\x0c\xae\xea\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ \x00\x31\ -\x08\xcd\x14\x07\ +\x03\xc9\x19\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x6b\x00\x6d\x00\x65\x00\x61\x00\x6e\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ \ -\x00\x2e\ -\x09\xaf\x8e\x07\ +\x00\x39\ +\x0f\xd5\x33\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x34\ -\x0b\x2c\xaf\x27\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x72\x00\x65\x00\x73\ +\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x32\ +\x02\x74\x17\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x31\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x2b\ -\x0b\xec\x1f\x07\ +\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ +\x00\x67\ +\x00\x3b\ +\x08\x9a\x1a\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x64\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x63\x00\x6f\x00\x6d\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x6f\ +\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x3c\ \x04\x97\x38\x67\ \x00\x73\ @@ -24057,170 +24147,169 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x4c\x00\x43\x00\x53\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x52\ \x00\x4f\x00\x49\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x0d\xca\x79\x07\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ -\x00\x39\ -\x0f\xd5\x33\xe7\ -\x00\x73\ -\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ -\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x72\x00\x65\x00\x73\ -\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2f\ -\x05\x5c\x0b\x27\ +\x00\x31\ +\x07\x3d\x00\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x69\x00\x70\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x30\ -\x02\x41\xc2\x67\ +\x00\x5f\x00\x6d\x00\x6f\x00\x73\x00\x61\x00\x69\x00\x63\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x2f\ +\x0d\x9b\xac\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x5f\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x34\ -\x0b\xd0\x68\xc7\ +\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x09\xbb\x8e\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x5f\x00\x69\x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\ -\x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x0d\x36\x6d\xe7\ +\x00\x5f\x00\x70\x00\x63\x00\x61\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2b\ +\x08\x09\x78\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x30\ -\x0b\x07\xa0\xc7\ +\x00\x5f\x00\x72\x00\x65\x00\x73\x00\x65\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x0c\x28\x19\x87\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x6f\x00\x64\x00\x69\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3c\ -\x03\xd6\xc9\xc7\ +\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x35\ +\x03\x84\xa4\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x7a\x00\x6f\x00\x6e\x00\x61\x00\x6c\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\ -\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x09\xbb\x8e\x67\ +\x00\x5f\x00\x73\x00\x69\x00\x67\x00\x6e\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x6e\x00\x67\x00\x65\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x38\ +\x08\xd6\x91\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x63\x00\x61\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x30\ -\x09\x3e\x1f\xe7\ +\x00\x5f\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x5f\x00\x6c\x00\x63\x00\x73\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\ +\x00\x6f\x00\x6c\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x34\ +\x0b\x2d\x6f\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3d\ -\x03\xe9\x26\x87\ +\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x33\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x2c\ +\x0a\x73\xf2\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ -\x00\x74\x00\x65\x00\x6d\x00\x70\x00\x5f\x00\x52\x00\x4f\x00\x49\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3c\ -\x06\x49\x1a\x87\ +\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2f\ +\x03\x9c\x4c\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ -\x00\x65\x00\x72\x00\x6f\x00\x73\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x0c\xdd\xa2\x27\ +\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x5f\x00\x66\x00\x69\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3a\ +\x0c\x29\x56\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x76\x00\x65\x00\x63\x00\x74\x00\x6f\x00\x72\ +\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x32\ -\x07\x2c\x8e\x07\ +\x08\xc0\xeb\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x74\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\ +\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ \x00\x67\ \x00\x34\ -\x0b\x2d\x6f\x27\ +\x00\xc8\xd6\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x33\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ +\x00\x5f\x00\x74\x00\x68\x00\x72\x00\x65\x00\x73\x00\x68\x00\x6f\x00\x6c\x00\x64\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\ \x00\x73\x00\x76\x00\x67\ \x00\x31\ -\x0b\x10\xd2\x67\ +\x0d\x36\x6d\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x62\x00\x61\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x63\x00\x68\x00\x65\x00\x63\x00\x6b\x00\x2e\x00\x73\x00\x76\x00\x67\ \ -\x00\x2d\ -\x08\x78\xe0\x27\ +\x00\x34\ +\x0a\xed\xd0\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x75\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x72\x00\x75\x00\x6c\x00\x65\x00\x73\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x2f\ +\x05\x5c\x0b\x27\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x63\x00\x6c\x00\x69\x00\x70\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3b\ +\x0a\x87\x1d\x47\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x65\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x70\ +\x00\x6f\x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x2d\ -\x09\x10\x3d\xe7\ +\x09\x19\xff\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x6b\x00\x6d\x00\x6c\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x45\ -\x03\x19\xe7\x47\ +\x00\x5f\x00\x6f\x00\x73\x00\x6d\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2b\ +\x0b\xec\x1f\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x63\x00\x75\x00\x6d\x00\x75\x00\x6c\x00\x61\x00\x74\ -\x00\x69\x00\x76\x00\x65\x00\x5f\x00\x73\x00\x74\x00\x72\x00\x65\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\ -\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x42\ -\x00\x32\x99\x07\ +\x00\x5f\x00\x64\x00\x6f\x00\x63\x00\x6b\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2a\ +\x08\xda\xb9\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x65\x00\x74\x00\x5f\x00\x73\x00\x74\x00\x64\x00\x5f\x00\x64\x00\x65\x00\x76\ -\x00\x5f\x00\x73\x00\x74\x00\x72\x00\x65\x00\x74\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x3b\ -\x08\x9a\x1a\xc7\ +\x00\x5f\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x33\ +\x0c\xdd\xa2\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x63\x00\x6f\x00\x6d\x00\x62\x00\x69\x00\x6e\x00\x61\x00\x74\x00\x69\x00\x6f\ -\x00\x6e\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x32\ -\x02\x74\x17\x67\ +\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x25\ +\x08\xe6\x23\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x6d\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x70\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x42\ -\x03\xe4\x77\xa7\ +\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2c\ +\x0a\x26\x7c\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x61\x00\x6c\x00\x63\x00\x75\x00\x6c\x00\x61\x00\x74\x00\x65\x00\x5f\x00\x73\x00\x70\x00\x65\x00\x63\x00\x74\ -\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x69\x00\x73\x00\x74\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x73\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ -\x00\x33\ -\x02\x86\x46\x27\ +\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x3a\ +\x0a\x7e\x58\x47\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x65\x00\x6c\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ +\x00\x73\x00\x69\x00\x65\x00\x76\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2c\ +\x09\x95\x7c\x87\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x72\x00\x65\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x31\ \x03\x06\x73\x47\ \x00\x73\ @@ -24228,13 +24317,12 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x74\x00\x65\x00\x6d\x00\x70\x00\x2e\x00\x73\x00\x76\x00\x67\ \ -\x00\x32\ -\x0b\x90\x78\x87\ +\x00\x2e\ +\x00\xfe\x9b\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x73\x00\x76\ -\x00\x67\ +\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x5f\x00\x64\x00\x69\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ \x00\x3a\ \x04\xac\x4b\x67\ \x00\x73\ @@ -24242,470 +24330,496 @@ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ \x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x70\x00\x6f\ \x00\x6c\x00\x79\x00\x67\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3c\ -\x00\x8a\xdd\xc7\ +\x00\x3a\ +\x08\x52\x72\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x65\x00\x70\x00\x72\x00\x6f\x00\x6a\x00\x65\x00\x63\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\ -\x00\x72\x00\x5f\x00\x62\x00\x61\x00\x6e\x00\x64\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2e\ -\x08\x42\x8e\x67\ +\x00\x5f\x00\x73\x00\x63\x00\x61\x00\x74\x00\x74\x00\x65\x00\x72\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x5f\ +\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2b\ +\x04\x0c\xee\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x3a\ -\x0b\xe7\xf2\x67\ +\x00\x5f\x00\x6d\x00\x69\x00\x6e\x00\x75\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x30\ +\x03\xf4\xa6\x67\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x63\x00\x72\x00\x6f\x00\x73\x00\x73\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\ -\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2b\ -\x0b\x55\x18\xa7\ +\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x73\x00\x69\x00\x6e\x00\x67\x00\x6c\x00\x65\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x33\ +\x0d\xca\x79\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x62\x00\x61\x00\x74\x00\x63\x00\x68\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x2f\ -\x0d\x85\xeb\x27\ +\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ +\x00\x2d\ +\x09\x10\x3d\xe7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x67\x00\x6f\x00\x65\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x31\ -\x08\x14\xc3\x87\ +\x00\x5f\x00\x6b\x00\x6d\x00\x6c\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x2e\ +\x09\xaf\x8e\x07\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x72\x00\x61\x00\x73\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ -\ -\x00\x2a\ -\x08\xda\xb9\x07\ +\x00\x5f\x00\x72\x00\x6f\x00\x69\x00\x5f\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x33\ +\x02\x83\x9e\x27\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x70\x00\x6c\x00\x75\x00\x73\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x5f\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ +\x00\x76\x00\x67\ \x00\x33\ -\x04\x8b\x22\x27\ +\x06\x9a\x7d\x47\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x61\x00\x6e\x00\x64\x00\x6f\x00\x6d\x00\x5f\x00\x66\x00\x6f\x00\x72\x00\x65\x00\x73\x00\x74\x00\x2e\x00\x73\ +\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x49\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x2e\x00\x73\ \x00\x76\x00\x67\ -\x00\x29\ -\x00\x30\x94\xe7\ +\x00\x34\ +\x0b\x25\x0c\xa7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x72\x00\x75\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ -\x00\x33\ -\x0a\x12\x1b\xa7\ +\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x5f\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x34\ +\x0b\xd0\x68\xc7\ \x00\x73\ \x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ \x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ -\x00\x5f\x00\x61\x00\x63\x00\x63\x00\x75\x00\x72\x00\x61\x00\x63\x00\x79\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\ -\x00\x76\x00\x67\ +\x00\x5f\x00\x74\x00\x72\x00\x61\x00\x69\x00\x6e\x00\x69\x00\x6e\x00\x67\x00\x5f\x00\x69\x00\x6e\x00\x70\x00\x75\x00\x74\x00\x2e\ +\x00\x73\x00\x76\x00\x67\ +\x00\x3d\ +\x0a\x2f\xdc\xc7\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x63\x00\x6c\x00\x61\x00\x73\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x5f\ +\x00\x64\x00\x69\x00\x6c\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x31\ +\x0a\x7c\xc7\x87\ +\x00\x73\ +\x00\x65\x00\x6d\x00\x69\x00\x61\x00\x75\x00\x74\x00\x6f\x00\x6d\x00\x61\x00\x74\x00\x69\x00\x63\x00\x63\x00\x6c\x00\x61\x00\x73\ +\x00\x73\x00\x69\x00\x66\x00\x69\x00\x63\x00\x61\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\ +\x00\x5f\x00\x77\x00\x65\x00\x69\x00\x67\x00\x68\x00\x74\x00\x5f\x00\x74\x00\x6f\x00\x6f\x00\x6c\x00\x2e\x00\x73\x00\x76\x00\x67\ +\ +\x00\x0f\ +\x04\x0a\xbe\x87\ +\x00\x52\ +\x00\x4f\x00\x49\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ +\x00\x0f\ +\x08\x15\x58\x47\ +\x00\x4c\ +\x00\x43\x00\x53\x00\x5f\x00\x70\x00\x6f\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x72\x00\x2e\x00\x73\x00\x76\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ -\x00\x00\x00\x28\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x02\x00\x00\x00\x05\ -\x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x00\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x08\x09\ -\x00\x00\x00\x80\x00\x02\x00\x00\x00\x01\x00\x00\x00\x08\ -\x00\x00\x00\x28\x00\x02\x00\x00\x00\x7a\x00\x00\x00\x09\ -\x00\x00\x31\x32\x00\x01\x00\x00\x00\x01\x00\x05\x9d\xc6\ -\x00\x00\x2a\x38\x00\x00\x00\x00\x00\x01\x00\x04\xf5\xf0\ -\x00\x00\x09\xd4\x00\x01\x00\x00\x00\x01\x00\x01\x2c\x3e\ -\x00\x00\x2d\xea\x00\x00\x00\x00\x00\x01\x00\x05\x48\x01\ -\x00\x00\x1e\xc0\x00\x01\x00\x00\x00\x01\x00\x03\x7c\xff\ -\x00\x00\x1e\xc0\x00\x01\x00\x00\x00\x01\x00\x03\x83\x01\ -\x00\x00\x12\x80\x00\x01\x00\x00\x00\x01\x00\x02\x1f\xe7\ -\x00\x00\x04\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x8b\xad\ -\x00\x00\x02\xd2\x00\x01\x00\x00\x00\x01\x00\x00\x46\x59\ -\x00\x00\x12\xfc\x00\x01\x00\x00\x00\x01\x00\x02\x2b\x12\ -\x00\x00\x10\xc0\x00\x00\x00\x00\x00\x01\x00\x01\xeb\xb6\ -\x00\x00\x01\x9e\x00\x01\x00\x00\x00\x01\x00\x00\x32\x2f\ -\x00\x00\x0b\x0e\x00\x01\x00\x00\x00\x01\x00\x01\x4c\xbc\ -\x00\x00\x0f\x68\x00\x00\x00\x00\x00\x01\x00\x01\xb6\x92\ -\x00\x00\x23\x56\x00\x00\x00\x00\x00\x01\x00\x04\x0c\x32\ -\x00\x00\x2b\x3e\x00\x01\x00\x00\x00\x01\x00\x05\x16\x60\ -\x00\x00\x1f\x2e\x00\x01\x00\x00\x00\x01\x00\x03\x89\x03\ -\x00\x00\x2c\x32\x00\x01\x00\x00\x00\x01\x00\x05\x23\x73\ -\x00\x00\x2c\x9e\x00\x01\x00\x00\x00\x01\x00\x05\x2c\x74\ -\x00\x00\x29\xa8\x00\x00\x00\x00\x00\x01\x00\x04\xdf\x88\ -\x00\x00\x16\xd4\x00\x01\x00\x00\x00\x01\x00\x02\x8f\xa0\ -\x00\x00\x1a\x9c\x00\x00\x00\x00\x00\x01\x00\x03\x08\xd1\ -\x00\x00\x15\x1a\x00\x01\x00\x00\x00\x01\x00\x02\x5e\x17\ -\x00\x00\x15\x8c\x00\x01\x00\x00\x00\x01\x00\x02\x63\xe3\ -\x00\x00\x0c\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x80\xcc\ -\x00\x00\x24\xf8\x00\x00\x00\x00\x00\x01\x00\x04\x3e\x39\ -\x00\x00\x2b\xa8\x00\x01\x00\x00\x00\x01\x00\x05\x1c\xf8\ -\x00\x00\x26\x3e\x00\x01\x00\x00\x00\x01\x00\x04\x70\x65\ -\x00\x00\x05\xd0\x00\x00\x00\x00\x00\x01\x00\x00\xa6\xea\ -\x00\x00\x1b\xe6\x00\x00\x00\x00\x00\x01\x00\x03\x2c\xfd\ -\x00\x00\x30\xc6\x00\x01\x00\x00\x00\x01\x00\x05\x95\xcc\ -\x00\x00\x21\x90\x00\x01\x00\x00\x00\x01\x00\x03\xd1\x49\ -\x00\x00\x06\xb6\x00\x01\x00\x00\x00\x01\x00\x00\xb8\x35\ -\x00\x00\x2d\x70\x00\x01\x00\x00\x00\x01\x00\x05\x3e\xfe\ -\x00\x00\x01\x26\x00\x01\x00\x00\x00\x01\x00\x00\x2a\xcd\ -\x00\x00\x18\xf2\x00\x01\x00\x00\x00\x01\x00\x02\xd6\xb5\ -\x00\x00\x18\xf2\x00\x01\x00\x00\x00\x01\x00\x02\xcb\xd9\ -\x00\x00\x22\xf2\x00\x01\x00\x00\x00\x01\x00\x04\x02\x04\ -\x00\x00\x03\x2c\x00\x01\x00\x00\x00\x01\x00\x00\x4f\x4e\ -\x00\x00\x0d\x28\x00\x01\x00\x00\x00\x01\x00\x01\x8d\x37\ -\x00\x00\x0b\x7e\x00\x00\x00\x00\x00\x01\x00\x01\x53\x6f\ -\x00\x00\x26\xbe\x00\x01\x00\x00\x00\x01\x00\x04\x87\x19\ -\x00\x00\x0e\xf4\x00\x01\x00\x00\x00\x01\x00\x01\xb0\x1d\ -\x00\x00\x08\x20\x00\x00\x00\x00\x00\x01\x00\x00\xef\x4c\ -\x00\x00\x1c\xb8\x00\x01\x00\x00\x00\x01\x00\x03\x43\x17\ -\x00\x00\x27\xa8\x00\x00\x00\x00\x00\x01\x00\x04\x93\x3c\ -\x00\x00\x18\x8a\x00\x01\x00\x00\x00\x01\x00\x02\xc6\x45\ -\x00\x00\x12\x0e\x00\x00\x00\x00\x00\x01\x00\x02\x0d\x31\ -\x00\x00\x1f\x9a\x00\x00\x00\x00\x00\x01\x00\x03\x92\x50\ -\x00\x00\x19\xc0\x00\x01\x00\x00\x00\x01\x00\x02\xed\x46\ -\x00\x00\x10\x40\x00\x00\x00\x00\x00\x01\x00\x01\xc9\xe8\ -\x00\x00\x30\x04\x00\x01\x00\x00\x00\x01\x00\x05\x81\xaa\ -\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x01\x00\x03\x58\x0b\ -\x00\x00\x09\x68\x00\x00\x00\x00\x00\x01\x00\x01\x1a\x1a\ -\x00\x00\x2e\x68\x00\x01\x00\x00\x00\x01\x00\x05\x5e\x4d\ -\x00\x00\x10\x9c\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x69\ -\x00\x00\x04\x1c\x00\x01\x00\x00\x00\x01\x00\x00\x6c\xcf\ -\x00\x00\x1a\x22\x00\x00\x00\x00\x00\x01\x00\x02\xf4\x41\ -\x00\x00\x28\xe8\x00\x00\x00\x00\x00\x01\x00\x04\xca\xde\ -\x00\x00\x2a\xc2\x00\x01\x00\x00\x00\x01\x00\x05\x0c\x64\ -\x00\x00\x17\x44\x00\x00\x00\x00\x00\x01\x00\x02\x96\xa0\ -\x00\x00\x1f\xfc\x00\x00\x00\x00\x00\x01\x00\x03\x9c\xae\ -\x00\x00\x1c\x42\x00\x01\x00\x00\x00\x01\x00\x03\x37\x17\ -\x00\x00\x30\x6c\x00\x00\x00\x00\x00\x01\x00\x05\x89\x04\ -\x00\x00\x1e\x70\x00\x01\x00\x00\x00\x01\x00\x03\x6a\x39\ -\x00\x00\x29\x48\x00\x01\x00\x00\x00\x01\x00\x04\xd7\x27\ -\x00\x00\x15\xf4\x00\x00\x00\x00\x00\x01\x00\x02\x79\xe4\ -\x00\x00\x25\xd8\x00\x01\x00\x00\x00\x01\x00\x04\x65\xea\ -\x00\x00\x13\x6c\x00\x01\x00\x00\x00\x01\x00\x02\x34\x1c\ -\x00\x00\x03\xa8\x00\x01\x00\x00\x00\x01\x00\x00\x55\x1b\ -\x00\x00\x07\x34\x00\x00\x00\x00\x00\x01\x00\x00\xca\xe1\ -\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x00\x7f\xbc\ -\x00\x00\x20\x64\x00\x00\x00\x00\x00\x01\x00\x03\xae\x32\ -\x00\x00\x0f\xda\x00\x01\x00\x00\x00\x01\x00\x01\xc2\x98\ -\x00\x00\x25\x76\x00\x01\x00\x00\x00\x01\x00\x04\x50\xb1\ -\x00\x00\x31\x8a\x00\x01\x00\x00\x00\x01\x00\x05\xa2\x28\ -\x00\x00\x18\x2c\x00\x00\x00\x00\x00\x01\x00\x02\xbc\x1e\ -\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x00\xb1\xd8\ -\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x2f\ -\x00\x00\x0a\x44\x00\x00\x00\x00\x00\x01\x00\x01\x34\x53\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x00\x95\x4a\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x00\x9e\x1a\ -\x00\x00\x01\xfe\x00\x01\x00\x00\x00\x01\x00\x00\x39\x70\ -\x00\x00\x08\x8c\x00\x01\x00\x00\x00\x01\x00\x01\x04\x3b\ -\x00\x00\x1b\x00\x00\x01\x00\x00\x00\x01\x00\x03\x13\x82\ -\x00\x00\x1d\x1c\x00\x01\x00\x00\x00\x01\x00\x03\x49\xd2\ -\x00\x00\x0e\x0c\x00\x01\x00\x00\x00\x01\x00\x01\xa0\x6d\ -\x00\x00\x24\x92\x00\x01\x00\x00\x00\x01\x00\x04\x34\x97\ -\x00\x00\x19\x64\x00\x00\x00\x00\x00\x01\x00\x02\xe1\x91\ -\x00\x00\x16\x54\x00\x01\x00\x00\x00\x01\x00\x02\x88\x61\ -\x00\x00\x0e\x74\x00\x01\x00\x00\x00\x01\x00\x01\xa9\x1f\ -\x00\x00\x28\x80\x00\x01\x00\x00\x00\x01\x00\x04\xbf\x14\ -\x00\x00\x28\x80\x00\x01\x00\x00\x00\x01\x00\x04\xc4\xf9\ -\x00\x00\x11\xa0\x00\x00\x00\x00\x00\x01\x00\x01\xfd\xaf\ -\x00\x00\x20\xc6\x00\x01\x00\x00\x00\x01\x00\x03\xbb\x5b\ -\x00\x00\x28\x12\x00\x00\x00\x00\x00\x01\x00\x04\xa2\x48\ -\x00\x00\x2f\x44\x00\x01\x00\x00\x00\x01\x00\x05\x6d\x78\ -\x00\x00\x14\xac\x00\x01\x00\x00\x00\x01\x00\x02\x57\x6a\ -\x00\x00\x09\x06\x00\x00\x00\x00\x00\x01\x00\x01\x0a\x72\ -\x00\x00\x2d\x06\x00\x01\x00\x00\x00\x01\x00\x05\x36\x02\ -\x00\x00\x23\xbc\x00\x00\x00\x00\x00\x01\x00\x04\x1a\xd4\ -\x00\x00\x2e\xca\x00\x01\x00\x00\x00\x01\x00\x05\x64\xff\ -\x00\x00\x21\x34\x00\x00\x00\x00\x00\x01\x00\x03\xc5\x95\ -\x00\x00\x0c\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x73\x2b\ -\x00\x00\x1d\x8a\x00\x01\x00\x00\x00\x01\x00\x03\x51\x3e\ -\x00\x00\x07\x9a\x00\x01\x00\x00\x00\x01\x00\x00\xd6\x01\ -\x00\x00\x0a\xa2\x00\x01\x00\x00\x00\x01\x00\x01\x42\x12\ -\x00\x00\x11\x2a\x00\x01\x00\x00\x00\x01\x00\x01\xf6\x13\ -\x00\x00\x14\x42\x00\x00\x00\x00\x00\x01\x00\x02\x49\x0b\ -\x00\x00\x1b\x7c\x00\x01\x00\x00\x00\x01\x00\x03\x1c\x78\ -\x00\x00\x27\x3c\x00\x01\x00\x00\x00\x01\x00\x04\x8d\x76\ -\x00\x00\x02\x66\x00\x01\x00\x00\x00\x01\x00\x00\x40\x6f\ -\x00\x00\x07\xb0\x00\x00\x00\x00\x00\x01\x00\x00\xdd\x36\ -\x00\x00\x24\x2a\x00\x00\x00\x00\x00\x01\x00\x04\x23\x9c\ -\x00\x00\x2f\xa0\x00\x01\x00\x00\x00\x01\x00\x05\x77\xea\ -\x00\x00\x0b\xea\x00\x00\x00\x00\x00\x01\x00\x01\x66\xe5\ -\x00\x00\x22\x0e\x00\x00\x00\x00\x00\x01\x00\x03\xde\x77\ -\x00\x00\x13\xea\x00\x00\x00\x00\x00\x01\x00\x02\x3d\xab\ -\x00\x00\x1a\x84\x00\x01\x00\x00\x00\x01\x00\x03\x03\xea\ -\x00\x00\x17\xae\x00\x00\x00\x00\x00\x01\x00\x02\xa3\x79\ -\x00\x00\x0d\x9e\x00\x00\x00\x00\x00\x01\x00\x01\x96\x14\ -\x00\x00\x22\x7a\x00\x00\x00\x00\x00\x01\x00\x03\xf6\x43\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ +\x00\x00\x00\x70\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x05\ +\x00\x00\x32\x1e\x00\x00\x00\x00\x00\x01\x00\x05\x93\xd5\ +\x00\x00\x32\x42\x00\x00\x00\x00\x00\x01\x00\x05\x9b\xde\ +\x00\x00\x00\x28\x00\x02\x00\x00\x00\x01\x00\x00\x00\x08\ +\x00\x00\x00\x70\x00\x02\x00\x00\x00\x7b\x00\x00\x00\x09\ +\x00\x00\x0b\x14\x00\x01\x00\x00\x00\x01\x00\x01\x41\x77\ +\x00\x00\x17\xcc\x00\x00\x00\x00\x00\x01\x00\x02\x92\xe1\ +\x00\x00\x12\xce\x00\x01\x00\x00\x00\x01\x00\x01\xe4\xa3\ +\x00\x00\x1a\x74\x00\x00\x00\x00\x00\x01\x00\x02\xd2\xb0\ +\x00\x00\x26\xa8\x00\x01\x00\x00\x00\x01\x00\x04\x4b\x17\ +\x00\x00\x26\xa8\x00\x01\x00\x00\x00\x01\x00\x04\x51\x19\ +\x00\x00\x0c\x5a\x00\x01\x00\x00\x00\x01\x00\x01\x51\x72\ +\x00\x00\x2c\x3c\x00\x00\x00\x00\x00\x01\x00\x04\xe8\x08\ +\x00\x00\x1c\xb2\x00\x01\x00\x00\x00\x01\x00\x03\x2a\x83\ +\x00\x00\x00\xe8\x00\x01\x00\x00\x00\x01\x00\x00\x11\x84\ +\x00\x00\x08\x76\x00\x00\x00\x00\x00\x01\x00\x00\xec\xbb\ +\x00\x00\x1c\x52\x00\x01\x00\x00\x00\x01\x00\x03\x23\x42\ +\x00\x00\x11\x1e\x00\x01\x00\x00\x00\x01\x00\x01\xb6\xeb\ +\x00\x00\x0d\x3c\x00\x00\x00\x00\x00\x01\x00\x01\x67\xbd\ +\x00\x00\x14\x2e\x00\x00\x00\x00\x00\x01\x00\x02\x05\xcb\ +\x00\x00\x20\x50\x00\x01\x00\x00\x00\x01\x00\x03\x8f\x3e\ +\x00\x00\x2f\x82\x00\x01\x00\x00\x00\x01\x00\x05\x4f\xf3\ +\x00\x00\x04\x48\x00\x01\x00\x00\x00\x01\x00\x00\x7f\x41\ +\x00\x00\x2b\xd4\x00\x01\x00\x00\x00\x01\x00\x04\xde\x7a\ +\x00\x00\x06\xa2\x00\x00\x00\x00\x00\x01\x00\x00\xb9\x88\ +\x00\x00\x23\xae\x00\x01\x00\x00\x00\x01\x00\x03\xef\x35\ +\x00\x00\x25\x60\x00\x00\x00\x00\x00\x01\x00\x04\x2c\xc0\ +\x00\x00\x0b\x6c\x00\x01\x00\x00\x00\x01\x00\x01\x45\xd9\ +\x00\x00\x1f\x70\x00\x01\x00\x00\x00\x01\x00\x03\x6d\x7c\ +\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00\x72\xd6\ +\x00\x00\x1a\xf2\x00\x00\x00\x00\x00\x01\x00\x02\xe8\xfc\ +\x00\x00\x0f\xd8\x00\x01\x00\x00\x00\x01\x00\x01\x9b\x50\ +\x00\x00\x15\x78\x00\x01\x00\x00\x00\x01\x00\x02\x32\x25\ +\x00\x00\x2d\xee\x00\x00\x00\x00\x00\x01\x00\x05\x17\xaf\ +\x00\x00\x2d\x92\x00\x00\x00\x00\x00\x01\x00\x05\x0d\x95\ +\x00\x00\x1a\x08\x00\x01\x00\x00\x00\x01\x00\x02\xca\xb6\ +\x00\x00\x21\x36\x00\x01\x00\x00\x00\x01\x00\x03\x9f\xd2\ +\x00\x00\x11\x8e\x00\x01\x00\x00\x00\x01\x00\x01\xbd\x9e\ +\x00\x00\x2c\x9e\x00\x01\x00\x00\x00\x01\x00\x04\xf1\xa5\ +\x00\x00\x16\xf2\x00\x01\x00\x00\x00\x01\x00\x02\x81\x21\ +\x00\x00\x1e\x96\x00\x01\x00\x00\x00\x01\x00\x03\x58\xb9\ +\x00\x00\x1b\x70\x00\x01\x00\x00\x00\x01\x00\x02\xfb\x74\ +\x00\x00\x1b\x70\x00\x01\x00\x00\x00\x01\x00\x03\x06\x50\ +\x00\x00\x27\xec\x00\x01\x00\x00\x00\x01\x00\x04\x6f\x82\ +\x00\x00\x0b\xde\x00\x01\x00\x00\x00\x01\x00\x01\x4b\xa5\ +\x00\x00\x18\x56\x00\x01\x00\x00\x00\x01\x00\x02\xa9\x55\ +\x00\x00\x16\x1c\x00\x00\x00\x00\x00\x01\x00\x02\x5d\x26\ +\x00\x00\x13\xb0\x00\x01\x00\x00\x00\x01\x00\x01\xff\x6e\ +\x00\x00\x07\x94\x00\x01\x00\x00\x00\x01\x00\x00\xdf\x99\ +\x00\x00\x2f\xee\x00\x00\x00\x00\x00\x01\x00\x05\x59\x40\ +\x00\x00\x12\x0c\x00\x01\x00\x00\x00\x01\x00\x01\xd0\x4a\ +\x00\x00\x08\xe0\x00\x00\x00\x00\x00\x01\x00\x00\xf7\x18\ +\x00\x00\x21\xb4\x00\x01\x00\x00\x00\x01\x00\x03\xad\x00\ +\x00\x00\x13\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xec\xb8\ +\x00\x00\x17\x6a\x00\x00\x00\x00\x00\x01\x00\x02\x88\x83\ +\x00\x00\x09\xc8\x00\x01\x00\x00\x00\x01\x00\x01\x0f\xb3\ +\x00\x00\x22\xe2\x00\x00\x00\x00\x00\x01\x00\x03\xd4\x13\ +\x00\x00\x19\xa0\x00\x01\x00\x00\x00\x01\x00\x02\xc3\x5c\ +\x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x00\x60\xa8\ +\x00\x00\x0a\x2a\x00\x00\x00\x00\x00\x01\x00\x01\x16\xae\ +\x00\x00\x1d\x72\x00\x01\x00\x00\x00\x01\x00\x03\x3d\xf3\ +\x00\x00\x15\xf8\x00\x00\x00\x00\x00\x01\x00\x02\x48\xd9\ +\x00\x00\x2d\x18\x00\x01\x00\x00\x00\x01\x00\x04\xfa\xa8\ +\x00\x00\x07\x32\x00\x00\x00\x00\x00\x01\x00\x00\xcf\xf0\ +\x00\x00\x15\x02\x00\x00\x00\x00\x00\x01\x00\x02\x1e\xa7\ +\x00\x00\x20\xba\x00\x01\x00\x00\x00\x01\x00\x03\x95\xd6\ +\x00\x00\x26\x3e\x00\x00\x00\x00\x00\x01\x00\x04\x3e\x3e\ +\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x24\x1e\x00\x01\x00\x00\x00\x01\x00\x03\xf6\x35\ +\x00\x00\x29\x88\x00\x00\x00\x00\x00\x01\x00\x04\x9c\xd7\ +\x00\x00\x2a\x4e\x00\x01\x00\x00\x00\x01\x00\x04\xaf\x65\ +\x00\x00\x2e\xc0\x00\x01\x00\x00\x00\x01\x00\x05\x3a\x69\ +\x00\x00\x28\xcc\x00\x00\x00\x00\x00\x01\x00\x04\x82\xa6\ +\x00\x00\x1d\x0c\x00\x01\x00\x00\x00\x01\x00\x03\x33\x78\ +\x00\x00\x09\x4a\x00\x01\x00\x00\x00\x01\x00\x01\x06\x24\ +\x00\x00\x01\x58\x00\x01\x00\x00\x00\x01\x00\x00\x1a\x8e\ +\x00\x00\x0c\xd6\x00\x00\x00\x00\x00\x01\x00\x01\x5c\x9d\ +\x00\x00\x2b\x76\x00\x00\x00\x00\x00\x01\x00\x04\xd2\x89\ +\x00\x00\x2f\x20\x00\x00\x00\x00\x00\x01\x00\x05\x42\xca\ +\x00\x00\x0e\x1c\x00\x01\x00\x00\x00\x01\x00\x01\x7e\x1c\ +\x00\x00\x22\x80\x00\x01\x00\x00\x00\x01\x00\x03\xbe\xda\ +\x00\x00\x18\xcc\x00\x01\x00\x00\x00\x01\x00\x02\xb2\x32\ +\x00\x00\x2a\x9e\x00\x00\x00\x00\x00\x01\x00\x04\xc2\x2b\ +\x00\x00\x31\x36\x00\x01\x00\x00\x00\x01\x00\x05\x86\x79\ +\x00\x00\x12\x70\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x05\ +\x00\x00\x25\x02\x00\x00\x00\x00\x00\x01\x00\x04\x1f\x01\ +\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x00\x88\x42\ +\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x00\x91\x12\ +\x00\x00\x31\xb6\x00\x01\x00\x00\x00\x01\x00\x05\x8c\xd6\ +\x00\x00\x2a\xfc\x00\x01\x00\x00\x00\x01\x00\x04\xcc\x52\ +\x00\x00\x28\x50\x00\x01\x00\x00\x00\x01\x00\x04\x79\xb0\ +\x00\x00\x27\x7e\x00\x01\x00\x00\x00\x01\x00\x04\x68\x16\ +\x00\x00\x19\x38\x00\x01\x00\x00\x00\x01\x00\x02\xba\xaa\ +\x00\x00\x1d\xd4\x00\x01\x00\x00\x00\x01\x00\x03\x44\xa5\ +\x00\x00\x02\xae\x00\x00\x00\x00\x00\x01\x00\x00\x49\x29\ +\x00\x00\x02\x2e\x00\x01\x00\x00\x00\x01\x00\x00\x41\xea\ +\x00\x00\x0e\x82\x00\x01\x00\x00\x00\x01\x00\x01\x85\x6c\ +\x00\x00\x03\x0a\x00\x01\x00\x00\x00\x01\x00\x00\x5a\xc3\ +\x00\x00\x03\x0a\x00\x01\x00\x00\x00\x01\x00\x00\x54\xde\ +\x00\x00\x30\x5a\x00\x00\x00\x00\x00\x01\x00\x05\x6e\x2f\ +\x00\x00\x14\x94\x00\x01\x00\x00\x00\x01\x00\x02\x14\x6d\ +\x00\x00\x24\x94\x00\x00\x00\x00\x00\x01\x00\x04\x02\x35\ +\x00\x00\x1e\x3a\x00\x01\x00\x00\x00\x01\x00\x03\x4e\x47\ +\x00\x00\x08\x08\x00\x01\x00\x00\x00\x01\x00\x00\xe6\x0e\ +\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x32\x42\ +\x00\x00\x0f\x02\x00\x01\x00\x00\x00\x01\x00\x01\x8c\x6a\ +\x00\x00\x30\xc8\x00\x00\x00\x00\x00\x01\x00\x05\x7d\xb1\ +\x00\x00\x06\x28\x00\x01\x00\x00\x00\x01\x00\x00\xb1\x0f\ +\x00\x00\x29\x2c\x00\x00\x00\x00\x00\x01\x00\x04\x91\x23\ +\x00\x00\x23\x3e\x00\x00\x00\x00\x00\x01\x00\x03\xe1\x94\ +\x00\x00\x25\xc4\x00\x01\x00\x00\x00\x01\x00\x04\x37\x71\ +\x00\x00\x15\x62\x00\x01\x00\x00\x00\x01\x00\x02\x2a\xf0\ +\x00\x00\x05\x2e\x00\x01\x00\x00\x00\x01\x00\x00\x99\xe2\ +\x00\x00\x05\xb2\x00\x01\x00\x00\x00\x01\x00\x00\xa9\x73\ +\x00\x00\x1f\x06\x00\x00\x00\x00\x00\x01\x00\x03\x5f\x1d\ +\x00\x00\x16\x88\x00\x01\x00\x00\x00\x01\x00\x02\x70\x9c\ +\x00\x00\x29\xe2\x00\x01\x00\x00\x00\x01\x00\x04\xa9\x9f\ +\x00\x00\x0f\x6c\x00\x01\x00\x00\x00\x01\x00\x01\x95\x66\ +\x00\x00\x1b\xe2\x00\x00\x00\x00\x00\x01\x00\x03\x11\x2c\ +\x00\x00\x27\x16\x00\x00\x00\x00\x00\x01\x00\x04\x57\x1b\ +\x00\x00\x10\x62\x00\x01\x00\x00\x00\x01\x00\x01\xa1\xcb\ +\x00\x00\x22\x1c\x00\x00\x00\x00\x00\x01\x00\x03\xb2\x94\ +\x00\x00\x2e\x54\x00\x00\x00\x00\x00\x01\x00\x05\x22\x9d\ +\x00\x00\x10\xc6\x00\x00\x00\x00\x00\x01\x00\x01\xab\x8b\ +\x00\x00\x05\x9a\x00\x01\x00\x00\x00\x01\x00\x00\xa4\x8c\ +\x00\x00\x0a\x96\x00\x00\x00\x00\x00\x01\x00\x01\x28\xd2\ +\x00\x00\x0d\xae\x00\x00\x00\x00\x00\x01\x00\x01\x73\xc3\ +\x00\x00\x1f\xd8\x00\x00\x00\x00\x00\x01\x00\x03\x83\x7d\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x07\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x28\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ +\x00\x00\x00\x70\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x14\x00\x02\x00\x00\x00\x02\x00\x00\x00\x05\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x05\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x38\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x77\xc0\x9c\x84\xd2\ -\x00\x00\x00\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x08\x09\ -\x00\x00\x01\x77\xc0\x9c\x6f\x86\ -\x00\x00\x00\x80\x00\x02\x00\x00\x00\x01\x00\x00\x00\x08\ +\x00\x00\x32\x1e\x00\x00\x00\x00\x00\x01\x00\x05\x93\xd5\ +\x00\x00\x01\x77\xbf\xf7\xbc\xe0\ +\x00\x00\x32\x42\x00\x00\x00\x00\x00\x01\x00\x05\x9b\xde\ +\x00\x00\x01\x77\xbf\xf7\xa5\x70\ +\x00\x00\x00\x28\x00\x02\x00\x00\x00\x01\x00\x00\x00\x08\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x00\x28\x00\x02\x00\x00\x00\x7a\x00\x00\x00\x09\ +\x00\x00\x00\x70\x00\x02\x00\x00\x00\x7b\x00\x00\x00\x09\ \x00\x00\x00\x00\x00\x00\x00\x00\ -\x00\x00\x31\x32\x00\x01\x00\x00\x00\x01\x00\x05\x9d\xc6\ -\x00\x00\x01\x77\xc0\x93\xd5\x22\ -\x00\x00\x2a\x38\x00\x00\x00\x00\x00\x01\x00\x04\xf5\xf0\ -\x00\x00\x01\x77\xc0\x99\xc5\x89\ -\x00\x00\x09\xd4\x00\x01\x00\x00\x00\x01\x00\x01\x2c\x3e\ -\x00\x00\x01\x77\xc0\x96\x5d\xeb\ -\x00\x00\x2d\xea\x00\x00\x00\x00\x00\x01\x00\x05\x48\x01\ -\x00\x00\x01\x77\xc0\x94\x8a\xaa\ -\x00\x00\x1e\xc0\x00\x01\x00\x00\x00\x01\x00\x03\x7c\xff\ -\x00\x00\x01\x77\xc0\x92\x39\xfd\ -\x00\x00\x1e\xc0\x00\x01\x00\x00\x00\x01\x00\x03\x83\x01\ -\x00\x00\x01\x77\xc0\x92\x39\xfd\ -\x00\x00\x12\x80\x00\x01\x00\x00\x00\x01\x00\x02\x1f\xe7\ -\x00\x00\x01\x77\xc0\x95\x0c\x0b\ -\x00\x00\x04\xf4\x00\x00\x00\x00\x00\x01\x00\x00\x8b\xad\ -\x00\x00\x01\x77\xc0\x95\xe6\x87\ -\x00\x00\x02\xd2\x00\x01\x00\x00\x00\x01\x00\x00\x46\x59\ -\x00\x00\x01\x77\xc0\x97\x40\x60\ -\x00\x00\x12\xfc\x00\x01\x00\x00\x00\x01\x00\x02\x2b\x12\ -\x00\x00\x01\x77\xc0\x91\x4a\xfc\ -\x00\x00\x10\xc0\x00\x00\x00\x00\x00\x01\x00\x01\xeb\xb6\ -\x00\x00\x01\x77\xc0\x9d\xe7\x5b\ -\x00\x00\x01\x9e\x00\x01\x00\x00\x00\x01\x00\x00\x32\x2f\ -\x00\x00\x01\x77\xc0\x95\x2d\x7b\ -\x00\x00\x0b\x0e\x00\x01\x00\x00\x00\x01\x00\x01\x4c\xbc\ -\x00\x00\x01\x77\xc0\x93\xc3\x6a\ -\x00\x00\x0f\x68\x00\x00\x00\x00\x00\x01\x00\x01\xb6\x92\ -\x00\x00\x01\x77\xc0\x97\xcb\x54\ -\x00\x00\x23\x56\x00\x00\x00\x00\x00\x01\x00\x04\x0c\x32\ -\x00\x00\x01\x77\xc0\x92\xf4\x89\ -\x00\x00\x2b\x3e\x00\x01\x00\x00\x00\x01\x00\x05\x16\x60\ -\x00\x00\x01\x77\xc0\x94\x53\x56\ -\x00\x00\x1f\x2e\x00\x01\x00\x00\x00\x01\x00\x03\x89\x03\ -\x00\x00\x01\x77\xc0\x92\xa9\xc1\ -\x00\x00\x2c\x32\x00\x01\x00\x00\x00\x01\x00\x05\x23\x73\ -\x00\x00\x01\x77\xc0\x92\xdd\x99\ -\x00\x00\x2c\x9e\x00\x01\x00\x00\x00\x01\x00\x05\x2c\x74\ -\x00\x00\x01\x77\xc0\x94\xcb\xe6\ -\x00\x00\x29\xa8\x00\x00\x00\x00\x00\x01\x00\x04\xdf\x88\ -\x00\x00\x01\x77\xc0\x99\xd4\xc1\ -\x00\x00\x16\xd4\x00\x01\x00\x00\x00\x01\x00\x02\x8f\xa0\ -\x00\x00\x01\x77\xc0\x92\x99\x65\ -\x00\x00\x1a\x9c\x00\x00\x00\x00\x00\x01\x00\x03\x08\xd1\ -\x00\x00\x01\x77\xc0\x95\xcf\xab\ -\x00\x00\x15\x1a\x00\x01\x00\x00\x00\x01\x00\x02\x5e\x17\ -\x00\x00\x01\x77\xc0\x98\x34\x20\ -\x00\x00\x15\x8c\x00\x01\x00\x00\x00\x01\x00\x02\x63\xe3\ -\x00\x00\x01\x77\xc0\x97\x0f\xfc\ -\x00\x00\x0c\xbe\x00\x00\x00\x00\x00\x01\x00\x01\x80\xcc\ -\x00\x00\x01\x77\xc0\x92\x5f\xe9\ -\x00\x00\x24\xf8\x00\x00\x00\x00\x00\x01\x00\x04\x3e\x39\ -\x00\x00\x01\x77\xc0\x91\x85\xe1\ -\x00\x00\x2b\xa8\x00\x01\x00\x00\x00\x01\x00\x05\x1c\xf8\ -\x00\x00\x01\x77\xc0\x99\x70\xd1\ -\x00\x00\x26\x3e\x00\x01\x00\x00\x00\x01\x00\x04\x70\x65\ -\x00\x00\x01\x77\xc0\x93\x5d\x8e\ -\x00\x00\x05\xd0\x00\x00\x00\x00\x00\x01\x00\x00\xa6\xea\ -\x00\x00\x01\x77\xc0\x93\xf8\x52\ -\x00\x00\x1b\xe6\x00\x00\x00\x00\x00\x01\x00\x03\x2c\xfd\ -\x00\x00\x01\x77\xc0\x96\x4e\x67\ -\x00\x00\x30\xc6\x00\x01\x00\x00\x00\x01\x00\x05\x95\xcc\ -\x00\x00\x01\x77\xc0\x95\x1e\x6b\ -\x00\x00\x21\x90\x00\x01\x00\x00\x00\x01\x00\x03\xd1\x49\ -\x00\x00\x01\x77\xc0\x96\xa9\xff\ -\x00\x00\x06\xb6\x00\x01\x00\x00\x00\x01\x00\x00\xb8\x35\ -\x00\x00\x01\x77\xc0\x93\x8c\x4e\ -\x00\x00\x2d\x70\x00\x01\x00\x00\x00\x01\x00\x05\x3e\xfe\ -\x00\x00\x01\x77\xc0\x93\x9c\x1e\ -\x00\x00\x01\x26\x00\x01\x00\x00\x00\x01\x00\x00\x2a\xcd\ -\x00\x00\x01\x77\xc0\x93\x2d\xa9\ -\x00\x00\x18\xf2\x00\x01\x00\x00\x00\x01\x00\x02\xd6\xb5\ -\x00\x00\x01\x77\xc0\x9e\x5b\xbb\ -\x00\x00\x18\xf2\x00\x01\x00\x00\x00\x01\x00\x02\xcb\xd9\ -\x00\x00\x01\x77\xc0\x9e\x5b\xbb\ -\x00\x00\x22\xf2\x00\x01\x00\x00\x00\x01\x00\x04\x02\x04\ -\x00\x00\x01\x77\xc0\x98\xcf\x1c\ -\x00\x00\x03\x2c\x00\x01\x00\x00\x00\x01\x00\x00\x4f\x4e\ -\x00\x00\x01\x77\xc0\x9f\x0e\xec\ -\x00\x00\x0d\x28\x00\x01\x00\x00\x00\x01\x00\x01\x8d\x37\ -\x00\x00\x01\x77\xc0\x96\x81\x1b\ -\x00\x00\x0b\x7e\x00\x00\x00\x00\x00\x01\x00\x01\x53\x6f\ -\x00\x00\x01\x77\xc0\x95\xbd\xe7\ -\x00\x00\x26\xbe\x00\x01\x00\x00\x00\x01\x00\x04\x87\x19\ -\x00\x00\x01\x77\xc0\x99\x1a\x01\ -\x00\x00\x0e\xf4\x00\x01\x00\x00\x00\x01\x00\x01\xb0\x1d\ -\x00\x00\x01\x77\xc0\x92\x74\x51\ -\x00\x00\x08\x20\x00\x00\x00\x00\x00\x01\x00\x00\xef\x4c\ -\x00\x00\x01\x77\xc0\x91\x60\x1d\ -\x00\x00\x1c\xb8\x00\x01\x00\x00\x00\x01\x00\x03\x43\x17\ -\x00\x00\x01\x77\xc0\x92\x82\xf5\ -\x00\x00\x27\xa8\x00\x00\x00\x00\x00\x01\x00\x04\x93\x3c\ -\x00\x00\x01\x77\xc0\x92\x4d\xb9\ -\x00\x00\x18\x8a\x00\x01\x00\x00\x00\x01\x00\x02\xc6\x45\ -\x00\x00\x01\x77\xc0\x96\x2d\xbb\ -\x00\x00\x12\x0e\x00\x00\x00\x00\x00\x01\x00\x02\x0d\x31\ -\x00\x00\x01\x77\xc0\x9a\x87\x95\ -\x00\x00\x1f\x9a\x00\x00\x00\x00\x00\x01\x00\x03\x92\x50\ -\x00\x00\x01\x77\xc0\x95\xfe\x77\ -\x00\x00\x19\xc0\x00\x01\x00\x00\x00\x01\x00\x02\xed\x46\ -\x00\x00\x01\x77\xc0\x97\x62\x4c\ -\x00\x00\x10\x40\x00\x00\x00\x00\x00\x01\x00\x01\xc9\xe8\ -\x00\x00\x01\x77\xc0\x94\x7a\xea\ -\x00\x00\x30\x04\x00\x01\x00\x00\x00\x01\x00\x05\x81\xaa\ -\x00\x00\x01\x77\xc0\x9f\xc5\x2c\ -\x00\x00\x1e\x04\x00\x00\x00\x00\x00\x01\x00\x03\x58\x0b\ -\x00\x00\x01\x77\xc0\x8f\xa6\xf0\ -\x00\x00\x09\x68\x00\x00\x00\x00\x00\x01\x00\x01\x1a\x1a\ -\x00\x00\x01\x77\xc0\x91\xeb\x2d\ -\x00\x00\x2e\x68\x00\x01\x00\x00\x00\x01\x00\x05\x5e\x4d\ -\x00\x00\x01\x77\xc0\x93\xe7\xee\ -\x00\x00\x10\x9c\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x69\ -\x00\x00\x01\x77\x6f\x56\x7c\xb8\ -\x00\x00\x04\x1c\x00\x01\x00\x00\x00\x01\x00\x00\x6c\xcf\ -\x00\x00\x01\x77\xc0\x93\x7a\xb6\ -\x00\x00\x1a\x22\x00\x00\x00\x00\x00\x01\x00\x02\xf4\x41\ -\x00\x00\x01\x77\xc0\x94\x63\xf6\ -\x00\x00\x28\xe8\x00\x00\x00\x00\x00\x01\x00\x04\xca\xde\ -\x00\x00\x01\x77\xc0\x96\x0b\xbf\ -\x00\x00\x2a\xc2\x00\x01\x00\x00\x00\x01\x00\x05\x0c\x64\ -\x00\x00\x01\x77\xc0\x9a\x37\xe9\ -\x00\x00\x17\x44\x00\x00\x00\x00\x00\x01\x00\x02\x96\xa0\ -\x00\x00\x01\x77\xc0\x95\x66\x03\ -\x00\x00\x1f\xfc\x00\x00\x00\x00\x00\x01\x00\x03\x9c\xae\ -\x00\x00\x01\x77\xc0\x91\x29\xb4\ -\x00\x00\x1c\x42\x00\x01\x00\x00\x00\x01\x00\x03\x37\x17\ -\x00\x00\x01\x77\xc0\x92\x02\xc1\ -\x00\x00\x30\x6c\x00\x00\x00\x00\x00\x01\x00\x05\x89\x04\ -\x00\x00\x01\x77\xc0\x95\x79\xb7\ -\x00\x00\x1e\x70\x00\x01\x00\x00\x00\x01\x00\x03\x6a\x39\ -\x00\x00\x01\x77\xc0\x91\x01\x44\ -\x00\x00\x29\x48\x00\x01\x00\x00\x00\x01\x00\x04\xd7\x27\ -\x00\x00\x01\x77\xc0\x96\xf1\x68\ -\x00\x00\x15\xf4\x00\x00\x00\x00\x00\x01\x00\x02\x79\xe4\ -\x00\x00\x01\x77\xc0\x95\xa2\x27\ -\x00\x00\x25\xd8\x00\x01\x00\x00\x00\x01\x00\x04\x65\xea\ -\x00\x00\x01\x77\xc0\x9a\x4e\xdd\ -\x00\x00\x13\x6c\x00\x01\x00\x00\x00\x01\x00\x02\x34\x1c\ -\x00\x00\x01\x77\xc0\x96\x92\x7f\ -\x00\x00\x03\xa8\x00\x01\x00\x00\x00\x01\x00\x00\x55\x1b\ -\x00\x00\x01\x77\xc0\x96\xdc\x7b\ -\x00\x00\x07\x34\x00\x00\x00\x00\x00\x01\x00\x00\xca\xe1\ -\x00\x00\x01\x77\xc0\x99\x3d\x25\ -\x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x00\x7f\xbc\ -\x00\x00\x01\x77\xc0\x94\xe2\x8e\ -\x00\x00\x20\x64\x00\x00\x00\x00\x00\x01\x00\x03\xae\x32\ -\x00\x00\x01\x77\xc0\x94\x0f\x6e\ -\x00\x00\x0f\xda\x00\x01\x00\x00\x00\x01\x00\x01\xc2\x98\ -\x00\x00\x01\x77\xc0\x96\x6d\xff\ -\x00\x00\x25\x76\x00\x01\x00\x00\x00\x01\x00\x04\x50\xb1\ -\x00\x00\x01\x77\xc0\x95\x90\x27\ -\x00\x00\x31\x8a\x00\x01\x00\x00\x00\x01\x00\x05\xa2\x28\ -\x00\x00\x01\x77\xc0\x9c\x9d\x6e\ -\x00\x00\x18\x2c\x00\x00\x00\x00\x00\x01\x00\x02\xbc\x1e\ -\x00\x00\x01\x77\xc0\x94\xb1\xca\ -\x00\x00\x06\x36\x00\x01\x00\x00\x00\x01\x00\x00\xb1\xd8\ -\x00\x00\x01\x77\xc0\x99\x2a\xdd\ -\x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x2f\ -\x00\x00\x01\x77\xc0\x97\x21\x64\ -\x00\x00\x0a\x44\x00\x00\x00\x00\x00\x01\x00\x01\x34\x53\ -\x00\x00\x01\x77\xc0\x97\x73\xf0\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x00\x95\x4a\ -\x00\x00\x01\x77\xc0\x99\x5c\x79\ -\x00\x00\x05\x56\x00\x01\x00\x00\x00\x01\x00\x00\x9e\x1a\ -\x00\x00\x01\x77\xc0\x99\x5c\x79\ -\x00\x00\x01\xfe\x00\x01\x00\x00\x00\x01\x00\x00\x39\x70\ -\x00\x00\x01\x77\xc0\x91\xa4\xb9\ -\x00\x00\x08\x8c\x00\x01\x00\x00\x00\x01\x00\x01\x04\x3b\ -\x00\x00\x01\x77\xc0\x99\x0a\x0d\ -\x00\x00\x1b\x00\x00\x01\x00\x00\x00\x01\x00\x03\x13\x82\ -\x00\x00\x01\x77\xc0\x93\x42\xc2\ -\x00\x00\x1d\x1c\x00\x01\x00\x00\x00\x01\x00\x03\x49\xd2\ -\x00\x00\x01\x77\xc0\x99\xf9\xe1\ -\x00\x00\x0e\x0c\x00\x01\x00\x00\x00\x01\x00\x01\xa0\x6d\ -\x00\x00\x01\x77\xc0\x94\x30\xb2\ -\x00\x00\x24\x92\x00\x01\x00\x00\x00\x01\x00\x04\x34\x97\ -\x00\x00\x01\x77\xc0\x96\x3e\xc3\ -\x00\x00\x19\x64\x00\x00\x00\x00\x00\x01\x00\x02\xe1\x91\ -\x00\x00\x01\x77\xc0\x97\x98\x84\ -\x00\x00\x16\x54\x00\x01\x00\x00\x00\x01\x00\x02\x88\x61\ -\x00\x00\x01\x77\xc0\x97\x84\xac\ -\x00\x00\x0e\x74\x00\x01\x00\x00\x00\x01\x00\x01\xa9\x1f\ -\x00\x00\x01\x77\xc0\x97\x31\x2c\ -\x00\x00\x28\x80\x00\x01\x00\x00\x00\x01\x00\x04\xbf\x14\ -\x00\x00\x01\x77\xc0\x94\x9e\xe2\ -\x00\x00\x28\x80\x00\x01\x00\x00\x00\x01\x00\x04\xc4\xf9\ -\x00\x00\x01\x77\xc0\x94\x9e\xe2\ -\x00\x00\x11\xa0\x00\x00\x00\x00\x00\x01\x00\x01\xfd\xaf\ -\x00\x00\x01\x77\xc0\x97\xfd\x58\ -\x00\x00\x20\xc6\x00\x01\x00\x00\x00\x01\x00\x03\xbb\x5b\ -\x00\x00\x01\x77\xc0\x92\xcd\x55\ -\x00\x00\x28\x12\x00\x00\x00\x00\x00\x01\x00\x04\xa2\x48\ -\x00\x00\x01\x77\xc0\x92\xbd\x71\ -\x00\x00\x2f\x44\x00\x01\x00\x00\x00\x01\x00\x05\x6d\x78\ -\x00\x00\x01\x77\xc0\x99\x87\xdd\ -\x00\x00\x14\xac\x00\x01\x00\x00\x00\x01\x00\x02\x57\x6a\ -\x00\x00\x01\x77\xc0\x98\xec\x15\ -\x00\x00\x09\x06\x00\x00\x00\x00\x00\x01\x00\x01\x0a\x72\ -\x00\x00\x01\x77\xc0\x93\xac\x92\ -\x00\x00\x2d\x06\x00\x01\x00\x00\x00\x01\x00\x05\x36\x02\ -\x00\x00\x01\x77\xc0\x95\x43\xf3\ -\x00\x00\x23\xbc\x00\x00\x00\x00\x00\x01\x00\x04\x1a\xd4\ -\x00\x00\x01\x77\xc0\x92\x26\xe5\ -\x00\x00\x2e\xca\x00\x01\x00\x00\x00\x01\x00\x05\x64\xff\ -\x00\x00\x01\x77\xc0\x98\x45\x5c\ -\x00\x00\x21\x34\x00\x00\x00\x00\x00\x01\x00\x03\xc5\x95\ -\x00\x00\x01\x77\xc0\x98\x23\xac\ -\x00\x00\x0c\x4e\x00\x00\x00\x00\x00\x01\x00\x01\x73\x2b\ -\x00\x00\x01\x77\xc0\x97\xb8\xe4\ -\x00\x00\x1d\x8a\x00\x01\x00\x00\x00\x01\x00\x03\x51\x3e\ -\x00\x00\x01\x77\xc0\x9d\xc7\xbb\ -\x00\x00\x07\x9a\x00\x01\x00\x00\x00\x01\x00\x00\xd6\x01\ -\x00\x00\x01\x77\xc0\x9a\xbb\x25\ -\x00\x00\x0a\xa2\x00\x01\x00\x00\x00\x01\x00\x01\x42\x12\ -\x00\x00\x01\x77\xc0\x96\xc4\xbf\ -\x00\x00\x11\x2a\x00\x01\x00\x00\x00\x01\x00\x01\xf6\x13\ -\x00\x00\x01\x77\xc0\x98\x56\x40\ -\x00\x00\x14\x42\x00\x00\x00\x00\x00\x01\x00\x02\x49\x0b\ -\x00\x00\x01\x77\xc0\x99\xb2\xf5\ -\x00\x00\x1b\x7c\x00\x01\x00\x00\x00\x01\x00\x03\x1c\x78\ -\x00\x00\x01\x77\xc0\x93\x1c\xc1\ -\x00\x00\x27\x3c\x00\x01\x00\x00\x00\x01\x00\x04\x8d\x76\ -\x00\x00\x01\x77\xc0\x99\xe7\xc9\ -\x00\x00\x02\x66\x00\x01\x00\x00\x00\x01\x00\x00\x40\x6f\ -\x00\x00\x01\x77\xc0\x9a\x77\x2d\ -\x00\x00\x07\xb0\x00\x00\x00\x00\x00\x01\x00\x00\xdd\x36\ -\x00\x00\x01\x77\xc0\x9a\x28\xa9\ -\x00\x00\x24\x2a\x00\x00\x00\x00\x00\x01\x00\x04\x23\x9c\ -\x00\x00\x01\x77\xc0\x99\xa1\x25\ -\x00\x00\x2f\xa0\x00\x01\x00\x00\x00\x01\x00\x05\x77\xea\ -\x00\x00\x01\x77\xc0\x97\x4e\xf8\ -\x00\x00\x0b\xea\x00\x00\x00\x00\x00\x01\x00\x01\x66\xe5\ -\x00\x00\x01\x77\xc0\x96\x1c\x83\ -\x00\x00\x22\x0e\x00\x00\x00\x00\x00\x01\x00\x03\xde\x77\ -\x00\x00\x01\x77\xc0\x93\x0a\xe1\ -\x00\x00\x13\xea\x00\x00\x00\x00\x00\x01\x00\x02\x3d\xab\ -\x00\x00\x01\x77\xc0\x9a\x5e\xf5\ -\x00\x00\x1a\x84\x00\x01\x00\x00\x00\x01\x00\x03\x03\xea\ -\x00\x00\x01\x77\xc0\x9a\xd2\x26\ -\x00\x00\x17\xae\x00\x00\x00\x00\x00\x01\x00\x02\xa3\x79\ -\x00\x00\x01\x77\xc0\x97\xef\x08\ -\x00\x00\x0d\x9e\x00\x00\x00\x00\x00\x01\x00\x01\x96\x14\ -\x00\x00\x01\x77\xc0\x97\xde\x38\ -\x00\x00\x22\x7a\x00\x00\x00\x00\x00\x01\x00\x03\xf6\x43\ -\x00\x00\x01\x77\xc0\x9a\x15\xd9\ +\x00\x00\x0b\x14\x00\x01\x00\x00\x00\x01\x00\x01\x41\x77\ +\x00\x00\x01\x77\xbf\xef\x0a\x50\ +\x00\x00\x17\xcc\x00\x00\x00\x00\x00\x01\x00\x02\x92\xe1\ +\x00\x00\x01\x77\xbf\xf4\xfd\xc0\ +\x00\x00\x12\xce\x00\x01\x00\x00\x00\x01\x00\x01\xe4\xa3\ +\x00\x00\x01\x77\xbf\xf1\x92\xc0\ +\x00\x00\x1a\x74\x00\x00\x00\x00\x00\x01\x00\x02\xd2\xb0\ +\x00\x00\x01\x77\xbf\xef\xbe\x00\ +\x00\x00\x26\xa8\x00\x01\x00\x00\x00\x01\x00\x04\x4b\x17\ +\x00\x00\x01\x77\xbf\xed\x6c\x40\ +\x00\x00\x26\xa8\x00\x01\x00\x00\x00\x01\x00\x04\x51\x19\ +\x00\x00\x01\x77\xbf\xed\x6c\x40\ +\x00\x00\x0c\x5a\x00\x01\x00\x00\x00\x01\x00\x01\x51\x72\ +\x00\x00\x01\x77\xbf\xf0\x42\xd0\ +\x00\x00\x2c\x3c\x00\x00\x00\x00\x00\x01\x00\x04\xe8\x08\ +\x00\x00\x01\x77\xbf\xf1\x1d\x90\ +\x00\x00\x1c\xb2\x00\x01\x00\x00\x00\x01\x00\x03\x2a\x83\ +\x00\x00\x01\x77\xbf\xf2\x75\x50\ +\x00\x00\x00\xe8\x00\x01\x00\x00\x00\x01\x00\x00\x11\x84\ +\x00\x00\x01\x77\xbf\xec\x81\xe0\ +\x00\x00\x08\x76\x00\x00\x00\x00\x00\x01\x00\x00\xec\xbb\ +\x00\x00\x01\x77\xbf\xf9\x1c\x70\ +\x00\x00\x1c\x52\x00\x01\x00\x00\x00\x01\x00\x03\x23\x42\ +\x00\x00\x01\x77\xbf\xf0\x62\x10\ +\x00\x00\x11\x1e\x00\x01\x00\x00\x00\x01\x00\x01\xb6\xeb\ +\x00\x00\x01\x77\xbf\xee\xfa\xb0\ +\x00\x00\x0d\x3c\x00\x00\x00\x00\x00\x01\x00\x01\x67\xbd\ +\x00\x00\x01\x77\xbf\xf3\x01\xf0\ +\x00\x00\x14\x2e\x00\x00\x00\x00\x00\x01\x00\x02\x05\xcb\ +\x00\x00\x01\x77\xbf\xee\x27\xc0\ +\x00\x00\x20\x50\x00\x01\x00\x00\x00\x01\x00\x03\x8f\x3e\ +\x00\x00\x01\x77\xbf\xef\x87\x50\ +\x00\x00\x2f\x82\x00\x01\x00\x00\x00\x01\x00\x05\x4f\xf3\ +\x00\x00\x01\x77\xbf\xed\xe1\x70\ +\x00\x00\x04\x48\x00\x01\x00\x00\x00\x01\x00\x00\x7f\x41\ +\x00\x00\x01\x77\xbf\xee\x10\x50\ +\x00\x00\x2b\xd4\x00\x01\x00\x00\x00\x01\x00\x04\xde\x7a\ +\x00\x00\x01\x77\xbf\xef\xfc\x80\ +\x00\x00\x06\xa2\x00\x00\x00\x00\x00\x01\x00\x00\xb9\x88\ +\x00\x00\x01\x77\xbf\xf5\x05\x90\ +\x00\x00\x23\xae\x00\x01\x00\x00\x00\x01\x00\x03\xef\x35\ +\x00\x00\x01\x77\xbf\xed\xca\x00\ +\x00\x00\x25\x60\x00\x00\x00\x00\x00\x01\x00\x04\x2c\xc0\ +\x00\x00\x01\x77\xbf\xf1\x06\x20\ +\x00\x00\x0b\x6c\x00\x01\x00\x00\x00\x01\x00\x01\x45\xd9\ +\x00\x00\x01\x77\xbf\xf3\x67\x80\ +\x00\x00\x1f\x70\x00\x01\x00\x00\x00\x01\x00\x03\x6d\x7c\ +\x00\x00\x01\x77\xbf\xf2\x46\x70\ +\x00\x00\x03\xde\x00\x00\x00\x00\x00\x01\x00\x00\x72\xd6\ +\x00\x00\x01\x77\xbf\xed\x93\x50\ +\x00\x00\x1a\xf2\x00\x00\x00\x00\x00\x01\x00\x02\xe8\xfc\ +\x00\x00\x01\x77\xbf\xec\xb8\x90\ +\x00\x00\x0f\xd8\x00\x01\x00\x00\x00\x01\x00\x01\x9b\x50\ +\x00\x00\x01\x77\xbf\xf4\xa7\xd0\ +\x00\x00\x15\x78\x00\x01\x00\x00\x00\x01\x00\x02\x32\x25\ +\x00\x00\x01\x77\xbf\xee\x95\x20\ +\x00\x00\x2d\xee\x00\x00\x00\x00\x00\x01\x00\x05\x17\xaf\ +\x00\x00\x01\x77\xbf\xef\x29\x90\ +\x00\x00\x2d\x92\x00\x00\x00\x00\x00\x01\x00\x05\x0d\x95\ +\x00\x00\x01\x77\xbf\xf1\x83\x20\ +\x00\x00\x1a\x08\x00\x01\x00\x00\x00\x01\x00\x02\xca\xb6\ +\x00\x00\x01\x77\xbf\xf0\x52\x70\ +\x00\x00\x21\x36\x00\x01\x00\x00\x00\x01\x00\x03\x9f\xd2\ +\x00\x00\x01\x77\xbf\xf1\xe0\xe0\ +\x00\x00\x11\x8e\x00\x01\x00\x00\x00\x01\x00\x01\xbd\x9e\ +\x00\x00\x01\x77\xbf\xee\xc4\x00\ +\x00\x00\x2c\x9e\x00\x01\x00\x00\x00\x01\x00\x04\xf1\xa5\ +\x00\x00\x01\x77\xbf\xee\xd3\xa0\ +\x00\x00\x16\xf2\x00\x01\x00\x00\x00\x01\x00\x02\x81\x21\ +\x00\x00\x01\x77\xbf\xee\x5e\x70\ +\x00\x00\x1e\x96\x00\x01\x00\x00\x00\x01\x00\x03\x58\xb9\ +\x00\x00\x01\x77\xdd\x85\x79\x00\ +\x00\x00\x1b\x70\x00\x01\x00\x00\x00\x01\x00\x02\xfb\x74\ +\x00\x00\x01\x77\xbf\xf9\x91\xa0\ +\x00\x00\x1b\x70\x00\x01\x00\x00\x00\x01\x00\x03\x06\x50\ +\x00\x00\x01\x77\xbf\xf9\x91\xa0\ +\x00\x00\x27\xec\x00\x01\x00\x00\x00\x01\x00\x04\x6f\x82\ +\x00\x00\x01\x77\xbf\xf4\x03\xc0\ +\x00\x00\x0b\xde\x00\x01\x00\x00\x00\x01\x00\x01\x4b\xa5\ +\x00\x00\x01\x77\xbf\xfa\x45\x50\ +\x00\x00\x18\x56\x00\x01\x00\x00\x00\x01\x00\x02\xa9\x55\ +\x00\x00\x01\x77\xbf\xf1\xb2\x00\ +\x00\x00\x16\x1c\x00\x00\x00\x00\x00\x01\x00\x02\x5d\x26\ +\x00\x00\x01\x77\xbf\xf0\xee\xb0\ +\x00\x00\x13\xb0\x00\x01\x00\x00\x00\x01\x00\x01\xff\x6e\ +\x00\x00\x01\x77\xbf\xf4\x51\xe0\ +\x00\x00\x07\x94\x00\x01\x00\x00\x00\x01\x00\x00\xdf\x99\ +\x00\x00\x01\x77\xbf\xed\xaa\xc0\ +\x00\x00\x2f\xee\x00\x00\x00\x00\x00\x01\x00\x05\x59\x40\ +\x00\x00\x01\x77\xbf\xec\x91\x80\ +\x00\x00\x12\x0c\x00\x01\x00\x00\x00\x01\x00\x01\xd0\x4a\ +\x00\x00\x01\x77\xbf\xed\xba\x60\ +\x00\x00\x08\xe0\x00\x00\x00\x00\x00\x01\x00\x00\xf7\x18\ +\x00\x00\x01\x77\xbf\xed\x83\xb0\ +\x00\x00\x21\xb4\x00\x01\x00\x00\x00\x01\x00\x03\xad\x00\ +\x00\x00\x01\x77\xbf\xf1\x63\xe0\ +\x00\x00\x13\x3e\x00\x00\x00\x00\x00\x01\x00\x01\xec\xb8\ +\x00\x00\x01\x77\xbf\xf5\xb9\x40\ +\x00\x00\x17\x6a\x00\x00\x00\x00\x00\x01\x00\x02\x88\x83\ +\x00\x00\x01\x77\xbf\xf1\x35\x00\ +\x00\x00\x09\xc8\x00\x01\x00\x00\x00\x01\x00\x01\x0f\xb3\ +\x00\x00\x01\x77\xbf\xf2\x94\x90\ +\x00\x00\x22\xe2\x00\x00\x00\x00\x00\x01\x00\x03\xd4\x13\ +\x00\x00\x01\x77\xbf\xef\xae\x60\ +\x00\x00\x19\xa0\x00\x01\x00\x00\x00\x01\x00\x02\xc3\x5c\ +\x00\x00\x01\x77\xbf\xfa\xf9\x00\ +\x00\x00\x03\x72\x00\x00\x00\x00\x00\x01\x00\x00\x60\xa8\ +\x00\x00\x01\x77\xbf\xea\xdc\x00\ +\x00\x00\x0a\x2a\x00\x00\x00\x00\x00\x01\x00\x01\x16\xae\ +\x00\x00\x01\x77\xbf\xed\x1e\x20\ +\x00\x00\x1d\x72\x00\x01\x00\x00\x00\x01\x00\x03\x3d\xf3\ +\x00\x00\x01\x77\xbf\xef\x19\xf0\ +\x00\x00\x15\xf8\x00\x00\x00\x00\x00\x01\x00\x02\x48\xd9\ +\x00\x00\x01\x77\x6e\xb1\xb5\x20\ +\x00\x00\x2d\x18\x00\x01\x00\x00\x00\x01\x00\x04\xfa\xa8\ +\x00\x00\x01\x77\xbf\xee\xac\x90\ +\x00\x00\x07\x32\x00\x00\x00\x00\x00\x01\x00\x00\xcf\xf0\ +\x00\x00\x01\x77\xbf\xef\x96\xf0\ +\x00\x00\x15\x02\x00\x00\x00\x00\x00\x01\x00\x02\x1e\xa7\ +\x00\x00\x01\x77\xbf\xf1\x3c\xd0\ +\x00\x00\x20\xba\x00\x01\x00\x00\x00\x01\x00\x03\x95\xd6\ +\x00\x00\x01\x77\xbf\xf5\x6b\x20\ +\x00\x00\x26\x3e\x00\x00\x00\x00\x00\x01\x00\x04\x3e\x3e\ +\x00\x00\x01\x77\xbf\xf0\x98\xc0\ +\x00\x00\x00\x80\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\x77\xbf\xec\x5a\xd0\ +\x00\x00\x24\x1e\x00\x01\x00\x00\x00\x01\x00\x03\xf6\x35\ +\x00\x00\x01\x77\xbf\xed\x35\x90\ +\x00\x00\x29\x88\x00\x00\x00\x00\x00\x01\x00\x04\x9c\xd7\ +\x00\x00\x01\x77\xbf\xf0\xb0\x30\ +\x00\x00\x2a\x4e\x00\x01\x00\x00\x00\x01\x00\x04\xaf\x65\ +\x00\x00\x01\x77\xbf\xec\x33\xc0\ +\x00\x00\x2e\xc0\x00\x01\x00\x00\x00\x01\x00\x05\x3a\x69\ +\x00\x00\x01\x77\xbf\xf2\x27\x30\ +\x00\x00\x28\xcc\x00\x00\x00\x00\x00\x01\x00\x04\x82\xa6\ +\x00\x00\x01\x77\xbf\xf0\xd7\x40\ +\x00\x00\x1d\x0c\x00\x01\x00\x00\x00\x01\x00\x03\x33\x78\ +\x00\x00\x01\x77\xbf\xf5\x82\x90\ +\x00\x00\x09\x4a\x00\x01\x00\x00\x00\x01\x00\x01\x06\x24\ +\x00\x00\x01\x77\xbf\xf1\xc9\x70\ +\x00\x00\x01\x58\x00\x01\x00\x00\x00\x01\x00\x00\x1a\x8e\ +\x00\x00\x01\x77\xbf\xf2\x0f\xc0\ +\x00\x00\x0c\xd6\x00\x00\x00\x00\x00\x01\x00\x01\x5c\x9d\ +\x00\x00\x01\x77\xbf\xf4\x71\x20\ +\x00\x00\x2b\x76\x00\x00\x00\x00\x00\x01\x00\x04\xd2\x89\ +\x00\x00\x01\x77\xbf\xf0\x13\xf0\ +\x00\x00\x2f\x20\x00\x00\x00\x00\x00\x01\x00\x05\x42\xca\ +\x00\x00\x01\x77\xbf\xef\x41\x00\ +\x00\x00\x0e\x1c\x00\x01\x00\x00\x00\x01\x00\x01\x7e\x1c\ +\x00\x00\x01\x77\xbf\xf1\xa2\x60\ +\x00\x00\x22\x80\x00\x01\x00\x00\x00\x01\x00\x03\xbe\xda\ +\x00\x00\x01\x77\xbf\xf0\xc7\xa0\ +\x00\x00\x18\xcc\x00\x01\x00\x00\x00\x01\x00\x02\xb2\x32\ +\x00\x00\x01\x77\xbf\xf7\xd4\x50\ +\x00\x00\x2a\x9e\x00\x00\x00\x00\x00\x01\x00\x04\xc2\x2b\ +\x00\x00\x01\x77\xbf\xef\xe5\x10\ +\x00\x00\x31\x36\x00\x01\x00\x00\x00\x01\x00\x05\x86\x79\ +\x00\x00\x01\x77\xbf\xf4\x61\x80\ +\x00\x00\x12\x70\x00\x00\x00\x00\x00\x01\x00\x01\xd7\x05\ +\x00\x00\x01\x77\xbf\xf2\x56\x10\ +\x00\x00\x25\x02\x00\x00\x00\x00\x00\x01\x00\x04\x1f\x01\ +\x00\x00\x01\x77\xbf\xf2\xac\x00\ +\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x00\x88\x42\ +\x00\x00\x01\x77\xbf\xf4\x90\x60\ +\x00\x00\x04\xb4\x00\x01\x00\x00\x00\x01\x00\x00\x91\x12\ +\x00\x00\x01\x77\xbf\xf4\x90\x60\ +\x00\x00\x31\xb6\x00\x01\x00\x00\x00\x01\x00\x05\x8c\xd6\ +\x00\x00\x01\x77\xbf\xec\xd7\xd0\ +\x00\x00\x2a\xfc\x00\x01\x00\x00\x00\x01\x00\x04\xcc\x52\ +\x00\x00\x01\x77\xbf\xf4\x42\x40\ +\x00\x00\x28\x50\x00\x01\x00\x00\x00\x01\x00\x04\x79\xb0\ +\x00\x00\x01\x77\xbf\xee\x75\xe0\ +\x00\x00\x27\x7e\x00\x01\x00\x00\x00\x01\x00\x04\x68\x16\ +\x00\x00\x01\x77\xbf\xf5\x2c\xa0\ +\x00\x00\x19\x38\x00\x01\x00\x00\x00\x01\x00\x02\xba\xaa\ +\x00\x00\x01\x77\xbf\xef\x68\x10\ +\x00\x00\x1d\xd4\x00\x01\x00\x00\x00\x01\x00\x03\x44\xa5\ +\x00\x00\x01\x77\xbf\xf1\x73\x80\ +\x00\x00\x02\xae\x00\x00\x00\x00\x00\x01\x00\x00\x49\x29\ +\x00\x00\x01\x77\xbf\xf2\xcb\x40\ +\x00\x00\x02\x2e\x00\x01\x00\x00\x00\x01\x00\x00\x41\xea\ +\x00\x00\x01\x77\xbf\xf2\xbb\xa0\ +\x00\x00\x0e\x82\x00\x01\x00\x00\x00\x01\x00\x01\x85\x6c\ +\x00\x00\x01\x77\xbf\xf2\x65\xb0\ +\x00\x00\x03\x0a\x00\x01\x00\x00\x00\x01\x00\x00\x5a\xc3\ +\x00\x00\x01\x77\xbf\xef\xd5\x70\ +\x00\x00\x03\x0a\x00\x01\x00\x00\x00\x01\x00\x00\x54\xde\ +\x00\x00\x01\x77\xbf\xef\xd5\x70\ +\x00\x00\x30\x5a\x00\x00\x00\x00\x00\x01\x00\x05\x6e\x2f\ +\x00\x00\x01\x77\xbf\xf3\x30\xd0\ +\x00\x00\x14\x94\x00\x01\x00\x00\x00\x01\x00\x02\x14\x6d\ +\x00\x00\x01\x77\xbf\xee\x00\xb0\ +\x00\x00\x24\x94\x00\x00\x00\x00\x00\x01\x00\x04\x02\x35\ +\x00\x00\x01\x77\xbf\xed\xf1\x10\ +\x00\x00\x1e\x3a\x00\x01\x00\x00\x00\x01\x00\x03\x4e\x47\ +\x00\x00\x01\x77\xbf\xf4\xbf\x40\ +\x00\x00\x08\x08\x00\x01\x00\x00\x00\x01\x00\x00\xe6\x0e\ +\x00\x00\x01\x77\xbf\xf4\x23\x00\ +\x00\x00\x01\xcc\x00\x00\x00\x00\x00\x01\x00\x00\x32\x42\ +\x00\x00\x01\x77\xbf\xee\xe3\x40\ +\x00\x00\x0f\x02\x00\x01\x00\x00\x00\x01\x00\x01\x8c\x6a\ +\x00\x00\x01\x77\xbf\xf0\x79\x80\ +\x00\x00\x30\xc8\x00\x00\x00\x00\x00\x01\x00\x05\x7d\xb1\ +\x00\x00\x01\x77\xbf\xed\x5c\xa0\ +\x00\x00\x06\x28\x00\x01\x00\x00\x00\x01\x00\x00\xb1\x0f\ +\x00\x00\x01\x77\xbf\xf3\x77\x20\ +\x00\x00\x29\x2c\x00\x00\x00\x00\x00\x01\x00\x04\x91\x23\ +\x00\x00\x01\x77\xbf\xf3\x57\xe0\ +\x00\x00\x23\x3e\x00\x00\x00\x00\x00\x01\x00\x03\xe1\x94\ +\x00\x00\x01\x77\xbf\xf2\xea\x80\ +\x00\x00\x25\xc4\x00\x01\x00\x00\x00\x01\x00\x04\x37\x71\ +\x00\x00\x01\x77\xbf\xf8\xfd\x30\ +\x00\x00\x15\x62\x00\x01\x00\x00\x00\x01\x00\x02\x2a\xf0\ +\x00\x00\x01\x77\xbf\xf5\xef\xf0\ +\x00\x00\x05\x2e\x00\x01\x00\x00\x00\x01\x00\x00\x99\xe2\ +\x00\x00\x01\x77\xbf\xf1\xf8\x50\ +\x00\x00\x05\xb2\x00\x01\x00\x00\x00\x01\x00\x00\xa9\x73\ +\x00\x00\x01\x77\xbf\xf3\x8e\x90\ +\x00\x00\x1f\x06\x00\x00\x00\x00\x00\x01\x00\x03\x5f\x1d\ +\x00\x00\x01\x77\xbf\xf4\xe6\x50\ +\x00\x00\x16\x88\x00\x01\x00\x00\x00\x01\x00\x02\x70\x9c\ +\x00\x00\x01\x77\xbf\xee\x4e\xd0\ +\x00\x00\x29\xe2\x00\x01\x00\x00\x00\x01\x00\x04\xa9\x9f\ +\x00\x00\x01\x77\xbf\xf5\x1d\x00\ +\x00\x00\x0f\x6c\x00\x01\x00\x00\x00\x01\x00\x01\x95\x66\ +\x00\x00\x01\x77\xbf\xf5\xa9\xa0\ +\x00\x00\x1b\xe2\x00\x00\x00\x00\x00\x01\x00\x03\x11\x2c\ +\x00\x00\x01\x77\xbf\xf5\x5b\x80\ +\x00\x00\x27\x16\x00\x00\x00\x00\x00\x01\x00\x04\x57\x1b\ +\x00\x00\x01\x77\xbf\xf4\xd6\xb0\ +\x00\x00\x10\x62\x00\x01\x00\x00\x00\x01\x00\x01\xa1\xcb\ +\x00\x00\x01\x77\xbf\xf2\x84\xf0\ +\x00\x00\x22\x1c\x00\x00\x00\x00\x00\x01\x00\x03\xb2\x94\ +\x00\x00\x01\x77\xbf\xf1\x54\x40\ +\x00\x00\x2e\x54\x00\x00\x00\x00\x00\x01\x00\x05\x22\x9d\ +\x00\x00\x01\x77\xbf\xee\x3f\x30\ +\x00\x00\x10\xc6\x00\x00\x00\x00\x00\x01\x00\x01\xab\x8b\ +\x00\x00\x01\x77\xbf\xf5\x92\x30\ +\x00\x00\x05\x9a\x00\x01\x00\x00\x00\x01\x00\x00\xa4\x8c\ +\x00\x00\x01\x77\xbf\xf6\x07\x60\ +\x00\x00\x0a\x96\x00\x00\x00\x00\x00\x01\x00\x01\x28\xd2\ +\x00\x00\x01\x77\xbf\xf3\x21\x30\ +\x00\x00\x0d\xae\x00\x00\x00\x00\x00\x01\x00\x01\x73\xc3\ +\x00\x00\x01\x77\xbf\xf3\x11\x90\ +\x00\x00\x1f\xd8\x00\x00\x00\x00\x00\x01\x00\x03\x83\x7d\ +\x00\x00\x01\x77\xbf\xf5\x4b\xe0\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] diff --git a/ui/semiautomaticclassificationplugindialog.py b/ui/semiautomaticclassificationplugindialog.py index 91927b1..348d88d 100644 --- a/ui/semiautomaticclassificationplugindialog.py +++ b/ui/semiautomaticclassificationplugindialog.py @@ -165,6 +165,9 @@ def reference_field_combo2(self, field): def statistic_name_combo(self, field): self.ui.statistic_name_combobox.addItem(field) + def statistic_name_combo2(self, field): + self.ui.statistic_name_combobox_2.addItem(field) + # create the dialog class DockClassDialog(QtWidgets.QDockWidget): def __init__(self, parent, iface): diff --git a/ui/ui_semiautomaticclassificationplugin.py b/ui/ui_semiautomaticclassificationplugin.py index d429328..c8b1fad 100644 --- a/ui/ui_semiautomaticclassificationplugin.py +++ b/ui/ui_semiautomaticclassificationplugin.py @@ -168,123 +168,119 @@ def setupUi(self, SemiAutomaticClassificationPlugin): item_1.setIcon(0, icon21) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon22 = QtGui.QIcon() - icon22.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reproject_raster_bands.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon22.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_neighbor_pixels.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon22) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon23 = QtGui.QIcon() - icon23.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_split_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon23.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reproject_raster_bands.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon23) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon24 = QtGui.QIcon() - icon24.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_stack_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon24.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_split_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon24) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon25 = QtGui.QIcon() - icon25.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_vector_to_raster_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon25.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_stack_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon25) + item_1 = QtWidgets.QTreeWidgetItem(item_0) + icon26 = QtGui.QIcon() + icon26.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_vector_to_raster_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_1.setIcon(0, icon26) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() font.setBold(True) font.setWeight(75) item_0.setFont(0, font) - icon26 = QtGui.QIcon() - icon26.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_band_processing.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_0.setIcon(0, icon26) - item_1 = QtWidgets.QTreeWidgetItem(item_0) icon27 = QtGui.QIcon() - icon27.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_band_combination_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_1.setIcon(0, icon27) + icon27.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_band_processing.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_0.setIcon(0, icon27) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon28 = QtGui.QIcon() - icon28.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon28.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_band_combination_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon28) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon29 = QtGui.QIcon() - icon29.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_kmeans_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon29.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon29) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon30 = QtGui.QIcon() - icon30.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_pca_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon30.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_kmeans_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon30) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon31 = QtGui.QIcon() - icon31.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_random_forest.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon31.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_pca_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon31) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon32 = QtGui.QIcon() - icon32.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_spectral_distance.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon32.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_random_forest.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon32) + item_1 = QtWidgets.QTreeWidgetItem(item_0) + icon33 = QtGui.QIcon() + icon33.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_spectral_distance.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_1.setIcon(0, icon33) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() font.setBold(True) font.setWeight(75) item_0.setFont(0, font) - icon33 = QtGui.QIcon() - icon33.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_post_process.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_0.setIcon(0, icon33) - item_1 = QtWidgets.QTreeWidgetItem(item_0) icon34 = QtGui.QIcon() - icon34.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_accuracy_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_1.setIcon(0, icon34) + icon34.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_post_process.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_0.setIcon(0, icon34) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon35 = QtGui.QIcon() - icon35.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_dilation.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon35.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_accuracy_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon35) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon36 = QtGui.QIcon() - icon36.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_erosion.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon36.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_dilation.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon36) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon37 = QtGui.QIcon() - icon37.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_report_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon37.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_erosion.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon37) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon38 = QtGui.QIcon() - icon38.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_class_to_vector_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon38.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_report_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon38) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon39 = QtGui.QIcon() - icon39.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_sieve.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon39.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_class_to_vector_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon39) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon40 = QtGui.QIcon() - icon40.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_class_signature_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon40.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_classification_sieve.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon40) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon41 = QtGui.QIcon() - icon41.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_cross_classification.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon41.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_class_signature_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon41) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon42 = QtGui.QIcon() - icon42.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_edit_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon42.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_cross_classification.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon42) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon43 = QtGui.QIcon() - icon43.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_land_cover_change.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon43.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_edit_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon43) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon44 = QtGui.QIcon() - icon44.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reclassification_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon44.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_land_cover_change.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon44) item_1 = QtWidgets.QTreeWidgetItem(item_0) icon45 = QtGui.QIcon() - icon45.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_zonal_stat_raster_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon45.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reclassification_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_1.setIcon(0, icon45) - item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) - font = QtGui.QFont() - font.setBold(True) - font.setWeight(75) - item_0.setFont(0, font) + item_1 = QtWidgets.QTreeWidgetItem(item_0) icon46 = QtGui.QIcon() - icon46.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_0.setIcon(0, icon46) + icon46.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_zonal_stat_raster_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_1.setIcon(0, icon46) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() font.setBold(True) font.setWeight(75) item_0.setFont(0, font) icon47 = QtGui.QIcon() - icon47.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon47.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_0.setIcon(0, icon47) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() @@ -292,27 +288,35 @@ def setupUi(self, SemiAutomaticClassificationPlugin): font.setWeight(75) item_0.setFont(0, font) icon48 = QtGui.QIcon() - icon48.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_settings_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon48.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_0.setIcon(0, icon48) - item_1 = QtWidgets.QTreeWidgetItem(item_0) - item_1 = QtWidgets.QTreeWidgetItem(item_0) - item_1 = QtWidgets.QTreeWidgetItem(item_0) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + item_0.setFont(0, font) icon49 = QtGui.QIcon() - icon49.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/guide.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon49.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_settings_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_0.setIcon(0, icon49) + item_1 = QtWidgets.QTreeWidgetItem(item_0) + item_1 = QtWidgets.QTreeWidgetItem(item_0) + item_1 = QtWidgets.QTreeWidgetItem(item_0) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) icon50 = QtGui.QIcon() - icon50.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/help.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + icon50.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/guide.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) item_0.setIcon(0, icon50) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) + icon51 = QtGui.QIcon() + icon51.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/help.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_0.setIcon(0, icon51) + item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() font.setBold(True) font.setWeight(75) item_0.setFont(0, font) - icon51 = QtGui.QIcon() - icon51.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/fromGIStoRS.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - item_0.setIcon(0, icon51) + icon52 = QtGui.QIcon() + icon52.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/fromGIStoRS.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + item_0.setIcon(0, icon52) item_0 = QtWidgets.QTreeWidgetItem(self.menu_treeWidget) font = QtGui.QFont() font.setBold(True) @@ -391,17 +395,17 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_50.addWidget(self.unit_combo, 0, 1, 1, 1) self.export_bandset_toolButton = QtWidgets.QToolButton(self.tab_band_set) self.export_bandset_toolButton.setStyleSheet("margin: 0px;padding: 0px") - icon52 = QtGui.QIcon() - icon52.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_export.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.export_bandset_toolButton.setIcon(icon52) + icon53 = QtGui.QIcon() + icon53.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_export.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.export_bandset_toolButton.setIcon(icon53) self.export_bandset_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_bandset_toolButton.setObjectName("export_bandset_toolButton") self.gridLayout_50.addWidget(self.export_bandset_toolButton, 0, 5, 1, 1) self.import_bandset_toolButton = QtWidgets.QToolButton(self.tab_band_set) self.import_bandset_toolButton.setStyleSheet("margin: 0px;padding: 0px") - icon53 = QtGui.QIcon() - icon53.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_import.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.import_bandset_toolButton.setIcon(icon53) + icon54 = QtGui.QIcon() + icon54.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_import.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.import_bandset_toolButton.setIcon(icon54) self.import_bandset_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_bandset_toolButton.setObjectName("import_bandset_toolButton") self.gridLayout_50.addWidget(self.import_bandset_toolButton, 0, 4, 1, 1) @@ -482,25 +486,25 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_60.setObjectName("gridLayout_60") self.toolButton_reload_3 = QtWidgets.QToolButton(self.widget_5) self.toolButton_reload_3.setStyleSheet("margin: 0px;padding: 0px") - icon54 = QtGui.QIcon() - icon54.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reload.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.toolButton_reload_3.setIcon(icon54) + icon55 = QtGui.QIcon() + icon55.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reload.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.toolButton_reload_3.setIcon(icon55) self.toolButton_reload_3.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_3.setObjectName("toolButton_reload_3") self.gridLayout_60.addWidget(self.toolButton_reload_3, 1, 0, 1, 1) self.select_all_bands_Button = QtWidgets.QToolButton(self.widget_5) self.select_all_bands_Button.setStyleSheet("margin: 0px;padding: 0px;") - icon55 = QtGui.QIcon() - icon55.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_select_all.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.select_all_bands_Button.setIcon(icon55) + icon56 = QtGui.QIcon() + icon56.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_select_all.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.select_all_bands_Button.setIcon(icon56) self.select_all_bands_Button.setIconSize(QtCore.QSize(22, 22)) self.select_all_bands_Button.setObjectName("select_all_bands_Button") self.gridLayout_60.addWidget(self.select_all_bands_Button, 2, 0, 1, 1) self.add_raster_bands_Button = QtWidgets.QToolButton(self.widget_5) self.add_raster_bands_Button.setStyleSheet("margin: 0px;padding: 0px") - icon56 = QtGui.QIcon() - icon56.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_plus.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.add_raster_bands_Button.setIcon(icon56) + icon57 = QtGui.QIcon() + icon57.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_plus.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.add_raster_bands_Button.setIcon(icon57) self.add_raster_bands_Button.setIconSize(QtCore.QSize(22, 22)) self.add_raster_bands_Button.setObjectName("add_raster_bands_Button") self.gridLayout_60.addWidget(self.add_raster_bands_Button, 3, 0, 1, 1) @@ -559,17 +563,17 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_169.setObjectName("gridLayout_169") self.remove_toolButton = QtWidgets.QToolButton(self.widget_6) self.remove_toolButton.setStyleSheet("margin: 0px;padding: 0px") - icon57 = QtGui.QIcon() - icon57.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_remove.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.remove_toolButton.setIcon(icon57) + icon58 = QtGui.QIcon() + icon58.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_remove.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.remove_toolButton.setIcon(icon58) self.remove_toolButton.setIconSize(QtCore.QSize(22, 22)) self.remove_toolButton.setObjectName("remove_toolButton") self.gridLayout_169.addWidget(self.remove_toolButton, 0, 0, 1, 1) self.clear_bandset_toolButton = QtWidgets.QToolButton(self.widget_6) self.clear_bandset_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon58 = QtGui.QIcon() - icon58.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reset.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.clear_bandset_toolButton.setIcon(icon58) + icon59 = QtGui.QIcon() + icon59.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_reset.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.clear_bandset_toolButton.setIcon(icon59) self.clear_bandset_toolButton.setIconSize(QtCore.QSize(22, 22)) self.clear_bandset_toolButton.setObjectName("clear_bandset_toolButton") self.gridLayout_169.addWidget(self.clear_bandset_toolButton, 1, 0, 1, 1) @@ -578,33 +582,33 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_127.setObjectName("gridLayout_127") self.sort_by_name_toolButton = QtWidgets.QToolButton(self.widget_6) self.sort_by_name_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon59 = QtGui.QIcon() - icon59.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_order_by_name.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.sort_by_name_toolButton.setIcon(icon59) + icon60 = QtGui.QIcon() + icon60.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_order_by_name.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.sort_by_name_toolButton.setIcon(icon60) self.sort_by_name_toolButton.setIconSize(QtCore.QSize(22, 22)) self.sort_by_name_toolButton.setObjectName("sort_by_name_toolButton") self.gridLayout_127.addWidget(self.sort_by_name_toolButton, 3, 0, 1, 1) self.move_up_toolButton = QtWidgets.QToolButton(self.widget_6) self.move_up_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon60 = QtGui.QIcon() - icon60.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_move_up.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.move_up_toolButton.setIcon(icon60) + icon61 = QtGui.QIcon() + icon61.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_move_up.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.move_up_toolButton.setIcon(icon61) self.move_up_toolButton.setIconSize(QtCore.QSize(22, 22)) self.move_up_toolButton.setObjectName("move_up_toolButton") self.gridLayout_127.addWidget(self.move_up_toolButton, 1, 0, 1, 1) self.move_down_toolButton = QtWidgets.QToolButton(self.widget_6) self.move_down_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon61 = QtGui.QIcon() - icon61.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_move_down.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.move_down_toolButton.setIcon(icon61) + icon62 = QtGui.QIcon() + icon62.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_move_down.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.move_down_toolButton.setIcon(icon62) self.move_down_toolButton.setIconSize(QtCore.QSize(22, 22)) self.move_down_toolButton.setObjectName("move_down_toolButton") self.gridLayout_127.addWidget(self.move_down_toolButton, 2, 0, 1, 1) self.add_band_set_toolButton = QtWidgets.QToolButton(self.widget_6) self.add_band_set_toolButton.setStyleSheet("margin: 0px;padding: 0px") - icon62 = QtGui.QIcon() - icon62.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_add_bandset_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.add_band_set_toolButton.setIcon(icon62) + icon63 = QtGui.QIcon() + icon63.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_add_bandset_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.add_band_set_toolButton.setIcon(icon63) self.add_band_set_toolButton.setIconSize(QtCore.QSize(22, 22)) self.add_band_set_toolButton.setObjectName("add_band_set_toolButton") self.gridLayout_127.addWidget(self.add_band_set_toolButton, 0, 0, 1, 1) @@ -642,9 +646,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_set_process_toolButton.setFont(font) self.band_set_process_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.band_set_process_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon63 = QtGui.QIcon() - icon63.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_run.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.band_set_process_toolButton.setIcon(icon63) + icon64 = QtGui.QIcon() + icon64.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_run.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.band_set_process_toolButton.setIcon(icon64) self.band_set_process_toolButton.setIconSize(QtCore.QSize(34, 34)) self.band_set_process_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.band_set_process_toolButton.setObjectName("band_set_process_toolButton") @@ -654,7 +658,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_130.setObjectName("gridLayout_130") self.toolButton_reload = QtWidgets.QToolButton(self.tab_band_set) self.toolButton_reload.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload.setIcon(icon54) + self.toolButton_reload.setIcon(icon55) self.toolButton_reload.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload.setObjectName("toolButton_reload") self.gridLayout_130.addWidget(self.toolButton_reload, 1, 4, 1, 1) @@ -666,9 +670,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_130.addWidget(self.label_39, 0, 0, 1, 5) self.toolButton_input_raster = QtWidgets.QToolButton(self.tab_band_set) self.toolButton_input_raster.setStyleSheet("margin: 0px;padding: 0px;") - icon64 = QtGui.QIcon() - icon64.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_file.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.toolButton_input_raster.setIcon(icon64) + icon65 = QtGui.QIcon() + icon65.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_file.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.toolButton_input_raster.setIcon(icon65) self.toolButton_input_raster.setIconSize(QtCore.QSize(22, 22)) self.toolButton_input_raster.setObjectName("toolButton_input_raster") self.gridLayout_130.addWidget(self.toolButton_input_raster, 1, 3, 1, 1) @@ -708,19 +712,19 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_244.addItem(spacerItem2, 3, 0, 1, 1) self.sort_by_name_toolButton_2 = QtWidgets.QToolButton(self.tab_RGB) self.sort_by_name_toolButton_2.setStyleSheet("margin: 0px;padding: 0px;") - self.sort_by_name_toolButton_2.setIcon(icon59) + self.sort_by_name_toolButton_2.setIcon(icon60) self.sort_by_name_toolButton_2.setIconSize(QtCore.QSize(22, 22)) self.sort_by_name_toolButton_2.setObjectName("sort_by_name_toolButton_2") self.gridLayout_244.addWidget(self.sort_by_name_toolButton_2, 2, 0, 1, 1) self.move_down_toolButton_3 = QtWidgets.QToolButton(self.tab_RGB) self.move_down_toolButton_3.setStyleSheet("margin: 0px;padding: 0px;") - self.move_down_toolButton_3.setIcon(icon61) + self.move_down_toolButton_3.setIcon(icon62) self.move_down_toolButton_3.setIconSize(QtCore.QSize(22, 22)) self.move_down_toolButton_3.setObjectName("move_down_toolButton_3") self.gridLayout_244.addWidget(self.move_down_toolButton_3, 1, 0, 1, 1) self.move_up_toolButton_3 = QtWidgets.QToolButton(self.tab_RGB) self.move_up_toolButton_3.setStyleSheet("margin: 0px;padding: 0px;") - self.move_up_toolButton_3.setIcon(icon60) + self.move_up_toolButton_3.setIcon(icon61) self.move_up_toolButton_3.setIconSize(QtCore.QSize(22, 22)) self.move_up_toolButton_3.setObjectName("move_up_toolButton_3") self.gridLayout_244.addWidget(self.move_up_toolButton_3, 0, 0, 1, 1) @@ -729,33 +733,33 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_245.setObjectName("gridLayout_245") self.add_RGB_pushButton = QtWidgets.QToolButton(self.tab_RGB) self.add_RGB_pushButton.setStyleSheet("margin: 0px;padding: 0px") - icon65 = QtGui.QIcon() - icon65.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_add.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.add_RGB_pushButton.setIcon(icon65) + icon66 = QtGui.QIcon() + icon66.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_add.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.add_RGB_pushButton.setIcon(icon66) self.add_RGB_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_RGB_pushButton.setObjectName("add_RGB_pushButton") self.gridLayout_245.addWidget(self.add_RGB_pushButton, 0, 0, 1, 1) self.export_RGB_List_toolButton = QtWidgets.QToolButton(self.tab_RGB) self.export_RGB_List_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_RGB_List_toolButton.setIcon(icon52) + self.export_RGB_List_toolButton.setIcon(icon53) self.export_RGB_List_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_RGB_List_toolButton.setObjectName("export_RGB_List_toolButton") self.gridLayout_245.addWidget(self.export_RGB_List_toolButton, 4, 0, 1, 1) self.import_RGB_List_toolButton = QtWidgets.QToolButton(self.tab_RGB) self.import_RGB_List_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_RGB_List_toolButton.setIcon(icon53) + self.import_RGB_List_toolButton.setIcon(icon54) self.import_RGB_List_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_RGB_List_toolButton.setObjectName("import_RGB_List_toolButton") self.gridLayout_245.addWidget(self.import_RGB_List_toolButton, 5, 0, 1, 1) self.clear_RGB_list_toolButton = QtWidgets.QToolButton(self.tab_RGB) self.clear_RGB_list_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.clear_RGB_list_toolButton.setIcon(icon58) + self.clear_RGB_list_toolButton.setIcon(icon59) self.clear_RGB_list_toolButton.setIconSize(QtCore.QSize(22, 22)) self.clear_RGB_list_toolButton.setObjectName("clear_RGB_list_toolButton") self.gridLayout_245.addWidget(self.clear_RGB_list_toolButton, 2, 0, 1, 1) self.remove_RGB_toolButton = QtWidgets.QToolButton(self.tab_RGB) self.remove_RGB_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.remove_RGB_toolButton.setIcon(icon57) + self.remove_RGB_toolButton.setIcon(icon58) self.remove_RGB_toolButton.setIconSize(QtCore.QSize(22, 22)) self.remove_RGB_toolButton.setObjectName("remove_RGB_toolButton") self.gridLayout_245.addWidget(self.remove_RGB_toolButton, 1, 0, 1, 1) @@ -810,9 +814,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_27.addWidget(self.label_192) self.all_RGB_list_toolButton = QtWidgets.QToolButton(self.tab_RGB) self.all_RGB_list_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon66 = QtGui.QIcon() - icon66.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_enter.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.all_RGB_list_toolButton.setIcon(icon66) + icon67 = QtGui.QIcon() + icon67.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_enter.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.all_RGB_list_toolButton.setIcon(icon67) self.all_RGB_list_toolButton.setIconSize(QtCore.QSize(22, 22)) self.all_RGB_list_toolButton.setObjectName("all_RGB_list_toolButton") self.horizontalLayout_27.addWidget(self.all_RGB_list_toolButton) @@ -829,13 +833,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.verticalLayout_2.setObjectName("verticalLayout_2") self.move_down_toolButton_4 = QtWidgets.QToolButton(self.tab_band_set_list) self.move_down_toolButton_4.setStyleSheet("margin: 0px;padding: 0px;") - self.move_down_toolButton_4.setIcon(icon61) + self.move_down_toolButton_4.setIcon(icon62) self.move_down_toolButton_4.setIconSize(QtCore.QSize(22, 22)) self.move_down_toolButton_4.setObjectName("move_down_toolButton_4") self.verticalLayout_2.addWidget(self.move_down_toolButton_4) self.move_up_toolButton_4 = QtWidgets.QToolButton(self.tab_band_set_list) self.move_up_toolButton_4.setStyleSheet("margin: 0px;padding: 0px;") - self.move_up_toolButton_4.setIcon(icon60) + self.move_up_toolButton_4.setIcon(icon61) self.move_up_toolButton_4.setIconSize(QtCore.QSize(22, 22)) self.move_up_toolButton_4.setObjectName("move_up_toolButton_4") self.verticalLayout_2.addWidget(self.move_up_toolButton_4) @@ -852,19 +856,19 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_269.setObjectName("gridLayout_269") self.export_bandset_List_toolButton = QtWidgets.QToolButton(self.tab_band_set_list) self.export_bandset_List_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_bandset_List_toolButton.setIcon(icon52) + self.export_bandset_List_toolButton.setIcon(icon53) self.export_bandset_List_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_bandset_List_toolButton.setObjectName("export_bandset_List_toolButton") self.gridLayout_269.addWidget(self.export_bandset_List_toolButton, 4, 0, 1, 1) self.add_bandset_pushButton = QtWidgets.QToolButton(self.tab_band_set_list) self.add_bandset_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.add_bandset_pushButton.setIcon(icon65) + self.add_bandset_pushButton.setIcon(icon66) self.add_bandset_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_bandset_pushButton.setObjectName("add_bandset_pushButton") self.gridLayout_269.addWidget(self.add_bandset_pushButton, 1, 0, 1, 1) self.import_bandset_List_toolButton = QtWidgets.QToolButton(self.tab_band_set_list) self.import_bandset_List_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_bandset_List_toolButton.setIcon(icon53) + self.import_bandset_List_toolButton.setIcon(icon54) self.import_bandset_List_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_bandset_List_toolButton.setObjectName("import_bandset_List_toolButton") self.gridLayout_269.addWidget(self.import_bandset_List_toolButton, 5, 0, 1, 1) @@ -872,7 +876,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_269.addItem(spacerItem6, 3, 0, 1, 1) self.remove_bandset_toolButton = QtWidgets.QToolButton(self.tab_band_set_list) self.remove_bandset_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.remove_bandset_toolButton.setIcon(icon57) + self.remove_bandset_toolButton.setIcon(icon58) self.remove_bandset_toolButton.setIconSize(QtCore.QSize(22, 22)) self.remove_bandset_toolButton.setObjectName("remove_bandset_toolButton") self.gridLayout_269.addWidget(self.remove_bandset_toolButton, 2, 0, 1, 1) @@ -940,7 +944,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_102.setObjectName("gridLayout_102") self.reset_weights_pushButton = QtWidgets.QToolButton(self.tab_algorithm_weight) self.reset_weights_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_weights_pushButton.setIcon(icon58) + self.reset_weights_pushButton.setIcon(icon59) self.reset_weights_pushButton.setIconSize(QtCore.QSize(22, 22)) self.reset_weights_pushButton.setObjectName("reset_weights_pushButton") self.gridLayout_102.addWidget(self.reset_weights_pushButton, 0, 0, 1, 1) @@ -953,7 +957,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_103.setObjectName("gridLayout_103") self.set_weight_value_pushButton = QtWidgets.QToolButton(self.tab_algorithm_weight) self.set_weight_value_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.set_weight_value_pushButton.setIcon(icon66) + self.set_weight_value_pushButton.setIcon(icon67) self.set_weight_value_pushButton.setIconSize(QtCore.QSize(22, 22)) self.set_weight_value_pushButton.setObjectName("set_weight_value_pushButton") self.gridLayout_103.addWidget(self.set_weight_value_pushButton, 1, 2, 1, 1) @@ -1062,7 +1066,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_8.addWidget(self.point_number_spinBox, 1, 1, 1, 1) self.add_random_point_pushButton = QtWidgets.QToolButton(self.tab_multiple_ROI) self.add_random_point_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.add_random_point_pushButton.setIcon(icon66) + self.add_random_point_pushButton.setIcon(icon67) self.add_random_point_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_random_point_pushButton.setObjectName("add_random_point_pushButton") self.gridLayout_8.addWidget(self.add_random_point_pushButton, 1, 8, 1, 1) @@ -1142,19 +1146,19 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_39.addItem(spacerItem12, 3, 0, 1, 1) self.add_point_pushButton = QtWidgets.QToolButton(self.tab_multiple_ROI) self.add_point_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.add_point_pushButton.setIcon(icon65) + self.add_point_pushButton.setIcon(icon66) self.add_point_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_point_pushButton.setObjectName("add_point_pushButton") self.gridLayout_39.addWidget(self.add_point_pushButton, 1, 0, 1, 1) self.remove_point_pushButton = QtWidgets.QToolButton(self.tab_multiple_ROI) self.remove_point_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.remove_point_pushButton.setIcon(icon57) + self.remove_point_pushButton.setIcon(icon58) self.remove_point_pushButton.setIconSize(QtCore.QSize(22, 22)) self.remove_point_pushButton.setObjectName("remove_point_pushButton") self.gridLayout_39.addWidget(self.remove_point_pushButton, 2, 0, 1, 1) self.export_point_list_pushButton = QtWidgets.QToolButton(self.tab_multiple_ROI) self.export_point_list_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_point_list_pushButton.setIcon(icon52) + self.export_point_list_pushButton.setIcon(icon53) self.export_point_list_pushButton.setIconSize(QtCore.QSize(22, 22)) self.export_point_list_pushButton.setObjectName("export_point_list_pushButton") self.gridLayout_39.addWidget(self.export_point_list_pushButton, 5, 0, 1, 1) @@ -1162,7 +1166,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_39.addItem(spacerItem13, 6, 0, 1, 1) self.import_point_list_pushButton = QtWidgets.QToolButton(self.tab_multiple_ROI) self.import_point_list_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_point_list_pushButton.setIcon(icon53) + self.import_point_list_pushButton.setIcon(icon54) self.import_point_list_pushButton.setIconSize(QtCore.QSize(22, 22)) self.import_point_list_pushButton.setObjectName("import_point_list_pushButton") self.gridLayout_39.addWidget(self.import_point_list_pushButton, 4, 0, 1, 1) @@ -1192,7 +1196,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.save_point_rois_pushButton.setFont(font) self.save_point_rois_pushButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.save_point_rois_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.save_point_rois_pushButton.setIcon(icon63) + self.save_point_rois_pushButton.setIcon(icon64) self.save_point_rois_pushButton.setIconSize(QtCore.QSize(34, 34)) self.save_point_rois_pushButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.save_point_rois_pushButton.setObjectName("save_point_rois_pushButton") @@ -1255,7 +1259,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_12.addWidget(self.label_130, 0, 1, 1, 1) self.add_usgs_library_pushButton = QtWidgets.QToolButton(self.page_8) self.add_usgs_library_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.add_usgs_library_pushButton.setIcon(icon66) + self.add_usgs_library_pushButton.setIcon(icon67) self.add_usgs_library_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_usgs_library_pushButton.setObjectName("add_usgs_library_pushButton") self.gridLayout_12.addWidget(self.add_usgs_library_pushButton, 0, 2, 1, 1) @@ -1298,7 +1302,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_174.addWidget(self.label_9, 0, 0, 1, 1) self.open_library_pushButton = QtWidgets.QToolButton(self.page_6) self.open_library_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.open_library_pushButton.setIcon(icon64) + self.open_library_pushButton.setIcon(icon65) self.open_library_pushButton.setIconSize(QtCore.QSize(22, 22)) self.open_library_pushButton.setObjectName("open_library_pushButton") self.gridLayout_174.addWidget(self.open_library_pushButton, 0, 1, 1, 1) @@ -1315,7 +1319,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_178.setObjectName("gridLayout_178") self.open_shapefile_pushButton = QtWidgets.QToolButton(self.page_9) self.open_shapefile_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.open_shapefile_pushButton.setIcon(icon64) + self.open_shapefile_pushButton.setIcon(icon65) self.open_shapefile_pushButton.setIconSize(QtCore.QSize(20, 20)) self.open_shapefile_pushButton.setObjectName("open_shapefile_pushButton") self.gridLayout_178.addWidget(self.open_shapefile_pushButton, 0, 2, 1, 1) @@ -1405,7 +1409,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_180.addWidget(self.signature_checkBox_2, 0, 1, 1, 1) self.import_shapefile_pushButton = QtWidgets.QToolButton(self.page_9) self.import_shapefile_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.import_shapefile_pushButton.setIcon(icon66) + self.import_shapefile_pushButton.setIcon(icon67) self.import_shapefile_pushButton.setIconSize(QtCore.QSize(22, 22)) self.import_shapefile_pushButton.setObjectName("import_shapefile_pushButton") self.gridLayout_180.addWidget(self.import_shapefile_pushButton, 0, 3, 1, 1) @@ -1432,17 +1436,17 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_176.addWidget(self.label_97, 1, 0, 1, 1) self.export_SCP_pushButton = QtWidgets.QToolButton(self.tab_export) self.export_SCP_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - icon67 = QtGui.QIcon() - icon67.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_new_file.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.export_SCP_pushButton.setIcon(icon67) + icon68 = QtGui.QIcon() + icon68.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_new_file.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.export_SCP_pushButton.setIcon(icon68) self.export_SCP_pushButton.setIconSize(QtCore.QSize(22, 22)) self.export_SCP_pushButton.setObjectName("export_SCP_pushButton") self.gridLayout_176.addWidget(self.export_SCP_pushButton, 1, 1, 1, 1) self.export_CSV_library_toolButton = QtWidgets.QToolButton(self.tab_export) self.export_CSV_library_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon68 = QtGui.QIcon() - icon68.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_dir.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.export_CSV_library_toolButton.setIcon(icon68) + icon69 = QtGui.QIcon() + icon69.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_dir.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.export_CSV_library_toolButton.setIcon(icon69) self.export_CSV_library_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_CSV_library_toolButton.setObjectName("export_CSV_library_toolButton") self.gridLayout_176.addWidget(self.export_CSV_library_toolButton, 3, 1, 1, 1) @@ -1463,7 +1467,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_176.addWidget(self.label_20, 3, 0, 1, 1) self.export_SHP_pushButton = QtWidgets.QToolButton(self.tab_export) self.export_SHP_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.export_SHP_pushButton.setIcon(icon67) + self.export_SHP_pushButton.setIcon(icon68) self.export_SHP_pushButton.setIconSize(QtCore.QSize(22, 22)) self.export_SHP_pushButton.setObjectName("export_SHP_pushButton") self.gridLayout_176.addWidget(self.export_SHP_pushButton, 2, 1, 1, 1) @@ -1490,7 +1494,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_129.setObjectName("gridLayout_129") self.reset_threshold_pushButton = QtWidgets.QToolButton(self.tab_threshold) self.reset_threshold_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_threshold_pushButton.setIcon(icon58) + self.reset_threshold_pushButton.setIcon(icon59) self.reset_threshold_pushButton.setIconSize(QtCore.QSize(22, 22)) self.reset_threshold_pushButton.setObjectName("reset_threshold_pushButton") self.gridLayout_129.addWidget(self.reset_threshold_pushButton, 0, 0, 1, 1) @@ -1545,7 +1549,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_111.addWidget(self.multiplicative_threshold_doubleSpinBox, 1, 3, 1, 1) self.automatic_threshold_pushButton = QtWidgets.QToolButton(self.tab_threshold) self.automatic_threshold_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.automatic_threshold_pushButton.setIcon(icon66) + self.automatic_threshold_pushButton.setIcon(icon67) self.automatic_threshold_pushButton.setIconSize(QtCore.QSize(22, 22)) self.automatic_threshold_pushButton.setObjectName("automatic_threshold_pushButton") self.gridLayout_111.addWidget(self.automatic_threshold_pushButton, 1, 4, 1, 1) @@ -1563,7 +1567,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_3.addWidget(self.threshold_doubleSpinBox) self.set_threshold_value_pushButton = QtWidgets.QToolButton(self.tab_threshold) self.set_threshold_value_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.set_threshold_value_pushButton.setIcon(icon66) + self.set_threshold_value_pushButton.setIcon(icon67) self.set_threshold_value_pushButton.setIconSize(QtCore.QSize(22, 22)) self.set_threshold_value_pushButton.setObjectName("set_threshold_value_pushButton") self.horizontalLayout_3.addWidget(self.set_threshold_value_pushButton) @@ -1632,9 +1636,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.verticalLayout.setObjectName("verticalLayout") self.signature_spectral_plot_toolButton_2 = QtWidgets.QToolButton(self.tab_LCS_threshold) self.signature_spectral_plot_toolButton_2.setStyleSheet("margin: 0px;padding: 0px;") - icon69 = QtGui.QIcon() - icon69.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_sign_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.signature_spectral_plot_toolButton_2.setIcon(icon69) + icon70 = QtGui.QIcon() + icon70.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_sign_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.signature_spectral_plot_toolButton_2.setIcon(icon70) self.signature_spectral_plot_toolButton_2.setIconSize(QtCore.QSize(22, 22)) self.signature_spectral_plot_toolButton_2.setObjectName("signature_spectral_plot_toolButton_2") self.verticalLayout.addWidget(self.signature_spectral_plot_toolButton_2) @@ -1655,7 +1659,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout.addWidget(self.label_102) self.set_min_max_Button = QtWidgets.QToolButton(self.tab_LCS_threshold) self.set_min_max_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.set_min_max_Button.setIcon(icon66) + self.set_min_max_Button.setIcon(icon67) self.set_min_max_Button.setIconSize(QtCore.QSize(22, 22)) self.set_min_max_Button.setObjectName("set_min_max_Button") self.horizontalLayout.addWidget(self.set_min_max_Button) @@ -1682,7 +1686,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_2.addWidget(self.multiplicative_threshold_doubleSpinBox_2) self.automatic_threshold_pushButton_2 = QtWidgets.QToolButton(self.tab_LCS_threshold) self.automatic_threshold_pushButton_2.setStyleSheet("margin: 0px;padding: 0px;") - self.automatic_threshold_pushButton_2.setIcon(icon66) + self.automatic_threshold_pushButton_2.setIcon(icon67) self.automatic_threshold_pushButton_2.setIconSize(QtCore.QSize(22, 22)) self.automatic_threshold_pushButton_2.setObjectName("automatic_threshold_pushButton_2") self.horizontalLayout_2.addWidget(self.automatic_threshold_pushButton_2) @@ -1702,9 +1706,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_140.addWidget(self.label_89, 0, 2, 1, 3) self.LCS_pointerButton = QtWidgets.QToolButton(self.tab_LCS_threshold) self.LCS_pointerButton.setStyleSheet("margin: 0px;padding: 0px;") - icon70 = QtGui.QIcon() - icon70.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_LCS_threshold_set_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.LCS_pointerButton.setIcon(icon70) + icon71 = QtGui.QIcon() + icon71.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_LCS_threshold_set_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.LCS_pointerButton.setIcon(icon71) self.LCS_pointerButton.setIconSize(QtCore.QSize(22, 22)) self.LCS_pointerButton.setObjectName("LCS_pointerButton") self.gridLayout_140.addWidget(self.LCS_pointerButton, 0, 5, 1, 1) @@ -1712,15 +1716,15 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_144.setObjectName("gridLayout_144") self.LCS_include_checkBox = QtWidgets.QCheckBox(self.tab_LCS_threshold) self.LCS_include_checkBox.setText("") - self.LCS_include_checkBox.setIcon(icon56) + self.LCS_include_checkBox.setIcon(icon57) self.LCS_include_checkBox.setChecked(True) self.LCS_include_checkBox.setObjectName("LCS_include_checkBox") self.gridLayout_144.addWidget(self.LCS_include_checkBox, 0, 0, 1, 1) self.LCS_cut_checkBox = QtWidgets.QCheckBox(self.tab_LCS_threshold) self.LCS_cut_checkBox.setText("") - icon71 = QtGui.QIcon() - icon71.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_minus.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.LCS_cut_checkBox.setIcon(icon71) + icon72 = QtGui.QIcon() + icon72.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_minus.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.LCS_cut_checkBox.setIcon(icon72) self.LCS_cut_checkBox.setObjectName("LCS_cut_checkBox") self.gridLayout_144.addWidget(self.LCS_cut_checkBox, 1, 0, 1, 1) self.gridLayout_140.addLayout(self.gridLayout_144, 0, 6, 1, 1) @@ -1736,9 +1740,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_140.addWidget(self.label_178, 0, 0, 1, 1) self.LCS_ROI_button = QtWidgets.QToolButton(self.tab_LCS_threshold) self.LCS_ROI_button.setStyleSheet("margin: 0px;padding: 0px;") - icon72 = QtGui.QIcon() - icon72.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_LCS_threshold_ROI_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.LCS_ROI_button.setIcon(icon72) + icon73 = QtGui.QIcon() + icon73.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_LCS_threshold_ROI_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.LCS_ROI_button.setIcon(icon73) self.LCS_ROI_button.setIconSize(QtCore.QSize(22, 22)) self.LCS_ROI_button.setObjectName("LCS_ROI_button") self.gridLayout_140.addWidget(self.LCS_ROI_button, 0, 1, 1, 1) @@ -1869,7 +1873,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_10.addWidget(self.sentinel_service_lineEdit) self.reset_sentinel_service_toolButton = QtWidgets.QToolButton(self.tab_login) self.reset_sentinel_service_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_sentinel_service_toolButton.setIcon(icon58) + self.reset_sentinel_service_toolButton.setIcon(icon59) self.reset_sentinel_service_toolButton.setIconSize(QtCore.QSize(22, 22)) self.reset_sentinel_service_toolButton.setObjectName("reset_sentinel_service_toolButton") self.horizontalLayout_10.addWidget(self.reset_sentinel_service_toolButton) @@ -1880,9 +1884,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_238.addLayout(self.gridLayout_159, 2, 0, 1, 1) spacerItem27 = QtWidgets.QSpacerItem(20, 251, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.gridLayout_238.addItem(spacerItem27, 3, 0, 1, 1) - icon73 = QtGui.QIcon() - icon73.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_login.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.tabWidget_3.addTab(self.tab_login, icon73, "") + icon74 = QtGui.QIcon() + icon74.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_login.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.tabWidget_3.addTab(self.tab_login, icon74, "") self.tab_search = QtWidgets.QWidget() self.tab_search.setObjectName("tab_search") self.gridLayout_264 = QtWidgets.QGridLayout(self.tab_search) @@ -1893,9 +1897,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_54.setObjectName("gridLayout_54") self.toolButton_OSM = QtWidgets.QToolButton(self.tab_search) self.toolButton_OSM.setStyleSheet("margin: 0px;padding: 0px;") - icon74 = QtGui.QIcon() - icon74.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_osm_add.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.toolButton_OSM.setIcon(icon74) + icon75 = QtGui.QIcon() + icon75.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_osm_add.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.toolButton_OSM.setIcon(icon75) self.toolButton_OSM.setIconSize(QtCore.QSize(22, 22)) self.toolButton_OSM.setObjectName("toolButton_OSM") self.gridLayout_54.addWidget(self.toolButton_OSM, 0, 0, 1, 1) @@ -1925,9 +1929,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_122.setObjectName("gridLayout_122") self.selectUL_toolButton_3 = QtWidgets.QToolButton(self.tab_search) self.selectUL_toolButton_3.setStyleSheet("margin: 0px;padding: 0px;") - icon75 = QtGui.QIcon() - icon75.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_pointer_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.selectUL_toolButton_3.setIcon(icon75) + icon76 = QtGui.QIcon() + icon76.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_pointer_tool.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.selectUL_toolButton_3.setIcon(icon76) self.selectUL_toolButton_3.setIconSize(QtCore.QSize(22, 22)) self.selectUL_toolButton_3.setObjectName("selectUL_toolButton_3") self.gridLayout_122.addWidget(self.selectUL_toolButton_3, 0, 7, 1, 1) @@ -1967,9 +1971,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_115.setObjectName("gridLayout_115") self.find_images_toolButton = QtWidgets.QToolButton(self.tab_search) self.find_images_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - icon76 = QtGui.QIcon() - icon76.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_search_images.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.find_images_toolButton.setIcon(icon76) + icon77 = QtGui.QIcon() + icon77.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_search_images.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.find_images_toolButton.setIcon(icon77) self.find_images_toolButton.setIconSize(QtCore.QSize(22, 22)) self.find_images_toolButton.setObjectName("find_images_toolButton") self.gridLayout_115.addWidget(self.find_images_toolButton, 1, 8, 1, 1) @@ -2074,33 +2078,33 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_132.setObjectName("gridLayout_132") self.remove_image_toolButton = QtWidgets.QToolButton(self.tab_search) self.remove_image_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.remove_image_toolButton.setIcon(icon57) + self.remove_image_toolButton.setIcon(icon58) self.remove_image_toolButton.setIconSize(QtCore.QSize(22, 22)) self.remove_image_toolButton.setObjectName("remove_image_toolButton") self.gridLayout_132.addWidget(self.remove_image_toolButton, 1, 1, 1, 1) self.toolButton_display = QtWidgets.QToolButton(self.tab_search) self.toolButton_display.setStyleSheet("margin: 0px;padding: 0px;") - icon77 = QtGui.QIcon() - icon77.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_image_preview.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.toolButton_display.setIcon(icon77) + icon78 = QtGui.QIcon() + icon78.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_image_preview.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.toolButton_display.setIcon(icon78) self.toolButton_display.setIconSize(QtCore.QSize(22, 22)) self.toolButton_display.setObjectName("toolButton_display") self.gridLayout_132.addWidget(self.toolButton_display, 0, 1, 1, 1) self.clear_table_toolButton = QtWidgets.QToolButton(self.tab_search) self.clear_table_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.clear_table_toolButton.setIcon(icon58) + self.clear_table_toolButton.setIcon(icon59) self.clear_table_toolButton.setIconSize(QtCore.QSize(22, 22)) self.clear_table_toolButton.setObjectName("clear_table_toolButton") self.gridLayout_132.addWidget(self.clear_table_toolButton, 2, 1, 1, 1) self.export_table_pushButton = QtWidgets.QToolButton(self.tab_search) self.export_table_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_table_pushButton.setIcon(icon52) + self.export_table_pushButton.setIcon(icon53) self.export_table_pushButton.setIconSize(QtCore.QSize(22, 22)) self.export_table_pushButton.setObjectName("export_table_pushButton") self.gridLayout_132.addWidget(self.export_table_pushButton, 4, 1, 1, 1) self.import_table_pushButton = QtWidgets.QToolButton(self.tab_search) self.import_table_pushButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_table_pushButton.setIcon(icon53) + self.import_table_pushButton.setIcon(icon54) self.import_table_pushButton.setIconSize(QtCore.QSize(22, 22)) self.import_table_pushButton.setObjectName("import_table_pushButton") self.gridLayout_132.addWidget(self.import_table_pushButton, 3, 1, 1, 1) @@ -2174,9 +2178,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.products_filter_lineEdit.setObjectName("products_filter_lineEdit") self.gridLayout_search.addWidget(self.products_filter_lineEdit, 0, 1, 1, 1) self.gridLayout_264.addLayout(self.gridLayout_search, 1, 0, 1, 1) - icon78 = QtGui.QIcon() - icon78.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_search.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.tabWidget_3.addTab(self.tab_search, icon78, "") + icon79 = QtGui.QIcon() + icon79.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_search.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.tabWidget_3.addTab(self.tab_search, icon79, "") self.tab_options = QtWidgets.QWidget() self.tab_options.setObjectName("tab_options") self.gridLayout_199 = QtWidgets.QGridLayout(self.tab_options) @@ -2217,7 +2221,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_116.addWidget(self.checkBox_band_5, 1, 4, 1, 1) self.check_toolButton = QtWidgets.QToolButton(self.tab_options) self.check_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.check_toolButton.setIcon(icon55) + self.check_toolButton.setIcon(icon56) self.check_toolButton.setIconSize(QtCore.QSize(22, 22)) self.check_toolButton.setObjectName("check_toolButton") self.gridLayout_116.addWidget(self.check_toolButton, 1, 6, 1, 1) @@ -2243,7 +2247,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_136.addWidget(self.checkBoxs_band_1, 1, 0, 1, 1) self.check_toolButton_2 = QtWidgets.QToolButton(self.tab_options) self.check_toolButton_2.setStyleSheet("margin: 0px;padding: 0px;") - self.check_toolButton_2.setIcon(icon55) + self.check_toolButton_2.setIcon(icon56) self.check_toolButton_2.setIconSize(QtCore.QSize(22, 22)) self.check_toolButton_2.setObjectName("check_toolButton_2") self.gridLayout_136.addWidget(self.check_toolButton_2, 1, 14, 1, 1) @@ -2376,7 +2380,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_160.addWidget(self.checkBoxs3_band_19, 2, 7, 1, 1) self.check_toolButton_3 = QtWidgets.QToolButton(self.tab_options) self.check_toolButton_3.setStyleSheet("margin: 0px;padding: 0px;") - self.check_toolButton_3.setIcon(icon55) + self.check_toolButton_3.setIcon(icon56) self.check_toolButton_3.setIconSize(QtCore.QSize(22, 22)) self.check_toolButton_3.setObjectName("check_toolButton_3") self.gridLayout_160.addWidget(self.check_toolButton_3, 1, 11, 1, 1) @@ -2439,7 +2443,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_141.addWidget(self.checkBoxs_goes_band_6, 1, 5, 1, 1) self.check_toolButton_4 = QtWidgets.QToolButton(self.tab_options) self.check_toolButton_4.setStyleSheet("margin: 0px;padding: 0px;") - self.check_toolButton_4.setIcon(icon55) + self.check_toolButton_4.setIcon(icon56) self.check_toolButton_4.setIconSize(QtCore.QSize(22, 22)) self.check_toolButton_4.setObjectName("check_toolButton_4") self.gridLayout_141.addWidget(self.check_toolButton_4, 1, 7, 1, 1) @@ -2464,9 +2468,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.checkBox_band_7.setObjectName("checkBox_band_7") self.gridLayout_116.addWidget(self.checkBox_band_7, 2, 0, 1, 1) self.gridLayout_199.addLayout(self.gridLayout_116, 0, 0, 1, 1) - icon79 = QtGui.QIcon() - icon79.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_options.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.tabWidget_3.addTab(self.tab_options, icon79, "") + icon80 = QtGui.QIcon() + icon80.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_download_options.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.tabWidget_3.addTab(self.tab_options, icon80, "") self.gridLayout_113.addWidget(self.tabWidget_3, 0, 1, 1, 1) self.gridLayout_68.addLayout(self.gridLayout_113, 0, 0, 1, 1) self.gridLayout_320 = QtWidgets.QGridLayout() @@ -2495,7 +2499,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_320.addItem(spacerItem33, 1, 4, 1, 1) self.export_links_Button = QtWidgets.QToolButton(self.tab_download_products) self.export_links_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.export_links_Button.setIcon(icon52) + self.export_links_Button.setIcon(icon53) self.export_links_Button.setIconSize(QtCore.QSize(22, 22)) self.export_links_Button.setObjectName("export_links_Button") self.gridLayout_320.addWidget(self.export_links_Button, 1, 5, 1, 1) @@ -2506,7 +2510,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.download_images_Button.setFont(font) self.download_images_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.download_images_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.download_images_Button.setIcon(icon63) + self.download_images_Button.setIcon(icon64) self.download_images_Button.setIconSize(QtCore.QSize(34, 34)) self.download_images_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.download_images_Button.setObjectName("download_images_Button") @@ -2592,7 +2596,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_37.addWidget(self.label_41, 2, 0, 1, 1) self.toolButton_directoryInput = QtWidgets.QToolButton(self.tab_Landsat) self.toolButton_directoryInput.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_directoryInput.setIcon(icon68) + self.toolButton_directoryInput.setIcon(icon69) self.toolButton_directoryInput.setIconSize(QtCore.QSize(22, 22)) self.toolButton_directoryInput.setObjectName("toolButton_directoryInput") self.gridLayout_37.addWidget(self.toolButton_directoryInput, 1, 3, 1, 1) @@ -2630,7 +2634,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_37.addLayout(self.gridLayout_183, 5, 0, 1, 4) self.toolButton_directoryInput_MTL = QtWidgets.QToolButton(self.tab_Landsat) self.toolButton_directoryInput_MTL.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_directoryInput_MTL.setIcon(icon64) + self.toolButton_directoryInput_MTL.setIcon(icon65) self.toolButton_directoryInput_MTL.setIconSize(QtCore.QSize(22, 22)) self.toolButton_directoryInput_MTL.setObjectName("toolButton_directoryInput_MTL") self.gridLayout_37.addWidget(self.toolButton_directoryInput_MTL, 2, 3, 1, 1) @@ -2673,7 +2677,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_15.setObjectName("gridLayout_15") self.pushButton_remove_band = QtWidgets.QToolButton(self.tab_Landsat) self.pushButton_remove_band.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_remove_band.setIcon(icon57) + self.pushButton_remove_band.setIcon(icon58) self.pushButton_remove_band.setIconSize(QtCore.QSize(22, 22)) self.pushButton_remove_band.setObjectName("pushButton_remove_band") self.gridLayout_15.addWidget(self.pushButton_remove_band, 0, 0, 1, 1) @@ -2763,7 +2767,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion.setFont(font) self.pushButton_Conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion.setIcon(icon63) + self.pushButton_Conversion.setIcon(icon64) self.pushButton_Conversion.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion.setObjectName("pushButton_Conversion") @@ -2775,7 +2779,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.landsat_conversion.setFont(font) self.landsat_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.landsat_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.landsat_conversion.setIcon(icon47) + self.landsat_conversion.setIcon(icon48) self.landsat_conversion.setIconSize(QtCore.QSize(34, 34)) self.landsat_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.landsat_conversion.setObjectName("landsat_conversion") @@ -2814,7 +2818,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_279.addWidget(self.S1_label_96, 0, 1, 1, 1) self.S1_toolButton_directoryInput_xml = QtWidgets.QToolButton(self.tab_Sentinel1) self.S1_toolButton_directoryInput_xml.setStyleSheet("margin: 0px;padding: 0px;") - self.S1_toolButton_directoryInput_xml.setIcon(icon64) + self.S1_toolButton_directoryInput_xml.setIcon(icon65) self.S1_toolButton_directoryInput_xml.setIconSize(QtCore.QSize(22, 22)) self.S1_toolButton_directoryInput_xml.setObjectName("S1_toolButton_directoryInput_xml") self.gridLayout_279.addWidget(self.S1_toolButton_directoryInput_xml, 0, 2, 1, 1) @@ -2888,7 +2892,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_266.addWidget(self.S1_label_87, 0, 1, 1, 1) self.S1_toolButton_fileInput = QtWidgets.QToolButton(self.tab_Sentinel1) self.S1_toolButton_fileInput.setStyleSheet("margin: 0px;padding: 0px;") - self.S1_toolButton_fileInput.setIcon(icon64) + self.S1_toolButton_fileInput.setIcon(icon65) self.S1_toolButton_fileInput.setIconSize(QtCore.QSize(22, 22)) self.S1_toolButton_fileInput.setObjectName("S1_toolButton_fileInput") self.gridLayout_266.addWidget(self.S1_toolButton_fileInput, 0, 2, 1, 1) @@ -2960,7 +2964,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_6.setFont(font) self.pushButton_Conversion_6.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_6.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_6.setIcon(icon63) + self.pushButton_Conversion_6.setIcon(icon64) self.pushButton_Conversion_6.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_6.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_6.setObjectName("pushButton_Conversion_6") @@ -2972,7 +2976,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.sentinel1_conversion.setFont(font) self.sentinel1_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.sentinel1_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.sentinel1_conversion.setIcon(icon47) + self.sentinel1_conversion.setIcon(icon48) self.sentinel1_conversion.setIconSize(QtCore.QSize(34, 34)) self.sentinel1_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.sentinel1_conversion.setObjectName("sentinel1_conversion") @@ -3000,7 +3004,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_147.setObjectName("gridLayout_147") self.S2_toolButton_directoryInput = QtWidgets.QToolButton(self.tab_Sentinel2) self.S2_toolButton_directoryInput.setStyleSheet("margin: 0px;padding: 0px;") - self.S2_toolButton_directoryInput.setIcon(icon68) + self.S2_toolButton_directoryInput.setIcon(icon69) self.S2_toolButton_directoryInput.setIconSize(QtCore.QSize(22, 22)) self.S2_toolButton_directoryInput.setObjectName("S2_toolButton_directoryInput") self.gridLayout_147.addWidget(self.S2_toolButton_directoryInput, 0, 1, 1, 1) @@ -3077,7 +3081,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_156.addWidget(self.S2_label_94, 0, 0, 1, 1) self.S2_toolButton_directoryInput_xml2 = QtWidgets.QToolButton(self.tab_Sentinel2) self.S2_toolButton_directoryInput_xml2.setStyleSheet("margin: 0px;padding: 0px;") - self.S2_toolButton_directoryInput_xml2.setIcon(icon64) + self.S2_toolButton_directoryInput_xml2.setIcon(icon65) self.S2_toolButton_directoryInput_xml2.setIconSize(QtCore.QSize(22, 22)) self.S2_toolButton_directoryInput_xml2.setObjectName("S2_toolButton_directoryInput_xml2") self.gridLayout_156.addWidget(self.S2_toolButton_directoryInput_xml2, 0, 1, 1, 1) @@ -3172,7 +3176,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_162.addWidget(self.sentinel_2_tableWidget, 0, 0, 1, 1) self.S2_pushButton_remove_band = QtWidgets.QToolButton(self.tab_Sentinel2) self.S2_pushButton_remove_band.setStyleSheet("margin: 0px;padding: 0px;") - self.S2_pushButton_remove_band.setIcon(icon57) + self.S2_pushButton_remove_band.setIcon(icon58) self.S2_pushButton_remove_band.setIconSize(QtCore.QSize(22, 22)) self.S2_pushButton_remove_band.setObjectName("S2_pushButton_remove_band") self.gridLayout_162.addWidget(self.S2_pushButton_remove_band, 0, 1, 1, 1) @@ -3195,7 +3199,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_2.setFont(font) self.pushButton_Conversion_2.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_2.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_2.setIcon(icon63) + self.pushButton_Conversion_2.setIcon(icon64) self.pushButton_Conversion_2.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_2.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_2.setObjectName("pushButton_Conversion_2") @@ -3207,7 +3211,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.sentinel2_conversion.setFont(font) self.sentinel2_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.sentinel2_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.sentinel2_conversion.setIcon(icon47) + self.sentinel2_conversion.setIcon(icon48) self.sentinel2_conversion.setIconSize(QtCore.QSize(34, 34)) self.sentinel2_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.sentinel2_conversion.setObjectName("sentinel2_conversion") @@ -3265,7 +3269,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_155.setObjectName("gridLayout_155") self.S3_toolButton_directoryInput = QtWidgets.QToolButton(self.tab_Sentinel3) self.S3_toolButton_directoryInput.setStyleSheet("margin: 0px;padding: 0px;") - self.S3_toolButton_directoryInput.setIcon(icon68) + self.S3_toolButton_directoryInput.setIcon(icon69) self.S3_toolButton_directoryInput.setIconSize(QtCore.QSize(22, 22)) self.S3_toolButton_directoryInput.setObjectName("S3_toolButton_directoryInput") self.gridLayout_155.addWidget(self.S3_toolButton_directoryInput, 0, 1, 1, 1) @@ -3313,7 +3317,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_229.setObjectName("gridLayout_229") self.S3_pushButton_remove_band = QtWidgets.QToolButton(self.tab_Sentinel3) self.S3_pushButton_remove_band.setStyleSheet("margin: 0px;padding: 0px;") - self.S3_pushButton_remove_band.setIcon(icon57) + self.S3_pushButton_remove_band.setIcon(icon58) self.S3_pushButton_remove_band.setIconSize(QtCore.QSize(22, 22)) self.S3_pushButton_remove_band.setObjectName("S3_pushButton_remove_band") self.gridLayout_229.addWidget(self.S3_pushButton_remove_band, 0, 0, 1, 1) @@ -3378,7 +3382,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_5.setFont(font) self.pushButton_Conversion_5.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_5.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_5.setIcon(icon63) + self.pushButton_Conversion_5.setIcon(icon64) self.pushButton_Conversion_5.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_5.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_5.setObjectName("pushButton_Conversion_5") @@ -3390,7 +3394,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.sentinel3_conversion.setFont(font) self.sentinel3_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.sentinel3_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.sentinel3_conversion.setIcon(icon47) + self.sentinel3_conversion.setIcon(icon48) self.sentinel3_conversion.setIconSize(QtCore.QSize(34, 34)) self.sentinel3_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.sentinel3_conversion.setObjectName("sentinel3_conversion") @@ -3426,7 +3430,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_92.addWidget(self.label_143, 1, 1, 1, 2) self.toolButton_directoryInput_ASTER = QtWidgets.QToolButton(self.tab_ASTER) self.toolButton_directoryInput_ASTER.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_directoryInput_ASTER.setIcon(icon64) + self.toolButton_directoryInput_ASTER.setIcon(icon65) self.toolButton_directoryInput_ASTER.setIconSize(QtCore.QSize(22, 22)) self.toolButton_directoryInput_ASTER.setObjectName("toolButton_directoryInput_ASTER") self.gridLayout_92.addWidget(self.toolButton_directoryInput_ASTER, 1, 3, 1, 1) @@ -3497,7 +3501,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_222.setObjectName("gridLayout_222") self.pushButton_remove_band_2 = QtWidgets.QToolButton(self.tab_ASTER) self.pushButton_remove_band_2.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_remove_band_2.setIcon(icon57) + self.pushButton_remove_band_2.setIcon(icon58) self.pushButton_remove_band_2.setIconSize(QtCore.QSize(22, 22)) self.pushButton_remove_band_2.setObjectName("pushButton_remove_band_2") self.gridLayout_222.addWidget(self.pushButton_remove_band_2, 0, 0, 1, 1) @@ -3613,7 +3617,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_3.setFont(font) self.pushButton_Conversion_3.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_3.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_3.setIcon(icon63) + self.pushButton_Conversion_3.setIcon(icon64) self.pushButton_Conversion_3.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_3.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_3.setObjectName("pushButton_Conversion_3") @@ -3625,7 +3629,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.aster_conversion.setFont(font) self.aster_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.aster_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.aster_conversion.setIcon(icon47) + self.aster_conversion.setIcon(icon48) self.aster_conversion.setIconSize(QtCore.QSize(34, 34)) self.aster_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.aster_conversion.setObjectName("aster_conversion") @@ -3683,7 +3687,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_270.addWidget(self.label_219, 2, 0, 1, 1) self.toolButton_directoryInput_MODIS = QtWidgets.QToolButton(self.tab_MODIS) self.toolButton_directoryInput_MODIS.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_directoryInput_MODIS.setIcon(icon64) + self.toolButton_directoryInput_MODIS.setIcon(icon65) self.toolButton_directoryInput_MODIS.setIconSize(QtCore.QSize(22, 22)) self.toolButton_directoryInput_MODIS.setObjectName("toolButton_directoryInput_MODIS") self.gridLayout_270.addWidget(self.toolButton_directoryInput_MODIS, 2, 3, 1, 1) @@ -3725,7 +3729,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_274.setObjectName("gridLayout_274") self.pushButton_remove_band_3 = QtWidgets.QToolButton(self.tab_MODIS) self.pushButton_remove_band_3.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_remove_band_3.setIcon(icon57) + self.pushButton_remove_band_3.setIcon(icon58) self.pushButton_remove_band_3.setIconSize(QtCore.QSize(22, 22)) self.pushButton_remove_band_3.setObjectName("pushButton_remove_band_3") self.gridLayout_274.addWidget(self.pushButton_remove_band_3, 0, 0, 1, 1) @@ -3791,7 +3795,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_4.setFont(font) self.pushButton_Conversion_4.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_4.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_4.setIcon(icon63) + self.pushButton_Conversion_4.setIcon(icon64) self.pushButton_Conversion_4.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_4.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_4.setObjectName("pushButton_Conversion_4") @@ -3803,7 +3807,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.modis_conversion.setFont(font) self.modis_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.modis_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.modis_conversion.setIcon(icon47) + self.modis_conversion.setIcon(icon48) self.modis_conversion.setIconSize(QtCore.QSize(34, 34)) self.modis_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.modis_conversion.setObjectName("modis_conversion") @@ -3846,7 +3850,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_22.addWidget(self.vector_name_combo) self.toolButton_reload_16 = QtWidgets.QToolButton(self.tab_spectral_distance) self.toolButton_reload_16.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_16.setIcon(icon54) + self.toolButton_reload_16.setIcon(icon55) self.toolButton_reload_16.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_16.setObjectName("toolButton_reload_16") self.horizontalLayout_22.addWidget(self.toolButton_reload_16) @@ -3915,7 +3919,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_194.addWidget(self.label_156, 0, 0, 1, 1) self.toolButton_reload_17 = QtWidgets.QToolButton(self.tab_spectral_distance) self.toolButton_reload_17.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_17.setIcon(icon54) + self.toolButton_reload_17.setIcon(icon55) self.toolButton_reload_17.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_17.setObjectName("toolButton_reload_17") self.gridLayout_194.addWidget(self.toolButton_reload_17, 0, 2, 1, 1) @@ -3954,7 +3958,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.convert_vector_toolButton.setFont(font) self.convert_vector_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.convert_vector_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.convert_vector_toolButton.setIcon(icon63) + self.convert_vector_toolButton.setIcon(icon64) self.convert_vector_toolButton.setIconSize(QtCore.QSize(34, 34)) self.convert_vector_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.convert_vector_toolButton.setObjectName("convert_vector_toolButton") @@ -3966,7 +3970,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.vector_to_raster.setFont(font) self.vector_to_raster.setLayoutDirection(QtCore.Qt.RightToLeft) self.vector_to_raster.setStyleSheet("margin: 0px;padding: 0px;") - self.vector_to_raster.setIcon(icon47) + self.vector_to_raster.setIcon(icon48) self.vector_to_raster.setIconSize(QtCore.QSize(34, 34)) self.vector_to_raster.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.vector_to_raster.setObjectName("vector_to_raster") @@ -4066,7 +4070,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_20.addWidget(self.label_12, 1, 5, 1, 1) self.selectUL_toolButton = QtWidgets.QToolButton(self.tab_clip) self.selectUL_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.selectUL_toolButton.setIcon(icon75) + self.selectUL_toolButton.setIcon(icon76) self.selectUL_toolButton.setIconSize(QtCore.QSize(22, 22)) self.selectUL_toolButton.setObjectName("selectUL_toolButton") self.gridLayout_20.addWidget(self.selectUL_toolButton, 1, 10, 1, 1) @@ -4103,7 +4107,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_22.addWidget(self.shapefile_checkBox, 0, 0, 1, 1) self.toolButton_reload_8 = QtWidgets.QToolButton(self.tab_clip) self.toolButton_reload_8.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_8.setIcon(icon54) + self.toolButton_reload_8.setIcon(icon55) self.toolButton_reload_8.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_8.setObjectName("toolButton_reload_8") self.gridLayout_22.addWidget(self.toolButton_reload_8, 0, 2, 1, 1) @@ -4143,7 +4147,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.clip_Button.setFont(font) self.clip_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.clip_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.clip_Button.setIcon(icon63) + self.clip_Button.setIcon(icon64) self.clip_Button.setIconSize(QtCore.QSize(34, 34)) self.clip_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.clip_Button.setObjectName("clip_Button") @@ -4157,7 +4161,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.clip_multiple_rasters.setFont(font) self.clip_multiple_rasters.setLayoutDirection(QtCore.Qt.RightToLeft) self.clip_multiple_rasters.setStyleSheet("margin: 0px;padding: 0px;") - self.clip_multiple_rasters.setIcon(icon47) + self.clip_multiple_rasters.setIcon(icon48) self.clip_multiple_rasters.setIconSize(QtCore.QSize(34, 34)) self.clip_multiple_rasters.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.clip_multiple_rasters.setObjectName("clip_multiple_rasters") @@ -4214,7 +4218,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_291.addWidget(self.use_align_raster_checkBox, 0, 0, 1, 1) self.toolButton_reload_25 = QtWidgets.QToolButton(self.tab_reproject_bands) self.toolButton_reload_25.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_25.setIcon(icon54) + self.toolButton_reload_25.setIcon(icon55) self.toolButton_reload_25.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_25.setObjectName("toolButton_reload_25") self.gridLayout_291.addWidget(self.toolButton_reload_25, 0, 3, 1, 1) @@ -4388,7 +4392,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.reproject_raster_bands.setFont(font) self.reproject_raster_bands.setLayoutDirection(QtCore.Qt.RightToLeft) self.reproject_raster_bands.setStyleSheet("margin: 0px;padding: 0px;") - self.reproject_raster_bands.setIcon(icon47) + self.reproject_raster_bands.setIcon(icon48) self.reproject_raster_bands.setIconSize(QtCore.QSize(34, 34)) self.reproject_raster_bands.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.reproject_raster_bands.setObjectName("reproject_raster_bands") @@ -4400,7 +4404,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.reproject_Button.setFont(font) self.reproject_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.reproject_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reproject_Button.setIcon(icon63) + self.reproject_Button.setIcon(icon64) self.reproject_Button.setIconSize(QtCore.QSize(34, 34)) self.reproject_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.reproject_Button.setObjectName("reproject_Button") @@ -4448,7 +4452,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_190.addWidget(self.label_50, 1, 0, 1, 1) self.toolButton_reload_9 = QtWidgets.QToolButton(self.tab_split_raster) self.toolButton_reload_9.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_9.setIcon(icon54) + self.toolButton_reload_9.setIcon(icon55) self.toolButton_reload_9.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_9.setObjectName("toolButton_reload_9") self.gridLayout_190.addWidget(self.toolButton_reload_9, 1, 2, 1, 1) @@ -4489,7 +4493,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.split_raster_bands.setFont(font) self.split_raster_bands.setLayoutDirection(QtCore.Qt.RightToLeft) self.split_raster_bands.setStyleSheet("margin: 0px;padding: 0px;") - self.split_raster_bands.setIcon(icon47) + self.split_raster_bands.setIcon(icon48) self.split_raster_bands.setIconSize(QtCore.QSize(34, 34)) self.split_raster_bands.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.split_raster_bands.setObjectName("split_raster_bands") @@ -4501,7 +4505,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.split_Button.setFont(font) self.split_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.split_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.split_Button.setIcon(icon63) + self.split_Button.setIcon(icon64) self.split_Button.setIconSize(QtCore.QSize(34, 34)) self.split_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.split_Button.setObjectName("split_Button") @@ -4542,7 +4546,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.stack_raster_bands.setFont(font) self.stack_raster_bands.setLayoutDirection(QtCore.Qt.RightToLeft) self.stack_raster_bands.setStyleSheet("margin: 0px;padding: 0px;") - self.stack_raster_bands.setIcon(icon47) + self.stack_raster_bands.setIcon(icon48) self.stack_raster_bands.setIconSize(QtCore.QSize(34, 34)) self.stack_raster_bands.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.stack_raster_bands.setObjectName("stack_raster_bands") @@ -4554,7 +4558,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.stack_Button.setFont(font) self.stack_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.stack_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.stack_Button.setIcon(icon63) + self.stack_Button.setIcon(icon64) self.stack_Button.setIconSize(QtCore.QSize(34, 34)) self.stack_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.stack_Button.setObjectName("stack_Button") @@ -4642,7 +4646,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.mosaic_bandsets_toolButton.setFont(font) self.mosaic_bandsets_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.mosaic_bandsets_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.mosaic_bandsets_toolButton.setIcon(icon63) + self.mosaic_bandsets_toolButton.setIcon(icon64) self.mosaic_bandsets_toolButton.setIconSize(QtCore.QSize(34, 34)) self.mosaic_bandsets_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.mosaic_bandsets_toolButton.setObjectName("mosaic_bandsets_toolButton") @@ -4654,7 +4658,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.mosaic_bandsets.setFont(font) self.mosaic_bandsets.setLayoutDirection(QtCore.Qt.RightToLeft) self.mosaic_bandsets.setStyleSheet("margin: 0px;padding: 0px;") - self.mosaic_bandsets.setIcon(icon47) + self.mosaic_bandsets.setIcon(icon48) self.mosaic_bandsets.setIconSize(QtCore.QSize(34, 34)) self.mosaic_bandsets.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.mosaic_bandsets.setObjectName("mosaic_bandsets") @@ -4736,7 +4740,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_106.addWidget(self.label_186, 0, 0, 1, 1) self.toolButton_reload_23 = QtWidgets.QToolButton(self.tab_cloud_mask) self.toolButton_reload_23.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_23.setIcon(icon54) + self.toolButton_reload_23.setIcon(icon55) self.toolButton_reload_23.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_23.setObjectName("toolButton_reload_23") self.gridLayout_106.addWidget(self.toolButton_reload_23, 0, 2, 1, 1) @@ -4801,7 +4805,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.cloud_mask_toolButton.setFont(font) self.cloud_mask_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.cloud_mask_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.cloud_mask_toolButton.setIcon(icon63) + self.cloud_mask_toolButton.setIcon(icon64) self.cloud_mask_toolButton.setIconSize(QtCore.QSize(34, 34)) self.cloud_mask_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.cloud_mask_toolButton.setObjectName("cloud_mask_toolButton") @@ -4813,7 +4817,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.cloud_masking.setFont(font) self.cloud_masking.setLayoutDirection(QtCore.Qt.RightToLeft) self.cloud_masking.setStyleSheet("margin: 0px;padding: 0px;") - self.cloud_masking.setIcon(icon47) + self.cloud_masking.setIcon(icon48) self.cloud_masking.setIconSize(QtCore.QSize(34, 34)) self.cloud_masking.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.cloud_masking.setObjectName("cloud_masking") @@ -4889,7 +4893,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_299.setObjectName("gridLayout_299") self.GOES_toolButton_directoryInput = QtWidgets.QToolButton(self.tab_GOES) self.GOES_toolButton_directoryInput.setStyleSheet("margin: 0px;padding: 0px;") - self.GOES_toolButton_directoryInput.setIcon(icon68) + self.GOES_toolButton_directoryInput.setIcon(icon69) self.GOES_toolButton_directoryInput.setIconSize(QtCore.QSize(22, 22)) self.GOES_toolButton_directoryInput.setObjectName("GOES_toolButton_directoryInput") self.gridLayout_299.addWidget(self.GOES_toolButton_directoryInput, 0, 1, 1, 1) @@ -4927,7 +4931,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_305.setObjectName("gridLayout_305") self.GOES_pushButton_remove_band = QtWidgets.QToolButton(self.tab_GOES) self.GOES_pushButton_remove_band.setStyleSheet("margin: 0px;padding: 0px;") - self.GOES_pushButton_remove_band.setIcon(icon57) + self.GOES_pushButton_remove_band.setIcon(icon58) self.GOES_pushButton_remove_band.setIconSize(QtCore.QSize(22, 22)) self.GOES_pushButton_remove_band.setObjectName("GOES_pushButton_remove_band") self.gridLayout_305.addWidget(self.GOES_pushButton_remove_band, 0, 0, 1, 1) @@ -4979,7 +4983,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pushButton_Conversion_8.setFont(font) self.pushButton_Conversion_8.setLayoutDirection(QtCore.Qt.RightToLeft) self.pushButton_Conversion_8.setStyleSheet("margin: 0px;padding: 0px;") - self.pushButton_Conversion_8.setIcon(icon63) + self.pushButton_Conversion_8.setIcon(icon64) self.pushButton_Conversion_8.setIconSize(QtCore.QSize(34, 34)) self.pushButton_Conversion_8.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pushButton_Conversion_8.setObjectName("pushButton_Conversion_8") @@ -4991,7 +4995,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.goes_conversion.setFont(font) self.goes_conversion.setLayoutDirection(QtCore.Qt.RightToLeft) self.goes_conversion.setStyleSheet("margin: 0px;padding: 0px;") - self.goes_conversion.setIcon(icon47) + self.goes_conversion.setIcon(icon48) self.goes_conversion.setIconSize(QtCore.QSize(34, 34)) self.goes_conversion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.goes_conversion.setObjectName("goes_conversion") @@ -4999,6 +5003,189 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_304.addLayout(self.gridLayout_307, 2, 0, 1, 2) self.gridLayout_308.addLayout(self.gridLayout_304, 1, 0, 1, 1) self.tabWidget_preprocessing.addTab(self.tab_GOES, "") + self.tab_neighbor_pixels = QtWidgets.QWidget() + self.tab_neighbor_pixels.setObjectName("tab_neighbor_pixels") + self.gridLayout_310 = QtWidgets.QGridLayout(self.tab_neighbor_pixels) + self.gridLayout_310.setObjectName("gridLayout_310") + self.gridLayout_240 = QtWidgets.QGridLayout() + self.gridLayout_240.setObjectName("gridLayout_240") + self.label_283 = QtWidgets.QLabel(self.tab_neighbor_pixels) + self.label_283.setStyleSheet("background-color : #656565; color : white") + self.label_283.setFrameShape(QtWidgets.QFrame.Panel) + self.label_283.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_283.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_283.setObjectName("label_283") + self.gridLayout_240.addWidget(self.label_283, 8, 0, 1, 3) + self.gridLayout_309 = QtWidgets.QGridLayout() + self.gridLayout_309.setObjectName("gridLayout_309") + self.label_287 = QtWidgets.QLabel(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_287.sizePolicy().hasHeightForWidth()) + self.label_287.setSizePolicy(sizePolicy) + self.label_287.setFrameShape(QtWidgets.QFrame.Panel) + self.label_287.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_287.setText("") + self.label_287.setObjectName("label_287") + self.gridLayout_309.addWidget(self.label_287, 0, 1, 1, 1) + self.label_281 = QtWidgets.QLabel(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_281.sizePolicy().hasHeightForWidth()) + self.label_281.setSizePolicy(sizePolicy) + self.label_281.setMinimumSize(QtCore.QSize(229, 0)) + font = QtGui.QFont() + font.setBold(False) + font.setWeight(50) + self.label_281.setFont(font) + self.label_281.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_281.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_281.setObjectName("label_281") + self.gridLayout_309.addWidget(self.label_281, 0, 0, 1, 1) + self.toolButton_input_matrix = QtWidgets.QToolButton(self.tab_neighbor_pixels) + self.toolButton_input_matrix.setStyleSheet("margin: 0px;padding: 0px;") + self.toolButton_input_matrix.setIcon(icon65) + self.toolButton_input_matrix.setIconSize(QtCore.QSize(22, 22)) + self.toolButton_input_matrix.setObjectName("toolButton_input_matrix") + self.gridLayout_309.addWidget(self.toolButton_input_matrix, 0, 2, 1, 1) + self.horizontalLayout_71 = QtWidgets.QHBoxLayout() + self.horizontalLayout_71.setObjectName("horizontalLayout_71") + self.label_279 = QtWidgets.QLabel(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_279.sizePolicy().hasHeightForWidth()) + self.label_279.setSizePolicy(sizePolicy) + self.label_279.setMinimumSize(QtCore.QSize(229, 0)) + self.label_279.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_279.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_279.setObjectName("label_279") + self.horizontalLayout_71.addWidget(self.label_279) + self.neighbor_output_name_lineEdit = QtWidgets.QLineEdit(self.tab_neighbor_pixels) + self.neighbor_output_name_lineEdit.setMaxLength(10) + self.neighbor_output_name_lineEdit.setObjectName("neighbor_output_name_lineEdit") + self.horizontalLayout_71.addWidget(self.neighbor_output_name_lineEdit) + self.gridLayout_309.addLayout(self.horizontalLayout_71, 1, 0, 1, 3) + self.gridLayout_240.addLayout(self.gridLayout_309, 2, 0, 1, 3) + self.neighbor_pixels = QtWidgets.QToolButton(self.tab_neighbor_pixels) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.neighbor_pixels.setFont(font) + self.neighbor_pixels.setLayoutDirection(QtCore.Qt.RightToLeft) + self.neighbor_pixels.setStyleSheet("margin: 0px;padding: 0px;") + self.neighbor_pixels.setIcon(icon48) + self.neighbor_pixels.setIconSize(QtCore.QSize(34, 34)) + self.neighbor_pixels.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) + self.neighbor_pixels.setObjectName("neighbor_pixels") + self.gridLayout_240.addWidget(self.neighbor_pixels, 9, 1, 1, 1) + spacerItem83 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_240.addItem(spacerItem83, 9, 0, 1, 1) + self.class_neighbor_toolButton = QtWidgets.QToolButton(self.tab_neighbor_pixels) + font = QtGui.QFont() + font.setBold(True) + font.setWeight(75) + self.class_neighbor_toolButton.setFont(font) + self.class_neighbor_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) + self.class_neighbor_toolButton.setStyleSheet("margin: 0px;padding: 0px;") + self.class_neighbor_toolButton.setIcon(icon64) + self.class_neighbor_toolButton.setIconSize(QtCore.QSize(34, 34)) + self.class_neighbor_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) + self.class_neighbor_toolButton.setObjectName("class_neighbor_toolButton") + self.gridLayout_240.addWidget(self.class_neighbor_toolButton, 9, 2, 1, 1) + spacerItem84 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_240.addItem(spacerItem84, 7, 2, 1, 1) + self.horizontalLayout_70 = QtWidgets.QHBoxLayout() + self.horizontalLayout_70.setObjectName("horizontalLayout_70") + self.label_286 = QtWidgets.QLabel(self.tab_neighbor_pixels) + self.label_286.setStyleSheet("background-color : #656565; color : white") + self.label_286.setFrameShape(QtWidgets.QFrame.Panel) + self.label_286.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_286.setObjectName("label_286") + self.horizontalLayout_70.addWidget(self.label_286) + self.gridLayout_240.addLayout(self.horizontalLayout_70, 0, 0, 1, 3) + self.gridLayout_277 = QtWidgets.QGridLayout() + self.gridLayout_277.setObjectName("gridLayout_277") + self.statistic_lineEdit_2 = QtWidgets.QLineEdit(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.statistic_lineEdit_2.sizePolicy().hasHeightForWidth()) + self.statistic_lineEdit_2.setSizePolicy(sizePolicy) + self.statistic_lineEdit_2.setMaximumSize(QtCore.QSize(200, 16777215)) + self.statistic_lineEdit_2.setText("") + self.statistic_lineEdit_2.setMaxLength(10000) + self.statistic_lineEdit_2.setObjectName("statistic_lineEdit_2") + self.gridLayout_277.addWidget(self.statistic_lineEdit_2, 1, 2, 1, 1) + self.statistic_name_combobox_2 = QtWidgets.QComboBox(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) + sizePolicy.setHorizontalStretch(1) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.statistic_name_combobox_2.sizePolicy().hasHeightForWidth()) + self.statistic_name_combobox_2.setSizePolicy(sizePolicy) + self.statistic_name_combobox_2.setMaximumSize(QtCore.QSize(200, 16777215)) + self.statistic_name_combobox_2.setObjectName("statistic_name_combobox_2") + self.gridLayout_277.addWidget(self.statistic_name_combobox_2, 1, 1, 1, 1) + self.label_284 = QtWidgets.QLabel(self.tab_neighbor_pixels) + self.label_284.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_284.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_284.setObjectName("label_284") + self.gridLayout_277.addWidget(self.label_284, 1, 0, 1, 1) + spacerItem85 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_277.addItem(spacerItem85, 1, 3, 1, 1) + self.label_285 = QtWidgets.QLabel(self.tab_neighbor_pixels) + self.label_285.setStyleSheet("background-color : #656565; color : white") + self.label_285.setFrameShape(QtWidgets.QFrame.Panel) + self.label_285.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_285.setObjectName("label_285") + self.gridLayout_277.addWidget(self.label_285, 0, 0, 1, 4) + self.gridLayout_240.addLayout(self.gridLayout_277, 6, 0, 1, 3) + self.gridLayout_300 = QtWidgets.QGridLayout() + self.gridLayout_300.setObjectName("gridLayout_300") + self.label_282 = QtWidgets.QLabel(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_282.sizePolicy().hasHeightForWidth()) + self.label_282.setSizePolicy(sizePolicy) + self.label_282.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_282.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_282.setObjectName("label_282") + self.gridLayout_300.addWidget(self.label_282, 0, 0, 1, 1) + self.label_280 = QtWidgets.QLabel(self.tab_neighbor_pixels) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(0) + sizePolicy.setHeightForWidth(self.label_280.sizePolicy().hasHeightForWidth()) + self.label_280.setSizePolicy(sizePolicy) + self.label_280.setMinimumSize(QtCore.QSize(229, 0)) + self.label_280.setFrameShadow(QtWidgets.QFrame.Sunken) + self.label_280.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) + self.label_280.setObjectName("label_280") + self.gridLayout_300.addWidget(self.label_280, 1, 0, 1, 1) + self.band_set_comb_spinBox_15 = QtWidgets.QSpinBox(self.tab_neighbor_pixels) + self.band_set_comb_spinBox_15.setMinimum(1) + self.band_set_comb_spinBox_15.setMaximum(100000) + self.band_set_comb_spinBox_15.setObjectName("band_set_comb_spinBox_15") + self.gridLayout_300.addWidget(self.band_set_comb_spinBox_15, 0, 1, 1, 1) + self.class_neighbor_threshold_spinBox = QtWidgets.QSpinBox(self.tab_neighbor_pixels) + self.class_neighbor_threshold_spinBox.setMinimum(1) + self.class_neighbor_threshold_spinBox.setMaximum(1000) + self.class_neighbor_threshold_spinBox.setProperty("value", 1) + self.class_neighbor_threshold_spinBox.setObjectName("class_neighbor_threshold_spinBox") + self.gridLayout_300.addWidget(self.class_neighbor_threshold_spinBox, 1, 1, 1, 1) + spacerItem86 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_300.addItem(spacerItem86, 1, 2, 1, 1) + self.gridLayout_240.addLayout(self.gridLayout_300, 1, 0, 1, 3) + self.horizontalLayout_72 = QtWidgets.QHBoxLayout() + self.horizontalLayout_72.setObjectName("horizontalLayout_72") + spacerItem87 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_72.addItem(spacerItem87) + self.gridLayout_240.addLayout(self.horizontalLayout_72, 3, 0, 1, 3) + self.gridLayout_310.addLayout(self.gridLayout_240, 0, 0, 1, 1) + self.tabWidget_preprocessing.addTab(self.tab_neighbor_pixels, "") self.gridLayout_6.addWidget(self.tabWidget_preprocessing, 0, 0, 1, 1) self.SCP_tabs.addTab(self.tab_preprocessing, "") self.tab_band_processing = QtWidgets.QWidget() @@ -5017,16 +5204,16 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.toolBox_band_set_combination = QtWidgets.QToolBox(self.tab_bandset_combination_2) self.toolBox_band_set_combination.setObjectName("toolBox_band_set_combination") self.page_29 = QtWidgets.QWidget() - self.page_29.setGeometry(QtCore.QRect(0, 0, 343, 180)) + self.page_29.setGeometry(QtCore.QRect(0, 0, 923, 413)) self.page_29.setObjectName("page_29") self.gridLayout_330 = QtWidgets.QGridLayout(self.page_29) self.gridLayout_330.setObjectName("gridLayout_330") self.gridLayout_333 = QtWidgets.QGridLayout() self.gridLayout_333.setObjectName("gridLayout_333") - spacerItem83 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_333.addItem(spacerItem83, 0, 2, 1, 1) - spacerItem84 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_333.addItem(spacerItem84, 2, 0, 1, 1) + spacerItem88 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_333.addItem(spacerItem88, 0, 2, 1, 1) + spacerItem89 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_333.addItem(spacerItem89, 2, 0, 1, 1) self.label_253 = QtWidgets.QLabel(self.page_29) self.label_253.setStyleSheet("background-color : #656565; color : white") self.label_253.setFrameShape(QtWidgets.QFrame.Panel) @@ -5041,7 +5228,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.calculateBandSetComb_toolButton.setFont(font) self.calculateBandSetComb_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.calculateBandSetComb_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculateBandSetComb_toolButton.setIcon(icon63) + self.calculateBandSetComb_toolButton.setIcon(icon64) self.calculateBandSetComb_toolButton.setIconSize(QtCore.QSize(34, 34)) self.calculateBandSetComb_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.calculateBandSetComb_toolButton.setObjectName("calculateBandSetComb_toolButton") @@ -5053,7 +5240,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_combination.setFont(font) self.band_combination.setLayoutDirection(QtCore.Qt.RightToLeft) self.band_combination.setStyleSheet("margin: 0px;padding: 0px;") - self.band_combination.setIcon(icon47) + self.band_combination.setIcon(icon48) self.band_combination.setIconSize(QtCore.QSize(34, 34)) self.band_combination.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.band_combination.setObjectName("band_combination") @@ -5078,8 +5265,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_set_comb_spinBox.setMaximum(100000) self.band_set_comb_spinBox.setObjectName("band_set_comb_spinBox") self.gridLayout_331.addWidget(self.band_set_comb_spinBox, 1, 2, 1, 1) - spacerItem85 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_331.addItem(spacerItem85, 1, 3, 1, 1) + spacerItem90 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_331.addItem(spacerItem90, 1, 3, 1, 1) self.gridLayout_330.addLayout(self.gridLayout_331, 1, 1, 1, 1) self.horizontalLayout_34 = QtWidgets.QHBoxLayout() self.horizontalLayout_34.setObjectName("horizontalLayout_34") @@ -5147,8 +5334,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.nodata_spinBox_5.setProperty("value", 0) self.nodata_spinBox_5.setObjectName("nodata_spinBox_5") self.gridLayout_173.addWidget(self.nodata_spinBox_5, 2, 1, 1, 1) - spacerItem86 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_173.addItem(spacerItem86, 3, 4, 1, 1) + spacerItem91 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_173.addItem(spacerItem91, 3, 4, 1, 1) self.pca_Button = QtWidgets.QToolButton(self.page_16) font = QtGui.QFont() font.setBold(True) @@ -5156,7 +5343,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pca_Button.setFont(font) self.pca_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.pca_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.pca_Button.setIcon(icon63) + self.pca_Button.setIcon(icon64) self.pca_Button.setIconSize(QtCore.QSize(34, 34)) self.pca_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pca_Button.setObjectName("pca_Button") @@ -5188,8 +5375,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_166.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_166.setObjectName("label_166") self.gridLayout_173.addWidget(self.label_166, 4, 0, 1, 5) - spacerItem87 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_173.addItem(spacerItem87, 5, 2, 1, 1) + spacerItem92 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_173.addItem(spacerItem92, 5, 2, 1, 1) self.pca = QtWidgets.QToolButton(self.page_16) font = QtGui.QFont() font.setBold(True) @@ -5197,7 +5384,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.pca.setFont(font) self.pca.setLayoutDirection(QtCore.Qt.RightToLeft) self.pca.setStyleSheet("margin: 0px;padding: 0px;") - self.pca.setIcon(icon47) + self.pca.setIcon(icon48) self.pca.setIconSize(QtCore.QSize(34, 34)) self.pca.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.pca.setObjectName("pca") @@ -5283,10 +5470,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.kmeans_radioButton.setAutoExclusive(False) self.kmeans_radioButton.setObjectName("kmeans_radioButton") self.gridLayout_151.addWidget(self.kmeans_radioButton, 0, 4, 1, 1) - spacerItem88 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_151.addItem(spacerItem88, 0, 2, 1, 1) - spacerItem89 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_151.addItem(spacerItem89, 0, 6, 1, 1) + spacerItem93 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_151.addItem(spacerItem93, 0, 2, 1, 1) + spacerItem94 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_151.addItem(spacerItem94, 0, 6, 1, 1) self.gridLayout_152.addLayout(self.gridLayout_151, 1, 0, 1, 1) self.gridLayout_125 = QtWidgets.QGridLayout() self.gridLayout_125.setObjectName("gridLayout_125") @@ -5362,8 +5549,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_224.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_224.setObjectName("label_224") self.gridLayout_125.addWidget(self.label_224, 0, 2, 1, 1) - spacerItem90 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_125.addItem(spacerItem90, 0, 4, 1, 1) + spacerItem95 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_125.addItem(spacerItem95, 0, 4, 1, 1) self.label_229 = QtWidgets.QLabel(self.page_18) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -5447,8 +5634,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_179.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_179.setObjectName("label_179") self.gridLayout_231.addWidget(self.label_179, 2, 0, 1, 4) - spacerItem91 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_231.addItem(spacerItem91, 3, 0, 1, 2) + spacerItem96 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_231.addItem(spacerItem96, 3, 0, 1, 2) self.kmeans_Button = QtWidgets.QToolButton(self.page_18) font = QtGui.QFont() font.setBold(True) @@ -5456,7 +5643,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.kmeans_Button.setFont(font) self.kmeans_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.kmeans_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.kmeans_Button.setIcon(icon63) + self.kmeans_Button.setIcon(icon64) self.kmeans_Button.setIconSize(QtCore.QSize(34, 34)) self.kmeans_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.kmeans_Button.setObjectName("kmeans_Button") @@ -5468,13 +5655,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.clustering.setFont(font) self.clustering.setLayoutDirection(QtCore.Qt.RightToLeft) self.clustering.setStyleSheet("margin: 0px;padding: 0px;") - self.clustering.setIcon(icon47) + self.clustering.setIcon(icon48) self.clustering.setIconSize(QtCore.QSize(34, 34)) self.clustering.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.clustering.setObjectName("clustering") self.gridLayout_231.addWidget(self.clustering, 3, 2, 1, 1) - spacerItem92 = QtWidgets.QSpacerItem(38, 0, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_231.addItem(spacerItem92, 1, 3, 1, 1) + spacerItem97 = QtWidgets.QSpacerItem(38, 0, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_231.addItem(spacerItem97, 1, 3, 1, 1) self.gridLayout_152.addLayout(self.gridLayout_231, 3, 0, 1, 1) self.toolBox_kmeans.addItem(self.page_18, "") self.page_23 = QtWidgets.QWidget() @@ -5581,8 +5768,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_set_comb_spinBox_6.setMaximum(100000) self.band_set_comb_spinBox_6.setObjectName("band_set_comb_spinBox_6") self.gridLayout_41.addWidget(self.band_set_comb_spinBox_6, 0, 1, 1, 1) - spacerItem93 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_41.addItem(spacerItem93, 1, 2, 1, 1) + spacerItem98 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_41.addItem(spacerItem98, 1, 2, 1, 1) self.gridLayout_149.addLayout(self.gridLayout_41, 1, 0, 1, 4) self.gridLayout_154.addLayout(self.gridLayout_149, 0, 0, 1, 1) self.gridLayout_233 = QtWidgets.QGridLayout() @@ -5594,10 +5781,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_183.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_183.setObjectName("label_183") self.gridLayout_233.addWidget(self.label_183, 1, 0, 1, 4) - spacerItem94 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_233.addItem(spacerItem94, 2, 0, 1, 2) - spacerItem95 = QtWidgets.QSpacerItem(38, 37, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_233.addItem(spacerItem95, 0, 3, 1, 1) + spacerItem99 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_233.addItem(spacerItem99, 2, 0, 1, 2) + spacerItem100 = QtWidgets.QSpacerItem(38, 37, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_233.addItem(spacerItem100, 0, 3, 1, 1) self.spectral_distance_bandsets_toolButton = QtWidgets.QToolButton(self.tab_spectral_dist) font = QtGui.QFont() font.setBold(True) @@ -5605,7 +5792,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.spectral_distance_bandsets_toolButton.setFont(font) self.spectral_distance_bandsets_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.spectral_distance_bandsets_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.spectral_distance_bandsets_toolButton.setIcon(icon63) + self.spectral_distance_bandsets_toolButton.setIcon(icon64) self.spectral_distance_bandsets_toolButton.setIconSize(QtCore.QSize(34, 34)) self.spectral_distance_bandsets_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.spectral_distance_bandsets_toolButton.setObjectName("spectral_distance_bandsets_toolButton") @@ -5617,7 +5804,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.spectral_distance.setFont(font) self.spectral_distance.setLayoutDirection(QtCore.Qt.RightToLeft) self.spectral_distance.setStyleSheet("margin: 0px;padding: 0px;") - self.spectral_distance.setIcon(icon47) + self.spectral_distance.setIcon(icon48) self.spectral_distance.setIconSize(QtCore.QSize(34, 34)) self.spectral_distance.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.spectral_distance.setObjectName("spectral_distance") @@ -5656,8 +5843,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_checkBox.setSizePolicy(sizePolicy) self.class_checkBox.setObjectName("class_checkBox") self.horizontalLayout_55.addWidget(self.class_checkBox) - spacerItem96 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_55.addItem(spacerItem96) + spacerItem101 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_55.addItem(spacerItem101) self.algorithm_weight_button = QtWidgets.QToolButton(self.tab_classification) self.algorithm_weight_button.setStyleSheet("margin: 0px;padding: 0px;") self.algorithm_weight_button.setIcon(icon3) @@ -5728,8 +5915,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_234.setMaximumSize(QtCore.QSize(100, 16777215)) self.label_234.setObjectName("label_234") self.gridLayout_255.addWidget(self.label_234, 0, 0, 1, 1) - spacerItem97 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_255.addItem(spacerItem97, 0, 2, 1, 1) + spacerItem102 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_255.addItem(spacerItem102, 0, 2, 1, 1) self.gridLayout_218.addLayout(self.gridLayout_255, 4, 3, 1, 1) self.label_243 = QtWidgets.QLabel(self.tab_classification) self.label_243.setStyleSheet("background-color : #656565; color : white") @@ -5738,8 +5925,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_243.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_243.setObjectName("label_243") self.gridLayout_218.addWidget(self.label_243, 0, 0, 1, 4) - spacerItem98 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_218.addItem(spacerItem98, 1, 3, 1, 1) + spacerItem103 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_218.addItem(spacerItem103, 1, 3, 1, 1) self.gridLayout_260.addLayout(self.gridLayout_218, 0, 0, 1, 1) self.verticalLayout_4 = QtWidgets.QVBoxLayout() self.verticalLayout_4.setObjectName("verticalLayout_4") @@ -5789,7 +5976,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_239.setObjectName("gridLayout_239") self.resetQmlButton = QtWidgets.QToolButton(self.tab_classification) self.resetQmlButton.setStyleSheet("margin: 0px;padding: 0px;") - self.resetQmlButton.setIcon(icon58) + self.resetQmlButton.setIcon(icon59) self.resetQmlButton.setIconSize(QtCore.QSize(22, 22)) self.resetQmlButton.setObjectName("resetQmlButton") self.gridLayout_239.addWidget(self.resetQmlButton, 0, 3, 1, 1) @@ -5803,7 +5990,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_239.addWidget(self.label_238, 0, 0, 1, 1) self.qml_Button = QtWidgets.QToolButton(self.tab_classification) self.qml_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.qml_Button.setIcon(icon64) + self.qml_Button.setIcon(icon65) self.qml_Button.setIconSize(QtCore.QSize(22, 22)) self.qml_Button.setObjectName("qml_Button") self.gridLayout_239.addWidget(self.qml_Button, 0, 2, 1, 1) @@ -5819,7 +6006,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_241.addWidget(self.mask_checkBox, 0, 0, 1, 1) self.resetMaskButton = QtWidgets.QToolButton(self.tab_classification) self.resetMaskButton.setStyleSheet("margin: 0px;padding: 0px;") - self.resetMaskButton.setIcon(icon58) + self.resetMaskButton.setIcon(icon59) self.resetMaskButton.setIconSize(QtCore.QSize(22, 22)) self.resetMaskButton.setObjectName("resetMaskButton") self.gridLayout_241.addWidget(self.resetMaskButton, 0, 3, 1, 1) @@ -5851,7 +6038,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.button_classification.setFont(font) self.button_classification.setLayoutDirection(QtCore.Qt.RightToLeft) self.button_classification.setStyleSheet("margin: 0px;padding: 0px;") - self.button_classification.setIcon(icon63) + self.button_classification.setIcon(icon64) self.button_classification.setIconSize(QtCore.QSize(34, 34)) self.button_classification.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.button_classification.setObjectName("button_classification") @@ -5863,10 +6050,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_239.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_239.setObjectName("label_239") self.gridLayout_249.addWidget(self.label_239, 1, 0, 1, 3) - spacerItem99 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_249.addItem(spacerItem99, 0, 2, 1, 1) - spacerItem100 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_249.addItem(spacerItem100, 2, 0, 1, 1) + spacerItem104 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_249.addItem(spacerItem104, 0, 2, 1, 1) + spacerItem105 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_249.addItem(spacerItem105, 2, 0, 1, 1) self.classification = QtWidgets.QToolButton(self.tab_classification) font = QtGui.QFont() font.setBold(True) @@ -5874,7 +6061,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification.setFont(font) self.classification.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification.setStyleSheet("margin: 0px;padding: 0px;") - self.classification.setIcon(icon47) + self.classification.setIcon(icon48) self.classification.setIconSize(QtCore.QSize(34, 34)) self.classification.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification.setObjectName("classification") @@ -5923,8 +6110,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_checkBox_rf.setSizePolicy(sizePolicy) self.class_checkBox_rf.setObjectName("class_checkBox_rf") self.horizontalLayout_58.addWidget(self.class_checkBox_rf) - spacerItem101 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_58.addItem(spacerItem101) + spacerItem106 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_58.addItem(spacerItem106) self.gridLayout_280.addLayout(self.horizontalLayout_58, 2, 0, 1, 3) self.band_set_comb_spinBox_13 = QtWidgets.QSpinBox(self.page_21) self.band_set_comb_spinBox_13.setMinimum(1) @@ -5974,8 +6161,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_237.setMaximumSize(QtCore.QSize(150, 16777215)) self.label_237.setObjectName("label_237") self.gridLayout_284.addWidget(self.label_237, 0, 0, 1, 1) - spacerItem102 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_284.addItem(spacerItem102, 0, 2, 1, 1) + spacerItem107 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_284.addItem(spacerItem107, 0, 2, 1, 1) self.gridLayout_280.addLayout(self.gridLayout_284, 4, 0, 1, 3) self.gridLayout_282 = QtWidgets.QGridLayout() self.gridLayout_282.setObjectName("gridLayout_282") @@ -6003,11 +6190,11 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_236.setMaximumSize(QtCore.QSize(208, 16777215)) self.label_236.setObjectName("label_236") self.gridLayout_282.addWidget(self.label_236, 0, 0, 1, 1) - spacerItem103 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_282.addItem(spacerItem103, 0, 2, 1, 1) + spacerItem108 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_282.addItem(spacerItem108, 0, 2, 1, 1) self.gridLayout_280.addLayout(self.gridLayout_282, 3, 0, 1, 3) - spacerItem104 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_280.addItem(spacerItem104, 1, 2, 1, 1) + spacerItem109 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_280.addItem(spacerItem109, 1, 2, 1, 1) self.gridLayout_287.addLayout(self.gridLayout_280, 0, 0, 1, 1) self.gridLayout_285 = QtWidgets.QGridLayout() self.gridLayout_285.setObjectName("gridLayout_285") @@ -6027,8 +6214,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.evaluate_feature_power_set_checkBox.setSizePolicy(sizePolicy) self.evaluate_feature_power_set_checkBox.setObjectName("evaluate_feature_power_set_checkBox") self.gridLayout_285.addWidget(self.evaluate_feature_power_set_checkBox, 0, 1, 1, 1) - spacerItem105 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_285.addItem(spacerItem105, 0, 6, 1, 1) + spacerItem110 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_285.addItem(spacerItem110, 0, 6, 1, 1) self.label_248 = QtWidgets.QLabel(self.page_21) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Minimum) sizePolicy.setHorizontalStretch(0) @@ -6098,7 +6285,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_286.addWidget(self.label_244, 0, 0, 1, 1) self.classifier_Button = QtWidgets.QToolButton(self.page_21) self.classifier_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.classifier_Button.setIcon(icon64) + self.classifier_Button.setIcon(icon65) self.classifier_Button.setIconSize(QtCore.QSize(22, 22)) self.classifier_Button.setObjectName("classifier_Button") self.gridLayout_286.addWidget(self.classifier_Button, 0, 2, 1, 1) @@ -6108,7 +6295,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_286.addWidget(self.classifier_lineEdit_, 0, 1, 1, 1) self.resetClassifierButton = QtWidgets.QToolButton(self.page_21) self.resetClassifierButton.setStyleSheet("margin: 0px;padding: 0px;") - self.resetClassifierButton.setIcon(icon58) + self.resetClassifierButton.setIcon(icon59) self.resetClassifierButton.setIconSize(QtCore.QSize(22, 22)) self.resetClassifierButton.setObjectName("resetClassifierButton") self.gridLayout_286.addWidget(self.resetClassifierButton, 0, 3, 1, 1) @@ -6122,7 +6309,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.button_random_forest.setFont(font) self.button_random_forest.setLayoutDirection(QtCore.Qt.RightToLeft) self.button_random_forest.setStyleSheet("margin: 0px;padding: 0px;") - self.button_random_forest.setIcon(icon63) + self.button_random_forest.setIcon(icon64) self.button_random_forest.setIconSize(QtCore.QSize(34, 34)) self.button_random_forest.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.button_random_forest.setObjectName("button_random_forest") @@ -6134,10 +6321,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_246.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_246.setObjectName("label_246") self.gridLayout_283.addWidget(self.label_246, 1, 0, 1, 3) - spacerItem106 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_283.addItem(spacerItem106, 0, 2, 1, 1) - spacerItem107 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_283.addItem(spacerItem107, 2, 0, 1, 1) + spacerItem111 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_283.addItem(spacerItem111, 0, 2, 1, 1) + spacerItem112 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_283.addItem(spacerItem112, 2, 0, 1, 1) self.random_forest = QtWidgets.QToolButton(self.page_21) font = QtGui.QFont() font.setBold(True) @@ -6145,7 +6332,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.random_forest.setFont(font) self.random_forest.setLayoutDirection(QtCore.Qt.RightToLeft) self.random_forest.setStyleSheet("margin: 0px;padding: 0px;") - self.random_forest.setIcon(icon47) + self.random_forest.setIcon(icon48) self.random_forest.setIconSize(QtCore.QSize(34, 34)) self.random_forest.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.random_forest.setObjectName("random_forest") @@ -6191,7 +6378,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.toolBox_accuracy = QtWidgets.QToolBox(self.tab_accuracy) self.toolBox_accuracy.setObjectName("toolBox_accuracy") self.page_10 = QtWidgets.QWidget() - self.page_10.setGeometry(QtCore.QRect(0, 0, 428, 229)) + self.page_10.setGeometry(QtCore.QRect(0, 0, 923, 413)) self.page_10.setObjectName("page_10") self.gridLayout_36 = QtWidgets.QGridLayout(self.page_10) self.gridLayout_36.setObjectName("gridLayout_36") @@ -6228,13 +6415,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_33.addWidget(self.classification_name_combo, 1, 1, 1, 3) self.buttonReload_shape_4 = QtWidgets.QToolButton(self.page_10) self.buttonReload_shape_4.setStyleSheet("margin: 0px;padding: 0px;") - self.buttonReload_shape_4.setIcon(icon54) + self.buttonReload_shape_4.setIcon(icon55) self.buttonReload_shape_4.setIconSize(QtCore.QSize(22, 22)) self.buttonReload_shape_4.setObjectName("buttonReload_shape_4") self.gridLayout_33.addWidget(self.buttonReload_shape_4, 2, 4, 1, 1) self.toolButton_reload_4 = QtWidgets.QToolButton(self.page_10) self.toolButton_reload_4.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_4.setIcon(icon54) + self.toolButton_reload_4.setIcon(icon55) self.toolButton_reload_4.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_4.setObjectName("toolButton_reload_4") self.gridLayout_33.addWidget(self.toolButton_reload_4, 1, 4, 1, 1) @@ -6286,16 +6473,16 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.nodata_spinBox_15.setProperty("value", 0) self.nodata_spinBox_15.setObjectName("nodata_spinBox_15") self.horizontalLayout_67.addWidget(self.nodata_spinBox_15) - spacerItem108 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_67.addItem(spacerItem108) + spacerItem113 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_67.addItem(spacerItem113) self.gridLayout_33.addLayout(self.horizontalLayout_67, 4, 0, 1, 5) self.gridLayout_36.addLayout(self.gridLayout_33, 0, 0, 1, 1) self.gridLayout_25 = QtWidgets.QGridLayout() self.gridLayout_25.setObjectName("gridLayout_25") - spacerItem109 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_25.addItem(spacerItem109, 0, 2, 1, 1) - spacerItem110 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_25.addItem(spacerItem110, 2, 0, 1, 1) + spacerItem114 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_25.addItem(spacerItem114, 0, 2, 1, 1) + spacerItem115 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_25.addItem(spacerItem115, 2, 0, 1, 1) self.label_168 = QtWidgets.QLabel(self.page_10) self.label_168.setStyleSheet("background-color : #656565; color : white") self.label_168.setFrameShape(QtWidgets.QFrame.Panel) @@ -6310,7 +6497,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.calculateMatrix_toolButton.setFont(font) self.calculateMatrix_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.calculateMatrix_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculateMatrix_toolButton.setIcon(icon63) + self.calculateMatrix_toolButton.setIcon(icon64) self.calculateMatrix_toolButton.setIconSize(QtCore.QSize(34, 34)) self.calculateMatrix_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.calculateMatrix_toolButton.setObjectName("calculateMatrix_toolButton") @@ -6322,7 +6509,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.accuracy.setFont(font) self.accuracy.setLayoutDirection(QtCore.Qt.RightToLeft) self.accuracy.setStyleSheet("margin: 0px;padding: 0px;") - self.accuracy.setIcon(icon47) + self.accuracy.setIcon(icon48) self.accuracy.setIconSize(QtCore.QSize(34, 34)) self.accuracy.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.accuracy.setObjectName("accuracy") @@ -6406,13 +6593,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_44.addWidget(self.new_classification_name_combo, 2, 1, 1, 1) self.toolButton_reload_5 = QtWidgets.QToolButton(self.page_12) self.toolButton_reload_5.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_5.setIcon(icon54) + self.toolButton_reload_5.setIcon(icon55) self.toolButton_reload_5.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_5.setObjectName("toolButton_reload_5") self.gridLayout_44.addWidget(self.toolButton_reload_5, 1, 2, 1, 1) self.toolButton_reload_6 = QtWidgets.QToolButton(self.page_12) self.toolButton_reload_6.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_6.setIcon(icon54) + self.toolButton_reload_6.setIcon(icon55) self.toolButton_reload_6.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_6.setObjectName("toolButton_reload_6") self.gridLayout_44.addWidget(self.toolButton_reload_6, 2, 2, 1, 1) @@ -6428,10 +6615,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_186.addLayout(self.gridLayout_44, 0, 0, 1, 1) self.gridLayout_45 = QtWidgets.QGridLayout() self.gridLayout_45.setObjectName("gridLayout_45") - spacerItem111 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_45.addItem(spacerItem111, 2, 0, 1, 1) - spacerItem112 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_45.addItem(spacerItem112, 0, 2, 1, 1) + spacerItem116 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_45.addItem(spacerItem116, 2, 0, 1, 1) + spacerItem117 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_45.addItem(spacerItem117, 0, 2, 1, 1) self.label_169 = QtWidgets.QLabel(self.page_12) self.label_169.setStyleSheet("background-color : #656565; color : white") self.label_169.setFrameShape(QtWidgets.QFrame.Panel) @@ -6446,7 +6633,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.calculateLandCoverChange_toolButton.setFont(font) self.calculateLandCoverChange_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.calculateLandCoverChange_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculateLandCoverChange_toolButton.setIcon(icon63) + self.calculateLandCoverChange_toolButton.setIcon(icon64) self.calculateLandCoverChange_toolButton.setIconSize(QtCore.QSize(34, 34)) self.calculateLandCoverChange_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.calculateLandCoverChange_toolButton.setObjectName("calculateLandCoverChange_toolButton") @@ -6458,7 +6645,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.land_cover_change.setFont(font) self.land_cover_change.setLayoutDirection(QtCore.Qt.RightToLeft) self.land_cover_change.setStyleSheet("margin: 0px;padding: 0px;") - self.land_cover_change.setIcon(icon47) + self.land_cover_change.setIcon(icon48) self.land_cover_change.setIconSize(QtCore.QSize(34, 34)) self.land_cover_change.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.land_cover_change.setObjectName("land_cover_change") @@ -6533,15 +6720,15 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_47.addLayout(self.gridLayout_26, 2, 0, 1, 1) self.toolButton_reload_10 = QtWidgets.QToolButton(self.page_14) self.toolButton_reload_10.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_10.setIcon(icon54) + self.toolButton_reload_10.setIcon(icon55) self.toolButton_reload_10.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_10.setObjectName("toolButton_reload_10") self.gridLayout_47.addWidget(self.toolButton_reload_10, 1, 2, 1, 1) self.gridLayout_48.addLayout(self.gridLayout_47, 1, 1, 1, 1) self.gridLayout_189 = QtWidgets.QGridLayout() self.gridLayout_189.setObjectName("gridLayout_189") - spacerItem113 = QtWidgets.QSpacerItem(358, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_189.addItem(spacerItem113, 2, 1, 1, 1) + spacerItem118 = QtWidgets.QSpacerItem(358, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_189.addItem(spacerItem118, 2, 1, 1, 1) self.label_170 = QtWidgets.QLabel(self.page_14) self.label_170.setStyleSheet("background-color : #656565; color : white") self.label_170.setFrameShape(QtWidgets.QFrame.Panel) @@ -6556,13 +6743,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.calculateReport_toolButton.setFont(font) self.calculateReport_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.calculateReport_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculateReport_toolButton.setIcon(icon63) + self.calculateReport_toolButton.setIcon(icon64) self.calculateReport_toolButton.setIconSize(QtCore.QSize(34, 34)) self.calculateReport_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.calculateReport_toolButton.setObjectName("calculateReport_toolButton") self.gridLayout_189.addWidget(self.calculateReport_toolButton, 2, 3, 1, 1) - spacerItem114 = QtWidgets.QSpacerItem(20, 82, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_189.addItem(spacerItem114, 0, 0, 1, 2) + spacerItem119 = QtWidgets.QSpacerItem(20, 82, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_189.addItem(spacerItem119, 0, 0, 1, 2) self.classification_report = QtWidgets.QToolButton(self.page_14) font = QtGui.QFont() font.setBold(True) @@ -6570,7 +6757,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification_report.setFont(font) self.classification_report.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification_report.setStyleSheet("margin: 0px;padding: 0px;") - self.classification_report.setIcon(icon47) + self.classification_report.setIcon(icon48) self.classification_report.setIconSize(QtCore.QSize(34, 34)) self.classification_report.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification_report.setObjectName("classification_report") @@ -6673,7 +6860,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_250.addWidget(self.class_field_comboBox_2, 4, 2, 1, 2) self.toolButton_reload_21 = QtWidgets.QToolButton(self.page_19) self.toolButton_reload_21.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_21.setIcon(icon54) + self.toolButton_reload_21.setIcon(icon55) self.toolButton_reload_21.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_21.setObjectName("toolButton_reload_21") self.gridLayout_250.addWidget(self.toolButton_reload_21, 1, 4, 1, 1) @@ -6687,7 +6874,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_250.addWidget(self.classification_name_combo_2, 1, 1, 1, 3) self.buttonReload_shape_5 = QtWidgets.QToolButton(self.page_19) self.buttonReload_shape_5.setStyleSheet("margin: 0px;padding: 0px;") - self.buttonReload_shape_5.setIcon(icon54) + self.buttonReload_shape_5.setIcon(icon55) self.buttonReload_shape_5.setIconSize(QtCore.QSize(22, 22)) self.buttonReload_shape_5.setObjectName("buttonReload_shape_5") self.gridLayout_250.addWidget(self.buttonReload_shape_5, 3, 4, 1, 1) @@ -6712,10 +6899,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_192.addLayout(self.gridLayout_250, 1, 0, 1, 1) self.gridLayout_251 = QtWidgets.QGridLayout() self.gridLayout_251.setObjectName("gridLayout_251") - spacerItem115 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_251.addItem(spacerItem115, 0, 2, 1, 1) - spacerItem116 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_251.addItem(spacerItem116, 2, 0, 1, 1) + spacerItem120 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_251.addItem(spacerItem120, 0, 2, 1, 1) + spacerItem121 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_251.addItem(spacerItem121, 2, 0, 1, 1) self.label_200 = QtWidgets.QLabel(self.page_19) self.label_200.setStyleSheet("background-color : #656565; color : white") self.label_200.setFrameShape(QtWidgets.QFrame.Panel) @@ -6730,7 +6917,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.calculatecrossClass_toolButton.setFont(font) self.calculatecrossClass_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.calculatecrossClass_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculatecrossClass_toolButton.setIcon(icon63) + self.calculatecrossClass_toolButton.setIcon(icon64) self.calculatecrossClass_toolButton.setIconSize(QtCore.QSize(34, 34)) self.calculatecrossClass_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.calculatecrossClass_toolButton.setObjectName("calculatecrossClass_toolButton") @@ -6742,7 +6929,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.cross_classification.setFont(font) self.cross_classification.setLayoutDirection(QtCore.Qt.RightToLeft) self.cross_classification.setStyleSheet("margin: 0px;padding: 0px;") - self.cross_classification.setIcon(icon47) + self.cross_classification.setIcon(icon48) self.cross_classification.setIconSize(QtCore.QSize(34, 34)) self.cross_classification.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.cross_classification.setObjectName("cross_classification") @@ -6816,7 +7003,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_112.addWidget(self.label_201, 0, 0, 1, 1) self.toolButton_reload_22 = QtWidgets.QToolButton(self.page_20) self.toolButton_reload_22.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_22.setIcon(icon54) + self.toolButton_reload_22.setIcon(icon55) self.toolButton_reload_22.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_22.setObjectName("toolButton_reload_22") self.gridLayout_112.addWidget(self.toolButton_reload_22, 0, 2, 1, 1) @@ -6836,8 +7023,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_set_comb_spinBox_8.setMaximum(100000) self.band_set_comb_spinBox_8.setObjectName("band_set_comb_spinBox_8") self.gridLayout_211.addWidget(self.band_set_comb_spinBox_8, 1, 1, 1, 1) - spacerItem117 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_211.addItem(spacerItem117, 1, 2, 1, 1) + spacerItem122 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_211.addItem(spacerItem122, 1, 2, 1, 1) self.gridLayout_209.addLayout(self.gridLayout_211, 1, 0, 1, 1) self.gridLayout_256 = QtWidgets.QGridLayout() self.gridLayout_256.setObjectName("gridLayout_256") @@ -6855,15 +7042,15 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_signature_Button.setFont(font) self.class_signature_Button.setLayoutDirection(QtCore.Qt.RightToLeft) self.class_signature_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.class_signature_Button.setIcon(icon63) + self.class_signature_Button.setIcon(icon64) self.class_signature_Button.setIconSize(QtCore.QSize(34, 34)) self.class_signature_Button.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.class_signature_Button.setObjectName("class_signature_Button") self.gridLayout_256.addWidget(self.class_signature_Button, 3, 3, 1, 1) - spacerItem118 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_256.addItem(spacerItem118, 3, 0, 1, 2) - spacerItem119 = QtWidgets.QSpacerItem(38, 37, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_256.addItem(spacerItem119, 1, 0, 1, 1) + spacerItem123 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_256.addItem(spacerItem123, 3, 0, 1, 2) + spacerItem124 = QtWidgets.QSpacerItem(38, 37, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_256.addItem(spacerItem124, 1, 0, 1, 1) self.class_signature_save_siglist_checkBox = QtWidgets.QCheckBox(self.page_20) self.class_signature_save_siglist_checkBox.setChecked(True) self.class_signature_save_siglist_checkBox.setObjectName("class_signature_save_siglist_checkBox") @@ -6875,7 +7062,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_signature.setFont(font) self.class_signature.setLayoutDirection(QtCore.Qt.RightToLeft) self.class_signature.setStyleSheet("margin: 0px;padding: 0px;") - self.class_signature.setIcon(icon47) + self.class_signature.setIcon(icon48) self.class_signature.setIconSize(QtCore.QSize(34, 34)) self.class_signature.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.class_signature.setObjectName("class_signature") @@ -6939,7 +7126,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_71.addWidget(self.classification_vector_name_combo, 0, 1, 1, 1) self.toolButton_reload_11 = QtWidgets.QToolButton(self.tab_class_to_vector) self.toolButton_reload_11.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_11.setIcon(icon54) + self.toolButton_reload_11.setIcon(icon55) self.toolButton_reload_11.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_11.setObjectName("toolButton_reload_11") self.gridLayout_71.addWidget(self.toolButton_reload_11, 0, 2, 1, 1) @@ -6976,10 +7163,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_49.addLayout(self.gridLayout_74, 2, 0, 1, 1) self.gridLayout_75 = QtWidgets.QGridLayout() self.gridLayout_75.setObjectName("gridLayout_75") - spacerItem120 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_75.addItem(spacerItem120, 0, 1, 1, 1) - spacerItem121 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_75.addItem(spacerItem121, 0, 0, 1, 1) + spacerItem125 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_75.addItem(spacerItem125, 0, 1, 1, 1) + spacerItem126 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_75.addItem(spacerItem126, 0, 0, 1, 1) self.convert_toolButton = QtWidgets.QToolButton(self.tab_class_to_vector) font = QtGui.QFont() font.setBold(True) @@ -6987,7 +7174,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.convert_toolButton.setFont(font) self.convert_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.convert_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.convert_toolButton.setIcon(icon63) + self.convert_toolButton.setIcon(icon64) self.convert_toolButton.setIconSize(QtCore.QSize(34, 34)) self.convert_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.convert_toolButton.setObjectName("convert_toolButton") @@ -7006,7 +7193,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification_to_vector.setFont(font) self.classification_to_vector.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification_to_vector.setStyleSheet("margin: 0px;padding: 0px;") - self.classification_to_vector.setIcon(icon47) + self.classification_to_vector.setIcon(icon48) self.classification_to_vector.setIconSize(QtCore.QSize(34, 34)) self.classification_to_vector.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification_to_vector.setObjectName("classification_to_vector") @@ -7040,7 +7227,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_78.addWidget(self.reclassification_name_combo, 1, 1, 1, 1) self.toolButton_reload_12 = QtWidgets.QToolButton(self.tab_reclassification) self.toolButton_reload_12.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_12.setIcon(icon54) + self.toolButton_reload_12.setIcon(icon55) self.toolButton_reload_12.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_12.setObjectName("toolButton_reload_12") self.gridLayout_78.addWidget(self.toolButton_reload_12, 1, 2, 1, 1) @@ -7058,7 +7245,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_79.setObjectName("gridLayout_79") self.calculate_unique_values_toolButton = QtWidgets.QToolButton(self.tab_reclassification) self.calculate_unique_values_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.calculate_unique_values_toolButton.setIcon(icon66) + self.calculate_unique_values_toolButton.setIcon(icon67) self.calculate_unique_values_toolButton.setIconSize(QtCore.QSize(22, 22)) self.calculate_unique_values_toolButton.setObjectName("calculate_unique_values_toolButton") self.gridLayout_79.addWidget(self.calculate_unique_values_toolButton, 1, 4, 1, 1) @@ -7087,7 +7274,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_79.addWidget(self.label_54, 0, 2, 1, 3) self.incremental_new_values_toolButton = QtWidgets.QToolButton(self.tab_reclassification) self.incremental_new_values_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.incremental_new_values_toolButton.setIcon(icon66) + self.incremental_new_values_toolButton.setIcon(icon67) self.incremental_new_values_toolButton.setIconSize(QtCore.QSize(22, 22)) self.incremental_new_values_toolButton.setObjectName("incremental_new_values_toolButton") self.gridLayout_79.addWidget(self.incremental_new_values_toolButton, 2, 4, 1, 1) @@ -7119,34 +7306,34 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_81.setObjectName("gridLayout_81") self.add_value_pushButton = QtWidgets.QToolButton(self.tab_reclassification) self.add_value_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.add_value_pushButton.setIcon(icon65) + self.add_value_pushButton.setIcon(icon66) self.add_value_pushButton.setIconSize(QtCore.QSize(22, 22)) self.add_value_pushButton.setObjectName("add_value_pushButton") self.gridLayout_81.addWidget(self.add_value_pushButton, 1, 0, 1, 1) self.remove_row_pushButton = QtWidgets.QToolButton(self.tab_reclassification) self.remove_row_pushButton.setStyleSheet("margin: 0px;padding: 0px;") - self.remove_row_pushButton.setIcon(icon57) + self.remove_row_pushButton.setIcon(icon58) self.remove_row_pushButton.setIconSize(QtCore.QSize(22, 22)) self.remove_row_pushButton.setObjectName("remove_row_pushButton") self.gridLayout_81.addWidget(self.remove_row_pushButton, 2, 0, 1, 1) - spacerItem122 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_81.addItem(spacerItem122, 0, 0, 1, 1) - spacerItem123 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_81.addItem(spacerItem123, 6, 0, 1, 1) + spacerItem127 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_81.addItem(spacerItem127, 0, 0, 1, 1) + spacerItem128 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_81.addItem(spacerItem128, 6, 0, 1, 1) self.import_reclass_toolButton = QtWidgets.QToolButton(self.tab_reclassification) self.import_reclass_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_reclass_toolButton.setIcon(icon53) + self.import_reclass_toolButton.setIcon(icon54) self.import_reclass_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_reclass_toolButton.setObjectName("import_reclass_toolButton") self.gridLayout_81.addWidget(self.import_reclass_toolButton, 4, 0, 1, 1) self.export_reclass_toolButton = QtWidgets.QToolButton(self.tab_reclassification) self.export_reclass_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_reclass_toolButton.setIcon(icon52) + self.export_reclass_toolButton.setIcon(icon53) self.export_reclass_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_reclass_toolButton.setObjectName("export_reclass_toolButton") self.gridLayout_81.addWidget(self.export_reclass_toolButton, 5, 0, 1, 1) - spacerItem124 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_81.addItem(spacerItem124, 3, 0, 1, 1) + spacerItem129 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_81.addItem(spacerItem129, 3, 0, 1, 1) self.gridLayout_77.addLayout(self.gridLayout_81, 0, 1, 1, 1) self.gridLayout_191.addLayout(self.gridLayout_77, 2, 0, 1, 1) self.gridLayout_80 = QtWidgets.QGridLayout() @@ -7182,8 +7369,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_191.addLayout(self.gridLayout_80, 3, 0, 1, 1) self.gridLayout_83 = QtWidgets.QGridLayout() self.gridLayout_83.setObjectName("gridLayout_83") - spacerItem125 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_83.addItem(spacerItem125, 1, 0, 1, 1) + spacerItem130 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_83.addItem(spacerItem130, 1, 0, 1, 1) self.label_172 = QtWidgets.QLabel(self.tab_reclassification) self.label_172.setStyleSheet("background-color : #656565; color : white") self.label_172.setFrameShape(QtWidgets.QFrame.Panel) @@ -7198,7 +7385,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.reclassify_toolButton.setFont(font) self.reclassify_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.reclassify_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.reclassify_toolButton.setIcon(icon63) + self.reclassify_toolButton.setIcon(icon64) self.reclassify_toolButton.setIconSize(QtCore.QSize(34, 34)) self.reclassify_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.reclassify_toolButton.setObjectName("reclassify_toolButton") @@ -7210,7 +7397,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.reclassification.setFont(font) self.reclassification.setLayoutDirection(QtCore.Qt.RightToLeft) self.reclassification.setStyleSheet("margin: 0px;padding: 0px;") - self.reclassification.setIcon(icon47) + self.reclassification.setIcon(icon48) self.reclassification.setIconSize(QtCore.QSize(34, 34)) self.reclassification.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.reclassification.setObjectName("reclassification") @@ -7235,9 +7422,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.undo_edit_Button = QtWidgets.QToolButton(self.tab) self.undo_edit_Button.setEnabled(False) self.undo_edit_Button.setStyleSheet("margin: 0px;padding: 0px;") - icon80 = QtGui.QIcon() - icon80.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_undo_edit_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.undo_edit_Button.setIcon(icon80) + icon81 = QtGui.QIcon() + icon81.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_undo_edit_raster.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.undo_edit_Button.setIcon(icon81) self.undo_edit_Button.setIconSize(QtCore.QSize(22, 22)) self.undo_edit_Button.setObjectName("undo_edit_Button") self.gridLayout_196.addWidget(self.undo_edit_Button, 10, 0, 1, 1) @@ -7271,7 +7458,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_8.addWidget(self.edit_raster_name_combo) self.toolButton_reload_14 = QtWidgets.QToolButton(self.tab) self.toolButton_reload_14.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_14.setIcon(icon54) + self.toolButton_reload_14.setIcon(icon55) self.toolButton_reload_14.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_14.setObjectName("toolButton_reload_14") self.horizontalLayout_8.addWidget(self.toolButton_reload_14) @@ -7287,8 +7474,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.value_spinBox.setMaximum(2147483647) self.value_spinBox.setObjectName("value_spinBox") self.horizontalLayout_6.addWidget(self.value_spinBox) - spacerItem126 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_6.addItem(spacerItem126) + spacerItem131 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_6.addItem(spacerItem131) self.gridLayout_196.addLayout(self.horizontalLayout_6, 6, 0, 1, 4) self.horizontalLayout_7 = QtWidgets.QHBoxLayout() self.horizontalLayout_7.setObjectName("horizontalLayout_7") @@ -7306,10 +7493,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.expression_lineEdit.setObjectName("expression_lineEdit") self.horizontalLayout_7.addWidget(self.expression_lineEdit) self.gridLayout_196.addLayout(self.horizontalLayout_7, 7, 0, 1, 4) - spacerItem127 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_196.addItem(spacerItem127, 10, 1, 1, 1) - spacerItem128 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_196.addItem(spacerItem128, 8, 3, 1, 1) + spacerItem132 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_196.addItem(spacerItem132, 10, 1, 1, 1) + spacerItem133 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_196.addItem(spacerItem133, 8, 3, 1, 1) self.horizontalLayout_9 = QtWidgets.QHBoxLayout() self.horizontalLayout_9.setObjectName("horizontalLayout_9") self.label_81 = QtWidgets.QLabel(self.tab) @@ -7348,7 +7535,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_21.addWidget(self.vector_name_combo_2) self.toolButton_reload_20 = QtWidgets.QToolButton(self.tab) self.toolButton_reload_20.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_20.setIcon(icon54) + self.toolButton_reload_20.setIcon(icon55) self.toolButton_reload_20.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_20.setObjectName("toolButton_reload_20") self.horizontalLayout_21.addWidget(self.toolButton_reload_20) @@ -7376,7 +7563,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.raster_set_value_toolButton.setFont(font) self.raster_set_value_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.raster_set_value_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.raster_set_value_toolButton.setIcon(icon63) + self.raster_set_value_toolButton.setIcon(icon64) self.raster_set_value_toolButton.setIconSize(QtCore.QSize(34, 34)) self.raster_set_value_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.raster_set_value_toolButton.setObjectName("raster_set_value_toolButton") @@ -7388,7 +7575,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.edit_raster_using_vector.setFont(font) self.edit_raster_using_vector.setLayoutDirection(QtCore.Qt.RightToLeft) self.edit_raster_using_vector.setStyleSheet("margin: 0px;padding: 0px;") - self.edit_raster_using_vector.setIcon(icon47) + self.edit_raster_using_vector.setIcon(icon48) self.edit_raster_using_vector.setIconSize(QtCore.QSize(34, 34)) self.edit_raster_using_vector.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.edit_raster_using_vector.setObjectName("edit_raster_using_vector") @@ -7401,10 +7588,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_202.setObjectName("gridLayout_202") self.gridLayout_64 = QtWidgets.QGridLayout() self.gridLayout_64.setObjectName("gridLayout_64") - spacerItem129 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_64.addItem(spacerItem129, 2, 2, 1, 1) - spacerItem130 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_64.addItem(spacerItem130, 4, 0, 1, 1) + spacerItem134 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_64.addItem(spacerItem134, 2, 2, 1, 1) + spacerItem135 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_64.addItem(spacerItem135, 4, 0, 1, 1) self.horizontalLayout_11 = QtWidgets.QHBoxLayout() self.horizontalLayout_11.setObjectName("horizontalLayout_11") self.label_70 = QtWidgets.QLabel(self.tab_sieve) @@ -7428,7 +7615,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_11.addWidget(self.sieve_raster_name_combo) self.toolButton_reload_15 = QtWidgets.QToolButton(self.tab_sieve) self.toolButton_reload_15.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_15.setIcon(icon54) + self.toolButton_reload_15.setIcon(icon55) self.toolButton_reload_15.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_15.setObjectName("toolButton_reload_15") self.horizontalLayout_11.addWidget(self.toolButton_reload_15) @@ -7451,8 +7638,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.sieve_threshold_spinBox.setMaximum(10000) self.sieve_threshold_spinBox.setObjectName("sieve_threshold_spinBox") self.horizontalLayout_12.addWidget(self.sieve_threshold_spinBox) - spacerItem131 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_12.addItem(spacerItem131) + spacerItem136 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_12.addItem(spacerItem136) self.label_136 = QtWidgets.QLabel(self.tab_sieve) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -7490,7 +7677,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.sieve_toolButton.setFont(font) self.sieve_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.sieve_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.sieve_toolButton.setIcon(icon63) + self.sieve_toolButton.setIcon(icon64) self.sieve_toolButton.setIconSize(QtCore.QSize(34, 34)) self.sieve_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.sieve_toolButton.setObjectName("sieve_toolButton") @@ -7502,7 +7689,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification_sieve.setFont(font) self.classification_sieve.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification_sieve.setStyleSheet("margin: 0px;padding: 0px;") - self.classification_sieve.setIcon(icon47) + self.classification_sieve.setIcon(icon48) self.classification_sieve.setIconSize(QtCore.QSize(34, 34)) self.classification_sieve.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification_sieve.setObjectName("classification_sieve") @@ -7533,10 +7720,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_205.addLayout(self.horizontalLayout_44, 0, 0, 1, 1) self.gridLayout_204 = QtWidgets.QGridLayout() self.gridLayout_204.setObjectName("gridLayout_204") - spacerItem132 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_204.addItem(spacerItem132, 3, 2, 1, 1) - spacerItem133 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_204.addItem(spacerItem133, 5, 0, 1, 1) + spacerItem137 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_204.addItem(spacerItem137, 3, 2, 1, 1) + spacerItem138 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_204.addItem(spacerItem138, 5, 0, 1, 1) self.horizontalLayout_13 = QtWidgets.QHBoxLayout() self.horizontalLayout_13.setObjectName("horizontalLayout_13") self.label_146 = QtWidgets.QLabel(self.tab_erosion) @@ -7560,7 +7747,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_13.addWidget(self.erosion_raster_name_combo) self.toolButton_reload_18 = QtWidgets.QToolButton(self.tab_erosion) self.toolButton_reload_18.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_18.setIcon(icon54) + self.toolButton_reload_18.setIcon(icon55) self.toolButton_reload_18.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_18.setObjectName("toolButton_reload_18") self.horizontalLayout_13.addWidget(self.toolButton_reload_18) @@ -7584,8 +7771,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.erosion_threshold_spinBox.setProperty("value", 1) self.erosion_threshold_spinBox.setObjectName("erosion_threshold_spinBox") self.horizontalLayout_14.addWidget(self.erosion_threshold_spinBox) - spacerItem134 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_14.addItem(spacerItem134) + spacerItem139 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_14.addItem(spacerItem139) self.label_150 = QtWidgets.QLabel(self.tab_erosion) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -7647,7 +7834,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_erosion_toolButton.setFont(font) self.class_erosion_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.class_erosion_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.class_erosion_toolButton.setIcon(icon63) + self.class_erosion_toolButton.setIcon(icon64) self.class_erosion_toolButton.setIconSize(QtCore.QSize(34, 34)) self.class_erosion_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.class_erosion_toolButton.setObjectName("class_erosion_toolButton") @@ -7659,7 +7846,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification_erosion.setFont(font) self.classification_erosion.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification_erosion.setStyleSheet("margin: 0px;padding: 0px;") - self.classification_erosion.setIcon(icon47) + self.classification_erosion.setIcon(icon48) self.classification_erosion.setIconSize(QtCore.QSize(34, 34)) self.classification_erosion.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification_erosion.setObjectName("classification_erosion") @@ -7672,10 +7859,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_207.setObjectName("gridLayout_207") self.gridLayout_206 = QtWidgets.QGridLayout() self.gridLayout_206.setObjectName("gridLayout_206") - spacerItem135 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_206.addItem(spacerItem135, 3, 2, 1, 1) - spacerItem136 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_206.addItem(spacerItem136, 5, 0, 1, 1) + spacerItem140 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_206.addItem(spacerItem140, 3, 2, 1, 1) + spacerItem141 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_206.addItem(spacerItem141, 5, 0, 1, 1) self.horizontalLayout_16 = QtWidgets.QHBoxLayout() self.horizontalLayout_16.setObjectName("horizontalLayout_16") self.label_152 = QtWidgets.QLabel(self.tab_dilation) @@ -7699,7 +7886,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_16.addWidget(self.dilation_raster_name_combo) self.toolButton_reload_19 = QtWidgets.QToolButton(self.tab_dilation) self.toolButton_reload_19.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_19.setIcon(icon54) + self.toolButton_reload_19.setIcon(icon55) self.toolButton_reload_19.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_19.setObjectName("toolButton_reload_19") self.horizontalLayout_16.addWidget(self.toolButton_reload_19) @@ -7723,8 +7910,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.dilation_threshold_spinBox.setProperty("value", 1) self.dilation_threshold_spinBox.setObjectName("dilation_threshold_spinBox") self.horizontalLayout_17.addWidget(self.dilation_threshold_spinBox) - spacerItem137 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_17.addItem(spacerItem137) + spacerItem142 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_17.addItem(spacerItem142) self.label_154 = QtWidgets.QLabel(self.tab_dilation) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -7786,7 +7973,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.class_dilation_toolButton.setFont(font) self.class_dilation_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.class_dilation_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.class_dilation_toolButton.setIcon(icon63) + self.class_dilation_toolButton.setIcon(icon64) self.class_dilation_toolButton.setIconSize(QtCore.QSize(34, 34)) self.class_dilation_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.class_dilation_toolButton.setObjectName("class_dilation_toolButton") @@ -7798,7 +7985,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.classification_dilation.setFont(font) self.classification_dilation.setLayoutDirection(QtCore.Qt.RightToLeft) self.classification_dilation.setStyleSheet("margin: 0px;padding: 0px;") - self.classification_dilation.setIcon(icon47) + self.classification_dilation.setIcon(icon48) self.classification_dilation.setIconSize(QtCore.QSize(34, 34)) self.classification_dilation.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.classification_dilation.setObjectName("classification_dilation") @@ -7852,7 +8039,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.horizontalLayout_51.addWidget(self.classification_name_combo_5) self.toolButton_reload_24 = QtWidgets.QToolButton(self.tab_zonal_stats_rasters) self.toolButton_reload_24.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_reload_24.setIcon(icon54) + self.toolButton_reload_24.setIcon(icon55) self.toolButton_reload_24.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_24.setObjectName("toolButton_reload_24") self.horizontalLayout_51.addWidget(self.toolButton_reload_24) @@ -7867,8 +8054,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.nodata_spinBox_12.setMaximum(2147483647) self.nodata_spinBox_12.setObjectName("nodata_spinBox_12") self.horizontalLayout_52.addWidget(self.nodata_spinBox_12) - spacerItem138 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_52.addItem(spacerItem138) + spacerItem143 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_52.addItem(spacerItem143) self.gridLayout_87.addLayout(self.horizontalLayout_52, 2, 0, 1, 1) self.gridLayout_281.addLayout(self.gridLayout_87, 0, 0, 1, 1) self.gridLayout_91 = QtWidgets.QGridLayout() @@ -7893,7 +8080,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_91.addWidget(self.label_214, 0, 0, 1, 1) self.buttonReload_shape_6 = QtWidgets.QToolButton(self.tab_zonal_stats_rasters) self.buttonReload_shape_6.setStyleSheet("margin: 0px;padding: 0px;") - self.buttonReload_shape_6.setIcon(icon54) + self.buttonReload_shape_6.setIcon(icon55) self.buttonReload_shape_6.setIconSize(QtCore.QSize(22, 22)) self.buttonReload_shape_6.setObjectName("buttonReload_shape_6") self.gridLayout_91.addWidget(self.buttonReload_shape_6, 0, 3, 1, 1) @@ -7945,8 +8132,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_232.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_232.setObjectName("label_232") self.gridLayout_131.addWidget(self.label_232, 1, 0, 1, 1) - spacerItem139 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_131.addItem(spacerItem139, 1, 3, 1, 1) + spacerItem144 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_131.addItem(spacerItem144, 1, 3, 1, 1) self.label_216 = QtWidgets.QLabel(self.tab_zonal_stats_rasters) self.label_216.setStyleSheet("background-color : #656565; color : white") self.label_216.setFrameShape(QtWidgets.QFrame.Panel) @@ -7963,7 +8150,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.zonal_stat_raster_toolButton.setFont(font) self.zonal_stat_raster_toolButton.setLayoutDirection(QtCore.Qt.RightToLeft) self.zonal_stat_raster_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.zonal_stat_raster_toolButton.setIcon(icon63) + self.zonal_stat_raster_toolButton.setIcon(icon64) self.zonal_stat_raster_toolButton.setIconSize(QtCore.QSize(34, 34)) self.zonal_stat_raster_toolButton.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.zonal_stat_raster_toolButton.setObjectName("zonal_stat_raster_toolButton") @@ -7975,10 +8162,10 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_215.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_215.setObjectName("label_215") self.gridLayout_128.addWidget(self.label_215, 1, 0, 1, 3) - spacerItem140 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_128.addItem(spacerItem140, 2, 0, 1, 1) - spacerItem141 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_128.addItem(spacerItem141, 0, 0, 1, 1) + spacerItem145 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_128.addItem(spacerItem145, 2, 0, 1, 1) + spacerItem146 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_128.addItem(spacerItem146, 0, 0, 1, 1) self.zonal_stat_raster = QtWidgets.QToolButton(self.tab_zonal_stats_rasters) font = QtGui.QFont() font.setBold(True) @@ -7986,7 +8173,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.zonal_stat_raster.setFont(font) self.zonal_stat_raster.setLayoutDirection(QtCore.Qt.RightToLeft) self.zonal_stat_raster.setStyleSheet("margin: 0px;padding: 0px;") - self.zonal_stat_raster.setIcon(icon47) + self.zonal_stat_raster.setIcon(icon48) self.zonal_stat_raster.setIconSize(QtCore.QSize(34, 34)) self.zonal_stat_raster.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.zonal_stat_raster.setObjectName("zonal_stat_raster") @@ -8020,7 +8207,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_171.setObjectName("gridLayout_171") self.toolButton_reload_13 = QtWidgets.QToolButton(self.widget_2) self.toolButton_reload_13.setStyleSheet("margin: 0px;padding: 0px") - self.toolButton_reload_13.setIcon(icon54) + self.toolButton_reload_13.setIcon(icon55) self.toolButton_reload_13.setIconSize(QtCore.QSize(22, 22)) self.toolButton_reload_13.setObjectName("toolButton_reload_13") self.gridLayout_171.addWidget(self.toolButton_reload_13, 0, 0, 1, 1) @@ -8172,7 +8359,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_90.addLayout(self.horizontalLayout_4, 0, 0, 1, 2) self.toolButton_import_expression = QtWidgets.QToolButton(self.frame) self.toolButton_import_expression.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_import_expression.setIcon(icon64) + self.toolButton_import_expression.setIcon(icon65) self.toolButton_import_expression.setIconSize(QtCore.QSize(22, 22)) self.toolButton_import_expression.setObjectName("toolButton_import_expression") self.gridLayout_90.addWidget(self.toolButton_import_expression, 1, 1, 1, 1) @@ -8202,9 +8389,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_88.addLayout(self.gridLayout_93, 3, 0, 1, 3) self.gridLayout_67.addLayout(self.gridLayout_88, 0, 0, 1, 1) self.gridLayout_2.addWidget(self.splitter_2, 0, 0, 1, 1) - icon81 = QtGui.QIcon() - icon81.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_expression.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.band_calc_tabWidget.addTab(self.tab_expression, icon81, "") + icon82 = QtGui.QIcon() + icon82.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_expression.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.band_calc_tabWidget.addTab(self.tab_expression, icon82, "") self.tab_decision_rules = QtWidgets.QWidget() self.tab_decision_rules.setObjectName("tab_decision_rules") self.gridLayout_89 = QtWidgets.QGridLayout(self.tab_decision_rules) @@ -8227,58 +8414,58 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_89.addLayout(self.gridLayout_215, 0, 0, 1, 1) self.gridLayout_220 = QtWidgets.QGridLayout() self.gridLayout_220.setObjectName("gridLayout_220") - spacerItem142 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_220.addItem(spacerItem142, 6, 0, 1, 1) + spacerItem147 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_220.addItem(spacerItem147, 6, 0, 1, 1) self.remove_rule_toolButton = QtWidgets.QToolButton(self.tab_decision_rules) self.remove_rule_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.remove_rule_toolButton.setIcon(icon57) + self.remove_rule_toolButton.setIcon(icon58) self.remove_rule_toolButton.setIconSize(QtCore.QSize(22, 22)) self.remove_rule_toolButton.setObjectName("remove_rule_toolButton") self.gridLayout_220.addWidget(self.remove_rule_toolButton, 4, 0, 1, 1) self.move_up_toolButton_2 = QtWidgets.QToolButton(self.tab_decision_rules) self.move_up_toolButton_2.setStyleSheet("margin: 0px;padding: 0px;") - self.move_up_toolButton_2.setIcon(icon60) + self.move_up_toolButton_2.setIcon(icon61) self.move_up_toolButton_2.setIconSize(QtCore.QSize(22, 22)) self.move_up_toolButton_2.setObjectName("move_up_toolButton_2") self.gridLayout_220.addWidget(self.move_up_toolButton_2, 0, 0, 1, 1) self.import_rules_toolButton = QtWidgets.QToolButton(self.tab_decision_rules) self.import_rules_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_rules_toolButton.setIcon(icon53) + self.import_rules_toolButton.setIcon(icon54) self.import_rules_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_rules_toolButton.setObjectName("import_rules_toolButton") self.gridLayout_220.addWidget(self.import_rules_toolButton, 7, 0, 1, 1) self.clear_rules_toolButton = QtWidgets.QToolButton(self.tab_decision_rules) self.clear_rules_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.clear_rules_toolButton.setIcon(icon58) + self.clear_rules_toolButton.setIcon(icon59) self.clear_rules_toolButton.setIconSize(QtCore.QSize(22, 22)) self.clear_rules_toolButton.setObjectName("clear_rules_toolButton") self.gridLayout_220.addWidget(self.clear_rules_toolButton, 5, 0, 1, 1) - spacerItem143 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_220.addItem(spacerItem143, 9, 0, 1, 1) + spacerItem148 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_220.addItem(spacerItem148, 9, 0, 1, 1) self.add_rule_toolButton = QtWidgets.QToolButton(self.tab_decision_rules) self.add_rule_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.add_rule_toolButton.setIcon(icon65) + self.add_rule_toolButton.setIcon(icon66) self.add_rule_toolButton.setIconSize(QtCore.QSize(22, 22)) self.add_rule_toolButton.setObjectName("add_rule_toolButton") self.gridLayout_220.addWidget(self.add_rule_toolButton, 3, 0, 1, 1) - spacerItem144 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_220.addItem(spacerItem144, 2, 0, 1, 1) + spacerItem149 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_220.addItem(spacerItem149, 2, 0, 1, 1) self.move_down_toolButton_2 = QtWidgets.QToolButton(self.tab_decision_rules) self.move_down_toolButton_2.setStyleSheet("margin: 0px;padding: 0px;") - self.move_down_toolButton_2.setIcon(icon61) + self.move_down_toolButton_2.setIcon(icon62) self.move_down_toolButton_2.setIconSize(QtCore.QSize(22, 22)) self.move_down_toolButton_2.setObjectName("move_down_toolButton_2") self.gridLayout_220.addWidget(self.move_down_toolButton_2, 1, 0, 1, 1) self.export_rules_toolButton = QtWidgets.QToolButton(self.tab_decision_rules) self.export_rules_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_rules_toolButton.setIcon(icon52) + self.export_rules_toolButton.setIcon(icon53) self.export_rules_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_rules_toolButton.setObjectName("export_rules_toolButton") self.gridLayout_220.addWidget(self.export_rules_toolButton, 8, 0, 1, 1) self.gridLayout_89.addLayout(self.gridLayout_220, 0, 1, 1, 1) - icon82 = QtGui.QIcon() - icon82.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_rules.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.band_calc_tabWidget.addTab(self.tab_decision_rules, icon82, "") + icon83 = QtGui.QIcon() + icon83.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_bandcalc_rules.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.band_calc_tabWidget.addTab(self.tab_decision_rules, icon83, "") self.gridLayout_302.addWidget(self.band_calc_tabWidget, 0, 0, 1, 1) self.gridLayout_40 = QtWidgets.QGridLayout() self.gridLayout_40.setObjectName("gridLayout_40") @@ -8295,8 +8482,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.nodata_spinBox_13.setMaximum(2147483647) self.nodata_spinBox_13.setObjectName("nodata_spinBox_13") self.horizontalLayout_62.addWidget(self.nodata_spinBox_13) - spacerItem145 = QtWidgets.QSpacerItem(214, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_62.addItem(spacerItem145) + spacerItem150 = QtWidgets.QSpacerItem(214, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_62.addItem(spacerItem150) self.label_83 = QtWidgets.QLabel(self.widget_3) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Maximum, QtWidgets.QSizePolicy.Preferred) sizePolicy.setHorizontalStretch(0) @@ -8395,8 +8582,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.offset_doubleSpinBox.setProperty("value", 0.0) self.offset_doubleSpinBox.setObjectName("offset_doubleSpinBox") self.horizontalLayout_60.addWidget(self.offset_doubleSpinBox) - spacerItem146 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_60.addItem(spacerItem146) + spacerItem151 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_60.addItem(spacerItem151) self.band_calc = QtWidgets.QToolButton(self.widget_3) font = QtGui.QFont() font.setBold(True) @@ -8404,7 +8591,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.band_calc.setFont(font) self.band_calc.setLayoutDirection(QtCore.Qt.RightToLeft) self.band_calc.setStyleSheet("margin: 0px;padding: 0px;") - self.band_calc.setIcon(icon47) + self.band_calc.setIcon(icon48) self.band_calc.setIconSize(QtCore.QSize(34, 34)) self.band_calc.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.band_calc.setObjectName("band_calc") @@ -8416,7 +8603,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.toolButton_calculate.setFont(font) self.toolButton_calculate.setLayoutDirection(QtCore.Qt.RightToLeft) self.toolButton_calculate.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_calculate.setIcon(icon63) + self.toolButton_calculate.setIcon(icon64) self.toolButton_calculate.setIconSize(QtCore.QSize(34, 34)) self.toolButton_calculate.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.toolButton_calculate.setObjectName("toolButton_calculate") @@ -8481,19 +8668,19 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_214.setObjectName("gridLayout_214") self.export_batch_toolButton = QtWidgets.QToolButton(self.widget_4) self.export_batch_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.export_batch_toolButton.setIcon(icon52) + self.export_batch_toolButton.setIcon(icon53) self.export_batch_toolButton.setIconSize(QtCore.QSize(22, 22)) self.export_batch_toolButton.setObjectName("export_batch_toolButton") self.gridLayout_214.addWidget(self.export_batch_toolButton, 0, 2, 1, 1) self.clear_batch_toolButton = QtWidgets.QToolButton(self.widget_4) self.clear_batch_toolButton.setStyleSheet("margin: 0px;padding: 0px;") - self.clear_batch_toolButton.setIcon(icon58) + self.clear_batch_toolButton.setIcon(icon59) self.clear_batch_toolButton.setIconSize(QtCore.QSize(22, 22)) self.clear_batch_toolButton.setObjectName("clear_batch_toolButton") self.gridLayout_214.addWidget(self.clear_batch_toolButton, 0, 0, 1, 1) self.import_batch_toolButton = QtWidgets.QToolButton(self.widget_4) self.import_batch_toolButton.setStyleSheet("margin: 0px;padding: 0px") - self.import_batch_toolButton.setIcon(icon53) + self.import_batch_toolButton.setIcon(icon54) self.import_batch_toolButton.setIconSize(QtCore.QSize(22, 22)) self.import_batch_toolButton.setObjectName("import_batch_toolButton") self.gridLayout_214.addWidget(self.import_batch_toolButton, 0, 1, 1, 1) @@ -8540,8 +8727,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.verticalLayout_3.addWidget(self.label_177) self.horizontalLayout_69 = QtWidgets.QHBoxLayout() self.horizontalLayout_69.setObjectName("horizontalLayout_69") - spacerItem147 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.horizontalLayout_69.addItem(spacerItem147) + spacerItem152 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.horizontalLayout_69.addItem(spacerItem152) self.check_batch = QtWidgets.QToolButton(self.tab_batch) font = QtGui.QFont() font.setBold(True) @@ -8549,9 +8736,9 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.check_batch.setFont(font) self.check_batch.setLayoutDirection(QtCore.Qt.RightToLeft) self.check_batch.setStyleSheet("margin: 0px;padding: 0px;") - icon83 = QtGui.QIcon() - icon83.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch_check.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) - self.check_batch.setIcon(icon83) + icon84 = QtGui.QIcon() + icon84.addPixmap(QtGui.QPixmap(":/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch_check.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) + self.check_batch.setIcon(icon84) self.check_batch.setIconSize(QtCore.QSize(34, 34)) self.check_batch.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.check_batch.setObjectName("check_batch") @@ -8563,7 +8750,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.toolButton_run_batch.setFont(font) self.toolButton_run_batch.setLayoutDirection(QtCore.Qt.RightToLeft) self.toolButton_run_batch.setStyleSheet("margin: 0px;padding: 0px;") - self.toolButton_run_batch.setIcon(icon63) + self.toolButton_run_batch.setIcon(icon64) self.toolButton_run_batch.setIconSize(QtCore.QSize(34, 34)) self.toolButton_run_batch.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon) self.toolButton_run_batch.setObjectName("toolButton_run_batch") @@ -8716,13 +8903,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_124.setObjectName("gridLayout_124") self.reset_temp_directory_Button = QtWidgets.QToolButton(self.tabWidgetProcessing) self.reset_temp_directory_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_temp_directory_Button.setIcon(icon58) + self.reset_temp_directory_Button.setIcon(icon59) self.reset_temp_directory_Button.setIconSize(QtCore.QSize(22, 22)) self.reset_temp_directory_Button.setObjectName("reset_temp_directory_Button") self.gridLayout_124.addWidget(self.reset_temp_directory_Button, 2, 3, 1, 1) self.temp_directory_Button = QtWidgets.QToolButton(self.tabWidgetProcessing) self.temp_directory_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.temp_directory_Button.setIcon(icon68) + self.temp_directory_Button.setIcon(icon69) self.temp_directory_Button.setIconSize(QtCore.QSize(22, 22)) self.temp_directory_Button.setObjectName("temp_directory_Button") self.gridLayout_124.addWidget(self.temp_directory_Button, 2, 0, 1, 1) @@ -8781,8 +8968,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_211.setObjectName("label_211") self.gridLayout_107.addWidget(self.label_211, 0, 0, 1, 2) self.gridLayout_195.addLayout(self.gridLayout_107, 4, 0, 1, 1) - spacerItem148 = QtWidgets.QSpacerItem(17, 17, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_195.addItem(spacerItem148, 5, 0, 1, 1) + spacerItem153 = QtWidgets.QSpacerItem(17, 17, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_195.addItem(spacerItem153, 5, 0, 1, 1) self.settings_tabWidget.addTab(self.tabWidgetProcessing, "") self.tabWidgetInterface = QtWidgets.QWidget() self.tabWidgetInterface.setObjectName("tabWidgetInterface") @@ -8835,7 +9022,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_13.addWidget(self.label_46, 1, 1, 1, 1) self.reset_field_names_Button = QtWidgets.QToolButton(self.tabWidgetInterface) self.reset_field_names_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_field_names_Button.setIcon(icon58) + self.reset_field_names_Button.setIcon(icon59) self.reset_field_names_Button.setIconSize(QtCore.QSize(22, 22)) self.reset_field_names_Button.setObjectName("reset_field_names_Button") self.gridLayout_13.addWidget(self.reset_field_names_Button, 2, 4, 1, 1) @@ -8887,7 +9074,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_21.addLayout(self.gridLayout_172, 2, 1, 1, 1) self.reset_color_Button = QtWidgets.QToolButton(self.tabWidgetInterface) self.reset_color_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_color_Button.setIcon(icon58) + self.reset_color_Button.setIcon(icon59) self.reset_color_Button.setIconSize(QtCore.QSize(22, 22)) self.reset_color_Button.setObjectName("reset_color_Button") self.gridLayout_21.addWidget(self.reset_color_Button, 2, 2, 1, 1) @@ -8922,7 +9109,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_84.addWidget(self.label_69, 0, 0, 1, 3) self.reset_variable_name_Button = QtWidgets.QToolButton(self.tabWidgetInterface) self.reset_variable_name_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_variable_name_Button.setIcon(icon58) + self.reset_variable_name_Button.setIcon(icon59) self.reset_variable_name_Button.setIconSize(QtCore.QSize(22, 22)) self.reset_variable_name_Button.setObjectName("reset_variable_name_Button") self.gridLayout_84.addWidget(self.reset_variable_name_Button, 1, 2, 1, 1) @@ -8936,8 +9123,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_95.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_95.setObjectName("label_95") self.gridLayout_17.addWidget(self.label_95, 0, 0, 1, 1) - spacerItem149 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) - self.gridLayout_17.addItem(spacerItem149, 2, 0, 1, 1) + spacerItem154 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) + self.gridLayout_17.addItem(spacerItem154, 2, 0, 1, 1) self.download_news_checkBox = QtWidgets.QCheckBox(self.tabWidgetInterface) self.download_news_checkBox.setChecked(True) self.download_news_checkBox.setObjectName("download_news_checkBox") @@ -8954,7 +9141,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_99.addWidget(self.label_76, 0, 0, 1, 3) self.reset_group_name_Button = QtWidgets.QToolButton(self.tabWidgetInterface) self.reset_group_name_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.reset_group_name_Button.setIcon(icon58) + self.reset_group_name_Button.setIcon(icon59) self.reset_group_name_Button.setIconSize(QtCore.QSize(22, 22)) self.reset_group_name_Button.setObjectName("reset_group_name_Button") self.gridLayout_99.addWidget(self.reset_group_name_Button, 1, 2, 1, 1) @@ -8998,13 +9185,13 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_7.addWidget(self.log_checkBox, 1, 0, 1, 1) self.exportLog_Button = QtWidgets.QToolButton(self.tabWidgetDebug) self.exportLog_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.exportLog_Button.setIcon(icon52) + self.exportLog_Button.setIcon(icon53) self.exportLog_Button.setIconSize(QtCore.QSize(22, 22)) self.exportLog_Button.setObjectName("exportLog_Button") self.gridLayout_7.addWidget(self.exportLog_Button, 1, 1, 1, 1) self.clearLog_Button = QtWidgets.QToolButton(self.tabWidgetDebug) self.clearLog_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.clearLog_Button.setIcon(icon58) + self.clearLog_Button.setIcon(icon59) self.clearLog_Button.setIconSize(QtCore.QSize(22, 22)) self.clearLog_Button.setObjectName("clearLog_Button") self.gridLayout_7.addWidget(self.clearLog_Button, 1, 2, 1, 1) @@ -9031,7 +9218,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.gridLayout_55.setObjectName("gridLayout_55") self.test_dependencies_Button = QtWidgets.QToolButton(self.tabWidgetDebug) self.test_dependencies_Button.setStyleSheet("margin: 0px;padding: 0px;") - self.test_dependencies_Button.setIcon(icon66) + self.test_dependencies_Button.setIcon(icon67) self.test_dependencies_Button.setIconSize(QtCore.QSize(22, 22)) self.test_dependencies_Button.setObjectName("test_dependencies_Button") self.gridLayout_55.addWidget(self.test_dependencies_Button, 2, 2, 1, 1) @@ -9039,8 +9226,8 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.label_42.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter) self.label_42.setObjectName("label_42") self.gridLayout_55.addWidget(self.label_42, 2, 1, 1, 1) - spacerItem150 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) - self.gridLayout_55.addItem(spacerItem150, 2, 3, 1, 1) + spacerItem155 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) + self.gridLayout_55.addItem(spacerItem155, 2, 3, 1, 1) self.label_43 = QtWidgets.QLabel(self.tabWidgetDebug) self.label_43.setStyleSheet("background-color : #656565; color : white") self.label_43.setFrameShape(QtWidgets.QFrame.Panel) @@ -9100,7 +9287,7 @@ def setupUi(self, SemiAutomaticClassificationPlugin): self.help_textBrowser.setOpenLinks(False) self.help_textBrowser.setObjectName("help_textBrowser") self.gridLayout_263.addWidget(self.help_textBrowser, 1, 0, 1, 1) - self.main_tabWidget.addTab(self.help_tab, icon50, "") + self.main_tabWidget.addTab(self.help_tab, icon51, "") self.gridLayout_301.addWidget(self.splitter, 0, 0, 1, 1) self.retranslateUi(SemiAutomaticClassificationPlugin) @@ -9155,10 +9342,11 @@ def retranslateUi(self, SemiAutomaticClassificationPlugin): self.menu_treeWidget.topLevelItem(3).child(7).setText(0, _translate("SemiAutomaticClassificationPlugin", "Clip multiple rasters")) self.menu_treeWidget.topLevelItem(3).child(8).setText(0, _translate("SemiAutomaticClassificationPlugin", "Cloud masking")) self.menu_treeWidget.topLevelItem(3).child(9).setText(0, _translate("SemiAutomaticClassificationPlugin", "Mosaic band sets")) - self.menu_treeWidget.topLevelItem(3).child(10).setText(0, _translate("SemiAutomaticClassificationPlugin", "Reproject raster bands")) - self.menu_treeWidget.topLevelItem(3).child(11).setText(0, _translate("SemiAutomaticClassificationPlugin", "Split raster bands")) - self.menu_treeWidget.topLevelItem(3).child(12).setText(0, _translate("SemiAutomaticClassificationPlugin", "Stack raster bands")) - self.menu_treeWidget.topLevelItem(3).child(13).setText(0, _translate("SemiAutomaticClassificationPlugin", "Vector to raster")) + self.menu_treeWidget.topLevelItem(3).child(10).setText(0, _translate("SemiAutomaticClassificationPlugin", "Neighbor pixels")) + self.menu_treeWidget.topLevelItem(3).child(11).setText(0, _translate("SemiAutomaticClassificationPlugin", "Reproject raster bands")) + self.menu_treeWidget.topLevelItem(3).child(12).setText(0, _translate("SemiAutomaticClassificationPlugin", "Split raster bands")) + self.menu_treeWidget.topLevelItem(3).child(13).setText(0, _translate("SemiAutomaticClassificationPlugin", "Stack raster bands")) + self.menu_treeWidget.topLevelItem(3).child(14).setText(0, _translate("SemiAutomaticClassificationPlugin", "Vector to raster")) self.menu_treeWidget.topLevelItem(4).setText(0, _translate("SemiAutomaticClassificationPlugin", "Band processing")) self.menu_treeWidget.topLevelItem(4).child(0).setText(0, _translate("SemiAutomaticClassificationPlugin", "Band combination")) self.menu_treeWidget.topLevelItem(4).child(1).setText(0, _translate("SemiAutomaticClassificationPlugin", "Classification")) @@ -10075,6 +10263,26 @@ def retranslateUi(self, SemiAutomaticClassificationPlugin): self.goes_conversion.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Function to Batch

")) self.goes_conversion.setText(_translate("SemiAutomaticClassificationPlugin", " BATCH")) self.tabWidget_preprocessing.setTabText(self.tabWidget_preprocessing.indexOf(self.tab_GOES), _translate("SemiAutomaticClassificationPlugin", "GOES")) + self.label_283.setText(_translate("SemiAutomaticClassificationPlugin", " Run")) + self.label_281.setText(_translate("SemiAutomaticClassificationPlugin", "Matrix file (optional)")) + self.toolButton_input_matrix.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Open a file

")) + self.label_279.setText(_translate("SemiAutomaticClassificationPlugin", "Output name prefix")) + self.neighbor_output_name_lineEdit.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Output name prefix

")) + self.neighbor_output_name_lineEdit.setText(_translate("SemiAutomaticClassificationPlugin", "neighbor")) + self.neighbor_pixels.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Function to Batch

")) + self.neighbor_pixels.setText(_translate("SemiAutomaticClassificationPlugin", " BATCH")) + self.class_neighbor_toolButton.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Run

")) + self.class_neighbor_toolButton.setText(_translate("SemiAutomaticClassificationPlugin", " RUN")) + self.label_286.setText(_translate("SemiAutomaticClassificationPlugin", " Neighbor pixels")) + self.statistic_lineEdit_2.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Enter a value

")) + self.statistic_name_combobox_2.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Select a statistic

")) + self.label_284.setText(_translate("SemiAutomaticClassificationPlugin", "Select a statistic")) + self.label_285.setText(_translate("SemiAutomaticClassificationPlugin", " Statistic")) + self.label_282.setText(_translate("SemiAutomaticClassificationPlugin", "Select input band set")) + self.label_280.setText(_translate("SemiAutomaticClassificationPlugin", "Neighbor distance in pixels")) + self.band_set_comb_spinBox_15.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Band set number

")) + self.class_neighbor_threshold_spinBox.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Distance in pixels

")) + self.tabWidget_preprocessing.setTabText(self.tabWidget_preprocessing.indexOf(self.tab_neighbor_pixels), _translate("SemiAutomaticClassificationPlugin", "Neighbor pixels")) self.SCP_tabs.setTabText(self.SCP_tabs.indexOf(self.tab_preprocessing), _translate("SemiAutomaticClassificationPlugin", "Preprocessing")) self.label_253.setText(_translate("SemiAutomaticClassificationPlugin", " Run")) self.calculateBandSetComb_toolButton.setToolTip(_translate("SemiAutomaticClassificationPlugin", "

Run

")) diff --git a/ui/ui_semiautomaticclassificationplugin.ui b/ui/ui_semiautomaticclassificationplugin.ui index 5cb37c5..7139a3a 100644 --- a/ui/ui_semiautomaticclassificationplugin.ui +++ b/ui/ui_semiautomaticclassificationplugin.ui @@ -371,6 +371,15 @@ :/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_mosaic_tool.svg:/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_mosaic_tool.svg + + + Neighbor pixels + + + + :/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_neighbor_pixels.svg:/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_neighbor_pixels.svg + + Reproject raster bands @@ -12758,6 +12767,465 @@ distance + + + Neighbor pixels + + + + + + + + background-color : #656565; color : white + + + QFrame::Panel + + + QFrame::Sunken + + + Run + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + + + 0 + 0 + + + + QFrame::Panel + + + QFrame::Sunken + + + + + + + + + + + 0 + 0 + + + + + 229 + 0 + + + + + 50 + false + + + + QFrame::Sunken + + + Matrix file (optional) + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + <html><head/><body><p><span >Open a file</span></p></body></html> + + + margin: 0px;padding: 0px; + + + + :/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_file.svg:/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_open_file.svg + + + + 22 + 22 + + + + + + + + + + + 0 + 0 + + + + + 229 + 0 + + + + QFrame::Sunken + + + Output name prefix + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + <html><head/><body><p>Output name prefix</p></body></html> + + + neighbor + + + 10 + + + + + + + + + + + + 75 + true + + + + <html><head/><body><p>Function to Batch</p></body></html> + + + Qt::RightToLeft + + + margin: 0px;padding: 0px; + + + BATCH + + + + :/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch.svg:/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_batch.svg + + + + 34 + 34 + + + + Qt::ToolButtonTextBesideIcon + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 75 + true + + + + <html><head/><body><p><span >Run</span></p></body></html> + + + Qt::RightToLeft + + + margin: 0px;padding: 0px; + + + RUN + + + + :/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_run.svg:/plugins/semiautomaticclassificationplugin/icons/semiautomaticclassificationplugin_run.svg + + + + 34 + 34 + + + + Qt::ToolButtonTextBesideIcon + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + background-color : #656565; color : white + + + QFrame::Panel + + + QFrame::Sunken + + + Neighbor pixels + + + + + + + + + + + + 0 + 0 + + + + + 200 + 16777215 + + + + <html><head/><body><p>Enter a value</p></body></html> + + + + + + 10000 + + + + + + + + 1 + 0 + + + + + 200 + 16777215 + + + + <html><head/><body><p>Select a statistic</p></body></html> + + + + + + + QFrame::Sunken + + + Select a statistic + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + background-color : #656565; color : white + + + QFrame::Panel + + + QFrame::Sunken + + + Statistic + + + + + + + + + + + + 0 + 0 + + + + QFrame::Sunken + + + Select input band set + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + + 0 + 0 + + + + + 229 + 0 + + + + QFrame::Sunken + + + Neighbor distance in pixels + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + + <html><head/><body><p>Band set number</p></body></html> + + + 1 + + + 100000 + + + + + + + <html><head/><body><p>Distance in pixels</p></body></html> + + + 1 + + + 1000 + + + 1 + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + @@ -12799,8 +13267,8 @@ distance 0 0 - 343 - 180 + 923 + 413 @@ -15823,8 +16291,8 @@ p, li { white-space: pre-wrap; } 0 0 - 428 - 229 + 923 + 413