hexsha
stringlengths
40
40
size
int64
4
1.02M
ext
stringclasses
8 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
209
max_stars_repo_name
stringlengths
5
121
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
209
max_issues_repo_name
stringlengths
5
121
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
67k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
209
max_forks_repo_name
stringlengths
5
121
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
4
1.02M
avg_line_length
float64
1.07
66.1k
max_line_length
int64
4
266k
alphanum_fraction
float64
0.01
1
4d014c40a741be997af0b27dac58c60e95f4bc4a
5,539
py
Python
sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01/aio/operations/_resolve_private_link_service_id_operations.py
rsdoherty/azure-sdk-for-python
6bba5326677468e6660845a703686327178bb7b1
[ "MIT" ]
2,728
2015-01-09T10:19:32.000Z
2022-03-31T14:50:33.000Z
sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01/aio/operations/_resolve_private_link_service_id_operations.py
rsdoherty/azure-sdk-for-python
6bba5326677468e6660845a703686327178bb7b1
[ "MIT" ]
17,773
2015-01-05T15:57:17.000Z
2022-03-31T23:50:25.000Z
sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_11_01/aio/operations/_resolve_private_link_service_id_operations.py
rsdoherty/azure-sdk-for-python
6bba5326677468e6660845a703686327178bb7b1
[ "MIT" ]
1,916
2015-01-19T05:05:41.000Z
2022-03-31T19:36:44.000Z
# coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Generic, Optional, TypeVar import warnings from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest from azure.mgmt.core.exceptions import ARMErrorFormat from ... import models as _models T = TypeVar('T') ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] class ResolvePrivateLinkServiceIdOperations: """ResolvePrivateLinkServiceIdOperations async operations. You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. :type models: ~azure.mgmt.containerservice.v2020_11_01.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. """ models = _models def __init__(self, client, config, serializer, deserializer) -> None: self._client = client self._serialize = serializer self._deserialize = deserializer self._config = config async def post( self, resource_group_name: str, resource_name: str, parameters: "_models.PrivateLinkResource", **kwargs: Any ) -> "_models.PrivateLinkResource": """Gets the private link service ID for the specified managed cluster. Gets the private link service ID the specified managed cluster. :param resource_group_name: The name of the resource group. :type resource_group_name: str :param resource_name: The name of the managed cluster resource. :type resource_name: str :param parameters: Parameters (name, groupId) supplied in order to resolve a private link service ID. :type parameters: ~azure.mgmt.containerservice.v2020_11_01.models.PrivateLinkResource :keyword callable cls: A custom type or function that will be passed the direct response :return: PrivateLinkResource, or the result of cls(response) :rtype: ~azure.mgmt.containerservice.v2020_11_01.models.PrivateLinkResource :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.PrivateLinkResource"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) api_version = "2020-11-01" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" # Construct URL url = self.post.metadata['url'] # type: ignore path_format_arguments = { 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', min_length=1), 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), } url = self._client.format_url(url, **path_format_arguments) # Construct parameters query_parameters = {} # type: Dict[str, Any] query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(parameters, 'PrivateLinkResource') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) deserialized = self._deserialize('PrivateLinkResource', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized post.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resolvePrivateLinkServiceId'} # type: ignore
49.900901
209
0.692724
0a58effa481f098a540f23a2040b5c2ffcf08aba
4,291
py
Python
homeassistant/components/roomba/__init__.py
MrDelik/core
93a66cc357b226389967668441000498a10453bb
[ "Apache-2.0" ]
3
2021-11-22T22:37:43.000Z
2022-03-17T00:55:28.000Z
homeassistant/components/roomba/__init__.py
MrDelik/core
93a66cc357b226389967668441000498a10453bb
[ "Apache-2.0" ]
25
2021-11-24T06:24:10.000Z
2022-03-31T06:23:06.000Z
homeassistant/components/roomba/__init__.py
MrDelik/core
93a66cc357b226389967668441000498a10453bb
[ "Apache-2.0" ]
3
2022-01-02T18:49:54.000Z
2022-01-25T02:03:54.000Z
"""The roomba component.""" import asyncio import logging import async_timeout from roombapy import RoombaConnectionError, RoombaFactory from homeassistant import exceptions from homeassistant.config_entries import ConfigEntry from homeassistant.const import ( CONF_DELAY, CONF_HOST, CONF_NAME, CONF_PASSWORD, EVENT_HOMEASSISTANT_STOP, ) from homeassistant.core import HomeAssistant from .const import ( BLID, CANCEL_STOP, CONF_BLID, CONF_CONTINUOUS, DOMAIN, PLATFORMS, ROOMBA_SESSION, ) _LOGGER = logging.getLogger(__name__) async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: """Set the config entry up.""" # Set up roomba platforms with config entry if not config_entry.options: hass.config_entries.async_update_entry( config_entry, options={ CONF_CONTINUOUS: config_entry.data[CONF_CONTINUOUS], CONF_DELAY: config_entry.data[CONF_DELAY], }, ) roomba = RoombaFactory.create_roomba( address=config_entry.data[CONF_HOST], blid=config_entry.data[CONF_BLID], password=config_entry.data[CONF_PASSWORD], continuous=config_entry.options[CONF_CONTINUOUS], delay=config_entry.options[CONF_DELAY], ) try: if not await async_connect_or_timeout(hass, roomba): return False except CannotConnect as err: raise exceptions.ConfigEntryNotReady from err async def _async_disconnect_roomba(event): await async_disconnect_or_timeout(hass, roomba) cancel_stop = hass.bus.async_listen_once( EVENT_HOMEASSISTANT_STOP, _async_disconnect_roomba ) hass.data.setdefault(DOMAIN, {}) hass.data[DOMAIN][config_entry.entry_id] = { ROOMBA_SESSION: roomba, BLID: config_entry.data[CONF_BLID], CANCEL_STOP: cancel_stop, } hass.config_entries.async_setup_platforms(config_entry, PLATFORMS) if not config_entry.update_listeners: config_entry.add_update_listener(async_update_options) return True async def async_connect_or_timeout(hass, roomba): """Connect to vacuum.""" try: name = None async with async_timeout.timeout(10): _LOGGER.debug("Initialize connection to vacuum") await hass.async_add_executor_job(roomba.connect) while not roomba.roomba_connected or name is None: # Waiting for connection and check datas ready name = roomba_reported_state(roomba).get("name", None) if name: break await asyncio.sleep(1) except RoombaConnectionError as err: _LOGGER.debug("Error to connect to vacuum: %s", err) raise CannotConnect from err except asyncio.TimeoutError as err: # api looping if user or password incorrect and roomba exist await async_disconnect_or_timeout(hass, roomba) _LOGGER.debug("Timeout expired: %s", err) raise CannotConnect from err return {ROOMBA_SESSION: roomba, CONF_NAME: name} async def async_disconnect_or_timeout(hass, roomba): """Disconnect to vacuum.""" _LOGGER.debug("Disconnect vacuum") async with async_timeout.timeout(3): await hass.async_add_executor_job(roomba.disconnect) return True async def async_update_options(hass: HomeAssistant, config_entry: ConfigEntry) -> None: """Update options.""" await hass.config_entries.async_reload(config_entry.entry_id) async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: """Unload a config entry.""" unload_ok = await hass.config_entries.async_unload_platforms( config_entry, PLATFORMS ) if unload_ok: domain_data = hass.data[DOMAIN][config_entry.entry_id] domain_data[CANCEL_STOP]() await async_disconnect_or_timeout(hass, roomba=domain_data[ROOMBA_SESSION]) hass.data[DOMAIN].pop(config_entry.entry_id) return unload_ok def roomba_reported_state(roomba): """Roomba report.""" return roomba.master_state.get("state", {}).get("reported", {}) class CannotConnect(exceptions.HomeAssistantError): """Error to indicate we cannot connect."""
30.65
87
0.695875
ffe27740365a711d837d971ddb7768cb9db0a542
17,520
py
Python
lingvo/tasks/asr/frontend.py
zhoudoufu/lingvo
bd0f89809942fd0508ff43bd4b6bca1b598220cb
[ "Apache-2.0" ]
null
null
null
lingvo/tasks/asr/frontend.py
zhoudoufu/lingvo
bd0f89809942fd0508ff43bd4b6bca1b598220cb
[ "Apache-2.0" ]
null
null
null
lingvo/tasks/asr/frontend.py
zhoudoufu/lingvo
bd0f89809942fd0508ff43bd4b6bca1b598220cb
[ "Apache-2.0" ]
null
null
null
# Lint as: python2, python3 # Copyright 2018 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """Layers to construct an ASR frontend.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import collections import math import tensorflow as tf from lingvo.core import base_layer from lingvo.core import py_utils # AsrFrontendConfig which defines characteristics of the frontend that may # be relevant to interfacing code which needs to reason about inputs and # outputs. # Fields: # is_null: Whether this is the NullAsrFrontend. # src_type: Interpretation of the src_inputs. Can be one of 'none' or 'pcm'. # src_pcm_scale: If src_type is 'pcm', then this is the scale of each sample. # If normalized, this should be 1.0. If unnormalized from int16, then it # should be 32768.0. # src_pcm_sample_rate: Sample rate of the expected src PCM frames. # output_dim: Dimension of the output. Typically the number of mel bands # or equiv. May be -1 for unknown. # input_frame_ratio: Approximate ratio of the number of # input_frames / output_frames. Intended to be multiplied by output frames # (i.e. as part of bucket_bounds to arrive at input frames to the frontend). AsrFrontendConfig = collections.namedtuple('AsrFrontendConfig', [ 'is_null', 'src_type', 'src_pcm_scale', 'src_pcm_sample_rate', 'output_dim', 'input_frame_ratio', ]) def _NextPowerOfTwo(i): return math.pow(2, math.ceil(math.log(i, 2))) class BaseAsrFrontend(base_layer.BaseLayer): """Base class for ASR frontends. An ASR frontend is responsible for performing feature extraction from the input in the cases where features are not precomputed as part of the dataset. In such cases, it would be typical for the input to consist of waveform data in some form. """ @property def config(self): """Returns the AsrFrontendConfig namedtuple for this instance.""" return self.GetConfigFromParams(self.params) @staticmethod def GetConfigFromParams(params): """Returns an AsrFrontendConfig namedtuple with vital config settings.""" raise NotImplementedError() def FProp(self, theta, input_batch): """Generates ASR features for a batch. Shapes of the input_batch and output are dependent on the implementation and should be paired with the model's input format and encoder expectations. Args: theta: A NestedMap object containing weights' values of this layer and its children layers. input_batch: A NestedMap with fields: - 'src_inputs' - The inputs tensor, compatible with model input. Expected to be of shape [batch, time, ...]. - 'paddings' - The paddings tensor. It is expected to be of shape [batch, time]. Returns: NestedMap of encoder inputs which can be passed directly to a compatible encoder and contains: - 'src_inputs': inputs to the encoder, minimally of shape [batch, time, ...]. - 'paddings': a 0/1 tensor of shape [batch, time]. """ raise NotImplementedError() class NullAsrFrontend(BaseAsrFrontend): """ASR frontend that just returns its input as FProp output.""" @staticmethod def GetConfigFromParams(params): """Returns an AsrFrontendConfig namedtuple with vital config settings.""" return AsrFrontendConfig( is_null=True, src_type='none', src_pcm_sample_rate=-1, src_pcm_scale=1.0, output_dim=-1, input_frame_ratio=1.0) def FProp(self, theta, input_batch): return input_batch.DeepCopy() class MelAsrFrontend(BaseAsrFrontend): """An AsrFrontend that implements mel feature extraction from PCM frames. This is expressed in pure TensorFlow and without reference to external resources. The frontend implements the following stages: `Framer -> Window -> FFT -> FilterBank -> MeanStdDev` Also, if stack_left_context > 0, this will further apply: `FrameStack -> SubSample(stack_left_context + 1)` The FProp input to this layer can either have rank 3 or rank 4 shape: [batch_size, timestep, packet_size, channel_count] [batch_size, timestep * packet_size, channel_count] For compatibility with existing code, 2D [batch_size, timestep] mono shapes are also supported. In the common case, the packet_size is 1. The 4D variant is accepted for glueless interface to input generators that frame their input samples in some way. The external framing choice does not influence the operation of this instance, but it is accepted. TODO(laurenzo): Refactor call sites to uniformly use the 4D variant and eliminate fallback logic in this class. Only 1 channel is currently supported. TODO(laurenzo): Refactor this class to operate on multi-channel inputs. """ @classmethod def Params(cls): p = super(MelAsrFrontend, cls).Params() p.name = 'frontend' p.Define('sample_rate', 16000.0, 'Sample rate in Hz') p.Define('channel_count', 1, 'Number of channels.') p.Define('frame_size_ms', 25.0, 'Amount of data grabbed for each frame during analysis') p.Define('frame_step_ms', 10.0, 'Number of ms to jump between frames') p.Define('num_bins', 80, 'Number of bins in the mel-spectrogram output') p.Define('lower_edge_hertz', 125.0, 'The lowest frequency of the mel-spectrogram analsis') p.Define('upper_edge_hertz', 7600.0, 'The highest frequency of the mel-spectrogram analsis') p.Define('preemph', 0.97, 'The first-order filter coefficient used for preemphasis') p.Define('noise_scale', 8.0, 'The amount of noise (in 16-bit LSB units) to add') p.Define( 'window_fn', 'HANNING', 'Window function to apply (valid values are "HANNING", ' 'and None)') p.Define( 'pad_end', False, 'Whether to pad the end of `signals` with zeros when the provided ' 'frame length and step produces a frame that lies partially past ' 'its end.') p.Define( 'per_bin_mean', None, 'Per-bin (num_bins) means for normalizing the spectrograms. ' 'Defaults to zeros.') p.Define('per_bin_stddev', None, 'Per-bin (num_bins) standard deviations. ' 'Defaults to ones.') p.Define('stack_left_context', 0, 'Number of left context frames to stack.') return p @staticmethod def GetConfigFromParams(params): """Returns an AsrFrontendConfig namedtuple with vital config settings.""" subsample_factor = params.num_bins * (params.stack_left_context + 1) frame_step = round(params.sample_rate * params.frame_step_ms / 1000.0) return AsrFrontendConfig( is_null=False, src_type='pcm', src_pcm_scale=32768.0, src_pcm_sample_rate=16000.0, output_dim=subsample_factor, input_frame_ratio=frame_step * subsample_factor) @base_layer.initializer def __init__(self, params): super(MelAsrFrontend, self).__init__(params) p = self.params assert p.channel_count == 1, 'Only 1 channel currently supported.' # Make sure key params are in floating point. p.sample_rate = float(p.sample_rate) p.frame_step_ms = float(p.frame_step_ms) p.frame_size_ms = float(p.frame_size_ms) p.lower_edge_hertz = float(p.lower_edge_hertz) p.upper_edge_hertz = float(p.upper_edge_hertz) self._frame_step = int(round(p.sample_rate * p.frame_step_ms / 1000.0)) self._frame_size = (int(round(p.sample_rate * p.frame_size_ms / 1000.0)) + 1 ) # +1 for the preemph # Overdrive means double FFT size. # Note: 2* because of overdrive self._fft_size = 2 * int(max(512, _NextPowerOfTwo(self._frame_size))) self._CreateWindowFunction() # Mean/stddev. if p.per_bin_mean is None: p.per_bin_mean = [0.0] * p.num_bins if p.per_bin_stddev is None: p.per_bin_stddev = [1.0] * p.num_bins assert len(p.per_bin_mean) == p.num_bins assert len(p.per_bin_stddev) == p.num_bins def _CreateWindowFunction(self): p = self.params if p.window_fn is None: self._window_fn = None elif p.window_fn == 'HANNING': def _HanningWindow(frame_size, dtype): return tf.signal.hann_window(frame_size, dtype=dtype) self._window_fn = _HanningWindow else: raise ValueError('Illegal value %r for window_fn param' % (p.window_fn,)) @property def window_frame_size(self): return self._frame_size @property def window_frame_step(self): return self._frame_step def _RemoveChannelDim(self, pcm_audio_data): if pcm_audio_data.shape.rank == 3: pcm_audio_data = tf.squeeze(pcm_audio_data, 2) assert pcm_audio_data.shape.rank == 2, ( 'MelAsrFrontend only supports one channel') return pcm_audio_data def _ReshapeToMono2D(self, pcm_audio_data, paddings): """Reshapes a 3D or 4D input to 2D. Since the input to FProp can be 3D or 4D (see class comments), this will collapse it back to a 2D, mono shape for internal processing. Args: pcm_audio_data: 2D, 3D or 4D audio input. See class comments. Must have a rank. paddings: Original paddings shaped to the first two dims of pcm_audio_data. Returns: Tuple of 2D [batch_size, timestep] mono audio data, new paddings. """ shape = py_utils.GetShape(pcm_audio_data) rank = len(shape) if rank == 2: return pcm_audio_data, paddings elif rank == 3: # [batch, time, channel] with tf.control_dependencies([tf.assert_equal(shape[2], 1)]): return tf.squeeze(pcm_audio_data, axis=2), paddings elif rank == 4: # [batch, time, packet, channel] batch_size, orig_time, orig_packet_size, channel = shape time = orig_time * orig_packet_size with tf.control_dependencies([tf.assert_equal(channel, 1)]): pcm_audio_data = tf.reshape(pcm_audio_data, (batch_size, time)) # Transform paddings into the new time base with a padding per time # step vs per packet by duplicating each packet. paddings = tf.reshape( tf.tile(tf.expand_dims(paddings, axis=2), [1, 1, orig_packet_size]), (batch_size, time)) return pcm_audio_data, paddings else: raise ValueError('Illegal pcm_audio_data shape') def FProp(self, theta, input_batch): """Perform signal processing on a sequence of PCM data. NOTE: This implementation does not currently support paddings, and they are accepted for compatibility with the super-class. TODO(laurenzo): Rework this to support paddings. Args: theta: Layer theta. input_batch: PCM input map: - 'src_inputs': int16 or float32 tensor of PCM audio data, scaled to +/-32768 (versus [-1..1)!). See class comments for supported input shapes. - 'paddings': per frame 0/1 paddings. Shaped: [batch, frame]. Returns: NestedMap of encoder inputs which can be passed directly to a compatible encoder and contains: - 'src_inputs': inputs to the encoder, minimally of shape [batch, time, ...]. - 'paddings': a 0/1 tensor of shape [batch, time]. """ pcm_audio_data, pcm_audio_paddings = self._ReshapeToMono2D( input_batch.src_inputs, input_batch.paddings) mel_spectrogram, mel_spectrogram_paddings = self._FPropChunk( theta, pcm_audio_data, pcm_audio_paddings) mel_spectrogram, mel_spectrogram_paddings = self._PadAndReshapeSpec( mel_spectrogram, mel_spectrogram_paddings) return py_utils.NestedMap( src_inputs=mel_spectrogram, paddings=mel_spectrogram_paddings) def _PadAndReshapeSpec(self, mel_spectrogram, mel_spectrogram_paddings): p = self.params batch_size = py_utils.GetShape(mel_spectrogram)[0] # Stack and sub-sample. Only subsampling with a stride of the stack size # is supported. if p.stack_left_context > 0: # Since left context is leading, pad the left by duplicating the first # frame. stack_size = 1 + p.stack_left_context mel_spectrogram = tf.concat( [mel_spectrogram[:, 0:1, :]] * p.stack_left_context + [mel_spectrogram], axis=1) mel_spectrogram_paddings = tf.concat( [mel_spectrogram_paddings[:, 0:1]] * p.stack_left_context + [mel_spectrogram_paddings], axis=1) # Note that this is the maximum number of frames. Actual frame count # depends on padding. stacked_frame_dim = tf.shape(mel_spectrogram)[1] // stack_size mel_spectrogram = tf.reshape( mel_spectrogram[:, 0:(stack_size) * stacked_frame_dim, :], [batch_size, stacked_frame_dim, stack_size * p.num_bins]) # After stacking paddings, pad if any source frame was padded. # Stacks into [batch_size, stacked_frame_dim, stack_size] like the # spectrogram stacking above, and then reduces the stack_size dim # to the max (effectively, making padding = 1.0 if any of the pre-stacked # frames were 1.0). Final shape is [batch_size, stacked_frame_dim]. mel_spectrogram_paddings = tf.reshape( mel_spectrogram_paddings[:, 0:(stack_size) * stacked_frame_dim], [batch_size, stacked_frame_dim, stack_size]) mel_spectrogram_paddings = tf.reduce_max(mel_spectrogram_paddings, axis=2) # Add feature dim. Shape = [batch, time, features, 1] mel_spectrogram = tf.expand_dims(mel_spectrogram, -1) return mel_spectrogram, mel_spectrogram_paddings def _ApplyPreemphasis(self, framed_signal): p = self.params preemphasized = ( framed_signal[:, :, 1:] - p.preemph * framed_signal[:, :, 0:-1]) return preemphasized def _GetMelPadding(self, pcm_audio_paddings): p = self.params # shape: [batch, time, _frame_size] framed_paddings = tf.signal.frame(pcm_audio_paddings, self._frame_size, self._frame_step, p.pad_end) # Pad spectrograms that have any padded frames. mel_spectrogram_paddings = tf.reduce_max(framed_paddings, axis=2) return mel_spectrogram_paddings def _FPropChunk(self, theta, pcm_audio_chunk, pcm_audio_paddings): p = self.params pcm_audio_chunk = tf.cast(pcm_audio_chunk, tf.float32) # shape: [batch, time, _frame_size] framed_signal = tf.signal.frame(pcm_audio_chunk, self._frame_size, self._frame_step, p.pad_end) # Pre-emphasis. if p.preemph != 1.0: preemphasized = self._ApplyPreemphasis(framed_signal) else: preemphasized = framed_signal[:-1] # Noise. if p.noise_scale > 0.0: noise_signal = tf.random_normal( tf.shape(preemphasized), stddev=p.noise_scale, mean=0.0, seed=p.random_seed) else: noise_signal = 0.0 # Apply window fn. windowed_signal = preemphasized + noise_signal if self._window_fn is not None: window = self._window_fn(self._frame_size - 1, framed_signal.dtype) windowed_signal *= window mel_spectrogram = self._MelSpectrogram(windowed_signal) output_floor = 1.0 mel_spectrogram_log = tf.log( tf.maximum(float(output_floor), mel_spectrogram)) # Mean and stddev. mel_spectrogram_norm = ( (mel_spectrogram_log - tf.convert_to_tensor(p.per_bin_mean)) / tf.convert_to_tensor(p.per_bin_stddev)) return mel_spectrogram_norm, self._GetMelPadding(pcm_audio_paddings) def _MelSpectrogram(self, signal): """Computes the mel spectrogram from a waveform signal. Args: signal: f32 Tensor, shaped [batch_size, num_samples] Returns: features: f32 Tensor, shaped [batch_size, num_frames, mel_channels] """ p = self.params # FFT. real_frequency_spectrogram = tf.signal.rfft(signal, [self._fft_size]) magnitude_spectrogram = tf.abs(real_frequency_spectrogram) # Shape of magnitude_spectrogram is num_frames x (fft_size/2+1) # Mel_weight is [num_spectrogram_bins, num_mel_bins] mel_weight_matrix = tf.signal.linear_to_mel_weight_matrix( num_mel_bins=p.num_bins, num_spectrogram_bins=self._fft_size // 2 + 1, sample_rate=p.sample_rate, lower_edge_hertz=p.lower_edge_hertz, upper_edge_hertz=p.upper_edge_hertz, dtype=tf.float32) # Weight matrix implemented in the magnitude domain. batch_size, num_frames, fft_channels = py_utils.GetShape( magnitude_spectrogram, 3) mel_spectrogram = tf.matmul( tf.reshape(magnitude_spectrogram, [batch_size * num_frames, fft_channels]), mel_weight_matrix) mel_spectrogram = tf.reshape(mel_spectrogram, [batch_size, num_frames, p.num_bins]) return mel_spectrogram
37.758621
80
0.689612
5e0569092e60e3bafd57c4c728e3b494e24f8edb
1,388
py
Python
fixture/session.py
Dimans10/Autotest_traning
9dbd8646a845fc743396cb78681b0aca111077f4
[ "Apache-2.0" ]
null
null
null
fixture/session.py
Dimans10/Autotest_traning
9dbd8646a845fc743396cb78681b0aca111077f4
[ "Apache-2.0" ]
null
null
null
fixture/session.py
Dimans10/Autotest_traning
9dbd8646a845fc743396cb78681b0aca111077f4
[ "Apache-2.0" ]
null
null
null
class SessionHelper: def __init__(self, app): self.app = app def login(self, username, password): wd = self.app.wd self.app.open_home_page() wd.find_element_by_name("user").click() wd.find_element_by_name("user").clear() wd.find_element_by_name("user").send_keys(username) wd.find_element_by_name("pass").clear() wd.find_element_by_name("pass").send_keys(password) wd.find_element_by_xpath("//input[@value='Login']").click() def logout(self): wd = self.app.wd wd.find_element_by_link_text("Logout").click() wd.find_element_by_name("user") def check_logout(self): wd = self.app.wd return len(wd.find_elements_by_link_text("Logout")) > 0 def get_logged_user(self): wd = self.app.wd return wd.find_element_by_xpath("//div[@id='top']/form/b").text[1:-1] def is_login_as(self, username): wd = self.app.wd return self.get_logged_user() == username def ensure_logout(self): wd = self.app.wd if self.check_logout(): self.logout() def ensure_login(self, username, password): wd = self.app.wd if self.check_logout(): if self.is_login_as(username): return else: self.logout() self.login(username,password)
29.531915
77
0.600865
5678a9cc27ca37fe7bd4af711d29aac99f718aad
71
py
Python
Chapter 05/Chap05_Example5.42.py
bpbpublications/Programming-Techniques-using-Python
49b785f37e95a3aad1d36cef51e219ac56e5e9f0
[ "MIT" ]
null
null
null
Chapter 05/Chap05_Example5.42.py
bpbpublications/Programming-Techniques-using-Python
49b785f37e95a3aad1d36cef51e219ac56e5e9f0
[ "MIT" ]
null
null
null
Chapter 05/Chap05_Example5.42.py
bpbpublications/Programming-Techniques-using-Python
49b785f37e95a3aad1d36cef51e219ac56e5e9f0
[ "MIT" ]
null
null
null
#games module from Kabaddi import defender defender.name_defender()
17.75
29
0.802817
282307ad25d854b6b6c0e8d7929d46d3bf30bbea
1,029
py
Python
blueking_api/urls.py
ganlvtech/blueking-django-startup-project
042aa36b0757c0d3929d88bc23534f54963d333e
[ "MIT" ]
1
2018-11-22T21:13:25.000Z
2018-11-22T21:13:25.000Z
blueking_api/urls.py
ganlvtech/blueking-django-startup-project
042aa36b0757c0d3929d88bc23534f54963d333e
[ "MIT" ]
null
null
null
blueking_api/urls.py
ganlvtech/blueking-django-startup-project
042aa36b0757c0d3929d88bc23534f54963d333e
[ "MIT" ]
null
null
null
from django.conf.urls import url from . import views urlpatterns = [ url(r'^$', views.index, name='index'), url(r'^permission_test/', views.permission_test, name='permission_test'), url(r'^get_app_access_token/$', views.get_app_access_token, name='get_app_access_token'), url(r'^get_user_access_token/$', views.get_user_access_token, name='get_user_access_token'), url(r'^refresh_user_access_token/$', views.refresh_user_access_token, name='refresh_user_access_token'), url(r'^get_permissions/$', views.get_permissions, name='get_permissions'), url(r'^get_user_info/$', views.get_user_info, name='get_user_info'), url(r'^get_openid_openkey/$', views.get_openid_openkey, name='get_openid_openkey'), url(r'^verify_openid_openkey/$', views.verify_openid_openkey, name='verify_openid_openkey'), url(r'^get_auth_token/$', views.get_auth_token, name='get_auth_token'), url(r'^send_email/$', views.send_email, name='send_email'), url(r'^send_sms/$', views.send_sms, name='send_sms'), ]
54.157895
108
0.737609
43712f1330778894c23c8558d6868bb7003ee373
1,068
py
Python
examples/hddmcp.py
markito3/hddm
887b72c0d27869696e243d277c37fcf2fabd2207
[ "Apache-2.0" ]
null
null
null
examples/hddmcp.py
markito3/hddm
887b72c0d27869696e243d277c37fcf2fabd2207
[ "Apache-2.0" ]
2
2021-04-04T04:06:25.000Z
2021-10-18T00:59:12.000Z
examples/hddmcp.py
markito3/hddm
887b72c0d27869696e243d277c37fcf2fabd2207
[ "Apache-2.0" ]
2
2021-04-14T20:58:51.000Z
2021-04-14T21:13:58.000Z
#!/bin/env python # # hddmcp.py - python alternative to the old hddmcp, multithreaded. # # author: richard.t.jones at uconn.edu # version: march 23, 2018 import threading import hddm_s import sys def usage(): print "Usage: hddmcp.py [-n #threads] <file1.hddm> <file2.hddm> ... <outfile.hddm>" sys.exit(1) def copy(fin): for r in fin: fout.write(r) nthreads = 1 infiles = [] iarg = 1 while iarg < len(sys.argv): arg = sys.argv[iarg] iarg += 1 if arg == '-n': nthreads = int(sys.argv[iarg]) iarg += 1 continue elif arg[0:2] == '-n': nthreads = int(arg[2:]) continue infiles.append(arg) outfile = infiles.pop() if len(infiles) < 1: usage() fout = hddm_s.ostream(outfile) fout.compression = hddm_s.k_bz2_compression for infile in infiles: print "starting", infile fin = hddm_s.istream(infile) threads = [] for i in range(0, nthreads): t = threading.Thread(target=copy, args=(fin,)) t.start() threads.append(t) for t in threads: t.join() print "finished", infile
20.941176
86
0.626404
49928382b9f0968592c953c45ebc0fd0b5307b95
473
py
Python
project/apps/core/views.py
abdesslem/drf
e6010a771dc31a5f5ce7f5f0720302bd84a25a5f
[ "MIT" ]
null
null
null
project/apps/core/views.py
abdesslem/drf
e6010a771dc31a5f5ce7f5f0720302bd84a25a5f
[ "MIT" ]
null
null
null
project/apps/core/views.py
abdesslem/drf
e6010a771dc31a5f5ce7f5f0720302bd84a25a5f
[ "MIT" ]
null
null
null
from rest_framework import viewsets from .models import University, Student from .serializers import UniversitySerializer, StudentSerializer # ViewSets define the view behavior. class StudentViewSet(viewsets.ModelViewSet): queryset = Student.objects.all() serializer_class = StudentSerializer # ViewSets define the view behavior. class UniversityViewSet(viewsets.ModelViewSet): queryset = University.objects.all() serializer_class = UniversitySerializer
31.533333
64
0.811839
e4ce7a9b1cb89d935dc4de3e9f981a631d014696
42,277
py
Python
koalixcrm/crm/migrations/0003_auto_20171009_1949.py
Cataldir/koalixcrm
87d125379845d6ab990c19500d63cbed4051040a
[ "BSD-3-Clause" ]
290
2015-01-11T03:01:05.000Z
2019-12-17T03:56:17.000Z
koalixcrm/crm/migrations/0003_auto_20171009_1949.py
Cataldir/koalixcrm
87d125379845d6ab990c19500d63cbed4051040a
[ "BSD-3-Clause" ]
178
2016-02-26T14:41:49.000Z
2019-12-29T08:34:21.000Z
koalixcrm/crm/migrations/0003_auto_20171009_1949.py
Cataldir/koalixcrm
87d125379845d6ab990c19500d63cbed4051040a
[ "BSD-3-Clause" ]
124
2015-02-28T20:56:37.000Z
2019-12-13T18:15:35.000Z
# -*- coding: utf-8 -*- # Generated by Django 1.11.4 on 2017-10-09 19:49 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('crm', '0002_auto_20170927_2042'), ] operations = [ migrations.AlterModelOptions( name='contact', options={'verbose_name': 'Kontakt', 'verbose_name_plural': 'Kontakt'}, ), migrations.AlterModelOptions( name='contract', options={'verbose_name': 'Auftrag', 'verbose_name_plural': 'Aufträge'}, ), migrations.AlterModelOptions( name='currency', options={'verbose_name': 'Währung', 'verbose_name_plural': 'Währung'}, ), migrations.AlterModelOptions( name='customer', options={'verbose_name': 'Kunde', 'verbose_name_plural': 'Kunden'}, ), migrations.AlterModelOptions( name='customerbillingcycle', options={'verbose_name': 'Zahlungsbedingungen', 'verbose_name_plural': 'Zahlungsbedingungen'}, ), migrations.AlterModelOptions( name='customergroup', options={'verbose_name': 'Kundengruppe', 'verbose_name_plural': 'Kundengruppen'}, ), migrations.AlterModelOptions( name='customergrouptransform', options={'verbose_name': 'Kundengruppe Preisumrechnung', 'verbose_name_plural': 'Kundengruppen Preisumrechnungen'}, ), migrations.AlterModelOptions( name='emailaddress', options={'verbose_name': 'Email Adresse', 'verbose_name_plural': 'Email Adresse'}, ), migrations.AlterModelOptions( name='emailaddressforcontact', options={'verbose_name': 'Email Adresse für Kontakte', 'verbose_name_plural': 'Email Adresse für Kontakte'}, ), migrations.AlterModelOptions( name='emailaddressforcontract', options={'verbose_name': 'Email Adresse für Aufträge', 'verbose_name_plural': 'Email Adresse für Aufträge'}, ), migrations.AlterModelOptions( name='emailaddressforpurchaseorder', options={'verbose_name': 'Email Adresse für Aufträge', 'verbose_name_plural': 'Email Adresse für Aufträge'}, ), migrations.AlterModelOptions( name='emailaddressforsalescontract', options={'verbose_name': 'Email Adresse für Aufträge', 'verbose_name_plural': 'Email Adresse für Aufträge'}, ), migrations.AlterModelOptions( name='invoice', options={'verbose_name': 'Rechnung', 'verbose_name_plural': 'Rechnungen'}, ), migrations.AlterModelOptions( name='phoneaddress', options={'verbose_name': 'Telefonnummer', 'verbose_name_plural': 'Telefonnummer'}, ), migrations.AlterModelOptions( name='phoneaddressforcontact', options={'verbose_name': 'Telefonnummer für Kontakte', 'verbose_name_plural': 'Telefonnummer für Kontakte'}, ), migrations.AlterModelOptions( name='phoneaddressforcontract', options={'verbose_name': 'Telefonnummer für Aufträge', 'verbose_name_plural': 'Telefonnummer für Aufträge'}, ), migrations.AlterModelOptions( name='phoneaddressforpurchaseorder', options={'verbose_name': 'Telefonnummer für Aufträge', 'verbose_name_plural': 'Telefonnummer für Aufträge'}, ), migrations.AlterModelOptions( name='phoneaddressforsalescontract', options={'verbose_name': 'Telefonnummer für Aufträge', 'verbose_name_plural': 'Telefonnummer für Aufträge'}, ), migrations.AlterModelOptions( name='position', options={'verbose_name': 'Position', 'verbose_name_plural': 'Positionen'}, ), migrations.AlterModelOptions( name='postaladdress', options={'verbose_name': 'Postadresse', 'verbose_name_plural': 'Postadresse'}, ), migrations.AlterModelOptions( name='postaladdressforcontact', options={'verbose_name': 'Postadresse für Kontakte', 'verbose_name_plural': 'Postadresse für Kontakte'}, ), migrations.AlterModelOptions( name='postaladdressforcontract', options={'verbose_name': 'Postadresse für Aufträge', 'verbose_name_plural': 'Postadresse für Aufträge'}, ), migrations.AlterModelOptions( name='postaladdressforpurchaseorder', options={'verbose_name': 'Postadresse für Aufträge', 'verbose_name_plural': 'Postadresse für Aufträge'}, ), migrations.AlterModelOptions( name='postaladdressforsalescontract', options={'verbose_name': 'Postadresse für Aufträge', 'verbose_name_plural': 'Postadresse für Aufträge'}, ), migrations.AlterModelOptions( name='price', options={'verbose_name': 'Preis', 'verbose_name_plural': 'Preise'}, ), migrations.AlterModelOptions( name='product', options={'verbose_name': 'Produkt', 'verbose_name_plural': 'Produkte'}, ), migrations.AlterModelOptions( name='purchaseorder', options={'verbose_name': 'Bestellung', 'verbose_name_plural': 'Bestellung'}, ), migrations.AlterModelOptions( name='purchaseorderposition', options={'verbose_name': 'Bestellung Position', 'verbose_name_plural': 'Bestellung Positionen'}, ), migrations.AlterModelOptions( name='quote', options={'verbose_name': 'Offerte', 'verbose_name_plural': 'Offerten'}, ), migrations.AlterModelOptions( name='salescontract', options={'verbose_name': 'Verkaufsauftrag', 'verbose_name_plural': 'Verkaufsaufträge'}, ), migrations.AlterModelOptions( name='salescontractposition', options={'verbose_name': 'Verkaufsaufträg Position', 'verbose_name_plural': 'Verkaufsaufträge Positionen'}, ), migrations.AlterModelOptions( name='supplier', options={'verbose_name': 'Lieferant', 'verbose_name_plural': 'Lieferant'}, ), migrations.AlterModelOptions( name='tax', options={'verbose_name': 'Steuer', 'verbose_name_plural': 'Steuern'}, ), migrations.AlterModelOptions( name='unit', options={'verbose_name': 'Masseinheit', 'verbose_name_plural': 'Masseinheiten'}, ), migrations.AlterModelOptions( name='unittransform', options={'verbose_name': 'Einheiten Umrechnung', 'verbose_name_plural': 'Einheiten Umrechnungen'}, ), migrations.AddField( model_name='purchaseorder', name='last_print_date', field=models.DateTimeField(blank=True, null=True, verbose_name='Last printed'), ), migrations.AddField( model_name='salescontract', name='last_print_date', field=models.DateTimeField(blank=True, null=True, verbose_name='Last printed'), ), migrations.AlterField( model_name='contact', name='dateofcreation', field=models.DateTimeField(auto_now=True, verbose_name='Erstelldatum'), ), migrations.AlterField( model_name='contact', name='lastmodification', field=models.DateTimeField(auto_now_add=True, verbose_name='Zuletzt geändert'), ), migrations.AlterField( model_name='contact', name='lastmodifiedby', field=models.ForeignKey(blank=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Zuletzt geändert durch'), ), migrations.AlterField( model_name='contact', name='name', field=models.CharField(max_length=300, verbose_name='Dateiname'), ), migrations.AlterField( model_name='contract', name='dateofcreation', field=models.DateTimeField(auto_now=True, verbose_name='Erstelldatum'), ), migrations.AlterField( model_name='contract', name='defaultSupplier', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Supplier', verbose_name='Standard Lieferant'), ), migrations.AlterField( model_name='contract', name='defaultcurrency', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Currency', verbose_name='Standard Währung'), ), migrations.AlterField( model_name='contract', name='defaultcustomer', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Customer', verbose_name='Standard Kunde'), ), migrations.AlterField( model_name='contract', name='description', field=models.TextField(verbose_name='Beschreibung'), ), migrations.AlterField( model_name='contract', name='lastmodification', field=models.DateTimeField(auto_now_add=True, verbose_name='Zuletzt geändert'), ), migrations.AlterField( model_name='contract', name='lastmodifiedby', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_contractlstmodified', to=settings.AUTH_USER_MODEL, verbose_name='Zuletzt geändert durch'), ), migrations.AlterField( model_name='contract', name='staff', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_relcontractstaff', to=settings.AUTH_USER_MODEL, verbose_name='Mitarbeiter'), ), migrations.AlterField( model_name='currency', name='description', field=models.CharField(max_length=100, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='currency', name='rounding', field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True, verbose_name='Rundung'), ), migrations.AlterField( model_name='currency', name='shortName', field=models.CharField(max_length=3, verbose_name='Angezeigt nach dem Preis in der Position'), ), migrations.AlterField( model_name='customer', name='defaultCustomerBillingCycle', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.CustomerBillingCycle', verbose_name='Standard Zahlungsbedingung'), ), migrations.AlterField( model_name='customer', name='ismemberof', field=models.ManyToManyField(blank=True, to='crm.CustomerGroup', verbose_name='Ist Mitglied von'), ), migrations.AlterField( model_name='customerbillingcycle', name='name', field=models.CharField(max_length=300, verbose_name='Dateiname'), ), migrations.AlterField( model_name='customerbillingcycle', name='timeToPaymentDate', field=models.IntegerField(verbose_name='Tage bis zur Fälligkeit'), ), migrations.AlterField( model_name='customergrouptransform', name='factor', field=models.IntegerField(blank=True, null=True, verbose_name='Prismultiplikator zwischen der einen und der anderen Kundengruppe'), ), migrations.AlterField( model_name='customergrouptransform', name='fromCustomerGroup', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_reltransfromfromcustomergroup', to='crm.CustomerGroup', verbose_name='Von Masseinheit'), ), migrations.AlterField( model_name='customergrouptransform', name='product', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Product', verbose_name='Produkt'), ), migrations.AlterField( model_name='customergrouptransform', name='toCustomerGroup', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_reltransfromtocustomergroup', to='crm.CustomerGroup', verbose_name='Zu Masseinheit'), ), migrations.AlterField( model_name='emailaddress', name='email', field=models.EmailField(max_length=200, verbose_name='Email Adresse'), ), migrations.AlterField( model_name='emailaddressforcontact', name='purpose', field=models.CharField(choices=[('H', 'Privat'), ('O', 'Geschäftlich'), ('P', 'Mobil Privat'), ('B', 'Mobil Geschäftlich')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='emailaddressforcontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='emailaddressforpurchaseorder', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='emailaddressforsalescontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='invoice', name='payableuntil', field=models.DateField(verbose_name='Zahlbar bis'), ), migrations.AlterField( model_name='invoice', name='paymentBankReference', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Zahlungsreferenz der Bank'), ), migrations.AlterField( model_name='invoice', name='status', field=models.CharField(choices=[('P', 'Bezahlt'), ('C', 'Rechnung erstellt'), ('I', 'Rechung geschickt'), ('F', 'Erste Erinnerung geschickt'), ('R', 'Zweite Erinnerung geschickt'), ('U', 'Kunde kann nicht zahlen'), ('D', 'Gelöscht')], max_length=1), ), migrations.AlterField( model_name='phoneaddress', name='phone', field=models.CharField(max_length=20, verbose_name='Telefonnummer'), ), migrations.AlterField( model_name='phoneaddressforcontact', name='purpose', field=models.CharField(choices=[('H', 'Privat'), ('O', 'Geschäftlich'), ('P', 'Mobil Privat'), ('B', 'Mobil Geschäftlich')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='phoneaddressforcontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='phoneaddressforpurchaseorder', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='phoneaddressforsalescontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='position', name='description', field=models.TextField(blank=True, null=True, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='position', name='discount', field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True, verbose_name='Rabatt'), ), migrations.AlterField( model_name='position', name='lastCalculatedPrice', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Zuletzt berechneter Preis'), ), migrations.AlterField( model_name='position', name='lastCalculatedTax', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Zuletzt berechnete Steuer'), ), migrations.AlterField( model_name='position', name='lastPricingDate', field=models.DateField(blank=True, null=True, verbose_name='Datum der letze Preisberechnung'), ), migrations.AlterField( model_name='position', name='overwriteProductPrice', field=models.BooleanField(verbose_name='Überschreie Produkt Preis'), ), migrations.AlterField( model_name='position', name='positionNumber', field=models.IntegerField(verbose_name='Positionsnummer'), ), migrations.AlterField( model_name='position', name='positionPricePerUnit', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Preis pro Einheit'), ), migrations.AlterField( model_name='position', name='product', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Product', verbose_name='Produkt'), ), migrations.AlterField( model_name='position', name='quantity', field=models.DecimalField(decimal_places=3, max_digits=10, verbose_name='Anzahl'), ), migrations.AlterField( model_name='position', name='sentOn', field=models.DateField(blank=True, null=True, verbose_name='Verschickt am'), ), migrations.AlterField( model_name='position', name='shipmentID', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Lieferungs ID'), ), migrations.AlterField( model_name='position', name='supplier', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Supplier', verbose_name='Versandunternehmen'), ), migrations.AlterField( model_name='position', name='unit', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Unit', verbose_name='Masseinheit'), ), migrations.AlterField( model_name='postaladdress', name='addressline1', field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Adresslinie 1'), ), migrations.AlterField( model_name='postaladdress', name='addressline2', field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Adresslinie 2'), ), migrations.AlterField( model_name='postaladdress', name='addressline3', field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Adresslinie 3'), ), migrations.AlterField( model_name='postaladdress', name='addressline4', field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Adresslinie 4'), ), migrations.AlterField( model_name='postaladdress', name='country', field=models.CharField(blank=True, choices=[('AF', 'Afghanistan'), ('AX', 'Aland Islands'), ('AL', 'Albanien'), ('DZ', 'Algerien'), ('AS', 'Amerikanisch-Samoa'), ('AD', 'Andorra'), ('AO', 'Angola'), ('AI', 'Anguilla'), ('AQ', 'Antarktis'), ('AG', 'Antigua und Barbuda'), ('AR', 'Argentinien'), ('AM', 'Armenien'), ('AW', 'Aruba'), ('AU', 'Australien'), ('AT', 'Österreich'), ('AZ', 'Aserbaidschan'), ('BS', 'Bahamas'), ('BH', 'Bahrain\t'), ('BD', 'Bangladesch'), ('BB', 'Barbados'), ('BY', 'Belarus, (Weißrußland)'), ('BE', 'Belgien'), ('BZ', 'Belize'), ('BJ', 'Benin'), ('BM', 'Bermuda'), ('BT', 'Bhutan'), ('BO', 'Bolivien'), ('BA', 'Bosnien und Herzegovina'), ('BW', 'Botsuana'), ('BV', 'Bouvetinsel'), ('BR', 'Brasilien'), ('IO', 'Britisches Territorium im Indischen Ozean'), ('BN', 'Brunei Darussalam'), ('BG', 'Bulgarien'), ('BF', 'Burkina Faso (Obervolta - 1984)'), ('BI', 'Burundi'), ('KH', 'Kambodscha'), ('CM', 'Kamerun'), ('CA', 'Kanada'), ('CV', 'Kap Verde'), ('KY', 'Kaimaninseln'), ('CF', 'Zentralafrikanische Republik'), ('TD', 'Tschad'), ('CL', 'Chile'), ('CN', 'China'), ('CX', 'Weihnachtsinsel'), ('CC', 'Kokosinseln (Keeling)'), ('CO', 'Kolumbien'), ('KM', 'Komoren'), ('CG', 'Kongo'), ('CD', 'Kongo, Demokratische Republik'), ('CK', 'Cookinseln'), ('CR', 'Costa Rica'), ('CI', 'Elfenbeinküste'), ('HR', 'Kroatien'), ('CU', 'Kuba'), ('CY', 'Zypern'), ('CZ', 'Tschechische Republik'), ('DK', 'Dänemark'), ('DJ', 'Dschibuti'), ('DM', 'Dominica'), ('DO', 'Dominikanische Republik (Dom Rep)'), ('EC', 'Ecuador'), ('EG', 'Ägypten'), ('SV', 'El Salvador'), ('GQ', 'Äquatorialguinea'), ('ER', 'Eritrea'), ('EE', 'Estland'), ('ET', 'Äthiopien'), ('FK', 'Falklandinseln (Malvinen)'), ('FO', 'Färöer'), ('FJ', 'Fidschi'), ('FI', 'Finnland'), ('FR', 'Frankreich'), ('GF', 'Französisch-Guayana'), ('PF', 'Französisch-Polynesien'), ('TF', 'Französische Süd- und Antarktisgebiete'), ('GA', 'Gabun'), ('GM', 'Gambia'), ('GE', 'Georgien'), ('DE', 'Deutschland'), ('GH', 'Ghana'), ('GI', 'Gibraltar'), ('GR', 'Griechenland'), ('GL', 'Grönland'), ('GD', 'Grenada'), ('GP', 'Guadeloupe'), ('GU', 'Guam'), ('GT', 'Guatemala'), ('GG', 'Guernsey'), ('GN', 'Guinea'), ('GW', 'Guinea-Bissau'), ('GY', 'Guyana'), ('HT', 'Haiti'), ('HM', 'Heard und die Mcdonaldinseln'), ('VA', 'Heiliger Stuhl (Vatikanstadt)'), ('HN', 'Honduras'), ('HK', 'Hongkong'), ('HU', 'Ungarn'), ('IS', 'Island'), ('IN', 'Indien'), ('ID', 'Indonesien'), ('IR', 'Iran, Islamische Republik'), ('IQ', 'Irak'), ('IE', 'Irland'), ('IM', 'Insel Man'), ('IL', 'Israel'), ('IT', 'Italien'), ('JM', 'Jamaika'), ('JP', 'Japan'), ('JE', 'Jersey'), ('JO', 'Jordanien'), ('KZ', 'Kasachstan'), ('KE', 'Kenya'), ('KI', 'Kiribati'), ('KP', 'Korea, Demokratische Volksrepublik (Nord Korea)'), ('KR', 'Korea, Republik (Süd Korea)'), ('KW', 'Kuwait'), ('KG', 'Kirgisistan'), ('LA', 'Laos, Demokratische Volksrepublik'), ('LV', 'Lettland'), ('LB', 'Libanon'), ('LS', 'Lesotho'), ('LR', 'Liberia'), ('LY', 'Libyen, Libysch-Arabische Dschamahirija'), ('LI', 'Liechtenstein'), ('LT', 'Litauen'), ('LU', 'Luxemburg'), ('MO', 'Macau'), ('MK', 'Mazedonien'), ('MG', 'Madagaskar'), ('MW', 'Malawi'), ('MY', 'Malaysia'), ('MV', 'Malediven'), ('ML', 'Mali'), ('MT', 'Malta'), ('MH', 'Marshallinseln'), ('MQ', 'Martinique'), ('MR', 'Mauretanien'), ('MU', 'Mauritius'), ('YT', 'Mayotte'), ('MX', 'Mexiko'), ('FM', 'Mikronesien, Föderierte Staaten von'), ('MD', 'Moldau, Republik'), ('MC', 'Monaco'), ('MN', 'Mongolei'), ('ME', 'Montenegro'), ('MS', 'Montenegro'), ('MA', 'Marokko'), ('MZ', 'Mosambik'), ('MM', 'Myanmar, Birma'), ('NA', 'Namibia'), ('NR', 'Nauru'), ('NP', 'Nepal'), ('NL', 'Niederlande'), ('AN', 'Niederländische Antillen'), ('NC', 'Neukaledonien'), ('NZ', 'Neuseeland'), ('NI', 'Nicaragua'), ('NE', 'Niger'), ('NG', 'Nigeria'), ('NU', 'Niue'), ('NF', 'Norfolkinsel'), ('MP', 'Marianen, Nördliche'), ('NO', 'Norwegen'), ('OM', 'Oman'), ('PK', 'Pakistan'), ('PW', 'Palau'), ('PS', 'Palästinensische Autonomiegebiete'), ('PA', 'Panama'), ('PG', 'Papua-Neuguinea'), ('PY', 'Paraguay'), ('PE', 'Peru'), ('PH', 'Philippinen'), ('PN', 'Pitcairninseln'), ('PL', 'Polen'), ('PT', 'Portugal'), ('PR', 'Puerto Rico'), ('QA', 'Katar'), ('RE', 'Reunion'), ('RO', 'Rumänien'), ('RU', 'Russische Föderation (Russland)'), ('RW', 'Ruanda'), ('SH', 'St. Helena'), ('KN', 'St. Kitts und Nevis'), ('LC', 'St. Lucia'), ('PM', 'St. Pierre und Miquelon'), ('VC', 'St. Vincent und die Grenadinen'), ('WS', 'Samoa'), ('SM', 'San Marino'), ('ST', 'São Tomé und Príncipe'), ('SA', 'Saudi-Arabien'), ('SN', 'Senegal'), ('RS', 'Serbien'), ('SC', 'Seychellen'), ('SL', 'Sierra Leone'), ('SG', 'Singapur'), ('SK', 'Slowakei'), ('SI', 'Slowenien'), ('SB', 'Salomonen'), ('SO', 'Somalia'), ('ZA', 'Südafrika'), ('GS', 'Südgeorgien und die südlichen Sandwichinseln'), ('ES', 'Spanien'), ('LK', 'Sri Lanka'), ('SD', 'Sudan'), ('SR', 'Suriname'), ('SJ', 'Svalbard und Jan Mayen'), ('SZ', 'Swasiland'), ('SE', 'Schweden'), ('CH', 'Schweiz'), ('SY', 'Syrien, Arabische Republik'), ('TW', 'Taiwan'), ('TJ', 'Tadschikistan'), ('TZ', 'Tansania, Vereinigte Republik'), ('TH', 'Thailand'), ('TL', 'Timor-Leste (Osttimor)'), ('TG', 'Togo'), ('TK', 'Tokelau'), ('TO', 'Tonga'), ('TT', 'Trinidad und Tobago'), ('TN', 'Tunesien'), ('TR', 'Türkei'), ('TM', 'Turkmenistan'), ('TC', 'Turks- und Caicosinseln'), ('TV', 'Tuvalu'), ('UG', 'Uganda'), ('UA', 'Ukraine'), ('AE', 'Vereinigte Arabische Emirate'), ('GB', 'Vereinigtes Königreich'), ('US', 'Vereinigte Staaten'), ('UM', 'Amerikanische Überseeinseln, Kleinere'), ('UY', 'Uruguay'), ('UZ', 'Usbekistan'), ('VU', 'Vanuatu'), ('VE', 'Venezuela'), ('VN', 'Vietnam'), ('VG', 'Britische Jungferninseln'), ('VI', 'Amerikanische Jungferninseln'), ('WF', 'Wallis und Futuna'), ('EH', 'Westsahara'), ('YE', 'Jemen'), ('ZM', 'Sambia'), ('ZW', 'Simbabwe')], max_length=2, null=True, verbose_name='Land'), ), migrations.AlterField( model_name='postaladdress', name='name', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Dateiname'), ), migrations.AlterField( model_name='postaladdress', name='prefix', field=models.CharField(blank=True, choices=[('F', 'Firma'), ('W', 'Frau'), ('H', 'Herr'), ('G', 'Frau')], max_length=1, null=True, verbose_name='Anrede'), ), migrations.AlterField( model_name='postaladdress', name='prename', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Vorname'), ), migrations.AlterField( model_name='postaladdress', name='state', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Bundestaat/Kanton'), ), migrations.AlterField( model_name='postaladdress', name='town', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Ortschaft'), ), migrations.AlterField( model_name='postaladdress', name='zipcode', field=models.IntegerField(blank=True, null=True, verbose_name='PLZ'), ), migrations.AlterField( model_name='postaladdressforcontact', name='purpose', field=models.CharField(choices=[('H', 'Privat'), ('O', 'Geschäftlich'), ('P', 'Mobil Privat'), ('B', 'Mobil Geschäftlich')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='postaladdressforcontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='postaladdressforpurchaseorder', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='postaladdressforsalescontract', name='purpose', field=models.CharField(choices=[('D', 'Versand Addresse'), ('B', 'Rechnungs Adresse'), ('C', 'Kontakt Adresse')], max_length=1, verbose_name='Verwendungszweck'), ), migrations.AlterField( model_name='price', name='customerGroup', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.CustomerGroup', verbose_name='Kundengruppe'), ), migrations.AlterField( model_name='price', name='price', field=models.DecimalField(decimal_places=2, max_digits=17, verbose_name='Preis pro Einheit'), ), migrations.AlterField( model_name='price', name='product', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Product', verbose_name='Produkt'), ), migrations.AlterField( model_name='price', name='unit', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Unit', verbose_name='Masseinheit'), ), migrations.AlterField( model_name='price', name='validfrom', field=models.DateField(blank=True, null=True, verbose_name='Gültig vom'), ), migrations.AlterField( model_name='price', name='validuntil', field=models.DateField(blank=True, null=True, verbose_name='Gültig bis'), ), migrations.AlterField( model_name='product', name='accoutingProductCategorie', field=models.ForeignKey(blank='True', null=True, on_delete=django.db.models.deletion.CASCADE, to='accounting.ProductCategorie', verbose_name='Buchhaltung Produktkategorie'), ), migrations.AlterField( model_name='product', name='dateofcreation', field=models.DateTimeField(auto_now=True, verbose_name='Erstelldatum'), ), migrations.AlterField( model_name='product', name='defaultunit', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Unit', verbose_name='Masseinheit'), ), migrations.AlterField( model_name='product', name='description', field=models.TextField(blank=True, null=True, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='product', name='lastmodification', field=models.DateTimeField(auto_now_add=True, verbose_name='Zuletzt geändert'), ), migrations.AlterField( model_name='product', name='lastmodifiedby', field=models.ForeignKey(blank='True', null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Zuletzt geändert durch'), ), migrations.AlterField( model_name='product', name='productNumber', field=models.IntegerField(verbose_name='Produktnummer'), ), migrations.AlterField( model_name='product', name='title', field=models.CharField(max_length=200, verbose_name='Titel'), ), migrations.AlterField( model_name='purchaseorder', name='contract', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Contract', verbose_name='Auftrag'), ), migrations.AlterField( model_name='purchaseorder', name='currency', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Currency', verbose_name='Währung'), ), migrations.AlterField( model_name='purchaseorder', name='dateofcreation', field=models.DateTimeField(auto_now=True, verbose_name='Erstelldatum'), ), migrations.AlterField( model_name='purchaseorder', name='description', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='purchaseorder', name='externalReference', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Externe Referenz'), ), migrations.AlterField( model_name='purchaseorder', name='lastCalculatedPrice', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Zuletzt berechneter Preis mit Steuer'), ), migrations.AlterField( model_name='purchaseorder', name='lastCalculatedTax', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Zuletzt berechnete Steuer'), ), migrations.AlterField( model_name='purchaseorder', name='lastPricingDate', field=models.DateField(blank=True, null=True, verbose_name='Datum der letze Preisberechnung'), ), migrations.AlterField( model_name='purchaseorder', name='lastmodification', field=models.DateTimeField(auto_now_add=True, verbose_name='Zuletzt geändert'), ), migrations.AlterField( model_name='purchaseorder', name='lastmodifiedby', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_polstmodified', to=settings.AUTH_USER_MODEL, verbose_name='Zuletzt geändert durch'), ), migrations.AlterField( model_name='purchaseorder', name='staff', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_relpostaff', to=settings.AUTH_USER_MODEL, verbose_name='Mitarbeiter'), ), migrations.AlterField( model_name='purchaseorder', name='status', field=models.CharField(choices=[('O', 'Bestellt'), ('D', 'Verspätet'), ('Y', 'Ausgeliefert'), ('I', 'Rechnung registriert'), ('P', 'Rechnung bezahlt')], max_length=1), ), migrations.AlterField( model_name='purchaseorder', name='supplier', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Supplier', verbose_name='Lieferant'), ), migrations.AlterField( model_name='purchaseorderposition', name='contract', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.PurchaseOrder', verbose_name='Auftrag'), ), migrations.AlterField( model_name='quote', name='status', field=models.CharField(choices=[('S', 'Erfolg'), ('I', 'Offerte erstellt'), ('Q', 'Offerte verschickt'), ('F', 'Erste Erinnerung geschickt'), ('R', 'Zweite Erinnerung geschickt'), ('D', 'Gelöscht')], max_length=1, verbose_name='Status'), ), migrations.AlterField( model_name='quote', name='validuntil', field=models.DateField(verbose_name='Gültig bis'), ), migrations.AlterField( model_name='salescontract', name='contract', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Contract', verbose_name='Auftrag'), ), migrations.AlterField( model_name='salescontract', name='currency', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Currency', verbose_name='Währung'), ), migrations.AlterField( model_name='salescontract', name='customer', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Customer', verbose_name='Kunde'), ), migrations.AlterField( model_name='salescontract', name='dateofcreation', field=models.DateTimeField(auto_now=True, verbose_name='Erstelldatum'), ), migrations.AlterField( model_name='salescontract', name='description', field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='salescontract', name='discount', field=models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True, verbose_name='Rabatt'), ), migrations.AlterField( model_name='salescontract', name='externalReference', field=models.CharField(blank=True, max_length=100, verbose_name='Externe Referenz'), ), migrations.AlterField( model_name='salescontract', name='lastCalculatedPrice', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Preis ohne Steuer'), ), migrations.AlterField( model_name='salescontract', name='lastCalculatedTax', field=models.DecimalField(blank=True, decimal_places=2, max_digits=17, null=True, verbose_name='Steuer'), ), migrations.AlterField( model_name='salescontract', name='lastPricingDate', field=models.DateField(blank=True, null=True, verbose_name='Letzte Preisberechnung'), ), migrations.AlterField( model_name='salescontract', name='lastmodification', field=models.DateTimeField(auto_now_add=True, verbose_name='Zuletzt geändert'), ), migrations.AlterField( model_name='salescontract', name='lastmodifiedby', field=models.ForeignKey(blank='True', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_lstscmodified', to=settings.AUTH_USER_MODEL, verbose_name='Zuletzt geändert durch'), ), migrations.AlterField( model_name='salescontract', name='staff', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_relscstaff', to=settings.AUTH_USER_MODEL, verbose_name='Mitarbeiter'), ), migrations.AlterField( model_name='salescontractposition', name='contract', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.SalesContract', verbose_name='Auftrag'), ), migrations.AlterField( model_name='tax', name='accountActiva', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_relaccountactiva', to='accounting.Account', verbose_name='Aktiv Konto'), ), migrations.AlterField( model_name='tax', name='accountPassiva', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='db_relaccountpassiva', to='accounting.Account', verbose_name='Passiv Konto'), ), migrations.AlterField( model_name='tax', name='name', field=models.CharField(max_length=100, verbose_name='Name der Steuer'), ), migrations.AlterField( model_name='tax', name='taxrate', field=models.DecimalField(decimal_places=2, max_digits=5, verbose_name='Steuersatz in Prozent'), ), migrations.AlterField( model_name='unit', name='description', field=models.CharField(max_length=100, verbose_name='Beschreibung'), ), migrations.AlterField( model_name='unit', name='fractionFactorToNextHigherUnit', field=models.IntegerField(blank=True, null=True, verbose_name='Multiplikator zwischen dieser und der nächst höheren Einheit'), ), migrations.AlterField( model_name='unit', name='isAFractionOf', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='crm.Unit', verbose_name='Ist eine Untereinheit von'), ), migrations.AlterField( model_name='unit', name='shortName', field=models.CharField(max_length=3, verbose_name='Angezeigt nach der Anzahl in der Position'), ), migrations.AlterField( model_name='unittransform', name='factor', field=models.IntegerField(blank=True, null=True, verbose_name='Multiplikator zwischen der einen und der anderen Einheit'), ), migrations.AlterField( model_name='unittransform', name='fromUnit', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_reltransfromfromunit', to='crm.Unit', verbose_name='Von Masseinheit'), ), migrations.AlterField( model_name='unittransform', name='product', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='crm.Product', verbose_name='Produkt'), ), migrations.AlterField( model_name='unittransform', name='toUnit', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='db_reltransfromtounit', to='crm.Unit', verbose_name='Zu Masseinheit'), ), ]
54.692109
5,863
0.60721
f6091ab0704798a46eeae817671b3cd48beb2926
6,927
py
Python
sdk/python/pulumi_azure_native/securityinsights/v20210301preview/get_incident_relation.py
polivbr/pulumi-azure-native
09571f3bf6bdc4f3621aabefd1ba6c0d4ecfb0e7
[ "Apache-2.0" ]
null
null
null
sdk/python/pulumi_azure_native/securityinsights/v20210301preview/get_incident_relation.py
polivbr/pulumi-azure-native
09571f3bf6bdc4f3621aabefd1ba6c0d4ecfb0e7
[ "Apache-2.0" ]
null
null
null
sdk/python/pulumi_azure_native/securityinsights/v20210301preview/get_incident_relation.py
polivbr/pulumi-azure-native
09571f3bf6bdc4f3621aabefd1ba6c0d4ecfb0e7
[ "Apache-2.0" ]
null
null
null
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from ... import _utilities from . import outputs __all__ = [ 'GetIncidentRelationResult', 'AwaitableGetIncidentRelationResult', 'get_incident_relation', ] @pulumi.output_type class GetIncidentRelationResult: """ Represents a relation between two resources """ def __init__(__self__, etag=None, id=None, name=None, related_resource_id=None, related_resource_kind=None, related_resource_name=None, related_resource_type=None, system_data=None, type=None): if etag and not isinstance(etag, str): raise TypeError("Expected argument 'etag' to be a str") pulumi.set(__self__, "etag", etag) if id and not isinstance(id, str): raise TypeError("Expected argument 'id' to be a str") pulumi.set(__self__, "id", id) if name and not isinstance(name, str): raise TypeError("Expected argument 'name' to be a str") pulumi.set(__self__, "name", name) if related_resource_id and not isinstance(related_resource_id, str): raise TypeError("Expected argument 'related_resource_id' to be a str") pulumi.set(__self__, "related_resource_id", related_resource_id) if related_resource_kind and not isinstance(related_resource_kind, str): raise TypeError("Expected argument 'related_resource_kind' to be a str") pulumi.set(__self__, "related_resource_kind", related_resource_kind) if related_resource_name and not isinstance(related_resource_name, str): raise TypeError("Expected argument 'related_resource_name' to be a str") pulumi.set(__self__, "related_resource_name", related_resource_name) if related_resource_type and not isinstance(related_resource_type, str): raise TypeError("Expected argument 'related_resource_type' to be a str") pulumi.set(__self__, "related_resource_type", related_resource_type) if system_data and not isinstance(system_data, dict): raise TypeError("Expected argument 'system_data' to be a dict") pulumi.set(__self__, "system_data", system_data) if type and not isinstance(type, str): raise TypeError("Expected argument 'type' to be a str") pulumi.set(__self__, "type", type) @property @pulumi.getter def etag(self) -> Optional[str]: """ Etag of the azure resource """ return pulumi.get(self, "etag") @property @pulumi.getter def id(self) -> str: """ Azure resource Id """ return pulumi.get(self, "id") @property @pulumi.getter def name(self) -> str: """ Azure resource name """ return pulumi.get(self, "name") @property @pulumi.getter(name="relatedResourceId") def related_resource_id(self) -> str: """ The resource ID of the related resource """ return pulumi.get(self, "related_resource_id") @property @pulumi.getter(name="relatedResourceKind") def related_resource_kind(self) -> str: """ The resource kind of the related resource """ return pulumi.get(self, "related_resource_kind") @property @pulumi.getter(name="relatedResourceName") def related_resource_name(self) -> str: """ The name of the related resource """ return pulumi.get(self, "related_resource_name") @property @pulumi.getter(name="relatedResourceType") def related_resource_type(self) -> str: """ The resource type of the related resource """ return pulumi.get(self, "related_resource_type") @property @pulumi.getter(name="systemData") def system_data(self) -> 'outputs.SystemDataResponse': """ Azure Resource Manager metadata containing createdBy and modifiedBy information. """ return pulumi.get(self, "system_data") @property @pulumi.getter def type(self) -> str: """ Azure resource type """ return pulumi.get(self, "type") class AwaitableGetIncidentRelationResult(GetIncidentRelationResult): # pylint: disable=using-constant-test def __await__(self): if False: yield self return GetIncidentRelationResult( etag=self.etag, id=self.id, name=self.name, related_resource_id=self.related_resource_id, related_resource_kind=self.related_resource_kind, related_resource_name=self.related_resource_name, related_resource_type=self.related_resource_type, system_data=self.system_data, type=self.type) def get_incident_relation(incident_id: Optional[str] = None, operational_insights_resource_provider: Optional[str] = None, relation_name: Optional[str] = None, resource_group_name: Optional[str] = None, workspace_name: Optional[str] = None, opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetIncidentRelationResult: """ Represents a relation between two resources :param str incident_id: Incident ID :param str operational_insights_resource_provider: The namespace of workspaces resource provider- Microsoft.OperationalInsights. :param str relation_name: Relation Name :param str resource_group_name: The name of the resource group. The name is case insensitive. :param str workspace_name: The name of the workspace. """ __args__ = dict() __args__['incidentId'] = incident_id __args__['operationalInsightsResourceProvider'] = operational_insights_resource_provider __args__['relationName'] = relation_name __args__['resourceGroupName'] = resource_group_name __args__['workspaceName'] = workspace_name if opts is None: opts = pulumi.InvokeOptions() if opts.version is None: opts.version = _utilities.get_version() __ret__ = pulumi.runtime.invoke('azure-native:securityinsights/v20210301preview:getIncidentRelation', __args__, opts=opts, typ=GetIncidentRelationResult).value return AwaitableGetIncidentRelationResult( etag=__ret__.etag, id=__ret__.id, name=__ret__.name, related_resource_id=__ret__.related_resource_id, related_resource_kind=__ret__.related_resource_kind, related_resource_name=__ret__.related_resource_name, related_resource_type=__ret__.related_resource_type, system_data=__ret__.system_data, type=__ret__.type)
38.483333
197
0.670564
8b51637a8cb5a75c5fbb87193caff0f623f202e6
3,165
py
Python
ginga/util/wcsmod/__init__.py
finagle29/ginga
161952a4016d3f014003db3d09dd78c61be85cb7
[ "BSD-3-Clause" ]
null
null
null
ginga/util/wcsmod/__init__.py
finagle29/ginga
161952a4016d3f014003db3d09dd78c61be85cb7
[ "BSD-3-Clause" ]
null
null
null
ginga/util/wcsmod/__init__.py
finagle29/ginga
161952a4016d3f014003db3d09dd78c61be85cb7
[ "BSD-3-Clause" ]
null
null
null
# # wcsmod -- module wrapper for WCS calculations. # # This is open-source software licensed under a BSD license. # Please see the file LICENSE.txt for details. # """ We are fortunate to have several possible choices for a python WCS package compatible with Ginga: astlib, kapteyn, starlink and astropy. kapteyn and astropy wrap Mark Calabretta's "WCSLIB", astLib wraps Jessica Mink's "wcstools", and I'm not sure what starlink uses (their own?). Note that astlib requires pyfits (or astropy) in order to create a WCS object from a FITS header. To force the use of one, do: .. code-block:: python from ginga.util import wcsmod wcsmod.use('kapteyn') before you load any images. Otherwise Ginga will try to pick one for you. Note that you can register custom WCS types using: .. code-block:: python from ginga.util.wcsmod.common import register_wcs register_wcs('mywcs', MyWCSClass, list_of_coord_types) Look at the implemented WCS wrappers for details. """ import sys import os.path import glob from ginga.misc.ModuleManager import my_import from . import common __all__ = ['get_wcs_class'] # Module variables that get configured at module load time # or when use() is called wcs_configured = False WCS = None """Alias to the chosen WCS system.""" # Holds names of coordinate types coord_types = [] display_types = ['sexagesimal', 'degrees'] # try to load them in this order until we find one that works. # If none can be loaded, we default to the BareBones dummy WCS wcs_try_order = ('astropy', 'astropy_ape14', 'kapteyn', 'starlink', 'astlib', 'barebones') wcs_home = os.path.split(sys.modules[__name__].__file__)[0] def use(wcspkg, raise_err=True): """Choose WCS package.""" global coord_types, wcs_configured, WCS if wcspkg not in common.custom_wcs: # Try to dynamically load WCS modname = 'wcs_%s' % (wcspkg) path = os.path.join(wcs_home, '%s.py' % (modname)) try: my_import(modname, path) except ImportError as e: if raise_err: raise e return False if wcspkg in common.custom_wcs: bnch = common.custom_wcs[wcspkg] WCS = bnch.wrapper_class coord_types = bnch.coord_types wcs_configured = True return True return False # configure at least one WCS wrapper if not wcs_configured: # Try some preconfigured names for name in wcs_try_order: if use(name, raise_err=False): break if not wcs_configured: wcs_path = os.path.join(wcs_home, 'wcs_*.py') # look up WCS wrappers we have in this directory for path in glob.glob(wcs_path): dirname, filename = os.path.split(path) modname, ext = os.path.splitext(filename) modname = modname[4:] # strip off "wcs_" if use(name, raise_err=False): break def get_wcs_wrappers(): return list(common.custom_wcs.keys()) def get_wcs_class(name): """Get a WCS class corresponding to the registered name. Will raise a KeyError if a class of the given name does not exist. """ return common.custom_wcs[name] # END
26.157025
77
0.685308
74ec1cf50568e21a728f034a4769adc74510092d
1,459
py
Python
TimeSeries/sarima.py
lauramurphy12/MachineLearningProjects
c6ea2c2644815de480c72728dd2e0b6a380be2ea
[ "CC0-1.0" ]
null
null
null
TimeSeries/sarima.py
lauramurphy12/MachineLearningProjects
c6ea2c2644815de480c72728dd2e0b6a380be2ea
[ "CC0-1.0" ]
null
null
null
TimeSeries/sarima.py
lauramurphy12/MachineLearningProjects
c6ea2c2644815de480c72728dd2e0b6a380be2ea
[ "CC0-1.0" ]
null
null
null
import itertools from statsmodels.tsa.statespace.sarimax import SARIMAX import pandas as pd import forecasting import warnings import numpy as np from sklearn.metrics import mean_squared_error, mean_absolute_error from math import sqrt def sarima_model(train, test, trend_order, seasonal_order, forecast_period): model = SARIMAX(train, order=trend_order, seasonal_order=seasonal_order) model_fit = model.fit() yhat = model_fit.forecast(forecast_period) return yhat, model_fit.summary() # Walk Forward Validation with expanding window approach. Model is fit with training data with initial starting size. Test set is the next time step in the sequence. A one-step forecast is made. # In each iteration the test value of the previous iteration is added to the training set. def sarimaWalkForwardVal(series, window_size, trend_order, seasonal_order, forecast_period): forecasted_values = list() seriesLen = len(series) for i in range(window_size, seriesLen): # Split data into train and test. train, test = series[0:i],series[i:i+1] # fit sarima model with current SARIMA configuration and forecast 1 time step ahead yhat, model = sarima_model(train, test, trend_order, seasonal_order, forecast_period) forecasted_values.append(yhat[0]) test = series[window_size:seriesLen] mape = np.mean(np.abs(forecasted_values - test)/np.abs(test)) rmse = sqrt(mean_squared_error(test, forecasted_values)) return forecasted_values, mape, rmse
42.911765
196
0.793009
0284e99cf49e7c16b07e773ffd6af23feeedcc77
1,430
py
Python
streams/transform_data.py
BogdanFloris/detecting-and-addressing-change
b11082ebd0fc421eca31c5ba82ddb52446fa56f5
[ "MIT" ]
2
2020-01-24T15:50:47.000Z
2021-04-16T21:21:25.000Z
streams/transform_data.py
BogdanFloris/detecting-and-addressing-change
b11082ebd0fc421eca31c5ba82ddb52446fa56f5
[ "MIT" ]
null
null
null
streams/transform_data.py
BogdanFloris/detecting-and-addressing-change
b11082ebd0fc421eca31c5ba82ddb52446fa56f5
[ "MIT" ]
null
null
null
""" Transforms a dataset using a transformer and saves it """ import os import torch from pathlib import Path from tqdm import tqdm from streams.loaders import load_wos from constants.transformers import TransformerModel, Transformer SAVE_DIR = os.path.join(Path(__file__).parents[1], "assets/datasets") def transform_wos(version=1, transformer_model=TransformerModel.BERT, hidden_state=0): """ Transformers the given version of the Web of Science dataset using the given transformer model and saves it as a tuple (x, y, no_classes). Args: version (int): the WOS version transformer_model (TransformerModel): the transformer model to use hidden_state (int): which hidden state to get from the transformer """ print("Transforming dataset...") transformer = Transformer(transformer_model) x, y, no_classes = load_wos(version) transformed_x = [] for i in tqdm(range(len(x))): transformed_x.append(transformer.transform(x[i], hidden_state)) print("Saving dataset...") f = open( os.path.join( SAVE_DIR, "wos_v_{}_transformed_{}_hidden_{}.pt".format( version, transformer_model.name, hidden_state ), ), "wb", ) torch.save((transformed_x, y, no_classes), f) f.close() if __name__ == "__main__": transform_wos(transformer_model=TransformerModel.DISTILBERT)
29.183673
86
0.681119
c79a6bcea0d5b63123fa418bf0c7c0d279f8de7e
897
py
Python
Live/main.py
Pawel095/PJ_Pygame_Prezentacja
f6ace78c2df504a262eac6b1ae46d458939dd0c0
[ "MIT" ]
null
null
null
Live/main.py
Pawel095/PJ_Pygame_Prezentacja
f6ace78c2df504a262eac6b1ae46d458939dd0c0
[ "MIT" ]
null
null
null
Live/main.py
Pawel095/PJ_Pygame_Prezentacja
f6ace78c2df504a262eac6b1ae46d458939dd0c0
[ "MIT" ]
null
null
null
import pygame import global_vars import events import loader import sprites.enemy from sprites.Player import Player from sprites.enemy import Controller import sprites.bullet as bullets from sprites.background import Background pygame.init() loader.load() pygame.display.set_mode(global_vars.SCREEN_SIZE) pygame.display.set_caption("Hell Of Bullets") player = Player() controller = Controller() clk = pygame.time.Clock() bg = Background() WHITE = (255,255,255) running=True while running: deltaT = clk.tick(60)/1000 events.process_events() if events.QUIT: running = False # Fizyka player.update(deltaT) controller.update(deltaT) bullets.update(deltaT) bg.update(deltaT) # RENDER srf = pygame.display.get_surface() srf.fill((0,0,0)) player.draw() controller.draw() bullets.draw() bg.draw() pygame.display.update()
17.94
48
0.714604
3dbd1501558382b66d980fa06d53e2a6b2e20175
1,864
py
Python
sovrin/test/upgrade/test_pool_upgrade_lower_version.py
sovrin-foundation/old-sovrin
d4e705054b7252c62fea00114060035c6eb314a4
[ "Apache-2.0" ]
3
2017-07-19T14:26:31.000Z
2020-05-16T16:09:37.000Z
sovrin/test/upgrade/test_pool_upgrade_lower_version.py
sovrin-foundation/old-sovrin
d4e705054b7252c62fea00114060035c6eb314a4
[ "Apache-2.0" ]
null
null
null
sovrin/test/upgrade/test_pool_upgrade_lower_version.py
sovrin-foundation/old-sovrin
d4e705054b7252c62fea00114060035c6eb314a4
[ "Apache-2.0" ]
3
2017-10-28T08:19:00.000Z
2021-06-06T10:48:55.000Z
from copy import deepcopy import pytest from plenum.common.eventually import eventually from plenum.common.txn import VERSION, NAME from plenum.common.util import randomString from sovrin.common.txn import SHA256, ACTION, CANCEL from sovrin.test.upgrade.helper import bumpVersion, checkUpgradeScheduled, \ ensureUpgradeSent def testDoNotScheduleUpgradeForALowerVersion(looper, tconf, nodeSet, validUpgrade, trustee, trusteeWallet): """ A node starts at version 1.2 running has scheduled upgrade for version 1.5 but get a txn for upgrade 1.4, it will not schedule it. To upgrade to 1.4, send cancel for 1.5 """ upgr1 = deepcopy(validUpgrade) upgr2 = deepcopy(upgr1) upgr2[VERSION] = bumpVersion(upgr1[VERSION]) upgr2[NAME] += randomString(3) upgr2[SHA256] = randomString(32) # An upgrade for higher version scheduled, it should pass ensureUpgradeSent(looper, trustee, trusteeWallet, upgr2) looper.run(eventually(checkUpgradeScheduled, nodeSet, upgr2[VERSION], retryWait=1, timeout=5)) # An upgrade for lower version scheduled, the transaction should pass but # the upgrade should not be scheduled ensureUpgradeSent(looper, trustee, trusteeWallet, upgr1) with pytest.raises(AssertionError): looper.run(eventually(checkUpgradeScheduled, nodeSet, upgr1[VERSION], retryWait=1, timeout=5)) # Cancel the upgrade with higher version upgr3 = deepcopy(upgr2) upgr3[ACTION] = CANCEL ensureUpgradeSent(looper, trustee, trusteeWallet, upgr3) # Now the upgrade for lower version should be scheduled looper.run(eventually(checkUpgradeScheduled, nodeSet, upgr1[VERSION], retryWait=1, timeout=5))
39.659574
78
0.684549
e47968452cbbbe2ff2138411716de565c75d2d32
138
py
Python
accounts/urls.py
haTrang061299/blog_project
5afc17b97c43aa300280dd97106562bf58b60e58
[ "MIT" ]
null
null
null
accounts/urls.py
haTrang061299/blog_project
5afc17b97c43aa300280dd97106562bf58b60e58
[ "MIT" ]
null
null
null
accounts/urls.py
haTrang061299/blog_project
5afc17b97c43aa300280dd97106562bf58b60e58
[ "MIT" ]
null
null
null
from django.urls import path from .views import SignUpView urlpatterns = [ path('signup/', SignUpView.as_view(), name='signup'), ]
15.333333
57
0.702899
9a78dffd0818d53bb16bb0d715c9ed860b41d225
2,498
py
Python
pfl/core/client.py
huyifan233/PFL
136bdaea6e62ff4ff0f585bf9b061598806ce1b8
[ "Apache-2.0" ]
1
2022-03-30T07:22:14.000Z
2022-03-30T07:22:14.000Z
pfl/core/client.py
wuchaozju/PFL
39d6d24088714cd38ca8007ede0dfc98a48955ad
[ "Apache-2.0" ]
null
null
null
pfl/core/client.py
wuchaozju/PFL
39d6d24088714cd38ca8007ede0dfc98a48955ad
[ "Apache-2.0" ]
null
null
null
# Copyright (c) 2019 GalaxyLearning Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License" # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os import importlib from pfl.utils.utils import JobUtils from pfl.entity.model import Model JOB_PATH = os.path.join(os.path.abspath("."), "res", "jobs_client") BASE_MODEL_PATH = os.path.join(os.path.abspath("."), "res", "models") class FLClient(object): def __init__(self): super(FLClient, self).__init__() self.job_path = JOB_PATH self.base_model_path = BASE_MODEL_PATH def get_remote_pfl_models(self, server_url=None): if server_url is None: return self._get_models_from_local() else: return self._get_models_from_remote(server_url) def _get_models_from_local(self): model_list = [] JobUtils.get_job_from_remote(None, self.job_path) job_list = JobUtils.list_all_jobs(self.job_path) for job in job_list: model = self._get_model_from_job(job) pfl_model = Model() pfl_model.set_model(model) pfl_model.set_job_id(job.get_job_id()) model_list.append(pfl_model) return model_list def _get_models_from_remote(self, server_url): model_list = [] JobUtils.get_job_from_remote(server_url, self.job_path) job_list = JobUtils.list_all_jobs(self.job_path) for job in job_list: model = self._get_model_from_job(job) pfl_model = Model() pfl_model.set_model(model) pfl_model.set_job_id(job.get_job_id()) model_list.append(pfl_model) return model_list def _get_model_from_job(self, job): job_id = job.get_job_id() module = importlib.import_module("res.models.models_{}.init_model_{}".format(job_id, job_id), "init_model_{}".format(job_id)) model_class = getattr(module, job.get_train_model_class_name()) return model_class()
34.219178
101
0.67494
5ec201bc901122c29ef9cda8bb077625050297ce
1,357
py
Python
stage_check/stage_check/OutputLogs.py
128technology/stage_check
2c9cdc491bafbcc6ed1a308093fe606dfd37da67
[ "MIT" ]
2
2020-05-26T15:13:47.000Z
2021-04-29T18:14:21.000Z
stage_check/stage_check/OutputLogs.py
128technology/stage_check
2c9cdc491bafbcc6ed1a308093fe606dfd37da67
[ "MIT" ]
null
null
null
stage_check/stage_check/OutputLogs.py
128technology/stage_check
2c9cdc491bafbcc6ed1a308093fe606dfd37da67
[ "MIT" ]
null
null
null
""" """ try: from stage_check import Output except ImportError: import Output class Base(Output.Base): def __init__(self): super().__init__() self.__full_name = 'OutputLogs.Base' self.status = Output.Status.OK def proc_pattern_matched(self, params, pattern): try: config = params["patterns"][pattern["pindex"]] for key in config: if key not in pattern: pattern[key] = config[key] except KeyError: pass try: threshold = pattern["threshold"] if int(pattern["matches"]) > threshold: self.status = Output.Status.FAIL self.amend_pattern_matched( params, pattern ) except (KeyError, ValueError) as e: self.status = Output.Status.FAIL return self.status def amend_pattern_matched( self, params, pattern ): return True """ amend_test_result """ def proc_test_result( self, params, stats ): self.amend_test_result( params, stats ) return self.status def amend_test_result( self, params, stats ): return True
20.253731
56
0.506264
8b7c1067a6be9679c356aa2e1505886751f2b875
7,079
py
Python
research/cv/CascadeRCNN/src/CascadeRcnn/roi_align_1.py
leelige/mindspore
5199e05ba3888963473f2b07da3f7bca5b9ef6dc
[ "Apache-2.0" ]
77
2021-10-15T08:32:37.000Z
2022-03-30T13:09:11.000Z
research/cv/CascadeRCNN/src/CascadeRcnn/roi_align_1.py
leelige/mindspore
5199e05ba3888963473f2b07da3f7bca5b9ef6dc
[ "Apache-2.0" ]
3
2021-10-30T14:44:57.000Z
2022-02-14T06:57:57.000Z
research/cv/CascadeRCNN/src/CascadeRcnn/roi_align_1.py
leelige/mindspore
5199e05ba3888963473f2b07da3f7bca5b9ef6dc
[ "Apache-2.0" ]
24
2021-10-15T08:32:45.000Z
2022-03-24T18:45:20.000Z
# Copyright 2021 Huawei Technologies Co., Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================ """CascadeRcnn ROIAlign module.""" import numpy as np import mindspore.nn as nn import mindspore.common.dtype as mstype from mindspore.ops import operations as P from mindspore.ops import composite as C from mindspore.nn import layer as L from mindspore.common.tensor import Tensor class ROIAlign(nn.Cell): """ Extract RoI features from multiple feature map. Args: out_size_h (int) - RoI height. out_size_w (int) - RoI width. spatial_scale (int) - RoI spatial scale. sample_num (int) - RoI sample number. """ def __init__(self, out_size_h, out_size_w, spatial_scale, sample_num=0): super(ROIAlign, self).__init__() self.out_size = (out_size_h, out_size_w) self.spatial_scale = float(spatial_scale) self.sample_num = int(sample_num) self.align_op = P.ROIAlign(self.out_size[0], self.out_size[1], self.spatial_scale, self.sample_num) def construct(self, features, rois): return self.align_op(features, rois) def __repr__(self): format_str = self.__class__.__name__ format_str += '(out_size={}, spatial_scale={}, sample_num={}'.format( self.out_size, self.spatial_scale, self.sample_num) return format_str class SingleRoIExtractor_1(nn.Cell): """ Extract RoI features from a single level feature map. If there are multiple input feature levels, each RoI is mapped to a level according to its scale. Args: config (dict): Config roi_layer (dict): Specify RoI layer type and arguments. out_channels (int): Output channels of RoI layers. featmap_strides (int): Strides of input feature maps. batch_size (int): Batchsize. finest_scale (int): Scale threshold of mapping to level 0. """ def __init__(self, config, roi_layer, out_channels, featmap_strides, batch_size=1, finest_scale=56): super(SingleRoIExtractor_1, self).__init__() cfg = config self.train_batch_size = batch_size self.out_channels = out_channels self.featmap_strides = featmap_strides self.num_levels = len(self.featmap_strides) self.out_size = roi_layer['out_size'] self.sample_num = roi_layer['sample_num'] self.roi_layers = self.build_roi_layers(self.featmap_strides) self.roi_layers = L.CellList(self.roi_layers) self.sqrt = P.Sqrt() self.log = P.Log() self.finest_scale_ = finest_scale self.clamp = C.clip_by_value self.cast = P.Cast() self.equal = P.Equal() self.select = P.Select() _mode_16 = False self.dtype = np.float16 if _mode_16 else np.float32 self.ms_dtype = mstype.float16 if _mode_16 else mstype.float32 self.set_train_local(cfg, training=True) def set_train_local(self, config, training=True): """Set training flag.""" self.training_local = training cfg = config # Init tensor self.batch_size = cfg.roi_sample_num if self.training_local else cfg.rpn_max_num self.batch_size = self.train_batch_size*self.batch_size \ if self.training_local else cfg.test_batch_size*self.batch_size self.ones = Tensor(np.array(np.ones((self.batch_size, 1)), dtype=self.dtype)) finest_scale = np.array(np.ones((self.batch_size, 1)), dtype=self.dtype) * self.finest_scale_ self.finest_scale = Tensor(finest_scale) self.epslion = Tensor(np.array(np.ones((self.batch_size, 1)), dtype=self.dtype)*self.dtype(1e-6)) self.zeros = Tensor(np.array(np.zeros((self.batch_size, 1)), dtype=np.int32)) self.max_levels = Tensor(np.array(np.ones((self.batch_size, 1)), dtype=np.int32)*(self.num_levels-1)) self.twos = Tensor(np.array(np.ones((self.batch_size, 1)), dtype=self.dtype) * 2) self.res_ = Tensor(np.array(np.zeros((self.batch_size, self.out_channels, self.out_size, self.out_size)), dtype=self.dtype)) def num_inputs(self): return len(self.featmap_strides) def init_weights(self): pass def log2(self, value): return self.log(value) / self.log(self.twos) def build_roi_layers(self, featmap_strides): roi_layers = [] for s in featmap_strides: layer_cls = ROIAlign(self.out_size, self.out_size, spatial_scale=1 / s, sample_num=self.sample_num) roi_layers.append(layer_cls) return roi_layers def _c_map_roi_levels(self, rois): """Map rois to corresponding feature levels by scales. - scale < finest_scale * 2: level 0 - finest_scale * 2 <= scale < finest_scale * 4: level 1 - finest_scale * 4 <= scale < finest_scale * 8: level 2 - scale >= finest_scale * 8: level 3 Args: rois (Tensor): Input RoIs, shape (k, 5). num_levels (int): Total level number. Returns: Tensor: Level index (0-based) of each RoI, shape (k, ) """ scale = self.sqrt(rois[::, 3:4:1] - rois[::, 1:2:1] + self.ones) * \ self.sqrt(rois[::, 4:5:1] - rois[::, 2:3:1] + self.ones) target_lvls = self.log2(scale / self.finest_scale + self.epslion) target_lvls = P.Floor()(target_lvls) target_lvls = self.cast(target_lvls, mstype.int32) target_lvls = self.clamp(target_lvls, self.zeros, self.max_levels) return target_lvls def construct(self, rois, feat1, feat2, feat3, feat4): "SingleRoIExtractor_1" feats = (feat1, feat2, feat3, feat4) res = self.res_ target_lvls = self._c_map_roi_levels(rois) for i in range(self.num_levels): mask = self.equal(target_lvls, P.ScalarToArray()(i)) mask = P.Reshape()(mask, (-1, 1, 1, 1)) roi_feats_t = self.roi_layers[i](feats[i], rois) mask = self.cast(P.Tile()(self.cast(mask, mstype.int32),\ (1, 256, self.out_size, self.out_size)), mstype.bool_) res = self.select(mask, roi_feats_t, res) return res
39.110497
109
0.617178
cfc1359a4ea2cc557cc1bb339ed87a6b8d1bc820
2,547
py
Python
Utilities/ReleaseScripts/python/commentSkipper/cppCommentSkipper.py
nistefan/cmssw
ea13af97f7f2117a4f590a5e654e06ecd9825a5b
[ "Apache-2.0" ]
1
2019-03-09T19:47:49.000Z
2019-03-09T19:47:49.000Z
Utilities/ReleaseScripts/python/commentSkipper/cppCommentSkipper.py
nistefan/cmssw
ea13af97f7f2117a4f590a5e654e06ecd9825a5b
[ "Apache-2.0" ]
null
null
null
Utilities/ReleaseScripts/python/commentSkipper/cppCommentSkipper.py
nistefan/cmssw
ea13af97f7f2117a4f590a5e654e06ecd9825a5b
[ "Apache-2.0" ]
1
2019-04-03T19:23:27.000Z
2019-04-03T19:23:27.000Z
__author__="Aurelija" __date__ ="$2010-07-13 12.17.20$" import string def filterFiles(fileList): files = [] for file in fileList: files.append((file, filterFile(file))) return files def filterFile(file): #ifstream& input) lines = open(file).readlines() commentStage = False for i in range(len(lines)): #for j in range(len(lines[i])): j = 0 while lines[i][j] != '\n': char = lines[i][j] #char / if char == '/': #comment /* if lines[i][j+1] == '*' and not commentStage: #why !commentStage? because it could be /*...../*.....*/ commentStage = True commentStartLine, commentStartColumn = i, j j += 1 #comment // why !commentStage? because, can be a variant of this example: /*....//.....*/ elif not commentStage and (lines[i][j+1] == '/'): lines[i] = string.replace(lines[i], lines[i][j:],'\n', 1) break #char " elif char == '"': if not commentStage: next = string.find(lines[i][j+1:], '"') #next " lines[i] = string.replace(lines[i], lines[i][j:j+next+2], '', 1) # clear string in "" #char ' elif char == '\'': if not commentStage: next = string.find(lines[i][j+1:], '\'') #next ' lines[i] = string.replace(lines[i], lines[i][j:j+next+2], '', 1) # clear string in '' #char * elif char == '*': if (commentStage and (lines[i][j+1] == '/')): commentStage = False; if commentStartLine != i: lines[i] = string.replace(lines[i], lines[i][:j+2],'', 1) # comment */ [..code] j = -1 #because of j+=1 at the end else: lines[i] = string.replace(lines[i], lines[i][commentStartColumn:j+2], '', 1) # [code..] /*comment*/ [.. code] j = commentStartColumn - 1 #because of j+=1 at the ends if j != len(lines[i]) - 1: j += 1 else: j = 0 break if commentStage: if i == commentStartLine: lines[i] = lines[i].replace(lines[i][commentStartColumn:],'\n', 1) else: lines[i] = lines[i].replace(lines[i][:], '\n') return lines
39.796875
133
0.444837
1da5366997b5b05f8fb23296f4b0f72da44934e6
40
py
Python
simple/management/commands/parse_government_bill_pdf/__init__.py
navotsil/Open-Knesset
d6cc6457f87e67a3dbeaec9c1ccbc8d8b7c60c04
[ "BSD-3-Clause" ]
7
2015-03-05T11:14:23.000Z
2017-02-11T18:06:25.000Z
simple/management/commands/parse_government_bill_pdf/__init__.py
navotsil/Open-Knesset
d6cc6457f87e67a3dbeaec9c1ccbc8d8b7c60c04
[ "BSD-3-Clause" ]
7
2020-02-12T01:09:15.000Z
2022-03-11T23:25:12.000Z
simple/management/commands/parse_government_bill_pdf/__init__.py
navotsil/Open-Knesset
d6cc6457f87e67a3dbeaec9c1ccbc8d8b7c60c04
[ "BSD-3-Clause" ]
11
2015-02-21T09:45:06.000Z
2021-05-05T06:01:24.000Z
from parse_government_bill_pdf import *
20
39
0.875
8f62d0a066663cb66be97dd4ed4dda3b7ee31a0f
1,986
py
Python
info_state.py
ProgrammingIncluded/PyAN
b5628891c2f0f7b4deb97d92c7b6ab1163a13b54
[ "MIT" ]
null
null
null
info_state.py
ProgrammingIncluded/PyAN
b5628891c2f0f7b4deb97d92c7b6ab1163a13b54
[ "MIT" ]
null
null
null
info_state.py
ProgrammingIncluded/PyAN
b5628891c2f0f7b4deb97d92c7b6ab1163a13b54
[ "MIT" ]
null
null
null
############################################ # Project: PyAN # File: info_state.py # By: ProgrammingIncluded # Website: ProgrammingIncluded.com # Desc: File to hold info state that # displays song information. ############################################ import chat_state as cs import connect as cnt import command as cmd from datetime import datetime INFO = {} LAST_FETCH = datetime.now() LAST_PRINT = datetime.now() PREV_PERC = 0.0 # Call function to setup state. def set_state(): # Call first to get info. update_state() def update_state(): # Prepare the info state by getting necessary info. # For now do a simple grab from website. Later figure out smart way of doing things. global LAST_FETCH global INFO delta = datetime.now() - LAST_FETCH if "nowPlayingSong" not in INFO or float(INFO["timeLeft"]) <= delta.total_seconds(): # Use manual sending because we only want to get info when we need it. INFO = cnt.send_get("now-playing") LAST_FETCH = datetime.now() cmd.CALLED = True # Call function to draw def display_state(): global LAST_PRINT # We need to check CALLED because other states may have drawn if cmd.CALLED or ((datetime.now() - LAST_PRINT).total_seconds() > 1): cur = INFO["nowPlayingSong"] print_song_data(cur) delta = datetime.now() - LAST_FETCH perc = 100.0 - ((float(INFO["timeLeft"]) - delta.total_seconds()) * 100.0 / float(cur["totalseconds"])) if perc > 100.0: perc = 100.0 elif perc < 0.0: perc = 0.0 cmd.print_buf("Percent: " + str(int(perc)) + "%\n\n") LAST_PRINT = datetime.now() def print_song_data(song_info): res = "Title: " + str(song_info["title"]) + "\n" res += "Album: " + str(song_info["album"]) + "\n" res += "Artist: " + str(song_info["artist"]) + "\n" res += "Comp: " + str(song_info["composers"]) + "\n" cmd.print_buf(res)
29.205882
111
0.602216
042d003827bdef5764e71d1de38b4638eedfd623
9,202
py
Python
src/einsteinpy/integrators/fantasy.py
iamhardikat11/einsteinpy
7bf0ca0020b273e616b6e7c19aed7a5e13925444
[ "MIT" ]
485
2019-02-04T09:15:22.000Z
2022-03-19T13:50:17.000Z
src/einsteinpy/integrators/fantasy.py
iamhardikat11/einsteinpy
7bf0ca0020b273e616b6e7c19aed7a5e13925444
[ "MIT" ]
570
2019-02-02T10:57:27.000Z
2022-02-26T16:37:05.000Z
src/einsteinpy/integrators/fantasy.py
iamhardikat11/einsteinpy
7bf0ca0020b273e616b6e7c19aed7a5e13925444
[ "MIT" ]
250
2019-01-30T14:14:14.000Z
2022-02-28T21:18:18.000Z
import warnings import numpy as np from .utils import _Z, _flow_A, _flow_B, _flow_mixed class GeodesicIntegrator: """ Geodesic Integrator, based on [1]_. This module uses Forward Mode Automatic Differentiation to calculate metric derivatives to machine precision leading to stable simulations. References ---------- .. [1] Christian, Pierre and Chan, Chi-Kwan; "FANTASY: User-Friendly Symplectic Geodesic Integrator for Arbitrary Metrics with Automatic Differentiation"; `2021 ApJ 909 67 <https://doi.org/10.3847/1538-4357/abdc28>`__ """ # TODO: Update arXiv attributions to ApJ (See #572) def __init__( self, metric, metric_params, q0, p0, time_like=True, steps=100, delta=0.5, rtol=1e-2, atol=1e-2, order=2, omega=1.0, suppress_warnings=False, ): """ Constructor Parameters ---------- metric : callable Metric Function. Currently, these metrics are supported: 1. Schwarzschild 2. Kerr 3. KerrNewman metric_params : array_like Tuple of parameters to pass to the metric E.g., ``(a,)`` for Kerr q0 : array_like Initial 4-Position p0 : array_like Initial 4-Momentum time_like : bool, optional Determines type of Geodesic ``True`` for Time-like geodesics ``False`` for Null-like geodesics Defaults to ``True`` steps : int Number of integration steps Defaults to ``50`` delta : float Initial integration step-size Defaults to ``0.5`` rtol : float Relative Tolerance Defaults to ``1e-2`` atol : float Absolute Tolerance Defaults to ``1e-2`` order : int Integration Order Defaults to ``2`` omega : float Coupling between Hamiltonian Flows Smaller values imply smaller integration error, but too small values can make the equation of motion non-integrable. For non-capture trajectories, ``omega = 1.0`` is recommended. For trajectories, that either lead to a capture or a grazing geodesic, a decreased value of ``0.01`` or less is recommended. Defaults to ``1.0`` suppress_warnings : bool Whether to suppress warnings during simulation Warnings are shown for every step, where numerical errors exceed specified tolerance (controlled by ``rtol`` and ``atol``) Defaults to ``False`` Raises ------ NotImplementedError If ``order`` is not in [2, 4, 6, 8] """ ORDERS = { 2: self._ord_2, 4: self._ord_4, 6: self._ord_6, 8: self._ord_8, } self.metric = metric self.metric_params = metric_params self.q0 = q0 self.p0 = p0 self.time_like = time_like self.steps = steps self.delta = delta self.omega = omega if order not in ORDERS: raise NotImplementedError( f"Order {order} integrator has not been implemented." ) self.order = order self.integrator = ORDERS[order] self.rtol = rtol self.atol = atol self.suppress_warnings = suppress_warnings self.step_num = 0 self.res_list = [q0, p0, q0, p0] self.results = list() def __str__(self): return f"""{self.__class__.__name__}(\n\ metric : {self.metric}\n\ metric_params : {self.metric_params}\n\ q0 : {self.q0},\n\ p0 : {self.p0},\n\ time_like : {self.time_like},\n\ steps : {self.steps},\n\ delta : {self.delta},\n\ omega : {self.omega},\n\ order : {self.order},\n\ rtol : {self.rtol},\n\ atol : {self.atol}\n\ suppress_warnings : {self.suppress_warnings} )""" def __repr__(self): return self.__str__() def _ord_2(self, q1, p1, q2, p2, delta): """ Order 2 Integration Scheme References ---------- .. [1] Christian, Pierre and Chan, Chi-Kwan; "FANTASY : User-Friendly Symplectic Geodesic Integrator for Arbitrary Metrics with Automatic Differentiation"; `2021 ApJ 909 67 <https://doi.org/10.3847/1538-4357/abdc28>`__ """ dl, omg = delta, self.omega g = self.metric g_prms = self.metric_params HA1 = np.array( [ q1, _flow_A(g, g_prms, q1, p1, q2, p2, 0.5 * dl)[1], _flow_A(g, g_prms, q1, p1, q2, p2, 0.5 * dl)[0], p2, ] ) HB1 = np.array( [ _flow_B(g, g_prms, HA1[0], HA1[1], HA1[2], HA1[3], 0.5 * dl)[0], HA1[1], HA1[2], _flow_B(g, g_prms, HA1[0], HA1[1], HA1[2], HA1[3], 0.5 * dl)[1], ] ) HC = _flow_mixed(HB1[0], HB1[1], HB1[2], HB1[3], dl, omg) HB2 = np.array( [ _flow_B(g, g_prms, HC[0], HC[1], HC[2], HC[3], 0.5 * dl)[0], HC[1], HC[2], _flow_B(g, g_prms, HC[0], HC[1], HC[2], HC[3], 0.5 * dl)[1], ] ) HA2 = np.array( [ HB2[0], _flow_A(g, g_prms, HB2[0], HB2[1], HB2[2], HB2[3], 0.5 * dl)[1], _flow_A(g, g_prms, HB2[0], HB2[1], HB2[2], HB2[3], 0.5 * dl)[0], HB2[3], ] ) return HA2 def _ord_4(self, q1, p1, q2, p2, delta): """ Order 4 Integration Scheme References ---------- .. [1] Yoshida, Haruo, "Construction of higher order symplectic integrators"; Physics Letters A, vol. 150, no. 5-7, pp. 262-268, 1990. `DOI: <https://doi.org/10.1016/0375-9601(90)90092-3>`__ """ dl = delta Z0, Z1 = _Z(self.order) step1 = self._ord_2(q1, p1, q2, p2, dl * Z1) step2 = self._ord_2(step1[0], step1[1], step1[2], step1[3], dl * Z0) step3 = self._ord_2(step2[0], step2[1], step2[2], step2[3], dl * Z1) return step3 def _ord_6(self, q1, p1, q2, p2, delta): """ Order 6 Integration Scheme References ---------- .. [1] Yoshida, Haruo, "Construction of higher order symplectic integrators"; Physics Letters A, vol. 150, no. 5-7, pp. 262-268, 1990. `DOI: <https://doi.org/10.1016/0375-9601(90)90092-3>`__ """ dl = delta Z0, Z1 = _Z(self.order) step1 = self._ord_4(q1, p1, q2, p2, dl * Z1) step2 = self._ord_4(step1[0], step1[1], step1[2], step1[3], dl * Z0) step3 = self._ord_4(step2[0], step2[1], step2[2], step2[3], dl * Z1) return step3 def _ord_8(self, q1, p1, q2, p2, delta): """ Order 8 Integration Scheme References ---------- .. [1] Yoshida, Haruo, "Construction of higher order symplectic integrators"; Physics Letters A, vol. 150, no. 5-7, pp. 262-268, 1990. `DOI: <https://doi.org/10.1016/0375-9601(90)90092-3>`__ """ dl = delta Z0, Z1 = _Z(self.order) step1 = self._ord_6(q1, p1, q2, p2, dl * Z1) step2 = self._ord_6(step1[0], step1[1], step1[2], step1[3], dl * Z0) step3 = self._ord_6(step2[0], step2[1], step2[2], step2[3], dl * Z1) return step3 def step(self): """ Advances integration by one step """ rl = self.res_list arr = self.integrator(rl[0], rl[1], rl[2], rl[3], self.delta) self.res_list = arr self.step_num += 1 # Stability check if not self.suppress_warnings: g = self.metric g_prms = self.metric_params q1 = arr[0] p1 = arr[1] # Ignoring # q_2 = arr[2] # p_2 = arr[3] const = -int(self.time_like) # g.p.p ~ -1 or 0 (const) if not np.allclose( g(q1, *g_prms) @ p1 @ p1, const, rtol=self.rtol, atol=self.atol ): warnings.warn( f"Numerical error has exceeded specified tolerance at step = {self.step_num}.", RuntimeWarning, ) self.results.append(self.res_list)
31.406143
100
0.480548
629f2aa8c250c5429b92f9b163e66ccfeed5d657
10,397
py
Python
koku/reporting/models.py
Vasyka/koku
b5aa9ec41c3b0821e74afe9ff3a5ffaedb910614
[ "Apache-2.0" ]
2
2022-01-12T03:42:39.000Z
2022-01-12T03:42:40.000Z
koku/reporting/models.py
Vasyka/koku
b5aa9ec41c3b0821e74afe9ff3a5ffaedb910614
[ "Apache-2.0" ]
null
null
null
koku/reporting/models.py
Vasyka/koku
b5aa9ec41c3b0821e74afe9ff3a5ffaedb910614
[ "Apache-2.0" ]
1
2021-07-21T09:33:59.000Z
2021-07-21T09:33:59.000Z
# # Copyright 2021 Red Hat Inc. # SPDX-License-Identifier: Apache-2.0 # """Models for cost entry tables.""" # flake8: noqa from reporting.partition.models import PartitionedTable from reporting.provider.all.openshift.models import OCPAllComputeSummary from reporting.provider.all.openshift.models import OCPAllCostLineItemDailySummary from reporting.provider.all.openshift.models import OCPAllCostLineItemProjectDailySummary from reporting.provider.all.openshift.models import OCPAllCostSummary from reporting.provider.all.openshift.models import OCPAllCostSummaryByAccount from reporting.provider.all.openshift.models import OCPAllCostSummaryByRegion from reporting.provider.all.openshift.models import OCPAllCostSummaryByService from reporting.provider.all.openshift.models import OCPAllDatabaseSummary from reporting.provider.all.openshift.models import OCPAllNetworkSummary from reporting.provider.all.openshift.models import OCPAllStorageSummary from reporting.provider.aws.models import AWSAccountAlias from reporting.provider.aws.models import AWSComputeSummary from reporting.provider.aws.models import AWSComputeSummaryByAccount from reporting.provider.aws.models import AWSComputeSummaryByRegion from reporting.provider.aws.models import AWSComputeSummaryByService from reporting.provider.aws.models import AWSCostEntry from reporting.provider.aws.models import AWSCostEntryBill from reporting.provider.aws.models import AWSCostEntryLineItem from reporting.provider.aws.models import AWSCostEntryLineItemDaily from reporting.provider.aws.models import AWSCostEntryLineItemDailySummary from reporting.provider.aws.models import AWSCostEntryPricing from reporting.provider.aws.models import AWSCostEntryProduct from reporting.provider.aws.models import AWSCostEntryReservation from reporting.provider.aws.models import AWSCostSummary from reporting.provider.aws.models import AWSCostSummaryByAccount from reporting.provider.aws.models import AWSCostSummaryByRegion from reporting.provider.aws.models import AWSCostSummaryByService from reporting.provider.aws.models import AWSDatabaseSummary from reporting.provider.aws.models import AWSEnabledTagKeys from reporting.provider.aws.models import AWSNetworkSummary from reporting.provider.aws.models import AWSOrganizationalUnit from reporting.provider.aws.models import AWSStorageSummary from reporting.provider.aws.models import AWSStorageSummaryByAccount from reporting.provider.aws.models import AWSStorageSummaryByRegion from reporting.provider.aws.models import AWSStorageSummaryByService from reporting.provider.aws.models import AWSTagsSummary from reporting.provider.aws.openshift.models import OCPAWSComputeSummary from reporting.provider.aws.openshift.models import OCPAWSCostLineItemDailySummary from reporting.provider.aws.openshift.models import OCPAWSCostLineItemProjectDailySummary from reporting.provider.aws.openshift.models import OCPAWSCostSummary from reporting.provider.aws.openshift.models import OCPAWSCostSummaryByAccount from reporting.provider.aws.openshift.models import OCPAWSCostSummaryByRegion from reporting.provider.aws.openshift.models import OCPAWSCostSummaryByService from reporting.provider.aws.openshift.models import OCPAWSDatabaseSummary from reporting.provider.aws.openshift.models import OCPAWSNetworkSummary from reporting.provider.aws.openshift.models import OCPAWSStorageSummary from reporting.provider.aws.openshift.models import OCPAWSTagsSummary from reporting.provider.azure.models import AzureComputeSummary from reporting.provider.azure.models import AzureCostEntryBill from reporting.provider.azure.models import AzureCostEntryLineItemDaily from reporting.provider.azure.models import AzureCostEntryLineItemDailySummary from reporting.provider.azure.models import AzureCostEntryProductService from reporting.provider.azure.models import AzureCostSummary from reporting.provider.azure.models import AzureCostSummaryByAccount from reporting.provider.azure.models import AzureCostSummaryByLocation from reporting.provider.azure.models import AzureCostSummaryByService from reporting.provider.azure.models import AzureDatabaseSummary from reporting.provider.azure.models import AzureEnabledTagKeys from reporting.provider.azure.models import AzureMeter from reporting.provider.azure.models import AzureNetworkSummary from reporting.provider.azure.models import AzureStorageSummary from reporting.provider.azure.models import AzureTagsSummary from reporting.provider.azure.openshift.models import OCPAzureComputeSummary from reporting.provider.azure.openshift.models import OCPAzureCostLineItemDailySummary from reporting.provider.azure.openshift.models import OCPAzureCostLineItemProjectDailySummary from reporting.provider.azure.openshift.models import OCPAzureCostSummary from reporting.provider.azure.openshift.models import OCPAzureCostSummaryByAccount from reporting.provider.azure.openshift.models import OCPAzureCostSummaryByLocation from reporting.provider.azure.openshift.models import OCPAzureCostSummaryByService from reporting.provider.azure.openshift.models import OCPAzureDatabaseSummary from reporting.provider.azure.openshift.models import OCPAzureNetworkSummary from reporting.provider.azure.openshift.models import OCPAzureStorageSummary from reporting.provider.azure.openshift.models import OCPAzureTagsSummary from reporting.provider.gcp.models import GCPComputeSummary from reporting.provider.gcp.models import GCPComputeSummaryByAccount from reporting.provider.gcp.models import GCPComputeSummaryByProject from reporting.provider.gcp.models import GCPComputeSummaryByRegion from reporting.provider.gcp.models import GCPComputeSummaryByService from reporting.provider.gcp.models import GCPCostEntryBill from reporting.provider.gcp.models import GCPCostEntryLineItemDailySummary from reporting.provider.gcp.models import GCPCostEntryProductService from reporting.provider.gcp.models import GCPCostSummary from reporting.provider.gcp.models import GCPCostSummaryByAccount from reporting.provider.gcp.models import GCPCostSummaryByProject from reporting.provider.gcp.models import GCPCostSummaryByRegion from reporting.provider.gcp.models import GCPCostSummaryByService from reporting.provider.gcp.models import GCPDatabaseSummary from reporting.provider.gcp.models import GCPEnabledTagKeys from reporting.provider.gcp.models import GCPNetworkSummary from reporting.provider.gcp.models import GCPStorageSummary from reporting.provider.gcp.models import GCPStorageSummaryByAccount from reporting.provider.gcp.models import GCPStorageSummaryByProject from reporting.provider.gcp.models import GCPStorageSummaryByRegion from reporting.provider.gcp.models import GCPStorageSummaryByService from reporting.provider.gcp.models import GCPTagsSummary from reporting.provider.ocp.costs.models import CostSummary from reporting.provider.ocp.models import OCPCostSummary from reporting.provider.ocp.models import OCPCostSummaryByNode from reporting.provider.ocp.models import OCPCostSummaryByProject from reporting.provider.ocp.models import OCPEnabledTagKeys from reporting.provider.ocp.models import OCPNodeLabelLineItem from reporting.provider.ocp.models import OCPNodeLabelLineItemDaily from reporting.provider.ocp.models import OCPPodSummary from reporting.provider.ocp.models import OCPPodSummaryByProject from reporting.provider.ocp.models import OCPStorageLineItem from reporting.provider.ocp.models import OCPStorageLineItemDaily from reporting.provider.ocp.models import OCPStorageVolumeLabelSummary from reporting.provider.ocp.models import OCPUsageLineItem from reporting.provider.ocp.models import OCPUsageLineItemDaily from reporting.provider.ocp.models import OCPUsageLineItemDailySummary from reporting.provider.ocp.models import OCPUsagePodLabelSummary from reporting.provider.ocp.models import OCPUsageReport from reporting.provider.ocp.models import OCPUsageReportPeriod from reporting.provider.ocp.models import OCPVolumeSummary from reporting.provider.ocp.models import OCPVolumeSummaryByProject AWS_MATERIALIZED_VIEWS = ( AWSComputeSummary, AWSComputeSummaryByAccount, AWSComputeSummaryByRegion, AWSComputeSummaryByService, AWSCostSummary, AWSCostSummaryByAccount, AWSCostSummaryByRegion, AWSCostSummaryByService, AWSDatabaseSummary, AWSNetworkSummary, AWSStorageSummary, AWSStorageSummaryByAccount, AWSStorageSummaryByRegion, AWSStorageSummaryByService, ) AZURE_MATERIALIZED_VIEWS = ( AzureCostSummary, AzureCostSummaryByAccount, AzureCostSummaryByLocation, AzureCostSummaryByService, AzureComputeSummary, AzureStorageSummary, AzureNetworkSummary, AzureDatabaseSummary, ) OCP_MATERIALIZED_VIEWS = ( OCPPodSummary, OCPPodSummaryByProject, OCPVolumeSummary, OCPVolumeSummaryByProject, OCPCostSummary, OCPCostSummaryByProject, OCPCostSummaryByNode, ) OCP_ON_AWS_MATERIALIZED_VIEWS = ( OCPAWSCostSummary, OCPAWSCostSummaryByAccount, OCPAWSCostSummaryByService, OCPAWSCostSummaryByRegion, OCPAWSComputeSummary, OCPAWSStorageSummary, OCPAWSNetworkSummary, OCPAWSDatabaseSummary, ) OCP_ON_AZURE_MATERIALIZED_VIEWS = ( OCPAzureCostSummary, OCPAzureCostSummaryByAccount, OCPAzureCostSummaryByService, OCPAzureCostSummaryByLocation, OCPAzureComputeSummary, OCPAzureStorageSummary, OCPAzureNetworkSummary, OCPAzureDatabaseSummary, ) OCP_ON_INFRASTRUCTURE_MATERIALIZED_VIEWS = ( # OCPAllCostLineItemDailySummary, # OCPAllCostSummary, # OCPAllCostSummaryByAccount, # OCPAllCostSummaryByService, # OCPAllCostSummaryByRegion, # OCPAllComputeSummary, # OCPAllDatabaseSummary, # OCPAllNetworkSummary, # OCPAllStorageSummary, # OCPAllCostLineItemProjectDailySummary, OCPCostSummary, OCPCostSummaryByProject, OCPCostSummaryByNode, ) GCP_MATERIALIZED_VIEWS = ( GCPCostSummary, GCPCostSummaryByAccount, GCPCostSummaryByProject, GCPCostSummaryByRegion, GCPCostSummaryByService, GCPComputeSummary, GCPComputeSummaryByProject, GCPComputeSummaryByAccount, GCPComputeSummaryByService, GCPComputeSummaryByRegion, GCPStorageSummary, GCPStorageSummaryByProject, GCPStorageSummaryByService, GCPStorageSummaryByAccount, GCPStorageSummaryByRegion, GCPNetworkSummary, GCPDatabaseSummary, )
47.474886
93
0.864576
696f429ae60040e78d3a38bfc8fda8b41117b048
316
py
Python
constants.py
StevePirateX/recurring-chores
a682ac8b9d9bc050e6f4c19941524999b1d5951f
[ "MIT" ]
null
null
null
constants.py
StevePirateX/recurring-chores
a682ac8b9d9bc050e6f4c19941524999b1d5951f
[ "MIT" ]
null
null
null
constants.py
StevePirateX/recurring-chores
a682ac8b9d9bc050e6f4c19941524999b1d5951f
[ "MIT" ]
null
null
null
VERSION = "0.3" PRINT_INPUT_CHORE_LIST = False TEST_MODE = False TEST_ITERATIONS = 10000 # Default values for config import CHORE_LIST_CSV_NAME = "chore_list.csv" NUM_CHORES = 1 # Default CSV File CSV_HEADERS = "Chore,Frequency (every x days),Description" CSV_DEFAULT_ROW = "Demo Chore, 7, Demo chore description"
24.307692
58
0.778481
43f11f15a49bd36c2028ac01e96f9ab77af58c94
3,221
py
Python
tests/workflow_tests/test_storage.py
acidburn0zzz/cloudify-manager
ee2224c52347f7461a95976179ab61aee74a49dd
[ "Apache-2.0" ]
1
2015-11-03T14:27:11.000Z
2015-11-03T14:27:11.000Z
tests/workflow_tests/test_storage.py
acidburn0zzz/cloudify-manager
ee2224c52347f7461a95976179ab61aee74a49dd
[ "Apache-2.0" ]
2
2021-03-20T05:33:19.000Z
2021-03-26T00:38:21.000Z
tests/workflow_tests/test_storage.py
acidburn0zzz/cloudify-manager
ee2224c52347f7461a95976179ab61aee74a49dd
[ "Apache-2.0" ]
1
2019-10-29T06:15:31.000Z
2019-10-29T06:15:31.000Z
######## # Copyright (c) 2013 GigaSpaces Technologies Ltd. All rights reserved # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # * See the License for the specific language governing permissions and # * limitations under the License. import uuid from testenv import TestCase from testenv.utils import get_resource as resource from testenv.utils import deploy_application as deploy from testenv.utils import create_rest_client from cloudify_rest_client.exceptions import CloudifyClientError class TestStorage(TestCase): def test_update_node_bad_version(self): deploy(resource("dsl/basic.yaml")) client = create_rest_client() instance = client.node_instances.list()[0] instance = client.node_instances.get(instance.id) # need the version props = {'key': 'value'} result = client.node_instances.update(instance.id, state='started', runtime_properties=props, version=instance.version,) self.assertEquals(instance.version+1, result.version) self.assertEquals(instance.id, result.id) self.assertDictContainsSubset(props, result.runtime_properties) self.assertEquals('started', result.state) # making another call with a bad version self.assertRaises( CloudifyClientError, client.node_instances.update, instance.id, version=1) def test_deployment_inputs(self): blueprint_id = str(uuid.uuid4()) blueprint = self.client.blueprints.upload(resource("dsl/basic.yaml"), blueprint_id) inputs = blueprint.plan['inputs'] self.assertEqual(1, len(inputs)) self.assertTrue('install_agent' in inputs) self.assertFalse(inputs['install_agent']['default']) self.assertTrue( len(inputs['install_agent']['description']) > 0) deployment_id = str(uuid.uuid4()) deployment = self.client.deployments.create(blueprint.id, deployment_id) self.assertEqual(1, len(deployment.inputs)) self.assertTrue('install_agent' in deployment.inputs) self.assertFalse(deployment.inputs['install_agent']) def test_node_operation_different_inputs(self): """ Tests storing different nodes with different structured inputs for the same operation. """ blueprint_id = str(uuid.uuid4()) blueprint = self.client.blueprints.upload( resource("dsl/two_nodes_different_inputs.yaml"), blueprint_id) deployment_id = str(uuid.uuid4()) self.client.deployments.create(blueprint.id, deployment_id)
42.381579
79
0.65104
99db158c01249c0f524e1c952f392023bb0633d8
4,095
py
Python
scrapy/resolver.py
gaelleboy/scrapy
ed95f41ce5e75404442a8f96bddeec382df56d34
[ "BSD-3-Clause" ]
null
null
null
scrapy/resolver.py
gaelleboy/scrapy
ed95f41ce5e75404442a8f96bddeec382df56d34
[ "BSD-3-Clause" ]
null
null
null
scrapy/resolver.py
gaelleboy/scrapy
ed95f41ce5e75404442a8f96bddeec382df56d34
[ "BSD-3-Clause" ]
null
null
null
from twisted.internet import defer from twisted.internet.base import ThreadedResolver from twisted.internet.interfaces import IHostResolution, IHostnameResolver, IResolutionReceiver, IResolverSimple from zope.interface.declarations import implementer, provider from scrapy.utils.datatypes import LocalCache # TODO: cache misses dnscache = LocalCache(10000) @implementer(IResolverSimple) class CachingThreadedResolver(ThreadedResolver): """ Default caching resolver. IPv4 only, supports setting a timeout value for DNS requests. """ def __init__(self, reactor, cache_size, timeout): super().__init__(reactor) dnscache.limit = cache_size self.timeout = timeout @classmethod def from_crawler(cls, crawler, reactor): cache_size = 0 if crawler.settings.getbool('DNSCACHE_ENABLED'): cache_size = crawler.settings.getint('DNSCACHE_SIZE') return cls(reactor, cache_size, crawler.settings.getfloat('DNS_TIMEOUT')) def install_on_reactor(self): self.reactor.installResolver(self) def getHostByName(self, name, timeout=None): if name in dnscache: return defer.succeed(dnscache[name]) # in Twisted<=16.6, getHostByName() is always called with # a default timeout of 60s (actually passed as (1, 3, 11, 45) tuple), # so the input argument above is simply overridden # to enforce Scrapy's DNS_TIMEOUT setting's value timeout = (self.timeout,) d = super().getHostByName(name, timeout) if dnscache.limit: d.addCallback(self._cache_result, name) return d def _cache_result(self, result, name): dnscache[name] = result return result @implementer(IHostResolution) class HostResolution: def __init__(self, name): self.name = name def cancel(self): raise NotImplementedError() @provider(IResolutionReceiver) class _CachingResolutionReceiver: def __init__(self, resolutionReceiver, hostName): self.resolutionReceiver = resolutionReceiver self.hostName = hostName self.addresses = [] def resolutionBegan(self, resolution): self.resolutionReceiver.resolutionBegan(resolution) self.resolution = resolution def addressResolved(self, address): self.resolutionReceiver.addressResolved(address) self.addresses.append(address) def resolutionComplete(self): self.resolutionReceiver.resolutionComplete() if self.addresses: dnscache[self.hostName] = self.addresses @implementer(IHostnameResolver) class CachingHostnameResolver: """ Experimental caching resolver. Resolves IPv4 and IPv6 addresses, does not support setting a timeout value for DNS requests. """ def __init__(self, reactor, cache_size): self.reactor = reactor self.original_resolver = reactor.nameResolver dnscache.limit = cache_size @classmethod def from_crawler(cls, crawler, reactor): if crawler.settings.getbool('DNSCACHE_ENABLED'): cache_size = crawler.settings.getint('DNSCACHE_SIZE') else: cache_size = 0 return cls(reactor, cache_size) def install_on_reactor(self): self.reactor.installNameResolver(self) def resolveHostName( self, resolutionReceiver, hostName, portNumber=0, addressTypes=None, transportSemantics="TCP" ): try: addresses = dnscache[hostName] except KeyError: return self.original_resolver.resolveHostName( _CachingResolutionReceiver(resolutionReceiver, hostName), hostName, portNumber, addressTypes, transportSemantics, ) else: resolutionReceiver.resolutionBegan(HostResolution(hostName)) for addr in addresses: resolutionReceiver.addressResolved(addr) resolutionReceiver.resolutionComplete() return resolutionReceiver
32.5
112
0.676679
2cf841133d613f2bb6b9eb042542be8d77b2c2c4
3,512
py
Python
nr.fs/src/nr/fs/_tempfile.py
NiklasRosenstein/nr-python
dc5b31ae5773ea4522a6f35112792dde9e872bef
[ "MIT" ]
3
2018-11-20T22:19:35.000Z
2020-10-31T09:23:53.000Z
nr.fs/src/nr/fs/_tempfile.py
NiklasRosenstein/python-nr
dc5b31ae5773ea4522a6f35112792dde9e872bef
[ "MIT" ]
3
2021-08-09T00:14:26.000Z
2021-08-09T00:28:27.000Z
nr.fs/src/nr/fs/_tempfile.py
NiklasRosenstein/nr-python
dc5b31ae5773ea4522a6f35112792dde9e872bef
[ "MIT" ]
3
2019-03-22T06:15:17.000Z
2020-10-31T09:23:53.000Z
# -*- coding: utf8 -*- # Copyright (c) 2019 Niklas Rosenstein # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. """ A better temporary file class. """ __all__ = ['tempfile', 'tempdir'] import codecs import errno import io import os import shutil import tempfile as _tempfile class tempfile(object): """ A proper named temporary file that is only deleted when the context-manager exits, not when the file is closed. Note that the file is also only opened via the context-manager. """ def __init__(self, suffix='', prefix='tmp', dir=None, text=False, encoding=None): self._text = text self._encoding = encoding self._mktemp = lambda: _tempfile.mkstemp(suffix, prefix, dir, text) self._fp = None self._name = None def __repr__(self): return '<tempfile name={!r}>'.format(self._name) @property def name(self): return self._name def __enter__(self): fd, self._name = self._mktemp() self._fp = os.fdopen(fd, 'w' if (self._text and not self._encoding) else 'wb') if self._encoding: self._fp = codecs.getwriter(self._encoding)(self._fp) if self._text and not self._encoding: self._encoding = self._fp.encoding return self def __exit__(self, *args): self._fp.close() try: os.remove(self._name) except OSError as e: if e.errno != errno.ENOENT: raise @property def encoding(self): return self._encoding def writable(self): return True def write(self, data): return self._fp.write(data) @property def closed(self): return self._fp.closed def close(self): self._fp.close() def tell(self): return self._fp.tell() def seekable(self): return False def readable(self): return False class tempdir(object): """ A context manager for a temporary directory. """ def __init__(self, suffix='', prefix='', dir=None): self._mkdtemp = lambda: _tempfile.mkdtemp(suffix, prefix, dir) self._name = None def __repr__(self): return '<tempdir name={!r}>'.format(self._name) def __enter__(self): self._name = self._mkdtemp() return self def __exit__(self, *args): self.close() @property def name(self): return self._name def close(self): if not self._name: return try: shutil.rmtree(self._name) except OSError as e: if e.errno != errno.ENOENT: raise def open(self, path, *args, **kwargs): return io.open(os.path.join(self._name, path), *args, **kwargs)
26.014815
83
0.692198
e7342a67a3b97193b26edf0bf0b927a1975fdfcb
248
py
Python
dice_classes.py
Winter259/easy-dice-roll
b5eba26932946ab3b2ebe0fdbaeaca74e55d40ad
[ "MIT" ]
null
null
null
dice_classes.py
Winter259/easy-dice-roll
b5eba26932946ab3b2ebe0fdbaeaca74e55d40ad
[ "MIT" ]
null
null
null
dice_classes.py
Winter259/easy-dice-roll
b5eba26932946ab3b2ebe0fdbaeaca74e55d40ad
[ "MIT" ]
null
null
null
__author__ = 'Simon' from dice_fnc import * class Dice(object): def __init__(self): self.type = choose_dice_type() def change_type(self): self.type = choose_dice_type() def roll_this_dice(self): roll_dice(self)
22.545455
38
0.657258
2c2272295b0c1c49d9672f2ff0655ac38d4dbcdb
3,460
py
Python
code.py
AbhishekKumarRoy/olympics-data-analysis
e5c97f90a96d7bd392c2b2a4ac4f6b9c122236ea
[ "MIT" ]
null
null
null
code.py
AbhishekKumarRoy/olympics-data-analysis
e5c97f90a96d7bd392c2b2a4ac4f6b9c122236ea
[ "MIT" ]
null
null
null
code.py
AbhishekKumarRoy/olympics-data-analysis
e5c97f90a96d7bd392c2b2a4ac4f6b9c122236ea
[ "MIT" ]
null
null
null
# -------------- #Importing header files import pandas as pd import numpy as np import matplotlib.pyplot as plt #Path of the file is stored in the variable path #Code starts here # Data Loading (Step 1) data = pd.read_csv(path) data.rename(columns = {"Total": "Total_Medals"}, inplace = True) data.head(10) # Summer or Winter (Step 2) data["Better_Event"] = np.where(data["Total_Summer"] > data["Total_Winter"], "Summer", "Winter") data["Better_Event"] = np.where(data["Total_Summer"] == data["Total_Winter"], "Both", data["Better_Event"]) better_event = data["Better_Event"].value_counts().index.values[0] print(better_event) # Top 10 (Step 3) top_countries = data[["Country_Name","Total_Summer", "Total_Winter","Total_Medals"]] top_countries = top_countries[: -1] # Defining function def top_ten(data, col): country_list = [] country_list = list((data.nlargest(10, col)["Country_Name"])) return country_list # Calling the function and creating a variable common top_10_summer = top_ten(top_countries, "Total_Summer") top_10_winter = top_ten(top_countries, "Total_Winter") top_10 = top_ten(top_countries, "Total_Medals") common = list(set(top_10_summer) & set(top_10_winter) & set(top_10)) print(common) # Plotting top 10 (Step 4) summer_df = data[data["Country_Name"].isin(top_10_summer)] winter_df = data[data["Country_Name"].isin(top_10_winter)] top_df = data[data["Country_Name"].isin(top_10)] # Bar plot # For summer plt.figure(figsize=(12, 5)) plt.bar(summer_df["Country_Name"], summer_df["Total_Summer"]) plt.xlabel("Countries") plt.ylabel("Total Summer Medals") plt.title("Top 10") plt.show() # For Winter plt.figure(figsize=(12, 5)) plt.bar(winter_df["Country_Name"], summer_df["Total_Winter"]) plt.xlabel("Countries") plt.ylabel("Total Winter Medals") plt.title("Top 10") plt.show() # For both events plt.figure(figsize=(12, 5)) plt.bar(top_df["Country_Name"], summer_df["Total_Medals"]) plt.xlabel("Countries") plt.ylabel("Total Medals") plt.title("Top 10") plt.show() # Top Performing Countries (Step 5) # For summer summer_df["Golden_Ratio"] = summer_df["Gold_Summer"] / summer_df["Total_Summer"] summer_max_ratio = summer_df["Golden_Ratio"].max() summer_country_gold = summer_df.loc[summer_df['Golden_Ratio'].idxmax(),'Country_Name'] print(summer_country_gold) # For winter winter_df["Golden_Ratio"] = winter_df["Gold_Winter"] / winter_df["Total_Winter"] winter_max_ratio = winter_df["Golden_Ratio"].max() winter_country_gold = winter_df.loc[winter_df['Golden_Ratio'].idxmax(),'Country_Name'] print(winter_country_gold) # For top 10 top_df["Golden_Ratio"] = top_df["Gold_Total"] / top_df["Total_Medals"] top_max_ratio = top_df["Golden_Ratio"].max() top_country_gold = top_df.loc[top_df['Golden_Ratio'].idxmax(),'Country_Name'] print(top_country_gold) # Best in the world (Step 6) data_1 = data[: -1] data_1["Total_Points"] = data_1["Gold_Total"]*3 + data_1["Silver_Total"]*2 + data_1["Bronze_Total"] most_points = data_1["Total_Points"].max() best_country = data_1.loc[data_1["Total_Points"].idxmax(), "Country_Name"] print(best_country) # Plotting the best (Step 7) best = data[data["Country_Name"] == best_country] best.reset_index(drop = True, inplace = True) best = best[["Gold_Total", "Silver_Total", "Bronze_Total"]] # Stacked bar plot plt.figure(figsize = (12, 5)) best.plot.bar(stacked = True) plt.xlabel("United States") plt.ylabel("Medals Tally") plt.xticks(rotation = 45) plt.show()
27.460317
107
0.732948
19b7ec977847d5372f44ee37118ba4d4284922d3
640
py
Python
tests/xlfunctions_vs_excel/irr_test.py
ckp95/xlcalculator
8f3f04a2a0a2ecb12c3d5837a5b13519137ae427
[ "MIT" ]
54
2020-04-26T09:18:29.000Z
2022-03-30T08:47:45.000Z
tests/xlfunctions_vs_excel/irr_test.py
st-lo/xlcalculator
19190ec90e948b7ab1eceb06448b96cc1728bc51
[ "MIT" ]
41
2020-05-04T04:12:36.000Z
2022-01-31T02:41:05.000Z
tests/xlfunctions_vs_excel/irr_test.py
st-lo/xlcalculator
19190ec90e948b7ab1eceb06448b96cc1728bc51
[ "MIT" ]
21
2020-05-21T20:49:23.000Z
2022-02-20T14:15:56.000Z
from .. import testing class IRRTest(testing.FunctionalTestCase): filename = "IRR.xlsx" def test_evaluation_A1(self): self.assertAlmostEqual( self.evaluator.get_cell_value('Sheet1!A1'), self.evaluator.evaluate('Sheet1!A1') ) def test_evaluation_B1(self): self.assertAlmostEqual( self.evaluator.get_cell_value('Sheet1!B1'), self.evaluator.evaluate('Sheet1!B1') ) def test_evaluation_C1(self): self.assertAlmostEqual( self.evaluator.get_cell_value('Sheet1!C1'), self.evaluator.evaluate('Sheet1!C1') )
26.666667
55
0.623438
334392537e3668a6ce009c931757759827158118
9,741
py
Python
pennylane/gradients/__init__.py
therooler/pennylane
88a8a5960a2ffd218a12f85ace632021eef2abf5
[ "Apache-2.0" ]
1
2022-01-21T15:20:20.000Z
2022-01-21T15:20:20.000Z
pennylane/gradients/__init__.py
therooler/pennylane
88a8a5960a2ffd218a12f85ace632021eef2abf5
[ "Apache-2.0" ]
null
null
null
pennylane/gradients/__init__.py
therooler/pennylane
88a8a5960a2ffd218a12f85ace632021eef2abf5
[ "Apache-2.0" ]
null
null
null
# Copyright 2018-2021 Xanadu Quantum Technologies Inc. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """ Quantum gradient transforms are strategies for computing the gradient of a quantum circuit that work by **transforming** the quantum circuit into one or more gradient circuits. These gradient circuits, once executed and post-processed, return the gradient of the original circuit. Examples of quantum gradient transforms include finite-differences and parameter-shift rules. This module provides a selection of device-independent, differentiable quantum gradient transforms. As such, these quantum gradient transforms can be used to compute the gradients of quantum circuits on both simulators and hardware. In addition, it also includes an API for writing your own quantum gradient transforms. These quantum gradient transforms can be used in two ways: - Transforming quantum circuits directly - Registering a quantum gradient strategy for use when performing autodifferentiation with a :class:`QNode <pennylane.QNode>`. Overview -------- Gradient transforms ^^^^^^^^^^^^^^^^^^^ .. autosummary:: :toctree: api finite_diff param_shift param_shift_cv param_shift_hessian Custom gradients ^^^^^^^^^^^^^^^^ .. autosummary:: :toctree: api gradient_transform hessian_transform Utility functions ^^^^^^^^^^^^^^^^^ .. autosummary:: :toctree: api finite_diff_coeffs generate_shifted_tapes generate_multishifted_tapes generate_shift_rule generate_multi_shift_rule eigvals_to_frequencies compute_vjp batch_vjp vjp Registering autodifferentiation gradients ----------------------------------------- All PennyLane QNodes are automatically differentiable, and can be included seamlessly within an autodiff pipeline. When creating a :class:`QNode <pennylane.QNode>`, the strategy for determining the optimal differentiation strategy is *automated*, and takes into account the circuit, device, autodiff framework, and metadata (such as whether a finite number of shots are used). .. code-block:: python dev = qml.device("default.qubit", wires=2, shots=1000) @qml.qnode(dev, interface="tf") def circuit(weights): ... In particular: - When using a simulator device with exact measurement statistics, backpropagation is preferred due to performance and memory improvements. - When using a hardware device, or a simulator with a finite number of shots, a quantum gradient transform---such as the parameter-shift rule---is preferred. If you would like to specify a particular quantum gradient transform to use when differentiating your quantum circuit, this can be passed when creating the QNode: .. code-block:: python @qml.qnode(dev, gradient_fn=qml.gradients.param_shift) def circuit(weights): ... When using your preferred autodiff framework to compute the gradient of your hybrid quantum-classical cost function, the specified gradient transform for each QNode will be used. .. note:: A single cost function may include multiple QNodes, each with their own quantum gradient transform registered. Transforming QNodes ------------------- Alternatively, quantum gradient transforms can be applied manually to QNodes. .. code-block:: python dev = qml.device("default.qubit", wires=2) @qml.qnode(dev) def circuit(weights): qml.RX(weights[0], wires=0) qml.RY(weights[1], wires=1) qml.CNOT(wires=[0, 1]) qml.RX(weights[2], wires=1) return qml.probs(wires=1) >>> weights = np.array([0.1, 0.2, 0.3], requires_grad=True) >>> circuit(weights) tensor([0.9658079, 0.0341921], requires_grad=True) >>> qml.gradients.param_shift(circuit)(weights) tensor([[-0.04673668, -0.09442394, -0.14409127], [ 0.04673668, 0.09442394, 0.14409127]], requires_grad=True) Comparing this to autodifferentiation: >>> qml.grad(circuit)(weights) array([[-0.04673668, -0.09442394, -0.14409127], [ 0.04673668, 0.09442394, 0.14409127]]) Quantum gradient transforms can also be applied as decorators to QNodes, if *only* gradient information is needed. Evaluating the QNode will then automatically return the gradient: .. code-block:: python dev = qml.device("default.qubit", wires=2) @qml.gradients.param_shift @qml.qnode(dev) def decorated_circuit(weights): qml.RX(weights[0], wires=0) qml.RY(weights[1], wires=1) qml.CNOT(wires=[0, 1]) qml.RX(weights[2], wires=1) return qml.probs(wires=1) >>> decorated_circuit(weights) tensor([[-0.04673668, -0.09442394, -0.14409127], [ 0.04673668, 0.09442394, 0.14409127]], requires_grad=True) .. note:: If your circuit contains any operations not supported by the gradient transform, the transform will attempt to automatically decompose the circuit into only operations that support gradients. .. note:: If you wish to only return the purely **quantum** component of the gradient---that is, the gradient of the output with respect to **gate** arguments, not QNode arguments---pass ``hybrid=False`` when applying the transform: >>> qml.gradients.param_shift(circuit, hybrid=False)(weights) Differentiating gradient transforms ----------------------------------- Gradient transforms are themselves differentiable, allowing higher-order gradients to be computed: .. code-block:: python dev = qml.device("default.qubit", wires=2) @qml.qnode(dev) def circuit(weights): qml.RX(weights[0], wires=0) qml.RY(weights[1], wires=1) qml.CNOT(wires=[0, 1]) qml.RX(weights[2], wires=1) return qml.expval(qml.PauliZ(1)) >>> weights = np.array([0.1, 0.2, 0.3], requires_grad=True) >>> circuit(weights) tensor(0.9316158, requires_grad=True) >>> qml.gradients.param_shift(circuit)(weights) # gradient array([[-0.09347337, -0.18884787, -0.28818254]]) >>> qml.jacobian(qml.gradients.param_shift(circuit))(weights) # hessian array([[[-0.9316158 , 0.01894799, 0.0289147 ], [ 0.01894799, -0.9316158 , 0.05841749], [ 0.0289147 , 0.05841749, -0.9316158 ]]]) Transforming tapes ------------------ Gradient transforms can be applied to low-level :class:`~.QuantumTape` objects, a datastructure representing variational quantum algorithms: .. code-block:: python weights = np.array([0.1, 0.2, 0.3], requires_grad=True) with qml.tape.JacobianTape() as tape: qml.RX(weights[0], wires=0) qml.RY(weights[1], wires=1) qml.CNOT(wires=[0, 1]) qml.RX(weights[2], wires=1) qml.expval(qml.PauliZ(1)) Unlike when transforming a QNode, transforming a tape directly will perform no implicit quantum device evaluation. Instead, it returns the processed tapes, and a post-processing function, which together define the gradient: >>> gradient_tapes, fn = qml.gradients.param_shift(tape) >>> gradient_tapes [<QuantumTape: wires=[0, 1], params=3>, <QuantumTape: wires=[0, 1], params=3>, <QuantumTape: wires=[0, 1], params=3>, <QuantumTape: wires=[0, 1], params=3>, <QuantumTape: wires=[0, 1], params=3>, <QuantumTape: wires=[0, 1], params=3>] This can be useful if the underlying circuits representing the gradient computation need to be analyzed. The output tapes can then be evaluated and post-processed to retrieve the gradient: >>> dev = qml.device("default.qubit", wires=2) >>> fn(qml.execute(gradient_tapes, dev, None)) [[-0.09347337 -0.18884787 -0.28818254]] Note that the post-processing function ``fn`` returned by the gradient transform is applied to the flat list of results returned from executing the gradient tapes. Custom gradient transforms -------------------------- Using the :class:`~.gradient_transform` decorator, custom gradient transforms can be created: .. code-block:: python @gradient_transform def my_custom_gradient(tape, **kwargs): ... return gradient_tapes, processing_fn Once created, a custom gradient transform can be applied directly to QNodes, or registered as the quantum gradient transform to use during autodifferentiation. For more details, please see the :class:`~.gradient_transform` documentation. """ import pennylane as qml from . import parameter_shift from . import parameter_shift_cv from . import param_shift_hessian from . import finite_difference from .gradient_transform import gradient_transform from .hessian_transform import hessian_transform from .finite_difference import finite_diff, finite_diff_coeffs from .parameter_shift import param_shift from .parameter_shift_cv import param_shift_cv from .param_shift_hessian import param_shift_hessian from .vjp import compute_vjp, batch_vjp, vjp from .hamiltonian_grad import hamiltonian_grad from .general_shift_rules import ( eigvals_to_frequencies, generate_shift_rule, generate_multi_shift_rule, generate_shifted_tapes, generate_multishifted_tapes, )
31.833333
94
0.700339
013eb778840cf462632b6d8a22936cae9ac822c8
1,682
py
Python
pygame_menu/examples/other/widget_positioning.py
dcartman/pygame-menu
52a823b9121aadd6893fb878150d613ab516fcac
[ "MIT" ]
null
null
null
pygame_menu/examples/other/widget_positioning.py
dcartman/pygame-menu
52a823b9121aadd6893fb878150d613ab516fcac
[ "MIT" ]
null
null
null
pygame_menu/examples/other/widget_positioning.py
dcartman/pygame-menu
52a823b9121aadd6893fb878150d613ab516fcac
[ "MIT" ]
null
null
null
""" pygame-menu https://github.com/ppizarror/pygame-menu EXAMPLE - WIDGET POSITIONING Test widget positioning example. """ import pygame_menu from pygame_menu.examples import create_example_window # Create the surface surface = create_example_window('Example - Widget Positioning', (640, 480)) # Create a custom theme my_theme = pygame_menu.themes.THEME_DARK.copy() my_theme.title = False # Hide the menu title menu = pygame_menu.Menu( height=480, # Use full-screen theme=my_theme, title='', center_content=False, width=640 ) menu.add.label( 'My App', background_color='#333', background_inflate=(30, 0), float=True # Widget does not add size to the menu ).translate(0, 10) label = menu.add.label( 'Lorem ipsum', float=True, font_name=pygame_menu.font.FONT_OPEN_SANS_ITALIC, font_size=25) label.rotate(90) label.translate(300, 160) # Button options b1 = menu.add.button( 'Main Menu', lambda: print(f'My method'), align=pygame_menu.locals.ALIGN_LEFT, float=True, selection_color='#fff' ) b1.translate(10, 170) b2 = menu.add.button( 'Exit', pygame_menu.events.EXIT, align=pygame_menu.locals.ALIGN_LEFT, float=True, selection_color='#fff' ) b2.translate(10, 235) # Bottom scrollable text f = menu.add.frame_v( background_color='#6b6e5e', border_color='#36372f', border_width=1, float=True, height=480, max_height=100, width=200 ) f.translate(220, 390) labels = [menu.add.label(f' Lorem ipsum #{i}', font_size=15, font_color='#000000', padding=0) for i in range(20)] for j in labels: f.pack(j) if __name__ == '__main__': menu.mainloop(surface)
21.844156
114
0.693817
e13f86275ac53900079f33d7b42eae045c7e908c
31,190
py
Python
analysis.py
aschelle/Thing2Vec
7b5d68cf47109b8d67eba492f8f119672721e4e1
[ "MIT" ]
null
null
null
analysis.py
aschelle/Thing2Vec
7b5d68cf47109b8d67eba492f8f119672721e4e1
[ "MIT" ]
null
null
null
analysis.py
aschelle/Thing2Vec
7b5d68cf47109b8d67eba492f8f119672721e4e1
[ "MIT" ]
null
null
null
import wordvectors.physicaldata.tools as tools import wordvectors.physicaldata.creation as creation import wordvectors.thing2vec as t2v from enum import Enum import numpy as np import collections import random class Question_Mode (Enum): """ Specifies how the answer given by the neural net is interpreted. Exact : The question is answered correctly only if the first answer of the neural net is the correct one. Near : The question is answered correctly if the first n answers of the neural net contain the correct one. n is specified in the analyzer class by _number_of_near. """ Exact = 1 Near = 2 class Translational_Mode (Enum): """ Specifies how the translational questions are generated. Collective : For all translational operations all particles of the system are moved. So from the start state all particles are moved randomly for one positive state and one negative state. Then the translations are added in the way positive_movement - negative_movement. The resulting movement is added to the start state for the correct answer state. Individual : Some translational operations only move single particles that were randomly chosen. First all particles are moved from a start state (original state is negative and moved is positive). Then a single particle is moved from the moved state and from the original (for both states the same)(first one is the correct answer, second is a positive state). """ Collective = 1 Individual = 2 class Question (): """ Class that bundles a question that is asked to the neural net. Objects of that class are used by the ReportClass and its child classes. """ def __init__(self, answer, positive, negative=[], vectors = False): """ Attention --------- The string of the parameters has to be a member of the dictionary in the thing2vec neural net! Answer has to be a string parameter always. positive and negative members can be vectors in the word vector space, too. Parameters ---------- answer : object that will be the correct answer of that question. positive : list of objects that will be positively (+) contribute to the question that is asked. negative : list of objects that will be negatively (-) contribute to the question that is asked. vectors : determines if the positive and negative objects are already vectors (True) or words that have to be translated into vectors (False) """ self.answer = answer self.positive = positive self.negative = negative self.vectors = vectors def set_answer(self, correct, accuracy=None, infos=None): """ Adds information about the answer that was given by the neural net Parameters ---------- correct : Set to True if question was answered correctly, False if not accuracy : Ranking of the right answer in the answer given by the neural net infos : Further infos about the answer that was given by the neural net """ self.correct = correct self.accuracy = accuracy self.infos = infos class ReportClass(): """ Class that bundles all information of a test that was performed on a neural net. """ def __init__(self, questions): """ Parameters ---------- questions : list of Question objects that were asked to the neural net. """ self.questions = questions def get_correct(self): """ Returns a list of all questions that were answered correctly. """ correct = [] for q in self.questions: if q.correct: correct.append(q) return correct def get_incorrect(self): """ Returns a list of all questions that were answered wrongly. """ incorrect = [] for q in self.questions: if not q.correct: incorrect.append(q) return incorrect def get_accuracy(self): """ Returns the accuracy of the neural net on that particular test. """ accuracy = 0 for q in self.questions: if q.correct: accuracy += 1 accuracy /= len(self.questions) return accuracy class base_analyzer (): """ Base class for analyzing a Thing2Vec neural net. Introduces general functions an variables to generate and ask questions to the neural net. """ #When using Question_Mode.Near this variable specifies the maximal distance (number of wrong candidates #before the right one) of the right answer and the answer the neural net has given. _number_of_near = 10 #Number of attempts when generating questions to find a allowed state before skipping that particular base state _max_it = 1000 def __init__(self, creator: creation.base_DataCreator, thing2vec: t2v.base_Thing2vec): """ Parameters ---------- creator : base_DataCreator Object of class base_DataCreator that was used for generating the data that was used by the neural net. thing2vec : base_Thing2vec The trained neural net which used the data created by the creator object. """ self.creator = creator self.thing2vec = thing2vec def get_translational_questions(self): raise NotImplementedError() def get_rotational_questions(self): raise NotImplementedError() def get_inversion_questions(self, number_of_questions=100): raise NotImplementedError() #Idea of enivronmental question: Take a state and its environment (nearest states), then translate the original state #and its environment by a vector and look at the nearest states of the translated original state. Now compare the shifted #environment of the original state and the nearest states of the shifted original state def get_environmental_questions(self): raise NotImplementedError() def shift_state(self, particles, particle_idx, movement): raise NotImplementedError() def visualize_translational_categories(self, labeling=False,number_of_categories=5): raise NotImplementedError() def get_translational_error(self): raise NotImplementedError() def test_translational_quality(self, iterations=100, question_mode = Question_Mode.Near): raise NotImplementedError() def ask_question(self, question, question_mode = Question_Mode.Exact, plot = False): """ Asks question to the neural net and returns wheater the question was anwered correctly or not. Parameters ---------- question : Question of type Question that shall be asked. question_mode : How the answer of the question by the neural net shall be interpreted. plot : If =True the answer by the neural net will be visualized and plotted Returns ------- Array of following form: [Question was answered right: bool, ranking of the right answer: int, result of neural net: list] """ plotsettings=t2v.PlotMode.noPlotting if plot and not question.vectors: self.visualize_question(question) plotsettings = t2v.PlotMode.answerOnly if not question.vectors: result = self.thing2vec.most_similar(positive= [str(q) for q in question.positive], negative=[str(q) for q in question.negative],number = self._number_of_near, plot=plotsettings) else: if question.negative != []: result = self.thing2vec.similar_by_vector(vector= np.sum(question.positive,axis=0) - np.sum(question.negative,axis=1), number=self._number_of_near, plot=plot) else: result = self.thing2vec.similar_by_vector(vector= np.sum(question.positive,axis=0), number=self._number_of_near, plot=plot) if question_mode == Question_Mode.Exact: if result[0][0] == str(question.answer): return [True,0,result] return [False,-1,result] elif question_mode == Question_Mode.Near: for i,r in enumerate(result): if r[0] == str(question.answer): return [True,i,result] return [False,-1,result] print("No suitable question mode selected!") return [False,-1,result] def test_neural_net (self, questions, question_mode = Question_Mode.Exact): """ Tests the neural net with the given bunch of questions. Parameters ---------- questions : List of questions that will be asked to the neural net. question_mode : How the answer of the question by the neural net shall be interpreted. """ report = ReportClass(questions) for q in questions: answer = self.ask_question(q, question_mode=question_mode) q.set_answer(answer[0],answer[1],answer[2]) return report def visualize_question (self, question): """ Visualizes the question by plotting all contributing states. Parameters ---------- question : Question that shall be plotted. """ titles = ["positive"] * len(question.positive) + ["negative"] * len(question.negative) + ["answer"] self.creator.plot_states(question.positive + question.negative + [question.answer], titles=titles) class Analyzer2DGrid (base_analyzer): """ Child class of base_analyzer that is used for analyzing neural nets that were trained with elements of the DataCreator2DGrid """ def __init__(self, creator: creation.DataCreator2DGrid, thing2vec: t2v.base_Thing2vec): """ Parameters ---------- creator : DataCreator2DGrid Object of class DataCreator2DGrid that was used for generating the data that was used by the neural net. thing2vec : base_Thing2vec The trained neural net which used the data created by the creator object. """ super().__init__(creator=creator, thing2vec=thing2vec) def _get_number_of_particles_in_state(self, particles): return self.creator.number_of_particles def get_translational_questions(self, number_of_questions=100, translational_mode = Translational_Mode.Individual): """ Get a randomly generated list of questions that have translational variances, meaning the particles have been only translational moved. Parameters ---------- number_of_questions : The maximal number of questions that will be generated translational_mode : Settings how the translational questions are created """ #TODO: Here one is limited by the number of states in the dictionary. One could implement a non-uniform random number generator #which takes more frequently more frequently occuring states. starting_states, translated_states, movement = [], [], [] changed_states, changed_translated_states, movement_change, particle_change = [],[],[],[] #TODO: Only maximal number_of_questions will be generated. Change for to while loop to be sure #to generate number_of_questions questions for n in range(number_of_questions): starting = self.creator.str_to_particles(self.thing2vec.reverse_dictionary[n+1]) if translational_mode == Translational_Mode.Individual: p_c = [random.randint(0,self._get_number_of_particles_in_state(starting)-1)] if translational_mode == Translational_Mode.Collective: p_c = [k for k in range(self._get_number_of_particles_in_state(starting))] it = 0 found = False while True: it +=1 if it > self._max_it: break #if maximal number of iterations is reached, break while loop [start, stop] = self._get_movement_range(starting) mov = random.randint(start, stop) shifted = self.shift_state(starting, [k for k in range(self._get_number_of_particles_in_state(starting))],mov) shifted_not_sorted = self.shift_state(starting, [k for k in range(self._get_number_of_particles_in_state(starting))],mov, sorted_p=False) if shifted != starting: found = True break if not found: continue #if while loop ended without finding a shifted state, this combination will be skipped it = 0 while True: it +=1 if it > self._max_it: break #if maximal number of iterations is reached, break while loop [start, stop] = self._get_movement_range(starting[p_c[0]:(p_c[-1]+1)]) mov_c = random.randint(start,stop) #mov_c = random.randint(-starting[p_c[0]], self.creator.size_of_system**2 - starting[len(p_c)-1]) changed_starting = self.shift_state(starting,p_c,mov_c) changed_translated = self.shift_state(shifted_not_sorted,p_c,mov_c) #The not sorted particles are used so that the same particle is moved as before #when suitable states for the question were found, add them to the list. if changed_starting != starting and changed_translated != shifted: if ((self.thing2vec.is_in_dictionary(str(shifted))) and (self.thing2vec.is_in_dictionary(str(starting))) and (self.thing2vec.is_in_dictionary(str(changed_starting))) and (self.thing2vec.is_in_dictionary(str(changed_translated)))): translated_states.append(shifted) starting_states.append(starting) movement.append(mov) changed_states.append(changed_starting) changed_translated_states.append(changed_translated) movement_change.append(mov_c) particle_change.append(p_c) break #Now sum up results for questions questions = [Question(changed_translated_states[k], [changed_states[k], translated_states[k]],[starting_states[k]]) for k in range(len(starting_states))] return questions def _get_movement_range(self, particles): """ Get maximal possible movement range of the given particles. Parameters ---------- particles : bunch of particles in particles format that shall be moved Returns ------- [minmal movement, maximal movement] """ return [-particles[0], self.creator.size_of_system**2 - particles[-1]] def get_rotational_questions(self, number_of_questions=100): """ Get randomly generated list of questions that have rotational variances. Two semirandom start configurations are rotated with the same angle. The rotation of of two states is taken as "difference" (by substracting) and is added to the other start state. Parameters ---------- number_of_questions : The maximal number of questions that will be generated """ first_states = [self.creator.str_to_particles(self.thing2vec.reverse_dictionary[n+1]) for n in range(number_of_questions)] second_states = [self.creator.str_to_particles(self.thing2vec.reverse_dictionary[random.randint(1,number_of_questions)]) for n in range(number_of_questions)] rotation_steps = [random.randint(1,3) for n in range(number_of_questions)] rotated_first_states = [self._rotate_particles(first_states[k],rotation_steps=rotation_steps[k]) for k in range(number_of_questions)] rotated_second_states = [self._rotate_particles(second_states[k], rotation_steps=rotation_steps[k]) for k in range(number_of_questions)] questions = [Question(rotated_second_states[k],[rotated_first_states[k], second_states[k]], [first_states[k]]) for k in range(number_of_questions) if self.thing2vec.is_in_dictionary(str(rotated_second_states[k])) and self.thing2vec.is_in_dictionary(str(rotated_first_states[k])) and self.thing2vec.is_in_dictionary(str(second_states[k])) and self.thing2vec.is_in_dictionary(str(first_states[k]))] return questions def _rotate_particles(self, particles,direction=+1, rotation_steps =1): """ Rotates the given particles state clockwise in 90° steps around the center of the system. Parameters ---------- particles : state in particles format that will be rotated direction : direction of the rotation. +1 is clockwise, -1 is anticlockwise rotation_steps : number of 90° rotations in the given direction """ xypositions = [self.creator.getxy_position(p) for p in particles] middle = (self.creator.size_of_system-1) / 2 for t in range(rotation_steps): for k in range(len(xypositions)): xypositions[k] = [int((-1)*direction*(xypositions[k][1]-middle)+middle), int(direction*(xypositions[k][0]-middle)+middle)] particles = [self.creator.getparticle_position(p) for p in xypositions] particles.sort() return particles #TODO: Implement function to show context of the given categories too. Meaning, plotting the most common states, too def visualize_translational_categories(self, labeling=False,number_of_categories=7, method=t2v.Dimension_Reduction_Method.tsne, hide_plot=False, starting=None, movement=None): """ Visualizes random states that were translated in x or y direction to build a translation line with different colours using the tsne method. Parameters ---------- labeling : if set to True all states will be labeled by their state name. number_of_categories : number of translation lines/categories that will be generated and visualized. method : Method that is used for dimension reduction hide_plot : if True the plot will not be shown (can be useful if the plot shall be saved directly) starting_state : starting state of creating the translational categories. If set to None the starting state will be chosen randomly. movement : array of the two movements that will be used for creating all starts for the categories (index 0) and the direction of movement of one category (index 1). If set to None the starting state will be chosen randomly. """ categories = [] if starting == None: starting = self.creator.str_to_particles(self.thing2vec.reverse_dictionary[random.randint(1,100)]) if movement == None: movement = sorted(self.creator.get_possibilities(), reverse=True)[:2] random.shuffle(movement) starts_for_categories = self._generate_translational_category(starting,movement[0]) #random.shuffle(starts_for_categories) for k in range(min(number_of_categories,len(starts_for_categories))): categories.append(self._generate_translational_category(starts_for_categories[k],movement[1])) categories = [[str(c) for c in ies] for ies in categories] return self.thing2vec.visualize_categories(categories, [str(c[0]) for c in categories], labeling=labeling, method=method, hide_plot=hide_plot) def _generate_translational_category(self,start,movement): """ Generates starting from the start state a translational line/category by shifting the start state in movement and -movement direction. Parameters ---------- start : starting state that will be shifted movement : direction of the shift of the start state """ category = [start] while True: new = self.shift_state(category[-1], [k for k in range(len(start))], movement) if new == category [-1]: break category.append(new) while True: new = self.shift_state(category[0], [k for k in range(len(start))], -movement) if new == category [0]: break category.insert(0,new) return category def shift_state(self, particles, particle_idx, movement, sorted_p=True): """ Shifts all specified particles in the given state by the given movement direction. Parameters ---------- particles : The state that shall be shifted in the particles format particle_idx : A list of indexes of the particles in the state that shall be moved. movement : Movement that shall be applied to all particles that were specified in particle_idx. sorted_p : If True, the particles are sorted due their indices (needed for the dictionary) """ shifted_particles = particles[:] #copy particles for idx in particle_idx: if self.creator.Is_move_possible([shifted_particles[idx]], movement, 0): #With these parameters only borders will be checked #shifted_particles[idx] = shifted_particles[idx] + movement shifted_particles[idx] = self.creator.Apply_movement(shifted_particles[idx], movement) else: #print("Not possible to move state!") return particles counter = collections.Counter(shifted_particles) if counter.most_common(n=1)[0][1] > 1: #print("Not possible to move state!") return particles if sorted_p: shifted_particles.sort() return shifted_particles def test_translational_quality(self, iterations=100, question_mode = Question_Mode.Near): """ Tests the quality of a translational motion. For that a random state is translated in x or y direction to get a "line of states". Now the normalized distance between the first and the last state is taken to get a difference vector. Parts of that vector are now added to the first state vector. The results are compared to the real word vector of the translated state given in the "line of states". Additionaly a test is performed if the true word vector is comparable near to the calculated vectors in contrast to all other vectors. Parameters ---------- iterations : How much iterations of the above procedure are performed to calculate a mean error question_mode : question mode that will be used for the test if the true word vector is near the calculated vector Returns ------- [errors, accuracies] : errors : distance between the real word vector and the calculated vector divided by the length of the added vector. accuracies : ratio of correct answered tests """ errors, accuracies = [], [] key_errors = 0 for k in range(iterations): try: result = self._get_translational_error(question_mode=question_mode) errors.append(result[0]) accuracies.append(result[1]) except KeyError: #for the case that some states do not exist in dictionary key_errors += 1 errors, accuracies = np.mean(errors), np.mean(accuracies) return [errors, accuracies] def _get_translational_error(self, question_mode = Question_Mode.Near): """ Is used by the test_translational_quality method to perform the translational test as described in the documentation of that function. Parameters ---------- question_mode : question mode that will be used for the test if the true word vector is near the calculated vector """ translation_line = [] #Find random translation line that has a length of minimum 3 to be able to perform the test while len(translation_line) < 3: starting = self.creator.str_to_particles(self.thing2vec.reverse_dictionary[random.randint(1,100)]) movement = sorted(self.creator.get_possibilities(), reverse=True)[:2] random.shuffle(movement) translation_line = self._generate_translational_category(starting,movement[0]) #Use normalized vectors because for most_similar methods normalized vectors are used too. start_vec, stop_vec = self.thing2vec.get_word_vector(str(translation_line[0]), normalized=True), self.thing2vec.get_word_vector(str(translation_line[-1]), normalized=True) diff_vec = stop_vec-start_vec error = 0 questions = [] for k in range(1,len(translation_line)-1): #Calculate vector starting from the start word vector and normalize it vector = start_vec + diff_vec * (k/(len(translation_line)-1)) vector /= np.linalg.norm(vector) questions.append(Question(answer=translation_line[k], positive=[vector],vectors=True)) dist_btw_pnts = np.linalg.norm(self.thing2vec.get_word_vector(str(translation_line[0]), normalized=True) - self.thing2vec.get_word_vector(str(translation_line[k]), normalized=True)) translational_error = np.linalg.norm(vector - self.thing2vec.get_word_vector(str(translation_line[k]), normalized=True)) error += translational_error/dist_btw_pnts #print("dist: %f error: %f"%(dist_btw_pnts, translational_error)) report = self.test_neural_net(questions,question_mode=question_mode) error /= len(translation_line)-2 return [error, report.get_accuracy()] class Analyzer2DGridPeriodic (Analyzer2DGrid): """ Child class of Analyzer2DGrid that is used for analyzing neural nets that were trained with elements of the DataCreator2DGridPeriodic """ def __init__(self, creator: creation.DataCreator2DGridPeriodic, thing2vec: t2v.base_Thing2vec): """ Parameters ---------- creator : DataCreator2DGrid Object of class DataCreator2DGrid that was used for generating the data that was used by the neural net. thing2vec : base_Thing2vec The trained neural net which used the data created by the creator object. """ super().__init__(creator=creator, thing2vec=thing2vec) def _get_movement_range(self,particles): """ Get maximal possible movement range of the given particles. Parameters ---------- particles : bunch of particles in particles format that shall be moved Returns ------- [minmal movement, maximal movement] """ return [0, self.creator.size_of_system**2] def _generate_translational_category(self,start,movement): """ Generates starting from the start state a translational line/category by shifting the start state in movement direction until it reaches start again. Parameters ---------- start : starting state that will be shifted movement : direction of the shift of the start state """ category = [start] while True: new = self.shift_state(category[-1], [k for k in range(len(start))], movement) if new == category [0]: break category.append(new) return category class Analyzer2DIsingModel(Analyzer2DGridPeriodic): def __init__(self, creator: creation.DataCreator2DIsingModel, thing2vec: t2v.base_Thing2vec): """ Parameters ---------- creator : DataCreator2DIsingModel Object of class DataCreator2DIsingModel that was used for generating the data that was used by the neural net. thing2vec : base_Thing2vec The trained neural net which used the data created by the creator object. """ super().__init__(creator=creator, thing2vec=thing2vec) def _get_number_of_particles_in_state(self, particles): return len(particles) def _invert_particles(self, particles): all_places = [k for k in range(self.creator.size_of_system**2)] for p in particles: all_places.remove(p) return all_places #TODO: Add option to only invert a certain area of the grid def get_inversion_questions(self, number_of_questions=100): idx_1 = [k for k in range(1,number_of_questions*2)] idx_2 = idx_1[:] random.shuffle(idx_1) random.shuffle(idx_2) first_states = [self.creator.str_to_particles(self.thing2vec.reverse_dictionary[idx_1[n]]) for n in range(number_of_questions)] second_states = [self.creator.str_to_particles(self.thing2vec.reverse_dictionary[idx_2[n]]) for n in range(number_of_questions)] first_states_inv = [self._invert_particles(s) for s in first_states] second_states_inv = [self._invert_particles(s) for s in second_states] questions = [Question(second_states_inv[k],[second_states[k],first_states_inv[k]],[first_states[k]]) for k in range(number_of_questions) if self.thing2vec.is_in_dictionary(str(first_states[k])) and self.thing2vec.is_in_dictionary(str(second_states[k])) and self.thing2vec.is_in_dictionary(str(first_states_inv[k])) and self.thing2vec.is_in_dictionary(str(second_states_inv[k]))] return questions
48.058552
191
0.629144
c86f0e98b79cc7e0aa44bfbbc6897f10181c5c30
6,781
py
Python
src/models/GravNet.py
InProgress18/GNN_code
339a0773b85d2e65e198446f54c15a48ad125674
[ "BSD-3-Clause" ]
null
null
null
src/models/GravNet.py
InProgress18/GNN_code
339a0773b85d2e65e198446f54c15a48ad125674
[ "BSD-3-Clause" ]
1
2022-02-11T19:15:55.000Z
2022-02-11T19:15:55.000Z
src/models/GravNet.py
InProgress18/GNN_code
339a0773b85d2e65e198446f54c15a48ad125674
[ "BSD-3-Clause" ]
2
2020-07-27T22:44:29.000Z
2021-01-22T05:21:18.000Z
# torch geometric implementation of network introduced in arXiv:1902.07987 import torch import torch.nn as nn import numpy as np # this network has two outputs with different numbers of features # the two outputs are called "spatial" and "learned" based on usage in GravNet class DoubleOutputNetwork(nn.Module): def __init__(self, spatial, learned): super(DoubleOutputNetwork, self).__init__() self.spatial = spatial self.learned = learned def forward(self, x): return self.spatial(x), self.learned(x) # performs message passing with input vector of weights that modify the features from torch_geometric.nn import MessagePassing class WeightedMessagePassing(MessagePassing): def message(self, x_j, weights): return np.multiply(x_j, weights) # potential functions for GravNet # (essentially kernel functions of distance in latent space) def gaussian_kernel(d_ij): return np.exp(-d_ij**2) def exponential_kernel(d_ij): return np.exp(-np.abs(d_ij)) _allowed_kernels = { 'gaussian': gaussian_kernel, 'exponential': exponential_kernel, } # the full GravNet layer # this is a sandwich of dense NN + neighbor assignment & message passing + dense NN # the first dense NN should be a DoubleOutputNetwork or similar (or a sequence that ends in such) from torch_geometric.nn import knn_graph from torch import cdist, index_select class GravNetLayer(nn.Module): def __init__(self,first_dense,n_neighbors,aggrs,second_dense,kernel='gaussian'): self.first_dense = first_dense self.n_neighbors = n_neighbors self.second_dense = second_dense if kernel not in _allowed_kernels: raise ValueError("Unrecognized kernel "+kernel+" (allowed values: "+', '.join(allowed_kernels)+")") self.kernel = _allowed_kernels[kernel] self.messengers = [] for aggr in aggrs: self.messengers.append(WeightedMessagePassing(aggr=aggr,flow="target_to_source")) def forward(self, x, batch=None): # apply first dense NN to derive spatial and learned features spatial, learned = self.first_dense(x) # use spatial to generate edge index edge_index = knn_graph(spatial, self.n_neighbors, batch, loop=False) # make the vector of distance weights using kernel neighbors = index_select(spatial,0,edge_index[1]) distances = cdist(spatial,neighbors,metric='euclidean') weights = self.kernel(distances) # use learned for message passing messages = [x] for messenger in self.messengers: messages.append(messenger(learned,weights)) # concatenate features, keep input all_features = torch.cat(messages, dim=1) # apply second dense to get final set of features final = self.second_dense(all_features) return final # a single block for the network class GravBlock(nn.Module): def __init__(self, input_dim = 10, dense_dim = 64, spatial_dim = 4, learned_dim = 22, out_dim = 48, n_neighbors = 40, aggrs = ['add','mean','max']): self.layers = nn.Sequential( # first section: 3 dense layers w/ 64 nodes, tanh activation # add 1 to input_dim b/c concatenation of mean nn.Linear(in_features=input_dim+1,out_features=dense_dim), nn.Tanh(), nn.Linear(in_features=dense_dim,out_features=dense_dim), nn.Tanh(), nn.Linear(in_features=dense_dim,out_features=dense_dim), nn.Tanh(), # second section: GravNetLayer GravNetLayer( first_dense = DoubleOutputNetwork( spatial = nn.Linear(in_features=dense_dim,out_features=spatial_dim), learned = nn.Linear(in_features=dense_dim,out_features=learned_dim), ), n_neighbors = n_neighbors, aggrs = aggrs, second_dense = nn.Sequential( nn.Linear(in_features=learned_dim,out_features=out_dim), nn.Tanh(), ), ), nn.BatchNorm1d(out_dim) ) # keep track of this in order to chain blocks together self.out_dim = out_dim def forward(self, x): # concatenate mean of features x = torch.cat([x, np.mean(x)], dim=1) # apply layers x = self.layers(x) return x # the full network, with multiple blocks class GravNet(nn.Module): # kwargs passed to GravBlocks def __init__(self, n_blocks = 4, final_dim = 128, n_clusters = 2, **kwargs): #batch norm for the input data self.inputnorm = nn.BatchNorm1d(kwargs['input_dim']) # first block just takes kwargs self.blocks = [GravBlock(**kwargs)] # subsequent blocks need to know the first block's output self.blocks.extend([GravBlock(input_dim = self.blocks[0].out_dim, **kwargs) for n in range(1, n_blocks)]) # final set of layers: dense ReLU, input from all blocks -> small dense ReLU -> small dense softmax self.final = nn.Sequential( nn.Linear(in_features=n_blocks*self.blocks[0].out_dim,out_features=final_dim), nn.ReLU(), nn.Linear(in_features=final_dim,out_features=n_clusters+1), nn.ReLU(), nn.Linear(in_features=n_clusters+1,out_features=n_clusters), nn.Softmax(), ) def forward(self, x): # apply batch norm to input (and then to all block outputs) x = self.inputnorm(x) # feed each block's output to the next all_output = [x] for block in self.blocks: block_output = block(all_output[-1]) all_output.append(block_output) # concatenate output from all blocks all_output = torch.cat(all_output[1:], dim=1) return self.final(all_output) # define the loss function # expects features in target: BxVx[energy, truth fraction, truth fraction, ...] def energy_fraction_loss(pred, target, weight=None): energy = target[:,0] truth = target[:,1:] # used for per-sensor energy weighting w/in cluster total_energy_cluster = torch.sqrt(energy*truth) # get numer and denom terms for each shower numers = torch.sum(total_energy_cluster*(pred-truth)**2,axis=1) denoms = torch.sum(total_energy_cluster,axis=1) # sum of weighted differences loss = torch.sum(numers/denoms) return loss # make a module class EnergyFractionLoss(nn.Module): def forward(self, energy, pred, truth): return energy_fraction_loss(energy, pred, truth)
40.849398
152
0.645038
4bcafa6a3c037cba9fc6f3d39372e879ed27b198
21,229
py
Python
curator/interfaces/vnv_components_interface.py
juanlucruz/tng-vnv-curator
0ce5ff79cae406e64ce257fa746ecc3590e17e7d
[ "Apache-2.0" ]
1
2022-03-04T16:02:22.000Z
2022-03-04T16:02:22.000Z
curator/interfaces/vnv_components_interface.py
juanlucruz/tng-vnv-curator
0ce5ff79cae406e64ce257fa746ecc3590e17e7d
[ "Apache-2.0" ]
15
2019-03-05T22:22:25.000Z
2019-12-12T13:52:46.000Z
curator/interfaces/vnv_components_interface.py
juanlucruz/tng-vnv-curator
0ce5ff79cae406e64ce257fa746ecc3590e17e7d
[ "Apache-2.0" ]
2
2019-02-18T13:20:48.000Z
2019-03-05T21:27:10.000Z
# Copyright (c) 2019 5GTANGO # ALL RIGHTS RESERVED. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Neither the name of the SONATA-NFV, 5GTANGO # nor the names of its contributors may be used to endorse or promote # products derived from this software without specific prior written # permission. # # # This work has been performed in the framework of the 5GTANGO project, # funded by the European Commission under Grant number 761493 through # the Horizon 2020 and 5G-PPP programmes. The authors would like to # acknowledge the contributions of their colleagues of the 5GTANGO # partner consortium (www.5gtango.eu). import os import requests import logging import json from curator.interfaces.interface import Interface from curator.database import context from curator.logger import TangoLogger _LOG = TangoLogger.getLogger('curator:interfaces', log_level=logging.DEBUG, log_json=True) # _LOG = logging.getLogger('flask.app') # States: STARTING, COMPLETED, CANCELLING, CANCELLED, ERROR class PlannerInterface(Interface): """ This is a Interface for Planner Callbacks: [ { eventActor: 'Curator', url: '/test-plans/on-change/completed', status:TEST_PLAN_STATUS.COMPLETED, }, { eventActor: 'Curator', url: '/test-plans/on-change’, } ] """ def __init__(self, cu_api_root, cu_api_version): Interface.__init__(self, cu_api_root, cu_api_version) self.__base_url = os.getenv('PLANNER_BASE') self.__running_test_plans = [] def add_new_test_plan(self, test_plan_uuid): self.__running_test_plans.append(test_plan_uuid) def send_callback(self, suffix, test_plan_uuid, result_list, status='UNKNOWN', event_actor='Curator', exception=None): url = self.__base_url + suffix payload = { 'event_actor': event_actor, 'test_plan_uuid': test_plan_uuid, 'exception': exception, 'status': status, 'test_results': result_list } headers = {"Content-type": "application/json"} _LOG.debug(f'Accesing {url}') _LOG.debug(f'Payload {payload}') try: r = requests.post(url, headers=headers, json=payload) _LOG.debug(f'ResContent {r.text}'.replace('\n', ' ')) _LOG.debug(f'ResHeaders {r.headers}') # resp = r.json() # Response should be None if r.status_code == 200: return r.status_code else: return r except Exception as e: resp = {'error': str(e), 'content': None} return resp class PlatformAdapterInterface(Interface): """ This is a Interface for Platform Adapter (PA) """ def __init__(self, cu_api_root, cu_api_version): Interface.__init__(self, cu_api_root, cu_api_version) self.base_url = os.getenv('PLATFORM_ADAPTER_BASE') # self.running_instances = [] self.events = [] self.osm_sp_usage_count = dict() self.sonata_sp_usage_count = dict() def available_platforms(self): url = '/'.join([self.base_url, 'service_platforms']) headers = {"Content-type": "application/json"} try: response = requests.get(url, headers=headers) if response.status_code == 200: return response.json() elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def available_platforms_by_type(self, sp_type): url = '/'.join([self.base_url, 'service_platforms']) headers = {"Content-type": "application/json"} try: _LOG.debug(f'Getting {url}') response = requests.get(url, headers=headers) _LOG.debug(f'Response {response.json()}') if response.status_code == 200: return list(filter(lambda x: x['type'] == sp_type, response.json())) elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def remote_download_package(self, package_id): """ Command the PA to download the package on his volume ref=https://github.com/sonata-nfv/tng-vnv-platform-adapter/wiki/curator# tng-vnv-platform-mngradapterspackagespackage_iddownload :param package_id: :return: """ url = '/'.join([self.base_url, 'adapters', 'packages', package_id, 'download']) try: response = requests.get(url) if response.status_code == 200: return response.text # FIXME: Should be a json elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def transfer_package_sonata(self, package_info, service_platform): _LOG.debug(f'Start transfer of {package_info["uuid"]}@VnV(self) TO {service_platform}') self.remote_download_package(package_info["uuid"]) package_process_uuid = self.upload_package(service_platform, package_info["package_file_uuid"]) _LOG.debug(f'Transfer complete, running {package_process_uuid}@SP_({service_platform})') return package_process_uuid def transfer_package_osm(self): """ Understanding package as the bundle of nsd + related vnfds :return: """ pass def get_service_uuid_sonata(self, service_platform, name, vendor, version): """ /adapters/<service_platform>/services/<:name>/<:vendor>/<:version>/id :param service_platform: :param name: :param vendor: :param version: :return: """ url = '/'.join([self.base_url, 'adapters', service_platform, 'services', name, vendor, version, 'id']) headers = {"Content-type": "application/json"} try: response = requests.post(url, headers=headers) if response.status_code == 200: return response.text # return response.json() # FIXME: Every request should respond a JSON elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def get_service_instantiations_inventory(self, service_platform): """ Returns a list of instantiated services { "id":"4537e905-5183-4d96-bb31-3860121e21df", "created_at":"2019-03-20T20:31:57.564Z", "updated_at":"2019-03-20T20:40:48.515Z", "status":"READY", "request_type":"CREATE_SERVICE", "instance_uuid":"143f50a9-ea11-4292-bd25-c0d4cbdabe6f", "ingresses":"[]", "egresses":"[]", "callback":"", "blacklist":"[]", "customer_uuid":null, "sla_id":null, "name":null, "error":null, "description":null, "service":{ "uuid":"c8dfa216-c1bd-46da-ac8a-fa3fb444cc16", "vendor":"eu.5gtango", "name":"ns-squid-haproxy", "version":"0.2" } } :param service_platform: :return: """ url = '/'.join([self.base_url, 'adapters', service_platform, 'instantiations']) headers = {"Content-type": "application/json"} try: response = requests.get(url, headers=headers) if response.status_code == 200: return response.json() elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def get_service_instantiation(self, service_platform, service_uuid): """ Returns a instantiated service { "id":"4537e905-5183-4d96-bb31-3860121e21df", "created_at":"2019-03-20T20:31:57.564Z", "updated_at":"2019-03-20T20:40:48.515Z", "status":"READY", "request_type":"CREATE_SERVICE", "instance_uuid":"143f50a9-ea11-4292-bd25-c0d4cbdabe6f", "ingresses":"[]", "egresses":"[]", "callback":"", "blacklist":"[]", "customer_uuid":null, "sla_id":null, "name":null, "error":null, "description":null, "service":{ "uuid":"c8dfa216-c1bd-46da-ac8a-fa3fb444cc16", "vendor":"eu.5gtango", "name":"ns-squid-haproxy", "version":"0.2" } } :param service_platform: :param service_uuid: :return: """ url = '/'.join([self.base_url, 'adapters', service_platform, 'instantiations', service_uuid]) headers = {"Content-type": "application/json"} _LOG.debug(f'Accesing {url}') try: response = requests.get(url, headers=headers) _LOG.debug(f'ResContent {response.text}') _LOG.debug(f'ResHeaders {response.headers}') if response.status_code == 200: return response.json() elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def automated_instantiation_sonata(self, service_platform, service_name, service_vendor, service_version, instance_name, test_plan_uuid, policy_id=None): """ Simpler version to instantiate a service, working for sonata :param service_platform: :param service_name: :param service_vendor: :param service_version: :param instance_name: :param callback: :return: network_service """ data = { "service_name": service_name, "service_vendor": service_vendor, "service_version": service_version, "service_platform": service_platform, "instance_name": instance_name, "callback": '/'.join([ 'http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'service-instances', instance_name, 'sp-ready']) } if policy_id: data['policy_id'] = policy_id _LOG.debug(f'Instantiation payload: {data}') url = '/'.join([self.base_url, 'adapters', 'instantiate_service']) _LOG.debug(f'Accesing {url}') headers = {"Content-type": "application/json"} try: response = requests.post(url, headers=headers, json=data) _LOG.debug(f'Response {response.text}'.replace('\n', ' ')) if response.status_code == 200 and not response.json()['error']: return response.json() elif response.json()['error']: return response.json() elif response.status_code == 404: raise FileNotFoundError(response.json) else: raise Exception(response.json()) except json.decoder.JSONDecodeError as e: msg = f'Wrong JSON from PA: {response.raw}, exception: {e}' _LOG.error(msg) return {'error': msg} except Exception as e: _LOG.exception(e) return {'error': e} def automated_instantiation_osm(self, service_platform, service_name, service_vendor, service_version, instance_name, test_plan_uuid): """ Simpler version to instantiate a service, working for sonata :param service_platform: :param service_name: :param service_vendor: :param service_version: :param instance_name: :param callback: :return: network_service """ data = { "service_name": service_name, "service_vendor": service_vendor, "service_version": service_version, "service_platform": service_platform, "instance_name": instance_name, "callback": '/'.join([ 'http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'service-instances', instance_name, 'sp-ready']) } _LOG.debug(f'Instantiation payload: {data}') url = '/'.join([self.base_url, 'adapters', 'instantiate_service']) _LOG.debug(f'Accesing {url}') headers = {"Content-type": "application/json"} try: response = requests.post(url, headers=headers, json=data) _LOG.debug(f'Response {response.text}'.replace('\n', ' ')) if response.status_code == 200: return response.json() elif response.json()['error']: return response.json() elif response.status_code == 404: raise FileNotFoundError(response.json) else: raise Exception(response.json()) except json.decoder.JSONDecodeError as e: msg = f'Wrong JSON from PA: {response.raw}, exception: {e}' _LOG.error(msg) return {'error': msg} except Exception as e: _LOG.exception(e) return {'error': e} def shutdown_package(self, service_platform, instance_uuid, package_uploaded): """ Shutdowns the instance and removes the package from the SP :param service_platform: :param instance_uuid: :return: """ # url = '/'.join([self.base_url, 'adapters', service_platform, 'instantiations']) url = '/'.join([self.base_url, 'adapters', service_platform, 'instantiations', 'terminate']) data = {"instance_uuid": instance_uuid, "request_type": "TERMINATE_SERVICE", "package_uploaded": package_uploaded} headers = {"Content-type": "application/json"} try: _LOG.debug(f'Accesing {url}') _LOG.debug(f'Payload {data}') response = requests.post(url, headers=headers, json=data) _LOG.debug(f'ResContent {response.text}'.replace('\n', ' ')) _LOG.debug(f'ResHeaders {response.headers}') if response.status_code == 200: return response.json() elif response.status_code == 404: raise FileNotFoundError except json.decoder.JSONDecodeError as e: msg = f'Wrong JSON from PA: {response.raw}, exception: {e}' _LOG.error(msg) return {'error': msg} except Exception as e: _LOG.exception(e) return {'error': e} def upload_package(self, platform, package_file_uuid): """ {"package_process_uuid":"8f3a26b6-34e4-45e4-b7a3-17f6c5a55820","status":"running","error_msg":null} :param platform: :param package_uuid: :return: """ url = '/'.join([self.base_url, 'adapters', platform, 'packages']) data = {"package": f"/app/packages/{package_file_uuid}.tgo"} headers = {"Content-type": "application/json"} try: response = requests.post(url, headers=headers, json=data) if response.status_code == 200: return response.json() elif response.status_code == 404: raise FileNotFoundError except Exception as e: _LOG.exception(e) raise e def delete_package_sonata(self, service_platform, package_uuid, name=None, vendor=None, version=None): # if not (name and vendor and version): # # Get packages and filter by uuid offline, asign to vars # package_inventory_url = '/'.join([self.base_url, 'adapters', service_platform, 'packages']) # response = requests.get() # # name = str() # vendor = str() # version = str() url = '/'.join([self.base_url, 'adapters', service_platform, 'packages', name, vendor, version]) response = requests.delete(url) def get_inventory(self, platform): url = '/'.join([self.base_url, 'adapters', platform, 'packages']) class ExecutorInterface(Interface): """ This is a Interface class for V&V Executor """ def __init__(self, cu_api_root, cu_api_version): Interface.__init__(self, cu_api_root, cu_api_version) self.base_url = os.getenv('EXECUTOR_BASE') self.version = 'v1' self.api = 'api' self.events = [] def execution_request(self, tdi, test_plan_uuid, service_instantiation_time=None, docker_host=None): """ :param tdi: :param test_plan_uuid: :param service_instantiation_time: :param docker_host: :return: """ # TODO: Specify content in the callbacks? data = { 'test': tdi, 'service_instantiation_time': service_instantiation_time, "callbacks": [ { 'name': 'running', 'path': '/'.join( ['http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'change']) }, { 'name': 'cancel', 'path': '/'.join( ['http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'tests', '<test_uuid>', 'cancel']) }, { 'name': 'finish', 'path': '/'.join( ['http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'tests', '<test_uuid>', 'finish']) } ] } if docker_host: data['execution_host'] = docker_host url = '/'.join([self.base_url, self.api, self.version, 'test-executions']) headers = {"Content-type": "application/json"} _LOG.debug(f'Sending to executor {url} with payload {json.dumps(data)}') try: response = requests.post(url, headers=headers, json=data) _LOG.debug(f'Rstatus: {response.status_code}') _LOG.debug(f'Rdata: {response.content}') _LOG.debug(f'RESPONSE decoded: {response.json()}') if response.status_code == 202: # and not response.json()['error']: return response.json() elif response.status_code == 400: return response.json() elif response.status_code == 404: raise FileNotFoundError(response.json()) else: raise ValueError(f'Code not expected, {response.content}, status={response.status_code}') except Exception as e: _LOG.exception(e) raise e def execution_cancel(self, test_plan_uuid, test_uuid): data = { "callbacks": [ { 'name': 'cancel', 'path': '/'.join( ['http:/', context['host'], self.own_api_root, self.own_api_version, 'test-preparations', test_plan_uuid, 'tests', '<test_uuid>', 'cancel']) } ] } url = '/'.join([self.base_url, self.api, self.version, 'test-executions', test_uuid, 'cancel']) headers = {"Content-type": "application/json"} try: response = requests.delete(url, headers=headers, json=data) _LOG.debug(f'Rstatus: {response.status_code}') _LOG.debug(f'Rdata: {response.raw}') if response.status_code == 200: # and not response.json()['error']: return response.json() elif response.status_code == 404: raise FileNotFoundError(response.json()) elif response.status_code == 500: raise RuntimeError('Server error ', response.content) else: raise ValueError(f'Code not expected, {response.content}, status={response.status_code}') except Exception as e: _LOG.exception(e) raise e
39.532588
122
0.56875
fb13b3eceb65208514d8d90465afdd7d8e44c9c9
935
py
Python
task_inventory/order_31_to_60/order_33_different_charts.py
flyingSprite/spinelle
57834368abb5fb4eb73a8fb29226a30014254e40
[ "MIT" ]
1
2016-07-22T01:58:53.000Z
2016-07-22T01:58:53.000Z
task_inventory/order_31_to_60/order_33_different_charts.py
flyingSprite/spinelle
57834368abb5fb4eb73a8fb29226a30014254e40
[ "MIT" ]
5
2016-07-26T02:02:47.000Z
2018-05-16T08:08:42.000Z
task_inventory/order_31_to_60/order_33_different_charts.py
flyingSprite/spinelle
57834368abb5fb4eb73a8fb29226a30014254e40
[ "MIT" ]
null
null
null
# plot a sine wave from 0 to 4pi import pylab as lib class DifferentCharts(object): @staticmethod def draw_sin_chart(): x_values = lib.arange(0.0, lib.math.pi * 4, 0.01) y_values = lib.sin(x_values) lib.plot(x_values, y_values, linewidth=1.0) lib.xlabel('x') lib.ylabel('sin(x)') lib.title('Simple plot') # If show grid lines in chart lib.grid(True) lib.savefig("sin.png") lib.show() @staticmethod def draw_cos_chart(): x_values = lib.arange(0.0, lib.math.pi * 4, 0.01) y_values = lib.cos(x_values) lib.plot(x_values, y_values, linewidth=1.0) lib.xlabel('x') lib.ylabel('sin(x)') lib.title('Simple plot') # If show grid lines in chart lib.grid(True) lib.savefig("sin.png") lib.show() DifferentCharts.draw_sin_chart() DifferentCharts.draw_cos_chart()
23.974359
57
0.589305
05e0952bf4c50b9107fdeb10263b6b9e068932c9
2,433
py
Python
Jun_14.py
keiraaaaa/Leetcode
90bf174f5613c79119aec58a1f0d1d2c1c3496bb
[ "MIT" ]
null
null
null
Jun_14.py
keiraaaaa/Leetcode
90bf174f5613c79119aec58a1f0d1d2c1c3496bb
[ "MIT" ]
null
null
null
Jun_14.py
keiraaaaa/Leetcode
90bf174f5613c79119aec58a1f0d1d2c1c3496bb
[ "MIT" ]
null
null
null
''' ############################ # 142. Linked List Cycle II ############################ # Definition for singly-linked list. class ListNode(object): def __init__(self, x): self.val = x self.next = None class Solution(object): def detectCycle(self, head): """ :type head: ListNode :rtype: ListNode """ if not head or not head.next: return None slow, fast = head, head while fast.next!=None and fast.next.next!=None: slow = slow.next fast = fast.next.next if fast == slow: cycle = True break; if fast.next==None or fast.next.next==None: return None else: # return True slow_new = head while slow_new != slow: slow_new = slow_new.next slow = slow.next return slow x = [] x = ListNode(1) # x.next = ListNode(2) # x.next.next = ListNode(3) # x.next.next.next = x.next solu = Solution() # print (x.next.next.next.val) print (solu.detectCycle(x)) ''' ################### # 148. Sort List ################### # Definition for singly-linked list. class ListNode: def __init__(self, x): self.val = x self.next = None class Solution: def merge(self, l1, l2): merged = ListNode(0) tail = merged while l1!=None and l2!=None: if l1.val>l2.val: tail.next = l2 l2 = l2.next else: tail.next = l1 l1 = l1.next tail = tail.next if l1==None: tail.next = l2 if l2==None: tail.next = l1 return merged.next def sortList(self, head): """ :type head: ListNode :rtype: ListNode """ if head==None or head.next==None: return head slow, fast = head, head while slow.next != None and fast.next != None and fast.next.next != None: slow = slow.next fast = fast.next.next prev = slow.next slow.next = None # print (head.val, prev.val) return self.merge(self.sortList(head), self.sortList(prev)) x = ListNode(4) x.next = ListNode(2) x.next.next = ListNode(1) x.next.next.next = ListNode(3) solu = Solution() s = solu.sortList(x) print (s.val)
22.321101
81
0.491985
48d78d82fd9441b33703a650065438cfabaa4b9b
4,101
py
Python
configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res152_atrw_256x256.py
pallgeuer/mmpose
d3c17d5e6bdb9dbaca19f3bf53aa2802105355fd
[ "Apache-2.0" ]
null
null
null
configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res152_atrw_256x256.py
pallgeuer/mmpose
d3c17d5e6bdb9dbaca19f3bf53aa2802105355fd
[ "Apache-2.0" ]
null
null
null
configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/atrw/res152_atrw_256x256.py
pallgeuer/mmpose
d3c17d5e6bdb9dbaca19f3bf53aa2802105355fd
[ "Apache-2.0" ]
null
null
null
_base_ = [ '../../../../_base_/default_runtime.py', '../../../../_base_/datasets/atrw.py' ] evaluation = dict(interval=10, metric='mAP', save_best='AP') optimizer = dict( type='Adam', lr=5e-4, ) optimizer_config = dict(grad_clip=None) # learning policy lr_config = dict( policy='step', warmup='linear', warmup_iters=500, warmup_ratio=0.001, step=[170, 200]) total_epochs = 210 log_config = dict( interval=1, hooks=[ dict(type='TextLoggerHook'), # dict(type='TensorboardLoggerHook') ]) channel_cfg = dict( num_output_channels=15, dataset_joints=15, dataset_channel=[ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], ], inference_channel=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]) # model settings model = dict( type='TopDown', pretrained='torchvision://resnet152', backbone=dict(type='ResNet', depth=152), keypoint_head=dict( type='TopdownHeatmapSimpleHead', in_channels=2048, out_channels=channel_cfg['num_output_channels'], loss_keypoint=dict(type='JointsMSELoss', use_target_weight=True)), train_cfg=dict(), test_cfg=dict( flip_test=True, post_process='default', shift_heatmap=True, modulate_kernel=11)) data_cfg = dict( image_size=[256, 256], heatmap_size=[64, 64], num_output_channels=channel_cfg['num_output_channels'], num_joints=channel_cfg['dataset_joints'], dataset_channel=channel_cfg['dataset_channel'], inference_channel=channel_cfg['inference_channel'], soft_nms=False, nms_thr=1.0, oks_thr=0.9, vis_thr=0.2, use_gt_bbox=True, det_bbox_thr=0.0, bbox_file='', ) train_pipeline = [ dict(type='LoadImageFromFile'), dict( type='TopDownGetBboxCenterScale', padding=1.0, shift_prob=0.3, shift_factor=0.2), dict(type='TopDownRandomFlip', flip_prob=0.5), dict( type='TopDownHalfBodyTransform', num_joints_half_body=8, prob_half_body=0.3), dict( type='TopDownGetRandomScaleRotation', rot_factor=40, scale_factor=0.5), dict(type='TopDownAffine'), dict(type='ToTensor'), dict( type='NormalizeTensor', mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]), dict(type='TopDownGenerateTarget', sigma=2), dict( type='Collect', keys=['img', 'target', 'target_weight'], meta_keys=[ 'image_file', 'joints_3d', 'joints_3d_visible', 'center', 'scale', 'rotation', 'bbox_score', 'flip_pairs' ]), ] val_pipeline = [ dict(type='LoadImageFromFile'), dict(type='TopDownGetBboxCenterScale', padding=1.0), dict(type='TopDownAffine'), dict(type='ToTensor'), dict( type='NormalizeTensor', mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]), dict( type='Collect', keys=['img'], meta_keys=[ 'image_file', 'center', 'scale', 'rotation', 'bbox_score', 'flip_pairs' ]), ] test_pipeline = val_pipeline data_root = 'data/atrw' data = dict( samples_per_gpu=64, workers_per_gpu=2, val_dataloader=dict(samples_per_gpu=32), test_dataloader=dict(samples_per_gpu=32), train=dict( type='AnimalATRWDataset', ann_file=f'{data_root}/annotations/keypoint_train.json', img_prefix=f'{data_root}/images/train/', data_cfg=data_cfg, pipeline=train_pipeline, dataset_info={{_base_.dataset_info}}), val=dict( type='AnimalATRWDataset', ann_file=f'{data_root}/annotations/keypoint_val.json', img_prefix=f'{data_root}/images/val/', data_cfg=data_cfg, pipeline=val_pipeline, dataset_info={{_base_.dataset_info}}), test=dict( type='AnimalATRWDataset', ann_file=f'{data_root}/annotations/keypoint_val.json', img_prefix=f'{data_root}/images/val/', data_cfg=data_cfg, pipeline=test_pipeline, dataset_info={{_base_.dataset_info}}), )
28.089041
79
0.61863
d78a78e190bd7b35bc01af17c5af134bb59f332d
4,085
py
Python
extractor/network/ResNet34.py
Mingqi-Yuan/ConvolutionBox
446fa8eeac7852fee3fcd0b4391fdcb82ce25552
[ "MIT" ]
13
2019-03-28T02:15:56.000Z
2020-03-09T11:26:56.000Z
extractor/network/ResNet34.py
Mingqi-Yuan/ConvolutionBox
446fa8eeac7852fee3fcd0b4391fdcb82ce25552
[ "MIT" ]
null
null
null
extractor/network/ResNet34.py
Mingqi-Yuan/ConvolutionBox
446fa8eeac7852fee3fcd0b4391fdcb82ce25552
[ "MIT" ]
3
2019-04-02T02:57:11.000Z
2020-05-04T04:59:26.000Z
""" MIT License Copyright (c) 2019 Mingqi Yuan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ """ Encoding = UTF-8 By Mingqi, Yuan, 2019/3/31 Usage: Network---ResNet50 """ from utils.generate_unique_id import generate_unique_id import tensorflow as tf import numpy as np import cv2 tf.enable_eager_execution() def Conv2d_BN(x, nb_filter, kernel_size, strides=(1, 1), padding='same', name=None): if name is not None: bn_name = name + '_bn' conv_name = name + '_conv' else: bn_name = None conv_name = None x = tf.layers.Conv2D(nb_filter, kernel_size, padding=padding, strides=strides, activation='relu', name=conv_name)(x) x = tf.layers.BatchNormalization(axis=3, name=bn_name)(x) return x def Conv_Block(inpt, nb_filter, kernel_size, strides=(1, 1), with_conv_shortcut=False): x = Conv2d_BN(inpt, nb_filter=nb_filter, kernel_size=kernel_size, strides=strides, padding='same') x = Conv2d_BN(x, nb_filter=nb_filter, kernel_size=kernel_size, padding='same') if with_conv_shortcut: shortcut = Conv2d_BN(inpt, nb_filter=nb_filter, strides=strides, kernel_size=kernel_size) x = tf.add(x, shortcut) return x else: x = tf.add(x, inpt) return x def ResNet34(path_to_image): img_dir = path_to_image img_data = np.array(cv2.imread(img_dir, 1)).astype('float32') img_data = cv2.resize(img_data, (224, 224)) img_data = tf.reshape(img_data, [1, img_data.shape[0], img_data.shape[1], 3]) x = Conv2d_BN(img_data, nb_filter=64, kernel_size=(7, 7), strides=(2, 2), padding='valid') x = tf.layers.MaxPooling2D(pool_size=(3, 3), strides=(2, 2), padding='same')(x) # (56,56,64) x = Conv_Block(x, nb_filter=64, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=64, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=64, kernel_size=(3, 3)) # (28,28,128) x = Conv_Block(x, nb_filter=128, kernel_size=(3, 3), strides=(2, 2), with_conv_shortcut=True) x = Conv_Block(x, nb_filter=128, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=128, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=128, kernel_size=(3, 3)) # (14,14,256) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3), strides=(2, 2), with_conv_shortcut=True) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=256, kernel_size=(3, 3)) # (7,7,512) x = Conv_Block(x, nb_filter=512, kernel_size=(3, 3), strides=(2, 2), with_conv_shortcut=True) x = Conv_Block(x, nb_filter=512, kernel_size=(3, 3)) x = Conv_Block(x, nb_filter=512, kernel_size=(3, 3)) x = tf.layers.AveragePooling2D(pool_size=(7, 7), strides=2)(x) feature = x.numpy() feature = feature.astype('uint8') feature = np.reshape(feature, [32, 16]) result_dir = 'static/images/extractor/' + 'ResNet34_' + generate_unique_id() cv2.imwrite(result_dir, feature) return result_dir
40.04902
120
0.701591
1e67d5a86a0361bf479204dab1b08bb67eb94217
7,308
py
Python
test/python/pulse/test_cmd_def.py
diego-plan9/qiskit-terra
a4120d70bd631ad2add228fdb1f86706bc5f2339
[ "Apache-2.0" ]
1
2018-05-29T03:58:03.000Z
2018-05-29T03:58:03.000Z
test/python/pulse/test_cmd_def.py
diego-plan9/qiskit-terra
a4120d70bd631ad2add228fdb1f86706bc5f2339
[ "Apache-2.0" ]
3
2018-11-13T17:33:37.000Z
2018-12-03T09:35:00.000Z
test/python/pulse/test_cmd_def.py
diego-plan9/qiskit-terra
a4120d70bd631ad2add228fdb1f86706bc5f2339
[ "Apache-2.0" ]
2
2017-12-03T15:48:14.000Z
2018-03-11T13:08:03.000Z
# -*- coding: utf-8 -*- # This code is part of Qiskit. # # (C) Copyright IBM 2017, 2019. # # This code is licensed under the Apache License, Version 2.0. You may # obtain a copy of this license in the LICENSE.txt file in the root directory # of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. # # Any modifications or derivative works of this code must retain this # copyright notice, and modified files need to carry a notice indicating # that they have been altered from the originals. """Test for the CmdDef object.""" import numpy as np from qiskit.test import QiskitTestCase from qiskit.test.mock import FakeProvider from qiskit.qobj.converters import QobjToInstructionConverter from qiskit.qobj import PulseQobjInstruction from qiskit.pulse import (CmdDef, SamplePulse, Schedule, PulseError, PersistentValue, ShiftPhase) from qiskit.pulse.schedule import ParameterizedSchedule class TestCmdDef(QiskitTestCase): """Test CmdDef methods. Deprecated.""" def setUp(self): self.provider = FakeProvider() self.backend = self.provider.get_backend('fake_openpulse_2q') self.config = self.backend.configuration() def test_get_backend(self): """Test that backend is fetchable with cmd def present.""" def test_init(self): """Test `init`, `has`.""" sched = Schedule() sched.append(SamplePulse(np.ones(5))(self.config.drive(0))) cmd_def = CmdDef({('tmp', 0): sched}) self.assertTrue(cmd_def.has('tmp', 0)) def test_add(self): """Test `add`, `has`, `get`, `cmdss`.""" sched = Schedule() sched.append(SamplePulse(np.ones(5))(self.config.drive(0))) cmd_def = CmdDef() cmd_def.add('tmp', 1, sched) cmd_def.add('tmp', 0, sched) self.assertEqual(sched.instructions, cmd_def.get('tmp', (0,)).instructions) self.assertIn('tmp', cmd_def.cmds()) self.assertEqual(cmd_def.cmd_qubits('tmp'), [(0,), (1,)]) def test_pop(self): """Test pop with default.""" sched = Schedule() sched.append(SamplePulse(np.ones(5))(self.config.drive(0))) cmd_def = CmdDef() cmd_def.add('tmp', 0, sched) cmd_def.pop('tmp', 0) self.assertFalse(cmd_def.has('tmp', 0)) with self.assertRaises(PulseError): cmd_def.pop('not_there', (0,)) def test_repr(self): """Test repr.""" sched = Schedule() sched.append(SamplePulse(np.ones(5))(self.config.drive(0))) cmd_def = CmdDef({('tmp', 0): sched}) repr(cmd_def) def test_parameterized_schedule(self): """Test building parameterized schedule.""" cmd_def = CmdDef() converter = QobjToInstructionConverter([]) qobj = PulseQobjInstruction(name='pv', ch='u1', t0=10, val='P2*cos(np.pi*P1)') converted_instruction = converter(qobj) cmd_def.add('pv_test', 0, converted_instruction) self.assertEqual(cmd_def.get_parameters('pv_test', 0), ('P1', 'P2')) sched = cmd_def.get('pv_test', 0, 0, P2=-1) self.assertEqual(sched.instructions[0][-1].command.value, -1) with self.assertRaises(PulseError): cmd_def.get('pv_test', 0, 0, P1=-1) with self.assertRaises(PulseError): cmd_def.get('pv_test', 0, P1=1, P2=2, P3=3) sched = cmd_def.pop('pv_test', 0, 0, P2=-1) self.assertEqual(sched.instructions[0][-1].command.value, -1) self.assertFalse(cmd_def.has('pv_test', 0)) def test_sequenced_parameterized_schedule(self): """Test parametrized schedule consist of multiple instruction. """ cmd_def = CmdDef() converter = QobjToInstructionConverter([]) qobjs = [PulseQobjInstruction(name='fc', ch='d0', t0=10, phase='P1'), PulseQobjInstruction(name='fc', ch='d0', t0=20, phase='P2'), PulseQobjInstruction(name='fc', ch='d0', t0=30, phase='P3')] converted_instruction = [converter(qobj) for qobj in qobjs] cmd_def.add('inst_seq', 0, ParameterizedSchedule(*converted_instruction, name='inst_seq')) with self.assertRaises(PulseError): cmd_def.get('inst_seq', 0, P1=1, P2=2, P3=3, P4=4, P5=5) with self.assertRaises(PulseError): cmd_def.get('inst_seq', 0, P1=1) with self.assertRaises(PulseError): cmd_def.get('inst_seq', 0, 1, 2, 3, P1=1) sched = cmd_def.get('inst_seq', 0, 1, 2, 3) self.assertEqual(sched.instructions[0][-1].phase, 1) self.assertEqual(sched.instructions[1][-1].phase, 2) self.assertEqual(sched.instructions[2][-1].phase, 3) sched = cmd_def.get('inst_seq', 0, P1=1, P2=2, P3=3) self.assertEqual(sched.instructions[0][-1].phase, 1) self.assertEqual(sched.instructions[1][-1].phase, 2) self.assertEqual(sched.instructions[2][-1].phase, 3) sched = cmd_def.get('inst_seq', 0, 1, 2, P3=3) self.assertEqual(sched.instructions[0][-1].phase, 1) self.assertEqual(sched.instructions[1][-1].phase, 2) self.assertEqual(sched.instructions[2][-1].phase, 3) def test_negative_phases(self): """Test bind parameters with negative values.""" cmd_def = CmdDef() converter = QobjToInstructionConverter([]) qobjs = [PulseQobjInstruction(name='fc', ch='d0', t0=10, phase='P1'), PulseQobjInstruction(name='fc', ch='d0', t0=20, phase='-(P2)')] converted_instruction = [converter(qobj) for qobj in qobjs] cmd_def.add('inst_seq', 0, ParameterizedSchedule(*converted_instruction, name='inst_seq')) sched = cmd_def.get('inst_seq', 0, -1, 2) self.assertEqual(sched.instructions[0][-1].phase, -1) self.assertEqual(sched.instructions[1][-1].phase, -2) def test_build_cmd_def(self): """Test building of parameterized cmd_def from defaults.""" defaults = self.backend.defaults() cmd_def = defaults.build_cmd_def() cx_pv = cmd_def.get('ParametrizedGate', (0, 1), P2=0) pv_found = False for _, instr in cx_pv.instructions: cmd = instr.command if isinstance(cmd, PersistentValue): self.assertEqual(cmd.value, 1) pv_found = True self.assertTrue(pv_found) self.assertEqual(cmd_def.get_parameters('u1', 0), ('P0',)) u1_minus_pi = cmd_def.get('u1', 0, P0=np.pi) shift_phase = u1_minus_pi.instructions[0][-1] self.assertEqual(shift_phase.phase, -np.pi) def test_default_phases_parameters(self): """Test parameters for phases.""" defaults = self.backend.defaults() cmd_def = defaults.build_cmd_def() for i in range(2): u1_phases = [] for _, instr in cmd_def.get('u1', i, P0=np.pi).instructions: if isinstance(instr, ShiftPhase): u1_phases.append(instr.phase) self.assertEqual(u1_phases, [-np.pi]) u2_phases = [] for _, instr in cmd_def.get('u2', i, P0=0, P1=np.pi).instructions: if isinstance(instr, ShiftPhase): u2_phases.append(instr.phase) self.assertEqual(u2_phases, [-np.pi, 0])
38.87234
98
0.6211
95e27a45ad193d012d8b4fea3c7658abd0698045
273
py
Python
graystruct/tests/__init__.py
kondalrao/graystruct
dc068b69c35fa625664982d6b044547c4a82e134
[ "BSD-3-Clause" ]
3
2015-08-14T08:12:24.000Z
2018-06-15T09:52:34.000Z
graystruct/tests/__init__.py
kondalrao/graystruct
dc068b69c35fa625664982d6b044547c4a82e134
[ "BSD-3-Clause" ]
2
2015-03-01T21:42:26.000Z
2015-03-01T21:56:16.000Z
graystruct/tests/__init__.py
kondalrao/graystruct
dc068b69c35fa625664982d6b044547c4a82e134
[ "BSD-3-Clause" ]
2
2019-05-09T21:38:19.000Z
2019-11-24T20:47:41.000Z
# -*- coding: utf-8 -*- # Copyright (c) 2015 Simon Jagoe and Enthought Ltd # All rights reserved. # # This software may be modified and distributed under the terms # of the 3-clause BSD license. See the LICENSE.txt file for details. from __future__ import absolute_import
34.125
69
0.750916
969b037978a813623d884e203c360c428e57b08f
331
py
Python
CodeSignal/Arcade/The_Core/Level_07_Book_Market/055_Find_Email_Domain.py
Zubieta/CPP
fb4a3cbf2e4edcc590df15663cd28fb9ecab679c
[ "MIT" ]
8
2017-03-02T07:56:45.000Z
2021-08-07T20:20:19.000Z
CodeSignal/Arcade/The_Core/Level_07_Book_Market/055_Find_Email_Domain.py
zubie7a/Algorithms
fb4a3cbf2e4edcc590df15663cd28fb9ecab679c
[ "MIT" ]
null
null
null
CodeSignal/Arcade/The_Core/Level_07_Book_Market/055_Find_Email_Domain.py
zubie7a/Algorithms
fb4a3cbf2e4edcc590df15663cd28fb9ecab679c
[ "MIT" ]
1
2021-08-07T20:20:20.000Z
2021-08-07T20:20:20.000Z
# https://app.codesignal.com/arcade/code-arcade/book-market/TXFLopNcCNbJLQivP def findEmailDomain(address): # Find the domain of a given email address, be careful # with @ signs previous to the actual one, the address # may not be valid but we still want the domain! parts = address.split("@") return parts[-1]
41.375
77
0.716012
71d5460ea4a4105ba87772bbe94df08ade0aed0a
287
py
Python
enterprise_course_api/users/apps.py
Wetrain/mmu-course-api
b304a5a26459c8fecdba4c5b10bfdf93a4b2ac54
[ "MIT" ]
null
null
null
enterprise_course_api/users/apps.py
Wetrain/mmu-course-api
b304a5a26459c8fecdba4c5b10bfdf93a4b2ac54
[ "MIT" ]
null
null
null
enterprise_course_api/users/apps.py
Wetrain/mmu-course-api
b304a5a26459c8fecdba4c5b10bfdf93a4b2ac54
[ "MIT" ]
null
null
null
from django.apps import AppConfig class UsersConfig(AppConfig): name = 'enterprise_course_api.users' verbose_name = "Users" def ready(self): """Override this to put in: Users system checks Users signal registration """ pass
20.5
40
0.61324
8e87737751c12ec3b09caa575521e5cafab4c0f0
991
py
Python
data/train/python/8e87737751c12ec3b09caa575521e5cafab4c0f0setup_controllers.py
harshp8l/deep-learning-lang-detection
2a54293181c1c2b1a2b840ddee4d4d80177efb33
[ "MIT" ]
84
2017-10-25T15:49:21.000Z
2021-11-28T21:25:54.000Z
data/train/python/8e87737751c12ec3b09caa575521e5cafab4c0f0setup_controllers.py
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
5
2018-03-29T11:50:46.000Z
2021-04-26T13:33:18.000Z
data/train/python/8e87737751c12ec3b09caa575521e5cafab4c0f0setup_controllers.py
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
24
2017-11-22T08:31:00.000Z
2022-03-27T01:22:31.000Z
#! /usr/bin/env python import os, roslib, time roslib.load_manifest('openrave_actionlib') roslib.load_manifest('pr2_controller_manager') import rospy, sys import rosparam import yaml from pr2_controller_manager import pr2_controller_manager_interface from pr2_mechanism_msgs.msg import MechanismStatistics from pr2_mechanism_msgs.srv import * pr2_controller_manager_interface.stop_controller('l_arm_controller') pr2_controller_manager_interface.stop_controller('r_arm_controller') pr2_controller_manager_interface.stop_controller('torso_controller') name_yaml = yaml.load(open(os.path.join(roslib.packages.get_pkg_dir('openrave_actionlib'),'pr2_midbody_controller.yaml'))) rosparam._set_param("",name_yaml) time.sleep(0.5) # wait for parameter server rospy.wait_for_service('pr2_controller_manager/load_controller') rospy.ServiceProxy('pr2_controller_manager/load_controller', LoadController)('midbody_controller') pr2_controller_manager_interface.start_controller('midbody_controller')
41.291667
122
0.860747
f179c830e41c62afcfce6bf18e1c6486b1d3813c
7,016
py
Python
bot/src/tests/yellowbot/storage/_test_datastorestorageservice.py
rainbowbreeze/yellowbutler
1dac7d312fce78127cac45f17da526c6a66be36a
[ "Apache-2.0" ]
null
null
null
bot/src/tests/yellowbot/storage/_test_datastorestorageservice.py
rainbowbreeze/yellowbutler
1dac7d312fce78127cac45f17da526c6a66be36a
[ "Apache-2.0" ]
null
null
null
bot/src/tests/yellowbot/storage/_test_datastorestorageservice.py
rainbowbreeze/yellowbutler
1dac7d312fce78127cac45f17da526c6a66be36a
[ "Apache-2.0" ]
null
null
null
"""Test Firestore in Datastore more storage service """ from typing import Any, Dict from unittest import TestCase import os import datetime from yellowbot.storage.datastorestorageservice import DatastoreStorageService, BaseEntity class DummyEntity(BaseEntity): """Entity to store information during this test """ url: str last_check: datetime.date def __init__(self) -> None: """ """ super().__init__() # Sets fundamental entity properties self.url: None self.last_check: None @staticmethod def get_entity_name() -> str: return "DummyEntity" def to_dict(self) -> Dict[str, Any]: fields: Dict[str, Any] = {} if hasattr(self, "url"): fields["url"] = self.url if hasattr(self, "last_check"): fields["last_check"] = self.last_check return fields def from_dict(self, source_dict: dict): if "url" in source_dict: self.url = source_dict["url"] if "last_check" in source_dict: self.last_check = source_dict["last_check"] return self class TestDatastoreStorageService(TestCase): def setUp(self): self._datastore = DatastoreStorageService() pass def tearDown(self): self._datastore.delete_all(DummyEntity) def test_delete_all(self): # Check for errors if no entities are stored self._datastore.delete_all(DummyEntity) self._datastore.delete_all(DummyEntity) def test_name(self): nameclass = DummyEntity self.assertEqual(DummyEntity.get_entity_name(), nameclass.get_entity_name()) def test_write_and_read(self): # ---- Tests for adding new entities to the datastore ---- # Add entity 1 to the datastore test_entity1 = self._create_dummy_entity() entity_id1 = self._datastore.put(test_entity1) self.assertIsNotNone(entity_id1) self.assertEqual(entity_id1, test_entity1.id) read_entities = self._datastore.get_all(DummyEntity) self.assertEqual(1, len(read_entities)) self.assertEqual(test_entity1.id, read_entities[0].id) self.assertEqual(test_entity1.url, read_entities[0].url) # Checks timestamp() because the returned object from Datastore is a DatetimeWithNanoseconds # self.assertEqual(test_entity1.last_check.timestamp(), test_items[0].last_check.timestamp()) # Add entity 2 to the datastore test_entity2 = self._create_dummy_entity() entity_id2 = self._datastore.put(test_entity2) self.assertIsNotNone(entity_id2) self.assertEqual(entity_id2, test_entity2.id) # And check total database elements read_entities = self._datastore.get_all(DummyEntity) self.assertEqual(2, len(read_entities)) # Add entity 3 to the datastore test_entity3 = self._create_dummy_entity() entity_id3 = self._datastore.put(test_entity3) self.assertIsNotNone(entity_id3) self.assertEqual(entity_id3, test_entity3.id) # And check total database elements read_entities = self._datastore.get_all(DummyEntity) self.assertEqual(3, len(read_entities)) # ---- Tests for retrieving entities from the datastore using keys ---- # Get entity 2 by id read_entity = self._datastore.get_by_id(DummyEntity, entity_id2) self.assertIsNotNone(read_entity) self.assertEqual(test_entity2.id, read_entity.id) self.assertEqual(test_entity2.url, read_entity.url) #self.assertEqual(test_entity2.last_check.timestamp(), read_entity.last_check.timestamp()) # Get entity 3 by id read_entity = self._datastore.get_by_id(DummyEntity, entity_id3) self.assertIsNotNone(read_entity) self.assertEqual(test_entity3.id, read_entity.id) self.assertEqual(test_entity3.url, read_entity.url) #self.assertEqual(test_entity3.last_check.timestamp(), read_entity.last_check.timestamp()) # Get entity 1 by id read_entity = self._datastore.get_by_id(DummyEntity, entity_id1) self.assertIsNotNone(read_entity) self.assertEqual(test_entity1.id, read_entity.id) self.assertEqual(test_entity1.url, read_entity.url) #self.assertEqual(test_entity3.last_check.timestamp(), read_entity.last_check.timestamp()) # Unable to read an entity by wrong id read_entity = self._datastore.get_by_id(DummyEntity, 123123812381) self.assertIsNone(read_entity) # Get entity 2 by url read_entities = self._datastore.get_by_property(DummyEntity, "url", "=", test_entity2.url) self.assertEqual(1, len(read_entities)) read_entity = read_entities[0] self.assertIsNotNone(read_entity) self.assertEqual(test_entity2.id, read_entity.id) self.assertEqual(test_entity2.url, read_entity.url) #self.assertEqual(test_entity2.last_check.timestamp(), read_entity.last_check.timestamp()) # Unable to read an entity by wrong url read_entities = self._datastore.get_by_property(DummyEntity, "url", "=", "RANDOM_URL_NOT_EXISTING") self.assertEqual(0, len(read_entities)) # ---- Tests for updating entities from the datastore ---- test_entity2_new = self._create_dummy_entity() test_entity2.url = test_entity2_new.url test_entity2.last_check = test_entity2_new.last_check entity_id2_new = self._datastore.put(test_entity2) self.assertEqual(entity_id2, entity_id2_new) # Check is the same id read_entity = self._datastore.get_by_id(DummyEntity, entity_id2) self.assertIsNotNone(read_entity) self.assertEqual(test_entity2.id, read_entity.id) self.assertEqual(test_entity2.url, read_entity.url) #self.assertEqual(test_entity4.last_check.timestamp(), read_entity.last_check.timestamp()) # ---- Tests for deleting entities from the datastore ---- # Delete 1 entity self._datastore.delete_by_id(DummyEntity, entity_id1) # It should still work, despite the entity is not present anymore self._datastore.delete_by_id(DummyEntity, entity_id1) # To be sure, check database for entity 1 read_entity = self._datastore.get_by_id(DummyEntity, entity_id1) self.assertIsNone(read_entity) read_entities = self._datastore.get_all(DummyEntity) self.assertEqual(2, len(read_entities)) # Delete all the entities self._datastore.delete_all(DummyEntity) read_entities = self._datastore.get_all(DummyEntity) self.assertEqual(0, len(read_entities)) def _create_dummy_entity(self) -> DummyEntity: """Created an entity with some test data """ test_item = DummyEntity() timenow = datetime.datetime.now() test_item.url = "testing_url_{}".format(timenow) test_item.last_check = timenow return test_item
39.863636
107
0.687286
4b7c99422eab207e3c74c8468e14e0431940461b
424
py
Python
importer/tests/test_cc_egov.py
cyroxx/meine-stadt-transparent
d5a3f03a29a1bb97ce50ac5257d8bbd5208d9218
[ "MIT" ]
null
null
null
importer/tests/test_cc_egov.py
cyroxx/meine-stadt-transparent
d5a3f03a29a1bb97ce50ac5257d8bbd5208d9218
[ "MIT" ]
null
null
null
importer/tests/test_cc_egov.py
cyroxx/meine-stadt-transparent
d5a3f03a29a1bb97ce50ac5257d8bbd5208d9218
[ "MIT" ]
null
null
null
import logging from importer.loader import CCEgovLoader from importer.tests.utils import spurious_500 logger = logging.getLogger(__name__) def test_spurious_500(caplog): spurious_500(CCEgovLoader) assert caplog.messages == [ "Got an 500 for a CC e-gov request, retrying: 500 Server Error: " "Internal Server Error for url: https://ratsinfo.leipzig.de/bi/oparl/1.0/papers.asp?body=2387&p=2" ]
28.266667
106
0.733491
0a988914165f88a2f87a8ac731581677d575c24b
16,296
py
Python
det3d/core/sampler/sample_ops.py
reinforcementdriving/CIA-SSD
f7b4a9ed4a2b852845303efc6c972125438817a6
[ "Apache-2.0" ]
382
2020-12-05T06:46:28.000Z
2022-03-29T17:40:58.000Z
det3d/core/sampler/sample_ops.py
reinforcementdriving/CIA-SSD
f7b4a9ed4a2b852845303efc6c972125438817a6
[ "Apache-2.0" ]
28
2020-12-08T07:50:57.000Z
2022-03-20T03:54:43.000Z
det3d/core/sampler/sample_ops.py
reinforcementdriving/CIA-SSD
f7b4a9ed4a2b852845303efc6c972125438817a6
[ "Apache-2.0" ]
57
2020-12-10T02:19:03.000Z
2022-03-19T09:49:38.000Z
import copy import pathlib import pickle import time from functools import partial, reduce import numpy as np from det3d.core.bbox import box_np_ops from det3d.core.sampler import preprocess as prep from det3d.utils.check import shape_mergeable class DataBaseSamplerV2: def __init__( self, db_infos, # object/dbinfos_train.pkl groups, # [dict(Car=15,),], db_prepor=None, # filter_by_min_num_points, filter_by_difficulty rate=1.0, # rate=1.0 global_rot_range=None, # [0, 0] logger=None, # logging.getLogger("build_dbsampler") ): # load all gt database here. for k, v in db_infos.items(): logger.info(f"load {len(v)} {k} database infos") # preprocess: filter_by_min_num_points/difficulty. if db_prepor is not None: db_infos = db_prepor(db_infos) logger.info("After filter database:") for k, v in db_infos.items(): logger.info(f"load {len(v)} {k} database infos") self.db_infos = db_infos self._rate = rate self._groups = groups self._group_db_infos = {} self._group_name_to_names = [] self._sample_classes = [] self._sample_max_nums = [] self._use_group_sampling = False # slower if any([len(g) > 1 for g in groups]): # False self._use_group_sampling = True # get group_name: Car and group_max_num: 15 if not self._use_group_sampling: # True self._group_db_infos = self.db_infos # just use db_infos for group_info in groups: group_names = list(group_info.keys()) self._sample_classes += group_names # ['Car'] self._sample_max_nums += list(group_info.values()) # [15] else: # False for group_info in groups: group_dict = {} group_names = list(group_info.keys()) group_name = ", ".join(group_names) self._sample_classes += group_names self._sample_max_nums += list(group_info.values()) self._group_name_to_names.append((group_name, group_names)) # self._group_name_to_names[group_name] = group_names for name in group_names: for item in db_infos[name]: gid = item["group_id"] if gid not in group_dict: group_dict[gid] = [item] else: group_dict[gid] += [item] if group_name in self._group_db_infos: raise ValueError("group must be unique") group_data = list(group_dict.values()) self._group_db_infos[group_name] = group_data info_dict = {} if len(group_info) > 1: for group in group_data: names = [item["name"] for item in group] names = sorted(names) group_name = ", ".join(names) if group_name in info_dict: info_dict[group_name] += 1 else: info_dict[group_name] = 1 print(info_dict) # get sampler dict for each class like Car, Cyclist, Pedestrian... # this sampler can ensure batch samples selected randomly. self._sampler_dict = {} for k, v in self._group_db_infos.items(): self._sampler_dict[k] = prep.BatchSampler(v, k) # get rotation range self._enable_global_rot = False if global_rot_range is not None: if not isinstance(global_rot_range, (list, tuple, np.ndarray)): global_rot_range = [-global_rot_range, global_rot_range] else: # True assert shape_mergeable(global_rot_range, [2]) # True if np.abs(global_rot_range[0] - global_rot_range[1]) >= 1e-3: # False self._enable_global_rot = True self._global_rot_range = global_rot_range # [0, 0] @property def use_group_sampling(self): return self._use_group_sampling def sample_all( self, root_path, gt_boxes, gt_names, num_point_features, random_crop=False, gt_group_ids=None, calib=None, ): # record the num of gt-aug samples with a dict and a list sampled_num_dict = {} sample_num_per_class = [] for class_name, max_sample_num in zip(self._sample_classes, self._sample_max_nums): # actual only once for ['Car': 15] sampled_num = int(max_sample_num - np.sum([n == class_name for n in gt_names])) sampled_num = np.round(self._rate * sampled_num).astype(np.int64) sampled_num_dict[class_name] = sampled_num sample_num_per_class.append(sampled_num) sampled_groups = self._sample_classes if self._use_group_sampling: # False assert gt_group_ids is not None sampled_groups = [] sample_num_per_class = [] for group_name, class_names in self._group_name_to_names: sampled_nums_group = [sampled_num_dict[n] for n in class_names] sampled_num = np.max(sampled_nums_group) sample_num_per_class.append(sampled_num) sampled_groups.append(group_name) total_group_ids = gt_group_ids sampled = [] sampled_gt_boxes = [] avoid_coll_boxes = gt_boxes # gt-augmentation: sample gt boxes and add them to current gt_boxes. # todo: we may sample box one by one to ensure num of gt-boxes is fulfilled. for class_name, sampled_num in zip(sampled_groups, sample_num_per_class): if sampled_num > 0: if self._use_group_sampling: # False sampled_cls = self.sample_group(class_name, sampled_num, avoid_coll_boxes, total_group_ids) else: sampled_cls = self.sample_class_v2(class_name, sampled_num, avoid_coll_boxes) sampled += sampled_cls if len(sampled_cls) > 0: if len(sampled_cls) == 1: # True sampled_gt_box = sampled_cls[0]["box3d_lidar"][np.newaxis, ...] else: sampled_gt_box = np.stack([s["box3d_lidar"] for s in sampled_cls], axis=0) sampled_gt_boxes += [sampled_gt_box] avoid_coll_boxes = np.concatenate([avoid_coll_boxes, sampled_gt_box], axis=0) if self._use_group_sampling: # False if len(sampled_cls) == 1: sampled_group_ids = np.array(sampled_cls[0]["group_id"])[np.newaxis, ...] else: sampled_group_ids = np.stack([s["group_id"] for s in sampled_cls], axis=0) total_group_ids = np.concatenate([total_group_ids, sampled_group_ids], axis=0) if len(sampled) > 0: ''' get points in sampled gt_boxes ''' sampled_gt_boxes = np.concatenate(sampled_gt_boxes, axis=0) num_sampled = len(sampled) s_points_list = [] # get points in sampled gt-boxes. for info in sampled: # info.keys: ['name', 'path', 'image_idx', 'gt_idx', 'box3d_lidar', 'num_points_in_gt', 'difficulty', 'group_id'] try: # TODO fix point read error s_points = np.fromfile(str(pathlib.Path(root_path) / info["path"]), dtype=np.float32).reshape(-1, num_point_features) if "rot_transform" in info: # False rot = info["rot_transform"] s_points[:, :3] = box_np_ops.rotation_points_single_angle(s_points[:, :4], rot, axis=2) # gt_points are saved with relative distance; so need to recover by adding box center. s_points[:, :3] += info["box3d_lidar"][:3] s_points_list.append(s_points) except Exception: print(info["path"]) continue '''todo: do something about random crop''' if random_crop: # False s_points_list_new = [] assert calib is not None rect = calib["rect"] Trv2c = calib["Trv2c"] P2 = calib["P2"] gt_bboxes = box_np_ops.box3d_to_bbox(sampled_gt_boxes, rect, Trv2c, P2) crop_frustums = prep.random_crop_frustum(gt_bboxes, rect, Trv2c, P2) for i in range(crop_frustums.shape[0]): s_points = s_points_list[i] mask = prep.mask_points_in_corners(s_points, crop_frustums[i : i + 1]).reshape(-1) num_remove = np.sum(mask) if num_remove > 0 and (s_points.shape[0] - num_remove) > 15: s_points = s_points[np.logical_not(mask)] s_points_list_new.append(s_points) s_points_list = s_points_list_new ret = { "gt_names": np.array([s["name"] for s in sampled]), "difficulty": np.array([s["difficulty"] for s in sampled]), "gt_boxes": sampled_gt_boxes, "points": np.concatenate(s_points_list, axis=0), "gt_masks": np.ones((num_sampled,), dtype=np.bool_), } if self._use_group_sampling: ret["group_ids"] = np.array([s["group_id"] for s in sampled]) else: ret["group_ids"] = np.arange(gt_boxes.shape[0], gt_boxes.shape[0] + len(sampled)) else: ret = None return ret def sample(self, name, num): if self._use_group_sampling: group_name = name ret = self._sampler_dict[group_name].sample(num) groups_num = [len(l) for l in ret] return reduce(lambda x, y: x + y, ret), groups_num else: ret = self._sampler_dict[name].sample(num) return ret, np.ones((len(ret),), dtype=np.int64) def sample_v1(self, name, num): if isinstance(name, (list, tuple)): group_name = ", ".join(name) ret = self._sampler_dict[group_name].sample(num) groups_num = [len(l) for l in ret] return reduce(lambda x, y: x + y, ret), groups_num else: ret = self._sampler_dict[name].sample(num) return ret, np.ones((len(ret),), dtype=np.int64) def sample_class_v2(self, name, num, gt_boxes): # sample num gt_boxes from gt_database sampled = self._sampler_dict[name].sample(num) sampled = copy.deepcopy(sampled) num_sampled = len(sampled) # get all boxes: gt_boxes + sp_boxes num_gt = gt_boxes.shape[0] gt_boxes_bv = box_np_ops.center_to_corner_box2d(gt_boxes[:, 0:2], gt_boxes[:, 3:5], gt_boxes[:, -1]) sp_boxes = np.stack([i["box3d_lidar"] for i in sampled], axis=0) # todo: need modification here boxes = np.concatenate([gt_boxes, sp_boxes], axis=0).copy() # unused: get mask valid_mask = np.zeros([gt_boxes.shape[0]], dtype=np.bool_) valid_mask = np.concatenate([valid_mask, np.ones([sp_boxes.shape[0]], dtype=np.bool_)], axis=0) if self._enable_global_rot: # False prep.noise_per_object_v3_(boxes, None, valid_mask, 0, 0, self._global_rot_range, num_try=100) # get all boxes_bev: gt_boxes_bev + sampled_boxes_bev sp_boxes_new = boxes[gt_boxes.shape[0] : ] sp_boxes_bv = box_np_ops.center_to_corner_box2d(sp_boxes_new[:, 0:2], sp_boxes_new[:, 3:5], sp_boxes_new[:, -1]) total_bv = np.concatenate([gt_boxes_bv, sp_boxes_bv], axis=0) # collision test on bev (stricter than 3d) coll_mat = prep.box_collision_test(total_bv, total_bv) # todo: too slow here diag = np.arange(total_bv.shape[0]) coll_mat[diag, diag] = False # get valid samples valid_samples = [] for i in range(num_gt, num_gt + num_sampled): # todo: without multiple try times, sometimes, the overall box num may not meet the requirement if coll_mat[i].any(): # i-th sampled box is not considered into gt-boxes. coll_mat[i] = False coll_mat[:, i] = False else: if self._enable_global_rot: # False sampled[i - num_gt]["box3d_lidar"][:2] = boxes[i, :2] # boxes has got noise sampled[i - num_gt]["box3d_lidar"][-1] = boxes[i, -1] sampled[i - num_gt]["rot_transform"] = (boxes[i, -1] - sp_boxes[i - num_gt, -1]) # i-th sampled box is considered into gt-boxes. valid_samples.append(sampled[i - num_gt]) return valid_samples def sample_group(self, name, num, gt_boxes, gt_group_ids): sampled, group_num = self.sample(name, num) sampled = copy.deepcopy(sampled) # rewrite sampled group id to avoid duplicated with gt group ids gid_map = {} max_gt_gid = np.max(gt_group_ids) sampled_gid = max_gt_gid + 1 for s in sampled: gid = s["group_id"] if gid in gid_map: s["group_id"] = gid_map[gid] else: gid_map[gid] = sampled_gid s["group_id"] = sampled_gid sampled_gid += 1 num_gt = gt_boxes.shape[0] gt_boxes_bv = box_np_ops.center_to_corner_box2d( gt_boxes[:, 0:2], gt_boxes[:, 3:5], gt_boxes[:, -1] ) sp_boxes = np.stack([i["box3d_lidar"] for i in sampled], axis=0) sp_group_ids = np.stack([i["group_id"] for i in sampled], axis=0) valid_mask = np.zeros([gt_boxes.shape[0]], dtype=np.bool_) valid_mask = np.concatenate( [valid_mask, np.ones([sp_boxes.shape[0]], dtype=np.bool_)], axis=0 ) boxes = np.concatenate([gt_boxes, sp_boxes], axis=0).copy() group_ids = np.concatenate([gt_group_ids, sp_group_ids], axis=0) if self._enable_global_rot: # place samples to any place in a circle. prep.noise_per_object_v3_( boxes, None, valid_mask, 0, 0, self._global_rot_range, group_ids=group_ids, num_try=100, ) sp_boxes_new = boxes[gt_boxes.shape[0] :] sp_boxes_bv = box_np_ops.center_to_corner_box2d( sp_boxes_new[:, 0:2], sp_boxes_new[:, 3:5], sp_boxes_new[:, -1] ) total_bv = np.concatenate([gt_boxes_bv, sp_boxes_bv], axis=0) # coll_mat = collision_test_allbox(total_bv) coll_mat = prep.box_collision_test(total_bv, total_bv) diag = np.arange(total_bv.shape[0]) coll_mat[diag, diag] = False valid_samples = [] idx = num_gt for num in group_num: if coll_mat[idx : idx + num].any(): coll_mat[idx : idx + num] = False coll_mat[:, idx : idx + num] = False else: for i in range(num): if self._enable_global_rot: sampled[idx - num_gt + i]["box3d_lidar"][:2] = boxes[ idx + i, :2 ] sampled[idx - num_gt + i]["box3d_lidar"][-1] = boxes[ idx + i, -1 ] sampled[idx - num_gt + i]["rot_transform"] = ( boxes[idx + i, -1] - sp_boxes[idx + i - num_gt, -1] ) valid_samples.append(sampled[idx - num_gt + i]) idx += num return valid_samples
45.016575
150
0.548908
ad413a69f52cdb2848f81da89ad1884177903cc9
3,839
py
Python
services/core-api/app/api/incidents/response_models.py
areyeslo/mds
e8c38e593e09b78e2a57009c0d003d6c4bfa32e6
[ "Apache-2.0" ]
1
2021-09-17T20:41:45.000Z
2021-09-17T20:41:45.000Z
services/core-api/app/api/incidents/response_models.py
areyeslo/mds
e8c38e593e09b78e2a57009c0d003d6c4bfa32e6
[ "Apache-2.0" ]
null
null
null
services/core-api/app/api/incidents/response_models.py
areyeslo/mds
e8c38e593e09b78e2a57009c0d003d6c4bfa32e6
[ "Apache-2.0" ]
null
null
null
from app.extensions import api from flask_restplus import fields MINE_INCIDENT_CATEGORY_MODEL = api.model( 'Mine Incident Category', { 'mine_incident_category_code': fields.String, 'description': fields.String, 'display_order': fields.Integer, 'active_ind': fields.Boolean }) MINE_INCIDENT_DETERMINATION_TYPE_MODEL = api.model('Mine Incident Determination Type', { 'mine_incident_determination_type_code': fields.String, 'description': fields.String, 'active_ind': fields.Boolean }) MINE_INCIDENT_FOLLOWUP_INVESTIGATION_TYPE_MODEL = api.model( 'Mine Incident Followup Investigation Type', { 'mine_incident_followup_investigation_type_code': fields.String, 'description': fields.String, 'active_ind': fields.Boolean }) MINE_INCIDENT_STATUS_CODE_MODEL = api.model('Mine Incident Status Codes', { 'mine_incident_status_code': fields.String, 'description': fields.String, 'active_ind' : fields.Boolean }) MINE_INCIDENT_DOCUMENT_TYPE_CODE_MODEL = api.model('Mine Incident Document Type Codes', { 'mine_incident_document_type_code': fields.String, 'description': fields.String, 'active_ind': fields.Boolean }) MINE_INCIDENT_DOCUMENT_MODEL = api.model( 'Mine Incident Document', { 'mine_document_guid': fields.String, 'document_manager_guid': fields.String, 'document_name': fields.String, 'mine_incident_document_type_code': fields.String, 'upload_date': fields.DateTime, }) MINE_INCIDENT_RECOMMENDATION_MODEL = api.model('Mine Incident Recommendation', { 'recommendation': fields.String, 'mine_incident_recommendation_guid': fields.String }) MINE_INCIDENT_MODEL = api.model( 'Mine Incident', { 'mine_incident_id': fields.Integer, 'mine_incident_id_year': fields.Integer, 'mine_incident_guid': fields.String, 'mine_incident_report_no': fields.String, 'mine_guid': fields.String, 'mine_name': fields.String, 'mine_region': fields.String, 'major_mine_ind': fields.Boolean, 'incident_timestamp': fields.DateTime, 'incident_description': fields.String, 'reported_timestamp': fields.DateTime, 'reported_by_name': fields.String, 'reported_by_email': fields.String, 'reported_by_phone_no': fields.String, 'reported_by_phone_ext': fields.String, 'emergency_services_called': fields.Boolean, 'number_of_injuries': fields.Integer, 'number_of_fatalities': fields.Integer, 'reported_to_inspector_party_guid': fields.String, 'responsible_inspector_party_guid': fields.String, 'determination_type_code': fields.String, 'status_code': fields.String, 'followup_investigation_type_code': fields.String, 'followup_inspection': fields.Boolean, 'followup_inspection_date': fields.Date, 'determination_inspector_party_guid': fields.String, 'mms_inspector_initials': fields.String(attribute='mms_insp_cd'), 'dangerous_occurrence_subparagraph_ids': fields.List(fields.Integer), 'proponent_incident_no': fields.String, 'mine_incident_no': fields.String, 'documents': fields.List(fields.Nested(MINE_INCIDENT_DOCUMENT_MODEL)), 'recommendations': fields.List(fields.Nested(MINE_INCIDENT_RECOMMENDATION_MODEL)), 'categories': fields.List(fields.Nested(MINE_INCIDENT_CATEGORY_MODEL)) }) PAGINATED_LIST = api.model( 'List', { 'current_page': fields.Integer, 'total_pages': fields.Integer, 'items_per_page': fields.Integer, 'total': fields.Integer, }) PAGINATED_INCIDENT_LIST = api.inherit('IncidentList', PAGINATED_LIST, { 'records': fields.List(fields.Nested(MINE_INCIDENT_MODEL)), })
39.173469
90
0.70956
b09d5473bb0f3be24e685a8e3541256dabe53694
71
py
Python
chapter-supplement/Ex_01.py
yuetsin/CS-902
ae945f55944830ed3c6e4d71cfff2798cdf571ac
[ "MIT" ]
1
2019-05-16T11:00:40.000Z
2019-05-16T11:00:40.000Z
chapter-supplement/Ex_01.py
yuetsin/CS-902
ae945f55944830ed3c6e4d71cfff2798cdf571ac
[ "MIT" ]
null
null
null
chapter-supplement/Ex_01.py
yuetsin/CS-902
ae945f55944830ed3c6e4d71cfff2798cdf571ac
[ "MIT" ]
null
null
null
# Exercise 1 print raw_input("Please input a string... >>>")[::-1]
17.75
54
0.591549
1f50c6dc528b445d374d1861814ac6679546b769
690
py
Python
sarikasama/0008/0008.py
saurabh896/python-1
f8d3aedf4c0fe6e24dfa3269ea7e642c9f7dd9b7
[ "MIT" ]
3,976
2015-01-01T15:49:39.000Z
2022-03-31T03:47:56.000Z
sarikasama/0008/0008.py
dwh65416396/python
1a7e3edd1cd3422cc0eaa55471a0b42e004a9a1a
[ "MIT" ]
97
2015-01-11T02:59:46.000Z
2022-03-16T14:01:56.000Z
sarikasama/0008/0008.py
dwh65416396/python
1a7e3edd1cd3422cc0eaa55471a0b42e004a9a1a
[ "MIT" ]
3,533
2015-01-01T06:19:30.000Z
2022-03-28T13:14:54.000Z
#!/usr/bin/env pyhton3 #get the text in a html file import re, urllib.request def get_text(url): content = url.read() try: content = content.decode('utf-8') except: content = content.decode('gbk') content = re.sub(r'<script.+?</script>', '', content, flags = re.DOTALL) content = re.sub(r'<!--.+?-->', '', content, flags = re.DOTALL) content = re.sub(r'<style.+?</style>', '', content, flags = re.DOTALL) content = re.sub(r'<[^>]*>', '', content) content = re.sub(r'\n', '', content) print(content) def main(): with urllib.request.urlopen('http://thwiki.cc/') as url: get_text(url) if __name__ == '__main__': main()
25.555556
76
0.575362
0ab0328f0c909ba6cebd7e2ba10d5894d9ecbd75
7,204
py
Python
tests/test_jsondict.py
ac-optimus/signac
43a5519531cc8cc44199c9251d0fd4e6208b5bdb
[ "BSD-3-Clause" ]
1
2020-12-28T18:00:24.000Z
2020-12-28T18:00:24.000Z
tests/test_jsondict.py
ac-optimus/signac
43a5519531cc8cc44199c9251d0fd4e6208b5bdb
[ "BSD-3-Clause" ]
81
2020-12-28T20:23:57.000Z
2022-03-01T06:03:40.000Z
tests/test_jsondict.py
admdev8/signac
d639e682ca7ebaff781d68621a2d86cc26de04b9
[ "BSD-3-Clause" ]
null
null
null
# Copyright (c) 2018 The Regents of the University of Michigan # All rights reserved. # This software is licensed under the BSD 3-Clause License. import os import pytest import uuid from tempfile import TemporaryDirectory from signac.core.jsondict import JSONDict from signac.errors import InvalidKeyError from signac.errors import KeyTypeError FN_DICT = 'jsondict.json' def testdata(): return str(uuid.uuid4()) class TestJSONDictBase(): @pytest.fixture(autouse=True) def setUp(self, request): self._tmp_dir = TemporaryDirectory(prefix='jsondict_') request.addfinalizer(self._tmp_dir.cleanup) self._fn_dict = os.path.join(self._tmp_dir.name, FN_DICT) class TestJSONDict(TestJSONDictBase): def get_json_dict(self): return JSONDict(filename=self._fn_dict) def get_testdata(self): return str(uuid.uuid4()) def test_init(self): self.get_json_dict() def test_set_get(self): jsd = self.get_json_dict() key = 'setget' d = self.get_testdata() jsd.clear() assert not bool(jsd) assert len(jsd) == 0 assert key not in jsd jsd[key] = d assert bool(jsd) assert len(jsd) == 1 assert key in jsd assert jsd[key] == d assert jsd.get(key) == d def test_set_get_explicit_nested(self): jsd = self.get_json_dict() key = 'setgetexplicitnested' d = self.get_testdata() jsd.setdefault('a', dict()) child1 = jsd['a'] child2 = jsd['a'] assert child1 == child2 assert isinstance(child1, type(child2)) assert child1._parent == child2._parent assert id(child1._parent) == id(child2._parent) assert id(child1) == id(child2) assert not child1 assert not child2 child1[key] = d assert child1 assert child2 assert key in child1 assert key in child2 assert child1 == child2 assert child1[key] == d assert child2[key] == d def test_copy_value(self): jsd = self.get_json_dict() key = 'copy_value' key2 = 'copy_value2' d = self.get_testdata() assert key not in jsd assert key2 not in jsd jsd[key] = d assert key in jsd assert jsd[key] == d assert key2 not in jsd jsd[key2] = jsd[key] assert key in jsd assert jsd[key] == d assert key2 in jsd assert jsd[key2] == d def test_iter(self): jsd = self.get_json_dict() key1 = 'iter1' key2 = 'iter2' d1 = self.get_testdata() d2 = self.get_testdata() d = {key1: d1, key2: d2} jsd.update(d) assert key1 in jsd assert key2 in jsd for i, key in enumerate(jsd): assert key in d assert d[key] == jsd[key] assert i == 1 def test_delete(self): jsd = self.get_json_dict() key = 'delete' d = self.get_testdata() jsd[key] = d assert len(jsd) == 1 assert jsd[key] == d del jsd[key] assert len(jsd) == 0 with pytest.raises(KeyError): jsd[key] jsd[key] = d assert len(jsd) == 1 assert jsd[key] == d del jsd.delete assert len(jsd) == 0 with pytest.raises(KeyError): jsd[key] def test_update(self): jsd = self.get_json_dict() key = 'update' d = {key: self.get_testdata()} jsd.update(d) assert len(jsd) == 1 assert jsd[key] == d[key] def test_clear(self): jsd = self.get_json_dict() key = 'clear' d = self.get_testdata() jsd[key] = d assert len(jsd) == 1 assert jsd[key] == d jsd.clear() assert len(jsd) == 0 def test_reopen(self): jsd = self.get_json_dict() key = 'reopen' d = self.get_testdata() jsd[key] = d jsd.save() del jsd # possibly unsafe jsd2 = self.get_json_dict() jsd2.load() assert len(jsd2) == 1 assert jsd2[key] == d def test_copy_as_dict(self): jsd = self.get_json_dict() key = 'copy' d = self.get_testdata() jsd[key] = d copy = dict(jsd) del jsd assert key in copy assert copy[key] == d def test_reopen2(self): jsd = self.get_json_dict() key = 'reopen' d = self.get_testdata() jsd[key] = d del jsd # possibly unsafe jsd2 = self.get_json_dict() assert len(jsd2) == 1 assert jsd2[key] == d def test_write_invalid_type(self): class Foo(object): pass jsd = self.get_json_dict() key = 'write_invalid_type' d = self.get_testdata() jsd[key] = d assert len(jsd) == 1 assert jsd[key] == d d2 = Foo() with pytest.raises(TypeError): jsd[key + '2'] = d2 assert len(jsd) == 1 assert jsd[key] == d def test_buffered_read_write(self): jsd = self.get_json_dict() jsd2 = self.get_json_dict() assert jsd == jsd2 key = 'buffered_read_write' d = self.get_testdata() d2 = self.get_testdata() assert len(jsd) == 0 assert len(jsd2) == 0 with jsd.buffered() as b: b[key] = d assert b[key] == d assert len(b) == 1 assert len(jsd2) == 0 assert len(jsd) == 1 assert len(jsd2) == 1 with jsd2.buffered() as b2: b2[key] = d2 assert len(jsd) == 1 assert len(b2) == 1 assert jsd[key] == d assert b2[key] == d2 assert jsd[key] == d2 assert jsd2[key] == d2 with jsd.buffered() as b: del b[key] assert key not in b assert key not in jsd def test_keys_with_dots(self): jsd = self.get_json_dict() with pytest.raises(InvalidKeyError): jsd['a.b'] = None def test_keys_valid_type(self): jsd = self.get_json_dict() class MyStr(str): pass for key in ('key', MyStr('key'), 0, None, True): d = jsd[key] = self.get_testdata() assert str(key) in jsd assert jsd[str(key)] == d def test_keys_invalid_type(self): jsd = self.get_json_dict() class A: pass for key in (0.0, A(), (1, 2, 3)): with pytest.raises(KeyTypeError): jsd[key] = self.get_testdata() for key in ([], {}, dict()): with pytest.raises(TypeError): jsd[key] = self.get_testdata() class TestJSONDictWriteConcern(TestJSONDict): def get_json_dict(self): return JSONDict(filename=self._fn_dict, write_concern=True) class TestJSONDictNestedData(TestJSONDict): def get_testdata(self): return dict(a=super(TestJSONDictNestedData, self).get_testdata()) class TestJSONDictNestedDataWriteConcern(TestJSONDictNestedData, TestJSONDictWriteConcern): pass
26.880597
91
0.551083
bab7dd50b346050ad2a124737006d382bbb602e7
152
py
Python
4_loop/1_Zweierreihe.py
Coding-for-the-Arts/drawbot-samples-solutions
7191610d6efd7d788056070e7826d255b7ef496b
[ "CC0-1.0" ]
null
null
null
4_loop/1_Zweierreihe.py
Coding-for-the-Arts/drawbot-samples-solutions
7191610d6efd7d788056070e7826d255b7ef496b
[ "CC0-1.0" ]
null
null
null
4_loop/1_Zweierreihe.py
Coding-for-the-Arts/drawbot-samples-solutions
7191610d6efd7d788056070e7826d255b7ef496b
[ "CC0-1.0" ]
null
null
null
""" Zweierreihe Wie kannst du die Zweierreihe bis 10 auf der Konsole ausgeben? """ for i in range(1, 11): print(i, 'Element:') print(2*i)
13.818182
62
0.631579
14d6a86ad7cc650979e3962389fbb01b31890997
2,066
py
Python
xd/build/core/data/namespace.py
XD-embedded/xd-build-core
357e4d78d35456d6906aa30151ddc989781227ab
[ "MIT" ]
1
2020-11-27T23:34:53.000Z
2020-11-27T23:34:53.000Z
xd/build/core/data/namespace.py
XD-embedded/xd-build-core
357e4d78d35456d6906aa30151ddc989781227ab
[ "MIT" ]
6
2015-10-30T12:22:56.000Z
2016-08-25T09:38:48.000Z
xd/build/core/data/namespace.py
XD-embedded/xd-build-core
357e4d78d35456d6906aa30151ddc989781227ab
[ "MIT" ]
null
null
null
import logging log = logging.getLogger(__name__) log.setLevel(logging.INFO) from .var import * from .expr import * from .wrap import * __all__ = ['Namespace', 'MultiBinding'] class MultiBinding(Exception): '''Variable binding to multiple names not allowed. For setting one (named) variable to reference the value of another (named) variable, you should use Expression() instead. Example: ns['FOO'] = 'foo' ns['ALSO_FOO'] = Expression('FOO') ''' pass class Namespace(dict): """XD-build data namespaces. Class for holding a namespace of XD-build data variables. It is implemented as a mapping so it can be used as a locals to eval(). """ def __init__(self): self.eval_wrapper = EvalWrapper(self) super(Namespace, self).__init__(self) def __setitem__(self, key, value): if key in self: self[key].set(value) return value = wrap(value) if isinstance(value, Variable): old_name = getattr(value, 'name', None) if old_name is not None and old_name != key: raise MultiBinding('rename of Variable %s to %s not allowed'%( value.name, key)) value.name = key elif isinstance(value, Expression): pass else: raise TypeError('unsupported type for Variable %s: %s'%( key, type(value))) value.set_scope(self) super(Namespace, self).__setitem__(key, value) def __delitem__(self, key): var = super(Namespace, self).__getitem__(key) var.name = None super(Namespace, self).__delitem__(key) def eval(self, expr, g=None): if isinstance(expr, Expression): expr = expr.code or expr.source if g is None: g = {} return eval(expr, g, self.eval_wrapper) class EvalWrapper(object): def __init__(self, namespace): self.namespace = namespace def __getitem__(self, key): return self.namespace[key].get()
26.831169
78
0.60455
1f2d722aca0fccb6ad64a2cf053ec83c4b707fc9
8,903
py
Python
python-package/xgboost/training.py
saurav111/xgboost
a13a3d1552610df734566df9a4e283560eef8981
[ "Apache-2.0" ]
null
null
null
python-package/xgboost/training.py
saurav111/xgboost
a13a3d1552610df734566df9a4e283560eef8981
[ "Apache-2.0" ]
null
null
null
python-package/xgboost/training.py
saurav111/xgboost
a13a3d1552610df734566df9a4e283560eef8981
[ "Apache-2.0" ]
null
null
null
# coding: utf-8 # pylint: disable=too-many-locals, too-many-arguments, invalid-name """Training Library containing training routines.""" from __future__ import absolute_import import sys import re import numpy as np from .core import Booster, STRING_TYPES def train(params, dtrain, num_boost_round=10, evals=(), obj=None, feval=None, early_stopping_rounds=None, evals_result=None, verbose_eval=True): # pylint: disable=too-many-statements,too-many-branches, attribute-defined-outside-init """Train a booster with given parameters. Parameters ---------- params : dict Booster params. dtrain : DMatrix Data to be trained. num_boost_round: int Number of boosting iterations. watchlist (evals): list of pairs (DMatrix, string) List of items to be evaluated during training, this allows user to watch performance on the validation set. obj : function Customized objective function. feval : function Customized evaluation function. early_stopping_rounds: int Activates early stopping. Validation error needs to decrease at least every <early_stopping_rounds> round(s) to continue training. Requires at least one item in evals. If there's more than one, will use the last. Returns the model from the last iteration (not the best one). If early stopping occurs, the model will have two additional fields: bst.best_score and bst.best_iteration. evals_result: dict This dictionary stores the evaluation results of all the items in watchlist verbose_eval : bool If `verbose_eval` then the evaluation metric on the validation set, if given, is printed at each boosting stage. Returns ------- booster : a trained booster model """ evals = list(evals) bst = Booster(params, [dtrain] + [d[0] for d in evals]) if evals_result is not None: if not isinstance(evals_result, dict): raise TypeError('evals_result has to be a dictionary') else: evals_name = [d[1] for d in evals] evals_result.clear() evals_result.update({key: [] for key in evals_name}) if not early_stopping_rounds: for i in range(num_boost_round): bst.update(dtrain, i, obj) if len(evals) != 0: bst_eval_set = bst.eval_set(evals, i, feval) if isinstance(bst_eval_set, STRING_TYPES): msg = bst_eval_set else: msg = bst_eval_set.decode() if verbose_eval: sys.stderr.write(msg + '\n') if evals_result is not None: res = re.findall(":-?([0-9.]+).", msg) for key, val in zip(evals_name, res): evals_result[key].append(val) return bst else: # early stopping if len(evals) < 1: raise ValueError('For early stopping you need at least one set in evals.') sys.stderr.write("Will train until {} error hasn't decreased in {} rounds.\n".format(\ evals[-1][1], early_stopping_rounds)) # is params a list of tuples? are we using multiple eval metrics? if isinstance(params, list): if len(params) != len(dict(params).items()): raise ValueError('Check your params.'\ 'Early stopping works with single eval metric only.') params = dict(params) # either minimize loss or maximize AUC/MAP/NDCG maximize_score = False if 'eval_metric' in params: maximize_metrics = ('auc', 'map', 'ndcg') if any(params['eval_metric'].startswith(x) for x in maximize_metrics): maximize_score = True if maximize_score: best_score = 0.0 else: best_score = float('inf') best_msg = '' best_score_i = 0 for i in range(num_boost_round): bst.update(dtrain, i, obj) bst_eval_set = bst.eval_set(evals, i, feval) if isinstance(bst_eval_set, STRING_TYPES): msg = bst_eval_set else: msg = bst_eval_set.decode() if verbose_eval: sys.stderr.write(msg + '\n') if evals_result is not None: res = re.findall(":-([0-9.]+).", msg) for key, val in zip(evals_name, res): evals_result[key].append(val) score = float(msg.rsplit(':', 1)[1]) if (maximize_score and score > best_score) or \ (not maximize_score and score < best_score): best_score = score best_score_i = i best_msg = msg elif i - best_score_i >= early_stopping_rounds: sys.stderr.write("Stopping. Best iteration:\n{}\n\n".format(best_msg)) bst.best_score = best_score bst.best_iteration = best_score_i break bst.best_score = best_score bst.best_iteration = best_score_i return bst class CVPack(object): """"Auxiliary datastruct to hold one fold of CV.""" def __init__(self, dtrain, dtest, param): """"Initialize the CVPack""" self.dtrain = dtrain self.dtest = dtest self.watchlist = [(dtrain, 'train'), (dtest, 'test')] self.bst = Booster(param, [dtrain, dtest]) def update(self, iteration, fobj): """"Update the boosters for one iteration""" self.bst.update(self.dtrain, iteration, fobj) def eval(self, iteration, feval): """"Evaluate the CVPack for one iteration.""" return self.bst.eval_set(self.watchlist, iteration, feval) def mknfold(dall, nfold, param, seed, evals=(), fpreproc=None): """ Make an n-fold list of CVPack from random indices. """ evals = list(evals) np.random.seed(seed) randidx = np.random.permutation(dall.num_row()) kstep = len(randidx) / nfold idset = [randidx[(i * kstep): min(len(randidx), (i + 1) * kstep)] for i in range(nfold)] ret = [] for k in range(nfold): dtrain = dall.slice(np.concatenate([idset[i] for i in range(nfold) if k != i])) dtest = dall.slice(idset[k]) # run preprocessing on the data set if needed if fpreproc is not None: dtrain, dtest, tparam = fpreproc(dtrain, dtest, param.copy()) else: tparam = param plst = list(tparam.items()) + [('eval_metric', itm) for itm in evals] ret.append(CVPack(dtrain, dtest, plst)) return ret def aggcv(rlist, show_stdv=True): # pylint: disable=invalid-name """ Aggregate cross-validation results. """ cvmap = {} ret = rlist[0].split()[0] for line in rlist: arr = line.split() assert ret == arr[0] for it in arr[1:]: if not isinstance(it, STRING_TYPES): it = it.decode() k, v = it.split(':') if k not in cvmap: cvmap[k] = [] cvmap[k].append(float(v)) for k, v in sorted(cvmap.items(), key=lambda x: x[0]): v = np.array(v) if not isinstance(ret, STRING_TYPES): ret = ret.decode() if show_stdv: ret += '\tcv-%s:%f+%f' % (k, np.mean(v), np.std(v)) else: ret += '\tcv-%s:%f' % (k, np.mean(v)) return ret def cv(params, dtrain, num_boost_round=10, nfold=3, metrics=(), obj=None, feval=None, fpreproc=None, show_stdv=True, seed=0): # pylint: disable = invalid-name """Cross-validation with given paramaters. Parameters ---------- params : dict Booster params. dtrain : DMatrix Data to be trained. num_boost_round : int Number of boosting iterations. nfold : int Number of folds in CV. metrics : list of strings Evaluation metrics to be watched in CV. obj : function Custom objective function. feval : function Custom evaluation function. fpreproc : function Preprocessing function that takes (dtrain, dtest, param) and returns transformed versions of those. show_stdv : bool Whether to display the standard deviation. seed : int Seed used to generate the folds (passed to numpy.random.seed). Returns ------- evaluation history : list(string) """ results = [] cvfolds = mknfold(dtrain, nfold, params, seed, metrics, fpreproc) for i in range(num_boost_round): for fold in cvfolds: fold.update(i, obj) res = aggcv([f.eval(i, feval) for f in cvfolds], show_stdv) sys.stderr.write(res + '\n') results.append(res) return results
35.189723
94
0.585196
fb31fbda193654d2e07af5a01959069a1a8349b6
2,340
py
Python
tests/base/test_sampling_method.py
ajrox090/VaRA-Tool-Suite
1550d36a4049e0615afb0bacfb96b1d506a29c98
[ "BSD-2-Clause" ]
8
2019-10-30T08:07:44.000Z
2020-11-13T08:02:36.000Z
tests/base/test_sampling_method.py
ajrox090/VaRA-Tool-Suite
1550d36a4049e0615afb0bacfb96b1d506a29c98
[ "BSD-2-Clause" ]
342
2019-02-14T15:53:31.000Z
2020-11-03T18:11:27.000Z
tests/base/test_sampling_method.py
ajrox090/VaRA-Tool-Suite
1550d36a4049e0615afb0bacfb96b1d506a29c98
[ "BSD-2-Clause" ]
5
2021-04-28T17:05:16.000Z
2022-03-31T23:11:22.000Z
"""Test module for sampling method tests.""" import typing as tp import unittest from varats.base.sampling_method import ( NormalSamplingMethod, SamplingMethodBase, UniformSamplingMethod, ) class TestSamplingMethodBase(unittest.TestCase): """Test if SamplingMethodBase is working.""" def test_registering_new_sampling_methods(self) -> None: """Tests if new sampling classes get automatically added to the registry.""" self.assertFalse( 'NewTestSamplingMethod' in SamplingMethodBase[ tp.Any].sampling_method_names() ) class NewTestSamplingMethod(SamplingMethodBase): # pylint: disable=W0612 pass self.assertTrue( 'NewTestSamplingMethod' in SamplingMethodBase[ tp.Any].sampling_method_names() ) def test_sampling_method_lookup(self) -> None: """Test if the type look-up for sampling methods works.""" self.assertEqual( SamplingMethodBase. get_sampling_method_type("UniformSamplingMethod"), UniformSamplingMethod ) def test_dump_sampling_method(self) -> None: """Test if we can dump the sampling method configuration into a string.""" expected_usm_dump = "{'sampling_method': 'UniformSamplingMethod'}" self.assertEqual( UniformSamplingMethod().dump_to_string(), expected_usm_dump ) def test_create_sampling_method_from_string(self) -> None: """Test if we can reload the sampling method from a configuration and create the correct type.""" dumped_usm = "{'sampling_method': 'UniformSamplingMethod'}" self.assertEqual( type( SamplingMethodBase[ tp.Any].create_sampling_method_from_config_str(dumped_usm) ), UniformSamplingMethod ) class TestNormalSamplingMethod(unittest.TestCase): """Test if NormalSamplingMethod is working.""" def test_if_all_sampling_methods_are_detected(self) -> None: """Checks of the automatic registration of NormalSamplingMethod works.""" print(NormalSamplingMethod.normal_sampling_method_types()) self.assertEqual( len(NormalSamplingMethod.normal_sampling_method_types()), 2 )
33.428571
81
0.663248
a08627aad093200c27139eefc568235c5fac2b3c
33,944
py
Python
fbgemm_gpu/bench/split_table_batched_embeddings_benchmark.py
caogao/FBGEMM
ffc2e1a91e2ae283bccb6448b5e6020d871af7cc
[ "BSD-3-Clause" ]
null
null
null
fbgemm_gpu/bench/split_table_batched_embeddings_benchmark.py
caogao/FBGEMM
ffc2e1a91e2ae283bccb6448b5e6020d871af7cc
[ "BSD-3-Clause" ]
null
null
null
fbgemm_gpu/bench/split_table_batched_embeddings_benchmark.py
caogao/FBGEMM
ffc2e1a91e2ae283bccb6448b5e6020d871af7cc
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. import logging import time from typing import Callable, Dict, List, Optional, Tuple import click import numpy as np import torch from fbgemm_gpu.split_table_batched_embeddings_ops import ( CacheAlgorithm, ComputeDevice, EmbeddingLocation, OptimType, SparseType, SplitTableBatchedEmbeddingBagsCodegen, Int4TableBatchedEmbeddingBagsCodegen, ) from torch import Tensor logging.basicConfig(level=logging.DEBUG) PRECISION_SIZE_MULTIPLIER: Dict[SparseType, int] = { SparseType.FP32: 4, SparseType.FP16: 2, SparseType.INT8: 1, } def div_round_up(a: int, b: int) -> int: return int((a + b - 1) // b) * b def get_device() -> torch.device: return ( torch.cuda.current_device() if torch.cuda.is_available() else torch.device("cpu") ) # Merged indices with shape (T, B, L) -> (flattened indices with shape # (T * B * L), offsets with shape (T * B + 1)) def get_table_batched_offsets_from_dense( merged_indices: Tensor, ) -> Tuple[Tensor, Tensor]: (T, B, L) = merged_indices.size() lengths = np.ones((T, B)) * L flat_lengths = lengths.flatten() return ( merged_indices.long().contiguous().view(-1).to(get_device()), torch.tensor(([0] + np.cumsum(flat_lengths).tolist())).long().to(get_device()), ) def generate_requests( iters: int, B: int, T: int, L: int, E: int, # inter-batch indices reuse rate reuse: float = 0.0, # alpha <= 1.0: use uniform distribution # alpha > 1.0: use zjpf distribution alpha: float = 1.0, weights_precision: SparseType = SparseType.FP32, weighted: bool = False, ) -> List[Tuple[Tensor, Tensor, Optional[Tensor]]]: if alpha <= 1.0: all_indices = torch.randint( low=0, high=E, size=(iters, T, B * L), device=get_device(), dtype=torch.int32, ) else: all_indices = ( torch.as_tensor(np.random.zipf(a=alpha, size=(iters, T, B * L))) .to(get_device()) .int() % E ) for it in range(iters - 1): for t in range(T): reused_indices = torch.randperm(B * L, device=get_device())[ : int(B * L * reuse) ] all_indices[it + 1, t, reused_indices] = all_indices[it, t, reused_indices] rs = [] for it in range(iters): weights_tensor = ( None if not weighted else torch.randn(T * B * L, device=get_device()) ) rs.append( get_table_batched_offsets_from_dense(all_indices[it].view(T, B, L)) + (weights_tensor,) ) return rs def benchmark_requests( requests: List[Tuple[Tensor, Tensor, Optional[Tensor]]], func: Callable[[Tensor, Tensor, Optional[Tensor]], Tensor], flush_gpu_cache_size_mb: int = 0, ) -> float: total_time = 0.0 if torch.cuda.is_available(): torch.cuda.synchronize() start_event = torch.cuda.Event(enable_timing=True) end_event = torch.cuda.Event(enable_timing=True) else: start_time = time.time() for (indices, offsets, weights) in requests: if torch.cuda.is_available(): if flush_gpu_cache_size_mb: _ = torch.rand(flush_gpu_cache_size_mb * 1024 * 1024 // 4, dtype=torch.float) torch.cuda.synchronize() start_event.record() else: start_time = time.time() func(indices, offsets, weights) if torch.cuda.is_available(): end_event.record() torch.cuda.synchronize() total_time += start_event.elapsed_time(end_event) * 1.0e-3 else: total_time += time.time() - start_time return total_time / len(requests) def benchmark_pipelined_requests( requests: List[Tuple[Tensor, Tensor, Optional[Tensor]]], func1: Callable[[Tensor, Tensor, Optional[Tensor]], None], func2: Callable[[Tensor, Tensor, Optional[Tensor]], None], flush_gpu_cache_size_mb: int = 0, ) -> Tuple[float, float]: torch.cuda.synchronize() start_events = [ (torch.cuda.Event(enable_timing=True), torch.cuda.Event(enable_timing=True)) for _ in requests ] end_events = [ (torch.cuda.Event(enable_timing=True), torch.cuda.Event(enable_timing=True)) for _ in requests ] for ((indices, offsets, indices_weights), start_event, end_event) in zip( requests, start_events, end_events ): if flush_gpu_cache_size_mb: _ = torch.rand(flush_gpu_cache_size_mb * 1024 * 1024 // 4, dtype=torch.float) torch.cuda.synchronize() start_event[0].record() func1(indices, offsets, indices_weights) end_event[0].record() start_event[1].record() func2(indices, offsets, indices_weights) end_event[1].record() torch.cuda.synchronize() return ( sum( start_event[0].elapsed_time(end_event[0]) * 1.0e-3 for start_event, end_event in zip(start_events, end_events) ) / len(requests), sum( start_event[1].elapsed_time(end_event[1]) * 1.0e-3 for start_event, end_event in zip(start_events, end_events) ) / len(requests), ) @click.group() def cli() -> None: pass @cli.command() @click.option("--alpha", default=1.0) @click.option("--bag-size", default=20) @click.option("--batch-size", default=512) @click.option("--embedding-dim", default=128) @click.option("--weights-precision", type=SparseType, default=SparseType.FP32) @click.option("--stoc", is_flag=True, default=False) @click.option("--iters", default=100) @click.option("--managed", default="device") @click.option("--mixed", is_flag=True, default=False) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=32) @click.option("--reuse", default=0.0) @click.option("--row-wise/--no-row-wise", default=True) @click.option("--weighted", is_flag=True, default=False) @click.option("--weighted-num-requires-grad", type=int, default=None) @click.option("--flush-gpu-cache-size-mb", default=0) def device( # noqa C901 alpha: float, bag_size: int, batch_size: int, embedding_dim: int, weights_precision: SparseType, stoc: bool, iters: int, managed: str, mixed: bool, num_embeddings: int, num_tables: int, reuse: float, row_wise: bool, weighted: bool, weighted_num_requires_grad: Optional[int], flush_gpu_cache_size_mb: int, ) -> None: np.random.seed(42) B = batch_size D = embedding_dim L = bag_size E = num_embeddings T = num_tables if weighted_num_requires_grad: assert weighted_num_requires_grad <= T weighted_requires_grad_tables = np.random.choice( T, replace=False, size=(weighted_num_requires_grad,) ).tolist() feature_requires_grad = ( torch.tensor( [1 if t in weighted_requires_grad_tables else 0 for t in range(T)] ) .to(get_device()) .int() ) else: feature_requires_grad = None if mixed: Ds = [ div_round_up(np.random.randint(low=int(0.5 * D), high=int(1.5 * D)), 4) for _ in range(T) ] D = np.average(Ds) else: Ds = [D] * T optimizer = OptimType.EXACT_ROWWISE_ADAGRAD if row_wise else OptimType.EXACT_ADAGRAD if managed == "device": managed_option = ( EmbeddingLocation.DEVICE if torch.cuda.is_available() else EmbeddingLocation.HOST ) else: managed_option = EmbeddingLocation.MANAGED emb = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, managed_option, ComputeDevice.CUDA if torch.cuda.is_available() else ComputeDevice.CPU, ) for d in Ds ], optimizer=optimizer, learning_rate=0.1, eps=0.1, weights_precision=weights_precision, stochastic_rounding=stoc, ).to(get_device()) if weights_precision == SparseType.INT8: emb.init_embedding_weights_uniform(-0.0003, 0.0003) nparams = sum(w.numel() for w in emb.split_embedding_weights()) param_size_multiplier = PRECISION_SIZE_MULTIPLIER[weights_precision] logging.info( f"Embedding parameters: {nparams / 1.0e9: .2f} GParam, " f"{nparams * param_size_multiplier / 1.0e9: .2f}GB" ) logging.info( f"Accessed weights per batch: {B * sum(Ds) * L * param_size_multiplier / 1.0e6: .2f}MB" ) requests = generate_requests( iters, B, T, L, E, reuse=reuse, alpha=alpha, weights_precision=weights_precision, weighted=weighted, ) # forward time_per_iter = benchmark_requests( requests, lambda indices, offsets, per_sample_weights: emb.forward( indices.long(), offsets.long(), per_sample_weights, feature_requires_grad=feature_requires_grad, ), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"Forward, B: {B}, " f"E: {E}, T: {T}, D: {D}, L: {L}, W: {weighted}, " f"BW: {param_size_multiplier * B * sum(Ds) * L / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) grad_output = torch.randn(B, sum(Ds)).to(get_device()) # backward time_per_iter = benchmark_requests( requests, lambda indices, offsets, per_sample_weights: emb( indices.long(), offsets.long(), per_sample_weights, feature_requires_grad=feature_requires_grad, ).backward(grad_output), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"ForwardBackward, B: {B}, E: {E}, T: {T}, D: {D}, L: {L}, " f"BW: {3 * param_size_multiplier * B * sum(Ds) * L / time_per_iter / 1.0e9: .2f}GB/s, " f"T: {time_per_iter * 1.0e6:.0f}us" ) @cli.command() @click.option("--alpha", default=1.0) @click.option("--bag-size", default=20) @click.option("--batch-size", default=512) @click.option("--embedding-dim", default=128) @click.option("--weights-precision", type=SparseType, default=SparseType.FP32) @click.option("--stoc", is_flag=True, default=False) @click.option("--iters", default=100) @click.option("--mixed", is_flag=True, default=False) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=32) @click.option("--reuse", default=0.0) @click.option("--uvm-tables", default=1) @click.option("--uvm-bag-size", default=1) @click.option("--weighted", is_flag=True, default=False) @click.option("--flush-gpu-cache-size-mb", default=0) def uvm( alpha: bool, bag_size: int, batch_size: int, embedding_dim: int, weights_precision: SparseType, stoc: bool, iters: int, mixed: bool, num_embeddings: int, num_tables: int, reuse: float, uvm_tables: int, uvm_bag_size: int, weighted: bool, flush_gpu_cache_size_mb: int, ) -> None: np.random.seed(42) B = batch_size D = embedding_dim L = bag_size E = num_embeddings T = num_tables T_uvm = uvm_tables assert T_uvm <= T assert ( T_uvm > 0 ), f"T_uvm specified {T_uvm} <= 0. If not testing UVM, please use device benchmark." T_gpu = T - T_uvm L_uvm = uvm_bag_size if mixed: Ds = [ div_round_up(np.random.randint(low=int(0.5 * D), high=int(1.5 * D)), 4) for _ in range(T) ] D = np.average(Ds) else: Ds = [D] * T emb_uvm = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, EmbeddingLocation.MANAGED, ComputeDevice.CUDA, ) for d in Ds[:T_uvm] ], weights_precision=weights_precision, stochastic_rounding=stoc, ).cuda() if weights_precision == SparseType.INT8: emb_uvm.init_embedding_weights_uniform(-0.0003, 0.0003) if T_gpu > 0: emb_gpu = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, EmbeddingLocation.DEVICE, ComputeDevice.CUDA, ) for d in Ds[T_uvm:] ], weights_precision=weights_precision, stochastic_rounding=stoc, ).cuda() if weights_precision == SparseType.INT8: emb_gpu.init_embedding_weights_uniform(-0.0003, 0.0003) emb_mixed = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, managed_option, ComputeDevice.CUDA, ) for (d, managed_option) in zip( Ds, [EmbeddingLocation.MANAGED] * T_uvm + [EmbeddingLocation.DEVICE] * T_gpu, ) ], weights_precision=weights_precision, stochastic_rounding=stoc, ).cuda() if weights_precision == SparseType.INT8: emb_mixed.init_embedding_weights_uniform(-0.0003, 0.0003) requests_uvm = generate_requests( iters, B, T_uvm, L_uvm, E, reuse=reuse, alpha=alpha, weights_precision=weights_precision, weighted=weighted, ) if T_gpu > 0: requests_gpu = generate_requests( iters, B, T_gpu, L, E, reuse=reuse, alpha=alpha, weights_precision=weights_precision, weighted=False, ) param_size_multiplier = PRECISION_SIZE_MULTIPLIER[weights_precision] time_per_iter = benchmark_requests( requests_uvm, lambda indices, offsets, per_sample_weights: emb_uvm.forward( indices.long(), offsets.long(), per_sample_weights, ), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"UVM Forward, B: {B}, " f"E: {E}, T: {T_uvm}, D: {D}, L: {L_uvm}, W: {weighted}, " f"BW: {param_size_multiplier * B * sum(Ds[:T_uvm]) * L_uvm / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) if T_gpu > 0: requests = [] for rs_uvm, rs_gpu in zip(requests_uvm, requests_gpu): indices = torch.cat([rs_uvm[0], rs_gpu[0]]) lengths = [L_uvm] * (T_uvm * B) + [L] * (T_gpu * B) offsets = torch.tensor(([0] + np.cumsum(lengths).tolist())).int().cuda() per_sample_weights = None if weighted: assert (this_rs_uvm_weights := rs_uvm[2]) is not None assert (this_rs_gpu_weights := rs_gpu[2]) is not None per_sample_weights = torch.cat( [this_rs_uvm_weights, this_rs_gpu_weights] ) requests.append((indices, offsets, per_sample_weights)) # forward time_per_iter = benchmark_requests( requests_gpu, lambda indices, offsets, per_sample_weights: emb_gpu.forward( indices.long(), offsets.long(), per_sample_weights, ), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"GPU Forward, B: {B}, " f"E: {E}, T: {T_gpu}, D: {D}, L: {L}, W: {weighted}, " f"BW: {param_size_multiplier * B * sum(Ds[T_uvm:]) * L / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) time_per_iter = benchmark_requests( requests, lambda indices, offsets, per_sample_weights: emb_mixed.forward( indices.long(), offsets.long(), per_sample_weights, ), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"Mixed Forward, B: {B}, " f"E: {E}, T: {T}, D: {D}, L: {L}, W: {weighted}, " f"BW: {param_size_multiplier * B * sum(Ds) * L / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) @cli.command() @click.option("--alpha", default=1.0) @click.option("--bag-size", default=20) @click.option("--batch-size", default=512) @click.option("--cache-algorithm", default="lru") @click.option("--cache-sets", default=1024) @click.option("--embedding-dim", default=128) @click.option("--weights-precision", type=SparseType, default=SparseType.FP32) @click.option("--stoc", is_flag=True, default=False) @click.option("--long-index", is_flag=True, default=False) @click.option("--iters", default=100) @click.option("--mixed", is_flag=True, default=False) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=32) @click.option("--reuse", default=0.1) @click.option("--weighted", is_flag=True, default=False) @click.option("--flush-gpu-cache-size-mb", default=0) def cache( # noqa C901 alpha: float, bag_size: int, batch_size: int, cache_algorithm: str, cache_sets: int, embedding_dim: int, weights_precision: SparseType, stoc: bool, iters: int, long_index: bool, mixed: bool, num_embeddings: int, num_tables: int, reuse: float, weighted: bool, flush_gpu_cache_size_mb: int, ) -> None: np.random.seed(42) optimizer = OptimType.EXACT_ROWWISE_ADAGRAD B = batch_size D = embedding_dim L = bag_size E = num_embeddings T = num_tables cache_alg = CacheAlgorithm.LRU if cache_algorithm == "lru" else CacheAlgorithm.LFU if mixed: Ds = [ div_round_up(np.random.randint(low=int(0.5 * D), high=int(1.5 * D)), 4) for _ in range(T) ] D = np.average(Ds) else: Ds = [D] * T emb_nc = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, EmbeddingLocation.MANAGED, ComputeDevice.CUDA, ) for d in Ds ], optimizer=optimizer, weights_precision=weights_precision, stochastic_rounding=stoc, ).cuda() if weights_precision == SparseType.INT8: emb_nc.init_embedding_weights_uniform(-0.0003, 0.0003) emb = SplitTableBatchedEmbeddingBagsCodegen( [ ( E, d, EmbeddingLocation.MANAGED_CACHING, ComputeDevice.CUDA, ) for d in Ds ], optimizer=optimizer, weights_precision=weights_precision, stochastic_rounding=stoc, cache_sets=cache_sets, cache_algorithm=cache_alg, ).cuda() if weights_precision == SparseType.INT8: emb.init_embedding_weights_uniform(-0.0003, 0.0003) nparams = sum(w.numel() for w in emb.split_embedding_weights()) param_size_multiplier = PRECISION_SIZE_MULTIPLIER[weights_precision] logging.info( f"Embedding tables: {E * T} rows, {nparams / 1.0e9: .2f} GParam, " f"{nparams * param_size_multiplier / 1.0e6: .2f}MB" ) logging.info( f"Accessed weights per batch: {B * T * L} rows, " f"{B * T * L * D * param_size_multiplier / 1.0e6: .2f}MB" ) requests = generate_requests( 2 * iters, B, T, L, E, reuse=reuse, alpha=alpha, weighted=weighted ) warmup_requests, requests = requests[:iters], requests[iters:] grad_output = torch.randn(B, sum(Ds)).cuda() time_per_iter = benchmark_requests( requests, lambda indices, offsets, per_sample_weights: emb_nc( indices.long(), offsets.long(), per_sample_weights ).backward(grad_output), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) logging.info( f"ForwardBackward (UVM), B: {B}, E: {E}, T: {T}, D: {D}, L: {L}, " f"BW: {3 * param_size_multiplier * B * sum(Ds) * L / time_per_iter / 1.0e9: .2f}GB/s, " f"T: {time_per_iter * 1.0e6:.0f}us" ) # warm up for indices, offsets, _ in warmup_requests: emb.forward(indices.long(), offsets.long()) # get cache miss rate (forward and backward) and exchanged cache lines (prefetch) cache_misses = [] exchanged_cache_lines = [] NOT_FOUND = -1 for indices, offsets, _ in requests: # pyre-fixme[29]: # `Union[BoundMethod[typing.Callable(Tensor.clone)[[Named(self, # Variable[torch._TTensor (bound to Tensor)])], Variable[torch._TTensor (bound # to Tensor)]], Tensor], Tensor, torch.nn.Module]` is not a function. old_lxu_cache_state = emb.lxu_cache_state.clone() emb.prefetch(indices.long(), offsets.long()) exchanged_cache_lines.append( # pyre-fixme[16]: `bool` has no attribute `sum`. (emb.lxu_cache_state != old_lxu_cache_state).sum().item() ) cache_misses.append((emb.lxu_cache_locations_list[0] == NOT_FOUND).sum().item()) emb.forward(indices.long(), offsets.long()) logging.info( f"Exchanged cache lines -- mean: {sum(exchanged_cache_lines)/len(requests): .2f}, " f"max: {max(exchanged_cache_lines)}, min: {min(exchanged_cache_lines)}" ) logging.info( f"Cache miss -- mean: {sum(cache_misses)/len(requests)}, " f"max: {max(cache_misses)}, min: {min(cache_misses)}" ) # benchmark prefetch emb.reset_cache_states() for indices, offsets, _ in warmup_requests: emb.forward(indices, offsets) prefetch_time, forward_backward_time = benchmark_pipelined_requests( requests, lambda indices, offsets, indices_weights: emb.prefetch(indices, offsets), lambda indices, offsets, indices_weights: emb.forward( indices, offsets, indices_weights ).backward(grad_output), flush_gpu_cache_size_mb=flush_gpu_cache_size_mb, ) e2e_time = prefetch_time + forward_backward_time logging.info( f"ForwardBackward (LXU), reuse: {reuse}, alpha: {alpha}, B: {B}, " f"E: {E}, T: {T}, D: {D}, L: {L}, " f"BW: {3 * param_size_multiplier * B * sum(Ds) * L / e2e_time / 1.0e9: .2f}GB/s, " f"Tprefetch: {prefetch_time * 1.0e6:.0f}us, " f"{2 * sum(exchanged_cache_lines) * param_size_multiplier * D / prefetch_time / len(requests) / 1.0e9: .2f} GB/s, " f"Tfwdbwd: {forward_backward_time * 1.0e6:.0f}us, " f"{3 * param_size_multiplier * B * sum(Ds) * L / forward_backward_time / 1.0e9: .2f} GB/s, " f"Te2e: {e2e_time * 1.0e6:.0f}us, " ) def benchmark_cpu_requests( requests: List[Tuple[torch.Tensor, torch.Tensor, Optional[torch.Tensor]]], func: Callable[[Tensor, Tensor, Optional[Tensor]], Tensor], ) -> float: import time start_time = time.perf_counter() for (indices, offsets, weights) in requests: func(indices, offsets, weights) end_time = time.perf_counter() return (end_time - start_time) / len(requests) @cli.command() @click.option("--alpha", default=1.0) @click.option("--bag-size", default=20) @click.option("--batch-size", default=512) @click.option("--embedding-dim", default=128) @click.option("--weights-precision", type=SparseType, default=SparseType.FP32) @click.option("--stoc", is_flag=True, default=False) @click.option("--iters", default=100) @click.option("--managed", default="device") @click.option("--mixed", is_flag=True, default=False) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=32) @click.option("--reuse", default=0.0) @click.option("--row-wise/--no-row-wise", default=True) @click.option("--weighted", is_flag=True, default=False) @click.option("--weighted-num-requires-grad", type=int, default=None) @click.option("--int4", is_flag=True, default=False) @click.option("--index-remapping", is_flag=True, default=False) def cpu( # noqa C901 alpha: float, bag_size: int, batch_size: int, embedding_dim: int, weights_precision: SparseType, stoc: bool, iters: int, managed: str, mixed: bool, num_embeddings: int, num_tables: int, reuse: float, row_wise: bool, weighted: bool, weighted_num_requires_grad: Optional[int], int4: bool, index_remapping: bool, ) -> None: assert int4 np.random.seed(42) B = batch_size D = embedding_dim L = bag_size E = num_embeddings T = num_tables if weighted_num_requires_grad: assert weighted_num_requires_grad <= T weighted_requires_grad_tables = np.random.choice( T, replace=False, size=(weighted_num_requires_grad,) ).tolist() feature_requires_grad = ( torch.tensor( [1 if t in weighted_requires_grad_tables else 0 for t in range(T)] ) .cuda() .int() ) else: feature_requires_grad = None if mixed: Ds = [ # int4 table batched emb op can only handle mixed D where D is multiple of 8 div_round_up(np.random.randint(low=int(0.5 * D), high=int(1.5 * D)), 8) for _ in range(T) ] D = np.average(Ds) else: Ds = [D] * T emb = Int4TableBatchedEmbeddingBagsCodegen( [(E, d) for d in Ds], use_cpu=True, index_remapping=[torch.arange(E) for _ in Ds] if index_remapping else None, ).cpu() nparams = sum(w.numel() for (w, _) in emb.split_embedding_weights()) logging.info( f"Int4 Embedding parameters: {nparams * 2 / 1.0e9: .2f} GParam, " f"{nparams / 1.0e9: .2f}GB" ) logging.info(f"Accessed weights per batch: {B * T * L * D * 0.5 / 1.0e6: .2f}MB") requests = generate_requests( iters, B, T, L, E, reuse=reuse, alpha=alpha, weights_precision=weights_precision, weighted=weighted, ) requests = [ (a.cpu().int(), b.cpu().int(), c.cpu() if c else None) for (a, b, c) in requests ] # forward time_per_iter = benchmark_cpu_requests( # pyre-fixme[6]: Expected `List[Tuple[Tensor, Tensor, Optional[Tensor]]]` # for 1st param but got `List[Tuple[torch.IntTensor, torch.IntTensor, # Optional[Tensor]]]`. requests, lambda indices, offsets, per_sample_weights: emb.forward( indices, offsets, per_sample_weights, feature_requires_grad=feature_requires_grad, ), ) logging.info( f"Int4 Forward, B: {B}, " f"E: {E}, T: {T}, D: {D}, L: {L}, W: {weighted}, " f"BW: {(0.5) * B * T * L * D / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) @cli.command() @click.option("--alpha", default=1.0) @click.option("--bag-size", default=20) @click.option("--batch-size", default=512) @click.option("--embedding-dim", default=128) @click.option("--weights-precision", type=SparseType, default=SparseType.FP32) @click.option("--stoc", is_flag=True, default=False) @click.option("--iters", default=100) @click.option("--managed", default="device") @click.option("--mixed", is_flag=True, default=False) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=32) @click.option("--reuse", default=0.0) @click.option("--row-wise/--no-row-wise", default=True) @click.option("--weighted", is_flag=True, default=False) @click.option("--weighted-num-requires-grad", type=int, default=None) @click.option("--index-remapping", is_flag=True, default=False) def int4_device( # noqa C901 alpha: float, bag_size: int, batch_size: int, embedding_dim: int, weights_precision: SparseType, stoc: bool, iters: int, managed: str, mixed: bool, num_embeddings: int, num_tables: int, reuse: float, row_wise: bool, weighted: bool, weighted_num_requires_grad: Optional[int], index_remapping: bool, ) -> None: np.random.seed(42) B = batch_size D = embedding_dim L = bag_size E = num_embeddings T = num_tables if weighted_num_requires_grad: assert weighted_num_requires_grad <= T weighted_requires_grad_tables = np.random.choice( T, replace=False, size=(weighted_num_requires_grad,) ).tolist() feature_requires_grad = ( torch.tensor( [1 if t in weighted_requires_grad_tables else 0 for t in range(T)] ) .cuda() .int() ) else: feature_requires_grad = None if mixed: # int4 table batched emb op can only handle mixed D where D is multiple of 8 Ds = [ div_round_up(np.random.randint(low=int(0.5 * D), high=int(1.5 * D)), 8) for _ in range(T) ] D = np.average(Ds) else: Ds = [D] * T emb = Int4TableBatchedEmbeddingBagsCodegen( [(E, d) for d in Ds], index_remapping=[torch.arange(E) for _ in Ds] if index_remapping else None, ).cuda() nparams = sum(w.numel() for (w, _) in emb.split_embedding_weights()) logging.info( f"Int4 Embedding parameters: {nparams * 2 / 1.0e9: .2f} GParam, " f"{nparams / 1.0e9: .2f}GB" ) logging.info(f"Accessed weights per batch: {B * T * L * D * 0.5 / 1.0e6: .2f}MB") requests = generate_requests( iters, B, T, L, E, reuse=reuse, alpha=alpha, weights_precision=weights_precision, weighted=weighted, ) requests = [(a.int(), b.int(), c if c else None) for (a, b, c) in requests] # TODO: multiple or single? requests = [requests[0] for _ in requests] # forward time_per_iter = benchmark_requests( # pyre-fixme[6]: Expected `List[Tuple[Tensor, Tensor, Optional[Tensor]]]` # for 1st param but got `List[Tuple[torch.IntTensor, torch.IntTensor, # Optional[Tensor]]]`. requests, lambda indices, offsets, per_sample_weights: emb.forward( indices.int(), offsets.int(), per_sample_weights, feature_requires_grad=feature_requires_grad, ), ) logging.info( f"Int4 Forward, B: {B}, " f"E: {E}, T: {T}, D: {D}, L: {L}, W: {weighted}, " f"BW: {(0.5) * B * T * L * D / time_per_iter / 1.0e9: .2f}GB/s, " # noqa: B950 f"T: {time_per_iter * 1.0e6:.0f}us" ) @cli.command() @click.option("--bag-size", default=20) @click.option("--batch-size", default=2048) @click.option("--iters", default=10) @click.option("--num-embeddings", default=int(1e5)) @click.option("--num-tables", default=100) @click.option("--load-factor", default=0.75) @click.option("--hit-rate", default=0.9) def hashtable( # noqa C901 bag_size: int, batch_size: int, iters: int, num_embeddings: int, num_tables: int, load_factor: float, hit_rate: float, ) -> None: B = batch_size T = num_tables L = bag_size E = num_embeddings np.random.seed(42) if hit_rate == 1.0: chosen_indices = torch.cat( [torch.arange(E) for _ in range(T)], dim=0 ).int() else: chosen_indices = torch.randint(low=0, high=int(E * 1.0 / hit_rate), size=(E * T,)).view(-1).int() dense_indices = torch.cat( [torch.arange(E) for _ in range(T)], dim=0 ).int() offsets = torch.tensor([E * t for t in range(T + 1)]).int() assert offsets[-1] == chosen_indices.numel() assert offsets.numel() == T + 1 assert (offsets.numel() - 1) // T == 1 capacity = div_round_up(int(dense_indices.numel() * 1.0 / load_factor), 32) hash_table = torch.zeros( (capacity, 3), dtype=torch.int32, ) assert hash_table.numel() * 4 < 2 ** 32 # initialize hash_table[:, :] = -1 torch.ops.fb.pruned_hashmap_insert(chosen_indices, dense_indices, offsets, hash_table, T) hash_table = hash_table.cuda() requests = generate_requests( iters, B, T, L, E, ) requests = [(a.cuda().int(), b.cuda().int(), c) for (a, b, c) in requests] empirical_hit_rate = np.mean([torch.ops.fb.pruned_hashmap_lookup( indices.cuda().int(), offsets.cuda().int(), hash_table.cuda().contiguous(), T ).ne(-1).sum().item() / indices.numel() for indices, offsets, _ in requests]) time_per_iter = benchmark_requests( # pyre-fixme[6]: Expected `List[Tuple[Tensor, Tensor, Optional[Tensor]]]` # for 1st param but got `List[Tuple[torch.IntTensor, torch.IntTensor, # Optional[Tensor]]]`. requests, lambda indices, offsets, _: torch.ops.fb.pruned_hashmap_lookup( indices.cuda().int(), offsets.cuda().int().contiguous(), hash_table.cuda().int().contiguous(), T ), ) logging.info( f"100% hit: B: {B}, T: {T}, L: {L}, E: {E}, QPS: {B * T * L / time_per_iter / 1.0e9:.2f}B QPS/s, " f"T: {time_per_iter * 1.0e6:.0f}us, load factor: {E * T / capacity * 100:.1f}%, hit rate: {empirical_hit_rate * 100:.2f}%, Table size: {hash_table.numel() * 4 / 1.0e6:.0f}MB" ) if __name__ == "__main__": cli()
32.451243
182
0.593802
2b6fbb2b88349e82aaf5ffc1cdf1bf2bd30bc470
1,421
py
Python
scikit-learn/tree_dtc.py
kingreatwill/penter
2d027fd2ae639ac45149659a410042fe76b9dab0
[ "MIT" ]
13
2020-01-04T07:37:38.000Z
2021-08-31T05:19:58.000Z
scikit-learn/tree_dtc.py
kingreatwill/penter
2d027fd2ae639ac45149659a410042fe76b9dab0
[ "MIT" ]
3
2020-06-05T22:42:53.000Z
2020-08-24T07:18:54.000Z
scikit-learn/tree_dtc.py
kingreatwill/penter
2d027fd2ae639ac45149659a410042fe76b9dab0
[ "MIT" ]
9
2020-10-19T04:53:06.000Z
2021-08-31T05:20:01.000Z
import graphviz from sklearn import tree, datasets from sklearn.model_selection import train_test_split import matplotlib.pyplot as plt wine = datasets.load_wine() Xtrain, Xtest, Ytrain, Ytest = train_test_split(wine.data,wine.target,test_size=0.3) clf = tree.DecisionTreeClassifier(criterion="entropy" ,random_state=30 ,splitter="random" ,max_depth=3 ,min_samples_leaf=10 ,min_samples_split=10 ) clf = clf.fit(Xtrain, Ytrain) feature_name = ['酒精','苹果酸','灰','灰的碱性','镁','总酚','类黄酮','非黄烷类酚类','花青素','颜色强度','色调','od280/od315稀释葡萄酒','脯氨酸'] # dot_data = tree.export_graphviz(clf # ,feature_names= feature_name # ,class_names=["琴酒","雪莉","贝尔摩德"] # ,filled=True # ,rounded=True # ) # graph = graphviz.Source(dot_data) # graph.save() plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签 plt.rcParams['axes.unicode_minus']=False #用来正常显示负号 #有中文出现的情况,需要u'内容' plt.figure() tree.plot_tree(clf , feature_names=feature_name , class_names=["琴酒", "雪莉", "贝尔摩德"] , filled=True , rounded=True ) plt.show()
32.295455
105
0.513723
cc7ec806a6713a9a141c960a59d187fa76bb3400
6,984
py
Python
scripts/test/run_test_suite.py
zys-contrib/devtools-frontend
49ae10d02a40b48418788461bb50a19927f7b06a
[ "BSD-3-Clause" ]
null
null
null
scripts/test/run_test_suite.py
zys-contrib/devtools-frontend
49ae10d02a40b48418788461bb50a19927f7b06a
[ "BSD-3-Clause" ]
null
null
null
scripts/test/run_test_suite.py
zys-contrib/devtools-frontend
49ae10d02a40b48418788461bb50a19927f7b06a
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env vpython3 # # Copyright 2020 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Run tests on a pinned version of chrome. DEPRECATED: please use run_test_suite.js instead. """ import argparse import os import sys ROOT_DIRECTORY = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', '..') scripts_path = os.path.join(ROOT_DIRECTORY, 'scripts') sys.path.append(scripts_path) import devtools_paths import test_helpers def parse_options(cli_args): parser = argparse.ArgumentParser(description='Run tests') parser.add_argument('--chrome-binary', dest='chrome_binary', help='path to Chromium binary') parser.add_argument( '--test-suite', dest='test_suite', help= 'test suite name. DEPRECATED: please use --test-suite-path instead.') parser.add_argument( '--test-suite-path', dest='test_suite_path', help= 'path to test suite, starting from the out/TARGET directory. Should use Linux path separators.' ) parser.add_argument('--test-file', dest='test_file', help='an absolute path for the file to test') parser.add_argument( '--target', '-t', default='Default', dest='target', help='The name of the Ninja output directory. Defaults to "Default"') parser.add_argument( '--chrome-features', dest='chrome_features', help= 'comma separated list of strings passed to --enable-features on the chromium commandline' ) parser.add_argument( '--jobs', default='1', dest='jobs', help= 'The number of parallel runners to use (if supported). Defaults to 1') parser.add_argument('--cwd', dest='cwd', help='Path to the directory containing the out dir', default=devtools_paths.devtools_root_path()) parser.add_argument( '--node_modules-path', dest='node_modules_path', help= 'Path to the node_modules directory for Node to use. Will use Node defaults if not set.', default=None) parser.add_argument('test_patterns', nargs='*') return parser.parse_args(cli_args) def run_tests(chrome_binary, chrome_features, test_suite_path, test_suite, jobs, target, cwd=None, node_modules_path=None, test_patterns=None): env = os.environ.copy() env['CHROME_BIN'] = chrome_binary if chrome_features: env['CHROME_FEATURES'] = chrome_features if test_patterns: env['TEST_PATTERNS'] = ';'.join(test_patterns) if jobs: env['JOBS'] = jobs if target: env['TARGET'] = target if node_modules_path is not None: # Node requires the path to be absolute env['NODE_PATH'] = os.path.abspath(node_modules_path) if not cwd: cwd = devtools_paths.devtools_root_path() exec_command = [devtools_paths.node_path()] if 'DEBUG_TEST' in env: exec_command.append('--inspect') exec_command = exec_command + [ devtools_paths.mocha_path(), '--config', os.path.join(test_suite_path, '.mocharc.js'), ] exit_code = test_helpers.popen(exec_command, cwd=cwd, env=env) if exit_code != 0: return True return False def run_test(): print( "DEPRECATED: run_test_suite.py is deprecated and will be removed in the future.\nPlease use run_test_suite.js which is newer and more robust with handling paths." ) OPTIONS = parse_options(sys.argv[1:]) is_cygwin = sys.platform == 'cygwin' chrome_binary = None test_suite = None chrome_features = None # Default to the downloaded / pinned Chromium binary downloaded_chrome_binary = devtools_paths.downloaded_chrome_binary_path() if test_helpers.check_chrome_binary(downloaded_chrome_binary): chrome_binary = downloaded_chrome_binary # Override with the arg value if provided. if OPTIONS.chrome_binary: chrome_binary = OPTIONS.chrome_binary if not test_helpers.check_chrome_binary(chrome_binary): print('Unable to find a Chrome binary at \'%s\'' % chrome_binary) sys.exit(1) if OPTIONS.chrome_features: chrome_features = OPTIONS.chrome_features if (chrome_binary is None): print('Unable to run, no Chrome binary provided') sys.exit(1) if OPTIONS.jobs: jobs = OPTIONS.jobs test_file = OPTIONS.test_file test_patterns = OPTIONS.test_patterns if test_file: test_patterns.append(test_file) print('Using Chromium binary ({}{})\n'.format( chrome_binary, ' ' + chrome_features if chrome_features else '')) print('Using target (%s)\n' % OPTIONS.target) if test_file is not None: print( 'The test_file argument is obsolete, just pass the filename as positional argument' ) if test_patterns: print('Testing file(s) (%s)' % ', '.join(test_patterns)) cwd = OPTIONS.cwd target = OPTIONS.target node_modules_path = OPTIONS.node_modules_path print('Running tests from %s\n' % cwd) test_suite_path_input = OPTIONS.test_suite_path test_suite = OPTIONS.test_suite test_suite_parts = None if test_suite: # test-suite is deprecated and will be removed, but we support it for now to not break the bots until their recipes are updated. test_suite_parts = ['gen', 'test', test_suite] elif test_suite_path_input: # We take the input with Linux path separators, but need to split and join to make sure this works on Windows. test_suite_parts = test_suite_path_input.split('/') else: print( 'Unable to run, require one of --test-suite or --test-suite-path to be provided.' ) sys.exit(1) print('Using Test Suite (%s)\n' % os.path.join(*test_suite_parts)) test_suite_path = os.path.join(os.path.abspath(cwd), 'out', OPTIONS.target, *test_suite_parts) errors_found = False try: errors_found = run_tests(chrome_binary, chrome_features, test_suite_path, test_suite, jobs, target, cwd, node_modules_path, test_patterns=test_patterns) except Exception as err: print(err) if errors_found: print('ERRORS DETECTED') sys.exit(1) if __name__ == '__main__': run_test()
31.890411
170
0.610968
93ccc3c024e0ecb51443c1fc27e96d6281c10516
18,358
py
Python
gdal/swig/python/osgeo/gdal_array.py
mihadyuk/gdal
d4627981715b82ff368547ef00ef26e0b9207048
[ "MIT" ]
null
null
null
gdal/swig/python/osgeo/gdal_array.py
mihadyuk/gdal
d4627981715b82ff368547ef00ef26e0b9207048
[ "MIT" ]
null
null
null
gdal/swig/python/osgeo/gdal_array.py
mihadyuk/gdal
d4627981715b82ff368547ef00ef26e0b9207048
[ "MIT" ]
null
null
null
# This file was automatically generated by SWIG (http://www.swig.org). # Version 1.3.40 # # Do not make changes to this file unless you know what you are doing--modify # the SWIG interface file instead. # This file is compatible with both classic and new-style classes. from sys import version_info if version_info >= (2,6,0): def swig_import_helper(): from os.path import dirname import imp fp = None try: fp, pathname, description = imp.find_module('_gdal_array', [dirname(__file__)]) except ImportError: import _gdal_array return _gdal_array if fp is not None: try: _mod = imp.load_module('_gdal_array', fp, pathname, description) finally: fp.close() return _mod _gdal_array = swig_import_helper() del swig_import_helper else: import _gdal_array del version_info try: _swig_property = property except NameError: pass # Python < 2.2 doesn't have 'property'. def _swig_setattr_nondynamic(self,class_type,name,value,static=1): if (name == "thisown"): return self.this.own(value) if (name == "this"): if type(value).__name__ == 'SwigPyObject': self.__dict__[name] = value return method = class_type.__swig_setmethods__.get(name,None) if method: return method(self,value) if (not static) or hasattr(self,name): self.__dict__[name] = value else: raise AttributeError("You cannot add attributes to %s" % self) def _swig_setattr(self,class_type,name,value): return _swig_setattr_nondynamic(self,class_type,name,value,0) def _swig_getattr(self,class_type,name): if (name == "thisown"): return self.this.own() method = class_type.__swig_getmethods__.get(name,None) if method: return method(self) raise AttributeError(name) def _swig_repr(self): try: strthis = "proxy of " + self.this.__repr__() except: strthis = "" return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,) try: _object = object _newclass = 1 except AttributeError: class _object : pass _newclass = 0 import gdal class VirtualMem(_object): """Proxy of C++ CPLVirtualMemShadow class""" __swig_setmethods__ = {} __setattr__ = lambda self, name, value: _swig_setattr(self, VirtualMem, name, value) __swig_getmethods__ = {} __getattr__ = lambda self, name: _swig_getattr(self, VirtualMem, name) def __init__(self, *args, **kwargs): raise AttributeError("No constructor defined") __repr__ = _swig_repr __swig_destroy__ = _gdal_array.delete_VirtualMem __del__ = lambda self : None; def GetAddr(self): """GetAddr(self)""" return _gdal_array.VirtualMem_GetAddr(self) def Pin(self, start_offset = 0, nsize = 0, bWriteOp = 0): """ Pin(self, size_t start_offset = 0, size_t nsize = 0, int bWriteOp = 0) Pin(self, size_t start_offset = 0, size_t nsize = 0) Pin(self, size_t start_offset = 0) Pin(self) """ return _gdal_array.VirtualMem_Pin(self, start_offset, nsize, bWriteOp) VirtualMem_swigregister = _gdal_array.VirtualMem_swigregister VirtualMem_swigregister(VirtualMem) def TermProgress_nocb(*args, **kwargs): """TermProgress_nocb(double dfProgress, char pszMessage = None, void pData = None) -> int""" return _gdal_array.TermProgress_nocb(*args, **kwargs) TermProgress = _gdal_array.TermProgress def GetArrayFilename(*args): """GetArrayFilename(PyArrayObject psArray) -> retStringAndCPLFree""" return _gdal_array.GetArrayFilename(*args) GetArrayFilename = _gdal_array.GetArrayFilename def BandRasterIONumPy(*args, **kwargs): """ BandRasterIONumPy(Band band, int bWrite, int xoff, int yoff, int xsize, int ysize, PyArrayObject psArray, int buf_type, GDALRIOResampleAlg resample_alg, GDALProgressFunc callback = None, void callback_data = None) -> CPLErr """ return _gdal_array.BandRasterIONumPy(*args, **kwargs) BandRasterIONumPy = _gdal_array.BandRasterIONumPy def DatasetIONumPy(*args, **kwargs): """ DatasetIONumPy(Dataset ds, int bWrite, int xoff, int yoff, int xsize, int ysize, PyArrayObject psArray, int buf_type, GDALRIOResampleAlg resample_alg, GDALProgressFunc callback = None, void callback_data = None) -> CPLErr """ return _gdal_array.DatasetIONumPy(*args, **kwargs) DatasetIONumPy = _gdal_array.DatasetIONumPy def VirtualMemGetArray(*args): """VirtualMemGetArray(VirtualMem virtualmem)""" return _gdal_array.VirtualMemGetArray(*args) VirtualMemGetArray = _gdal_array.VirtualMemGetArray def RATValuesIONumPyWrite(*args, **kwargs): """ RATValuesIONumPyWrite(RasterAttributeTable poRAT, int nField, int nStart, PyArrayObject psArray) -> CPLErr """ return _gdal_array.RATValuesIONumPyWrite(*args, **kwargs) RATValuesIONumPyWrite = _gdal_array.RATValuesIONumPyWrite def RATValuesIONumPyRead(*args, **kwargs): """ RATValuesIONumPyRead(RasterAttributeTable poRAT, int nField, int nStart, int nLength) -> PyObject """ return _gdal_array.RATValuesIONumPyRead(*args, **kwargs) RATValuesIONumPyRead = _gdal_array.RATValuesIONumPyRead import numpy import _gdal_array import gdalconst import gdal gdal.AllRegister() codes = { gdalconst.GDT_Byte : numpy.uint8, gdalconst.GDT_UInt16 : numpy.uint16, gdalconst.GDT_Int16 : numpy.int16, gdalconst.GDT_UInt32 : numpy.uint32, gdalconst.GDT_Int32 : numpy.int32, gdalconst.GDT_Float32 : numpy.float32, gdalconst.GDT_Float64 : numpy.float64, gdalconst.GDT_CInt16 : numpy.complex64, gdalconst.GDT_CInt32 : numpy.complex64, gdalconst.GDT_CFloat32 : numpy.complex64, gdalconst.GDT_CFloat64 : numpy.complex128 } def OpenArray( array, prototype_ds = None ): ds = gdal.Open( GetArrayFilename(array) ) if ds is not None and prototype_ds is not None: if type(prototype_ds).__name__ == 'str': prototype_ds = gdal.Open( prototype_ds ) if prototype_ds is not None: CopyDatasetInfo( prototype_ds, ds ) return ds def flip_code(code): if isinstance(code, (numpy.dtype,type)): # since several things map to complex64 we must carefully select # the opposite that is an exact match (ticket 1518) if code == numpy.int8: return gdalconst.GDT_Byte if code == numpy.complex64: return gdalconst.GDT_CFloat32 for key, value in codes.items(): if value == code: return key return None else: try: return codes[code] except KeyError: return None def NumericTypeCodeToGDALTypeCode(numeric_type): if not isinstance(numeric_type, (numpy.dtype,type)): raise TypeError("Input must be a type") return flip_code(numeric_type) def GDALTypeCodeToNumericTypeCode(gdal_code): return flip_code(gdal_code) def LoadFile( filename, xoff=0, yoff=0, xsize=None, ysize=None, buf_xsize=None, buf_ysize=None, buf_type=None, resample_alg = gdal.GRIORA_NearestNeighbour, callback=None, callback_data=None ): ds = gdal.Open( filename ) if ds is None: raise ValueError("Can't open "+filename+"\n\n"+gdal.GetLastErrorMsg()) return DatasetReadAsArray( ds, xoff, yoff, xsize, ysize, buf_xsize=buf_xsize, buf_ysize=buf_ysize, buf_type=buf_type, resample_alg=resample_alg, callback = callback, callback_data = callback_data ) def SaveArray( src_array, filename, format = "GTiff", prototype = None ): driver = gdal.GetDriverByName( format ) if driver is None: raise ValueError("Can't find driver "+format) return driver.CreateCopy( filename, OpenArray(src_array,prototype) ) def DatasetReadAsArray( ds, xoff=0, yoff=0, win_xsize=None, win_ysize=None, buf_obj=None, buf_xsize = None, buf_ysize = None, buf_type = None, resample_alg = gdal.GRIORA_NearestNeighbour, callback=None, callback_data=None ): """Pure python implementation of reading a chunk of a GDAL file into a numpy array. Used by the gdal.Dataset.ReadAsArray method.""" if win_xsize is None: win_xsize = ds.RasterXSize if win_ysize is None: win_ysize = ds.RasterYSize if ds.RasterCount == 0: return None if ds.RasterCount == 1: return BandReadAsArray( ds.GetRasterBand(1), xoff, yoff, win_xsize, win_ysize, buf_xsize = buf_xsize, buf_ysize = buf_ysize, buf_type = buf_type, buf_obj = buf_obj, resample_alg = resample_alg, callback = callback, callback_data = callback_data ) if buf_obj is None: if buf_xsize is None: buf_xsize = win_xsize if buf_ysize is None: buf_ysize = win_ysize if buf_type is None: buf_type = ds.GetRasterBand(1).DataType for band_index in range(2,ds.RasterCount+1): if buf_type != ds.GetRasterBand(band_index).DataType: buf_type = gdalconst.GDT_Float32 typecode = GDALTypeCodeToNumericTypeCode( buf_type ) if typecode == None: buf_type = gdalconst.GDT_Float32 typecode = numpy.float32 if buf_type == gdalconst.GDT_Byte and ds.GetRasterBand(1).GetMetadataItem('PIXELTYPE', 'IMAGE_STRUCTURE') == 'SIGNEDBYTE': typecode = numpy.int8 buf_obj = numpy.empty([ds.RasterCount, buf_ysize,buf_xsize], dtype = typecode) else: if len(buf_obj.shape) != 3: raise ValueError('Array should have 3 dimensions') shape_buf_xsize = buf_obj.shape[2] shape_buf_ysize = buf_obj.shape[1] if buf_xsize is not None and buf_xsize != shape_buf_xsize: raise ValueError('Specified buf_xsize not consistant with array shape') if buf_ysize is not None and buf_ysize != shape_buf_ysize: raise ValueError('Specified buf_ysize not consistant with array shape') if buf_obj.shape[0] != ds.RasterCount: raise ValueError('Array should have space for %d bands' % ds.RasterCount) datatype = NumericTypeCodeToGDALTypeCode( buf_obj.dtype.type ) if not datatype: raise ValueError("array does not have corresponding GDAL data type") if buf_type is not None and buf_type != datatype: raise ValueError("Specified buf_type not consistant with array type") buf_type = datatype if DatasetIONumPy( ds, 0, xoff, yoff, win_xsize, win_ysize, buf_obj, buf_type, resample_alg, callback, callback_data ) != 0: return None return buf_obj def BandReadAsArray( band, xoff = 0, yoff = 0, win_xsize = None, win_ysize = None, buf_xsize=None, buf_ysize=None, buf_type=None, buf_obj=None, resample_alg = gdal.GRIORA_NearestNeighbour, callback=None, callback_data=None): """Pure python implementation of reading a chunk of a GDAL file into a numpy array. Used by the gdal.Band.ReadAsArray method.""" if win_xsize is None: win_xsize = band.XSize if win_ysize is None: win_ysize = band.YSize if buf_obj is None: if buf_xsize is None: buf_xsize = win_xsize if buf_ysize is None: buf_ysize = win_ysize if buf_type is None: buf_type = band.DataType typecode = GDALTypeCodeToNumericTypeCode( buf_type ) if typecode == None: buf_type = gdalconst.GDT_Float32 typecode = numpy.float32 else: buf_type = NumericTypeCodeToGDALTypeCode( typecode ) if buf_type == gdalconst.GDT_Byte and band.GetMetadataItem('PIXELTYPE', 'IMAGE_STRUCTURE') == 'SIGNEDBYTE': typecode = numpy.int8 buf_obj = numpy.empty([buf_ysize,buf_xsize], dtype = typecode) else: if len(buf_obj.shape) == 2: shape_buf_xsize = buf_obj.shape[1] shape_buf_ysize = buf_obj.shape[0] else: shape_buf_xsize = buf_obj.shape[2] shape_buf_ysize = buf_obj.shape[1] if buf_xsize is not None and buf_xsize != shape_buf_xsize: raise ValueError('Specified buf_xsize not consistant with array shape') if buf_ysize is not None and buf_ysize != shape_buf_ysize: raise ValueError('Specified buf_ysize not consistant with array shape') datatype = NumericTypeCodeToGDALTypeCode( buf_obj.dtype.type ) if not datatype: raise ValueError("array does not have corresponding GDAL data type") if buf_type is not None and buf_type != datatype: raise ValueError("Specified buf_type not consistant with array type") buf_type = datatype if BandRasterIONumPy( band, 0, xoff, yoff, win_xsize, win_ysize, buf_obj, buf_type, resample_alg, callback, callback_data ) != 0: return None return buf_obj def BandWriteArray( band, array, xoff=0, yoff=0, resample_alg = gdal.GRIORA_NearestNeighbour, callback=None, callback_data=None ): """Pure python implementation of writing a chunk of a GDAL file from a numpy array. Used by the gdal.Band.WriteArray method.""" if array is None or len(array.shape) != 2: raise ValueError("expected array of dim 2") xsize = array.shape[1] ysize = array.shape[0] if xsize + xoff > band.XSize or ysize + yoff > band.YSize: raise ValueError("array larger than output file, or offset off edge") datatype = NumericTypeCodeToGDALTypeCode( array.dtype.type ) # if we receive some odd type, like int64, try casting to a very # generic type we do support (#2285) if not datatype: gdal.Debug( 'gdal_array', 'force array to float64' ) array = array.astype( numpy.float64 ) datatype = NumericTypeCodeToGDALTypeCode( array.dtype.type ) if not datatype: raise ValueError("array does not have corresponding GDAL data type") return BandRasterIONumPy( band, 1, xoff, yoff, xsize, ysize, array, datatype, resample_alg, callback, callback_data ) def RATWriteArray(rat, array, field, start=0): """ Pure Python implementation of writing a chunk of the RAT from a numpy array. Type of array is coerced to one of the types (int, double, string) supported. Called from RasterAttributeTable.WriteArray """ if array is None: raise ValueError("Expected array of dim 1") # if not the array type convert it to handle lists etc if not isinstance(array, numpy.ndarray): array = numpy.array(array) if array.ndim != 1: raise ValueError("Expected array of dim 1") if (start + array.size) > rat.GetRowCount(): raise ValueError("Array too big to fit into RAT from start position") if numpy.issubdtype(array.dtype, numpy.integer): # is some type of integer - coerce to standard int # TODO: must check this is fine on all platforms # confusingly numpy.int 64 bit even if native type 32 bit array = array.astype(numpy.int32) elif numpy.issubdtype(array.dtype, numpy.floating): # is some type of floating point - coerce to double array = array.astype(numpy.double) elif numpy.issubdtype(array.dtype, numpy.character): # cast away any kind of Unicode etc array = array.astype(numpy.character) else: raise ValueError("Array not of a supported type (integer, double or string)") return RATValuesIONumPyWrite(rat, field, start, array) def RATReadArray(rat, field, start=0, length=None): """ Pure Python implementation of reading a chunk of the RAT into a numpy array. Called from RasterAttributeTable.ReadAsArray """ if length is None: length = rat.GetRowCount() - start return RATValuesIONumPyRead(rat, field, start, length) def CopyDatasetInfo( src, dst, xoff=0, yoff=0 ): """ Copy georeferencing information and metadata from one dataset to another. src: input dataset dst: output dataset - It can be a ROI - xoff, yoff: dst's offset with respect to src in pixel/line. Notes: Destination dataset must have update access. Certain formats do not support creation of geotransforms and/or gcps. """ dst.SetMetadata( src.GetMetadata() ) #Check for geo transform gt = src.GetGeoTransform() if gt != (0,1,0,0,0,1): dst.SetProjection( src.GetProjectionRef() ) if (xoff == 0) and (yoff == 0): dst.SetGeoTransform( gt ) else: ngt = [gt[0],gt[1],gt[2],gt[3],gt[4],gt[5]] ngt[0] = gt[0] + xoff*gt[1] + yoff*gt[2]; ngt[3] = gt[3] + xoff*gt[4] + yoff*gt[5]; dst.SetGeoTransform( ( ngt[0], ngt[1], ngt[2], ngt[3], ngt[4], ngt[5] ) ) #Check for GCPs elif src.GetGCPCount() > 0: if (xoff == 0) and (yoff == 0): dst.SetGCPs( src.GetGCPs(), src.GetGCPProjection() ) else: gcps = src.GetGCPs() #Shift gcps new_gcps = [] for gcp in gcps: ngcp = gdal.GCP() ngcp.GCPX = gcp.GCPX ngcp.GCPY = gcp.GCPY ngcp.GCPZ = gcp.GCPZ ngcp.GCPPixel = gcp.GCPPixel - xoff ngcp.GCPLine = gcp.GCPLine - yoff ngcp.Info = gcp.Info ngcp.Id = gcp.Id new_gcps.append(ngcp) try: dst.SetGCPs( new_gcps , src.GetGCPProjection() ) except: print ("Failed to set GCPs") return return
37.773663
130
0.638087
5146692ca1929874c44fdf7a95bb18c5cabb70f2
115
py
Python
turbopy/__version__.py
AOstenfeld/turbopy
dc58f6482bd99385574a229739a32bcf3fb18fb2
[ "CC0-1.0" ]
12
2020-06-01T14:01:50.000Z
2021-11-29T01:09:55.000Z
turbopy/__version__.py
AOstenfeld/turbopy
dc58f6482bd99385574a229739a32bcf3fb18fb2
[ "CC0-1.0" ]
143
2020-05-30T13:18:34.000Z
2021-08-25T13:27:10.000Z
turbopy/__version__.py
AOstenfeld/turbopy
dc58f6482bd99385574a229739a32bcf3fb18fb2
[ "CC0-1.0" ]
34
2020-05-30T12:06:02.000Z
2021-07-23T14:22:37.000Z
"""Define a version number for turboPy""" VERSION = ('2020', '10', '14') __version__ = '.'.join(map(str, VERSION))
28.75
41
0.634783
015622962824126bfdda5307d81c61cbe7cbc909
6,228
py
Python
LogAnalysis/flowprocess.py
WenPeiyu/LianjiaSpider
9d4fd31df0120c756fbbd625b66f2fee4fe17891
[ "MIT" ]
null
null
null
LogAnalysis/flowprocess.py
WenPeiyu/LianjiaSpider
9d4fd31df0120c756fbbd625b66f2fee4fe17891
[ "MIT" ]
null
null
null
LogAnalysis/flowprocess.py
WenPeiyu/LianjiaSpider
9d4fd31df0120c756fbbd625b66f2fee4fe17891
[ "MIT" ]
null
null
null
import re import pandas as pd import pickle from log import logger import matplotlib import matplotlib.pyplot as plt import numpy as np class LogFlow: """ 日志编码流 """ def __init__(self, filepath): """ 初始化对象 :param filepath: 欲处理的日志文件地址 """ self.filepath = filepath self.logger = logger self.read_file() self.logger.info("模块{0}初始化成功".format(self.__class__.__name__)) def read_file(self): """ 读入日志文件 :return: """ self.df_log = pd.read_csv(self.filepath) self.logger.info("日志文件 - {file} 载入成功".format(file=self.filepath)) self.df_log_RA_MSG = self.df_log[self.df_log.MSG + self.df_log.RA > 0] def collect_message(self, crnti=None, RA=True): """ 提取日志的信息列 :param crnti: 欲提取的crnti编号,默认为None不具体到具体crnti :param RA: 是否开启随机接入过滤,默认开启,否则读取全部日志字段 :return: """ self.lst_message = [] if crnti is None: if RA: self.lst_message = list(self.df_log_RA_MSG["Message"]) else: self.lst_message = list(self.df_log["Message"]) else: if RA: df_temp = self.df_log_RA_MSG[self.df_log_RA_MSG.CRNTI == crnti] self.lst_message = list(df_temp["Message"]) else: df_temp = self.df_log[self.df_log.CRNTI == crnti] self.lst_message = list(df_temp["Message"]) def extract_information(self): """ 提取消息中的字段,格式化为格式数据 :return: """ self.lst_randomaccess = [] for i in self.lst_message: stra = i re_sign = re.compile(r"\[[a-zA-Z]+[a-zA-Z\s0-9]*?\]") re_allocate = re.compile(r"[ 0-9a-zA-Z_]+\[[,\:\-a-zA-Z\s0-9]+?\][a-zA-Z]*") re_measure = re.compile(r"[0-9a-zA-Z_]+=[-0-9]*") sign = re_sign.findall(stra) sign = {"sign": [i.strip() for i in sign if i.strip()]} stra = re_sign.sub("", stra) allocate = re_allocate.findall(stra) allocate = [i.strip() for i in allocate if i.strip()] allocate = {"allocate": {i.split('[')[0]: i.split('[')[1].replace(']', '') for i in allocate}} stra = re_allocate.sub("", stra) measure = re_measure.findall(stra) measure = [i.strip() for i in measure if i.strip()] measure = {"measure": {i.split('=')[0]: i.split('=')[1] for i in measure}} stra = re_measure.sub("", stra) describe = stra.replace(".", "").split(",") describe = {"describe": [ re.sub("\d+ msg3gid", "msg3gid", re.sub("SFN\[\d+\]", "", re.sub("\| \@\[\d+\]", "", i.strip()))) for i in describe if i.strip()]} self.lst_randomaccess.append({**sign, **allocate, **measure, **describe}) def generate_tagset(self): """ 生成标签集合 :return: """ sign = [] allocate = [] measure = [] describe = [] for i in self.lst_randomaccess: sign = sign + i['sign'] sign = list(set(sign)) measure = measure + list(i["measure"].keys()) measure = list(set(measure)) allocate = allocate + list(i["allocate"].keys()) allocate = list(set(allocate)) describe = describe + i['describe'] describe = list(set(describe)) self.set_tags = (sign, measure, allocate, describe) def init_mapping(self): """ 生成标签到编码的映射表 :return: """ tags = [] attrs = [] no = [] sign = self.set_tags[0] measure = self.set_tags[1] allocate = self.set_tags[2] describe = self.set_tags[3] tags = tags + list(sign) attrs = attrs + len(sign) * ["sign"] no1 = [hex(i)[2:].zfill(4) for i in range(len(sign))] tags = tags + list(measure) attrs = attrs + len(measure) * ["measure"] no2 = [hex(i+256)[2:].zfill(4) for i in range(len(measure))] tags = tags + list(allocate) attrs = attrs + len(allocate) * ["allocate"] no3 = [hex(i+1280)[2:].zfill(4) for i in range(len(allocate))] tags = tags + list(describe) attrs = attrs + len(describe) * ["describe"] no4 = [hex(i+2304)[2:].zfill(4) for i in range(len(describe))] no = [hex(i)[2:].zfill(4) for i in range(len(sign) + len(measure) + len(allocate) + len(describe))] self.df_mapping = pd.DataFrame({ "tag": tags, "attr": attrs, "no_order": no, "no": no1+no2+no3+no4}) def dump_mapping(self, path): """ 导出映射表 :param path: :return: """ pickle.dump(self.df_mapping, open(path, "wb")) def load_mapping(self, path): """ 导入映射表 :param path: :return: """ self.df_mapping = pickle.load(open(path, 'rb')) def generate_code(self): """ 根据映射表将日志消息编码化 :return: """ for num, i in enumerate(self.lst_randomaccess): str_code = "" str_code_color = "" for j in i: for m in i[j]: str_code = str_code + dict(zip(self.df_mapping["tag"], self.df_mapping["no"]))[m] str_code_color = str_code_color + dict(zip(self.df_mapping["tag"], self.df_mapping["no_order"]))[m] self.lst_randomaccess[num]["code"] = str_code self.lst_randomaccess[num]["code_color"] = str_code_color def plot_message_spectrum(self): """ 绘制消息流图谱 :return: """ length = len(self.lst_randomaccess) matplotlib.rcParams['figure.figsize'] = [10, length * 0.5] plt.figure() plt.subplots_adjust(hspace=0) for num, i in enumerate(self.lst_randomaccess): s = i["code_color"] plt.subplot(length, 1, num + 1) lst_color = [eval("0x" + s[i:i + 4]) for i in range(0, len(s), 4)] arr_color = np.array([lst_color]) plt.pcolor(arr_color) plt.axis('off')
34.40884
119
0.514451
7a51766bba3a8d47f51c606f8453e79c7e0d727f
363
py
Python
src/gym_rotors/envs/bebop_reach_position.py
prateeksamaiya/mythesis_copy
67334fe0e206d8cc9625d8356a7035baa3cdc9b8
[ "MIT" ]
null
null
null
src/gym_rotors/envs/bebop_reach_position.py
prateeksamaiya/mythesis_copy
67334fe0e206d8cc9625d8356a7035baa3cdc9b8
[ "MIT" ]
null
null
null
src/gym_rotors/envs/bebop_reach_position.py
prateeksamaiya/mythesis_copy
67334fe0e206d8cc9625d8356a7035baa3cdc9b8
[ "MIT" ]
1
2019-06-03T17:16:23.000Z
2019-06-03T17:16:23.000Z
from gym import utils from gym_rotors.envs import bebop_env class BebopReachPositionEnv(bebop_env.BebopEnv, utils.EzPickle): def __init__(self, reward_type='sparse'): bebop_env.BebopEnv.__init__(self, launchfile='bebop_reach_position.launch', init_drone_pos=[0,0,0.5],n_actions=3,reward_type=reward_type) utils.EzPickle.__init__(self)
45.375
83
0.768595
d7d3528a8e7dbefb75c561a8bb704dd1e009675a
20,129
py
Python
CondCore/Utilities/python/CondDBFW/querying.py
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
13
2015-11-30T15:49:45.000Z
2022-02-08T16:11:30.000Z
CondCore/Utilities/python/CondDBFW/querying.py
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
640
2015-02-11T18:55:47.000Z
2022-03-31T14:12:23.000Z
CondCore/Utilities/python/CondDBFW/querying.py
ckamtsikis/cmssw
ea19fe642bb7537cbf58451dcf73aa5fd1b66250
[ "Apache-2.0" ]
51
2015-08-11T21:01:40.000Z
2022-03-30T07:31:34.000Z
""" connection class translates either a connection string for sqlite, oracle of frontier into a connection object. Also sets up ORM with SQLAlchemy. connection class can also take a pre-constructed engine - useful for web services. """ from __future__ import print_function from __future__ import absolute_import import sqlalchemy from sqlalchemy import create_engine, text, or_ from sqlalchemy.orm import sessionmaker from sqlalchemy.pool import NullPool import datetime from .data_sources import json_data_node from copy import deepcopy from . import models import traceback import os import netrc import sys class connection(object): engine = None connection = None session = None connection_data = None netrc_authenticators = None secrets = None """ Given a connection string, parses the connection string and connects. """ def __init__(self, connection_data, mode=None, map_blobs=False, secrets=None, pooling=False): self._pooling = pooling # add querying utility properties # these must belong to the connection since the way in which their values are handled # depends on the database being connected to. self.range = models.Range self.radius = models.Radius self.regexp = models.RegExp self.regexp.connection_object = self if type(connection_data) in [str, unicode]: # if we've been given a connection string, process it self.connection_data = new_connection_dictionary(connection_data, secrets=secrets, mode=mode) self.schema = self.connection_data.get("schema") if self.connection_data.get("schema") != None else "" self.range.database_type = self.connection_data["host"] self.radius.database_type = self.connection_data["host"] self.regexp.database_type = self.connection_data["host"] else: self.connection_data = connection_data # assume we have an engine # we need to take the string representation so we know which type of db we're aiming at engine_string = str(connection_data) db_type = None if "oracle" in engine_string: db_type = "oracle" elif "frontier" in engine_string: db_type = "frontier" elif "sqlite" in engine_string: db_type = "sqlite" self.range.database_type = db_type self.radius.database_type = db_type self.regexp.database_type = db_type from . import models as ms self.models = ms.generate(map_blobs) #self.base = self.models["Base"] def setup(self): """ Setup engine with given credentials from netrc file, and make a session maker. """ if isinstance(self.connection_data, dict): self.engine = engine_from_dictionary(self.connection_data, pooling=self._pooling) else: # we've been given an engine by the user # use it as the engine self.engine = self.connection_data self.sessionmaker = sessionmaker(bind=self.engine) self.session = self.sessionmaker() self.factory = factory(self) # assign correct schema for database name to each model tmp_models_dict = {} for key in self.models: if self.models[key].__class__ == sqlalchemy.ext.declarative.api.DeclarativeMeta\ and str(self.models[key].__name__) != "Base": if isinstance(self.connection_data, dict): # we can only extract the secrets and schema individuall # if we were given a dictionary... if we were given an engine # we can't do this without parsing the connection string from the engine # - a wide range of which it will be difficult to support! self.models[key].__table__.schema = self.connection_data["schema"] self.models[key].secrets = self.connection_data["secrets"] self.models[key].session = self.session # isn't used anywhere - comment it out for now #self.models[key].authentication = self.netrc_authenticators self.models[key].connection = self tmp_models_dict[key.lower()] = self.models[key] tmp_models_dict[key.lower()].empty = False self.models = tmp_models_dict return self @staticmethod def _get_CMS_frontier_connection_string(database): try: import subprocess return subprocess.Popen(['cmsGetFnConnect', 'frontier://%s' % database], stdout = subprocess.PIPE).communicate()[0].strip() except: raise Exception("Frontier connections can only be constructed when inside a CMSSW environment.") @staticmethod def _cms_frontier_string(database, schema="cms_conditions"): """ Get database string for frontier. """ import urllib return 'oracle+frontier://@%s/%s' % (urllib.quote_plus(connection._get_CMS_frontier_connection_string(database)), schema) @staticmethod def _cms_oracle_string(user, pwd, db_name): """ Get database string for oracle. """ return 'oracle://%s:%s@%s' % (user, pwd, db_name) @staticmethod def build_oracle_url(user, pwd, db_name): """ Build the connection url, and get credentials from self.secrets dictionary. """ database_url = connection._cms_oracle_string(user, pwd, db_name) try: url = sqlalchemy.engine.url.make_url(database_url) if url.password is None: url.password = pwd except sqlalchemy.exc.ArgumentError: url = sqlalchemy.engine.url.make_url('sqlite:///%s' % db_name) return url @staticmethod def build_frontier_url(db_name, schema): database_url = connection._cms_frontier_string(db_name, schema) try: url = sqlalchemy.engine.url.make_url(database_url) except sqlalchemy.exc.ArgumentError: """ Is this needed for a use case? """ url = sqlalchemy.engine.url.make_url('sqlite:///%s' % db_name) return url # currently just commits and closes the current session (ends transaction, closes connection) # may do other things later def tear_down(self): try: self.session.commit() self.close_session() except: return "Couldn't tear down connection on engine %s." % str(self.engine) def close_session(self): self.session.close() return True def hard_close(self): self.engine.dispose() return True # get model based on given model name def model(self, model_name): if model_name.__class__ == sqlalchemy.ext.declarative.api.DeclarativeMeta: model_name = model_name.__name__ model_name = model_name.replace("_", "") return self.models[model_name] # model should be the class the developer wants to be instantiated # pk_to_value maps primary keys to values def object(self, model, pk_to_value): if self.session == None: return None model_data = self.session.query(model) for pk in pk_to_value: model_data = model_data.filter(model.__dict__[pk] == pk_to_value[pk]) return model_data.first() def global_tag(self, **pkargs): return self.factory.object("globaltag", **pkargs) def global_tag_map(self, **pkargs): return self.factory.object("globaltagmap", **pkargs) """def global_tag_map_request(self, **pkargs): return self.factory.object("globaltagmaprequest", **pkargs)""" def tag(self, **pkargs): return self.factory.object("tag", **pkargs) def iov(self, **pkargs): return self.factory.object("iov", **pkargs) def payload(self, **pkargs): return self.factory.object("payload", **pkargs) """def record(self, **pkargs): return self.factory.object("record", **pkargs)""" # adds %% at the beginning and end so LIKE in SQL searches all of the string def _oracle_match_format(self, string): return "%%%s%%" % string # returns dictionary mapping object type to a list of all objects found in the search def search_everything(self, string, amount=10): string = self._oracle_match_format(string) gt = self.model("globaltag") global_tags = self.session.query(gt).filter(or_( gt.name.ilike(string), gt.description.ilike(string), gt.release.ilike(string) )).limit(amount) tag = self.model("tag") tags = self.session.query(tag).filter(or_( tag.name.ilike(string), tag.object_type.ilike(string), tag.description.ilike(string)) ).limit(amount) iov = self.model("iov") iovs = self.session.query(iov).filter(or_( iov.tag_name.ilike(string), iov.since.ilike(string), iov.payload_hash.ilike(string), iov.insertion_time.ilike(string) )).limit(amount) payload = self.model("payload") payloads = self.session.query(payload).filter(or_( payload.hash.ilike(string), payload.object_type.ilike(string), payload.insertion_time.ilike(string) )).limit(amount) return json_data_node.make({ "global_tags" : global_tags.all(), "tags" : tags.all(), "iovs" : iovs.all(), "payloads" : payloads.all() }) def write(self, object): new_object = models.session_independent_object(object, schema=self.schema) self.session.add(new_object) return new_object def commit(self): try: self.session.commit() except: traceback.print_exc() self.session.rollback() def write_and_commit(self, object): if isinstance(object, list): for item in object: self.write_and_commit(item) else: # should be changed to deal with errors - add them to exception handling if they appear self.write(object) self.commit() def rollback(self): try: self.session.rollback() except: traceback.print_exc() print("Session couldn't be rolled back.") class factory(): """ Contains methods for creating objects. """ def __init__(self, connection): self.connection = connection # class_name is the class name of the model to be used # pkargs is a dictionary of keyword arguments used as primary key values # this dictionary will be used to populate the object of type name class_name def object(self, class_name, **pkargs): from .data_sources import json_list from .models import apply_filters # get the class that self.connection holds from the class name model = self.connection.model(class_name) if self.connection.session == None: return None # query for the ORM object, and return the appropriate object (None, CondDBFW object, or json_list) model_data = self.connection.session.query(model) if len(pkargs.items()) != 0: # apply the filters defined in **kwargs model_data = apply_filters(model_data, model, **pkargs) amount = pkargs["amount"] if "amount" in pkargs.keys() else None model_data = model_data.limit(amount) if model_data.count() > 1: # if we have multiple objects, return a json_list return json_list(model_data.all()) elif model_data.count() == 1: # if we have a single object, return that object return model_data.first() else: # if we have no objects returned, return None return None else: # no column arguments were given, so return an empty object new_object = model() new_object.empty = True return new_object def _get_netrc_data(netrc_file, key): """ Returns a dictionary {login : ..., account : ..., password : ...} """ try: headers = ["login", "account", "password"] authenticator_tuple = netrc.netrc(netrc_file).authenticators(key) if authenticator_tuple == None: raise Exception("netrc file must contain key '%s'." % key) except: raise Exception("Couldn't get credentials from netrc file.") return dict(zip(headers, authenticator_tuple)) def new_connection_dictionary(connection_data, secrets=None, mode="r"): """ Function used to construct connection data dictionaries - internal to framework. """ frontier_str_length = len("frontier://") sqlite_str_length = len("sqlite://") #sqlite_file_str_length = len("sqlite_file://") oracle_str_length = len("oracle://") if type(connection_data) in [str, unicode] and connection_data[0:frontier_str_length] == "frontier://": """ frontier://database_name/schema """ db_name = connection_data[frontier_str_length:].split("/")[0] schema = connection_data[frontier_str_length:].split("/")[1] connection_data = {} connection_data["database_name"] = db_name connection_data["schema"] = schema connection_data["host"] = "frontier" connection_data["secrets"] = None elif type(connection_data) in [str, unicode] and connection_data[0:sqlite_str_length] == "sqlite://": """ sqlite://database_file_name """ # for now, just support "sqlite://" format for sqlite connection strings db_name = connection_data[sqlite_str_length:] schema = "" connection_data = {} connection_data["database_name"] = os.path.abspath(db_name) connection_data["schema"] = schema connection_data["host"] = "sqlite" connection_data["secrets"] = None elif type(connection_data) in [str, unicode] and connection_data[0:oracle_str_length] == "oracle://": """ oracle://account:password@database_name or oracle://database_name/schema (requires a separate method of authentication - either dictionary or netrc) """ new_connection_string = connection_data[oracle_str_length:] if ":" in new_connection_string: # the user has given a password - usually in the case of the db upload service database_name = new_connection_string[new_connection_string.index("@")+1:] schema_name = new_connection_string[0:new_connection_string.index(":")] # set username based on connection string username = new_connection_string[0:new_connection_string.index(":")] password = new_connection_string[new_connection_string.index(":")+1:new_connection_string.index("@")] else: mode_to_netrc_key_suffix = {"r" : "read", "w" : "write"} database_name = new_connection_string[0:new_connection_string.index("/")] schema_name = new_connection_string[new_connection_string.index("/")+1:] if secrets == None: username = str(raw_input("Enter the username you want to connect to the schema '%s' with: " % (schema_name))) password = str(raw_input("Enter the password for the user '%s' in database '%s': " % (username, database_name))) else: if isinstance(secrets, str): netrc_key = "%s/%s/%s" % (database_name, schema_name, mode_to_netrc_key_suffix[mode]) netrc_data = _get_netrc_data(secrets, key=netrc_key) # take the username from the netrc entry corresponding to the mode the database is opened in # eg, if the user has given mode="read", the database_name/schema_name/read entry will be taken username = netrc_data["login"] password = netrc_data["password"] elif isinstance(secrets, dict): username = secrets["user"] password = secrets["password"] else: raise Exception("Invalid type given for secrets. Either an str or a dict must be given.") #print("Connected to database %s, schema %s, with username %s." % (database_name, schema_name, username)) connection_data = {} connection_data["database_name"] = database_name connection_data["schema"] = schema_name connection_data["password"] = password connection_data["host"] = "oracle" connection_data["secrets"] = {"login" : username, "password" : password} return connection_data def engine_from_dictionary(dictionary, pooling=True): if dictionary["host"] != "sqlite": if dictionary["host"] != "frontier": # probably oracle # if not frontier, we have to authenticate user = dictionary["secrets"]["login"] pwd = dictionary["secrets"]["password"] # set max label length for oracle if pooling: return create_engine(connection.build_oracle_url(user, pwd, dictionary["database_name"]), label_length=6) else: return create_engine(connection.build_oracle_url(user, pwd, dictionary["database_name"]), label_length=6, poolclass=NullPool) else: # if frontier, no need to authenticate # set max label length for frontier if pooling: return create_engine(connection.build_frontier_url(dictionary["database_name"], dictionary["schema"]), label_length=6) else: return create_engine(connection.build_frontier_url(dictionary["database_name"], dictionary["schema"]), label_length=6, poolclass=NullPool) else: # if host is sqlite, making the url is easy - no authentication return create_engine("sqlite:///%s" % dictionary["database_name"]) def connect(connection_data, mode="r", map_blobs=False, secrets=None, pooling=True): """ Utility method for user - set up a connection object. """ con = connection(connection_data=connection_data, mode=mode, map_blobs=map_blobs, secrets=secrets, pooling=pooling) con = con.setup() return con
43.854031
154
0.57986
06f10e10522621bb75568c8c8f8cbbd37e2a177d
1,702
py
Python
lib/surface/bigtable/clusters/describe.py
bshaffer/google-cloud-sdk
f587382fd112f238c0d6d5ca3dab8f52d2b5c5f9
[ "Apache-2.0" ]
null
null
null
lib/surface/bigtable/clusters/describe.py
bshaffer/google-cloud-sdk
f587382fd112f238c0d6d5ca3dab8f52d2b5c5f9
[ "Apache-2.0" ]
null
null
null
lib/surface/bigtable/clusters/describe.py
bshaffer/google-cloud-sdk
f587382fd112f238c0d6d5ca3dab8f52d2b5c5f9
[ "Apache-2.0" ]
null
null
null
# -*- coding: utf-8 -*- # # Copyright 2016 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """bigtable clusters describe command.""" from __future__ import absolute_import from __future__ import division from __future__ import unicode_literals from googlecloudsdk.api_lib.bigtable import util from googlecloudsdk.calliope import base from googlecloudsdk.command_lib.bigtable import arguments class DescribeCluster(base.DescribeCommand): """Describe an existing Bigtable cluster.""" @staticmethod def Args(parser): """Register flags for this command.""" arguments.AddClusterResourceArg(parser, 'to describe') def Run(self, args): """This is what gets called when the user runs this command. Args: args: an argparse namespace. All the arguments that were provided to this command invocation. Returns: Some value that we want to have printed later. """ cli = util.GetAdminClient() cluster_ref = args.CONCEPTS.cluster.Parse() msg = util.GetAdminMessages( ).BigtableadminProjectsInstancesClustersGetRequest( name=cluster_ref.RelativeName()) return cli.projects_instances_clusters.Get(msg)
34.04
79
0.750294
7b1cd0efcdf27e33841a290beeb721c9e29ae060
1,792
py
Python
python/paddle/fluid/tests/unittests/test_parallel_dygraph_sparse_embedding_over_height.py
L-Net-1992/Paddle
4d0ca02ba56760b456f3d4b42a538555b9b6c307
[ "Apache-2.0" ]
11
2016-08-29T07:43:26.000Z
2016-08-29T07:51:24.000Z
python/paddle/fluid/tests/unittests/test_parallel_dygraph_sparse_embedding_over_height.py
L-Net-1992/Paddle
4d0ca02ba56760b456f3d4b42a538555b9b6c307
[ "Apache-2.0" ]
null
null
null
python/paddle/fluid/tests/unittests/test_parallel_dygraph_sparse_embedding_over_height.py
L-Net-1992/Paddle
4d0ca02ba56760b456f3d4b42a538555b9b6c307
[ "Apache-2.0" ]
1
2021-09-24T11:23:36.000Z
2021-09-24T11:23:36.000Z
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. from __future__ import print_function import os import sys import unittest import paddle.fluid as fluid from test_dist_base import TestDistBase from spawn_runner_base import TestDistSpawnRunner from parallel_dygraph_sparse_embedding_over_height import TestSparseEmbeddingOverHeight flag_name = os.path.splitext(__file__)[0] class TestParallelDygraphSparseEmdeddingOverHeight(TestDistBase): def _setup_config(self): self._sync_mode = False self._nccl2_mode = True self._dygraph = True def test_sparse_embedding(self): if fluid.core.is_compiled_with_cuda(): self.check_with_place( "parallel_dygraph_sparse_embedding_over_height.py", delta=1e-5, check_error_log=True, log_name=flag_name) class TestParallelDygraphSparseEmdeddingOverHeightSpawn(TestDistSpawnRunner): def test_sparse_embedding_with_spawn(self): if fluid.core.is_compiled_with_cuda() and sys.version_info >= (3, 4): self.check_dist_result_with_spawn( test_class=TestSparseEmbeddingOverHeight, delta=1e-5) if __name__ == "__main__": unittest.main()
32.581818
87
0.743304
6c3749bda6728cc42982627bb7dd8b124ef77461
494
py
Python
donkeycar/__init__.py
MonikaFJ/donkeycar
1cf227027951da476865b3f69e26ea749a8c0eec
[ "MIT" ]
1
2022-01-03T13:09:42.000Z
2022-01-03T13:09:42.000Z
donkeycar/__init__.py
JAHOON-JOO/donkeycar
e545c09d314ede51303657ad6d4c931c85307d09
[ "MIT" ]
null
null
null
donkeycar/__init__.py
JAHOON-JOO/donkeycar
e545c09d314ede51303657ad6d4c931c85307d09
[ "MIT" ]
null
null
null
__version__ = '4.0.1-dev' print('using donkey v{} ...'.format(__version__)) import sys if sys.version_info.major < 3: msg = 'Donkey Requires Python 3.6 or greater. You are using {}'.format(sys.version) raise ValueError(msg) # The default recursion limits in CPython are too small. sys.setrecursionlimit(10**5) from . import parts from .vehicle import Vehicle from .memory import Memory from . import utils from . import config from . import contrib from .config import load_config
23.52381
87
0.740891
89a9fc996c5d067f7663eed86064c33c03d2eec9
5,196
py
Python
src/preprocess.py
devanshb26/i3d_keras
511637275b90ff711d14233af23453ddb0070547
[ "MIT" ]
null
null
null
src/preprocess.py
devanshb26/i3d_keras
511637275b90ff711d14233af23453ddb0070547
[ "MIT" ]
null
null
null
src/preprocess.py
devanshb26/i3d_keras
511637275b90ff711d14233af23453ddb0070547
[ "MIT" ]
null
null
null
import cv2 import os import numpy as np import argparse SMALLEST_DIM = 256 IMAGE_CROP_SIZE = 224 FRAME_RATE = 25 # sample frames at 25 frames per second def sample_video(video_path, path_output): # for filename in os.listdir(video_path): if video_path.endswith((".mp4", ".avi")): # filename = video_path + filename os.system("ffmpeg -r {1} -i {0} -q:v 2 {2}/frame_%05d.jpg".format(video_path, FRAME_RATE, path_output)) else: raise ValueError("Video path is not the name of video file (.mp4 or .avi)") # the videos are resized preserving aspect ratio so that the smallest dimension is 256 pixels, with bilinear interpolation def resize(img): # print('Original Dimensions : ', img.shape) original_width = int(img.shape[1]) original_height = int(img.shape[0]) aspect_ratio = original_width / original_height if original_height < original_width: new_height = SMALLEST_DIM new_width = int(new_height * aspect_ratio) else: new_width = SMALLEST_DIM new_height = int(original_width / aspect_ratio) dim = (new_width, new_height) # resize image resized = cv2.resize(img, dim, interpolation=cv2.INTER_LINEAR) # print('Resized Dimensions : ', resized.shape) return resized def crop_center(img, new_size): y, x, c = img.shape (cropx, cropy) = new_size startx = x // 2 - (cropx // 2) starty = y // 2 - (cropy // 2) return img[starty:starty + cropy, startx:startx + cropx] def rescale_pixel_values(img): # print('Data Type: %s' % img.dtype) # print('Min: %.3f, Max: %.3f' % (img.min(), img.max())) img = img.astype('float32') # normalize to the range 0:1 # img /= 255.0 # normalize to the range -1:1 img = (img / 255.0) * 2 - 1 # confirm the normalization # print('Min: %.3f, Max: %.3f' % (img.min(), img.max())) return img # The provided .npy file thus has shape (1, num_frames, 224, 224, 3) for RGB, corresponding to a batch size of 1 def run_rgb(sorted_list_frames): result = np.zeros((1, IMAGE_CROP_SIZE, IMAGE_CROP_SIZE, 3)) for full_file_path in sorted_list_frames: img = cv2.imread(full_file_path, cv2.IMREAD_UNCHANGED) img = pre_process_rgb(img) new_img = np.reshape(img, (1, IMAGE_CROP_SIZE, IMAGE_CROP_SIZE, 3)) result = np.append(result, new_img, axis=0) result = result[1:, :, :, :] result = np.expand_dims(result, axis=0) return result def pre_process_rgb(img): resized = resize(img) img_cropped = crop_center(resized, (IMAGE_CROP_SIZE, IMAGE_CROP_SIZE)) img = rescale_pixel_values(img_cropped) return img def read_frames(video_path): list_frames = [] for file in os.listdir(video_path): if file.endswith(".jpg"): full_file_path = video_path + file list_frames.append(full_file_path) sorted_list_frames = sorted(list_frames) return sorted_list_frames def run_flow(sorted_list_frames): sorted_list_img = [] for frame in sorted_list_frames: img = cv2.imread(frame, cv2.IMREAD_UNCHANGED) img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) sorted_list_img.append(img_gray) result = np.zeros((1, IMAGE_CROP_SIZE, IMAGE_CROP_SIZE, 2)) prev = sorted_list_img[0] for curr in sorted_list_img[1:]: flow = compute_optical_flow(prev, curr) flow = pre_process_flow(flow) prev = curr result = np.append(result, flow, axis=0) result = result[1:, :, :, :] result = np.expand_dims(result, axis=0) return result def pre_process_flow(flow_frame): resized = resize(flow_frame) img_cropped = crop_center(resized, (IMAGE_CROP_SIZE, IMAGE_CROP_SIZE)) new_img = np.reshape(img_cropped, (1, IMAGE_CROP_SIZE, IMAGE_CROP_SIZE, 2)) return new_img # Pixel values are truncated to the range [-20, 20], then rescaled between -1 and 1 def compute_optical_flow(prev, curr): optical_flow = cv2.optflow.createOptFlow_DualTVL1() flow_frame = optical_flow.calc(prev, curr, None) flow_frame = np.clip(flow_frame, -20, 20) flow_frame = flow_frame / 20.0 return flow_frame def main(args): if not os.path.exists(args.path_output): os.makedirs(args.path_output) # sample all video from video_path at specified frame rate (FRAME_RATE param) sample_video(args.video_path, args.path_output) # make sure the frames are processed in order sorted_list_frames = read_frames(args.path_output) video_name = args.video_path.split("/")[-1][:-4] rgb = run_rgb(sorted_list_frames) npy_rgb_output = '../data/' + video_name + '_rgb.npy' np.save(npy_rgb_output, rgb) flow = run_flow(sorted_list_frames) npy_flow_output = '../data/' + video_name + '_flow.npy' np.save(npy_flow_output, flow) if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('--path_output', type=str, default="../data/frames/") parser.add_argument('--video_path', type=str, default="../data/input_videos/cricket.avi") args = parser.parse_args() main(args)
31.682927
122
0.665897
fd50c99d9d3035881f68d702db3207b9d33ec8e9
88
py
Python
ex024.py
victorccard/RepoPython
30e602c671b889cfcc7726cd2d7c90d647001fac
[ "MIT" ]
null
null
null
ex024.py
victorccard/RepoPython
30e602c671b889cfcc7726cd2d7c90d647001fac
[ "MIT" ]
null
null
null
ex024.py
victorccard/RepoPython
30e602c671b889cfcc7726cd2d7c90d647001fac
[ "MIT" ]
null
null
null
cid = str(input('Em que cidade você nasceu?')).strip() print(cid[:5].upper() == 'SANTO')
44
54
0.636364
81c4cc3ff9bf05df6f8faf2f0c2264a4d43e5cd5
24,576
py
Python
test/functional/p2p_sendheaders.py
redecoinproject/redecoin
9a27f0d4976fcc719a04218e0779fdc54d2dbaf2
[ "MIT" ]
2
2022-03-21T15:08:57.000Z
2022-03-26T17:22:27.000Z
test/functional/p2p_sendheaders.py
redecoinproject/redecoin
9a27f0d4976fcc719a04218e0779fdc54d2dbaf2
[ "MIT" ]
null
null
null
test/functional/p2p_sendheaders.py
redecoinproject/redecoin
9a27f0d4976fcc719a04218e0779fdc54d2dbaf2
[ "MIT" ]
1
2022-03-09T08:32:17.000Z
2022-03-09T08:32:17.000Z
#!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers # Copyright (c) 2017-2019 The Raven Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """ Test behavior of headers messages to announce blocks. Setup: - Two nodes, two p2p connections to node0. One p2p connection should only ever receive inv's (omitted from testing description below, this is our control). Second node is used for creating reorgs. Part 1: No headers announcements before "sendheaders" a. node mines a block [expect: inv] send getdata for the block [expect: block] b. node mines another block [expect: inv] send getheaders and getdata [expect: headers, then block] c. node mines another block [expect: inv] peer mines a block, announces with header [expect: getdata] d. node mines another block [expect: inv] Part 2: After "sendheaders", headers announcements should generally work. a. peer sends sendheaders [expect: no response] peer sends getheaders with current tip [expect: no response] b. node mines a block [expect: tip header] c. for N in 1, ..., 10: * for announce-type in {inv, header} - peer mines N blocks, announces with announce-type [ expect: getheaders/getdata or getdata, deliver block(s) ] - node mines a block [ expect: 1 header ] Part 3: Headers announcements stop after large reorg and resume after getheaders or inv from peer. - For response-type in {inv, getheaders} * node mines a 7 block reorg [ expect: headers announcement of 8 blocks ] * node mines an 8-block reorg [ expect: inv at tip ] * peer responds with getblocks/getdata [expect: inv, blocks ] * node mines another block [ expect: inv at tip, peer sends getdata, expect: block ] * node mines another block at tip [ expect: inv ] * peer responds with getheaders with an old hashstop more than 8 blocks back [expect: headers] * peer requests block [ expect: block ] * node mines another block at tip [ expect: inv, peer sends getdata, expect: block ] * peer sends response-type [expect headers if getheaders, getheaders/getdata if mining new block] * node mines 1 block [expect: 1 header, peer responds with getdata] Part 4: Test direct fetch behavior a. Announce 2 old block headers. Expect: no getdata requests. b. Announce 3 new blocks via 1 headers message. Expect: one getdata request for all 3 blocks. (Send blocks.) c. Announce 1 header that forks off the last two blocks. Expect: no response. d. Announce 1 more header that builds on that fork. Expect: one getdata request for two blocks. e. Announce 16 more headers that build on that fork. Expect: getdata request for 14 more blocks. f. Announce 1 more header that builds on that fork. Expect: no response. Part 5: Test handling of headers that don't connect. a. Repeat 10 times: 1. Announce a header that doesn't connect. Expect: getheaders message 2. Send headers chain. Expect: getdata for the missing blocks, tip update. b. Then send 9 more headers that don't connect. Expect: getheaders message each time. c. Announce a header that does connect. Expect: no response. d. Announce 49 headers that don't connect. Expect: getheaders message each time. e. Announce one more that doesn't connect. Expect: disconnect. """ from test_framework.mininode import NodeConnCB, mininode_lock, MsgGetdata, MsgGetHeaders, MsgHeaders, NodeConn, NetworkThread, MsgBlock, CInv, MsgInv, CBlockHeader, MsgGetBlocks, MsgSendHeaders from test_framework.test_framework import redecoinTestFramework from test_framework.util import wait_until, sync_blocks, p2p_port, assert_equal from test_framework.blocktools import create_block, create_coinbase direct_fetch_response_time = 0.05 class TestNode(NodeConnCB): def __init__(self): super().__init__() self.block_announced = False self.last_blockhash_announced = None def clear_last_announcement(self): with mininode_lock: self.block_announced = False self.last_message.pop("inv", None) self.last_message.pop("headers", None) # Request data for a list of block hashes def get_data(self, block_hashes): msg = MsgGetdata() for x in block_hashes: msg.inv.append(CInv(2, x)) self.connection.send_message(msg) def get_headers(self, locator, hashstop): msg = MsgGetHeaders() msg.locator.vHave = locator msg.hashstop = hashstop self.connection.send_message(msg) def send_block_inv(self, blockhash): msg = MsgInv() msg.inv = [CInv(2, blockhash)] self.connection.send_message(msg) def on_inv(self, conn, message): self.block_announced = True self.last_blockhash_announced = message.inv[-1].hash def on_headers(self, conn, message): if len(message.headers): self.block_announced = True message.headers[-1].calc_x16r() self.last_blockhash_announced = message.headers[-1].sha256 # Test whether the last announcement we received had the # right header or the right inv # inv and headers should be lists of block hashes def check_last_announcement(self, headers=None, inv=None): expect_headers = headers if headers is not None else [] expect_inv = inv if inv is not None else [] test_function = lambda: self.block_announced wait_until(test_function, timeout=60, lock=mininode_lock, err_msg="Waiting for last announcement") with mininode_lock: self.block_announced = False success = True compare_inv = [] if "inv" in self.last_message: compare_inv = [x.hash for x in self.last_message["inv"].inv] if compare_inv != expect_inv: success = False hash_headers = [] if "headers" in self.last_message: # treat headers as a list of block hashes hash_headers = [ x.sha256 for x in self.last_message["headers"].headers ] if hash_headers != expect_headers: success = False self.last_message.pop("inv", None) self.last_message.pop("headers", None) return success # noinspection PyMethodOverriding def wait_for_getdata(self, hash_list, timeout=60): if not hash_list: return test_function = lambda: "getdata" in self.last_message and [x.hash for x in self.last_message["getdata"].inv] == hash_list wait_until(test_function, timeout=timeout, lock=mininode_lock, err_msg="waiting for getData()") return def wait_for_block_announcement(self, block_hash, timeout=60): test_function = lambda: self.last_blockhash_announced == block_hash wait_until(test_function, timeout=timeout, lock=mininode_lock, err_msg="waiting for block announcement") return def send_header_for_blocks(self, new_blocks): headers_message = MsgHeaders() headers_message.headers = [ CBlockHeader(b) for b in new_blocks ] self.send_message(headers_message) def send_getblocks(self, locator): getblocks_message = MsgGetBlocks() getblocks_message.locator.vHave = locator self.send_message(getblocks_message) class SendHeadersTest(redecoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 2 # mine count blocks and return the new tip def mine_blocks(self, count): # Clear out last block announcement from each p2p listener [ x.clear_last_announcement() for x in self.p2p_connections ] self.nodes[0].generate(count) return int(self.nodes[0].getbestblockhash(), 16) # mine a reorg that invalidates length blocks (replacing them with # length+1 blocks). # Note: we clear the state of our p2p connections after the # to-be-reorged-out blocks are mined, so that we don't break later tests. # return the list of block hashes newly mined def mine_reorg(self, length): self.nodes[0].generate(length) # make sure all invalidated blocks are node0's sync_blocks(self.nodes, wait=0.1) for x in self.p2p_connections: x.wait_for_block_announcement(int(self.nodes[0].getbestblockhash(), 16)) x.clear_last_announcement() tip_height = self.nodes[1].getblockcount() hash_to_invalidate = self.nodes[1].getblockhash(tip_height-(length-1)) self.nodes[1].invalidateblock(hash_to_invalidate) all_hashes = self.nodes[1].generate(length+1) # Must be longer than the orig chain sync_blocks(self.nodes, wait=0.1) return [int(x, 16) for x in all_hashes] def run_test(self): # Setup the p2p connections and start up the network thread. inv_node = TestNode() test_node = TestNode() self.p2p_connections = [inv_node, test_node] connections = [NodeConn('127.0.0.1', p2p_port(0), self.nodes[0], inv_node), NodeConn('127.0.0.1', p2p_port(0), self.nodes[0], test_node, services=0)] # Set nServices to 0 for test_node, so no block download will occur outside of # direct fetching inv_node.add_connection(connections[0]) test_node.add_connection(connections[1]) NetworkThread().start() # Start up network handling in another thread # Test logic begins here inv_node.wait_for_verack() test_node.wait_for_verack() # Ensure verack's have been processed by our peer inv_node.sync_with_ping() test_node.sync_with_ping() tip = int(self.nodes[0].getbestblockhash(), 16) # PART 1 # 1. Mine a block; expect inv announcements each time self.log.info("Part 1: headers don't start before sendheaders message...") block_time = 0 for i in range(4): old_tip = tip tip = self.mine_blocks(1) assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(inv=[tip]), True) # Try a few different responses; none should affect next announcement if i == 0: # first request the block test_node.get_data([tip]) test_node.wait_for_block(tip) elif i == 1: # next try requesting header and block test_node.get_headers(locator=[old_tip], hashstop=tip) test_node.get_data([tip]) test_node.wait_for_block(tip) test_node.clear_last_announcement() # since we requested headers... elif i == 2: # this time announce own block via headers height = self.nodes[0].getblockcount() last_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] block_time = last_time + 1 new_block = create_block(tip, create_coinbase(height+1), block_time) new_block.solve() test_node.send_header_for_blocks([new_block]) test_node.wait_for_getdata([new_block.sha256]) test_node.send_message(MsgBlock(new_block)) test_node.sync_with_ping() # make sure this block is processed inv_node.clear_last_announcement() test_node.clear_last_announcement() self.log.info("Part 1: success!") self.log.info("Part 2: announce blocks with headers after sendheaders message...") # PART 2 # 2. Send a sendheaders message and test that headers announcements # commence and keep working. test_node.send_message(MsgSendHeaders()) prev_tip = int(self.nodes[0].getbestblockhash(), 16) test_node.get_headers(locator=[prev_tip], hashstop=0) test_node.sync_with_ping() # Now that we've synced headers, headers announcements should work tip = self.mine_blocks(1) assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(headers=[tip]), True) height = self.nodes[0].getblockcount()+1 block_time += 10 # Advance far enough ahead for i in range(10): # Mine i blocks, and alternate announcing either via # inv (of tip) or via headers. After each, new blocks # mined by the node should successfully be announced # with block header, even though the blocks are never requested for j in range(2): blocks = [] for _ in range(i+1): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 if j == 0: # Announce via inv test_node.send_block_inv(tip) test_node.wait_for_getheaders() # Should have received a getheaders now test_node.send_header_for_blocks(blocks) # Test that duplicate inv's won't result in duplicate # getdata requests, or duplicate headers announcements [ inv_node.send_block_inv(x.sha256) for x in blocks ] test_node.wait_for_getdata([x.sha256 for x in blocks]) inv_node.sync_with_ping() else: # Announce via headers test_node.send_header_for_blocks(blocks) test_node.wait_for_getdata([x.sha256 for x in blocks]) # Test that duplicate headers won't result in duplicate # getdata requests (the check is further down) inv_node.send_header_for_blocks(blocks) inv_node.sync_with_ping() [test_node.send_message(MsgBlock(x)) for x in blocks] test_node.sync_with_ping() inv_node.sync_with_ping() # This block should not be announced to the inv node (since it also # broadcast it) assert "inv" not in inv_node.last_message assert "headers" not in inv_node.last_message tip = self.mine_blocks(1) assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(headers=[tip]), True) height += 1 block_time += 1 self.log.info("Part 2: success!") self.log.info("Part 3: headers announcements can stop after large reorg, and resume after headers/inv from peer...") # PART 3. Headers announcements can stop after large reorg, and resume after # getheaders or inv from peer. for j in range(2): # First try mining a reorg that can propagate with header announcement new_block_hashes = self.mine_reorg(length=7) tip = new_block_hashes[-1] assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(headers=new_block_hashes), True) block_time += 8 # Mine a too-large reorg, which should be announced with a single inv new_block_hashes = self.mine_reorg(length=8) tip = new_block_hashes[-1] assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(inv=[tip]), True) block_time += 9 fork_point = self.nodes[0].getblock("%02x" % new_block_hashes[0])["previousblockhash"] fork_point = int(fork_point, 16) # Use getblocks/getdata test_node.send_getblocks(locator = [fork_point]) assert_equal(test_node.check_last_announcement(inv=new_block_hashes), True) test_node.get_data(new_block_hashes) test_node.wait_for_block(new_block_hashes[-1]) for i in range(3): # Mine another block, still should get only an inv tip = self.mine_blocks(1) assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(inv=[tip]), True) if i == 0: # Just get the data -- shouldn't cause headers announcements to resume test_node.get_data([tip]) test_node.wait_for_block(tip) elif i == 1: # Send a getheaders message that shouldn't trigger headers announcements # to resume (best header sent will be too old) test_node.get_headers(locator=[fork_point], hashstop=new_block_hashes[1]) test_node.get_data([tip]) test_node.wait_for_block(tip) elif i == 2: test_node.get_data([tip]) test_node.wait_for_block(tip) # This time, try sending either a getheaders to trigger resumption # of headers announcements, or mine a new block and inv it, also # triggering resumption of headers announcements. if j == 0: test_node.get_headers(locator=[tip], hashstop=0) test_node.sync_with_ping() else: test_node.send_block_inv(tip) test_node.sync_with_ping() # New blocks should now be announced with header tip = self.mine_blocks(1) assert_equal(inv_node.check_last_announcement(inv=[tip]), True) assert_equal(test_node.check_last_announcement(headers=[tip]), True) self.log.info("Part 3: success!") self.log.info("Part 4: Testing direct fetch behavior...") tip = self.mine_blocks(1) height = self.nodes[0].getblockcount() + 1 last_time = self.nodes[0].getblock(self.nodes[0].getbestblockhash())['time'] block_time = last_time + 1 # Create 2 blocks. Send the blocks, then send the headers. blocks = [] for _ in range(2): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 inv_node.send_message(MsgBlock(blocks[-1])) inv_node.sync_with_ping() # Make sure blocks are processed test_node.last_message.pop("getdata", None) test_node.send_header_for_blocks(blocks) test_node.sync_with_ping() # should not have received any getdata messages with mininode_lock: assert "getdata" not in test_node.last_message # This time, direct fetch should work blocks = [] for _ in range(3): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 test_node.send_header_for_blocks(blocks) test_node.sync_with_ping() test_node.wait_for_getdata([x.sha256 for x in blocks], timeout=int(direct_fetch_response_time)) [test_node.send_message(MsgBlock(x)) for x in blocks] test_node.sync_with_ping() # Now announce a header that forks the last two blocks tip = blocks[0].sha256 height -= 1 blocks = [] # Create extra blocks for later for _ in range(20): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 # Announcing one block on fork should not trigger direct fetch # (less work than tip) test_node.last_message.pop("getdata", None) test_node.send_header_for_blocks(blocks[0:1]) test_node.sync_with_ping() with mininode_lock: assert "getdata" not in test_node.last_message # Announcing one more block on fork should trigger direct fetch for # both blocks (same work as tip) test_node.send_header_for_blocks(blocks[1:2]) test_node.sync_with_ping() test_node.wait_for_getdata([x.sha256 for x in blocks[0:2]], timeout=int(direct_fetch_response_time)) # Announcing 16 more headers should trigger direct fetch for 14 more # blocks test_node.send_header_for_blocks(blocks[2:18]) test_node.sync_with_ping() test_node.wait_for_getdata([x.sha256 for x in blocks[2:16]], timeout=int(direct_fetch_response_time)) # Announcing 1 more header should not trigger any response test_node.last_message.pop("getdata", None) test_node.send_header_for_blocks(blocks[18:19]) test_node.sync_with_ping() with mininode_lock: assert "getdata" not in test_node.last_message self.log.info("Part 4: success!") # Now deliver all those blocks we announced. [test_node.send_message(MsgBlock(x)) for x in blocks] self.log.info("Part 5: Testing handling of unconnecting headers") # First we test that receipt of an unconnecting header doesn't prevent # chain sync. for i in range(10): test_node.last_message.pop("getdata", None) blocks = [] # Create two more blocks. for j in range(2): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 # Send the header of the second block -> this won't connect. with mininode_lock: test_node.last_message.pop("getheaders", None) test_node.send_header_for_blocks([blocks[1]]) test_node.wait_for_getheaders() test_node.send_header_for_blocks(blocks) test_node.wait_for_getdata([x.sha256 for x in blocks]) [test_node.send_message(MsgBlock(x)) for x in blocks] test_node.sync_with_ping() assert_equal(int(self.nodes[0].getbestblockhash(), 16), blocks[1].sha256) blocks = [] # Now we test that if we repeatedly don't send connecting headers, we # don't go into an infinite loop trying to get them to connect. MAX_UNCONNECTING_HEADERS = 10 for j in range(MAX_UNCONNECTING_HEADERS+1): blocks.append(create_block(tip, create_coinbase(height), block_time)) blocks[-1].solve() tip = blocks[-1].sha256 block_time += 1 height += 1 for i in range(1, MAX_UNCONNECTING_HEADERS): # Send a header that doesn't connect, check that we get a getheaders. with mininode_lock: test_node.last_message.pop("getheaders", None) test_node.send_header_for_blocks([blocks[i]]) test_node.wait_for_getheaders() # Next header will connect, should re-set our count: test_node.send_header_for_blocks([blocks[0]]) # Remove the first two entries (blocks[1] would connect): blocks = blocks[2:] # Now try to see how many unconnecting headers we can send # before we get disconnected. Should be 5*MAX_UNCONNECTING_HEADERS for i in range(5*MAX_UNCONNECTING_HEADERS - 1): # Send a header that doesn't connect, check that we get a getheaders. with mininode_lock: test_node.last_message.pop("getheaders", None) test_node.send_header_for_blocks([blocks[i%len(blocks)]]) test_node.wait_for_getheaders() # Eventually this stops working. test_node.send_header_for_blocks([blocks[-1]]) # Should get disconnected test_node.wait_for_disconnect() self.log.info("Part 5: success!") # Finally, check that the inv node never received a getdata request, # throughout the test assert "getdata" not in inv_node.last_message if __name__ == '__main__': SendHeadersTest().main()
44.281081
193
0.636108
b2630593eb70dcc16f9fcc35bb50c6e989fb3c07
11,517
py
Python
convert-log.py
perotom/nfc-nci-communication-parser
058a4afd2d2167011343beac6401cd062370ed02
[ "MIT" ]
null
null
null
convert-log.py
perotom/nfc-nci-communication-parser
058a4afd2d2167011343beac6401cd062370ed02
[ "MIT" ]
null
null
null
convert-log.py
perotom/nfc-nci-communication-parser
058a4afd2d2167011343beac6401cd062370ed02
[ "MIT" ]
null
null
null
#!/usr/bin/python from argparse import ArgumentParser def parse(line): bytes = bytearray.fromhex(line) mt = (bytes[0] & 0b11100000) >> 5 if mt == 0: file1.write(" MT: Data packet\n") parseDataPacket(mt, bytes) if mt == 1: file1.write(" MT: Control packet - CMD\n") parseControlPacket(mt, bytes) if mt == 2: file1.write(" MT: Control packet - RES\n") parseControlPacket(mt, bytes) if mt == 3: file1.write(" MT: Control packet - NTF\n") parseControlPacket(mt, bytes) def parseDataPacket(mt, bytes): connId = (bytes[0] & 0b00001111) file1.write(" ConnId: " + str(connId) + "\n") file1.write(" Payload length: " + str(bytes[2]) + " bytes\n") def parseControlPacket(mt, bytes): gid = (bytes[0] & 0b00001111) oid = (bytes[1] & 0b00111111) if gid == 0: file1.write(" GID: NCI Core\n") if oid == 0: file1.write(" OID: CORE_RESET\n") if oid == 1: file1.write(" OID: CORE_INIT\n") if oid == 2: file1.write(" OID: CORE_SET_CONFIG\n") if oid == 3: file1.write(" OID: CORE_GET_CONFIG\n") if oid == 4: file1.write(" OID: CORE_CONN_CREATE\n") if oid == 5: file1.write(" OID: CORE_CONN_CLOSE\n") if oid == 6: file1.write(" OID: CORE_CONN_CREDITS\n") if oid == 7: file1.write(" OID: CORE_GENERIC_ERROR\n") if oid == 8: file1.write(" OID: CORE_INTERFACE_ERROR\n") if gid == 1: file1.write(" GID: RF Management\n") if oid == 0: file1.write(" OID: RF_DISCOVER_MAP\n") if oid == 1: file1.write(" OID: RF_SET_LISTEN_MODE_ROUTING\n") if oid == 2: file1.write(" OID: RF_GET_LISTEN_MODE_ROUTING\n") if oid == 3: file1.write(" OID: RF_DISCOVER\n") if oid == 4: file1.write(" OID: RF_DISCOVER_SELECT\n") if oid == 5: file1.write(" OID: RF_INTF_ACTIVATED\n") if oid == 6: file1.write(" OID: RF_DEACTIVATE\n") if oid == 7: file1.write(" OID: RF_FIELD_INFO\n") if oid == 8: file1.write(" OID: RF_T3T_POLLING\n") if oid == 9: file1.write(" OID: RF_NFCEE_ACTION\n") if oid == 10: file1.write(" OID: RF_NFCEE_DISCOVERY_REQ\n") if oid == 11: file1.write(" OID: RF_PARAMETER_UPDATE\n") if gid == 2: file1.write(" GID: NFCEE Management\n") if oid == 0: file1.write(" OID: NFCEE_DISCOVER\n") if oid == 1: file1.write(" OID: NFCEE_MODE_SET\n") if gid == 3: file1.write(" GID: Proprietary\n") file1.write(" Payload length: " + str(bytes[2]) + " bytes\n") # further parsing if mt == 1: # commands if gid == 0 and oid == 2: parseCoreConfig(bytes, 3) elif gid == 1 and oid == 0: parseRfDiscoverMap(bytes) elif gid == 1 and oid == 1: parseRfSetListenModeRouting(bytes) elif gid == 1 and oid == 3: parseRfDiscover(bytes) elif mt == 2: # responses if gid == 0 and oid == 3: parseCoreConfig(bytes, 4) else: if bytes[3] == 0: file1.write(" Status: OK\n") elif bytes[3] == 1: file1.write(" Status: REJECTED\n") else: file1.write(" Status: OK\n") def parseCoreConfig(bytes, startIndex): params = bytes[startIndex] file1.write(" Params: " + str(params) + "\n") if params <= 0: return i = startIndex + 1 while i < len(bytes): paramId = bytes[i] i += 1 paramLen = bytes[i] i += 1 file1.write(" ParamId: " + getCoreConfigParamName(paramId) + " (" + '0x{:02x}'.format(paramId) + ") length: " + str(paramLen) + "\n") file1.write(" ParamVal: " + " ".join('0x{:02x}'.format(x) for x in bytes[i:i+paramLen]) + "\n") i += paramLen def parseRfDiscoverMap(bytes): mappings = bytes[3] file1.write(" Mappings: " + str(mappings) + "\n") i = 4 while i < len(bytes): file1.write(" RF Protocol: " + getRfProtocol(bytes[i]) + " (" + '0x{:02x}'.format(bytes[i]) + ")" + "\n") if bytes[i + 1] == 1: file1.write(" Mode: Poll\n") elif bytes[i + 1] == 2: file1.write(" Mode: Listen\n") elif bytes[i + 1] == 3: file1.write(" Mode: Poll + Listen\n") else: file1.write(" Mode: Unkown\n") file1.write(" RF Interface: " + getRfInterface(bytes[i + 2]) + " (" + '0x{:02x}'.format(bytes[i + 2]) + ")" + "\n") i += 3 def parseRfDiscover(bytes): configs = bytes[3] file1.write(" Configs: " + str(configs) + "\n") i = 4 while i < len(bytes): file1.write(" RF Tech & Mode: " + getRfTechAndMode(bytes[i]) + " (" + '0x{:02x}'.format(bytes[i]) + ")" + "\n") file1.write(" Discover frequency: " + str(bytes[i + 1]) + "\n") i += 2 def parseRfSetListenModeRouting(bytes): routings = bytes[4] file1.write(" Routings: " + str(routings) + "\n") i = 5 while i < len(bytes): typ = bytes[i] i += 1 length = bytes[i] i += 1 if typ == 0: typeName = "Technology-based" elif typ == 1: typeName = "Protocol-based" elif typ == 2: typeName = "AID-based" file1.write(" Type: " + typeName + " (" + '0x{:02x}'.format(typ) + ") length: " + str(length) + "\n") file1.write(" Value: " + " ".join('0x{:02x}'.format(x) for x in bytes[i:i+length]) + "\n") if typ == 0: file1.write(" Technology: " + getRfTechnology(bytes[i + 2]) + "\n") elif typ == 1: file1.write(" Protocol: " + getRfProtocol(bytes[i + 2]) + "\n") elif typ == 2: file1.write(" AID: " +bytes[i+2:i+length].decode("utf-8") + "\n") getRfTechnology i += length def getRfTechAndMode(tech): if tech == 0: return "NFC_A_PASSIVE_POLL_MODE" if tech == 1: return "NFC_B_PASSIVE_POLL_MODE" if tech == 2: return "NFC_F_PASSIVE_POLL_MODE" if tech == 3: return "NFC_A_ACTIVE_POLL_MODE" if tech == 5: return "NFC_F_ACTIVE_POLL_MODE" if tech == 6: return "NFC_15693_PASSIVE_POLL_MODE" if tech == 0x80: return "NFC_A_PASSIVE_LISTEN_MODE" if tech == 0x81: return "NFC_B_PASSIVE_LISTEN_MODE" if tech == 0x82: return "NFC_F_PASSIVE_LISTEN_MODE" if tech == 0x83: return "NFC_A_ACTIVE_LISTEN_MODE" if tech == 0x85: return "NFC_F_ACTIVE_LISTEN_MODE" if tech == 0x86: return "NFC_15693_PASSIVE_LISTEN_MODE" return "RFU" def getRfTechnology(tech): if tech == 0: return "NFC_RF_TECHNOLOGY_A" if tech == 1: return "NFC_RF_TECHNOLOGY_B" if tech == 2: return "NFC_RF_TECHNOLOGY_F" if tech == 3: return "NFC_RF_TECHNOLOGY_15693" return "RFU" def getRfProtocol(proto): if proto == 0: return "PROTOCOL_UNDETERMINED" if proto == 1: return "PROTOCOL_T1T" if proto == 2: return "PROTOCOL_T2T" if proto == 3: return "PROTOCOL_T3T" if proto == 4: return "PROTOCOL_ISO_DEP" if proto == 5: return "PROTOCOL_NFC_DEP" if proto == 6: return "PROTOCOL_15693" if proto == 0x80: return "PROTOCOL_MIFARE_CLASSIC" if proto == 0x8A: return "PROTOCOL_KOVIO" return "UNKOWN" def getRfInterface(proto): if proto == 0: return "NFCEE Direct RF Interface" if proto == 1: return "Frame RF Interface" if proto == 2: return "ISO-DEP RF Interface" if proto == 3: return "NFC-DEP RF Interface" return "UNKOWN" def getCoreConfigParamName(paramId): if paramId == 0: return "TOTAL_DURATION" if paramId == 1: return "CON_DEVICES_LIMIT" if paramId == 8: return "PA_BAIL_OUT" if paramId == 0x10: return "PB_AFI" if paramId == 0x11: return "PB_BAIL_OUT" if paramId == 0x12: return "PB_ATTRIB_PARAM1" if paramId == 0x13: return "PB_SENSB_REQ_PARAM" if paramId == 0x18: return "PF_BIT_RATE" if paramId == 0x19: return "PF_RC_CODE" if paramId == 0x20: return "PB_H_INFO" if paramId == 0x21: return "PI_BIT_RATE" if paramId == 0x22: return "PA_ADV_FEAT" if paramId == 0x28: return "PN_NFC_DEP_SPEED" if paramId == 0x29: return "PN_ATR_REQ_GEN_BYTES" if paramId == 0x2A: return "PN_ATR_REQ_CONFIG" if paramId == 0x30: return "LA_BIT_FRAME_SDD" if paramId == 0x31: return "LA_PLATFORM_CONFIG" if paramId == 0x32: return "LA_SEL_INFO" if paramId == 0x33: return "LA_NFCID1" if paramId == 0x38: return "LB_SENSB_INFO" if paramId == 0x39: return "LB_NFCID0" if paramId == 0x3A: return "LB_APPLICATION_DATA" if paramId == 0x3B: return "LB_SFGI" if paramId == 0x3C: return "LB_ADC_FO" if paramId == 0x40 or paramId == 0x41 or paramId == 0x42 or paramId == 0x43 or paramId == 0x44 or paramId == 0x45 or paramId == 0x46 or paramId == 0x47 or paramId == 0x48 or paramId == 0x49 or paramId == 0x4A or paramId == 0x4B or paramId == 0x4C or paramId == 0x4D or paramId == 0x4E or paramId == 0x4F: return "LF_T3T_IDENTIFIERS" if paramId == 0x50: return "LF_PROTOCOL_TYPE" if paramId == 0x51: return "LF_T3T_PMM" if paramId == 0x52: return "LF_T3T_MAX" if paramId == 0x53: return "LF_T3T_FLAGS" if paramId == 0x54: return "LF_CON_BITR_F" if paramId == 0x55: return "LF_ADV_FEAT" if paramId == 0x58: return "LI_FWI" if paramId == 0x59: return "LA_HIST_BY" if paramId == 0x5A: return "LB_H_INFO_RESP" if paramId == 0x5B: return "LI_BIT_RATE" if paramId == 0x60: return "LN_WT" if paramId == 0x61: return "LN_ATR_RES_GEN_BYTES" if paramId == 0x62: return "LN_ATR_RES_CONFIG" if paramId == 0x80: return "RF_FIELD_INFO" if paramId == 0x81: return "RF_NFCEE_ACTION" if paramId == 0x82: return "NFCDEP_OP" return "UNKOWN" parser = ArgumentParser() parser.add_argument("input", type=str, help="Read binary logs") parser.add_argument("output", type=str, help="Write converted logs") args = parser.parse_args() file1 = open(args.output, 'w') file2 = open(args.input, 'r') for line in file2.readlines() : if "NxpNciX" in line: hexStr = line.split(">", 1)[1].strip() file1.write("> " + " ".join("0x" + hexStr[i:i+2] for i in range(0, len(hexStr), 2)) + '\n') parse(hexStr) file1.write("\n") if "NxpNciR" in line: hexStr = line.split(">", 1)[1].strip() file1.write("< " + " ".join("0x" + hexStr[i:i+2] for i in range(0, len(hexStr), 2)) + '\n') parse(hexStr) file1.write("\n") if not line.startswith("2020"): file1.write(line.strip() + '\n') file2.close() file1.close()
32.08078
308
0.541547
558e2fb6e75d5162dd7b22c1783e3d5e0db52437
740,065
py
Python
xml_rc.py
youufis/visioninfer
45ce4c8ed47751d329c8eb3fb97fc686119cdca3
[ "MIT" ]
null
null
null
xml_rc.py
youufis/visioninfer
45ce4c8ed47751d329c8eb3fb97fc686119cdca3
[ "MIT" ]
null
null
null
xml_rc.py
youufis/visioninfer
45ce4c8ed47751d329c8eb3fb97fc686119cdca3
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.15.1) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x01\x5b\x51\ \xff\ \xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x02\x01\x00\x48\x00\ \x48\x00\x00\xff\xe1\x0d\x31\x45\x78\x69\x66\x00\x00\x4d\x4d\x00\ \x2a\x00\x00\x00\x08\x00\x07\x01\x12\x00\x03\x00\x00\x00\x01\x00\ \x01\x00\x00\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00\x62\x01\ \x1b\x00\x05\x00\x00\x00\x01\x00\x00\x00\x6a\x01\x28\x00\x03\x00\ \x00\x00\x01\x00\x02\x00\x00\x01\x31\x00\x02\x00\x00\x00\x1c\x00\ \x00\x00\x72\x01\x32\x00\x02\x00\x00\x00\x14\x00\x00\x00\x8e\x87\ \x69\x00\x04\x00\x00\x00\x01\x00\x00\x00\xa4\x00\x00\x00\xd0\x00\ \x0a\xfc\x80\x00\x00\x27\x10\x00\x0a\xfc\x80\x00\x00\x27\x10\x41\ \x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\ \x53\x32\x20\x57\x69\x6e\x64\x6f\x77\x73\x00\x32\x30\x32\x31\x3a\ \x31\x32\x3a\x30\x36\x20\x31\x35\x3a\x33\x35\x3a\x33\x39\x00\x00\ \x00\x00\x03\xa0\x01\x00\x03\x00\x00\x00\x01\x00\x01\x00\x00\xa0\ \x02\x00\x04\x00\x00\x00\x01\x00\x00\x02\x00\xa0\x03\x00\x04\x00\ \x00\x00\x01\x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x06\x01\ \x03\x00\x03\x00\x00\x00\x01\x00\x06\x00\x00\x01\x1a\x00\x05\x00\ \x00\x00\x01\x00\x00\x01\x1e\x01\x1b\x00\x05\x00\x00\x00\x01\x00\ \x00\x01\x26\x01\x28\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x02\ \x01\x00\x04\x00\x00\x00\x01\x00\x00\x01\x2e\x02\x02\x00\x04\x00\ \x00\x00\x01\x00\x00\x0b\xfb\x00\x00\x00\x00\x00\x00\x00\x48\x00\ \x00\x00\x01\x00\x00\x00\x48\x00\x00\x00\x01\xff\xd8\xff\xe0\x00\ \x10\x4a\x46\x49\x46\x00\x01\x02\x00\x00\x48\x00\x48\x00\x00\xff\ \xed\x00\x0c\x41\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\xff\xee\x00\ \x0e\x41\x64\x6f\x62\x65\x00\x64\x80\x00\x00\x00\x01\xff\xdb\x00\ \x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\ \x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\ \x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\ \x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\ \x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x0c\xff\xc0\x00\x11\x08\x00\x4b\x00\xa0\x03\x01\x22\x00\ \x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x0a\xff\xc4\x01\x3f\ \x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\ \x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\ \x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\ \x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\ \x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c\x33\x01\x00\x02\x11\x03\ \x04\x21\x12\x31\x05\x41\x51\x61\x13\x22\x71\x81\x32\x06\x14\x91\ \xa1\xb1\x42\x23\x24\x15\x52\xc1\x62\x33\x34\x72\x82\xd1\x43\x07\ \x25\x92\x53\xf0\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\x26\x44\x93\ \x54\x64\x45\xc2\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\xb3\x84\xc3\ \xd3\x75\xe3\xf3\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\ \xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\ \x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\ \x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x05\x35\x01\x00\ \x02\x11\x03\x21\x31\x12\x04\x41\x51\x61\x71\x22\x13\x05\x32\x81\ \x91\x14\xa1\xb1\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\xe1\x72\x82\ \x92\x43\x53\x15\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\x83\x07\x26\ \x35\xc2\xd2\x44\x93\x54\xa3\x17\x64\x45\x55\x36\x74\x65\xe2\xf2\ \xb3\x84\xc3\xd3\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\ \xf4\xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\ \xe6\xf6\x27\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xff\xda\x00\ \x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\x0e\xd2\x96\xd2\x8f\ \xe9\xa7\xf4\xd6\xfd\xbc\x77\x03\x5f\x69\x4b\x69\x56\x3d\x34\xbd\ \x34\xb8\x95\xc0\xd7\xda\x52\xda\x55\x8f\x4d\x2f\x4d\x2e\x25\x70\ \x35\xf6\x94\xb6\x95\x63\xd3\x4b\xd3\x4b\x89\x5c\x08\x36\xa5\xb5\ \x1f\xd3\x4b\xd3\x4b\x89\x5c\x08\x36\xa5\xb5\x1f\xd3\x4b\xd3\x4b\ \x89\x5c\x08\x36\x94\xb6\x94\x7f\x4d\x2f\x4d\x2e\x25\x70\x20\xda\ \x52\xda\x51\xfd\x34\xbd\x34\xb8\x95\xc0\x83\x69\x4b\x69\x47\xf4\ \xd2\xf4\xd2\xe2\x57\x02\x0d\xa5\x2d\xa5\x1f\xd3\x4b\xd3\x4b\x89\ \x5c\x0f\xff\xd0\xb9\xe9\x25\xe9\x2b\xbe\x8a\x67\x31\x8c\x69\x7d\ \x8e\x15\xb1\xa2\x5c\xe3\x24\x0f\xf3\x03\x9c\xb5\xce\x40\x01\x27\ \xa7\x61\x7f\x83\xcd\x0c\x56\x69\xa7\xe9\x25\xe9\x22\x7d\xbb\xa5\ \xc4\xfd\xae\xbd\x35\xfa\x36\xff\x00\xe9\x15\x61\x82\x8b\x32\x5d\ \x8c\xcb\x05\x96\xd6\x03\xad\x6d\x6d\x7b\xb6\x02\x1a\xf6\x39\xfe\ \xd6\xfd\x26\xbd\x9f\x45\x43\x2e\x7b\x0c\x7e\x69\x18\xfa\x65\x3f\ \x54\x32\x47\xd1\x0f\x9a\x5e\xa8\x32\x0e\x4f\x21\xda\x37\xa8\x8e\ \x86\x3b\xcb\x66\x9f\xa4\x97\xa4\xac\xbd\xd4\x56\xca\xdd\x79\x7d\ \x4f\xb1\xaf\x78\xab\xd2\x7b\xde\x1b\x5e\xdf\x59\xd6\x36\xb6\x9f\ \x4f\x66\xf6\xfd\x35\x3a\xd9\x55\x96\xba\xb6\xbf\x46\x6d\xde\xf2\ \x0b\x43\x43\x98\xdc\x8d\xce\xdf\x1f\x46\x97\xef\x48\x73\xd8\x09\ \x95\x4f\xe4\x8c\xe7\x29\x70\xcf\x83\x83\x0f\xa7\x2c\xa3\x93\x87\ \xdb\xc9\xc1\xfe\xad\x47\x93\xca\x00\x26\x3f\x31\x11\x1a\x8e\x2b\ \x9f\xcb\xe9\xf9\xa3\xc4\xd3\xf4\x92\xf4\x95\x8a\xac\xa6\xda\x71\ \xee\x66\xe8\xca\x79\x65\x2d\x2d\x82\x61\xbe\xae\xef\xed\x35\x19\ \xd4\x91\x5d\x8f\x03\x7f\xa6\xe0\xc7\x06\x10\x7d\xd3\xb2\xc9\xf7\ \x7f\x82\xfc\xf4\x65\xce\xe0\x88\xb9\x64\x8c\x7d\x43\x1f\xab\xd2\ \x78\xcc\xa3\x8f\xe5\x97\xf5\xe7\x14\x0e\x53\x21\x34\x20\x4e\x9c\ \x5a\x6b\xe9\x1e\xaf\xfb\x96\x97\xa4\x97\xa4\xae\xba\x90\xd7\x58\ \xde\xf5\x16\x35\xc7\x73\x00\xdc\xff\x00\xa4\xd9\xdf\xed\xf4\xbf\ \xe1\x36\x7e\x7a\x81\xfb\x33\x4b\x43\xae\xac\x39\xf6\x36\x96\x8d\ \x49\x36\x3e\x76\x57\x2c\x6b\x99\xf9\x8e\xfc\xf4\xc8\xfc\x4b\x95\ \x94\x4c\xa3\x9a\x32\x00\x80\x78\x7d\x55\xc4\x38\xa3\xe9\x8f\xe8\ \xfa\xbe\x65\xc7\x91\xcc\x08\x07\x19\x04\xea\x2f\xc1\xab\xe9\x79\ \x25\xe9\x79\x2b\x3b\xb1\xb6\x87\x07\xbc\x87\x0b\x4b\x66\x9b\x1a\ \x3f\x40\x37\x5d\xb9\xce\x6f\xb1\xbf\xe8\xdc\xef\xe7\x53\x3e\xcc\ \x4a\xe9\x17\x59\x63\x99\x5b\x8b\x1a\xd2\x6b\x7f\xb9\xd6\x7d\x06\ \x53\xed\xfd\x3b\xfe\x96\xef\x4d\x01\xf1\x2e\x58\x8b\x13\x96\xa4\ \x43\xf9\xbc\xdf\x34\x8c\xa1\x11\xfc\xdf\xe9\x4e\x13\x82\x4f\x21\ \x98\x1a\x30\xe8\x65\xf3\x43\x68\xef\xfa\x4d\x7f\x49\x2f\x49\x58\ \xb2\xcc\x5a\xc3\x4b\x9d\x6c\xbd\xa5\xed\x68\xa2\xd9\x80\xe7\x57\ \xef\xf6\xfe\x8f\x73\xd9\xf9\xff\x00\xd7\x4e\xe7\xe2\x34\x6e\x75\ \xba\x13\xb4\x06\xb1\xef\x74\x86\xfa\xcf\x0f\xae\xa6\xbd\xd5\xfa\ \x6c\xfa\x7b\xd3\x87\xc4\x30\x18\xf1\x71\x4a\xac\xc3\xf9\xac\xc3\ \xd7\x1f\x9a\x1f\xcd\xfc\xc8\xfb\x96\x5b\xae\x11\x75\x7f\x34\x3e\ \x5f\xde\xf9\x9a\xde\x92\x5e\x92\xb4\xf3\x4b\x03\x89\x74\x96\xbc\ \x57\x00\x77\xf5\x5f\x88\x7f\xb3\xea\xd6\xf5\x0b\x32\x3a\x7d\x55\ \x1b\x6d\xc9\x6b\x2b\x0f\xf4\xc1\x2c\xb2\x5c\xf9\x8f\x4e\x86\xb9\ \x8d\x76\x43\xbf\x7f\xd1\xfa\x09\x7d\xff\x00\x01\x16\x24\x64\x38\ \xbd\xab\x84\x32\x64\xfd\x6d\x46\x5c\x1e\x88\xcb\xd5\xeb\x57\xdc\ \xf2\xdd\x70\xd1\xae\x3d\x4c\x63\xe9\xfd\xef\x52\x0f\x49\x2f\x49\ \x5a\xaf\x65\xb6\xb6\xaa\x9b\x69\x73\xc0\x73\x4d\x95\x3a\xa1\x04\ \xc3\x08\xf5\x3f\x79\x2a\x9d\x89\x63\x5d\x67\xac\xc6\x52\xd0\xf7\ \xfa\x8f\x21\xa4\xd6\xc3\xe9\xfd\xa7\x63\x8f\xf4\x77\x3f\xe8\xd8\ \x91\xe7\xf9\x78\xc3\x8e\x53\xe1\x8d\x19\x7a\xa3\x38\x4a\xa3\xe9\ \xf9\x25\x1e\x3e\x29\x7f\x93\x87\xcf\x97\xfc\x92\x87\x27\x94\xcb\ \x84\x42\xcd\x81\xa1\x8c\xbe\x6f\xeb\x45\xab\xe9\x25\xe9\x2b\x15\ \x3f\x1a\xe8\x15\x5d\x55\x8e\x23\x71\x6d\x6f\x6b\xc8\x1f\xca\xd8\ \x8b\xe8\xa9\xa3\x96\x32\x1c\x51\x22\x40\xf5\x1a\x86\x39\x61\x31\ \x35\x20\x41\xec\x5f\xff\xd1\xe9\xbd\x15\x26\x54\x03\xda\x48\xd0\ \x38\x13\xf0\x05\x5c\xf4\x7c\x92\xf4\x7c\x95\xd9\x9e\x28\xca\x37\ \x5c\x40\xc7\xed\x72\x86\x3a\x20\xd6\xc5\xe7\x1b\x9e\x5f\x43\x9a\ \x3a\x8b\xf2\xf2\x2e\xb9\xad\x6d\x61\xae\x2c\x0d\x17\x4d\x9e\x9b\ \x9d\x4d\x7e\xdf\x43\xd8\xef\x72\xb8\x28\xaa\xdc\xbc\xd1\x6d\x3e\ \xbb\x7e\xd5\x5c\x30\x89\x6c\x8a\xa9\x87\xd9\xff\x00\x06\xcf\xa4\ \xb5\x2c\xc6\xb0\xd2\x6b\xa2\xcf\xb3\xbb\xf3\x5e\xd6\xb5\xd1\xfd\ \x87\xfb\x10\xb1\x7a\x7b\xb1\xea\xb4\x1b\x9d\x75\xd7\xb9\xd6\x59\ \x7b\xc0\x92\xe2\x36\x7d\x06\xfb\x36\xb1\xa3\xda\xc5\x9e\x39\x39\ \x63\x13\x8e\x22\x23\x19\x63\xcb\x18\xca\x24\x62\x97\xbd\x9a\x3c\ \xbc\x07\xa7\x0e\x38\x47\x1c\x3f\xa2\xfa\xa7\xfc\xe3\x64\xe4\x12\ \xa3\x31\x64\x4a\x06\x8f\xab\xd1\x09\x64\x96\xf2\xff\x00\x6a\xe1\ \x63\xd6\x2e\xc4\x07\xf4\xb4\x8b\x71\xb2\x4b\xad\xba\x1c\xe3\x6e\ \x51\xae\xe0\x1a\xf6\x6d\x65\xcf\xfd\x1d\xff\x00\x43\x67\xe8\xeb\ \xdf\xfa\x24\x62\x6d\xb7\x1f\x3a\xfa\x9a\x05\x59\x54\xb9\xdb\xdf\ \xa3\xbd\x31\x89\xe9\x7e\x8d\x9f\xf8\x65\x9b\x77\xff\x00\x21\x69\ \x55\xd1\x83\x1d\x53\xac\xb9\xef\x18\xcc\x15\xe3\x30\x00\xd6\xd6\ \x76\xfa\x6e\xb7\x6f\xe7\xda\xef\xf8\x44\x9b\xd1\x88\xae\xf0\xfc\ \x87\xd9\x65\xd4\xfd\x9c\x3c\xb5\x8d\x0c\xaf\x5f\x65\x75\x56\xd6\ \x57\xf9\xff\x00\xba\x9a\x79\x29\xfe\xb0\x5c\x78\x27\x09\xc2\x11\ \x32\x37\x8f\x8e\x73\xcd\xfe\x4e\x10\xe2\xfd\x77\xb1\x3f\xea\x43\ \xdc\xc3\xed\xe5\xfe\x75\x77\xba\x3d\x27\x5e\x28\xc8\x12\x6b\xe6\ \xae\x18\x7e\x97\xf5\x38\xdc\xdb\x5f\x65\x94\xe1\xe3\xe1\x38\xd0\ \xe7\x58\x69\xfb\x5b\xd8\x5a\xe6\xb4\x50\x1f\x6d\x98\x0d\x77\xd0\ \x75\x8d\xfd\x0f\xad\x67\xfc\x27\xa6\x96\x4e\x2e\x2e\x1e\x1f\xd9\ \xf1\x31\xf7\xdb\x43\xe8\x0c\x21\xcd\x6e\xdb\x1d\x60\x7d\x2e\xb2\ \xc7\x36\xd7\x7a\x8d\x73\xbe\xd2\xef\x62\xd9\xb7\x06\xc7\xd7\x53\ \x6a\xbe\xca\x0d\x40\x00\xe6\x06\xba\x60\x6d\xf7\x36\xd6\xbf\xfe\ \x8a\x03\x7a\x29\x05\xb3\x93\x63\xc1\xb8\x64\x64\x6e\x0d\x2e\xb5\ \xed\x8f\x4f\x7b\xc0\xf6\x32\xbd\xad\xda\xc6\x27\xfd\xd6\x77\x38\ \x9e\x19\x43\x26\x48\x65\xc9\x90\xcb\xf5\xf9\x63\x0c\xb8\xf2\xf0\ \x4e\x30\xc7\x08\x46\x3c\x1e\xf7\xa3\x1c\xbf\xf0\xb5\xa2\x71\xf4\ \x91\x60\xc2\x26\x31\x8d\x7a\x22\x65\x19\x47\x8a\xf8\xbf\xba\xe3\ \xe4\x7d\x8c\x7d\xb4\x13\x83\xfd\x3d\xa1\xfb\xf1\xee\x77\xbf\x75\ \xdf\xcf\xed\xfe\x91\x95\xfc\xaa\xff\x00\x42\xcf\xd2\x2b\x6c\xae\ \xe6\xe3\xe1\xd9\x4b\x28\x35\x33\x20\x3c\xd8\x6b\x7d\x6c\x63\x43\ \x2d\xdf\x66\xd7\x39\xad\xaf\xfd\x15\x7e\xa7\xef\xff\x00\x36\xaf\ \xfe\xcb\xc8\x73\x9c\xe7\x67\xe4\x82\x5e\xe7\x86\xb1\xcd\x6b\x5b\ \x3f\x98\xd6\xed\xfa\x2d\x48\xf4\x5c\x77\xd8\xdb\xae\x75\x97\xdf\ \x58\x3e\x95\xb7\x1d\xfb\x09\xfc\xf6\xd4\xef\xd0\xef\xd7\xf7\x14\ \x38\xb9\x1c\xf1\xc4\x61\x29\x03\x67\x1c\xb5\xcb\x39\xc6\xf0\xe3\ \x86\x3e\x1a\x86\x2e\x5f\xe7\xf6\xfe\x6e\x2f\x93\xfc\x9f\xea\xd7\ \xcf\x2c\x0c\x84\x80\x3a\x09\x0f\x92\x3f\xa6\x65\xfd\x69\xfe\xf3\ \x8d\x6d\xcd\x6e\x3d\x63\xd5\xab\x75\x8d\xcb\x68\xdf\x9e\xf7\x34\ \xef\x0c\x67\xe7\xd7\xfa\xcf\xa7\xea\x7d\x07\x7f\x46\xff\x00\x07\ \xfc\xea\xb2\x59\x75\x4f\xc1\x6b\x45\x76\xb8\xee\x35\x9f\x4d\xa3\ \x66\xd1\x8a\xd3\x6e\xf7\x7d\x1f\x4e\xaf\xb4\x7b\xdb\xfc\xe7\xe8\ \xff\x00\x71\x5f\xfd\x95\x95\xb8\x38\xe7\xdb\x20\x10\x3f\x47\x4e\ \x93\xcf\xf8\x25\x21\xd3\x2f\xf5\xc5\xce\xca\x2f\x35\xd6\xe6\x50\ \x0b\x1a\x03\x4b\xc3\x43\xed\x76\xdf\xe7\x5f\xec\xfc\xe4\x31\xfc\ \x3e\x51\x89\x8c\xa3\x0f\x98\xce\xe3\x97\x2c\xa5\x5f\xae\x94\x23\ \xfa\xc8\x7a\x7d\x59\xa2\x99\xe7\x12\x90\x90\x27\x41\xc3\xac\x63\ \xfd\x5f\xfb\xd7\x19\xe2\xe6\x62\x59\x71\x7d\xc3\xd4\xc7\xbd\xde\ \xab\x9e\xf8\x73\xdf\x77\xea\xcd\xf7\x3b\x6e\xff\x00\xb3\xff\x00\ \x31\xff\x00\x04\x8f\x98\xdb\x6c\x7d\xf5\x31\xe6\xfb\xea\x6d\xaf\ \x70\x63\x36\x96\xfa\xb4\x36\xaa\x58\x5c\xdf\x6d\x97\xd8\xf7\xee\ \xf6\xfb\xff\x00\xe0\xd5\xf6\x74\x4a\xeb\x63\xcb\x6e\xb3\xed\x57\ \x6b\x76\x51\x20\xb9\xe7\xfe\x11\x8e\xfd\x1e\xd6\x7f\x82\xf6\xfe\ \x87\xfc\x12\x4f\xe8\x95\xdb\x6e\xfc\x8b\x5d\x75\x5e\xa1\xb8\xd2\ \x40\x68\x75\xa6\x36\xd9\x63\xab\xda\xf7\xfa\x2d\x6f\xe8\x7f\xd1\ \xa7\x7d\xc3\x25\x70\x83\x01\x66\x44\xc8\x6f\x1f\x72\x5c\x7c\x3c\ \x3c\x3f\x24\x7d\x78\xff\x00\x9d\xc7\xf2\x60\x9f\xfa\xa4\x7b\xd1\ \x26\xcf\x11\xaa\xd3\xcb\xd2\xe5\x3f\x65\x8f\x71\x6e\xa1\xd7\x31\ \xc2\x74\xd1\xf9\xb7\xda\xce\x7e\x8e\xf6\x3b\x7a\x26\x55\xd7\x36\ \xdc\x82\xdb\xf2\x6b\xb6\xba\x9d\x71\xc8\xb3\x1e\xab\x05\x55\x32\ \x4e\xcc\x3a\xc3\xab\xf4\xac\xb3\x67\xe8\xfe\xd4\xcb\x77\xad\x37\ \xf4\xbb\x5f\x65\x64\xe5\x58\x6a\xad\xfe\xaf\xa6\x43\x49\x73\xc1\ \x2e\xaf\x7d\xbb\x77\xb9\xb5\xb9\xdf\x41\x41\xfd\x0c\x1a\x5d\x45\ \x59\x0f\xad\xb7\x92\x72\xde\x43\x5d\x65\xd3\xf4\x83\xee\x77\xbd\ \x9f\xb9\xec\x4d\x3f\x0f\x99\x89\x8f\xa2\x86\x49\x65\x85\xf0\xe5\ \x3f\xac\x86\x28\x54\xa5\x93\x07\xfa\xaf\x93\xe4\xcd\xfe\x51\x23\ \x30\x12\x07\x5f\x94\x40\xef\x1f\x96\x52\x97\xe8\xcf\xfa\xcd\x2a\ \x5b\x45\x4f\xb1\xbe\x9e\x55\x36\x5c\xdd\xd7\x5a\xf6\x7a\xce\x78\ \x0d\x1b\xac\xad\xdb\xb2\xd8\xff\x00\x59\xbf\xa3\xf4\xbe\x9d\x76\ \x7e\x62\xae\x6b\x73\xb1\x9c\xdb\xe9\x16\xfa\xf7\xe3\x8f\x4e\xe6\ \x59\x8e\x24\xd8\x1b\x8f\x8c\xcc\x6d\xcd\x77\xd9\x30\xf1\x9a\xf7\ \xd6\xc7\xfd\x3b\xbf\x4b\x65\x6b\x75\xfd\x36\xb7\x3f\x73\x5f\x65\ \x4d\x33\xbe\xba\xdc\x5a\xd7\x12\x36\xef\xd3\xe8\xbf\xfa\x88\x55\ \xf4\x6a\x2b\xc8\xae\xed\xce\x35\xd0\x3f\x41\x41\xfa\x2d\x79\xd1\ \xf7\xb9\xdf\x4e\xdb\xdd\xfe\x96\xc5\x29\xe4\xb2\x48\xc2\xf2\x5f\ \x00\x84\x38\xef\x82\x7c\x18\x72\xfb\xf1\x31\x96\x38\xc3\x2f\xf5\ \x38\x3d\xff\x00\xf5\x9f\xce\xe3\xfd\x63\x06\x48\x8e\x2a\x8f\xcc\ \x4c\xab\x71\x72\x87\x07\xe9\x7a\x7f\xe6\x34\xf1\x7d\x7b\xef\xb2\ \xd7\xd7\x53\x2a\xdd\x65\x4c\x73\x09\x2e\x77\xa3\x63\xa9\xaf\x73\ \x5f\xf9\xde\x8b\x7f\x49\xef\x56\xfd\x15\x3a\x7a\x59\xaf\x27\xed\ \x16\x5e\xeb\x76\x87\x8a\x98\x5a\xc6\x35\xbe\xa1\xdf\x6b\xbf\x44\ \xd6\x6f\x7b\xe3\xe9\xbd\x5a\xf4\x55\xce\x54\x4b\x16\x18\x63\x95\ \x5c\x05\x7a\x65\x2c\x83\x7f\xdf\xc9\xeb\x60\xcd\x01\x39\xca\x43\ \x63\xe1\xc3\xf8\x45\xff\xd2\xf4\x1f\x49\x2f\x49\x5b\xf4\xd2\xf4\ \xd4\xbc\x6d\x7f\x6d\xa9\xe9\x25\xe9\x2b\x7e\x9a\x5e\x9a\x5c\x6a\ \xf6\xda\x9e\x92\x5e\x92\xb7\xe9\xa5\xe9\xa5\xc6\xaf\x6d\xa9\xe9\ \x25\xe9\x2b\x7e\x9a\x5e\x9a\x5c\x6a\xf6\xda\x9e\x92\x5e\x92\xb7\ \xe9\xa5\xe9\xa5\xc6\xaf\x6d\xa9\xe9\x25\xe9\x2b\x7e\x9a\x5e\x9a\ \x5c\x6a\xf6\xda\xbe\x92\x5e\x92\xb5\xe9\xa5\xe9\xa5\xc6\xaf\x6d\ \xab\xe9\x25\xe9\x2b\x5e\x9a\x5e\x9a\x5c\x6a\xf6\xda\xbe\x92\x5e\ \x92\xb5\xe9\xa5\xe9\xa5\xc4\x9f\x6d\xab\xe9\x25\xe9\x2b\x7e\x9a\ \x5e\x9a\x5c\x4a\xf6\xdf\xff\xd3\xf5\x3d\xa1\x2d\xa1\x49\x24\x91\ \xa2\xdb\x42\x5b\x42\x74\x92\x56\x8b\x6d\x09\x6d\x09\xd2\x49\x5a\ \x2d\xb4\x25\xb4\x27\x49\x25\x68\xb6\xd0\x96\xd0\x9d\x24\x95\xa2\ \xdb\x42\x5b\x42\x74\x92\x56\x8b\x6d\x09\x6d\x09\xd2\x49\x2b\x6d\ \x09\x6d\x09\xd2\x49\x4b\x6d\x09\x6d\x09\xd2\x49\x4b\x6d\x09\x6d\ \x09\xd2\x49\x4f\xff\xd9\xff\xed\x12\x04\x50\x68\x6f\x74\x6f\x73\ \x68\x6f\x70\x20\x33\x2e\x30\x00\x38\x42\x49\x4d\x04\x25\x00\x00\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x38\x42\x49\x4d\x03\xed\x00\x00\x00\x00\x00\x10\ \x00\x48\x00\x00\x00\x01\x00\x02\x00\x48\x00\x00\x00\x01\x00\x02\ \x38\x42\x49\x4d\x04\x26\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x3f\x80\x00\x00\x38\x42\x49\x4d\x04\x0d\ \x00\x00\x00\x00\x00\x04\x00\x00\x00\x78\x38\x42\x49\x4d\x04\x19\ \x00\x00\x00\x00\x00\x04\x00\x00\x00\x1e\x38\x42\x49\x4d\x03\xf3\ \x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\ \x38\x42\x49\x4d\x04\x0a\x00\x00\x00\x00\x00\x01\x00\x00\x38\x42\ \x49\x4d\x27\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\x00\x00\x00\ \x00\x00\x00\x02\x38\x42\x49\x4d\x03\xf5\x00\x00\x00\x00\x00\x48\ \x00\x2f\x66\x66\x00\x01\x00\x6c\x66\x66\x00\x06\x00\x00\x00\x00\ \x00\x01\x00\x2f\x66\x66\x00\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\ \x00\x00\x00\x01\x00\x32\x00\x00\x00\x01\x00\x5a\x00\x00\x00\x06\ \x00\x00\x00\x00\x00\x01\x00\x35\x00\x00\x00\x01\x00\x2d\x00\x00\ \x00\x06\x00\x00\x00\x00\x00\x01\x38\x42\x49\x4d\x03\xf8\x00\x00\ \x00\x00\x00\x70\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\ \x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\ \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ \x03\xe8\x00\x00\x38\x42\x49\x4d\x04\x00\x00\x00\x00\x00\x00\x02\ \x00\x01\x38\x42\x49\x4d\x04\x02\x00\x00\x00\x00\x00\x04\x00\x00\ \x00\x00\x38\x42\x49\x4d\x04\x30\x00\x00\x00\x00\x00\x02\x01\x01\ \x38\x42\x49\x4d\x04\x2d\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\ \x00\x02\x38\x42\x49\x4d\x04\x08\x00\x00\x00\x00\x00\x10\x00\x00\ \x00\x01\x00\x00\x02\x40\x00\x00\x02\x40\x00\x00\x00\x00\x38\x42\ \x49\x4d\x04\x1e\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x38\x42\ \x49\x4d\x04\x1a\x00\x00\x00\x00\x03\x3f\x00\x00\x00\x06\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x00\x00\x02\x00\x00\x00\ \x00\x05\x67\x2a\x68\x07\x98\x98\x00\x2d\x00\x31\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\ \x00\x00\x00\xf0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\ \x00\x00\x00\x6e\x75\x6c\x6c\x00\x00\x00\x02\x00\x00\x00\x06\x62\ \x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\ \x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\x04\x00\x00\x00\x00\x54\ \x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x00\x4c\ \x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x00\x42\ \x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x00\xf0\x00\x00\x00\x00\x52\ \x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x02\x00\x00\x00\x00\x06\x73\ \x6c\x69\x63\x65\x73\x56\x6c\x4c\x73\x00\x00\x00\x01\x4f\x62\x6a\ \x63\x00\x00\x00\x01\x00\x00\x00\x00\x00\x05\x73\x6c\x69\x63\x65\ \x00\x00\x00\x12\x00\x00\x00\x07\x73\x6c\x69\x63\x65\x49\x44\x6c\ \x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x07\x67\x72\x6f\x75\x70\ \x49\x44\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x06\x6f\x72\ \x69\x67\x69\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0c\x45\x53\x6c\x69\ \x63\x65\x4f\x72\x69\x67\x69\x6e\x00\x00\x00\x0d\x61\x75\x74\x6f\ \x47\x65\x6e\x65\x72\x61\x74\x65\x64\x00\x00\x00\x00\x54\x79\x70\ \x65\x65\x6e\x75\x6d\x00\x00\x00\x0a\x45\x53\x6c\x69\x63\x65\x54\ \x79\x70\x65\x00\x00\x00\x00\x49\x6d\x67\x20\x00\x00\x00\x06\x62\ \x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\ \x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\x04\x00\x00\x00\x00\x54\ \x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x00\x4c\ \x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x00\x42\ \x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x00\xf0\x00\x00\x00\x00\x52\ \x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x02\x00\x00\x00\x00\x03\x75\ \x72\x6c\x54\x45\x58\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\ \x6e\x75\x6c\x6c\x54\x45\x58\x54\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x4d\x73\x67\x65\x54\x45\x58\x54\x00\x00\x00\x01\x00\x00\ \x00\x00\x00\x06\x61\x6c\x74\x54\x61\x67\x54\x45\x58\x54\x00\x00\ \x00\x01\x00\x00\x00\x00\x00\x0e\x63\x65\x6c\x6c\x54\x65\x78\x74\ \x49\x73\x48\x54\x4d\x4c\x62\x6f\x6f\x6c\x01\x00\x00\x00\x08\x63\ \x65\x6c\x6c\x54\x65\x78\x74\x54\x45\x58\x54\x00\x00\x00\x01\x00\ \x00\x00\x00\x00\x09\x68\x6f\x72\x7a\x41\x6c\x69\x67\x6e\x65\x6e\ \x75\x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\x63\x65\x48\x6f\x72\x7a\ \x41\x6c\x69\x67\x6e\x00\x00\x00\x07\x64\x65\x66\x61\x75\x6c\x74\ \x00\x00\x00\x09\x76\x65\x72\x74\x41\x6c\x69\x67\x6e\x65\x6e\x75\ \x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\x63\x65\x56\x65\x72\x74\x41\ \x6c\x69\x67\x6e\x00\x00\x00\x07\x64\x65\x66\x61\x75\x6c\x74\x00\ \x00\x00\x0b\x62\x67\x43\x6f\x6c\x6f\x72\x54\x79\x70\x65\x65\x6e\ \x75\x6d\x00\x00\x00\x11\x45\x53\x6c\x69\x63\x65\x42\x47\x43\x6f\ \x6c\x6f\x72\x54\x79\x70\x65\x00\x00\x00\x00\x4e\x6f\x6e\x65\x00\ \x00\x00\x09\x74\x6f\x70\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\ \x00\x00\x00\x00\x00\x00\x00\x0a\x6c\x65\x66\x74\x4f\x75\x74\x73\ \x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0c\x62\x6f\ \x74\x74\x6f\x6d\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\x00\x00\ \x00\x00\x00\x00\x00\x0b\x72\x69\x67\x68\x74\x4f\x75\x74\x73\x65\ \x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x28\ \x00\x00\x00\x00\x00\x0c\x00\x00\x00\x01\x3f\xf0\x00\x00\x00\x00\ \x00\x00\x38\x42\x49\x4d\x04\x14\x00\x00\x00\x00\x00\x04\x00\x00\ \x00\x03\x38\x42\x49\x4d\x04\x0c\x00\x00\x00\x00\x0c\x17\x00\x00\ \x00\x01\x00\x00\x00\xa0\x00\x00\x00\x4b\x00\x00\x01\xe0\x00\x00\ \x8c\xa0\x00\x00\x0b\xfb\x00\x18\x00\x01\xff\xd8\xff\xe0\x00\x10\ \x4a\x46\x49\x46\x00\x01\x02\x00\x00\x48\x00\x48\x00\x00\xff\xed\ \x00\x0c\x41\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\xff\xee\x00\x0e\ \x41\x64\x6f\x62\x65\x00\x64\x80\x00\x00\x00\x01\xff\xdb\x00\x84\ \x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\ \x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\ \x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\ \x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\ \x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\ \x0c\x0c\xff\xc0\x00\x11\x08\x00\x4b\x00\xa0\x03\x01\x22\x00\x02\ \x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x0a\xff\xc4\x01\x3f\x00\ \x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\ \x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\ \x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\ \x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\ \x04\x02\x05\x07\x06\x08\x05\x03\x0c\x33\x01\x00\x02\x11\x03\x04\ \x21\x12\x31\x05\x41\x51\x61\x13\x22\x71\x81\x32\x06\x14\x91\xa1\ \xb1\x42\x23\x24\x15\x52\xc1\x62\x33\x34\x72\x82\xd1\x43\x07\x25\ \x92\x53\xf0\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\x26\x44\x93\x54\ \x64\x45\xc2\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\xb3\x84\xc3\xd3\ \x75\xe3\xf3\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\ \xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x37\ \x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\ \x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x05\x35\x01\x00\x02\ \x11\x03\x21\x31\x12\x04\x41\x51\x61\x71\x22\x13\x05\x32\x81\x91\ \x14\xa1\xb1\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\xe1\x72\x82\x92\ \x43\x53\x15\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\x83\x07\x26\x35\ \xc2\xd2\x44\x93\x54\xa3\x17\x64\x45\x55\x36\x74\x65\xe2\xf2\xb3\ \x84\xc3\xd3\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\ \xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\ \xf6\x27\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\ \x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\x0e\xd2\x96\xd2\x8f\xe9\ \xa7\xf4\xd6\xfd\xbc\x77\x03\x5f\x69\x4b\x69\x56\x3d\x34\xbd\x34\ \xb8\x95\xc0\xd7\xda\x52\xda\x55\x8f\x4d\x2f\x4d\x2e\x25\x70\x35\ \xf6\x94\xb6\x95\x63\xd3\x4b\xd3\x4b\x89\x5c\x08\x36\xa5\xb5\x1f\ \xd3\x4b\xd3\x4b\x89\x5c\x08\x36\xa5\xb5\x1f\xd3\x4b\xd3\x4b\x89\ \x5c\x08\x36\x94\xb6\x94\x7f\x4d\x2f\x4d\x2e\x25\x70\x20\xda\x52\ \xda\x51\xfd\x34\xbd\x34\xb8\x95\xc0\x83\x69\x4b\x69\x47\xf4\xd2\ \xf4\xd2\xe2\x57\x02\x0d\xa5\x2d\xa5\x1f\xd3\x4b\xd3\x4b\x89\x5c\ \x0f\xff\xd0\xb9\xe9\x25\xe9\x2b\xbe\x8a\x67\x31\x8c\x69\x7d\x8e\ \x15\xb1\xa2\x5c\xe3\x24\x0f\xf3\x03\x9c\xb5\xce\x40\x01\x27\xa7\ \x61\x7f\x83\xcd\x0c\x56\x69\xa7\xe9\x25\xe9\x22\x7d\xbb\xa5\xc4\ \xfd\xae\xbd\x35\xfa\x36\xff\x00\xe9\x15\x61\x82\x8b\x32\x5d\x8c\ \xcb\x05\x96\xd6\x03\xad\x6d\x6d\x7b\xb6\x02\x1a\xf6\x39\xfe\xd6\ \xfd\x26\xbd\x9f\x45\x43\x2e\x7b\x0c\x7e\x69\x18\xfa\x65\x3f\x54\ \x32\x47\xd1\x0f\x9a\x5e\xa8\x32\x0e\x4f\x21\xda\x37\xa8\x8e\x86\ \x3b\xcb\x66\x9f\xa4\x97\xa4\xac\xbd\xd4\x56\xca\xdd\x79\x7d\x4f\ \xb1\xaf\x78\xab\xd2\x7b\xde\x1b\x5e\xdf\x59\xd6\x36\xb6\x9f\x4f\ \x66\xf6\xfd\x35\x3a\xd9\x55\x96\xba\xb6\xbf\x46\x6d\xde\xf2\x0b\ \x43\x43\x98\xdc\x8d\xce\xdf\x1f\x46\x97\xef\x48\x73\xd8\x09\x95\ \x4f\xe4\x8c\xe7\x29\x70\xcf\x83\x83\x0f\xa7\x2c\xa3\x93\x87\xdb\ \xc9\xc1\xfe\xad\x47\x93\xca\x00\x26\x3f\x31\x11\x1a\x8e\x2b\x9f\ \xcb\xe9\xf9\xa3\xc4\xd3\xf4\x92\xf4\x95\x8a\xac\xa6\xda\x71\xee\ \x66\xe8\xca\x79\x65\x2d\x2d\x82\x61\xbe\xae\xef\xed\x35\x19\xd4\ \x91\x5d\x8f\x03\x7f\xa6\xe0\xc7\x06\x10\x7d\xd3\xb2\xc9\xf7\x7f\ \x82\xfc\xf4\x65\xce\xe0\x88\xb9\x64\x8c\x7d\x43\x1f\xab\xd2\x78\ \xcc\xa3\x8f\xe5\x97\xf5\xe7\x14\x0e\x53\x21\x34\x20\x4e\x9c\x5a\ \x6b\xe9\x1e\xaf\xfb\x96\x97\xa4\x97\xa4\xae\xba\x90\xd7\x58\xde\ \xf5\x16\x35\xc7\x73\x00\xdc\xff\x00\xa4\xd9\xdf\xed\xf4\xbf\xe1\ \x36\x7e\x7a\x81\xfb\x33\x4b\x43\xae\xac\x39\xf6\x36\x96\x8d\x49\ \x36\x3e\x76\x57\x2c\x6b\x99\xf9\x8e\xfc\xf4\xc8\xfc\x4b\x95\x94\ \x4c\xa3\x9a\x32\x00\x80\x78\x7d\x55\xc4\x38\xa3\xe9\x8f\xe8\xfa\ \xbe\x65\xc7\x91\xcc\x08\x07\x19\x04\xea\x2f\xc1\xab\xe9\x79\x25\ \xe9\x79\x2b\x3b\xb1\xb6\x87\x07\xbc\x87\x0b\x4b\x66\x9b\x1a\x3f\ \x40\x37\x5d\xb9\xce\x6f\xb1\xbf\xe8\xdc\xef\xe7\x53\x3e\xcc\x4a\ \xe9\x17\x59\x63\x99\x5b\x8b\x1a\xd2\x6b\x7f\xb9\xd6\x7d\x06\x53\ \xed\xfd\x3b\xfe\x96\xef\x4d\x01\xf1\x2e\x58\x8b\x13\x96\xa4\x43\ \xf9\xbc\xdf\x34\x8c\xa1\x11\xfc\xdf\xe9\x4e\x13\x82\x4f\x21\x98\ \x1a\x30\xe8\x65\xf3\x43\x68\xef\xfa\x4d\x7f\x49\x2f\x49\x58\xb2\ \xcc\x5a\xc3\x4b\x9d\x6c\xbd\xa5\xed\x68\xa2\xd9\x80\xe7\x57\xef\ \xf6\xfe\x8f\x73\xd9\xf9\xff\x00\xd7\x4e\xe7\xe2\x34\x6e\x75\xba\ \x13\xb4\x06\xb1\xef\x74\x86\xfa\xcf\x0f\xae\xa6\xbd\xd5\xfa\x6c\ \xfa\x7b\xd3\x87\xc4\x30\x18\xf1\x71\x4a\xac\xc3\xf9\xac\xc3\xd7\ \x1f\x9a\x1f\xcd\xfc\xc8\xfb\x96\x5b\xae\x11\x75\x7f\x34\x3e\x5f\ \xde\xf9\x9a\xde\x92\x5e\x92\xb4\xf3\x4b\x03\x89\x74\x96\xbc\x57\ \x00\x77\xf5\x5f\x88\x7f\xb3\xea\xd6\xf5\x0b\x32\x3a\x7d\x55\x1b\ \x6d\xc9\x6b\x2b\x0f\xf4\xc1\x2c\xb2\x5c\xf9\x8f\x4e\x86\xb9\x8d\ \x76\x43\xbf\x7f\xd1\xfa\x09\x7d\xff\x00\x01\x16\x24\x64\x38\xbd\ \xab\x84\x32\x64\xfd\x6d\x46\x5c\x1e\x88\xcb\xd5\xeb\x57\xdc\xf2\ \xdd\x70\xd1\xae\x3d\x4c\x63\xe9\xfd\xef\x52\x0f\x49\x2f\x49\x5a\ \xaf\x65\xb6\xb6\xaa\x9b\x69\x73\xc0\x73\x4d\x95\x3a\xa1\x04\xc3\ \x08\xf5\x3f\x79\x2a\x9d\x89\x63\x5d\x67\xac\xc6\x52\xd0\xf7\xfa\ \x8f\x21\xa4\xd6\xc3\xe9\xfd\xa7\x63\x8f\xf4\x77\x3f\xe8\xd8\x91\ \xe7\xf9\x78\xc3\x8e\x53\xe1\x8d\x19\x7a\xa3\x38\x4a\xa3\xe9\xf9\ \x25\x1e\x3e\x29\x7f\x93\x87\xcf\x97\xfc\x92\x87\x27\x94\xcb\x84\ \x42\xcd\x81\xa1\x8c\xbe\x6f\xeb\x45\xab\xe9\x25\xe9\x2b\x15\x3f\ \x1a\xe8\x15\x5d\x55\x8e\x23\x71\x6d\x6f\x6b\xc8\x1f\xca\xd8\x8b\ \xe8\xa9\xa3\x96\x32\x1c\x51\x22\x40\xf5\x1a\x86\x39\x61\x31\x35\ \x20\x41\xec\x5f\xff\xd1\xe9\xbd\x15\x26\x54\x03\xda\x48\xd0\x38\ \x13\xf0\x05\x5c\xf4\x7c\x92\xf4\x7c\x95\xd9\x9e\x28\xca\x37\x5c\ \x40\xc7\xed\x72\x86\x3a\x20\xd6\xc5\xe7\x1b\x9e\x5f\x43\x9a\x3a\ \x8b\xf2\xf2\x2e\xb9\xad\x6d\x61\xae\x2c\x0d\x17\x4d\x9e\x9b\x9d\ \x4d\x7e\xdf\x43\xd8\xef\x72\xb8\x28\xaa\xdc\xbc\xd1\x6d\x3e\xbb\ \x7e\xd5\x5c\x30\x89\x6c\x8a\xa9\x87\xd9\xff\x00\x06\xcf\xa4\xb5\ \x2c\xc6\xb0\xd2\x6b\xa2\xcf\xb3\xbb\xf3\x5e\xd6\xb5\xd1\xfd\x87\ \xfb\x10\xb1\x7a\x7b\xb1\xea\xb4\x1b\x9d\x75\xd7\xb9\xd6\x59\x7b\ \xc0\x92\xe2\x36\x7d\x06\xfb\x36\xb1\xa3\xda\xc5\x9e\x39\x39\x63\ \x13\x8e\x22\x23\x19\x63\xcb\x18\xca\x24\x62\x97\xbd\x9a\x3c\xbc\ \x07\xa7\x0e\x38\x47\x1c\x3f\xa2\xfa\xa7\xfc\xe3\x64\xe4\x12\xa3\ \x31\x64\x4a\x06\x8f\xab\xd1\x09\x64\x96\xf2\xff\x00\x6a\xe1\x63\ \xd6\x2e\xc4\x07\xf4\xb4\x8b\x71\xb2\x4b\xad\xba\x1c\xe3\x6e\x51\ \xae\xe0\x1a\xf6\x6d\x65\xcf\xfd\x1d\xff\x00\x43\x67\xe8\xeb\xdf\ \xfa\x24\x62\x6d\xb7\x1f\x3a\xfa\x9a\x05\x59\x54\xb9\xdb\xdf\xa3\ \xbd\x31\x89\xe9\x7e\x8d\x9f\xf8\x65\x9b\x77\xff\x00\x21\x69\x55\ \xd1\x83\x1d\x53\xac\xb9\xef\x18\xcc\x15\xe3\x30\x00\xd6\xd6\x76\ \xfa\x6e\xb7\x6f\xe7\xda\xef\xf8\x44\x9b\xd1\x88\xae\xf0\xfc\x87\ \xd9\x65\xd4\xfd\x9c\x3c\xb5\x8d\x0c\xaf\x5f\x65\x75\x56\xd6\x57\ \xf9\xff\x00\xba\x9a\x79\x29\xfe\xb0\x5c\x78\x27\x09\xc2\x11\x32\ \x37\x8f\x8e\x73\xcd\xfe\x4e\x10\xe2\xfd\x77\xb1\x3f\xea\x43\xdc\ \xc3\xed\xe5\xfe\x75\x77\xba\x3d\x27\x5e\x28\xc8\x12\x6b\xe6\xae\ \x18\x7e\x97\xf5\x38\xdc\xdb\x5f\x65\x94\xe1\xe3\xe1\x38\xd0\xe7\ \x58\x69\xfb\x5b\xd8\x5a\xe6\xb4\x50\x1f\x6d\x98\x0d\x77\xd0\x75\ \x8d\xfd\x0f\xad\x67\xfc\x27\xa6\x96\x4e\x2e\x2e\x1e\x1f\xd9\xf1\ \x31\xf7\xdb\x43\xe8\x0c\x21\xcd\x6e\xdb\x1d\x60\x7d\x2e\xb2\xc7\ \x36\xd7\x7a\x8d\x73\xbe\xd2\xef\x62\xd9\xb7\x06\xc7\xd7\x53\x6a\ \xbe\xca\x0d\x40\x00\xe6\x06\xba\x60\x6d\xf7\x36\xd6\xbf\xfe\x8a\ \x03\x7a\x29\x05\xb3\x93\x63\xc1\xb8\x64\x64\x6e\x0d\x2e\xb5\xed\ \x8f\x4f\x7b\xc0\xf6\x32\xbd\xad\xda\xc6\x27\xfd\xd6\x77\x38\x9e\ \x19\x43\x26\x48\x65\xc9\x90\xcb\xf5\xf9\x63\x0c\xb8\xf2\xf0\x4e\ \x30\xc7\x08\x46\x3c\x1e\xf7\xa3\x1c\xbf\xf0\xb5\xa2\x71\xf4\x91\ \x60\xc2\x26\x31\x8d\x7a\x22\x65\x19\x47\x8a\xf8\xbf\xba\xe3\xe4\ \x7d\x8c\x7d\xb4\x13\x83\xfd\x3d\xa1\xfb\xf1\xee\x77\xbf\x75\xdf\ \xcf\xed\xfe\x91\x95\xfc\xaa\xff\x00\x42\xcf\xd2\x2b\x6c\xae\xe6\ \xe3\xe1\xd9\x4b\x28\x35\x33\x20\x3c\xd8\x6b\x7d\x6c\x63\x43\x2d\ \xdf\x66\xd7\x39\xad\xaf\xfd\x15\x7e\xa7\xef\xff\x00\x36\xaf\xfe\ \xcb\xc8\x73\x9c\xe7\x67\xe4\x82\x5e\xe7\x86\xb1\xcd\x6b\x5b\x3f\ \x98\xd6\xed\xfa\x2d\x48\xf4\x5c\x77\xd8\xdb\xae\x75\x97\xdf\x58\ \x3e\x95\xb7\x1d\xfb\x09\xfc\xf6\xd4\xef\xd0\xef\xd7\xf7\x14\x38\ \xb9\x1c\xf1\xc4\x61\x29\x03\x67\x1c\xb5\xcb\x39\xc6\xf0\xe3\x86\ \x3e\x1a\x86\x2e\x5f\xe7\xf6\xfe\x6e\x2f\x93\xfc\x9f\xea\xd7\xcf\ \x2c\x0c\x84\x80\x3a\x09\x0f\x92\x3f\xa6\x65\xfd\x69\xfe\xf3\x8d\ \x6d\xcd\x6e\x3d\x63\xd5\xab\x75\x8d\xcb\x68\xdf\x9e\xf7\x34\xef\ \x0c\x67\xe7\xd7\xfa\xcf\xa7\xea\x7d\x07\x7f\x46\xff\x00\x07\xfc\ \xea\xb2\x59\x75\x4f\xc1\x6b\x45\x76\xb8\xee\x35\x9f\x4d\xa3\x66\ \xd1\x8a\xd3\x6e\xf7\x7d\x1f\x4e\xaf\xb4\x7b\xdb\xfc\xe7\xe8\xff\ \x00\x71\x5f\xfd\x95\x95\xb8\x38\xe7\xdb\x20\x10\x3f\x47\x4e\x93\ \xcf\xf8\x25\x21\xd3\x2f\xf5\xc5\xce\xca\x2f\x35\xd6\xe6\x50\x0b\ \x1a\x03\x4b\xc3\x43\xed\x76\xdf\xe7\x5f\xec\xfc\xe4\x31\xfc\x3e\ \x51\x89\x8c\xa3\x0f\x98\xce\xe3\x97\x2c\xa5\x5f\xae\x94\x23\xfa\ \xc8\x7a\x7d\x59\xa2\x99\xe7\x12\x90\x90\x27\x41\xc3\xac\x63\xfd\ \x5f\xfb\xd7\x19\xe2\xe6\x62\x59\x71\x7d\xc3\xd4\xc7\xbd\xde\xab\ \x9e\xf8\x73\xdf\x77\xea\xcd\xf7\x3b\x6e\xff\x00\xb3\xff\x00\x31\ \xff\x00\x04\x8f\x98\xdb\x6c\x7d\xf5\x31\xe6\xfb\xea\x6d\xaf\x70\ \x63\x36\x96\xfa\xb4\x36\xaa\x58\x5c\xdf\x6d\x97\xd8\xf7\xee\xf6\ \xfb\xff\x00\xe0\xd5\xf6\x74\x4a\xeb\x63\xcb\x6e\xb3\xed\x57\x6b\ \x76\x51\x20\xb9\xe7\xfe\x11\x8e\xfd\x1e\xd6\x7f\x82\xf6\xfe\x87\ \xfc\x12\x4f\xe8\x95\xdb\x6e\xfc\x8b\x5d\x75\x5e\xa1\xb8\xd2\x40\ \x68\x75\xa6\x36\xd9\x63\xab\xda\xf7\xfa\x2d\x6f\xe8\x7f\xd1\xa7\ \x7d\xc3\x25\x70\x83\x01\x66\x44\xc8\x6f\x1f\x72\x5c\x7c\x3c\x3c\ \x3f\x24\x7d\x78\xff\x00\x9d\xc7\xf2\x60\x9f\xfa\xa4\x7b\xd1\x26\ \xcf\x11\xaa\xd3\xcb\xd2\xe5\x3f\x65\x8f\x71\x6e\xa1\xd7\x31\xc2\ \x74\xd1\xf9\xb7\xda\xce\x7e\x8e\xf6\x3b\x7a\x26\x55\xd7\x36\xdc\ \x82\xdb\xf2\x6b\xb6\xba\x9d\x71\xc8\xb3\x1e\xab\x05\x55\x32\x4e\ \xcc\x3a\xc3\xab\xf4\xac\xb3\x67\xe8\xfe\xd4\xcb\x77\xad\x37\xf4\ \xbb\x5f\x65\x64\xe5\x58\x6a\xad\xfe\xaf\xa6\x43\x49\x73\xc1\x2e\ \xaf\x7d\xbb\x77\xb9\xb5\xb9\xdf\x41\x41\xfd\x0c\x1a\x5d\x45\x59\ \x0f\xad\xb7\x92\x72\xde\x43\x5d\x65\xd3\xf4\x83\xee\x77\xbd\x9f\ \xb9\xec\x4d\x3f\x0f\x99\x89\x8f\xa2\x86\x49\x65\x85\xf0\xe5\x3f\ \xac\x86\x28\x54\xa5\x93\x07\xfa\xaf\x93\xe4\xcd\xfe\x51\x23\x30\ \x12\x07\x5f\x94\x40\xef\x1f\x96\x52\x97\xe8\xcf\xfa\xcd\x2a\x5b\ \x45\x4f\xb1\xbe\x9e\x55\x36\x5c\xdd\xd7\x5a\xf6\x7a\xce\x78\x0d\ \x1b\xac\xad\xdb\xb2\xd8\xff\x00\x59\xbf\xa3\xf4\xbe\x9d\x76\x7e\ \x62\xae\x6b\x73\xb1\x9c\xdb\xe9\x16\xfa\xf7\xe3\x8f\x4e\xe6\x59\ \x8e\x24\xd8\x1b\x8f\x8c\xcc\x6d\xcd\x77\xd9\x30\xf1\x9a\xf7\xd6\ \xc7\xfd\x3b\xbf\x4b\x65\x6b\x75\xfd\x36\xb7\x3f\x73\x5f\x65\x4d\ \x33\xbe\xba\xdc\x5a\xd7\x12\x36\xef\xd3\xe8\xbf\xfa\x88\x55\xf4\ \x6a\x2b\xc8\xae\xed\xce\x35\xd0\x3f\x41\x41\xfa\x2d\x79\xd1\xf7\ \xb9\xdf\x4e\xdb\xdd\xfe\x96\xc5\x29\xe4\xb2\x48\xc2\xf2\x5f\x00\ \x84\x38\xef\x82\x7c\x18\x72\xfb\xf1\x31\x96\x38\xc3\x2f\xf5\x38\ \x3d\xff\x00\xf5\x9f\xce\xe3\xfd\x63\x06\x48\x8e\x2a\x8f\xcc\x4c\ \xab\x71\x72\x87\x07\xe9\x7a\x7f\xe6\x34\xf1\x7d\x7b\xef\xb2\xd7\ \xd7\x53\x2a\xdd\x65\x4c\x73\x09\x2e\x77\xa3\x63\xa9\xaf\x73\x5f\ \xf9\xde\x8b\x7f\x49\xef\x56\xfd\x15\x3a\x7a\x59\xaf\x27\xed\x16\ \x5e\xeb\x76\x87\x8a\x98\x5a\xc6\x35\xbe\xa1\xdf\x6b\xbf\x44\xd6\ \x6f\x7b\xe3\xe9\xbd\x5a\xf4\x55\xce\x54\x4b\x16\x18\x63\x95\x5c\ \x05\x7a\x65\x2c\x83\x7f\xdf\xc9\xeb\x60\xcd\x01\x39\xca\x43\x63\ \xe1\xc3\xf8\x45\xff\xd2\xf4\x1f\x49\x2f\x49\x5b\xf4\xd2\xf4\xd4\ \xbc\x6d\x7f\x6d\xa9\xe9\x25\xe9\x2b\x7e\x9a\x5e\x9a\x5c\x6a\xf6\ \xda\x9e\x92\x5e\x92\xb7\xe9\xa5\xe9\xa5\xc6\xaf\x6d\xa9\xe9\x25\ \xe9\x2b\x7e\x9a\x5e\x9a\x5c\x6a\xf6\xda\x9e\x92\x5e\x92\xb7\xe9\ \xa5\xe9\xa5\xc6\xaf\x6d\xa9\xe9\x25\xe9\x2b\x7e\x9a\x5e\x9a\x5c\ \x6a\xf6\xda\xbe\x92\x5e\x92\xb5\xe9\xa5\xe9\xa5\xc6\xaf\x6d\xab\ \xe9\x25\xe9\x2b\x5e\x9a\x5e\x9a\x5c\x6a\xf6\xda\xbe\x92\x5e\x92\ \xb5\xe9\xa5\xe9\xa5\xc4\x9f\x6d\xab\xe9\x25\xe9\x2b\x7e\x9a\x5e\ \x9a\x5c\x4a\xf6\xdf\xff\xd3\xf5\x3d\xa1\x2d\xa1\x49\x24\x91\xa2\ \xdb\x42\x5b\x42\x74\x92\x56\x8b\x6d\x09\x6d\x09\xd2\x49\x5a\x2d\ \xb4\x25\xb4\x27\x49\x25\x68\xb6\xd0\x96\xd0\x9d\x24\x95\xa2\xdb\ \x42\x5b\x42\x74\x92\x56\x8b\x6d\x09\x6d\x09\xd2\x49\x2b\x6d\x09\ \x6d\x09\xd2\x49\x4b\x6d\x09\x6d\x09\xd2\x49\x4b\x6d\x09\x6d\x09\ \xd2\x49\x4f\xff\xd9\x00\x38\x42\x49\x4d\x04\x21\x00\x00\x00\x00\ \x00\x55\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00\x41\x00\x64\x00\ \x6f\x00\x62\x00\x65\x00\x20\x00\x50\x00\x68\x00\x6f\x00\x74\x00\ \x6f\x00\x73\x00\x68\x00\x6f\x00\x70\x00\x00\x00\x13\x00\x41\x00\ \x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x50\x00\x68\x00\x6f\x00\ \x74\x00\x6f\x00\x73\x00\x68\x00\x6f\x00\x70\x00\x20\x00\x43\x00\ \x53\x00\x32\x00\x00\x00\x01\x00\x38\x42\x49\x4d\x04\x06\x00\x00\ \x00\x00\x00\x07\x00\x08\x00\x00\x00\x01\x01\x00\xff\xe1\x3a\xb1\ \x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\ \x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x00\x3c\x3f\x78\ \x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\x69\x6e\x3d\x22\xef\xbb\ \xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\x30\x4d\x70\x43\x65\x68\ \x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\x7a\x6b\x63\x39\x64\x22\ \x3f\x3e\x0a\x3c\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x20\x78\x6d\ \x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\x62\x65\x3a\x6e\x73\x3a\ \x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\x6d\x70\x74\x6b\x3d\x22\ \x33\x2e\x31\x2e\x31\x2d\x31\x31\x31\x22\x3e\x0a\x20\x20\x20\x3c\ \x72\x64\x66\x3a\x52\x44\x46\x20\x78\x6d\x6c\x6e\x73\x3a\x72\x64\ \x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x77\x33\ \x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\x32\x2d\ \x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\x22\x3e\ \x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\ \x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\ \x74\x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\ \x2f\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\ \x65\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x3e\x0a\x20\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\x6a\x70\x65\x67\x3c\x2f\x64\x63\ \x3a\x66\x6f\x72\x6d\x61\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\ \x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\ \x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\x73\ \x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\x6f\ \x75\x74\x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x61\x70\x3d\x22\x68\x74\x74\ \x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\ \x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x3e\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x3c\x78\x61\x70\x3a\x43\x72\x65\x61\x74\x6f\ \x72\x54\x6f\x6f\x6c\x3e\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\ \x6f\x73\x68\x6f\x70\x20\x43\x53\x32\x20\x57\x69\x6e\x64\x6f\x77\ \x73\x3c\x2f\x78\x61\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\ \x6f\x6c\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x78\x61\ \x70\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3e\x32\x30\x32\ \x31\x2d\x31\x32\x2d\x30\x36\x54\x31\x35\x3a\x33\x35\x3a\x33\x39\ \x2b\x30\x38\x3a\x30\x30\x3c\x2f\x78\x61\x70\x3a\x43\x72\x65\x61\ \x74\x65\x44\x61\x74\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x3c\x78\x61\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\x61\x74\x65\ \x3e\x32\x30\x32\x31\x2d\x31\x32\x2d\x30\x36\x54\x31\x35\x3a\x33\ \x35\x3a\x33\x39\x2b\x30\x38\x3a\x30\x30\x3c\x2f\x78\x61\x70\x3a\ \x4d\x6f\x64\x69\x66\x79\x44\x61\x74\x65\x3e\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x3c\x78\x61\x70\x3a\x4d\x65\x74\x61\x64\x61\ \x74\x61\x44\x61\x74\x65\x3e\x32\x30\x32\x31\x2d\x31\x32\x2d\x30\ \x36\x54\x31\x35\x3a\x33\x35\x3a\x33\x39\x2b\x30\x38\x3a\x30\x30\ \x3c\x2f\x78\x61\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\ \x74\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\ \x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\ \x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\ \x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\ \x6e\x73\x3a\x78\x61\x70\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\ \x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\ \x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x73\x74\x52\ \x65\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ \x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\ \x73\x54\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\x52\x65\ \x66\x23\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x78\ \x61\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3e\ \x75\x75\x69\x64\x3a\x30\x42\x38\x41\x41\x36\x44\x44\x36\x36\x35\ \x36\x45\x43\x31\x31\x38\x32\x38\x31\x42\x42\x39\x41\x33\x38\x43\ \x35\x35\x39\x30\x36\x3c\x2f\x78\x61\x70\x4d\x4d\x3a\x44\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x3c\x78\x61\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\ \x65\x49\x44\x3e\x75\x75\x69\x64\x3a\x30\x43\x38\x41\x41\x36\x44\ \x44\x36\x36\x35\x36\x45\x43\x31\x31\x38\x32\x38\x31\x42\x42\x39\ \x41\x33\x38\x43\x35\x35\x39\x30\x36\x3c\x2f\x78\x61\x70\x4d\x4d\ \x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3e\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x3c\x78\x61\x70\x4d\x4d\x3a\x44\x65\x72\ \x69\x76\x65\x64\x46\x72\x6f\x6d\x20\x72\x64\x66\x3a\x70\x61\x72\ \x73\x65\x54\x79\x70\x65\x3d\x22\x52\x65\x73\x6f\x75\x72\x63\x65\ \x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ \x73\x74\x52\x65\x66\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\ \x3e\x75\x75\x69\x64\x3a\x45\x41\x41\x32\x32\x33\x44\x44\x36\x35\ \x35\x36\x45\x43\x31\x31\x38\x32\x38\x31\x42\x42\x39\x41\x33\x38\ \x43\x35\x35\x39\x30\x36\x3c\x2f\x73\x74\x52\x65\x66\x3a\x69\x6e\ \x73\x74\x61\x6e\x63\x65\x49\x44\x3e\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x3c\x73\x74\x52\x65\x66\x3a\x64\x6f\x63\ \x75\x6d\x65\x6e\x74\x49\x44\x3e\x75\x75\x69\x64\x3a\x45\x41\x41\ \x32\x32\x33\x44\x44\x36\x35\x35\x36\x45\x43\x31\x31\x38\x32\x38\ \x31\x42\x42\x39\x41\x33\x38\x43\x35\x35\x39\x30\x36\x3c\x2f\x73\ \x74\x52\x65\x66\x3a\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3e\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x2f\x78\x61\x70\x4d\ \x4d\x3a\x44\x65\x72\x69\x76\x65\x64\x46\x72\x6f\x6d\x3e\x0a\x20\ \x20\x20\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ \x69\x70\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\ \x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\ \x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x74\x69\ \x66\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\ \x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x74\x69\x66\x66\x2f\x31\x2e\x30\ \x2f\x22\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\ \x66\x66\x3a\x4f\x72\x69\x65\x6e\x74\x61\x74\x69\x6f\x6e\x3e\x31\ \x3c\x2f\x74\x69\x66\x66\x3a\x4f\x72\x69\x65\x6e\x74\x61\x74\x69\ \x6f\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\ \x66\x66\x3a\x58\x52\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x3e\x37\ \x32\x30\x30\x30\x30\x2f\x31\x30\x30\x30\x30\x3c\x2f\x74\x69\x66\ \x66\x3a\x58\x52\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x3e\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\x66\x66\x3a\x59\x52\ \x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x3e\x37\x32\x30\x30\x30\x30\ \x2f\x31\x30\x30\x30\x30\x3c\x2f\x74\x69\x66\x66\x3a\x59\x52\x65\ \x73\x6f\x6c\x75\x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x3c\x74\x69\x66\x66\x3a\x52\x65\x73\x6f\x6c\x75\x74\ \x69\x6f\x6e\x55\x6e\x69\x74\x3e\x32\x3c\x2f\x74\x69\x66\x66\x3a\ \x52\x65\x73\x6f\x6c\x75\x74\x69\x6f\x6e\x55\x6e\x69\x74\x3e\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x74\x69\x66\x66\x3a\x4e\ \x61\x74\x69\x76\x65\x44\x69\x67\x65\x73\x74\x3e\x32\x35\x36\x2c\ \x32\x35\x37\x2c\x32\x35\x38\x2c\x32\x35\x39\x2c\x32\x36\x32\x2c\ \x32\x37\x34\x2c\x32\x37\x37\x2c\x32\x38\x34\x2c\x35\x33\x30\x2c\ \x35\x33\x31\x2c\x32\x38\x32\x2c\x32\x38\x33\x2c\x32\x39\x36\x2c\ \x33\x30\x31\x2c\x33\x31\x38\x2c\x33\x31\x39\x2c\x35\x32\x39\x2c\ \x35\x33\x32\x2c\x33\x30\x36\x2c\x32\x37\x30\x2c\x32\x37\x31\x2c\ \x32\x37\x32\x2c\x33\x30\x35\x2c\x33\x31\x35\x2c\x33\x33\x34\x33\ \x32\x3b\x36\x30\x42\x44\x42\x46\x31\x38\x37\x37\x41\x31\x33\x44\ \x43\x44\x41\x35\x31\x42\x39\x31\x44\x41\x34\x44\x45\x37\x46\x37\ \x42\x32\x3c\x2f\x74\x69\x66\x66\x3a\x4e\x61\x74\x69\x76\x65\x44\ \x69\x67\x65\x73\x74\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\x72\ \x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x0a\ \x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\x72\ \x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\ \x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x78\x6d\x6c\x6e\x73\x3a\x65\x78\x69\x66\x3d\x22\x68\x74\x74\x70\ \x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\ \x65\x78\x69\x66\x2f\x31\x2e\x30\x2f\x22\x3e\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x3c\x65\x78\x69\x66\x3a\x50\x69\x78\x65\x6c\ \x58\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x3e\x35\x31\x32\x3c\x2f\ \x65\x78\x69\x66\x3a\x50\x69\x78\x65\x6c\x58\x44\x69\x6d\x65\x6e\ \x73\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\ \x65\x78\x69\x66\x3a\x50\x69\x78\x65\x6c\x59\x44\x69\x6d\x65\x6e\ \x73\x69\x6f\x6e\x3e\x32\x34\x30\x3c\x2f\x65\x78\x69\x66\x3a\x50\ \x69\x78\x65\x6c\x59\x44\x69\x6d\x65\x6e\x73\x69\x6f\x6e\x3e\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x65\x78\x69\x66\x3a\x43\ \x6f\x6c\x6f\x72\x53\x70\x61\x63\x65\x3e\x31\x3c\x2f\x65\x78\x69\ \x66\x3a\x43\x6f\x6c\x6f\x72\x53\x70\x61\x63\x65\x3e\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x3c\x65\x78\x69\x66\x3a\x4e\x61\x74\ \x69\x76\x65\x44\x69\x67\x65\x73\x74\x3e\x33\x36\x38\x36\x34\x2c\ \x34\x30\x39\x36\x30\x2c\x34\x30\x39\x36\x31\x2c\x33\x37\x31\x32\ \x31\x2c\x33\x37\x31\x32\x32\x2c\x34\x30\x39\x36\x32\x2c\x34\x30\ \x39\x36\x33\x2c\x33\x37\x35\x31\x30\x2c\x34\x30\x39\x36\x34\x2c\ \x33\x36\x38\x36\x37\x2c\x33\x36\x38\x36\x38\x2c\x33\x33\x34\x33\ \x34\x2c\x33\x33\x34\x33\x37\x2c\x33\x34\x38\x35\x30\x2c\x33\x34\ \x38\x35\x32\x2c\x33\x34\x38\x35\x35\x2c\x33\x34\x38\x35\x36\x2c\ \x33\x37\x33\x37\x37\x2c\x33\x37\x33\x37\x38\x2c\x33\x37\x33\x37\ \x39\x2c\x33\x37\x33\x38\x30\x2c\x33\x37\x33\x38\x31\x2c\x33\x37\ \x33\x38\x32\x2c\x33\x37\x33\x38\x33\x2c\x33\x37\x33\x38\x34\x2c\ \x33\x37\x33\x38\x35\x2c\x33\x37\x33\x38\x36\x2c\x33\x37\x33\x39\ \x36\x2c\x34\x31\x34\x38\x33\x2c\x34\x31\x34\x38\x34\x2c\x34\x31\ \x34\x38\x36\x2c\x34\x31\x34\x38\x37\x2c\x34\x31\x34\x38\x38\x2c\ \x34\x31\x34\x39\x32\x2c\x34\x31\x34\x39\x33\x2c\x34\x31\x34\x39\ \x35\x2c\x34\x31\x37\x32\x38\x2c\x34\x31\x37\x32\x39\x2c\x34\x31\ \x37\x33\x30\x2c\x34\x31\x39\x38\x35\x2c\x34\x31\x39\x38\x36\x2c\ \x34\x31\x39\x38\x37\x2c\x34\x31\x39\x38\x38\x2c\x34\x31\x39\x38\ \x39\x2c\x34\x31\x39\x39\x30\x2c\x34\x31\x39\x39\x31\x2c\x34\x31\ \x39\x39\x32\x2c\x34\x31\x39\x39\x33\x2c\x34\x31\x39\x39\x34\x2c\ \x34\x31\x39\x39\x35\x2c\x34\x31\x39\x39\x36\x2c\x34\x32\x30\x31\ \x36\x2c\x30\x2c\x32\x2c\x34\x2c\x35\x2c\x36\x2c\x37\x2c\x38\x2c\ \x39\x2c\x31\x30\x2c\x31\x31\x2c\x31\x32\x2c\x31\x33\x2c\x31\x34\ \x2c\x31\x35\x2c\x31\x36\x2c\x31\x37\x2c\x31\x38\x2c\x32\x30\x2c\ \x32\x32\x2c\x32\x33\x2c\x32\x34\x2c\x32\x35\x2c\x32\x36\x2c\x32\ \x37\x2c\x32\x38\x2c\x33\x30\x3b\x34\x34\x38\x30\x35\x44\x38\x36\ \x43\x42\x42\x35\x39\x31\x43\x35\x30\x31\x39\x34\x45\x31\x46\x34\ \x46\x42\x46\x39\x32\x44\x32\x38\x3c\x2f\x65\x78\x69\x66\x3a\x4e\ \x61\x74\x69\x76\x65\x44\x69\x67\x65\x73\x74\x3e\x0a\x20\x20\x20\ \x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\ \x74\x69\x6f\x6e\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x72\x64\x66\ \x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\ \x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x78\x6d\x6c\x6e\x73\x3a\x70\x68\x6f\x74\ \x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\ \x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x70\x68\x6f\x74\x6f\ \x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\x3e\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x3c\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\ \x48\x69\x73\x74\x6f\x72\x79\x2f\x3e\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x3c\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\ \x6c\x6f\x72\x4d\x6f\x64\x65\x3e\x33\x3c\x2f\x70\x68\x6f\x74\x6f\ \x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3e\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x70\x68\x6f\x74\x6f\x73\ \x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3e\x73\ \x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\ \x3c\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\ \x72\x6f\x66\x69\x6c\x65\x3e\x0a\x20\x20\x20\x20\x20\x20\x3c\x2f\ \x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\ \x0a\x20\x20\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x0a\x3c\ \x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x3e\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\ \x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x0a\x3c\x3f\x78\x70\ \x61\x63\x6b\x65\x74\x20\x65\x6e\x64\x3d\x22\x77\x22\x3f\x3e\xff\ \xe2\x0c\x58\x49\x43\x43\x5f\x50\x52\x4f\x46\x49\x4c\x45\x00\x01\ \x01\x00\x00\x0c\x48\x4c\x69\x6e\x6f\x02\x10\x00\x00\x6d\x6e\x74\ \x72\x52\x47\x42\x20\x58\x59\x5a\x20\x07\xce\x00\x02\x00\x09\x00\ \x06\x00\x31\x00\x00\x61\x63\x73\x70\x4d\x53\x46\x54\x00\x00\x00\ \x00\x49\x45\x43\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\ \x2d\x48\x50\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x11\x63\x70\x72\x74\x00\x00\x01\x50\x00\x00\x00\ \x33\x64\x65\x73\x63\x00\x00\x01\x84\x00\x00\x00\x6c\x77\x74\x70\ \x74\x00\x00\x01\xf0\x00\x00\x00\x14\x62\x6b\x70\x74\x00\x00\x02\ \x04\x00\x00\x00\x14\x72\x58\x59\x5a\x00\x00\x02\x18\x00\x00\x00\ \x14\x67\x58\x59\x5a\x00\x00\x02\x2c\x00\x00\x00\x14\x62\x58\x59\ \x5a\x00\x00\x02\x40\x00\x00\x00\x14\x64\x6d\x6e\x64\x00\x00\x02\ \x54\x00\x00\x00\x70\x64\x6d\x64\x64\x00\x00\x02\xc4\x00\x00\x00\ \x88\x76\x75\x65\x64\x00\x00\x03\x4c\x00\x00\x00\x86\x76\x69\x65\ \x77\x00\x00\x03\xd4\x00\x00\x00\x24\x6c\x75\x6d\x69\x00\x00\x03\ \xf8\x00\x00\x00\x14\x6d\x65\x61\x73\x00\x00\x04\x0c\x00\x00\x00\ \x24\x74\x65\x63\x68\x00\x00\x04\x30\x00\x00\x00\x0c\x72\x54\x52\ \x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x67\x54\x52\x43\x00\x00\x04\ \x3c\x00\x00\x08\x0c\x62\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\ \x0c\x74\x65\x78\x74\x00\x00\x00\x00\x43\x6f\x70\x79\x72\x69\x67\ \x68\x74\x20\x28\x63\x29\x20\x31\x39\x39\x38\x20\x48\x65\x77\x6c\ \x65\x74\x74\x2d\x50\x61\x63\x6b\x61\x72\x64\x20\x43\x6f\x6d\x70\ \x61\x6e\x79\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\ \x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\ \x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\ \x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\xf3\x51\x00\x01\x00\ \x00\x00\x01\x16\xcc\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x59\x5a\x20\x00\x00\x00\ \x00\x00\x00\x6f\xa2\x00\x00\x38\xf5\x00\x00\x03\x90\x58\x59\x5a\ \x20\x00\x00\x00\x00\x00\x00\x62\x99\x00\x00\xb7\x85\x00\x00\x18\ \xda\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x24\xa0\x00\x00\x0f\ \x84\x00\x00\xb6\xcf\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\ \x16\x49\x45\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\ \x69\x65\x63\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x16\x49\x45\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\ \x2e\x69\x65\x63\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\ \x2e\x49\x45\x43\x20\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x20\x44\ \x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\ \x72\x20\x73\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x2e\x49\x45\x43\x20\x36\x31\ \x39\x36\x36\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\ \x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\x70\x61\x63\x65\ \x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x65\x73\ \x63\x00\x00\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\ \x63\x65\x20\x56\x69\x65\x77\x69\x6e\x67\x20\x43\x6f\x6e\x64\x69\ \x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\x31\x39\x36\x36\ \x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\ \x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56\x69\x65\x77\x69\x6e\ \x67\x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\ \x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x76\x69\x65\x77\x00\x00\x00\x00\x00\x13\xa4\ \xfe\x00\x14\x5f\x2e\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\ \x0b\x00\x03\x5c\x9e\x00\x00\x00\x01\x58\x59\x5a\x20\x00\x00\x00\ \x00\x00\x4c\x09\x56\x00\x50\x00\x00\x00\x57\x1f\xe7\x6d\x65\x61\ \x73\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\ \x02\x73\x69\x67\x20\x00\x00\x00\x00\x43\x52\x54\x20\x63\x75\x72\ \x76\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\ \x0f\x00\x14\x00\x19\x00\x1e\x00\x23\x00\x28\x00\x2d\x00\x32\x00\ \x37\x00\x3b\x00\x40\x00\x45\x00\x4a\x00\x4f\x00\x54\x00\x59\x00\ \x5e\x00\x63\x00\x68\x00\x6d\x00\x72\x00\x77\x00\x7c\x00\x81\x00\ \x86\x00\x8b\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\ \xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\ \xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\ \x01\x01\x07\x01\x0d\x01\x13\x01\x19\x01\x1f\x01\x25\x01\x2b\x01\ \x32\x01\x38\x01\x3e\x01\x45\x01\x4c\x01\x52\x01\x59\x01\x60\x01\ \x67\x01\x6e\x01\x75\x01\x7c\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\ \xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\ \xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\ \x26\x02\x2f\x02\x38\x02\x41\x02\x4b\x02\x54\x02\x5d\x02\x67\x02\ \x71\x02\x7a\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\ \xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\ \x16\x03\x21\x03\x2d\x03\x38\x03\x43\x03\x4f\x03\x5a\x03\x66\x03\ \x72\x03\x7e\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\ \xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\x04\x13\x04\x20\x04\x2d\x04\ \x3b\x04\x48\x04\x55\x04\x63\x04\x71\x04\x7e\x04\x8c\x04\x9a\x04\ \xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\ \x1c\x05\x2b\x05\x3a\x05\x49\x05\x58\x05\x67\x05\x77\x05\x86\x05\ \x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\ \x16\x06\x27\x06\x37\x06\x48\x06\x59\x06\x6a\x06\x7b\x06\x8c\x06\ \x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\ \x2b\x07\x3d\x07\x4f\x07\x61\x07\x74\x07\x86\x07\x99\x07\xac\x07\ \xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x08\x32\x08\x46\x08\ \x5a\x08\x6e\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\ \xfb\x09\x10\x09\x25\x09\x3a\x09\x4f\x09\x64\x09\x79\x09\x8f\x09\ \xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a\x27\x0a\x3d\x0a\ \x54\x0a\x6a\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\ \x0b\x0b\x22\x0b\x39\x0b\x51\x0b\x69\x0b\x80\x0b\x98\x0b\xb0\x0b\ \xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c\x2a\x0c\x43\x0c\x5c\x0c\x75\x0c\ \x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\x26\x0d\x40\x0d\ \x5a\x0d\x74\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\ \x2e\x0e\x49\x0e\x64\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\ \x09\x0f\x25\x0f\x41\x0f\x5e\x0f\x7a\x0f\x96\x0f\xb3\x0f\xcf\x0f\ \xec\x10\x09\x10\x26\x10\x43\x10\x61\x10\x7e\x10\x9b\x10\xb9\x10\ \xd7\x10\xf5\x11\x13\x11\x31\x11\x4f\x11\x6d\x11\x8c\x11\xaa\x11\ \xc9\x11\xe8\x12\x07\x12\x26\x12\x45\x12\x64\x12\x84\x12\xa3\x12\ \xc3\x12\xe3\x13\x03\x13\x23\x13\x43\x13\x63\x13\x83\x13\xa4\x13\ \xc5\x13\xe5\x14\x06\x14\x27\x14\x49\x14\x6a\x14\x8b\x14\xad\x14\ \xce\x14\xf0\x15\x12\x15\x34\x15\x56\x15\x78\x15\x9b\x15\xbd\x15\ \xe0\x16\x03\x16\x26\x16\x49\x16\x6c\x16\x8f\x16\xb2\x16\xd6\x16\ \xfa\x17\x1d\x17\x41\x17\x65\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\ \x1b\x18\x40\x18\x65\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\x20\x19\ \x45\x19\x6b\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\x2a\x1a\x51\x1a\ \x77\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\x1b\x3b\x1b\x63\x1b\x8a\x1b\ \xb2\x1b\xda\x1c\x02\x1c\x2a\x1c\x52\x1c\x7b\x1c\xa3\x1c\xcc\x1c\ \xf5\x1d\x1e\x1d\x47\x1d\x70\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\ \x40\x1e\x6a\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f\x3e\x1f\x69\x1f\ \x94\x1f\xbf\x1f\xea\x20\x15\x20\x41\x20\x6c\x20\x98\x20\xc4\x20\ \xf0\x21\x1c\x21\x48\x21\x75\x21\xa1\x21\xce\x21\xfb\x22\x27\x22\ \x55\x22\x82\x22\xaf\x22\xdd\x23\x0a\x23\x38\x23\x66\x23\x94\x23\ \xc2\x23\xf0\x24\x1f\x24\x4d\x24\x7c\x24\xab\x24\xda\x25\x09\x25\ \x38\x25\x68\x25\x97\x25\xc7\x25\xf7\x26\x27\x26\x57\x26\x87\x26\ \xb7\x26\xe8\x27\x18\x27\x49\x27\x7a\x27\xab\x27\xdc\x28\x0d\x28\ \x3f\x28\x71\x28\xa2\x28\xd4\x29\x06\x29\x38\x29\x6b\x29\x9d\x29\ \xd0\x2a\x02\x2a\x35\x2a\x68\x2a\x9b\x2a\xcf\x2b\x02\x2b\x36\x2b\ \x69\x2b\x9d\x2b\xd1\x2c\x05\x2c\x39\x2c\x6e\x2c\xa2\x2c\xd7\x2d\ \x0c\x2d\x41\x2d\x76\x2d\xab\x2d\xe1\x2e\x16\x2e\x4c\x2e\x82\x2e\ \xb7\x2e\xee\x2f\x24\x2f\x5a\x2f\x91\x2f\xc7\x2f\xfe\x30\x35\x30\ \x6c\x30\xa4\x30\xdb\x31\x12\x31\x4a\x31\x82\x31\xba\x31\xf2\x32\ \x2a\x32\x63\x32\x9b\x32\xd4\x33\x0d\x33\x46\x33\x7f\x33\xb8\x33\ \xf1\x34\x2b\x34\x65\x34\x9e\x34\xd8\x35\x13\x35\x4d\x35\x87\x35\ \xc2\x35\xfd\x36\x37\x36\x72\x36\xae\x36\xe9\x37\x24\x37\x60\x37\ \x9c\x37\xd7\x38\x14\x38\x50\x38\x8c\x38\xc8\x39\x05\x39\x42\x39\ \x7f\x39\xbc\x39\xf9\x3a\x36\x3a\x74\x3a\xb2\x3a\xef\x3b\x2d\x3b\ \x6b\x3b\xaa\x3b\xe8\x3c\x27\x3c\x65\x3c\xa4\x3c\xe3\x3d\x22\x3d\ \x61\x3d\xa1\x3d\xe0\x3e\x20\x3e\x60\x3e\xa0\x3e\xe0\x3f\x21\x3f\ \x61\x3f\xa2\x3f\xe2\x40\x23\x40\x64\x40\xa6\x40\xe7\x41\x29\x41\ \x6a\x41\xac\x41\xee\x42\x30\x42\x72\x42\xb5\x42\xf7\x43\x3a\x43\ \x7d\x43\xc0\x44\x03\x44\x47\x44\x8a\x44\xce\x45\x12\x45\x55\x45\ \x9a\x45\xde\x46\x22\x46\x67\x46\xab\x46\xf0\x47\x35\x47\x7b\x47\ \xc0\x48\x05\x48\x4b\x48\x91\x48\xd7\x49\x1d\x49\x63\x49\xa9\x49\ \xf0\x4a\x37\x4a\x7d\x4a\xc4\x4b\x0c\x4b\x53\x4b\x9a\x4b\xe2\x4c\ \x2a\x4c\x72\x4c\xba\x4d\x02\x4d\x4a\x4d\x93\x4d\xdc\x4e\x25\x4e\ \x6e\x4e\xb7\x4f\x00\x4f\x49\x4f\x93\x4f\xdd\x50\x27\x50\x71\x50\ \xbb\x51\x06\x51\x50\x51\x9b\x51\xe6\x52\x31\x52\x7c\x52\xc7\x53\ \x13\x53\x5f\x53\xaa\x53\xf6\x54\x42\x54\x8f\x54\xdb\x55\x28\x55\ \x75\x55\xc2\x56\x0f\x56\x5c\x56\xa9\x56\xf7\x57\x44\x57\x92\x57\ \xe0\x58\x2f\x58\x7d\x58\xcb\x59\x1a\x59\x69\x59\xb8\x5a\x07\x5a\ \x56\x5a\xa6\x5a\xf5\x5b\x45\x5b\x95\x5b\xe5\x5c\x35\x5c\x86\x5c\ \xd6\x5d\x27\x5d\x78\x5d\xc9\x5e\x1a\x5e\x6c\x5e\xbd\x5f\x0f\x5f\ \x61\x5f\xb3\x60\x05\x60\x57\x60\xaa\x60\xfc\x61\x4f\x61\xa2\x61\ \xf5\x62\x49\x62\x9c\x62\xf0\x63\x43\x63\x97\x63\xeb\x64\x40\x64\ \x94\x64\xe9\x65\x3d\x65\x92\x65\xe7\x66\x3d\x66\x92\x66\xe8\x67\ \x3d\x67\x93\x67\xe9\x68\x3f\x68\x96\x68\xec\x69\x43\x69\x9a\x69\ \xf1\x6a\x48\x6a\x9f\x6a\xf7\x6b\x4f\x6b\xa7\x6b\xff\x6c\x57\x6c\ \xaf\x6d\x08\x6d\x60\x6d\xb9\x6e\x12\x6e\x6b\x6e\xc4\x6f\x1e\x6f\ \x78\x6f\xd1\x70\x2b\x70\x86\x70\xe0\x71\x3a\x71\x95\x71\xf0\x72\ \x4b\x72\xa6\x73\x01\x73\x5d\x73\xb8\x74\x14\x74\x70\x74\xcc\x75\ \x28\x75\x85\x75\xe1\x76\x3e\x76\x9b\x76\xf8\x77\x56\x77\xb3\x78\ \x11\x78\x6e\x78\xcc\x79\x2a\x79\x89\x79\xe7\x7a\x46\x7a\xa5\x7b\ \x04\x7b\x63\x7b\xc2\x7c\x21\x7c\x81\x7c\xe1\x7d\x41\x7d\xa1\x7e\ \x01\x7e\x62\x7e\xc2\x7f\x23\x7f\x84\x7f\xe5\x80\x47\x80\xa8\x81\ \x0a\x81\x6b\x81\xcd\x82\x30\x82\x92\x82\xf4\x83\x57\x83\xba\x84\ \x1d\x84\x80\x84\xe3\x85\x47\x85\xab\x86\x0e\x86\x72\x86\xd7\x87\ \x3b\x87\x9f\x88\x04\x88\x69\x88\xce\x89\x33\x89\x99\x89\xfe\x8a\ \x64\x8a\xca\x8b\x30\x8b\x96\x8b\xfc\x8c\x63\x8c\xca\x8d\x31\x8d\ \x98\x8d\xff\x8e\x66\x8e\xce\x8f\x36\x8f\x9e\x90\x06\x90\x6e\x90\ \xd6\x91\x3f\x91\xa8\x92\x11\x92\x7a\x92\xe3\x93\x4d\x93\xb6\x94\ \x20\x94\x8a\x94\xf4\x95\x5f\x95\xc9\x96\x34\x96\x9f\x97\x0a\x97\ \x75\x97\xe0\x98\x4c\x98\xb8\x99\x24\x99\x90\x99\xfc\x9a\x68\x9a\ \xd5\x9b\x42\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9d\x64\x9d\xd2\x9e\ \x40\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\xa0\x69\xa0\xd8\xa1\x47\xa1\ \xb6\xa2\x26\xa2\x96\xa3\x06\xa3\x76\xa3\xe6\xa4\x56\xa4\xc7\xa5\ \x38\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\xa7\x6e\xa7\xe0\xa8\x52\xa8\ \xc4\xa9\x37\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\x75\xab\xe9\xac\ \x5c\xac\xd0\xad\x44\xad\xb8\xae\x2d\xae\xa1\xaf\x16\xaf\x8b\xb0\ \x00\xb0\x75\xb0\xea\xb1\x60\xb1\xd6\xb2\x4b\xb2\xc2\xb3\x38\xb3\ \xae\xb4\x25\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\x79\xb6\xf0\xb7\ \x68\xb7\xe0\xb8\x59\xb8\xd1\xb9\x4a\xb9\xc2\xba\x3b\xba\xb5\xbb\ \x2e\xbb\xa7\xbc\x21\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\ \xff\xbf\x7a\xbf\xf5\xc0\x70\xc0\xec\xc1\x67\xc1\xe3\xc2\x5f\xc2\ \xdb\xc3\x58\xc3\xd4\xc4\x51\xc4\xce\xc5\x4b\xc5\xc8\xc6\x46\xc6\ \xc3\xc7\x41\xc7\xbf\xc8\x3d\xc8\xbc\xc9\x3a\xc9\xb9\xca\x38\xca\ \xb7\xcb\x36\xcb\xb6\xcc\x35\xcc\xb5\xcd\x35\xcd\xb5\xce\x36\xce\ \xb6\xcf\x37\xcf\xb8\xd0\x39\xd0\xba\xd1\x3c\xd1\xbe\xd2\x3f\xd2\ \xc1\xd3\x44\xd3\xc6\xd4\x49\xd4\xcb\xd5\x4e\xd5\xd1\xd6\x55\xd6\ \xd8\xd7\x5c\xd7\xe0\xd8\x64\xd8\xe8\xd9\x6c\xd9\xf1\xda\x76\xda\ \xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\ \x29\xdf\xaf\xe0\x36\xe0\xbd\xe1\x44\xe1\xcc\xe2\x53\xe2\xdb\xe3\ \x63\xe3\xeb\xe4\x73\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\ \xa9\xe8\x32\xe8\xbc\xe9\x46\xe9\xd0\xea\x5b\xea\xe5\xeb\x70\xeb\ \xfb\xec\x86\xed\x11\xed\x9c\xee\x28\xee\xb4\xef\x40\xef\xcc\xf0\ \x58\xf0\xe5\xf1\x72\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\x34\xf4\ \xc2\xf5\x50\xf5\xde\xf6\x6d\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\ \x38\xf9\xc7\xfa\x57\xfa\xe7\xfb\x77\xfc\x07\xfc\x98\xfd\x29\xfd\ \xba\xfe\x4b\xfe\xdc\xff\x6d\xff\xff\xff\xee\x00\x0e\x41\x64\x6f\ \x62\x65\x00\x64\x40\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x01\x01\ \x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\ \x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\ \x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\ \x02\x02\x02\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x01\x01\ \x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x02\x01\x02\x02\x03\x03\ \x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\ \x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\ \x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff\ \xc0\x00\x11\x08\x00\xf0\x02\x00\x03\x01\x11\x00\x02\x11\x01\x03\ \x11\x01\xff\xdd\x00\x04\x00\x40\xff\xc4\x01\xa2\x00\x00\x00\x06\ \x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x08\x06\ \x05\x04\x09\x03\x0a\x02\x01\x00\x0b\x01\x00\x00\x06\x03\x01\x01\ \x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x05\x04\x03\x07\x02\ \x08\x01\x09\x00\x0a\x0b\x10\x00\x02\x01\x03\x04\x01\x03\x03\x02\ \x03\x03\x03\x02\x06\x09\x75\x01\x02\x03\x04\x11\x05\x12\x06\x21\ \x07\x13\x22\x00\x08\x31\x14\x41\x32\x23\x15\x09\x51\x42\x16\x61\ \x24\x33\x17\x52\x71\x81\x18\x62\x91\x25\x43\xa1\xb1\xf0\x26\x34\ \x72\x0a\x19\xc1\xd1\x35\x27\xe1\x53\x36\x82\xf1\x92\xa2\x44\x54\ \x73\x45\x46\x37\x47\x63\x28\x55\x56\x57\x1a\xb2\xc2\xd2\xe2\xf2\ \x64\x83\x74\x93\x84\x65\xa3\xb3\xc3\xd3\xe3\x29\x38\x66\xf3\x75\ \x2a\x39\x3a\x48\x49\x4a\x58\x59\x5a\x67\x68\x69\x6a\x76\x77\x78\ \x79\x7a\x85\x86\x87\x88\x89\x8a\x94\x95\x96\x97\x98\x99\x9a\xa4\ \xa5\xa6\xa7\xa8\xa9\xaa\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc4\xc5\xc6\ \xc7\xc8\xc9\xca\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe4\xe5\xe6\xe7\xe8\ \xe9\xea\xf4\xf5\xf6\xf7\xf8\xf9\xfa\x11\x00\x02\x01\x03\x02\x04\ \x04\x03\x05\x04\x04\x04\x06\x06\x05\x6d\x01\x02\x03\x11\x04\x21\ \x12\x05\x31\x06\x00\x22\x13\x41\x51\x07\x32\x61\x14\x71\x08\x42\ \x81\x23\x91\x15\x52\xa1\x62\x16\x33\x09\xb1\x24\xc1\xd1\x43\x72\ \xf0\x17\xe1\x82\x34\x25\x92\x53\x18\x63\x44\xf1\xa2\xb2\x26\x35\ \x19\x54\x36\x45\x64\x27\x0a\x73\x83\x93\x46\x74\xc2\xd2\xe2\xf2\ \x55\x65\x75\x56\x37\x84\x85\xa3\xb3\xc3\xd3\xe3\xf3\x29\x1a\x94\ \xa4\xb4\xc4\xd4\xe4\xf4\x95\xa5\xb5\xc5\xd5\xe5\xf5\x28\x47\x57\ \x66\x38\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x67\x77\x87\x97\xa7\ \xb7\xc7\xd7\xe7\xf7\x48\x58\x68\x78\x88\x98\xa8\xb8\xc8\xd8\xe8\ \xf8\x39\x49\x59\x69\x79\x89\x99\xa9\xb9\xc9\xd9\xe9\xf9\x2a\x3a\ \x4a\x5a\x6a\x7a\x8a\x9a\xaa\xba\xca\xda\xea\xfa\xff\xda\x00\x0c\ \x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\x0c\x7d\xf6\xb3\xaf\x95\ \xce\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\ \x75\xee\xbd\xef\xdd\x6f\xaf\x7b\xf7\x5a\xeb\xde\xfd\xd7\xba\xf7\ \xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd6\xfa\ \xf7\xbf\x75\xae\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\ \xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\ \xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\ \xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\ \xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\ \xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xfe\xfb\xfd\xf7\xd3\xdf\ \xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\ \xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\ \x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\ \xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\ \xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\ \x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\ \xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\ \x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\ \xaf\x75\xff\xd0\x0d\x34\x37\xf4\xff\x00\x7d\xfe\xdf\xdf\x6a\xb5\ \x0e\xbe\x57\xb4\xfc\xfa\xf7\x8d\xbf\xa7\xfb\xee\x7f\xc7\xdf\xb5\ \x0e\xb7\xa4\xf5\xef\x1b\x7f\x4f\xf7\xaf\xf8\xaf\xbf\x6a\x1d\x7b\ \x41\xeb\xde\x36\xfe\x9f\xef\x5f\xf1\x5f\x7e\xd4\x3a\xf6\x83\xd7\ \xbc\x6d\xfd\x3f\xde\xbf\xe2\xbe\xfd\xa8\x75\xed\x07\xaf\x78\xdb\ \xfa\x7f\xbe\xff\x00\x6f\xef\xda\x87\x5e\xd0\x7a\xf7\x8d\xbf\xa7\ \xfb\xef\xf6\xfe\xfd\xa8\x7a\xf5\xed\x07\xaf\x78\xdb\xfa\x7f\xbd\ \x7f\xc5\x7d\xfb\x50\xf5\xeb\xda\x0f\x5e\xf1\xb7\xf4\xff\x00\x7a\ \xf7\xed\x43\xaf\x68\x3d\x7b\xc6\xdf\xd3\xfd\xeb\xfe\x2b\xef\xda\ \x87\x5e\xd0\x7a\xf7\x8d\xbf\xa7\xfb\xef\xf6\xfe\xfd\xa8\x75\xed\ \x07\xaf\x78\xdb\xfa\x7f\xbe\xff\x00\x6f\xef\xda\x87\x5e\xd0\x7a\ \xf7\x8d\xbf\xa7\xfb\xd7\xfc\x57\xdf\xb5\x0e\xbd\xa0\xf5\xdf\x8d\ \xbd\xfb\x50\xeb\xda\x0f\x5e\xf1\x37\xf5\x1f\xef\x3f\xf1\x4f\x7e\ \xd6\x3a\xf6\x83\xd7\xbc\x67\xfd\xf5\xfd\xfb\x50\xeb\xda\x0f\x5e\ \xf1\x37\xf8\x7f\xbc\xff\x00\xc5\x3d\xeb\x58\xeb\xda\x0f\x5e\xf1\ \x9f\xf0\xff\x00\x79\xf7\xbd\x63\xaf\x68\x3d\x7b\xc6\xdf\xe1\xfe\ \xf3\xef\xda\xc7\x5e\xd0\x7a\xf7\x8d\xbf\xc3\xfd\xe7\xdf\xb5\x0e\ \xbd\xa0\xf5\xef\x1b\x7f\xbe\xbf\xfc\x53\xdf\xb5\x0e\xbd\xa0\xf5\ \xef\x19\xff\x00\x0f\xf7\xdf\xec\x3d\xfb\x58\xeb\xda\x0f\x5e\xf1\ \x1f\xea\x3d\xeb\x58\xeb\xda\x0f\x5e\xf1\xb7\xf8\x7f\xbc\xfb\xde\ \xa1\xd7\xb4\x1e\xbd\xe2\x3f\xef\xbf\xe4\x5e\xf5\xac\x75\xbd\x1d\ \x7b\xc6\x7f\xdf\x7f\xc8\xbd\xfb\x58\xeb\xda\x3e\xde\xbd\xe2\x3f\ \xef\xaf\xff\x00\x14\xf7\xed\x63\xaf\x68\xeb\xde\x33\xfe\xfb\xfe\ \x45\xef\xda\x87\x5e\xd1\xd7\xbc\x47\xfc\x3f\xdb\xff\x00\xc6\xbd\ \xfb\x58\xeb\xda\x3a\xef\xc4\x7f\xc3\xfd\xf7\xfb\x0f\x7e\xd6\x3a\ \xf6\x8e\xbd\xe2\x3f\xe1\xfe\xfb\xfd\x87\xbf\x6b\x1d\x7b\x47\x5e\ \xf1\x1f\xf0\xff\x00\x7d\xfe\xc3\xdf\xb5\x8e\xbd\xa3\xaf\x78\x8f\ \xf8\x7f\xbe\xff\x00\x61\xef\xda\xc7\x5e\xd1\xd7\xbc\x47\xfc\x3f\ \xdb\xfb\xf6\xb1\xd7\xb4\x75\xef\x13\x7f\x87\xfb\x7f\xf8\xd7\xbf\ \x6b\x1d\x7b\x47\x5e\xf1\x1f\xf7\xc7\xfe\x35\xef\xda\xc7\x5e\xd1\ \xd7\x5e\x23\xfe\xf8\xff\x00\xc6\xbd\xfb\x58\xeb\xda\x3a\xef\xc4\ \x7f\xc3\xfd\xbf\xfc\x6b\xdf\xb5\x8e\xbd\xa3\xaf\x78\x8f\xf8\x7f\ \xbe\xff\x00\x61\xef\xda\xc7\x5e\xd1\xd7\xbc\x4d\xfe\xfb\xfd\xf0\ \xf7\xed\x5f\x2e\xbd\xe1\x9f\x4e\xbb\xf0\x9f\xf1\xff\x00\x6d\xff\ \x00\x1b\xf7\xed\x5f\x2e\xb7\xe1\x9f\x4e\xbd\xe1\x3f\xd4\xff\x00\ \xb6\xf7\xed\x5f\x2e\xbd\xe1\x9f\x4e\xbd\xe1\x3f\xd4\xff\x00\xb6\ \xff\x00\x8d\xfb\xf6\xa3\xe9\xd7\xbc\x33\xe9\xd7\xbc\x47\xfa\x9f\ \xf6\xde\xfd\xab\xe5\xd7\xbc\x33\xe9\xd7\xbc\x27\xfc\x7f\xdb\x7b\ \xf6\xaf\x97\x5e\xf0\xcf\xa7\x5e\xf0\x9f\xf1\xff\x00\x6d\xef\xda\ \xbe\x5d\x7b\xc3\x3e\x9d\x7b\xc4\x7f\xa9\xff\x00\x6d\xef\xda\xbe\ \x5d\x7b\xc3\x3e\x9d\x7b\xc2\x7f\xa9\xff\x00\x6d\xef\xda\xbe\x5d\ \x7b\xc3\x3e\x9d\x7b\xc4\x7f\xa9\xff\x00\x6d\xff\x00\x1b\xfc\x7b\ \xf6\xaf\x97\x5a\xf0\xcf\xa7\x5e\xf0\x9f\xf1\xff\x00\x6d\xff\x00\ \x1b\xf7\xed\x5f\x2e\xb7\xe1\x9f\x4e\xbd\xe1\x3f\xe3\xfe\xdb\xfe\ \x37\xef\xda\xbe\x5d\x7b\xc3\x3e\x9d\x7b\xc5\xfe\xbf\xfb\x6f\xf8\ \xdf\xbf\x6a\x3e\x9d\x7b\x41\xf4\xeb\xde\x23\xfe\x3f\xed\xbf\xe3\ \x7e\xfd\xab\xe5\xd7\xb4\x1f\x4e\xbd\xe2\x3f\xef\x87\xfc\x6f\xdf\ \xb5\x7c\xba\xf6\x83\xe9\xd7\x7e\x1f\xf1\xff\x00\x78\x3f\xf1\x5f\ \x7e\xd4\x7d\x3a\xdf\x87\xf2\xeb\xde\x1f\xf1\xff\x00\x78\x3e\xfd\ \xac\xfa\x75\xef\x0f\xe5\xd7\xbc\x3f\xe3\xfe\xf1\xff\x00\x1b\xf7\ \xed\x47\xd3\xaf\x78\x7f\x2e\xbd\xe1\xff\x00\x7d\x63\xff\x00\x15\ \xf7\xed\x5f\x2e\xb5\xe1\xfc\xba\xf7\x87\xfd\xf5\x8f\xfc\x57\xdf\ \xb5\x1f\x4e\xb7\xe1\xfc\xba\xeb\xc3\xfe\x3f\xef\x07\xfe\x2b\xef\ \xda\x8f\xa7\x5e\xf0\xfe\x5d\x77\xe1\xff\x00\x7d\x63\xef\xda\xcf\ \xa7\x5e\xf0\xfe\x5d\x75\xe2\xff\x00\x7d\x63\xef\xda\x8f\xa7\x5e\ \xf0\xfe\x5d\x77\xe1\xff\x00\x1f\xf7\x83\xef\xda\x8f\xa7\x5e\xf0\ \xfe\x5d\x7b\xc5\xfe\x3f\xef\x7e\xfd\xab\xe5\xd6\xbc\x3f\x97\x5f\ \xff\xd1\x44\xfd\xbf\xf8\x0f\xf7\x9f\x7d\xa2\xf1\x07\x5f\x2d\x9e\ \x1f\x5e\xfb\x71\xfd\x07\xfb\x73\xef\xda\xfa\xf7\x87\xd7\xbe\xdf\ \xfc\x07\xfb\xcf\xbf\x6b\x1d\x7b\xc3\xeb\xdf\x6f\xfe\x03\xfd\xe7\ \xdf\xb5\xf5\xef\x0f\xae\xfe\xdf\xfc\x07\xfb\xcf\xbf\x78\x83\xaf\ \x78\x47\xd3\xaf\x7d\xbf\xf8\x0f\xf7\x9f\x7e\xf1\x07\x5e\xf0\x8f\ \xa7\x5e\xfb\x7f\xf0\x1f\xef\x3e\xfd\xe2\x0e\xbd\xe1\x1f\x4e\xbd\ \xf6\xff\x00\xe0\x3f\xdb\x9f\x7e\xf1\x3a\xdf\x85\xf2\xeb\xdf\x6f\ \xfe\x03\xfd\xe7\xdf\xbc\x41\xd7\xbc\x2f\x97\x5e\xfb\x7f\xf0\x1f\ \xed\xcf\xbf\x78\x83\xaf\x78\x5f\x2e\xbd\xf6\xe3\xfa\x0f\xf6\xe7\ \xdf\xbc\x4e\xbd\xe1\x7c\xba\xf7\xdb\xff\x00\x80\xff\x00\x6e\x7d\ \xfb\xc4\xeb\xde\x17\xcb\xaf\x7d\xbf\xf8\x0f\xf6\xe7\xfe\x29\xef\ \xde\x27\x5e\xf0\xbe\x5d\x7b\xc1\xfe\x1f\xef\x27\xdf\xbc\x4e\xbd\ \xe1\x9f\x4e\xbb\xfb\x7f\xf0\xff\x00\x79\x3e\xfd\xe2\x75\xef\x0c\ \xfa\x75\xef\x07\xfb\xe1\x7f\xf8\xd7\xbf\x78\x9d\x7b\xc3\x3e\x9d\ \x7b\xed\xc7\xfb\xef\xf9\x1f\xbd\x78\x9d\x7b\xc3\x3e\x87\xaf\x78\ \x07\xfb\xeb\xff\x00\xc5\x7d\xfb\xc4\x3d\x7b\xc3\x3e\x87\xaf\x7d\ \xb8\xff\x00\x7d\x7f\xf8\xaf\xbd\xf8\x87\xaf\x78\x67\xd0\xf5\xef\ \xb7\x1f\xe3\xfe\xf3\xff\x00\x15\xf7\xaf\x10\xf5\xef\x0c\xfa\x75\ \xdf\xdb\x8f\xf1\xff\x00\x79\xff\x00\x1f\xf1\xf7\xef\x13\xaf\x78\ \x67\xd3\xae\xbe\xdc\x7f\x8f\xfb\xef\xf6\x3e\xf7\xe2\x1e\xbd\xe1\ \x9f\x43\xd7\xbe\xdc\x7f\xad\xfe\xdf\xfe\x2b\xef\x5e\x21\xeb\xde\ \x19\xf4\x3d\x7b\xed\xc7\xfb\xeb\xff\x00\xc5\x7d\xfb\xc4\x3d\x6f\ \xc2\x3d\x77\xe0\x1f\xef\x85\xff\x00\xde\xfd\xfb\xc4\x3d\x7b\xc2\ \x3d\x77\xe0\x1f\xef\x87\xbf\x78\x9d\x7b\xc3\xeb\xde\x01\xfe\x1f\ \xed\x87\xbf\x78\x9d\x7b\xc2\x3d\x75\xe0\x1f\xef\x87\xbf\x78\x87\ \xaf\x78\x67\xae\xfc\x03\xfc\x3f\xdb\x7b\xf7\x89\xd7\xbc\x23\xd7\ \xbc\x03\xfd\xf0\xf7\xef\x10\xf5\xef\x08\xf5\xef\x00\xff\x00\x0f\ \xf6\xc3\xdf\xbc\x4e\xbd\xe1\x1e\xbd\xe0\x1f\xe1\xfe\xd8\x7b\xf7\ \x89\xd7\xbc\x23\xd7\xbc\x03\xfc\x3f\xdb\x0f\x7e\xf1\x3a\xf7\x84\ \x7a\xf7\x80\x7f\xb4\xff\x00\xb6\xff\x00\x8d\xfb\xd7\x88\x7a\xdf\ \x84\x7d\x3a\xf7\x80\x7f\x41\xfe\xdb\xdf\xbc\x4e\xbd\xe1\x7c\xba\ \xf7\x80\x7f\x41\xfe\xdb\xdf\xbc\x4e\xbd\xe1\x1e\xbb\xfb\x7f\xe8\ \x3f\xdb\x0f\x7e\xf1\x0f\x5e\xf0\x8f\xa7\x5e\xfb\x73\xfe\xa7\xfe\ \x4d\xf7\xbf\x13\xaf\x78\x5f\x2e\xbd\xf6\xe7\xfd\x4f\xfc\x9b\xef\ \xde\x27\x5e\xf0\x8f\xa7\x5e\xfb\x63\xfe\xa7\xfe\x4d\xf7\xef\x10\ \xf5\xef\x0c\xfa\x75\xef\xb7\xff\x00\x0f\xf9\x37\xdf\xbc\x4e\xbd\ \xe1\x1f\x4e\xbd\xf6\xff\x00\xed\x3f\xf2\x6f\xbd\x78\x9d\x7b\xc2\ \xf9\x75\xdf\xdb\x8f\xf5\x27\xfd\xb7\xfc\x6b\xdf\xbc\x43\xeb\xd7\ \xbc\x2f\x97\x5e\xfb\x7f\xf6\x93\xfe\xdb\xfe\x35\xef\xde\x21\xf5\ \xeb\xde\x17\xcb\xaf\x7d\xb8\xff\x00\x50\x7f\xdb\x7f\xbc\x7d\x3d\ \xfb\xc4\x3e\xbd\x7b\xc2\x3d\x7b\xed\xc7\xfa\x9f\xf7\x8f\xf8\xd7\ \xbf\x78\x87\xd7\xaf\x78\x5f\x2e\xbd\xf6\xe3\xfd\x4f\xfb\xc7\xfc\ \x6b\xdf\xbc\x43\xeb\xd7\xbc\x2f\x97\x5e\xfb\x71\xfe\xa4\xff\x00\ \xb6\xff\x00\x8d\x7b\xf7\x88\x7d\x7a\xf7\x85\xf2\xeb\xdf\x6e\x3f\ \xd4\x9f\xf6\xdf\xf1\xaf\x7e\xf1\x0f\xaf\x5e\xf0\xbe\x5d\x7b\xed\ \xc7\xfa\x93\xfe\xdb\xfe\x35\xef\xde\x21\xeb\xde\x17\x5d\x8a\x70\ \x3f\xb2\x79\xff\x00\x0f\x7e\xd6\x7a\xf7\x85\xd7\xbc\x1f\xe0\xde\ \xf5\xac\xf5\xef\x0b\xaf\x78\x3f\xc1\xbd\xfb\x59\xeb\xde\x17\x5e\ \xf0\x7f\x83\x7b\xf6\xbe\xbd\xe1\xf5\xef\x07\xf8\x37\xbf\x6b\x3d\ \x7b\xc2\xeb\xde\x0f\xf0\x6f\x7e\xd6\x7a\xf7\x85\xd7\xbc\x1f\xe0\ \xde\xfd\xac\xf5\xbf\x0b\xaf\x78\x3f\xe0\xdf\xed\x8f\xfc\x53\xdf\ \xb5\x9e\xbd\xe1\x75\xef\x07\xfc\x1b\xfd\xe7\xfe\x29\xef\xda\xcf\ \x5e\xf0\x87\x5d\xf8\x3f\xd7\xff\x00\x6d\xff\x00\x1a\xf7\xed\x67\ \xaf\x78\x5d\x7b\xc1\xfe\xbf\xfb\x6f\xf8\xd7\xbf\x6b\x3e\x9d\x7b\ \xc3\xeb\xde\x0f\xf0\x3f\xed\xbf\xe3\x5e\xfd\xac\xf5\xef\x0f\xaf\ \x78\x3f\xd7\xff\x00\x78\x1f\xf1\x1e\xfd\xac\xf5\xef\x0f\xae\xfe\ \xdc\xff\x00\xbe\xb7\xbf\x6b\x3e\x9d\x7b\xc3\xfb\x3a\xff\xd2\x65\ \xfb\x7f\xf0\xff\x00\x93\x7d\xf6\x5f\xc4\xeb\xe5\xf7\xc2\x1e\x9d\ \x7b\xed\x87\xf4\xff\x00\x93\x7d\xfb\xc4\xeb\xde\x10\xeb\xdf\x6c\ \x3f\xa7\xfb\xc7\xbf\x78\x9d\x7b\xc2\x1d\x7b\xed\x87\xf4\xff\x00\ \x93\x7d\xfb\xc4\xeb\xde\x10\xeb\xdf\x6c\x3f\xa7\xfb\xc5\xbd\xfb\ \xc4\xeb\xde\x10\xeb\xbf\xb5\xff\x00\x01\xfe\xd8\x7b\xf7\x88\x3a\ \xf7\x84\x3a\xf7\xda\xff\x00\x80\xff\x00\x6c\x3d\xfb\xc5\xeb\xde\ \x17\x5e\xfb\x4f\xf0\x1f\xed\x87\xfc\x57\xdf\xbc\x4f\x97\x5e\xf0\ \x7a\xf7\xda\xff\x00\xb4\x8f\xf6\xc3\xdf\xbc\x4e\xb7\xe0\xf5\xef\ \xb5\xff\x00\x01\xfe\xd8\x7b\xf7\x89\xf2\xeb\x5e\x0f\x5d\xfd\xb3\ \x7f\xbe\xff\x00\x91\xfb\xf7\x89\xf2\xeb\x7e\x0f\x5e\xfb\x63\xfe\ \x3f\xef\xbf\xd8\xfb\xf7\x89\xf2\xeb\x5e\x0f\xcb\xaf\x7d\xb3\x7f\ \xbe\xff\x00\x91\xfb\xf7\x89\xd6\xfc\x1e\xbd\xf6\xc7\xfd\xf7\xfc\ \x8f\xdf\xbc\x4f\x97\x5e\xf0\x7a\xf7\xdb\x37\xfb\xef\xf9\x1f\xbf\ \x78\x9f\x2e\xbd\xe0\xfc\xba\xef\xed\xdb\xfd\xf0\x1f\xf1\x5f\x7a\ \xf1\x3e\x5d\x7b\xc2\xf9\x75\xef\xb7\x6f\xf7\xc0\x7b\xdf\x88\x3a\ \xf7\x85\xf2\xeb\xdf\x6e\xdf\xef\x80\xf7\xef\x13\xe5\xd7\xbc\x2f\ \x97\x5d\x7d\xbb\x7f\xbe\x03\xdf\xbc\x4f\x97\x5e\xf0\xbe\x5d\x77\ \xf6\xcd\xfe\xfb\xfe\x47\xef\x5e\x27\x5e\xf0\xbe\x5d\x7b\xed\xcf\ \xf4\xff\x00\x7d\xfe\xdf\xdf\xbc\x4e\xbd\xe1\x7c\xba\xf7\xdb\xb7\ \xf4\xff\x00\x78\xff\x00\x8d\xfb\xf7\x89\xd7\xbc\x2f\x97\x5e\xfb\ \x76\xfe\x9f\xef\xbf\xdb\xfb\xf7\x89\xd6\xfc\x2f\x97\x5e\xfb\x76\ \xfe\x9f\xef\x1f\xf1\xbf\x7b\xf1\x3a\xd7\x85\xf2\xeb\xbf\xb7\x3f\ \xd3\xfd\xb5\xbd\xeb\xc4\xeb\x7e\x17\xcb\xaf\x7d\xbf\xf8\x1f\xf7\ \x8f\x7e\xf1\x0f\x5e\xf0\xbe\x5d\x7b\xed\xcf\xf4\x3f\xef\x1e\xfd\ \xe2\x75\xef\x0b\xe5\xd7\xbe\xdf\xfc\x0f\xfb\xc7\xbf\x78\x87\xaf\ \x78\x43\xd3\xaf\x7d\xbf\xf8\x1f\xf7\x8f\x7e\xf1\x0f\x5e\xf0\x87\ \xa7\x5e\xfb\x7f\xf0\x3f\xef\x1e\xfd\xe2\x1e\xbd\xe1\x0f\x4e\xbd\ \xf6\xff\x00\xe0\x79\xff\x00\x5b\xfd\xbf\xf5\xf7\xef\x10\xf5\xef\ \x08\x7a\x75\xdf\xdb\x7f\xbe\xff\x00\x7c\x3d\xeb\xc4\x3e\x9d\x7b\ \xc2\x1e\x9d\x7b\xed\xbf\xdf\x7f\xbe\x1e\xfd\xe2\x1f\x4e\xbd\xe1\ \x0f\x4e\xbd\xf6\xdf\xef\xaf\xff\x00\x1a\xf7\xbf\x10\xfa\x75\xbf\ \x08\x7a\x75\xef\xb6\xff\x00\x7d\x7f\xf8\xd7\xbf\x78\x87\xd3\xaf\ \x78\x43\xd3\xae\xfe\xd7\xfd\xf7\xfb\xe1\xef\x5e\x21\xf4\xeb\xde\ \x0f\xcb\xaf\x7d\xaf\xfb\xef\xf7\xc3\xdf\xbc\x43\xe9\xd7\xbc\x1f\ \x97\x5e\xfb\x5f\xf7\xdf\xef\x87\xbf\x78\x87\xaf\x78\x3f\x2e\xbd\ \xf6\xbf\xef\xbf\xdf\x0f\x7e\xf1\x0f\xa7\x5e\xf0\x7e\x5d\x7b\xed\ \x7f\xdf\x7f\xbe\x1e\xfd\xe2\x1e\xbd\xe0\xfc\xba\xf0\xa5\xff\x00\ \x7d\xfe\xf8\x7b\xf7\x88\x7a\xf7\x83\xf2\xeb\xdf\x6c\x7f\xdf\x7f\ \xc8\xbd\xfb\xc4\x3e\x9d\x6f\xc2\xf9\x75\xef\xb6\x3f\xef\x8f\xfc\ \x6b\xdf\xbc\x43\xe9\xd7\xbc\x2f\x97\x5e\xfb\x6f\xf7\xd7\xff\x00\ \x8d\x7b\xf7\x88\x7d\x3a\xf7\x82\x7d\x3a\xf7\xdb\x1f\xf7\xc7\xfe\ \x35\xef\xde\x21\xf4\xeb\xde\x17\xcb\xaf\x7d\xb7\xfb\xe3\xff\x00\ \x22\xf7\xef\x10\xfa\x75\xef\x08\xfa\x75\xef\xb6\x3f\xef\xbf\xe4\ \x5e\xfd\xe2\x1f\x4e\xbd\xe1\x1f\x4e\xbd\xf6\xc7\xfd\xf7\xfc\x8b\ \xdf\xbc\x43\xe9\xd7\xbc\x23\xe9\xd7\xbe\xd8\xff\x00\xbe\xff\x00\ \x91\x7b\xf7\x88\x7a\xf7\x84\x7d\x3a\xf7\xdb\x1f\xf7\xdf\xf2\x2f\ \x7e\xf1\x0f\xa7\x5e\xf0\x8f\xa7\x5d\xfd\xbf\xf8\x5f\xfd\xf7\xf8\ \x5b\xdf\xb5\x9e\xbd\xe1\x1f\x4e\xbb\xfb\x6f\xf0\x1f\xef\x3e\xf5\ \xac\xf5\xef\x08\xfa\x75\xd7\xdb\xff\x00\x80\xff\x00\x79\xf7\xbd\ \x67\xaf\x78\x47\xd3\xaf\x7d\xbf\xf8\x0f\xf7\x9f\x7e\xd6\x7a\xf7\ \x84\x7d\x3a\xf7\xdb\xff\x00\x80\xff\x00\x6e\x7d\xeb\x59\xeb\x7e\ \x17\xcb\xaf\x7d\xbf\xf8\x0f\xf6\xe7\xde\xf5\x9e\xbd\xe1\x7c\xba\ \xef\xed\xff\x00\xc0\x7f\xb7\x3e\xf5\xac\xf5\xef\x0b\xe5\xd7\xbe\ \xdc\x7f\x4f\xf7\xdf\xed\xfd\xfb\x5b\x75\xef\x0b\xe5\xd7\xbe\xdc\ \x7f\x4f\xf7\x8f\xf8\xdf\xbf\x6b\x6e\xbd\xe1\x7c\xba\xef\xed\x87\ \xfb\xeb\xfb\xf6\xb6\xeb\xde\x17\xcb\xaf\x7d\xb2\xff\x00\xbe\xbf\ \xbf\x6b\x3d\x7b\xc2\xf9\x75\xef\xb6\x1f\xef\xaf\xff\x00\x15\xf7\ \xed\x6d\xd6\xfc\x2f\x97\x5d\xfd\xaf\xf8\x7f\xbc\x1f\x7e\xf1\x0f\ \xaf\x5e\xf0\x7e\x5d\x7b\xed\x7f\xc0\xff\x00\xb6\x3f\xf1\x5f\x7e\ \xf1\x0f\xaf\x5e\xf0\x7e\x5d\x7f\xff\xd3\xcd\xf6\xa7\xfa\x7f\xbd\ \xfb\xec\x5f\x88\x7a\xf9\x90\xf0\x7a\xeb\xed\x4f\xfa\x9f\xf7\xbf\ \x7e\xf1\x0f\x5e\xf0\x7a\xf7\xda\x9f\xf5\x3f\xef\x7e\xf7\xe2\x1e\ \xbd\xe0\xf5\xdf\xda\x9f\xe9\xfe\xf7\xef\x5e\x21\xeb\xde\x0f\x5d\ \x7d\xa9\xff\x00\x53\xfe\xf7\xef\xde\x21\xeb\xde\x0f\x5e\xfb\x53\ \xfe\xa7\xfd\xef\xdf\xbc\x43\xd7\xbc\x1e\xbd\xf6\xa7\xfd\x4f\xfb\ \xdf\xbd\xf8\x87\xaf\x78\x3d\x77\xf6\xa7\xfd\x4f\xfb\xdf\xbd\x78\ \x87\xaf\x78\x3d\x75\xf6\xa7\xfd\x4f\xfb\xdf\xbf\x78\x87\xaf\x78\ \x3d\x77\xf6\xc4\x7e\x3f\xe2\x7f\xe2\x3d\xfb\xc4\xeb\x7e\x17\x5d\ \xfd\xb3\x7f\xa9\xff\x00\x78\xff\x00\x8d\x7b\xf6\xbe\xbd\xe1\x75\ \xd8\xa5\x6f\xf5\x23\xfd\xb5\xbd\xeb\xc4\xf9\xf5\xbf\x04\xfa\x75\ \xdf\xda\x9f\xf5\x23\xfd\xef\xfe\x20\x7b\xf7\x89\xf3\xeb\xde\x0f\ \xcb\xae\xfe\xd4\xff\x00\x41\xfe\xd8\x7b\xd7\x89\xf3\xeb\x7e\x0f\ \xcb\xaf\x7d\xaf\xf8\x0f\xf6\xc3\xfe\x2b\xef\x7e\x27\xcf\xaf\x78\ \x3f\x2e\xbd\xf6\xa7\xfa\x0f\xf6\xc3\xde\xbc\x4f\x9f\x5e\xf0\x7e\ \x5d\x7b\xed\x7f\xc0\x7f\xb6\x1f\xf1\x5f\x7b\xf1\x3e\x7d\x7b\xc1\ \xeb\xdf\x6b\xfe\x03\xfd\xb0\xf7\xef\x13\xe7\xd7\xbc\x1f\x97\x5e\ \xfb\x5f\xf0\x1f\xed\x87\xbf\x78\x9f\x3e\xbd\xe0\xfc\xba\xf7\xda\ \x9f\xe8\x3f\xdb\x0f\x7a\xf1\x3e\x7d\x6b\xc1\xf9\x75\xef\xb5\xff\ \x00\x01\xfe\xd8\x7b\xdf\x88\x7d\x7a\xdf\x83\xf2\xeb\xdf\x6b\xfe\ \x1f\xef\x03\xfe\x2b\xef\xde\x21\xf5\xeb\xde\x0f\xcb\xaf\x7d\xaf\ \xf8\x0f\xf6\xc3\xdf\xbc\x4f\x9f\x5e\xf0\x7e\x5d\x7b\xed\x4f\xf4\ \x1f\xed\x87\xbf\x78\x9f\x3e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\x80\ \xff\x00\x6c\x3d\xfb\xc4\x3e\xbd\x7b\xc1\xf9\x75\xef\xb5\x3f\xd0\ \x7f\xb6\x1e\xf5\xe2\x7c\xfa\xf7\x83\xf2\xeb\xdf\x6b\xfe\x03\xfd\ \xb0\xf7\xbf\x13\xe7\xd7\xbc\x1f\x97\x5e\xfb\x53\xfd\x07\xfb\x61\ \xef\xde\x27\xcf\xaf\x78\x3f\x2e\xbd\xf6\xbf\xe0\x3f\xdb\x0f\xf8\ \xaf\xbd\x78\x87\xd7\xaf\x78\x3f\x2e\xbd\xf6\xa7\xfa\x0f\xf6\xc3\ \xde\xfc\x4f\x9f\x5e\xf0\x7e\x5d\x7b\xed\x7f\xc0\x7f\xb6\x1e\xfd\ \xe2\x1f\x5e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\x80\xff\x00\x6c\x3d\ \xfb\xc4\x3e\xbd\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x01\xfe\xd8\x7f\ \xc5\x7d\xfb\xc4\xf9\xf5\xef\x07\xe5\xd7\xbe\xd4\xff\x00\x41\xfe\ \xd8\x7b\xd7\x89\xf3\xeb\xde\x0f\xcb\xaf\x7d\xa9\xfe\x83\xfd\xb0\ \xf7\xbf\x13\xe7\xd7\xbc\x1f\x97\x5e\xfb\x52\x3e\x82\xdf\xec\x2d\ \xff\x00\x13\xef\x5e\x27\xcf\xaf\x78\x3f\x2e\xbb\xfb\x66\xff\x00\ \x7d\xff\x00\x23\xf7\xed\x7d\x7b\xc1\xf9\x75\xdf\xda\xb7\xfa\xdf\ \xef\x3f\xef\x5e\xf5\xe2\x75\xbf\x00\xfa\x75\xdf\xda\xb7\xf5\x1f\ \xed\xbd\xfb\xc4\x1d\x6f\xc1\xf9\x75\xdf\xda\xff\x00\xbe\xff\x00\ \x7c\x3d\xfb\xc4\xf9\xf5\xef\x07\xe5\xd7\xbe\xd7\xfd\xf7\xfb\xe1\ \xef\xda\xfe\x7d\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x7d\xfe\xf8\x7b\ \xf6\xbf\x9f\x5e\xf0\x7e\x5d\x7b\xed\x7f\xdf\x7f\xbe\x1e\xfd\xaf\ \xe7\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf7\xdf\xef\x87\xbf\x6b\xf9\xf5\ \xef\x07\xe5\xd7\xbe\xd7\xfd\xf7\xfb\xe1\xef\xda\xfe\x7d\x7b\xc1\ \xf9\x75\xef\xb5\xff\x00\x7d\xfe\xf8\x7b\xf6\xbf\x9f\x5e\xf0\x7e\ \x5d\x7b\xed\x7f\xdf\x7f\xbe\x1e\xfd\xaf\xe7\xd7\xbc\x1f\x97\x5e\ \xfb\x5f\xf7\xdf\xef\x87\xbf\x6b\xf9\xf5\xef\x07\xfa\x3d\x7b\xed\ \x7d\xfb\x5f\xcf\xaf\x78\x3f\x2e\xbd\xf6\xbf\xef\xbf\xdf\x0f\x7e\ \xf1\x3e\x7d\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x7d\xfe\xf8\x7b\xf6\ \xbf\x9f\x5e\xf0\x7e\x5d\x7b\xed\x7f\xdf\x7f\xbe\x1e\xfd\xaf\xe7\ \xd7\xbc\x1f\x97\x5e\xfb\x5f\xf7\xdf\xef\x87\xbf\x78\x9f\x3e\xbd\ \xe0\xfc\xba\xf7\xda\xff\x00\xbe\xff\x00\x7c\x3d\xfb\x5f\xcf\xaf\ \x78\x3f\xd1\xeb\xdf\x6b\xfe\xfb\xfd\xf0\xf7\xef\x13\xe7\xd7\xbc\ \x1f\x97\x5e\xfb\x5f\xf7\xdf\xef\x87\xbf\x78\x9f\x3e\xbd\xe0\xfc\ \xba\xf7\xda\xff\x00\xbe\xff\x00\x7c\x3d\xfb\x5f\xcf\xaf\x78\x3f\ \x2e\xbd\xf6\xbe\xfd\xe2\x7c\xfa\xf7\x83\xf2\xeb\xdf\x6b\xfe\xfb\ \xfd\xf0\xf7\xed\x7f\x3e\xbd\xe0\xff\x00\x47\xaf\x7d\xaf\xfb\xef\ \xf7\xc3\xdf\xbc\x4f\x9f\x5e\xf0\x7e\x5d\x7b\xed\x7f\xdf\x7f\xbe\ \x1e\xfd\xe2\x7c\xfa\xf7\x83\xf2\xeb\xdf\x6b\xfe\xfb\xfd\xf0\xf7\ \xef\x13\xe7\xd7\xbc\x1f\x97\x5d\xfd\xa1\xfe\x87\xfd\xf7\xfb\x0f\ \x7a\xf1\x07\xaf\x5e\xf0\x7e\x5d\x77\xf6\x87\xfd\xf0\xff\x00\x8d\ \x7b\xf7\x88\x3d\x7a\xdf\x81\xf2\xeb\xff\xd4\x54\xfd\x99\xff\x00\ \x53\xfe\xf3\xef\xaf\xbe\x20\xfe\x2e\xbe\x69\xbc\x03\xe9\xd7\xbe\ \xcc\xff\x00\x41\xfe\xdf\xdf\xbc\x41\xeb\xd7\xbc\x0f\x97\x5e\xfb\ \x33\xfd\x07\xfb\x73\xef\xde\x28\xf5\xeb\xde\x07\x5d\xfd\x9f\xf8\ \x7f\xbe\xff\x00\x6f\xef\x5e\x2f\xcf\xaf\x78\x1d\x7b\xec\xff\x00\ \xdf\x7f\xbe\x3e\xfd\xe2\xfc\xfa\xf7\x81\xd7\x7f\x66\x3f\xa7\xfb\ \xef\xf6\xfe\xf7\xe2\xfc\xfa\xdf\x81\xd7\xbe\xcf\xfc\x3f\xdf\x7f\ \xb7\xf7\xef\x17\xe7\xd7\xbc\x01\xd7\xbe\xcc\x7f\x4f\xf7\xdf\xed\ \xfd\xfb\xc5\xf9\xf5\xef\x00\x7a\x75\xef\xb3\x1f\xd3\xfd\xf7\xfb\ \x7f\x7a\xf1\x7e\x7d\x7b\xc0\x1e\x9d\x7b\xed\x3f\xc0\x7f\xb6\xbf\ \xfb\xd9\xf7\xef\x13\xe7\xd7\xbc\x11\xe9\xd7\x7f\x6b\xfe\x1f\xef\ \x03\xfe\x2b\xef\xde\x20\xf5\xeb\x7e\x0f\xcb\xaf\x7d\xaf\xf8\x7f\ \xbc\x0f\x7e\xf1\x07\xaf\x5e\xf0\x7e\x5d\x7b\xed\x7f\xc0\x7f\xb6\ \xff\x00\x8d\xfb\xf7\x88\x3d\x7a\xf7\x83\xf2\xeb\xdf\x6b\xfe\x1f\ \xef\x03\xdf\xbc\x41\xeb\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf0\xff\x00\ \x78\x1e\xfd\xe2\x0f\x5e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\x87\xfb\ \xc0\xf7\xef\x10\x7a\xf5\xef\x07\xe5\xd7\xbe\xd7\xfc\x07\xfb\x61\ \xef\xde\x20\xf5\xeb\xde\x0f\xcb\xaf\x7d\xaf\xf8\x0f\xf6\xc3\xdf\ \xbc\x41\xeb\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf0\xff\x00\x78\x1e\xfd\ \xe2\x0f\x5e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\x87\xfb\xc0\xff\x00\ \x8a\xfb\xf7\x88\x3d\x7a\xf7\x83\xf2\xeb\xdf\x68\x7f\xd4\xff\x00\ \xbc\x0f\x7e\xf1\x07\xaf\x5e\xf0\x7e\x5d\x7b\xed\x3f\xc3\xfd\xe0\ \x7b\xf7\x88\x3d\x7a\xf7\x82\x7d\x3a\xef\xed\x0f\xf4\x1f\xed\x87\ \xbd\x78\x83\xd7\xad\xf8\x07\xd3\xaf\x7d\xa1\xfe\x9f\xef\x03\xfe\ \x2b\xef\xde\x20\xf5\xeb\xde\x01\xf4\xeb\xdf\x68\x7f\xa7\xfb\xd7\ \xfc\x57\xdf\xbc\x41\xeb\xd7\xbc\x03\xe9\xd7\x85\x21\xfe\x83\xfd\ \xb0\xff\x00\x8d\xfb\xf7\x8a\x3a\xf7\x80\x7d\x3a\xf7\xd9\xff\x00\ \xad\xfe\xdb\xfe\x35\xef\xde\x28\xf9\xf5\xef\x00\xfa\x75\xdf\xd9\ \xff\x00\xad\xfe\xdb\xdf\xbc\x51\xf3\xeb\xde\x07\xcb\xaf\x7d\x9f\ \xfa\xdf\xed\xbd\xfb\xc5\x1d\x7b\xc0\xf9\x75\xef\xb3\x1f\x9b\x7f\ \xb6\xff\x00\x8d\x1f\x7e\xf1\x7a\xf7\x81\xf2\xeb\xbf\xb4\x1f\xd3\ \xfd\xf7\xfb\x6f\x7a\xf1\x3e\x7d\x7b\xc0\xf9\x75\xef\xb4\x1f\xd3\ \xfd\xf7\xfb\x6f\x7b\xf1\x7a\xdf\x81\xf2\xeb\xdf\x68\xbf\xd0\x7f\ \xbe\xff\x00\x61\xef\xde\x2f\x5e\xf0\x3e\x5d\x7b\xed\x07\xf4\x1f\ \xef\xbf\xd8\x7b\xf7\x8b\xd7\xbc\x1f\x97\x5d\xfd\xa0\xff\x00\x52\ \x3f\xdf\x7f\xb0\xf7\xaf\x17\xaf\x78\x3f\x2e\xbd\xf6\xa3\xfa\x5b\ \xfd\x6f\xf9\x17\xbf\x78\x9d\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x7d\ \xfe\xf8\x7b\xf7\x88\x3a\xf7\x83\xf2\xeb\xdf\x6b\xfe\xfb\xfd\xf0\ \xf7\xef\x10\x75\xef\x07\xe5\xd7\xbe\xd7\xfd\xf7\xfb\xe1\xef\xde\ \x20\xeb\xde\x0f\xcb\xaf\x7d\xaf\xfb\xef\xf7\xc3\xdf\xbc\x41\xe9\ \xd6\xfc\x1f\x97\x5e\xfb\x5f\xf7\xdf\xef\x87\xbf\x78\x83\xaf\x78\ \x3f\x2e\xbd\xf6\xbf\xef\xbf\xdf\x0f\x7e\xf1\x07\x5a\xf0\x7e\x5d\ \x7b\xed\x7f\xdf\x7f\xbe\x1e\xfd\xe2\x0e\xbd\xe0\xfc\xba\xef\xed\ \x0f\xfa\x93\xfe\xf3\xff\x00\x14\xf7\xef\x10\x75\xef\x07\xe5\xd7\ \x7f\x68\x7f\xd4\x9f\xf7\x9f\xf8\xa7\xbf\x78\x83\xaf\x78\x3f\x2e\ \xbd\xf6\x87\xfa\x1f\xf7\x9f\xf8\xa7\xbf\x78\x83\xaf\x78\x3f\x2e\ \xbd\xf6\x87\xfa\x1f\xf7\xdf\xec\x3d\xfb\xc4\x1d\x6f\xc0\xf9\x75\ \xd7\xda\x1f\xe8\x7f\xdf\x7f\xb0\xf7\xef\x10\x75\xef\x03\xe5\xd7\ \x7f\x68\x7f\xa7\xfb\xdf\xfc\x53\xdf\xbc\x41\xe9\xd7\xbc\x0f\x97\ \x5e\xfb\x33\xfd\x2f\xfe\xdf\xfe\x29\xef\x5e\x20\xf4\xeb\xde\x07\ \x5e\xfb\x33\xfd\x3f\xde\xff\x00\xe2\x9e\xf7\xe2\x0f\x4e\xbd\xe0\ \x7c\x87\x5e\xfb\x33\xfd\x0f\xfb\xef\xf6\x1e\xf5\xe2\x0f\x4e\xb7\ \xe0\x75\xdf\xd9\xff\x00\xaf\xfe\xdb\xdf\xbc\x5f\x97\x5a\xf0\x3a\ \xf7\xd9\xff\x00\xaf\xfe\xdb\xdf\xbc\x4f\x97\x5b\xf0\x3e\x5d\x7b\ \xec\xff\x00\xd7\xff\x00\x6d\xef\xde\x27\xcb\xaf\x78\x03\xd3\xaf\ \x7d\x98\xfe\x87\xfd\xb7\xbf\x78\x9f\x2e\xbd\xe0\x0f\x4e\xbb\xfb\ \x41\xfd\x0f\xfb\x63\xff\x00\x15\xf7\xaf\x13\xaf\x78\x03\xd3\xaf\ \x7d\xa0\xff\x00\x52\x7f\xdb\x1f\xf8\xaf\xbf\x78\x9d\x7b\xc0\x1e\ \x9d\x7b\xed\x07\xfa\x9f\xf7\x83\xef\x7e\x27\x5e\xf0\x7e\x5d\x77\ \xf6\x83\xfa\x7f\xbc\x1f\x7e\xf1\x3e\x5d\x6f\xc1\xf9\x75\xef\xb5\ \xff\x00\x0f\xf7\x83\xef\xde\x27\xcb\xaf\x78\x3d\x7b\xed\x7f\xc3\ \xfd\xe0\xfb\xf7\x89\xd7\xbc\x1e\xbd\xf6\xbf\xe0\x7f\xdb\x1f\x7e\ \xf1\x3e\x5d\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x03\xfe\xd8\xff\x00\ \xc5\x7d\xfb\xc4\xf9\x75\xef\x07\xaf\xff\xd5\x14\x3e\xcc\xff\x00\ \xb4\xff\x00\xb6\xf7\xd6\xef\x13\xe5\xd7\xcd\xf7\x80\x7d\x3a\xf7\ \xd9\xff\x00\xad\xef\xde\x2f\xcb\xaf\x78\x07\xd3\xae\xfe\xcf\xfd\ \x6f\xf6\xde\xfd\xe2\xfc\xba\xf7\x81\xf2\xeb\xaf\xb3\xff\x00\x5b\ \xfd\xb7\xbf\x78\xbf\x2e\xbd\xe0\x75\xef\xb3\xff\x00\x5b\xfd\xb7\ \xbf\x78\xbf\x2e\xbd\xe0\x75\xdf\xd9\x8f\xe8\x3f\xdb\x01\xfe\xf1\ \x6f\x7e\xf1\x0f\xa7\x5e\xf0\x3a\xf7\xd9\x8f\xe9\xfe\xf5\xff\x00\ \x14\xf7\xaf\x10\xfa\x75\xef\x03\xaf\x7d\x98\xfe\x9f\xef\x5f\xf1\ \x4f\x7b\xf1\x0f\xa7\x5e\xf0\x3e\xde\xbb\xfb\x41\xfd\x07\xfb\xc7\ \xfc\x53\xde\xbc\x43\xe9\xd7\xbc\x0f\xb7\xae\xbe\xcc\x7f\x41\xfe\ \xf1\xff\x00\x14\xf7\xbf\x10\xfa\x75\xef\x03\xed\xeb\xbf\xb3\x1f\ \x85\xff\x00\x7d\xfe\xdb\xde\xbc\x43\xd6\xfc\x0f\x97\x5e\xfb\x2f\ \xf6\x9f\xf7\x8f\xf8\xd7\xbf\x78\xbd\x7b\xc0\xf9\x75\xdf\xd9\x7f\ \xb4\xff\x00\xbc\x7f\xc6\xbd\xfb\xc5\xeb\xde\x07\xcb\xaf\x7d\x9f\ \xfb\x4f\xfb\xc7\xfc\x6b\xdf\xbc\x5e\xbd\xe0\xfc\xba\xf7\xd9\xff\ \x00\xb4\xff\x00\xbc\x7f\xc6\xbd\xfb\xc5\xeb\xde\x0f\xcb\xaf\x7d\ \x9f\xfb\x4f\xfb\xc0\xff\x00\x8a\x7b\xf7\x8b\xd6\xfc\x0f\x97\x5d\ \xfd\x99\x1f\x45\xff\x00\x7d\xfe\xdb\xfa\xfb\xd7\x8b\xd7\xbc\x0f\ \x97\x5e\xfb\x43\xfd\x0f\xfb\xef\xf6\x1e\xf7\xe2\xf5\xef\x03\xe5\ \xd7\xbe\xd1\xbf\xa1\xff\x00\x7d\xfe\xc3\xde\xbc\x5e\xbd\xe0\x7c\ \xba\xf7\xda\x1f\xe8\x7f\xdf\x7f\xb0\xf7\xef\x17\xaf\x78\x1f\x2e\ \xbb\xfb\x43\xfe\xfa\xff\x00\xf1\x4f\x7b\xf1\x7a\xf7\x81\xf2\xeb\ \xdf\x68\x7f\xa7\xfb\xef\xf6\xde\xfd\xe2\xfc\xfa\xf7\x81\xf2\xeb\ \xdf\x66\x7f\xa7\xfb\xef\xf6\xde\xfd\xe2\xfc\xfa\xf7\x81\xf2\xeb\ \xdf\x66\x7f\xc7\xfd\x80\xbf\xfc\x40\xf7\xef\x17\xaf\x78\x1f\x2e\ \xbd\xf6\x7f\xeb\xff\x00\xb6\xf7\xaf\x14\xfc\xba\xdf\x81\xf2\xeb\ \xdf\x67\xfe\xbf\xfb\x6f\x7e\xf1\x4f\xcb\xaf\x78\x1f\x2e\xbd\xf6\ \x7f\xeb\xff\x00\xb6\xf7\xef\x14\xfc\xba\xd7\x81\xf2\xeb\xdf\x67\ \xfe\xbf\xfb\x6f\x7e\xf1\x4f\xcb\xaf\x78\x1f\x2e\xbb\xfb\x3f\xf5\ \xff\x00\xdb\x7f\xc6\xbd\xfb\xc5\x3f\x2e\xb7\xe0\x0f\x4e\xbd\xf6\ \x7f\xeb\xff\x00\xb6\xff\x00\x8d\x7b\xf7\x8a\x7e\x5d\x7b\xc0\x1e\ \x9d\x7b\xec\xff\x00\xd7\xff\x00\x6d\xef\xde\x29\xf9\x75\xef\x00\ \x7a\x75\xef\xb4\xff\x00\x02\x7f\xd8\x7f\xc5\x2d\xef\xde\x21\xf9\ \x75\xef\x00\x7a\x75\xdf\xda\x7f\xb4\x9f\xf6\xc7\xdf\xbc\x53\xea\ \x3a\xf7\xd3\xff\x00\x47\xaf\x7d\xa7\xfb\x49\xff\x00\x6c\x7d\xfb\ \xc5\x3e\xa3\xad\xfd\x3f\xf4\x7a\xf7\xda\x7f\xb4\x9f\xf6\xc7\xde\ \xbc\x53\xea\x3a\xf7\xd3\xff\x00\x47\xaf\x7d\xa7\xfb\x49\xff\x00\ \x6c\x7d\xef\xc5\x3e\xa3\xaf\x7d\x3f\xf4\x7a\xf7\xda\x7f\xb4\xff\ \x00\xbc\x1f\x7a\xf1\x4f\xaf\x5e\xf0\x3f\xa3\xd7\x7f\x67\xfe\xd3\ \xfe\xfb\xfd\xbf\xbf\x78\xa7\xd7\xaf\x78\x1f\xd1\xeb\xdf\x67\xfe\ \x03\xfd\xf7\xfb\x1f\x7e\xf1\x4f\xaf\x5e\xf0\x3f\xa3\xd7\xbe\xcc\ \xff\x00\x4f\xf7\xdf\xed\xfd\xfb\xc5\xf9\xf5\xef\x03\xfa\x3d\x7b\ \xec\xcf\xf4\xff\x00\x7d\xfe\xdf\xdf\xbc\x5f\x9f\x5b\xf0\x4f\xa7\ \x5e\xfb\x33\xfd\x3f\xdf\x7f\xb7\xf7\xef\x17\xe7\xd7\xbc\x03\xe9\ \xd7\x7f\x66\x7f\xa7\xfb\xef\xf6\xfe\xfd\xe2\xfc\xfa\xf7\x80\x7d\ \x3a\xf7\xd9\x9f\xe9\xfe\xfb\xfd\xbf\xbf\x78\xbf\x3e\xbd\xe0\x1f\ \x4e\xbd\xf6\x7f\xe1\xfe\xfb\xfd\xbf\xbd\x78\xbf\x3e\xbd\xe0\x1e\ \xbd\xf6\x7f\xe0\x3f\xdf\x7f\xb1\xf7\xbf\x17\xe7\xd7\xbc\x03\xd7\ \xbe\xcf\xfd\xf7\xfb\xe3\xef\xde\x2f\xcf\xaf\x78\x1d\x7b\xec\xff\ \x00\xdf\x7f\xbe\x3e\xfd\xe2\xfc\xfa\xdf\x81\xd7\xbe\xcf\xfd\xf7\ \xfb\xe3\xef\xde\x2f\xcf\xaf\x78\x1d\x7b\xec\xc7\xe4\x7f\xbe\xff\ \x00\x6f\xef\xde\x2f\xcf\xaf\x78\x1d\x77\xf6\x63\xfa\x1f\x7a\xf1\ \x4f\xaf\x5a\xf0\x3a\xf7\xd9\x8f\xe8\x7f\xde\x3d\xfb\xc5\xf9\xf5\ \xbf\x03\xaf\x7d\x98\xfe\x87\xfd\xbf\xbf\x78\xa7\xd7\xaf\x78\x1d\ \x7b\xec\xc7\xf4\x3e\xfd\xe2\x9f\x5e\xbd\xe0\x75\xef\xb3\x1f\xea\ \x4f\xfb\x7f\x7e\xf1\x4f\xf1\x75\xef\x03\xe5\xd7\x7f\x66\x3f\xd4\ \x9f\x7e\xf1\x4f\xf1\x75\xbf\x03\xfa\x3d\x75\xf6\x63\xfd\x49\xf7\ \xef\x14\xff\x00\x17\x5e\xf0\x3f\xa3\xd7\x7f\x66\x3f\xd4\x9f\x7e\ \xf1\x4f\xf1\x75\xef\x03\xfa\x3d\x77\xf6\x9f\xed\x3f\xef\x03\xde\ \xbc\x4f\xe9\x75\xef\xa7\xf9\x75\xef\xb4\xff\x00\x69\x1f\xf2\x6f\ \xbf\x78\x9f\xd2\xeb\xdf\x4e\x7d\x3a\xf7\xda\x7f\xb4\xff\x00\xbd\ \x7b\xf7\x89\xfd\x2e\xbd\xf4\xe7\xf8\x7a\xf7\xda\x7f\xb4\xff\x00\ \xbd\x7b\xf7\x89\xfd\x2e\xbd\xf4\xe7\xf8\x7a\xf7\xda\x7f\xb4\xff\ \x00\xbd\x7b\xf7\x89\xfd\x2e\xbd\xe0\x1f\x4e\xbb\xfb\x3f\xf0\x1f\ \xef\xbf\xd8\x7b\xf7\x8b\xf3\xeb\x7e\x01\xf4\xeb\xff\xd6\x1e\xbe\ \xcb\xfc\x3f\xdf\x7f\xb7\xf7\xd5\xdf\x14\x7a\xf5\xf3\xaf\xf4\xff\ \x00\xd1\xeb\xbf\xb3\xff\x00\x0f\xf7\xdf\xed\xfd\xfb\xc5\x1e\xbd\ \x6f\xe9\xfe\x5d\x7b\xec\xff\x00\xc3\xfd\xf7\xfb\x7f\x7e\xf1\x47\ \xaf\x5e\xfa\x7f\x90\xeb\xdf\x65\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8a\ \x3d\x7a\xf7\x81\xf2\x1d\x7b\xec\xff\x00\xc0\x7f\xbe\xff\x00\x63\ \xef\xde\x28\xf5\x3d\x7b\xe9\xfe\x5d\x7b\xec\xff\x00\xc3\xfd\xf7\ \xfb\x7f\x7e\xf1\x47\xaf\x5e\xf0\x3e\x43\xaf\x7d\x9f\xf8\x7b\xf7\ \x8a\x3d\x7a\xf7\x80\x7d\x3a\xf7\xd9\xff\x00\x87\xfb\xef\xf6\xfe\ \xfd\xe2\x8f\x5e\xb7\xe0\x75\xef\xb3\xff\x00\x0f\xf7\xdf\xed\xfd\ \xfb\xc5\x1e\xbd\x7b\xc0\xeb\xdf\x67\xfe\xfb\xfd\xf1\xf7\xef\x14\ \x75\xef\x03\xae\xfe\xcb\xfd\xf7\xfb\xe3\xef\xde\x2f\x5e\xf0\x3e\ \x5d\x7b\xec\xbf\xc0\xff\x00\xbe\xff\x00\x63\xef\xde\x27\x5e\xfa\ \x73\xe9\xd7\x7f\x66\x3f\xd4\x9f\x7a\xf1\x3e\x7d\x7b\xe9\xcf\xa7\ \x5e\xfb\x31\xfe\xa4\xff\x00\xb7\xf7\xbf\x13\xaf\x7d\x3f\xcb\xaf\ \x7d\x98\xff\x00\x52\x7f\xdb\xfb\xf7\x88\x7d\x7a\xf7\xd3\x9f\x4e\ \xbd\xf6\x63\xfd\x49\xf7\xaf\x10\xfa\xf5\xef\xa7\x3e\x9d\x7b\xec\ \x87\xfa\x93\xfe\xdf\xdf\xbc\x5e\xbd\xf4\xe7\xd3\xaf\x7d\x90\xfe\ \x87\xfd\xb8\xf7\xef\x17\xad\xfd\x39\xf4\xeb\xbf\xb3\x1f\xea\x4f\ \xfb\x7f\xf8\xdf\xe7\xdf\xbc\x5e\xbd\xf4\xe7\xd3\xae\xbe\xcc\x7f\ \xa9\x3f\xed\xfd\xef\xc5\xeb\xdf\x4e\x7d\x3a\xf7\xd9\x0f\xf5\x27\ \xfd\xbf\xfc\x6f\xdf\xbc\x5e\xbd\xf4\xe7\xd3\xae\xfe\xc8\x7f\xa9\ \x3f\xed\xfd\xeb\xc5\xeb\xdf\x4f\xf2\xeb\xc2\x8c\x7f\xa9\xff\x00\ \x6f\xcf\xfc\x57\xdf\xbc\x5e\xbd\xf4\xe7\xd3\xae\xfe\xcc\x7f\x41\ \xfe\xfb\xfd\x87\xbf\x78\xbf\x6f\x5e\xfa\x73\xe9\xd7\xbe\xcc\x7f\ \x41\xfe\xfb\xfd\x87\xbf\x78\xbf\x6f\x5b\xfa\x73\xe9\xd7\xbe\xcc\ \x7f\x41\xfe\xfb\xfd\x87\xbf\x78\xbf\x23\xd6\xbe\x9c\xfa\x75\xef\ \xb3\x1f\xd0\x7f\xbe\xff\x00\x61\xef\xde\x2f\xc8\xf5\xef\xa7\x3e\ \x9d\x7b\xec\xc7\xf4\x1f\xef\xbf\xd8\x7b\xd7\x89\xf2\x3d\x6f\xc0\ \x3d\x77\xf6\x63\xfa\x7f\xbc\x7f\xc6\xbd\xfb\xc4\xf9\x75\xef\x03\ \xaf\x7d\x98\xfe\x9f\xef\x1f\xf1\xaf\x7e\xf1\x3e\x5d\x7b\xc0\x3d\ \x7b\xec\xc7\xf4\xff\x00\x78\xff\x00\x8d\x7b\xf7\x8b\xf2\xeb\xde\ \x01\xeb\xbf\xb2\xff\x00\x69\x3f\xed\xbf\xe3\x5e\xfd\xe2\x8e\xbd\ \xe0\x1e\xbd\xf6\x5f\xed\x3f\xef\x1f\xf1\xaf\x7e\xf1\x47\x5b\xf0\ \x0f\x5e\xfb\x2f\xf6\x93\xfe\xdb\xfe\x35\xef\xde\x28\xeb\xde\x07\ \x5e\xfb\x2f\xf6\x93\xfe\xdb\xfe\x35\xef\xde\x2f\x5e\xf0\x3e\x5d\ \x7b\xec\xbf\xda\x4f\xfb\x6f\xf8\xd7\xbf\x78\xa3\xaf\x78\x1f\x2e\ \xbd\xf6\x5f\xed\x27\xfd\xb7\xfc\x6b\xdf\xbc\x5e\xbd\xe0\x7c\xba\ \xef\xec\xbf\xda\x4f\xfb\xef\xf6\x1e\xfd\xe2\x75\xef\xa7\xf9\x75\ \xef\xb2\xff\x00\x68\xff\x00\x7b\xf7\xaf\x13\xe7\xd7\xbc\x0e\xbd\ \xf6\x5f\xed\x03\xfd\xe7\xdf\xbc\x4f\x9f\x5b\xfa\x7f\x97\x5e\xfb\ \x2f\xf6\x81\xfe\xf3\xef\xde\x27\xcf\xad\x7d\x3f\x5e\xfb\x2f\xf6\ \x8f\xf7\xbf\x7e\xf1\x3e\x7d\x7b\xe9\xfe\x5d\x7b\xec\xbf\xda\x07\ \xfb\xcf\xbf\x78\x9f\x3e\xb7\xf4\xfd\x7b\xec\x87\xfa\x81\xfe\xf3\ \xef\xde\x27\x5e\xfa\x7e\xbb\xfb\x2f\xf6\x81\xfe\xf3\xff\x00\x14\ \xf7\xef\x17\xaf\x7d\x3f\x5e\xfb\x3f\xf6\x81\xfe\xdb\xfe\x35\xef\ \xde\x2f\x5e\xfa\x7e\xbd\xf6\x7f\xed\x23\xfd\xe7\xfe\x29\xef\xde\ \x2f\x5e\xfa\x7e\xbd\xf6\x5f\xed\x03\xfd\xb1\xff\x00\x8a\x7b\xdf\ \x8b\xd7\xbc\x0e\xbd\xf6\x7f\xed\x20\x7f\xb0\x3f\xf1\x4f\x7a\xf1\ \x7a\xf7\xd3\xf5\xcb\xed\x3f\xc3\xfd\xe0\xff\x00\xc5\x7d\xfb\xc4\ \xf9\x75\xbf\x03\xaf\x7d\x9f\xf8\x1f\xf6\xc7\xfe\x2b\xef\xde\x21\ \xf4\xeb\xde\x07\x5e\xfb\x3f\xf0\x3f\xed\x8f\xfc\x57\xde\xbc\x5f\ \xb3\xaf\x7d\x39\xeb\xdf\x67\xfe\x07\xfd\xb1\xff\x00\x8a\xfb\xf7\ \x89\xf2\x1d\x7b\xe9\xcf\xa7\x5e\xfb\x3f\xf0\x3f\xed\x8f\xbf\x78\ \x9f\x2e\xbd\xf4\xe7\xd3\xaf\x7d\x9f\xfb\x49\xff\x00\x6c\x7d\xfb\ \xc5\xfb\x3a\xdf\xd3\xfc\xba\xf7\xd9\xff\x00\x81\xff\x00\x6c\x7d\ \xfb\xc4\xfb\x3a\xf7\xd3\xfc\xba\xf7\xd9\xff\x00\xb4\x9f\xf6\xde\ \xfd\xe2\x7d\x9d\x7b\xe9\xfe\x5d\x77\xf6\x5f\xe1\xfe\xf5\xff\x00\ \x15\xf7\xef\x17\xaf\x7d\x3f\xcb\xaf\x7d\x97\xf8\x7f\xbe\xff\x00\ \x6f\xef\xde\x2f\x5e\xfa\x7f\x97\x5e\xfb\x2f\xf0\xff\x00\x7d\xfe\ \xdf\xdf\xbc\x5e\xbd\xf4\xff\x00\x2e\xbb\xfb\x2f\xf6\x9f\xf7\xdf\ \xed\xfd\xfb\xc5\xeb\xdf\x4f\xf2\xeb\xdf\x65\xfe\xd3\xfd\x3f\x3f\ \xf1\xbf\x7a\xf1\x7a\xf7\xd3\xfc\xba\xf7\xd9\xff\x00\xb4\xff\x00\ \xbe\xff\x00\x6f\xef\x7e\x2f\x5e\xfa\x7f\x97\x5e\xfb\x2f\xf0\x1f\ \xef\xbf\xd8\xfb\xf7\x8b\xd6\xfe\x9f\xe5\xd7\xff\xd7\x34\xdf\x63\ \xfd\x47\xfc\x9b\xff\x00\x1a\x1e\xfa\x9b\xe3\x7c\xfa\xf9\xf3\xfa\ \x7f\x97\x5e\xfb\x21\xfd\x3f\xe4\xd1\xef\xde\x37\xcf\xaf\x7d\x3f\ \xcb\xaf\x7d\x90\xfe\x87\xfe\x49\xf7\xef\x1b\xe7\xd6\xfe\x9c\xfa\ \x75\xef\xb2\x1f\xd0\xff\x00\xc9\x3e\xfd\xe3\x7c\xfa\xf7\xd3\x9f\ \x4e\xbb\xfb\x2f\xf5\xff\x00\xe4\x9f\x7e\xf1\x7e\x7d\x6b\xe9\xcf\ \xa7\x5e\xfb\x23\xfe\x3f\xed\xbd\xeb\xc5\xf9\xf5\xbf\xa7\x3e\x9d\ \x77\xf6\x47\xfc\x7f\xde\x3f\xe2\xbe\xfd\xe2\xfc\xfa\xf7\xd3\xfc\ \xba\xf7\xd9\x1f\xf1\xff\x00\x78\xf7\xef\x17\xe7\xd7\xbe\x9f\xfa\ \x3d\x7b\xec\xbf\xd7\xff\x00\x78\xf7\xef\x17\xe7\xd7\xbe\x9f\xe5\ \xd7\xbe\xcb\xfd\x7f\xf7\x8f\x7e\xf1\x7e\x7d\x7b\xe9\xff\x00\xa3\ \xd7\xbe\xcb\xfd\x7f\xf7\x8f\x7e\xf1\x7e\x7d\x7b\xe9\xfe\x5d\x7b\ \xec\x8f\xf8\xff\x00\xbc\x7b\xf7\x8b\xf3\xeb\xdf\x4f\xfd\x1e\xbb\ \xfb\x2f\xf0\x27\xfd\xb7\xfc\x41\x1e\xfd\xe2\xfc\xfa\xf7\xd3\xff\ \x00\x47\xaf\x7d\x97\xf8\x7f\xbe\xff\x00\x6f\xef\x5e\x2f\xcf\xad\ \xfd\x3f\xcb\xaf\x7d\x97\xf8\x7f\xbd\xff\x00\xc5\x7d\xfb\xc5\xf9\ \xf5\xef\xa7\xf9\x75\xef\xb2\xff\x00\x0f\xf7\xdf\xed\xfd\xfb\xc5\ \xf9\xf5\xef\xa7\xf9\x75\xef\xb2\xff\x00\x0f\xf7\xbf\xf8\xaf\xbf\ \x78\xbf\x3e\xbd\xf4\xff\x00\x2e\xbd\xf6\x5f\xe1\xfe\xf7\xff\x00\ \x15\xf7\xef\x17\xe7\xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\ \xb7\xf7\xef\x17\xe7\xd7\xbe\x9f\xe5\xd7\x7f\x65\xfe\x1f\xef\x1f\ \xf1\xbf\x7e\xf1\x7e\x7d\x6f\xe9\xff\x00\xa3\xd7\xbe\xcb\xfc\x3f\ \xde\x3f\xe3\x7e\xfd\xe2\xfc\xfa\xf7\xd3\xfc\xba\xf7\xd9\x7f\x87\ \xfb\xc7\xfc\x6f\xdf\xbc\x5f\x9f\x5e\xfa\x7f\x97\xf2\xeb\xdf\x65\ \xfe\x1f\xef\x1f\xf1\xbf\x7e\xf1\x7e\x7d\x7b\xe9\xfe\x5f\xcb\xaf\ \x7d\x97\xf8\x7f\xbc\x7f\xc6\xfd\xfb\xc5\xf9\xf5\xef\xa7\xf9\x7f\ \x2e\xbd\xf6\x7f\xe1\xfe\xf1\xff\x00\x1b\xf7\xef\x17\xe7\xd7\xbe\ \x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb7\xf7\xaf\x17\xe7\xd6\xfe\ \x9c\xfa\x75\xd8\xa2\xff\x00\x0f\xf7\xdf\xed\xcf\xbf\x78\xbf\x3e\ \xbd\xf4\xe7\xd3\xae\xfe\xc8\x7f\x43\xfe\xdc\x7b\xf7\x8b\xf3\xeb\ \xdf\x4e\x7d\x3a\xf7\xd9\x0f\xe8\x7f\xdb\x8f\x7e\xf1\x7e\x7d\x7b\ \xe9\xcf\xa7\x5e\xfb\x31\xfd\x0f\xfb\x71\xef\xde\x2f\xcf\xaf\x7d\ \x39\xf4\xeb\xdf\x64\x3f\xa1\xff\x00\x6e\x3d\xfb\xc5\xf9\xf5\xef\ \xa7\x3e\x9d\x7b\xec\xc7\xf4\x3f\xed\xc7\xbf\x78\xbf\x3e\xbd\xf4\ \xe7\xd3\xae\xfe\xc8\x7f\xbe\x27\xfe\x29\xef\xde\x2f\xcf\xaf\x7d\ \x39\xf4\xeb\xdf\x64\x3f\xa7\xfb\xc9\xff\x00\x8a\x7b\xf7\x8b\xd6\ \xfe\x9f\xe5\xd7\xbe\xc8\x7f\xbe\x27\xfe\x29\xef\xde\x2f\xcf\xaf\ \x7d\x39\xf4\xeb\xdf\x64\x3f\xa7\xfb\xc9\xff\x00\x8a\x7b\xf7\x8b\ \xd7\xbe\x9c\xfa\x75\xef\xb2\x1f\xef\x89\xff\x00\x8a\x7b\xf7\x8b\ \xf3\xeb\xdf\x4e\x7d\x3a\xf7\xd9\x0f\xf7\xc4\xff\x00\xc5\x3d\xfb\ \xc5\xf9\xf5\xef\xa7\xf9\x75\xdf\xd9\x0b\xf0\x3f\xd8\x72\x7f\xe2\ \x3d\xeb\xc5\xf9\xf5\xef\xa7\x3e\x9d\x77\xf6\x5f\xed\x3f\xf2\x6f\ \xfc\x6b\xdf\xbc\x5f\x9f\x5e\xfa\x7f\x97\x5e\xfb\x2f\xf6\x9f\xf9\ \x37\xfe\x35\xef\xde\x2f\xcc\xf5\xef\xa7\xf9\x75\xef\xb2\xff\x00\ \x69\xff\x00\x93\x7f\xe3\x5e\xfd\xe2\xfc\xcf\x5e\xfa\x7f\x97\x5e\ \xfb\x1f\xf6\x9f\xf9\x37\xfe\x35\xef\xde\x2f\xcf\xaf\x7d\x3f\xcb\ \xaf\x7d\x8f\xfb\x4f\xfc\x9b\xff\x00\x1a\xf7\xef\x17\xe7\xd7\xbe\ \x9f\xe5\xd7\xbe\xcb\xfd\xa7\xfd\xe3\xfe\x35\xef\xde\x2f\x5e\xfa\ \x7f\x97\x5d\xfd\x91\xfe\x87\xfd\xb7\xfc\x6b\xdf\xbc\x5e\xad\xf4\ \xfd\x7b\xec\xbf\xda\x4f\xfb\x6f\xf8\xd7\xbd\x78\xbf\x3e\xbd\xf4\ \xfd\x7b\xec\xbf\xda\x7f\xde\x07\xfc\x53\xdf\xbc\x5f\x9f\x5e\xfa\ \x7e\xbd\xf6\x5f\xed\x27\xfd\xb0\xff\x00\x8a\x7b\xf7\x8b\xd7\xbe\ \x9c\xfa\x75\xef\xb2\xff\x00\x03\xfe\xfb\xfd\x87\xbf\x78\xbd\x7b\ \xe9\xfe\x5d\x7b\xec\xbf\xda\x4f\xfb\x6f\xf8\xd7\xbf\x78\xbd\x7b\ \xe9\xfe\x5d\x7b\xec\xbf\xda\x4f\xfb\xef\xf6\x1e\xfd\xe2\xfc\xfa\ \xf7\xd3\xf5\xdf\xd9\x7f\xb4\xff\x00\xbc\x7f\xc5\x07\xbf\x78\xbf\ \x6f\x5e\xfa\x7e\xbd\xf6\x43\xfd\x40\xff\x00\x79\xf7\xef\x17\xaf\ \x7d\x3f\x5e\xfb\x21\xfe\xa0\x7f\xbc\xff\x00\xc5\x3d\xfb\xc5\xeb\ \xdf\x4f\xd7\xbe\xc8\x7f\xa8\x1f\xef\x3e\xfd\xe2\xf5\xef\xa7\xeb\ \xdf\x64\x3f\xd4\x0f\xf7\x9f\xf8\xa7\xbf\x78\xbf\x6f\x5e\xfa\x7e\ \xbb\xfb\x2f\xf6\x81\xfe\xf3\xef\xde\x2f\x5e\xfa\x7e\xbd\xf6\x23\ \xfd\x4f\xfb\xc1\xf7\xef\x17\xad\xfd\x37\x5d\xfd\x90\xff\x00\x53\ \xff\x00\x26\xfb\xd7\x8b\xd7\xbe\x9c\xf5\xef\xb2\x1f\xea\x7f\xe4\ \xdf\x7b\xf1\x7a\xf7\xd3\x9e\xbd\xf6\x43\xfd\x4f\xfc\x9a\x7d\xfb\ \xc5\xeb\xdf\x4e\x7d\x3a\xf7\xd9\x0f\xf5\x3f\xf2\x69\xf7\xaf\x17\ \xaf\x7d\x39\xeb\xdf\x64\x3f\xd4\xff\x00\xc9\xbe\xfd\xe2\xf5\xef\ \xa7\x3d\x7f\xff\xd0\x3a\x9f\x65\xfe\xd0\x3f\xdb\x1f\xf8\xa7\xbe\ \x9d\xf8\xbf\x3e\xb8\x21\xf4\xc7\xd3\xaf\x7d\x97\xfb\x40\xff\x00\ \x6c\x7f\xe2\x9e\xfd\xe2\xfc\xfa\xf7\xd3\x1e\xbd\xf6\x5f\xed\x03\ \xfd\xe7\xfe\x29\xef\xde\x2f\xcf\xaf\x7d\x31\xf4\xeb\xbf\xb1\x1f\ \xea\x7f\xde\x0f\xfc\x57\xde\xbc\x53\xea\x3a\xf7\xd3\x75\xef\xb2\ \x1f\xea\x7f\xe4\xd3\xff\x00\x15\xf7\xef\x14\xfa\x8e\xbd\xf4\xdf\ \x2e\xbd\xf6\x43\xfd\x4f\xfc\x9b\xef\xde\x29\xf5\xeb\x7f\x4e\x7d\ \x3a\xf7\xd9\x0f\xf5\x3f\xf2\x6f\xbf\x78\xa7\xd4\x75\xaf\xa7\x3e\ \x9d\x77\xf6\x23\xfd\x48\xff\x00\x6c\x3f\xe2\xbe\xfd\xe2\xfc\xfa\ \xdf\xd3\x9f\x4e\xbd\xf6\x23\xfd\x48\xff\x00\x6c\x3f\xe2\xbe\xfd\ \xe2\xfc\xfa\xf7\xd3\x9f\x4e\xbd\xf6\x23\xfd\x48\xff\x00\x6c\x3f\ \xe2\xbe\xfd\xe2\xfc\xfa\xf7\xd3\x9f\x4e\xbd\xf6\x23\xfd\x48\xff\ \x00\x78\xff\x00\x8a\xfb\xf7\x8b\xf3\xeb\xdf\x4e\x7d\x3a\xf7\xd8\ \x8f\xf5\x23\xfd\xe3\xfe\x2b\xef\xde\x29\xf5\xeb\xdf\x4f\xf2\xeb\ \xb1\x45\xfd\x07\xfb\xef\xf6\xfe\xf5\xe2\xfc\xfa\xf7\xd3\xfc\xba\ \xef\xec\xbf\xc3\xfd\xe4\x7f\xc5\x7d\xef\xc5\xf9\xf5\xef\xa7\xf9\ \x75\xef\xb2\xff\x00\x0f\xf7\xdf\xed\xfd\xeb\xc5\x3e\xbd\x7b\xe9\ \xfe\x5d\x7b\xec\xbd\xfb\xc5\x3d\x6f\xe9\xfa\xf7\xd9\x7f\x87\xbf\ \x78\xa7\xd7\xaf\x7d\x3f\xcb\xae\xfe\xc4\xff\x00\xa9\xff\x00\x7b\ \xff\x00\x8a\xfb\xf7\x8d\xf3\xeb\xdf\x4f\xf2\xeb\xdf\x62\x7f\xd4\ \xff\x00\xbd\xff\x00\xc5\x7d\xfb\xc6\xf9\xf5\xef\xa7\xf9\x75\xef\ \xb1\x3f\xea\x7f\xde\xff\x00\xe2\xbe\xfd\xe3\x7c\xfa\xf7\xd3\xfc\ \xba\xf7\xd8\x9f\xf5\x3f\xef\x7f\xf1\x5f\x7e\xf1\xbe\x7d\x7b\xe9\ \xfe\x5d\x7b\xec\x4f\xfa\x93\xfe\xf3\xff\x00\x15\xf7\xef\x1b\xe7\ \xd7\xbe\x9f\xe5\xd7\x7f\x62\x7f\xd4\x9f\xf6\xc7\xfe\x2b\xef\xde\ \x37\xf4\xba\xf7\xd3\x0f\x4e\xba\xfb\x13\xfe\xa4\xff\x00\xb6\x3f\ \xf1\x5f\x7e\xf1\xbf\xa5\xd6\xfe\x9c\x7a\x75\xdf\xd9\x1f\xf5\x3f\ \xf2\x6f\xbd\x78\xa3\xf8\xba\xf7\xd3\x8f\x4e\xbd\xf6\x47\xfd\x4f\ \xfc\x9b\xff\x00\x1b\xf7\xef\x14\x7f\x17\x5e\xfa\x71\xe9\xd7\x7f\ \x64\x7f\xd4\xff\x00\xc9\xa3\xfe\x2b\xef\xde\x2f\xf4\xba\xf7\xd3\ \x7c\xba\xeb\xec\x8f\xfa\x9f\xf9\x34\x7f\xc5\x7d\xfb\xc6\x1f\xc5\ \xd7\xbe\x98\x7a\x75\xdf\xd8\x9f\xf5\x3f\xf2\x68\xff\x00\x8a\xfb\ \xf7\x8c\x3f\x8b\xaf\x7d\x30\xf4\xeb\xdf\x65\xfe\xd3\xfe\xf0\x07\ \xbf\x78\xbf\xd2\xeb\xdf\x4c\x3d\x3a\xf7\xd9\x7f\xb4\x9f\xf6\xc3\ \xdf\xbc\x5f\xe9\x75\xef\xa6\x1e\x9d\x77\xf6\x5f\xed\x27\xfd\xe3\ \xdf\xbc\x5f\xe9\x75\xbf\xa7\xeb\xdf\x64\x7f\xd4\x9f\xf7\x8f\x7e\ \xf1\x7f\xa5\xd7\xbe\x9f\xaf\x7d\x97\xf8\x5b\xfd\xf7\xfa\xc7\xde\ \xbc\x5f\xe9\x75\xef\xa7\xeb\xbf\xb2\xff\x00\x0f\xf7\x8f\xf8\xd7\ \xbf\x78\xbf\x3e\xbd\xf4\xfd\x7b\xec\xbf\xc3\xfd\xf7\xfb\x6f\x7e\ \xf1\x7e\x7d\x7b\xe9\xfa\xf7\xd8\xff\x00\x87\xfb\xc7\xfc\x6b\xdf\ \xbc\x6f\x9f\x5e\xfa\x63\xe9\xd7\x7f\x63\xfe\xd3\xfe\xf0\x7f\xe2\ \x9e\xfd\xe3\x7f\x4b\xad\xfd\x3f\xcb\xae\xbe\xc7\xfd\xa7\xfd\xe3\ \xfe\x35\xef\xde\x37\xf4\xba\xf7\xd3\x7c\xba\xf7\xd8\xff\x00\xb4\ \xff\x00\xbc\x1f\xf8\xa7\xbf\x78\xdf\xd2\xeb\xdf\x4f\xf2\xeb\xdf\ \x63\xfe\xd3\xfe\xf0\x7f\xe2\x9e\xfd\xe3\x7f\x4b\xaf\x7d\x37\xcb\ \xaf\x7d\x8f\xf8\x7f\xbc\x7f\xc6\xbd\xfb\xc6\xfe\x97\x5e\xfa\x6f\ \x97\x5d\xfd\x97\xfb\x4f\xfb\xc7\xfc\x6b\xdf\xbc\x6f\x9f\x5e\xfa\ \x6f\x97\x5e\xfb\x1f\xf0\x1f\xed\x80\xff\x00\x88\xf7\xaf\x1b\xfa\ \x5d\x6f\xe9\xfe\x5d\x77\xf6\x27\xfa\x0f\xf7\x8f\x7e\xf1\xbf\xa5\ \xd7\xbe\x9f\xe5\xd7\xbe\xc3\xfc\x07\xfb\xc7\xfc\x53\xdf\xbc\x6f\ \x9f\x5e\xfa\x7f\x97\x5e\xfb\x1f\xf0\x1f\xed\x87\xbf\x78\xdf\x3e\ \xbd\xf4\xff\x00\x2e\xbd\xf6\x27\xfa\x0f\xf7\x8f\x7e\xf1\xbe\x7d\ \x7b\xe9\xfe\x5d\x7b\xec\x7f\xda\x7f\xde\xbf\xe2\x9e\xfd\xe3\x0f\ \x5e\xbd\xf4\xff\x00\x2e\xbd\xf6\x3f\xed\x23\xfd\xe3\xfe\x29\xef\ \x7e\x30\xf5\xeb\xdf\x4e\x3d\x3a\xef\xec\x8f\xf4\xb7\xfb\x11\xff\ \x00\x14\xf7\xaf\x18\x7a\xf5\xef\xa7\xf9\x75\xef\xb2\x3f\xd0\xff\ \x00\xb7\x1f\xf1\x4f\x7e\xf1\x87\xaf\x5e\xfa\x7f\x97\x5e\xfb\x23\ \xfe\xf8\x8f\xf8\xa7\xbf\x78\xc3\xad\xfd\x38\xf4\xeb\xdf\x64\x7f\ \xdf\x11\xff\x00\x14\xf7\xef\x18\x75\xef\xa7\x1d\x7b\xec\x8f\xfb\ \xe3\xff\x00\x1a\xf7\xef\x18\x75\xef\xa7\xeb\xbf\xb2\x3f\xd3\xfd\ \xf7\xfb\x00\x3d\xfb\xc5\x1f\x3e\xbd\xf4\xdf\x2e\xbd\xf6\x47\xfd\ \x4f\xfb\xc9\xf7\xef\x14\x7a\x9e\xb7\xf4\xdf\x2e\xbb\xfb\x23\xfe\ \xa7\xfd\xe4\xfb\xf7\x8b\xf3\x3d\x6b\xe9\xbe\x5d\x7b\xec\x8f\xfa\ \x9f\xf7\xbf\x7a\xf1\x47\xa9\xeb\xdf\x4d\xf2\xeb\xdf\x65\xfe\xd3\ \xfe\xf7\xef\xde\x2f\xcc\xf5\xef\xa6\xf9\x75\xdf\xd9\x7f\x81\xff\ \x00\x7d\xfe\xc7\xdf\xbc\x5e\xbd\xf4\xdf\x2e\xba\xfb\x2f\xf0\x3f\ \xef\xbf\xd8\xfb\xf7\x8b\xd6\xfe\x9b\xe5\xd7\x7f\x65\xfe\x1f\xef\ \xbf\xdb\xfb\xf7\x8b\xf6\xf5\xef\xa6\xf9\x75\xef\xb2\xff\x00\x0f\ \xf7\x81\xff\x00\x15\xf7\xef\x17\xed\xeb\xdf\x4d\xf2\xeb\xff\xd1\ \xb0\x5f\xb1\xff\x00\x0f\xf7\xdf\xed\xfd\xf4\x9f\xc5\xeb\x85\xbf\ \x4d\xf2\xeb\xdf\x63\xfe\x1f\xef\xbf\xe4\xaf\x7e\xf1\x7a\xf7\xd3\ \x7c\xba\xf7\xd8\xdb\xfb\x3f\xef\xbf\xdb\xfb\xf7\x8b\xd7\xbe\x9b\ \xe5\xd7\xbe\xcb\xfc\x3f\xde\xbf\xe2\xbe\xf7\xe2\xf5\xbf\xa6\xf9\ \x75\xdf\xd9\x7f\x87\xfb\xd7\xfc\x57\xde\xbc\x5e\xbd\xf4\xdf\x2e\ \xbd\xf6\x5f\xed\x3f\xef\x5f\xf1\x5f\x7e\xf1\x7a\xf7\xd3\x7c\xba\ \xf7\xd9\x7f\xb4\xff\x00\xbd\x7f\xc5\x7d\xfb\xc5\xeb\xdf\x4d\xf2\ \xeb\xdf\x63\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8b\xd7\xbe\x9b\xe5\xd7\ \x7f\x62\x3f\xc3\xfd\xe7\xdf\xbc\x5e\xbd\xf4\xc3\xd3\xaf\x7d\x88\ \xff\x00\x0f\xf7\x9f\x7e\xf1\x7a\xf7\xd3\x7c\xba\xef\xec\x4f\xe3\ \xfd\xe2\xfe\xfd\xe2\xf5\xbf\xa7\xf9\x75\xef\xb0\x3f\xd3\xfd\xe0\ \xfb\xf7\x8b\xf6\x75\xef\xa7\xf9\x75\xef\xb0\x3f\xd3\xfd\xe0\xff\ \x00\xc5\x3d\xfb\xc6\x1f\x2e\xbd\xf4\xff\x00\x2e\xbd\xf6\x07\xfa\ \x7f\xbc\x1f\x7e\xf1\xbe\xce\xbd\xf4\xff\x00\x2e\xbd\xf6\x27\xfa\ \x7f\xbc\x37\xbd\x78\xbf\x67\x5e\xfa\x7f\x97\x5d\xfd\x87\xf8\x7f\ \xbc\x1f\x7e\xf1\xbe\xce\xb7\xf4\xe3\xd3\xaf\x7d\x87\xf8\x7f\xbc\ \x1f\x7e\xf1\xbe\xce\xbd\xf4\xff\x00\x2e\xbd\xf6\x1f\xe1\xfe\xf0\ \x7f\xe2\xbe\xfd\xe3\x7d\x9d\x7b\xe9\xfe\x5d\x7b\xec\x0f\xf4\xff\ \x00\x78\x3e\xfd\xe3\x75\xef\xa6\xf9\x75\xef\xb0\xff\x00\x0f\xf7\ \x83\xef\xde\x37\x5e\xfa\x6f\x97\x5e\xfb\x0f\xf0\xff\x00\x7b\xff\ \x00\x8a\xfb\xf7\x8d\xd7\xbe\x9b\xe5\xd7\x7f\x62\x47\xe0\x7f\xb6\ \xf7\xef\x17\xaf\x7d\x3f\xcb\xaf\x7d\x89\xfe\x83\xfe\x49\xf7\xef\ \x14\x75\xef\xa7\xf9\x75\xef\xb1\x3f\xd0\x7f\xb6\xf7\xef\x17\xaf\ \x7d\x3f\xcb\xae\xfe\xc7\xfd\xa7\xfd\xe0\x7f\xc5\x3d\xeb\xc5\xf9\ \x8e\xbd\xf4\xff\x00\x2e\xbd\xf6\x3f\xed\x3f\xef\x1f\xf1\xaf\x7e\ \xf1\x7e\x7d\x7b\xe9\xfe\x5d\x7b\xec\x7f\xda\x7f\xde\x3f\xe3\x5e\ \xfd\xe2\xfc\xfa\xdf\xd3\x0f\x4e\xbd\xf6\x3f\xed\x3f\xef\x1f\xf4\ \x8f\xbf\x78\xbd\x7b\xe9\x87\x5d\xfd\x8f\xfb\x4f\xfb\xc7\xfc\x6b\ \xdf\xbc\x6f\x9f\x5e\xfa\x6f\x97\x5e\xfb\x13\xfd\x3f\xde\x3f\xe9\ \x1f\x7e\xf1\xbe\x7d\x6f\xe9\x8f\xa7\x5e\xfb\x13\xfd\x3f\xde\x3f\ \xe9\x1f\x7e\xf1\xbe\x7d\x7b\xe9\x8f\xa7\x5e\xfb\x1f\xf6\x9f\xf7\ \x8f\xf8\xd7\xbf\x78\xc7\xd7\xaf\x7d\x37\xcb\xaf\x7d\x8f\xfb\x4f\ \xfb\xc1\xff\x00\x8a\x7b\xf7\x8c\x7d\x7a\xf7\xd3\xfc\xba\xf7\xd8\ \xff\x00\xb4\xff\x00\xbc\x1f\xf8\xa7\xbf\x78\xc7\xd7\xaf\x7d\x3f\ \xcb\xae\xfe\xc4\x7f\x43\xff\x00\x24\xfb\xf7\x8d\xf3\xeb\xdf\x4f\ \xf2\xeb\xdf\x62\x3f\xa1\xff\x00\x92\x7d\xfb\xc6\xf9\xf5\xef\xa7\ \xf9\x75\xef\xb1\x1f\xd0\xff\x00\xb6\xb7\xfb\xdf\xbf\x78\xdf\x3e\ \xbd\xf4\xdf\x2e\xbb\xfb\x0f\xf0\xff\x00\x78\x1f\xf1\x5f\x7a\xf1\ \xbe\x7d\x7b\xe9\xfe\x5d\x7b\xec\x3f\xc3\xfd\xe0\x7f\xc5\x7d\xfb\ \xc6\xf9\xf5\xef\xa6\xf9\x75\xef\xb0\xff\x00\x0f\xf7\x81\xff\x00\ \x15\xf7\xef\x1b\xe7\xd7\xbe\x9b\xe5\xd7\xbe\xc3\xfc\x3f\xde\x07\ \xbf\x78\xdf\x3e\xb7\xf4\xff\x00\x2e\xbd\xf6\x23\xfa\x7f\xbc\x2f\ \xbf\x78\xdf\x3e\xbd\xf4\xff\x00\xd1\xeb\xdf\x62\x3f\xa7\xfb\xc0\ \xf7\xef\x1b\xe7\xd7\xbe\x9f\xfa\x3d\x77\xf6\x23\xfa\x7f\xbc\x2f\ \xbf\x78\xdf\x3e\xbd\xf4\xff\x00\xd1\xeb\xdf\x60\x3f\xa7\xfb\xc0\ \xf7\xef\x18\xfa\xf5\xbf\xa7\xf9\x75\xef\xb0\x1f\xd3\xfd\xe0\x7b\ \xf7\x8d\xf3\xeb\xdf\x4d\xf2\xeb\xdf\x61\xfe\x1f\xef\x03\xdf\xbc\ \x6f\x9f\x5e\xfa\x6f\xe8\xf5\xdf\xd8\x7f\x4e\x3f\xd8\x0f\x7a\xf1\ \xbe\x7d\x7b\xe9\xbf\xa3\xd7\xbe\xc4\xff\x00\x8f\xfb\xc7\xbf\x78\ \xdf\x3e\xbd\xf4\xdf\xd1\xeb\xdf\x62\x7f\xc7\xfd\xe3\xdf\xbc\x6f\ \x9f\x5e\xfa\x6f\xe8\xf5\xdf\xd9\x7f\x87\xfb\xef\xf6\xfe\xfd\xe2\ \xfc\xfa\xf7\xd3\x7f\x47\xaf\x7d\x97\xf8\x7f\xbd\xff\x00\xc5\x7d\ \xfb\xc5\xf9\xf5\xef\xa6\xfe\x8f\x5e\xfb\x2f\xf0\xff\x00\x7b\xff\ \x00\x8a\xfb\xf7\x8b\xf3\xeb\x7f\x4d\xfd\x1e\xbd\xf6\x5f\xe1\xfe\ \xfb\xfd\xbf\xbf\x78\xbf\x3e\xbd\xf4\xdf\x2e\xbd\xf6\x3f\xe1\xfe\ \xfb\xfe\x4a\xf7\xaf\x1b\xe7\xd7\xbe\x9b\xe5\xd7\xbe\xc7\xfc\x3f\ \xdf\x7f\xc9\x5e\xfd\xe3\x7c\xfa\xf7\xd2\xfc\xba\xf7\xd8\xff\x00\ \x87\xfb\xef\xf9\x2b\xdf\xbc\x6f\x9f\x5e\xfa\x6f\x97\x5d\xfd\x97\ \xf8\x7f\xbe\xff\x00\x6f\xef\xde\x2f\xcf\xad\xfd\x37\xcb\xaf\x7d\ \x97\xf8\x7f\xbe\xff\x00\x6f\xef\xde\x2f\xcf\xaf\x7d\x37\xcb\xaf\ \x7d\x97\xf8\x7f\xbc\x7f\xc6\xfd\xfb\xc6\xf9\xf5\xef\xa6\xf9\x75\ \xdf\xd9\x0f\xf5\x3f\xef\x5f\xeb\x7b\xf7\x8b\xf3\xeb\xdf\x4d\xf2\ \xeb\xdf\x64\x3f\xd4\x9f\xf6\xe3\xdf\xbc\x5f\x9f\x5e\xfa\x6f\x97\ \x5e\xfb\x21\xfe\xa7\xfd\xe4\x7b\xf7\x8d\xf3\xeb\xdf\x4d\xf2\xeb\ \xbf\xb1\x5f\xe9\xfe\xfb\xfd\xb7\xbf\x78\xdf\x3e\xbd\xf4\xdf\x2e\ \xbf\xff\xd2\xb3\x7f\xb0\xff\x00\x69\x3f\xef\x3f\xf1\x4f\x7d\x13\ \xf1\xbe\x7d\x71\x2f\xe9\xbe\x5d\x7b\xec\x3f\xda\x4f\xfb\xcf\xfc\ \x53\xdf\xbc\x6f\x9f\x5b\xfa\x6f\x97\x5e\xfb\x0f\xf0\x3f\xef\x3f\ \xf1\x4f\x7e\xf1\xba\xf7\xd3\x9f\x4e\xbb\xfb\x1f\xf6\x93\xff\x00\ \x27\x7f\xc5\x3d\xfb\xc6\xeb\xdf\x4e\x7d\x3a\xf7\xd8\xff\x00\xb4\ \x9f\xf7\x9f\x7e\xf1\xba\xdf\xd3\xfc\xba\x5b\x6d\x1e\xb4\xcb\x6f\ \x38\xeb\xa4\xc5\xd4\x63\x29\xc6\x3d\xe9\xd2\x61\x90\x9a\xae\x26\ \x63\x50\xb2\xb2\x78\x85\x3d\x15\x50\x60\x04\x46\xf7\xd3\xf8\xfa\ \xfb\xc1\xaf\xbd\xff\x00\xf7\x82\xfb\x39\xf7\x2a\xdc\xb9\x17\x6b\ \xf7\x4f\x96\xb9\x9b\x70\xb8\xe6\x08\x2e\xa5\xb7\x3b\x55\xbd\x8c\ \xea\x8b\x68\xd0\x24\x82\x63\x79\xb8\xd8\x95\x66\x33\xa6\x80\x82\ \x40\x40\x6d\x45\x68\x01\xc8\x4f\x64\x7e\xec\x7c\xf3\xef\xdd\xaf\ \x30\xde\x72\x7e\xeb\xb4\xdb\x45\xb6\x49\x0a\x4a\x2f\x24\xb8\x8c\ \xb1\x98\x48\xcb\xe1\xf8\x16\xb7\x00\x80\x23\x6d\x5a\x8a\xd2\xa2\ \x80\xe6\x8b\x1f\xf6\x5f\xb7\x5f\xfc\xec\x76\xdf\xfe\x76\x65\x3f\ \xfa\xcf\xef\x0d\xbf\xe4\xfc\xbf\x74\x4f\xfc\x27\x3e\xe4\x7f\xdc\ \xbf\x65\xff\x00\xcb\x83\xa9\xd3\xfe\x4d\xc5\xef\x5f\xfd\x35\x3c\ \xab\xff\x00\x65\x37\xff\x00\xf7\xad\xeb\xdf\xec\xbf\x6e\xbf\xf9\ \xd8\xed\xbf\xfc\xec\xca\x7f\xf5\xa3\xdf\xbf\xe4\xfc\xbf\x74\x4f\ \xfc\x27\x3e\xe4\x7f\xdc\xbf\x65\xff\x00\xcb\x83\xaf\x7f\xc9\xb8\ \xbd\xeb\xff\x00\xa6\xa7\x95\x7f\xec\xa6\xff\x00\xfe\xf5\xbd\x7b\ \xfd\x97\xdd\xd7\xff\x00\x3b\x1d\xb9\xff\x00\x9d\x99\x4f\xfe\xb3\ \xfb\xf7\xfc\x9f\x9b\xee\x89\xff\x00\x84\xe7\xdc\x8f\xfb\x97\xec\ \xbf\xf9\x70\x75\xef\xf9\x37\x17\xbd\x7f\xf4\xd4\xf2\xaf\xfd\x94\ \xdf\xff\x00\xde\xb7\xaf\x7f\xb2\xfd\xba\xff\x00\xe7\x63\xb6\xff\ \x00\xf3\xb3\x29\xff\x00\xd6\x7f\x7e\xff\x00\x93\xf2\xfd\xd1\x3f\ \xf0\x9c\xfb\x91\xff\x00\x72\xfd\x97\xff\x00\x2e\x0e\xbd\xff\x00\ \x26\xe2\xf7\xaf\xfe\x9a\x9e\x55\xff\x00\xb2\x9b\xff\x00\xfb\xd6\ \xf5\xef\xf6\x5f\x77\x5f\xfc\xec\x76\xe7\xfe\x76\x65\x3f\xfa\xd1\ \xef\xdf\xf2\x7e\x6f\xba\x27\xfe\x13\x9f\x72\x3f\xee\x5f\xb2\xff\ \x00\xe5\xc1\xd7\xbf\xe4\xdc\x5e\xf5\xff\x00\xd3\x53\xca\xbf\xf6\ \x53\x7f\xff\x00\x7a\xde\x82\x2d\xcb\x88\x8b\x6a\x6e\x4a\xad\xad\ \x91\xad\xa2\x9b\x2b\x47\x1d\x2c\xb3\x2d\x1c\xb2\xc9\x16\x9a\xca\ \x78\xea\x61\xd2\x67\x86\x9e\x52\x7c\x52\x8b\xdd\x07\x3f\x4b\xfb\ \xe9\x97\xdd\xaf\xef\x23\xc8\xff\x00\x7a\x5f\x69\x76\x2f\x78\xfd\ \xbf\xdb\x77\x4b\x3e\x59\xdc\x27\xb9\x8a\x38\xb7\x18\xe0\x8a\xed\ \x5a\xd6\xe2\x4b\x79\x0b\xa5\xb5\xcd\xdc\x41\x59\xe3\x62\x9a\x67\ \x62\x50\x82\xc1\x4d\x54\x62\x9f\xba\xbe\xd0\xf3\x1f\xb4\x1c\xe3\ \xb8\x72\x4f\x32\xdc\x5a\x4f\xb9\xdb\x47\x13\xb4\x96\xad\x23\xc2\ \x44\xd1\xac\xab\xa5\xa5\x8a\x17\x24\x2b\x00\xd5\x8c\x51\x81\xa1\ \x23\x24\x41\xdc\x58\x1d\xb7\x5f\xd3\x15\x9b\xd3\x69\x51\xa2\x66\ \xb6\x64\x75\x55\x9b\x9a\x06\x9d\xe6\x9e\xa6\x3a\x0a\x78\xe6\xcd\ \x46\xe6\x56\xd2\xaf\x1d\x0e\x8a\xca\x65\x51\x6f\x1d\xe3\x00\xbb\ \x93\xef\x95\xf0\xfd\xf3\x3e\xf0\x5f\x77\x6f\xef\x2c\xe6\x1f\x63\ \x7e\xf2\x1c\xd0\x77\x2f\x65\xf9\xc4\xc1\x16\xc0\xe9\x6d\x0d\xbc\ \x36\x50\xdc\xcd\x27\xee\x99\xe2\x11\x28\x67\xa4\xe6\x7d\xab\x73\ \x92\x56\x67\x92\x74\x5b\xa2\xeb\x05\xb4\x51\x9c\xc7\x5f\xbb\xff\ \x00\xb6\x5e\xe9\xfd\xd5\xf6\x7e\x7d\xf6\xb7\x66\xfa\x3e\x7d\xd9\ \x7c\x46\xdc\x43\x4b\x24\xaf\x71\x24\x48\xbf\x59\x1b\x97\x6a\x0a\ \xa0\x8e\xee\xd1\x50\x05\x48\xd8\xc2\x14\xc9\x2b\xb7\x41\x3f\x5c\ \x4b\x8d\xec\x19\xf0\x91\xd2\x55\x2a\x53\xe5\xeb\x29\x69\x4d\x44\ \x4a\xb2\x98\x85\x4c\x8a\x9e\x40\x84\xa8\x62\xba\xb8\x17\x17\xf7\ \xd6\x5f\x7e\x3d\xdc\x97\xd9\xcf\x63\x7d\xd3\xf7\x82\xcb\x68\x4d\ \xc6\xe3\x97\x36\x2b\xbd\xc1\x6d\x9a\x53\x12\xce\x6d\xa2\x69\x44\ \x4d\x2a\xac\x86\x30\xfa\x68\x58\x23\x11\x5a\xe9\x3d\x61\x87\x21\ \x7b\x7b\xfd\x72\xf7\x1b\x94\x39\x16\xee\xed\xad\x53\x73\xdc\x61\ \xb6\x69\x42\x07\x31\x89\x5c\x21\x70\x85\x94\x31\x5a\xd6\x85\x85\ \x7d\x47\x43\x4e\xe1\xd8\xdd\x4d\xb4\x6b\xbf\x85\xee\xbe\xe9\xd9\ \xfb\x63\x27\xe2\x8e\x7f\xe1\xdb\x87\x31\xb6\xf0\xb5\xde\x19\xae\ \x62\x9b\xec\xf2\x59\xda\x6a\x8f\x14\xa0\x1d\x2d\xa6\xcd\xf8\xf7\ \xc5\xfe\x4e\xfe\xf8\x4f\xbd\x4f\xb8\x9b\x24\x7c\xcb\xc8\x1f\xdd\ \xf3\xbe\x6f\xbc\xb8\xf2\x3c\x6b\x75\xb7\xbe\xef\x7b\x6c\xd2\x46\ \x68\xe8\x27\xb6\xd9\x65\x88\xba\x13\x47\x50\xda\x94\xe0\x81\xd6\ \x78\x6f\x1f\x71\x1f\x69\x79\x7a\xf9\xb6\xcd\xff\x00\xef\x1f\x67\ \x63\xb9\x2a\x86\x31\x5c\x25\x9c\x32\x85\x6c\xab\x18\xe4\xbe\x56\ \x01\x87\x03\x4a\x1f\x2e\x98\x7f\x87\x74\x07\xfd\xe4\x67\x58\xff\ \x00\xe8\x5d\xb2\xff\x00\xfb\x26\xf6\x29\xff\x00\x93\xa5\xfd\xf7\ \xbf\xf9\x99\x1c\xe1\xff\x00\x64\xfb\xff\x00\xfd\xe8\x7a\x2b\xff\ \x00\x80\xb3\xd8\xbf\xfd\x9a\x6d\xa7\xfd\xeb\x6f\xff\x00\xbd\x87\ \x59\xb7\x2e\xd0\xd8\x78\x9e\xba\xcd\xf6\x4e\x0b\xb0\xb1\x1b\xaf\ \x6f\xe1\xc4\x6a\xd9\x0c\x24\xd8\xcc\x8e\x2e\x59\xdb\x21\x49\x8f\ \x92\x0f\xe2\x78\xdc\x95\x6d\x30\x96\x19\x6a\xd7\x52\x82\x48\x36\ \x04\x0b\xfb\x13\x7b\x13\xfd\xeb\xde\xed\x7b\x8d\xf7\x98\xf6\xeb\ \xee\xe5\xee\x8f\xdd\x5a\x6e\x4c\xdd\x77\xb9\x64\x12\x1b\xdb\xab\ \xd8\xae\xed\xe3\x5b\x4b\x8b\xa8\xe5\xfa\x3b\xbd\xb6\xd5\xd9\x65\ \xf0\x34\xa9\x2c\xaa\x41\x2c\xa4\xd2\x84\x9b\xdc\x3f\xb9\x37\x28\ \x72\xbf\xb5\xbc\xcb\xee\x4f\x29\x7b\xb8\xbb\xe4\x16\x08\xa5\x16\ \x18\x20\x68\x65\x63\x34\x71\x32\x78\xd0\xdd\x4a\x01\x41\x25\x48\ \x00\x9a\x8a\x10\x2b\xd0\x4b\x86\xad\xa1\xce\x52\xa5\x5d\x03\xac\ \xb0\xc8\xa1\x95\x94\x86\xb8\x3c\x83\x70\x08\xf7\xdb\x38\xae\xd2\ \x65\x0c\x86\xa3\xfd\x5f\x3e\xb0\x06\xe3\x6d\x92\xd9\xca\x48\x94\ \x61\xd2\xfb\x66\xed\x5f\xef\x16\xe6\xc4\x62\x9a\x32\xd4\xf3\xd5\ \x2c\x95\x84\x0b\x01\x43\x4c\x0d\x45\x5d\xdb\xd3\xa4\xbc\x11\x95\ \x53\x7f\xd4\xc3\xf3\xef\x18\xbe\xfa\x1e\xfe\x45\xf7\x6e\xfb\xb2\ \xfb\xb5\xee\xca\x5c\xac\x7b\xe5\x96\xd8\xf0\xed\xc0\xd0\x96\xdc\ \xaf\x08\xb5\xb0\xa2\x90\xda\xc4\x77\x12\xa4\xd2\x2d\x0f\xe8\xc5\ \x23\x35\x15\x59\x84\xad\xec\x3f\xb6\x4d\xee\x9f\xbb\x3c\x97\xc9\ \x8f\x09\x6d\xba\x7b\xb5\x92\xea\x9e\x56\x90\x03\x35\xc5\x4d\x46\ \x9d\x51\x23\x46\xa6\xbf\x1b\xa8\x15\x24\x02\x1f\x77\xa7\x62\x75\ \xbe\xcc\xed\xc5\xeb\x5d\xb8\x91\xc1\x91\xa5\xc7\xd1\x4d\x9b\xa7\ \x4a\xa9\xaa\x52\x9f\x25\x92\x5f\xbc\x8a\x96\x35\x9e\x49\xda\x13\ \x1e\x3e\x58\x64\x23\x55\x81\x9a\xd6\x1a\x79\xc6\x3f\xee\xb7\xf7\ \x9f\xef\x0d\xef\x1f\xdd\xce\x2f\x71\x3e\xf1\x1c\xdc\xbb\xb5\xf6\ \xe3\xba\x4d\x1e\xd5\x23\x5a\xdb\x5b\x4c\xdb\x7d\xad\x2d\xcc\xb3\ \x9b\x68\xa0\x49\x9a\x4b\xb5\xb8\x8d\x5d\xa3\x2e\x52\x05\x91\xa4\ \x91\xa5\x62\x26\xff\x00\xbd\xc7\xb5\x7e\xdc\x72\x67\xb8\xcf\xb1\ \xfb\x5f\xb1\x1b\x2b\x3b\x6b\x44\x6b\xc5\x13\x4b\x2c\x7f\x53\x2d\ \x64\xd1\x18\x95\xe4\x64\x55\x84\xc6\xc5\x43\x69\x0d\x21\x50\xaa\ \x10\x0e\x87\x2e\x9c\xd9\xdb\x7b\x78\xc9\x97\xfe\x39\x49\x25\x4c\ \x74\xf4\x94\x13\xd2\x88\xea\x6a\x29\xb4\x1a\x89\x2a\x96\x42\x4c\ \x0f\x11\x7b\x88\xd7\xeb\x7b\x5b\xdc\x6f\xfd\xed\xdf\x7b\xff\x00\ \x7d\x3e\xea\x3c\xb9\xec\x7e\xe3\xec\x87\x33\x5b\xed\xb7\x5b\xdd\ \xee\xe7\x1d\xd9\x96\xce\xd6\xef\xc4\x4b\x68\xac\x9a\x10\xa2\xe6\ \x29\x42\x69\x33\x49\x52\x94\x2d\x51\x5a\xd0\x74\x6f\xf7\x2d\xf6\ \x2b\xdb\xcf\x78\xb7\x5f\x70\x6d\x7d\xc1\xda\x25\xba\x87\x6f\x82\ \xd1\xa1\x09\x3c\xd0\x69\x69\x5e\x70\xf5\x31\x3a\x16\xa8\x8d\x70\ \xd5\xa5\x31\xc4\xf4\x57\xb6\x9f\x60\x60\xb7\x86\x4f\x25\x43\x8b\ \x74\x73\x41\x5d\x53\x4a\x42\x92\xc5\x4c\x33\x49\x18\x04\xfd\x49\ \x1a\x3d\xf5\x6b\x94\x79\x85\xf7\xbe\x5f\xd8\xef\xa7\x90\x35\xdc\ \xd6\x70\xc8\xe4\x50\x55\xde\x35\x66\x34\x18\x15\x24\xe0\x60\x70\ \x1d\x62\x2f\x32\xf2\xb4\x9b\x2e\xe3\x7d\x08\x8c\xac\x0b\x33\xaa\ \x83\x53\x45\x0c\x40\xc9\xe3\x8e\x84\xf1\x8e\x66\x57\x75\x89\xd9\ \x23\x0a\x64\x75\x46\x2b\x18\x66\x08\xa5\xd8\x70\xa1\x98\x80\x2f\ \xf5\x26\xde\xcf\xe7\xdd\x2c\x6d\x6e\x6c\x6c\xee\x6f\x61\x8e\xee\ \xe5\x99\x61\x46\x75\x57\x95\x91\x0c\x8e\xb1\x29\x20\xc8\xcb\x1a\ \xb3\xb0\x50\x4a\xa2\xb3\x1a\x28\x27\xa0\xec\x7b\x6d\xcc\xd1\x5c\ \x4f\x15\xbc\x8d\x0c\x40\x17\x60\xa4\xaa\x06\x60\xa0\xb9\x02\x8a\ \x0b\x10\xa0\x9a\x55\x88\x03\x27\xae\x22\x84\x1f\xec\x8f\xf7\xdf\ \xec\x7d\xab\xf1\x7a\x67\xe9\x8f\xa7\x4a\x2e\xe6\xcb\xed\xbe\xb9\ \xf8\xf9\xb6\xb7\xa4\xd8\xda\x18\x72\x15\x5b\x92\x87\x13\x3e\x45\ \x20\x89\x6a\xe5\xfb\x99\xb3\xa3\x44\x93\xf0\xee\xa5\x68\xd4\x58\ \x9f\xec\x8f\x7c\x48\xf6\x8f\xdf\x9f\x76\xaf\xbf\xbd\xdf\xef\x0d\ \xed\x3e\xf3\xee\x3e\xf1\x73\xed\x66\xdf\xb1\xcb\x25\xae\xd5\x25\ \xcc\xad\x63\x04\x82\xdb\x64\x60\xf1\x5b\x96\xf0\xd1\x83\x4d\x33\ \x02\x14\x10\x65\x73\xf8\x8f\x5d\x0c\xe6\x7f\x6a\x79\x36\x5f\xb9\ \x6f\xb6\x5c\xd7\xb7\x72\xad\x8c\x5c\xe5\x73\x7c\xa2\x6b\xc5\x85\ \x05\xcc\x89\xe2\xdf\x82\xaf\x28\x1a\xd8\x10\x91\x8a\x13\xc1\x17\ \xd0\x74\x1d\x6c\x8a\xc1\xbc\xf1\xf4\x35\x58\xf8\x8c\xf2\xd7\xbc\ \x11\x53\xc4\x96\x2f\x24\xd3\xb2\xa4\x51\xaf\xa8\x0d\x4e\xec\x00\ \xff\x00\x1f\x7d\x94\xdf\x39\xbf\x62\xe5\x6e\x58\xdf\x39\xc7\x99\ \x77\x38\xec\xb9\x6b\x6c\xb2\x9a\xee\xea\xe2\x42\x44\x70\x5b\xdb\ \xc6\xd2\xcd\x2b\x90\x09\xd3\x1c\x68\xcc\xd4\x04\xd0\x60\x13\x8e\ \xb0\x3e\x0e\x57\xdc\xf7\x0d\xee\xc3\x97\xf6\xbb\x47\x9f\x76\xba\ \xb8\x48\x21\x89\x7e\x29\x25\x95\x82\x46\x8b\x5a\x0a\xb3\x30\x02\ \xa4\x0c\xe4\xf4\xad\xf9\x2f\xbd\xba\xe7\xa3\xb0\x3b\x17\x69\x54\ \x53\xd0\xcb\xbe\xf3\x08\xb5\x55\x15\x51\x34\xa9\x50\x98\xf8\xda\ \x44\xa8\xaa\x9d\x12\x44\x59\x97\x21\x92\x66\x8a\x9f\xc8\x1c\xac\ \x50\x38\xe2\xca\x7d\xf1\x77\xfb\xbb\x3e\xf1\x3f\x78\xdf\xbd\x27\ \xde\x1b\xef\x0f\xef\xb6\xf5\xcf\x1b\x9d\xb7\xdd\x8d\x6f\xa4\xb5\ \xdb\x36\x69\x84\x32\x40\x6e\x1b\xc2\x16\x91\x44\x5e\x39\x24\xb7\ \x36\x5b\x7a\x47\x3d\xf8\xb5\x92\x05\xb8\xbd\xbc\x8a\x46\xf1\x03\ \x4a\xa7\x3f\x7e\xf1\xfe\xcd\x7b\x67\xed\x7f\xb5\xfe\xda\xfb\x7b\ \xb6\x72\xe5\xa4\xbe\xeb\x2d\xba\xcb\x79\x7e\x86\x45\x93\xc3\x1a\ \xcc\xce\xe1\x59\x56\x51\x3d\xcb\x34\x76\xfe\x32\xc8\x63\x82\x06\ \x41\xa4\x84\x3d\x2a\x76\x4d\x36\xd0\xec\x6e\xa0\xcb\xe4\xf6\xf8\ \xa7\xa1\xde\xbb\x72\x07\xca\xe4\x1b\x23\x5d\x1c\x49\x51\x12\x45\ \x35\x44\x01\xe5\x9e\x48\xa9\xa8\xf1\x79\x0a\x58\xdd\x11\xdb\x42\ \xc3\x51\x19\x2e\xc5\x41\x2c\xa7\xef\x17\xf7\xbf\xfb\xc9\x7d\xd2\ \xbe\xfe\xbc\x8b\x37\xb9\x5b\x8c\x9b\xc7\xdd\x3b\x9b\xed\x92\xd2\ \xc6\xd6\xd2\xcf\x49\xb4\xd6\xd1\x47\x3c\x80\x46\x92\x4f\x73\xb9\ \xd8\x5c\xb4\x73\x4a\xba\xe5\xfa\x9b\x0b\x81\x1c\x11\x45\x2c\x8a\ \x90\xa2\xf6\xcf\xd8\x3f\x6b\x3d\xe3\xfb\xbb\xf3\x05\xbf\x2b\xda\ \x2d\x8f\xbc\xdb\x2c\xcd\x35\xc4\xd3\x4f\x5f\x1a\x81\xda\x35\x3a\ \x8a\xc7\x15\xa5\xc4\x41\x91\x0e\x94\xf0\xae\x63\x2d\x23\xba\x29\ \x2e\x0d\x6c\xdd\xc9\x8b\xde\x38\xe4\xaf\xc7\x4b\x1c\xa8\xc3\xfb\ \x0c\xac\x3f\xc6\xc4\x31\xb8\xff\x00\x78\xf7\xdb\x0b\x3d\xc6\x3b\ \xc8\x96\x58\xcf\x69\x1f\x61\xfd\x87\x23\xac\x03\xdc\x76\x59\xf6\ \xf9\x9a\x19\x96\x8c\x3a\x18\x36\xaf\x5e\x65\xf7\x87\xdf\xff\x00\ \x09\x34\x29\xfc\x3b\xed\x7e\xe3\xef\x26\x78\x6f\xf7\x9f\x71\xe2\ \xf1\xe8\x86\x6d\x56\xfb\x56\xbd\xed\x6e\x3d\xe2\x37\xde\xcb\xef\ \xcf\xec\xcf\xdc\xcf\xfa\x83\xfe\xbb\xb6\xbb\xdc\xbf\xd6\x4f\xae\ \xfa\x4f\xdd\xf6\xd1\x5c\xd3\xf7\x7f\xd1\xf8\xfe\x37\x8b\x73\x6f\ \xa2\xbf\x5d\x0f\x87\xa7\x5e\xaa\x3d\x74\xe9\x1a\xa6\x1f\x66\x3e\ \xee\xbc\xf9\xef\xaf\xf5\x93\xfa\x95\x36\xde\x9f\xba\xbe\x9f\xc6\ \xfa\x99\x5e\x2a\xfd\x4f\x8f\xe1\xe8\xd1\x14\xba\xbf\xdc\x77\xd5\ \x5d\x34\xed\xa5\x6a\x68\xaf\xff\x00\x41\x1b\xbf\xfd\x5e\x17\xff\ \x00\x3b\x66\xff\x00\xea\x3f\x78\x75\xff\x00\x27\xc8\xfb\x99\x7f\ \xd1\xaf\x9d\xbf\xee\x59\x6b\xff\x00\x7b\x2e\xa7\x2f\xf9\x37\x9f\ \xbe\xde\x77\xbb\x07\xfd\x95\xcd\xff\x00\x6c\x9d\x43\x83\xa9\xaa\ \x28\xf7\x4e\xdd\xdb\x7b\x8e\xba\x92\x91\xb7\x24\x39\xb9\x68\x5b\ \x1d\x20\xa9\x98\xff\x00\x03\xa4\x86\xa6\xa6\xe9\x34\x50\x8b\x0f\ \xb9\x8f\xe9\x7e\x09\xfa\x7b\x5d\xcd\xbf\xde\xeb\xed\x96\xff\x00\ \xf7\x77\xf7\xa7\xde\x9f\x60\xb9\x4b\x70\xdc\x77\x6e\x4b\xba\xd8\ \xe2\xb8\xb6\xde\x61\x5b\x28\xa4\x1b\xdd\xe4\xd6\xd1\x18\xde\xda\ \xe2\xe1\xd8\xc6\xb6\xd3\xb3\x57\x45\x0f\x86\x3b\x83\x1d\x2c\xec\ \x9f\x72\x1e\x6d\xdb\xbd\xcd\xe4\x4e\x45\xf7\x23\x79\xb6\xb6\xb0\ \xdf\x61\xdc\x1e\x39\xac\x5c\xce\xe8\x6c\x20\x49\x58\x38\x96\x28\ \x94\x6a\x32\xc6\x07\xc5\x51\xab\x85\x05\x60\x66\xa8\xbe\x3e\xed\ \xdc\x9d\x66\x17\x3d\xde\x3b\x57\x0f\x97\xc7\x54\x49\x49\x5f\x8d\ \xc8\xe6\xb0\x34\x95\xb4\x75\x30\xb1\x59\x60\xa8\xa7\x9a\xad\x24\ \x8a\x58\xd8\x58\xa9\x00\x83\xee\x02\xe5\xdf\xef\x3c\xfe\xf0\x1e\ \x6e\xd8\x76\x8e\x68\xe5\x8f\xb8\x34\xb7\xfc\xbb\xb8\x5b\xa4\xf6\ \xd7\x30\x26\xeb\x24\x33\xc3\x22\x86\x8e\x58\x9d\x63\x2a\xe8\xea\ \x41\x56\x18\x23\x23\xa9\x4b\x70\xfb\x9b\x7d\xdd\xb6\x9b\xfb\xcd\ \xaf\x73\xfb\xc3\x18\x37\x1b\x79\x1a\x39\x63\x7f\xa4\x57\x8d\xd4\ \xd1\x95\x94\x9a\x86\x07\x04\x1e\x1d\x3d\x6e\x4d\x9f\xd3\x9b\x3f\ \x1b\x84\xcc\x6e\xae\xd9\xc2\xed\xec\x56\xe5\x87\xee\x76\xfe\x43\ \x31\x5f\x87\xa0\xa4\xcc\xd3\xf8\x29\xea\xbc\xd8\xd9\xea\x2a\x52\ \x3a\xb8\xfe\xda\xae\x27\xba\x12\x34\xc8\xa7\xe8\x47\xb0\x87\x25\ \xff\x00\x7b\xe7\xdf\x2b\xdc\x6d\xef\x9a\x39\x6b\x90\xfe\xe5\xf6\ \xdb\xbe\xff\x00\xb2\x4b\xe1\x5f\xdb\xda\xb6\xe5\x34\xb6\x72\x78\ \x92\x45\xa2\xe1\x11\x09\x89\xbc\x48\xa5\x4a\x30\x07\x54\x6c\x38\ \x83\xd1\xce\xf3\xf7\x15\xf6\x47\x97\x6c\xb6\xbd\xcb\x7d\xf7\xc2\ \xe6\xd2\xc2\xf5\x35\x5b\xc9\x2a\xda\xa2\x4c\xba\x55\xab\x19\x26\ \x8c\x34\xba\xb5\x47\x93\x03\xe7\xd4\x1a\x3d\xaf\xd4\xdb\x83\x6c\ \xee\xdd\xcb\xb3\x3b\x37\x17\xbb\xe9\x76\x86\x26\xb7\x29\x95\x7c\ \x15\x5e\x2f\x25\x0d\x1f\xdb\xe3\xeb\x2b\xe1\x8e\xb2\x4a\x3a\x89\ \x7e\xdf\xee\x23\xa2\x72\xb7\xb1\x21\x49\x1f\x4f\x62\xb8\x3f\xbd\ \x93\xef\x5f\xcb\x3e\xe9\xfb\x49\xed\xe7\xbc\x7f\x74\x9b\x5e\x56\ \x87\x9a\x77\xab\x4b\x38\x9e\xf1\xf7\x08\x24\x68\xa6\xbb\xb7\xb6\ \x9e\x68\x16\x64\x51\x21\x80\x5c\x29\x23\xe1\xd4\x54\x36\x0f\x44\ \xd3\xfd\xc8\xbd\xa1\xdc\x79\x4f\x9c\x39\x8b\x92\xfd\xe2\xb9\xdd\ \x66\xda\xac\x66\x98\xac\x4b\x6c\xeb\xae\x38\x64\x96\x34\x90\xa1\ \x25\x44\x86\x32\x3d\x69\x5a\x70\xe8\x37\xeb\x09\xb6\x1e\xff\x00\ \xa5\xc8\xd7\x64\x77\xa6\x1f\x6c\x51\xd2\x45\x4d\x24\x15\x39\x1a\ \xbc\x75\x3c\x55\x5e\x66\x98\x48\x12\x4a\xea\xea\x34\x3e\x05\x8c\ \x16\xd2\x5a\xda\x85\xed\xc7\xbe\x8c\x7d\xf2\xbe\xf4\x7e\xf4\x7d\ \xde\xf6\x9e\x40\xdc\x3d\x95\xfb\xb6\x6e\xfe\xe3\xdc\x6e\xb3\xdd\ \xa5\xdc\x76\x11\xdf\xca\x6c\x56\x04\x81\xa2\x79\x7e\x86\xc6\xf8\ \x81\x39\x96\x45\x5f\x10\x46\x09\x89\xb4\x96\x35\x03\x17\xbd\x91\ \xf6\x47\x92\x7d\xc6\xbf\xe6\x4b\x3e\x7f\xf7\x46\xcf\x95\x96\xce\ \x38\x5a\x16\xb8\x6b\x75\x17\x0d\x21\x90\x3a\xa7\xd4\x5c\x5b\x82\ \x63\x08\xa4\xe9\x2c\x7b\xc5\x40\xc5\x57\x52\x62\xba\x1a\x17\x29\ \x2f\xc8\x6e\xb5\x89\xd7\x86\x49\x37\x5e\xce\x47\x52\x38\xb1\x56\ \xdc\xaa\x45\xbd\xe0\x41\xfe\xf4\xaf\xbe\xf0\xc1\xfe\xec\x8e\x70\ \xaf\xfc\xf3\xef\xdf\xf7\xa1\xeb\x23\xd7\xee\x5f\xec\x53\x0a\xaf\ \xde\xa3\x69\x23\xe4\xdb\x7f\xfd\xec\x3a\xcf\xbe\xb6\x56\xcb\xd9\ \x1b\x32\x8f\x7d\x4d\xbe\x28\x2b\x70\x19\x0a\xec\x15\x3d\x0e\x4a\ \x3f\xb0\x5c\x6d\x75\x36\x72\xaa\x18\xe1\xac\xa2\xc8\xc7\x90\xa8\ \xa7\xaa\x83\xec\xe4\x69\xd5\xa3\xd4\xad\x1a\x16\xbe\x90\x4f\xb3\ \xcf\xbb\x7f\xf7\xb4\x7b\xa3\xef\xbf\xbd\x7b\x9f\xb2\x5b\xa7\xdd\ \x90\x6c\x9c\xc7\x6b\xb5\xee\xf3\xca\x8d\x7b\x75\x2d\xcc\x17\x5b\ \x6d\xa4\xd2\xa5\xac\xf6\x92\x58\x5b\xc9\x1b\xcb\x77\x1c\x76\x8e\ \xae\xc8\xe9\x24\xa1\x74\x99\x08\x52\x5b\xee\x7f\xdc\x8b\x95\x39\ \x03\x91\xad\xb9\xe2\xc7\xdd\x66\xbf\xdb\xe5\xbb\xb2\x8d\x48\xb7\ \x85\x22\x78\x6e\xa6\x8d\x1a\x68\xe6\x5b\x89\x15\x82\x42\xcd\x32\ \x95\x0c\xac\xa8\x4d\x42\xd4\x88\x95\x0b\xf1\xda\x94\x06\xa9\xef\ \x8d\xa5\x00\x3c\x83\x2e\x77\x02\x80\x8f\xf5\xda\xac\x0f\x64\x2d\ \xfd\xe2\xdf\xde\x40\xbf\x17\xf7\x76\xde\x81\xff\x00\x34\x37\x6f\ \xfa\xd5\xd1\xa2\xfd\xd2\xfe\xec\x8f\x85\xfb\xc9\xa1\xfb\x1a\xcf\ \xfe\x82\xe9\x4b\x0e\xcb\xea\x2a\x9d\xa3\x55\xbf\xa0\xed\x6c\x4c\ \xdb\x26\x89\xda\x3a\xbd\xd7\x1d\x6e\x25\xb0\x14\xd2\x2d\x4c\x54\ \x6c\x93\x64\xc5\x4f\xda\x46\xc2\xae\x74\x8a\xc5\xbf\x5b\x05\xfa\ \x9f\x71\x7d\xef\xf7\xc1\x7d\xf1\x36\xef\x71\x6c\x7d\xa2\xbe\xfb\ \x99\xda\xc5\xee\x7d\xca\x06\x8b\x6b\x66\xdc\x85\xf4\x8a\x62\x79\ \x83\x2d\xb9\x4f\x10\x83\x0a\x3c\x95\x03\xe0\x52\xdc\x07\x42\xb8\ \x3e\xe2\x5e\xca\x5c\x72\xec\xfc\xdd\x07\xbd\xd7\x2f\xcb\x11\x92\ \x1e\xe8\x2d\xa9\x85\x48\x60\x84\x19\x2b\xa4\x1d\x6c\x17\x8f\xc4\ \x40\xe9\x1a\xb9\x0f\x8c\xcd\xca\xfc\x84\xd9\x0c\x3f\xc3\x71\xed\ \xe2\x3f\xf7\x3b\xdc\x9d\xff\x00\x27\x19\xfe\xf1\xd3\xc3\xfb\xbb\ \xef\x7f\xe7\x0e\xed\xff\x00\x5a\xba\x0c\x9f\xba\x37\xdd\xa0\x7f\ \xec\x47\xaf\xfb\xd5\x9f\xfd\x05\xd2\x2a\x1d\xd7\xd3\x72\x76\x25\ \x16\xda\xa3\xdf\xb8\xfc\xde\xd8\x65\xa3\x92\xab\x71\x62\xaa\xa9\ \x2b\x69\x43\x4e\x8c\xcd\x4e\xf5\x34\x93\x49\x0c\x11\xac\xa1\x52\ \x49\x06\xa3\x08\x6d\x44\x58\x5f\xde\x67\xec\x5f\x78\x9f\xbd\xb7\ \x3a\xfd\xce\x39\xe7\xdd\x2d\xbb\xee\xfd\x0e\xd1\xf7\x93\x80\x5d\ \xad\x9e\xc3\x74\x6e\x23\xaa\x44\xea\xa9\x72\x91\x4e\x82\x4b\x99\ \x44\x26\x49\xe1\xb4\x2d\x10\xba\x92\x35\x81\x65\x0c\xe0\x18\x23\ \x73\xf6\x6b\xd9\xfe\x5e\xf7\xbf\x97\xb9\x4e\xf3\xdc\x49\x6f\x3d\ \xab\x90\xc2\x67\xdc\x22\x11\xb1\xd4\xe0\x96\x89\x9a\x33\xa6\x24\ \x2e\x16\x37\x9a\x8e\x61\x56\x32\x14\x21\x4d\x17\x5d\x97\xb1\xe4\ \xd8\xd5\xd8\xfa\xea\x7f\x25\x7e\xcf\xcd\x55\x53\xc1\x49\x99\x88\ \x7d\xc2\xe3\x65\xac\x75\x14\xf4\xf9\x17\x88\x88\xf4\x4c\x1c\x78\ \x27\x04\x47\x31\xe3\xd2\xc4\x06\x8d\xfe\xe3\x3f\xde\x6b\xca\xff\ \x00\x79\x6e\x56\xdd\xb9\x43\xdc\x4b\x08\x36\x3f\xbc\x3e\xc7\x65\ \x2b\xdc\xed\xec\xc6\x08\xb7\x3f\xa5\x8d\x8c\xd3\xd8\x09\x01\x78\ \xe4\x0c\x8d\xf5\x56\x2c\x24\x9a\xd7\x2e\x86\x68\x55\xda\x31\x0f\ \xde\x07\xee\x87\xbb\x7b\x5b\xbb\xda\xef\x5c\xab\x73\x26\xe1\xed\ \xa5\xfc\xe8\xb1\x5c\x01\xae\x4b\x4f\x15\x80\x48\xee\x0a\xd1\x5d\ \x68\xc3\xc2\xb8\x1a\x52\x5f\x85\x82\x39\x50\xcb\x5c\xd7\x53\x6d\ \x0d\xb7\x2c\x50\x6e\x1e\xd4\xdb\xb8\x19\xa7\x8f\xcd\x0c\x39\xa8\ \xf1\xb8\xb9\x66\x87\x53\x27\x96\x28\xeb\xb7\x24\x0f\x24\x7a\xd4\ \x8d\x40\x11\x70\x47\xbc\x56\xe5\x4f\xef\xb9\xf7\x3f\x9e\xec\xae\ \x77\x2e\x47\xfb\x81\x6f\xdb\xce\xdd\x0c\xbe\x1c\x92\xd8\xef\x37\ \x77\x71\xa4\x9a\x43\x78\x6e\xf6\xfc\xaf\x22\xab\xe9\x65\x6d\x0c\ \x43\x69\x60\x69\x42\x3a\x97\xf7\x6f\xee\xf7\xe5\x5d\x86\x78\xed\ \x77\xcf\xbc\x6d\x85\x95\xcb\xa6\xa5\x49\xf6\xf8\x61\x66\x5a\x91\ \xa8\x2c\x9b\xba\x92\xb5\x04\x54\x0a\x54\x11\xe5\xd4\x4c\x67\x5b\ \x6c\x1c\xdd\x74\x18\xcc\x37\x70\xed\x2c\xb6\x4a\xab\xc9\xf6\xd8\ \xfc\x64\xb8\x7a\xfa\xda\x8f\x0c\x32\x54\x4d\xe0\xa4\xa5\xdc\xf2\ \xcf\x2f\x8a\x9e\x26\x76\xd2\xa7\x4a\x29\x63\xc0\x27\xda\xfe\x60\ \xfe\xfa\x4f\x78\xf9\x4f\x68\xbb\xe6\x0e\x6a\xfe\xef\x0e\x65\xdb\ \x36\x1b\x7d\x3e\x2d\xcd\xde\xeb\x7b\x6f\x6f\x1e\xb7\x58\xd3\xc4\ \x9a\x6e\x55\x48\xd3\x5c\x8e\x91\xae\xa6\x1a\x9d\x95\x45\x59\x80\ \x2c\x6d\xff\x00\x70\x1e\x4c\xdd\xaf\x21\xdb\xf6\xaf\xbc\xb6\xd9\ \x75\x7f\x25\x74\xc5\x15\x8c\x12\x48\xda\x54\xb3\x69\x44\xdd\xcb\ \x1a\x28\x2c\x68\x30\xa0\x93\x80\x7a\x0e\x68\x70\x30\x66\x3b\x13\ \x3b\xd6\xf8\x4c\x8d\x1d\x6e\x63\x03\x35\x54\x55\x12\x54\x93\x46\ \x8e\x29\x23\x8e\x49\x59\xa2\x8d\xaa\xda\x26\xb4\xa2\xcb\x76\xff\ \x00\x5f\xdf\x41\x5b\xef\xf7\xed\xdf\x2e\x7d\xd1\x79\x0b\xef\x73\ \xee\x57\x2c\x6e\x1b\x6f\x2d\x6f\x51\x5a\x97\xb1\xb2\x64\xdc\x67\ \xb7\x92\xea\x49\x23\x8d\x04\x92\x0b\x05\x99\x41\x8c\x96\x93\x44\ \x44\x03\x84\x3d\x63\x53\x7d\xd8\xb9\xab\x71\xf7\x9b\x98\x3d\x9a\ \xe5\x6d\xd6\xda\xeb\x72\xb2\x79\x74\xdc\x5c\x06\xb5\x8e\x54\x85\ \x55\x99\xb4\xa9\xb9\x28\x4e\xaa\x05\xd4\xfc\x3e\x2e\x84\x3e\xa4\ \xdb\xb8\x1c\xae\xee\xdc\x38\x3c\xd5\x25\x16\x55\xf1\x34\x35\x51\ \xc9\x0b\x96\x92\x38\xaa\xe9\x32\x74\xf4\x72\xc9\x19\x0c\x8c\x40\ \x25\x80\x24\x0e\x0f\xd3\xde\x24\xff\x00\x7a\xd7\xde\x97\xdc\x7e\ \x44\xfb\xaf\x7b\x0b\xee\xc7\xb0\x5c\xf9\xb9\xf2\xf4\x9c\xc9\xbc\ \xda\x4a\x25\x87\x44\x77\x0f\x65\x77\xb4\xdc\xde\x45\x14\xca\x44\ \xaa\xa7\xfb\x26\x75\x56\x34\x75\xa0\x62\x05\x4c\xcd\xf7\x38\xf6\ \x67\x95\xb7\xff\x00\x76\xfd\xc6\xe4\xef\x72\xb9\x6a\xd3\x73\x4d\ \xae\xc6\x64\xd1\x26\xa7\x8d\x6e\x21\xbd\x8a\x07\x78\xcf\x61\x23\ \xe3\x0a\x48\x15\x53\xc0\x74\x55\x7a\xf3\x7f\xe3\x3b\x0f\x73\xd5\ \x60\x31\xb3\x53\x43\x22\xe6\xa4\xc5\xac\x93\xea\x5a\x78\x5d\xab\ \x0d\x32\x34\xcf\x12\xcd\x22\xc2\x84\xfa\x88\x56\x20\x0b\xd8\xfb\ \xea\x25\xcf\xb9\xd0\x72\xaf\xb4\x9b\x97\xb8\x9b\xb5\x8d\xee\xe3\ \x1e\xd3\xcb\xaf\xb8\xcf\x0d\xaa\xc6\xf7\x77\x0b\x6d\x66\x6e\x66\ \x4b\x74\x9a\x58\x22\x7b\x89\x02\x30\x8d\x1e\x68\x95\x9c\x80\x5d\ \x41\xa8\xc5\x59\xfd\xbb\x9e\xf7\x9c\x6c\xf9\x6e\xd6\x7b\x7b\x53\ \x7d\xb9\xad\xb4\x72\x4c\x5d\x61\x88\xcb\x30\x89\x1a\x46\x44\x91\ \xd6\x35\x2c\x0b\x15\x47\x21\x41\x21\x4d\x29\xd1\xbe\x1d\x07\x9f\ \x54\xd7\x3e\x5f\x03\x10\x50\x5a\x52\x24\xad\x64\x44\x5b\x92\xda\ \xde\x86\x2e\x02\x0b\x9b\x80\x07\xfb\xcf\xbe\x4b\x5d\x7f\x7f\x3f\ \xdd\xc1\xae\x9e\x0d\x9b\xd9\xee\x7a\xb8\x56\xa0\x8f\x5c\x5b\x5c\ \x4e\xec\x40\xa2\x94\x4d\xca\x7d\x35\x73\xa4\x69\x67\x24\x50\xd2\ \xa7\x48\xcb\xb8\x7f\xbb\x87\xdd\x11\x12\xc9\x7d\xcf\x1c\xbb\x11\ \x15\x2f\xa5\xef\x1d\x54\x03\xc4\x33\x5a\xc7\x5e\xdc\x9a\x85\x00\ \xe2\xb4\xcf\x51\x4f\x4f\xe3\xa2\x96\x28\x6a\xf7\xee\xd8\xa6\x96\ \xa1\x82\x53\x44\x66\x80\xcb\x51\x23\x32\xa0\x48\xa2\x96\xae\x06\ \x76\x2c\xc0\x00\xb7\x24\x90\x2d\xed\x05\xc7\xf7\xdd\xda\x4d\x69\ \x3d\xe6\xc3\xf7\x3e\xe7\x3b\xb8\x20\x05\xa6\x77\x99\x63\x8e\x24\ \x0a\x5b\x53\x3c\x76\x57\x00\x0a\x02\x4e\xb0\x80\x28\x26\xb8\x3d\ \x2c\x8b\xfb\xbd\xee\x12\x64\x87\x71\xf7\xb3\x63\x85\xe4\xa0\x40\ \xb1\x17\x67\x35\xa5\x02\xb4\xf1\xd7\x88\x02\x9a\x8d\x4d\x29\xd6\ \x1c\xf7\x5e\x75\xd6\xcf\xa8\x86\x93\x79\xf7\x06\xd2\xdb\x15\x75\ \x30\x0a\x88\x29\x33\xd5\x98\x3c\x0d\x44\xd1\x16\x64\x33\x43\x1e\ \x57\x3f\x0c\x93\xc1\xad\x19\x43\x2a\x58\x90\x7f\xa1\x1e\xc3\x7c\ \xb7\xfd\xf3\x5e\xfb\x7b\xa3\x63\x77\xb8\xfb\x39\xfd\xdf\x7c\xc3\ \xbe\xed\xb6\xf7\x06\x39\x2e\x2c\xef\x77\x0d\xce\x25\x20\x06\x11\ \xc9\xf4\x3c\xbd\xa2\x29\x74\xb2\x39\x56\x95\xa8\x08\xc1\x04\x37\ \x46\xfb\x87\xdc\x1b\x90\x79\x5e\x78\xad\xb9\xd3\xef\x1f\xb7\xd8\ \xdc\xc9\x18\x65\x8e\x5b\x6b\x7b\x56\x39\xa6\xa5\xf1\xf7\x3a\xba\ \x54\x10\x08\x41\x52\x3c\xa8\x47\x48\xda\x9c\xf7\xc5\xac\x50\x2d\ \x93\xef\x7d\xbd\x32\x85\x32\x11\x8f\xcb\x62\xea\x1f\x42\xfe\xa5\ \x0b\x47\x4f\x92\x6f\x21\xfc\x0b\x16\x3f\x80\x7d\x9d\xc9\xf7\xf5\ \xfe\xf4\xbe\x60\x26\x3e\x54\xfb\x85\x59\xd9\x4a\x7b\x01\xdc\x22\ \xdc\x34\x87\x3f\x0b\x13\x2d\xee\xdc\x34\x0f\xc4\x75\x05\xf5\x91\ \x3a\x66\x3f\xba\xcf\xdd\x3f\x6f\xa3\x6e\xff\x00\x78\x1b\xbb\x84\ \xe2\x7e\x99\xad\xab\xa4\x71\x1d\xb6\xf7\x5d\xc7\xcb\x04\xff\x00\ \x45\xba\x41\x6e\xbe\xf0\xf8\x81\x8a\xc3\x65\x61\xdb\xfd\x9f\x2e\ \x67\x73\x25\x1b\x9c\x4d\x30\xa1\xcf\x4b\x15\x4d\x70\x8f\xcd\x04\ \x46\xa9\x76\xe5\x16\x32\xd3\x9b\x46\x58\xca\x15\x19\xb9\xb5\x9a\ \xc3\xdf\x66\x7d\xef\xfe\xf6\xfe\x69\xf7\x6b\xdb\xe9\xfd\xdd\xf6\ \x3b\x95\x76\x5f\x67\xa5\xdc\xd0\x6e\x9f\x4d\x2e\xde\x93\x25\x9b\ \x38\x8e\x56\x8d\x25\xdf\x2f\xef\x43\x42\x2b\x32\x2a\xc6\x5e\x40\ \x85\x41\x6d\x69\x52\x5e\x77\xf6\x77\xee\x7b\xb5\x72\x5f\x32\xa7\ \x25\xf3\xae\xf5\x7d\xce\xab\x68\xc6\xd0\xcc\xb7\x0c\x86\x70\x35\ \x20\x62\x96\x16\xd0\x10\xff\x00\xd9\xb1\x2d\x45\x24\x1a\x0a\x37\ \x4d\x3b\x4b\x3d\x43\xbb\x68\x23\xaf\xa1\xb3\x45\x22\x86\x1c\x7f\ \x51\x7f\xc2\xfb\xec\xc5\xb5\xf2\x5c\xa0\x74\x22\x9d\x60\x2d\xf6\ \xd1\x25\x8c\xa6\x29\x07\x70\xe8\x74\x8e\x0d\x97\xd7\xbd\x4b\xbc\ \x7b\x3b\xb0\xe8\xa0\xa8\xc6\x53\x53\x11\x8d\xa7\x9d\xda\x09\xa6\ \x92\x39\x3e\xd2\x8e\x3a\x29\xa2\x31\x54\x43\x36\x4f\x2b\x3a\xc4\ \x59\x4d\xd6\x38\xcb\xfe\x9b\xfb\xe2\x0f\xdf\x3b\xef\x3f\xef\xb7\ \x3b\x7d\xfb\x7d\x8c\xfb\xa6\x7d\xd5\xbd\xc7\xb9\xd8\xb7\x4d\xad\ \x84\xfb\xed\xdd\xba\xc7\x3c\x28\x6e\x51\x2e\x67\x4b\xcb\x79\xd2\ \x5b\x5b\x88\xf6\xed\xae\x21\x70\x91\x4a\x85\x64\xb9\xbc\x10\x55\ \x66\x0b\x4e\x80\x7d\xdf\xfd\x97\xf6\xf7\x68\xfb\xbe\xf3\xff\x00\ \xbb\xfe\xef\x72\xa4\x5b\x95\xbd\xf7\xe9\xed\xd0\x48\x5a\x37\x22\ \x22\xd1\x23\x41\x2c\x6c\x93\x44\xd7\x37\x6f\xe1\xb3\xa3\x55\x62\ \x80\xc9\x42\x84\xd4\xba\x75\x66\xe4\xad\xec\xfc\x63\x66\x30\xb8\ \x4c\xad\x56\x37\xcd\x24\x0b\x5b\x49\x8d\xad\x9e\x8c\xcb\x1e\x92\ \xf0\xad\x4c\x70\x3c\x46\x48\xd5\xd4\x91\xa8\xb0\x04\x5f\xeb\xef\ \xad\xfb\xc7\xbe\x7e\xd2\x72\x7d\xec\x7b\x37\x3b\x7b\xab\xcb\xbb\ \x46\xf1\xe0\xac\x82\x1b\xfd\xca\xca\xd2\x76\x8d\x89\x55\x97\xc2\ \x9a\x68\x9b\x4b\x95\x6a\x30\x40\x84\xab\x05\xe0\x40\xc3\x5f\xf5\ \xaa\xe7\x6b\xf8\x9a\xef\x62\xe4\xfd\xce\xf6\xcf\x59\x5d\x76\xd6\ \xb3\xcc\x81\x85\x09\x4d\x71\xa3\x8a\xa8\x23\x04\xea\x00\x82\x78\ \xd7\xa1\x96\x8b\x6f\x65\x71\xd5\x94\xb5\xd5\xbb\x53\x2d\x94\xa3\ \xa5\xa8\x8a\x7a\x9c\x79\xc7\x64\x14\x55\xc1\x1b\x86\x96\x00\xd1\ \x42\xae\x19\xd0\x58\x7e\x2f\x6b\x82\x2e\x0c\x63\xee\x87\xbf\x3e\ \xce\xf3\x6f\xb7\x5c\xef\xcb\x3c\x8f\xf7\xaf\xe4\xfe\x5f\xe7\x1b\ \xed\xb2\xe2\x1b\x2d\xca\x2d\xe3\x68\x95\xec\xae\x5e\x36\x58\x67\ \x11\xcb\x3b\xab\x84\x72\x0b\x80\x03\xe8\xd5\xe1\x3c\x72\xe8\x91\ \x4f\xb9\x3f\xdb\x4e\x78\xd9\xb9\xa7\x97\xf7\x6e\x61\xf6\x6b\x7b\ \xdc\xf6\x2b\x7b\xb8\xa4\xb8\xb5\x7b\x1b\xd4\x59\xe2\x57\x05\xe3\ \x2c\x91\xa9\x05\x96\xb4\x35\x2b\xaa\x9a\xd5\xd3\x52\x97\x2e\xfe\ \xa4\xa0\xc2\xc9\xb4\x37\x26\xcf\xc4\x65\xaa\x5f\x73\x88\x22\xaa\ \xdb\x18\x9d\xaf\x9c\xa8\xa8\x82\x91\xa9\xbc\x90\x65\xe5\xa7\xc7\ \xe2\xe6\x87\x0a\x21\x08\x21\xa8\x8a\xa4\xc0\x5a\x42\x34\x02\xc2\ \x4f\x7c\xa2\xfe\xeb\xef\xbf\x17\x3d\xed\x37\x5e\xe4\x7b\x01\xf7\ \x9c\xe7\xdb\x0b\xab\x0e\x5e\xbc\xb8\x36\xbc\xc3\x7f\xbd\xd8\xba\ \x99\xbe\xa5\x96\xe2\xc4\xde\x5c\xdd\x87\xdc\xe2\x92\x46\x6b\x9b\ \x1b\xab\x73\x70\x12\x12\xe8\xee\x2d\xda\xd7\x46\x6b\x7d\xec\x7e\ \xee\x1c\xb9\xba\x43\xcb\x7e\xe4\x7b\x4f\xcb\xb3\xc1\x73\xb8\xc1\ \x17\x8d\xb6\xdb\xd8\xce\xbd\x9e\x10\x31\xce\x20\x8a\x1d\x36\xae\ \xaa\x04\x57\x10\xc8\x23\x2c\xf4\x60\xbe\x20\x97\x52\x6e\x8b\x6c\ \xe7\xaa\xe9\xa2\xa8\xfe\xef\xe6\xa2\xf2\x22\xb6\x89\x71\x55\xc8\ \xea\x48\xbd\x99\x5e\x9d\x58\x11\xfe\x23\xdf\x65\x97\xef\x39\xf7\ \x73\x65\x07\xfd\x7f\xb9\x2b\xfe\xe7\x9b\x67\xfd\xb5\x75\x81\x32\ \x7b\x3f\xee\x82\x3b\x2f\xfa\xdb\xef\xc6\x9e\x9b\x7d\xdf\xfd\x6a\ \xea\x24\xb8\xc9\x29\xe5\x92\x09\xe2\x68\x67\x89\xb4\xcb\x0c\xaa\ \x63\x96\x36\xff\x00\x53\x24\x6e\x03\xa1\xe7\xe8\x47\xb9\x67\x65\ \xe6\x3d\x93\x99\x76\xab\x1d\xf7\x97\x37\x9b\x5b\xfd\x92\xe9\x35\ \xc3\x71\x6d\x2c\x73\xc1\x2a\x12\x40\x78\xa5\x89\x9a\x39\x16\xa0\ \x8d\x4a\xc4\x63\x8f\x40\xbb\xfd\x9a\xff\x00\x6a\xbc\xb8\xdb\xb7\ \x4b\x09\xad\xb7\x08\x9b\x4b\xc5\x2a\x34\x72\x23\x7a\x3a\x38\x0c\ \xa7\xe4\x40\x3d\x71\xfb\x0f\xf0\x1f\xef\x1e\xcd\x3c\x6f\x9f\x48\ \xfe\x9b\xe5\xd7\xbe\xc3\xfc\x07\xfb\xc7\xbf\x78\xdf\x3e\xbd\xf4\ \xdf\x2e\xbd\xf6\x1f\xe0\x3f\xde\x3d\xfb\xc6\xf9\xf5\xef\xa6\xf9\ \x75\xef\xb0\xff\x00\x01\xfe\xf1\xef\xde\x37\xcf\xaf\x7d\x37\xcb\ \xaf\xff\xd3\xb6\x9f\xb1\xff\x00\x69\xff\x00\x78\xff\x00\xa4\x7d\ \xf4\x03\xc5\xf9\xf5\xc6\xcf\xa6\xf9\x75\xef\xb1\xff\x00\x69\xff\ \x00\x78\xff\x00\xa4\x7d\xfb\xc5\xf9\xf5\xef\xa5\xf9\x75\xef\xb1\ \xff\x00\x69\xff\x00\x78\xff\x00\xa4\x7d\xfb\xc5\xf9\x9e\xbd\xf4\ \xdf\x2e\xbd\xf6\x3f\xed\x3f\xef\x1f\xf4\x8f\xbf\x78\xbf\x33\xd7\ \xbe\x9b\xe5\xd7\xbe\xc7\xfd\xa7\xfd\xe3\xfe\x91\xf7\xef\x17\xe6\ \x7a\xf7\xd3\x7c\xba\x0f\x7b\x1b\x13\xb9\xea\xb0\x15\x74\xdb\x63\ \x25\x91\xc5\xd5\xcd\x11\x1e\x4c\x7d\x5d\x45\x23\xb3\x00\xc1\x59\ \x9a\x9d\xa3\x24\xad\xf8\xbf\xd3\xd8\x2f\x9b\xb9\x33\x94\xf9\xc1\ \x2d\xdf\x99\x39\x57\x6d\xdc\xa6\x85\x58\x46\xd7\x56\xb0\x5c\x18\ \xc3\x50\xb0\x43\x2a\x39\x40\xc5\x46\xa0\xb4\xad\x05\x78\x0e\x85\ \x9c\xad\xbd\xee\x9c\xbf\x3b\xfd\x06\xeb\x75\x6d\x0b\x90\x5c\x45\ \x2b\xc6\x1a\x95\xa6\xa0\x8c\x35\x52\xa6\x95\xad\x2a\x69\xc7\xaa\ \xfa\xc9\x74\x97\xcb\x2a\x9a\xc9\x6a\x29\x37\x8f\x63\x9a\x69\x4f\ \x92\x16\x8b\x31\xb8\xcc\x4d\x1b\x7a\x91\xa3\x65\xa8\xd2\x51\x94\ \x82\x08\xe0\x8f\x78\xd9\xb8\x6c\x5f\x76\xbb\x0b\xeb\xbb\x0b\xf5\ \xe4\x18\x2f\xa0\x95\xa3\x92\x29\x06\xd0\x92\x47\x22\x31\x57\x47\ \x46\xa3\x23\xa3\x02\xac\xac\x03\x29\x04\x10\x08\x3d\x64\x3d\x9e\ \xff\x00\xcf\x57\x16\x96\xf7\x10\x41\xbf\xc9\x04\x88\x19\x5d\x7e\ \xb1\x95\x95\x85\x55\x95\x85\x43\x29\x04\x10\x41\x20\x83\x51\x8e\ \xa1\xff\x00\xa0\xbf\x97\x3f\xf3\xd8\x76\x4f\xfe\x7e\x77\x2f\xff\ \x00\x55\x7b\x47\xfb\xb7\xee\xc3\xff\x00\x29\x1e\xde\xfe\xdd\x9f\ \xfc\xfd\x2a\xfd\xf3\xcf\xdf\xf2\x85\xcc\x3f\xef\x37\x9f\xe6\xeb\ \x0c\xfd\x27\xf2\xca\x9a\x33\x35\x4e\xf7\xec\x3a\x78\x94\x80\xd2\ \xcf\x9d\xdc\x51\x46\xa5\x88\x55\x05\xe4\xab\x55\x05\x98\xd8\x73\ \xc9\xf6\x69\xb3\xf2\x97\xdd\xef\x98\x6f\xe2\xda\xb6\x0b\x0e\x46\ \xbe\xdc\xdc\x31\x58\x6d\xe3\xda\xa6\x95\x82\x82\xcc\x56\x38\xc3\ \x39\x0a\xa0\xb3\x10\x30\x01\x27\x03\xa4\xb7\xbc\xd1\xce\x3b\x6d\ \xbb\xdd\xee\x3f\xbf\x2d\xed\x14\x8a\xbc\x86\xe9\x10\x54\xd0\x55\ \x9a\x80\x54\xe0\x67\x27\x1d\x0c\x3f\x1b\xfa\xe3\xe4\x1e\x1b\xbd\ \x7a\xbf\x25\xba\x37\xce\xed\xc8\xed\xfa\x5d\xd3\x4a\xf9\x5a\x1a\ \xdd\xc1\x96\xaa\xa4\xa9\xa5\x30\x54\x2b\x47\x3d\x3c\xf5\x92\x45\ \x2c\x65\x98\x70\xc0\x8f\x78\xed\xf7\xf5\xf6\x8f\x92\x76\x2f\xb9\ \xdf\xde\x03\x77\xdb\xf9\x0f\x65\xb6\xbd\x83\x60\x91\x92\x58\xac\ \x6d\xa3\x91\x0f\x8b\x10\xd4\x8e\x91\x06\x53\x9e\x2a\x41\xea\x41\ \xf6\x17\x9f\xee\xb7\x4f\x78\x79\x03\x6f\x7d\xe6\xf2\x44\x96\xfd\ \x41\x56\x9e\x56\x53\xda\xc6\x85\x4b\x10\x47\xc8\x8e\x83\xef\xe6\ \x11\xbb\x3b\xa0\xfc\xd3\xaa\xd9\x9b\x17\x78\xee\x7c\x2e\x12\x6d\ \x8f\xb2\xea\x23\xa0\xc5\x66\xf2\x54\x34\x8b\x53\x51\x4b\x53\xf7\ \x32\x8a\x7a\x5a\xa8\x62\x0f\x23\x28\xd4\x40\xb9\xfc\xfb\xc6\x9f\ \xee\x98\xe4\x4e\x50\xe6\x4f\xba\x66\xc9\x75\xbc\xf2\x6e\xd3\x7d\ \x7c\xdb\xee\xe4\xa6\x5b\x8b\x4b\x79\xa4\x21\x65\x4a\x02\xf2\x46\ \xcd\x41\xe4\x2b\x41\xe5\xd4\xcb\xf7\xa8\xde\x6e\xb6\xbf\x71\xaf\ \x9e\x2d\xd6\xea\x18\xd6\xca\xdf\xb6\x39\x64\x45\xf8\x4e\x68\xac\ \x05\x4f\xaf\x9f\x46\x17\xe2\xd7\x5c\x62\xf0\x51\xee\x8d\xcd\xf2\ \x3b\x7d\xee\x58\x2b\xa3\x8f\x00\xfb\x76\xb6\xa3\x25\x90\xa8\x15\ \x51\x14\xcb\x2e\x5f\xef\xa4\x7a\x0c\xb4\xd2\x8a\x65\x86\x8c\x45\ \x76\x8f\x48\x66\x03\x50\xfd\x39\x4b\xf7\xb1\xdf\x7e\xf9\x3e\xce\ \x6d\xde\xd7\xd8\x7d\xc9\xbd\xa1\xd9\x77\x5d\xb6\x63\xb9\x1d\xd2\ \x27\xb7\xb7\x48\xad\x4a\x9b\x16\xb2\x31\x46\x6f\xb6\xf4\x53\x3b\ \x4b\x7a\x64\x2a\x24\xd4\x63\x05\xb4\x1a\x6b\x80\xfd\xb3\xb4\xf6\ \x2b\xdc\x1b\xbe\x69\x7f\x7a\xb9\xb2\xf2\xce\xe2\x3f\xa6\x16\xac\ \xb2\x48\x5e\x5a\xf8\xe2\x60\xcd\xe0\x5c\x93\xe1\x85\x80\x2d\x74\ \xd0\x31\xa5\x7c\x87\xec\xde\x03\xe1\xa7\x7a\xe5\x29\x3a\xba\x97\ \xb8\xf7\x75\x7e\x4b\x73\xe4\x21\x11\xed\x2d\xaf\x9b\xcd\x51\xc7\ \x9a\xaf\xc6\x53\xd4\xd5\x45\x35\x65\x1f\xf7\x62\x5a\x09\xdb\x1f\ \x4b\x1c\xd2\x79\x66\x01\x61\x8d\x59\x8b\x28\x04\xfb\xe6\x8f\xba\ \xff\x00\x79\x6f\xef\x46\xe4\xab\x39\xfd\xeb\xf7\x57\xee\xd5\xc8\ \xd6\x2b\xcb\xf6\x8e\x9f\xbd\xa7\xb1\xb2\x69\xec\xed\xee\x24\x8d\ \x1e\x28\xa7\x1b\xd4\x97\x0a\xb3\xca\x62\x4f\x06\x1c\xcb\x21\x45\ \x08\xcc\x40\xeb\x27\xf9\x1b\xda\x5f\xba\xfd\xcb\xaf\x26\xf2\x6f\ \xb8\xfb\xf4\xe9\xb8\x4a\x1b\xe9\x16\x79\x84\x73\x49\x1a\xb1\x0e\ \xc8\x6c\x92\x32\x63\x4d\x47\x5b\xfc\x0b\x53\x50\x07\x5c\xf0\xf8\ \x7e\xb5\xe8\xce\xfb\xd8\xfd\x2b\xb3\xb2\xf5\xd5\x85\xa9\x76\x9e\ \x46\x7a\x6c\xbe\x52\x9b\x25\x94\xa3\xc8\x64\x73\x39\x24\x5a\x6a\ \x87\xa7\xa7\xa3\x10\xeb\xc6\xd2\xd3\xcc\xa8\xd1\xea\xd1\x28\x6f\ \xa3\x0f\x79\x23\xed\xd7\xde\x6f\xdd\x3f\xbc\xf7\xf7\x5e\x7d\xed\ \x3d\xc1\xf7\x77\x6f\xb0\xb7\xde\x85\x86\xff\x00\x67\x68\x6c\xed\ \xe5\xb6\x86\x6b\x28\x36\xbb\x46\x59\x55\x65\x9a\x72\xec\x2e\xe5\ \xbb\x89\xa4\x57\x0b\x58\xb4\x69\x0c\x8c\x4c\x4d\xcd\xbe\xd0\xf2\ \xcf\xb6\xbf\x7a\xcf\x67\x36\xde\x4f\x96\xe2\x4d\xbf\xea\xb6\xf9\ \xe6\xf1\xa4\x59\x1d\x27\x7b\xb9\x81\x5a\xaa\x20\x51\xe1\x2c\x2c\ \x14\x8a\xf7\x6a\xa9\x0c\x29\x5f\xbf\xcc\x33\x6b\xe6\x77\xbf\xcd\ \x48\xb6\xfd\x25\x74\xd4\xf4\x8d\xb2\x36\x7b\x18\xe3\x91\x94\x6b\ \x78\x6b\x0b\x9b\x0e\x3d\x5e\xc5\x9f\xdc\xfd\x1c\x97\x1f\x73\xee\ \x5f\x85\x5c\x85\xfe\xb0\x6e\x9f\xf5\x75\x3a\x36\xfb\xdc\x4d\x05\ \x97\xb9\xdb\xa5\xd3\xc4\x0b\xfd\x0d\xb7\xfc\x70\xf4\x29\xfc\x97\ \xf8\x77\xd5\x3d\x67\xb5\xba\x92\xaf\x69\xcd\x9a\xc6\x65\xb7\x54\ \x55\x31\xe7\x25\xc9\xe7\x2a\x2b\xe2\xab\xa9\x87\x19\x85\x9c\x1a\ \x58\xa6\x50\xb4\xc0\x54\xd6\x48\x48\x5b\xf0\xc0\x7e\x3d\xb9\xfd\ \xdf\x7f\x7a\xbf\x77\x7e\xf1\x9e\xed\xfd\xe5\xf9\x33\xdc\xcb\xfb\ \x09\x36\x6e\x56\xbc\x8a\x2b\x11\x6f\x6c\xb0\x38\x56\xbc\xdc\x20\ \x6f\x15\xd5\x8f\x88\x7c\x3b\x68\xf2\x69\x9a\x9f\x3e\x8b\x7e\xf0\ \x3e\xdb\xf2\xb7\xb7\x3c\xa1\xed\xa6\xf9\xcb\x36\x93\x8b\xbd\xd6\ \x06\x79\xf5\xc8\x64\x15\x10\xdb\xc8\x34\x82\x06\x9e\xe9\x1b\xf2\ \xa7\xa7\x42\xd6\x73\x64\xd5\xf5\xef\xf2\xce\xed\xac\x0d\x25\x5c\ \x8f\x51\x1d\x4b\xe4\xe9\xea\x75\x92\xe0\x54\xef\x6d\xa9\x3f\x0c\ \x39\xb6\x94\x3f\xed\xfd\xe3\x17\xbd\x50\x35\xa7\xf7\xd5\xfb\x3e\ \x8a\xd9\x1b\x6d\xa9\xaf\xfd\x4a\x37\x1e\xa5\x0f\x6e\xee\xd3\x72\ \xfb\x9a\xf3\x54\xb2\x46\x02\x9b\xa9\x94\x8f\xb2\xee\x0e\x93\x1f\ \x11\xa5\xad\xc9\xf5\xdd\x04\xb5\x8e\xd3\x4b\xf6\xf1\x82\xcc\x49\ \x37\x00\x7d\x49\xfa\xfb\xfa\x20\xe5\xdb\x86\x6b\x25\x2c\x6a\x69\ \xd7\x2f\xb9\xd6\xca\x38\xf7\x49\x44\x6b\x41\x5e\xac\x3f\x6c\x9a\ \x4e\xb7\xd8\x1b\xeb\xb5\xb2\xf4\xb2\x4d\x06\xdd\xda\xbb\x87\x3c\ \x29\xd2\xc9\x34\xb8\x8d\xb7\x8c\xaa\xcc\x57\x88\x59\xc6\x95\x7a\ \xd6\xa1\xd0\xa4\xf0\x3c\x60\xfd\x0f\xbf\x9d\x7f\xef\x70\xf7\xad\ \xfd\xfe\xfb\xc3\xfb\x23\xf7\x1c\xe4\x9d\xfa\x28\xb6\xf8\xb7\xed\ \xbd\x77\x29\xaa\x5e\x25\xdd\xf7\x59\x63\xb3\xb3\x8e\x40\xa7\x3f\ \xbb\xad\x6e\x9a\x59\x00\xce\xbb\xc6\x8c\xd1\xe1\x23\xae\x8d\xfd\ \xca\x3d\xba\x1e\xde\xfb\x75\xcf\x1e\xfc\xef\x9b\x73\x35\xe4\xd6\ \x37\x02\xd1\x29\x47\x36\x56\x8a\xd3\x4c\xca\x48\xc7\xd4\xcd\x10\ \x45\x27\xca\x00\xc2\xaa\xfd\x50\x8f\x43\x52\x6e\x8e\xf4\xef\x3d\ \xd3\xda\x7b\x82\x79\xaa\x6a\x33\x7b\x83\x21\x99\xaa\x90\x6b\xf0\ \x2c\xd5\xd5\x92\x54\x34\x50\x2b\x17\xf1\x53\x42\xaf\xa2\x24\x06\ \xd1\xc6\xaa\xa3\x80\x3d\xf7\x2b\xda\x1e\x43\xd8\xbd\xbe\xe5\x4e\ \x52\xe4\x3e\x55\xb6\xf0\x79\x67\x63\xdb\xad\xec\xad\x93\x15\x10\ \xdb\x44\xb1\x21\x72\x00\xd5\x23\x05\xd7\x23\x91\xaa\x49\x19\x9d\ \xaa\xcc\x49\xc4\x5f\x73\xb9\x86\xef\x74\x97\x74\xdd\x77\x49\x03\ \xee\xd7\xd3\xc9\x34\xad\xea\xf2\xb1\x73\x41\x9a\x28\x26\x8a\xbc\ \x15\x40\x03\x03\xab\xf4\xe8\xca\x2f\xb1\xab\xcd\xc2\x05\x82\xe3\ \x71\x6a\x3f\xe4\x19\xeb\x07\xbe\x34\xff\x00\x7f\xab\x57\x94\x7e\ \xec\xc3\xd3\x71\xde\xbf\xea\xce\xdb\xd6\x4d\xff\x00\x77\x3a\x69\ \xde\xbd\xd7\x6f\x33\x6f\x63\xff\x00\x1f\xba\xea\x99\xfe\x11\x63\ \xf2\xfb\x87\xb0\x37\x7e\x3e\x96\x3a\x8a\xea\xa9\x77\x3e\x61\x61\ \x88\x5d\xac\xa2\xbe\xa0\xbb\xb9\x63\xa6\x38\xa2\x51\x76\x66\xb2\ \xaa\x8b\x93\x6f\x7d\x79\xb4\xf7\x53\x91\xfd\x9d\xf6\x7f\xfd\x72\ \x3d\xc9\xe6\x38\x36\xbe\x4d\xda\xb6\x98\x25\xb8\xb8\x94\xe0\x0f\ \x09\x02\xc7\x1a\x0a\xbc\xb3\x4a\xe5\x63\x86\x18\xd5\xa5\x9a\x56\ \x58\xe3\x56\x76\x00\xe3\x27\x37\xf2\x56\xf9\xce\xdc\xdd\x6f\xcb\ \x1c\xad\xb5\x3d\xde\xf9\x79\x74\xe9\x1c\x68\x3c\xf5\x31\x2c\xc4\ \xf6\xa2\x22\xd5\x9d\xd8\x84\x44\x05\x98\x80\x09\xea\xd5\xfb\xcf\ \xb7\xfa\xf3\xe2\x47\x54\xd5\x64\x37\x0b\x63\xf2\xfb\xb3\x71\xc4\ \xf4\xb8\xbc\x14\xde\x29\x64\xcd\xd7\x18\xf4\xbc\x93\x53\xc9\xfb\ \xa3\x6e\xe2\x35\xdd\xd8\xa8\xf2\x39\x08\x2c\xf2\x7a\x7e\x7d\xf6\ \xfe\x6f\xf7\xd3\xfb\xd5\xbe\xf8\x7b\x5f\x3a\xec\x9b\xae\xef\xca\ \x9e\xc2\xf2\x55\xe0\x7b\x4b\x8b\x69\x64\xb7\x9b\x6d\xb5\x12\x06\ \x53\x0c\xf0\xb6\x91\xbf\xee\x9a\x15\x99\xa3\x76\xfa\x58\xd7\x0d\ \x2c\x16\x8b\xe3\x67\xdd\x97\x27\x72\x27\xdd\x4b\xd9\x8b\xbe\x5b\ \xb9\xb1\xb2\xde\x3d\xc1\xdf\x60\xa5\xc2\x4a\x8b\x24\x77\x52\x95\ \xa1\x0f\x1b\x8a\xfe\xee\xb5\xd4\x42\xab\x28\xf1\x58\x92\x42\xbc\ \xcd\xa0\xb4\x7c\x76\xef\xae\xbf\xdc\x5b\x5f\x37\xb9\x3b\x2f\x13\ \x95\x9e\x16\x14\x73\x62\x4e\x39\x2a\x74\xc5\x1a\x0a\xe6\xc8\x6b\ \x5a\x7c\x86\x3c\x7a\xef\x06\x80\x43\x0e\x0d\xad\xcd\xfb\x37\xf7\ \xba\xda\xfe\xfc\x9c\xcd\x65\xed\x9f\xfc\x06\x1e\xe6\x6d\x1c\xbe\ \xb6\xab\x7e\x37\x83\xb9\x47\x67\x3b\x5c\x86\x16\x23\x6f\x31\xb5\ \xee\xd7\xb9\x9d\x51\x68\xbe\xf1\x4a\x18\x4b\x19\x50\xbf\x8a\x42\ \xf8\x78\x47\xed\x3e\xdd\xec\x06\xc5\x7f\xcd\x30\xfb\xdf\xca\x97\ \x9b\x9b\xcc\x6d\xfe\x88\x5a\xbc\xf1\x88\x88\x37\x1f\x53\xa8\x5b\ \xdd\xda\x0a\x3e\xa8\x34\x86\xd7\x4d\x0d\xa7\x46\x75\x0c\xbf\x22\ \x3b\x67\xe2\x95\x1f\xc5\xdd\xab\xbf\xfb\x7b\x6c\x6e\xbc\xff\x00\ \x49\x65\xb7\x8e\x3e\x93\x07\x88\xc4\x3e\x62\x9f\x37\x1e\xe1\x15\ \x1b\x9a\x0a\x4a\x99\xff\x00\x87\x6e\xac\x25\x70\xa7\x8e\x5a\x0a\ \xdb\x86\xad\x74\x21\xd6\xe8\x78\xd3\xf3\xed\xc9\x7b\x0f\xdf\xc2\ \x7f\xbf\xaf\xbb\x3b\x57\x2d\xfb\x9f\xb2\x43\xf7\xab\x8f\x6e\x73\ \xba\xee\x6f\x0d\x89\xb2\x9e\xdc\x43\xb6\xea\x48\xa3\x6d\xa5\xed\ \x43\x18\xcd\x98\xac\x76\x10\x9a\xc6\xfd\xc0\x96\x2f\xd2\x89\xff\ \x00\xd6\x35\x3d\x88\xe5\x1f\x17\x95\xaf\x0f\xb5\x7e\x30\xfa\x4b\ \x5d\x73\xf8\xd1\xbe\xbb\x8a\x16\x6f\xab\xf1\x48\xd5\xe3\x1e\xeb\ \x87\x14\x61\x8a\x00\x15\x5b\xf1\x4c\x75\x87\x60\xe2\x29\xbb\x3f\ \xa8\xf6\xce\x73\x6e\x75\x4b\x52\x47\x41\xb2\xe8\xf7\x34\x59\x05\ \xc8\x64\x72\xb4\x92\xd5\x53\xe6\xb3\x10\xff\x00\x13\xcb\xe6\xea\ \x25\xc6\xd2\x36\x9a\x68\x64\xf3\xba\xbd\x42\x4b\x60\xa6\x2b\xb4\ \xa5\xf7\xda\xfb\xdf\x7d\xe4\xf9\x3f\xd8\x77\xfb\x9e\x7b\xcf\xee\ \x2e\xdf\xbe\x7b\xc7\xb8\xee\x6d\x77\xbf\x5f\x6d\xa2\xda\x38\xa0\ \xd9\x8a\x5b\xc9\xb7\x6c\xe4\x59\xd9\x58\x20\x9e\xe2\x65\x92\xee\ \xf0\x18\x56\x41\x6b\xf4\xd1\x3c\x93\x45\x76\xe9\x18\x17\xd9\xbf\ \x62\xbd\xb4\xdc\x3d\xce\x1e\xf3\xf2\x8f\x2d\xcf\x65\xca\x96\x96\ \x82\x1b\x0b\x7b\x83\x2b\xb3\xdf\x6a\x91\x6e\x6f\x7f\x5a\x69\xce\ \x88\xe3\x2b\x0c\x3d\xe5\x7c\x53\x23\x85\x47\x85\x59\x88\x0f\x65\ \x7f\x31\x0f\x8a\x7b\x87\xb6\x33\x98\x7d\xdd\xf1\x6e\xb7\x7d\xee\ \x4d\xb9\x96\xac\xdb\xf3\x6e\xbc\x8c\x7b\x62\xbd\xef\x83\xab\x9b\ \x1e\xa6\x06\xab\x8e\x49\xe2\x81\x5a\x02\x51\x6e\x2d\x7f\xea\x4f\ \xb9\x8b\xd9\xff\x00\xb8\x0f\xdf\x3f\x96\x7d\xbf\xe5\x5b\x1f\x6c\ \xfe\xf9\xb2\x6c\x3c\xa5\x73\x6b\x1d\xe4\x56\x76\x8d\xb8\x41\x14\ \x4d\x78\x8b\x70\xe4\xa4\x4e\xaa\x64\x25\xfb\xde\x95\x62\x38\xd0\ \x00\x11\xf3\x6f\xbc\xbe\xd1\x6e\x5b\xbe\xe9\x7b\xcc\xde\xd0\x47\ \x7b\xba\xac\x86\x17\x96\x61\x6e\xee\xe2\x22\x63\x5e\xe6\x52\x74\ \x80\xb8\x1e\x5f\x6d\x7a\x35\xfb\x97\xbb\x3e\x3a\x51\x7c\x4b\xc8\ \x7c\x8c\xc8\xf4\x7d\x2d\x56\xc5\x96\xb2\x9b\x6f\xd7\x6c\x96\xa2\ \xc3\xc5\x5b\x58\x87\x77\x53\xed\xf8\x60\xaa\x1a\x46\x3e\xa2\x92\ \x2c\x9c\x71\xd4\x04\x70\xc0\x68\x52\x06\xa0\x0f\xb8\x07\x76\xe5\ \x0f\xbe\xb6\xe7\xf7\xc7\xda\xbe\xea\x1b\xbf\xdf\x03\x78\xba\xe6\ \xed\xbe\xd8\xdf\x5b\x6e\x92\xdc\x5e\xc9\x0d\xbb\xbe\xd6\xd7\x6c\ \x60\x57\x73\x3c\x32\xb5\xbb\xbd\xb3\x3c\x6c\xa5\x95\xd9\x49\xd0\ \xc4\x11\x66\xd7\x37\xb2\xd6\xde\xd4\xdd\x7b\x9f\xb7\x7b\x3f\x63\ \x06\xdd\x73\x27\x83\x2d\xb2\x47\x0a\xbc\x8a\xb7\x22\x21\xe2\x32\ \xa8\x47\x50\xea\x24\x0a\xc0\xd0\x80\x7e\x20\x0f\x45\xbf\xaf\xff\ \x00\x98\x6f\xc5\xb8\x68\x00\xdb\xbf\x1b\x72\x7b\x66\x8e\xde\x88\ \x68\x69\xf6\xe2\x44\x47\xf8\x2d\x3a\xc6\xa3\x8f\x79\xb5\x67\xf7\ \x2b\xfe\xf1\x60\x94\x83\xfb\xc2\xf7\x54\x5f\x95\xc6\xed\xff\x00\ \x5b\x7a\x85\xb7\x3f\x72\xfe\xee\x8f\x27\xf8\xd7\xdd\xde\xc2\x69\ \x3d\x4c\x56\x95\xfe\x69\xd4\xb9\xbb\xd6\xb3\xb7\xaa\x77\x03\x75\ \xe5\x2e\x5f\x6a\x50\xd7\xca\xef\x8e\xa3\x86\x77\xa4\xa8\xa6\x87\ \x45\xa1\x8a\x53\x45\x2a\x46\xcd\x1b\x16\x22\xdc\x0b\xf1\xef\xac\ \x5e\xd6\x7b\x6d\x78\x9e\xd1\xfb\x77\xc9\x7e\xf5\xdd\x59\x73\xa7\ \x3d\x6c\xf6\x26\x29\xf7\x3b\xe8\x16\xe9\xee\x26\x76\xac\x93\x2b\ \x5d\xac\x92\x29\x90\x2c\x61\xc9\x35\x6f\x0d\x75\x57\x48\xa6\x14\ \xf3\x86\xe3\x6d\x61\xce\xfc\xc7\xcc\x1c\x93\x14\xdb\x1f\x2f\xde\ \xdc\x07\x4b\x4b\x79\x0c\x2b\x1a\x28\xa2\xa1\x10\x95\x52\x14\x96\ \x20\x52\x83\x51\xa7\x13\xd2\x9f\xba\xf2\x3d\x9f\xb1\x7f\x97\x06\ \xe0\xad\x8f\x71\xe7\x23\xdf\x54\x3b\xca\x80\x26\x69\x72\x55\xab\ \x95\x5a\x4a\xce\xce\xa5\x8c\x44\x2b\x44\xff\x00\x74\x23\xfe\x1f\ \x36\x8b\x6b\xb6\x8e\x3e\x9c\x7b\xe2\xce\xe7\xc9\x9c\xaf\x6b\xfd\ \xf4\x73\x72\xc0\xe5\x5d\xb7\xf7\x08\xd8\x43\x7d\x27\xd2\xc1\xf4\ \xd5\x3c\xb8\x1f\x57\x81\xe1\xf8\x55\xd5\xdf\x5d\x15\xd5\xdd\xc7\ \x3d\x67\xb6\xc3\xbc\xdd\x6e\x1f\x73\x7b\x5d\xcc\xee\x77\x06\xe1\ \xaf\x48\xf1\x7c\x57\xf1\x31\xb8\x95\xa7\x89\xab\x5d\x29\x8e\x3c\ \x31\xc3\xa0\x7f\xf9\x78\xd2\x76\xfe\x7b\xb6\xb6\x6e\xee\xdf\x5b\ \x93\x3b\x9b\xc5\x43\x8b\xdc\xe9\x12\x65\xb2\x55\xd5\xe9\x0b\xd6\ \xed\xea\xc8\xc1\x8b\xee\xe7\x98\x47\xe4\x91\x13\x56\x9b\x5f\x48\ \xbf\xd0\x7b\xca\xaf\xef\x43\xe4\xed\x83\x96\x3e\xe2\x9e\xea\x4f\ \xcb\xdc\xb7\xb7\xed\xd1\xdc\x6e\x3b\x2f\x8b\xf4\xb6\xf0\xdb\xf8\ \x9a\x37\x3b\x7d\x1e\x27\x84\x89\xaf\x46\xb7\xd3\xaa\xba\x75\x35\ \x29\xa8\xd6\x2a\xfb\xb7\x6f\x6d\xb8\xfb\xfb\xca\xb6\x97\x57\xf3\ \xdc\x4d\x15\xbd\xf6\x8f\x16\x47\x93\x4d\x6d\x64\xd5\xa7\x59\x3a\ \x75\x69\x15\xa5\x2b\x41\x5e\x03\xa7\xce\xd4\xfe\x5c\x1d\xe1\xd9\ \x7d\xff\x00\xd9\x9d\x89\x51\xb8\x36\x7d\x3e\xcf\xdd\x5b\xcb\x39\ \x9c\xc2\x53\xff\x00\x1f\xc9\x8c\x9c\x58\xdc\x85\x6c\x93\xd2\xc7\ \x57\x48\x30\x8d\x0c\x13\xac\x6c\x35\x2a\xca\xe0\x1f\xc9\xf7\x8d\ \x3f\x76\xcf\xef\x54\xfb\xb1\x7b\x57\xec\x5f\xb4\x5e\xdc\x73\x75\ \xa7\x35\x36\xfb\xb1\xf2\xfd\x9d\x95\xc1\xb7\xb1\xb7\x92\x23\x35\ \xbc\x2b\x1b\x98\xdd\xaf\xa3\x2c\x9a\x81\xd2\xc5\x14\x91\xe4\x3a\ \x95\x3d\xc9\xfb\xb2\x7b\x93\xcc\xdc\xe1\xcd\x5b\xfe\xc6\x76\xaf\ \xa6\xbd\xbf\x9a\x64\xf1\x67\x75\x6d\x32\x39\x61\xa8\x08\x1a\x86\ \x87\x22\xa7\xed\xe8\x7e\xf9\x9d\xf0\xcf\xb5\x3b\xe7\xad\x7e\x39\ \xec\x9e\xbe\xcb\xed\xca\x1a\x9e\xa6\xc7\x4b\x8d\xdc\x93\x66\xb2\ \xf5\xb8\xf8\xaa\xa2\x3b\x7b\x6b\xe2\x22\x6a\x09\x29\xb1\x75\xcf\ \x54\x7c\xd8\x59\x49\xd6\xb1\xf0\x41\xfc\xd8\x61\xe7\xdc\xcb\xef\ \xc1\xec\xc7\xb0\x7e\xf8\xfd\xe8\xfd\xc2\xe7\x68\x37\xc6\xe5\xee\ \x71\xdd\xcd\xcd\x80\xb5\xb6\x8a\x59\x84\x46\xff\x00\x70\xb9\x1f\ \x50\x8f\x73\x12\xc6\xde\x1d\xd4\x58\x57\x90\x6a\xd4\x2b\x40\x09\ \x97\xfd\xd7\xf6\x73\x9b\xb9\xdb\x92\x3d\xb6\xd8\x76\xbf\xa2\xfd\ \xe5\xb4\xd9\x88\xe7\xf1\x24\x65\x4d\x7e\x04\x11\x9f\x0d\x84\x6c\ \x58\x6a\x8d\xb2\x42\xe2\x86\x99\xa0\x71\xe9\x6f\x8b\xfb\x9b\xe3\ \x57\xc7\x4f\x92\xb8\xcd\xc7\x94\xc6\xd6\xd7\x6e\xce\xb6\xcf\xd4\ \x24\xb8\xca\xda\x8a\xb8\xe0\x93\x11\xb2\xf7\x64\x32\x33\x49\x51\ \x47\x46\xcb\x76\xc8\x29\x04\x03\x7b\x7e\x3d\x8a\x7e\xf5\x7f\x7b\ \xdf\x69\x3e\xf6\x7f\x79\x6f\xb9\x8e\xe1\xed\x44\x3b\xc2\x43\xb1\ \xf3\x25\xb4\x77\x3f\x5f\x6f\x1d\xb9\xd5\x73\xba\xed\x8d\x17\x84\ \x23\xb8\x9f\x50\x02\x17\xd4\x4e\x9a\x1d\x34\x06\xb8\x23\xf6\xab\ \xda\x9e\x70\xf6\xbb\xdb\xef\x78\x60\xe6\xdf\xa2\x26\xf6\xc2\x46\ \x8b\xe9\xe4\x69\x3b\x63\xb5\xb9\x0d\xaf\x54\x71\xd0\xd5\xd6\x94\ \xad\x73\xc3\xa2\x37\xf1\x1f\x0b\x3e\xf1\xd8\x8f\x8d\xc9\xd5\x55\ \x3d\x2d\xfc\x75\x32\xd3\x15\x7a\x91\x4d\xaa\xd3\x18\x3c\xb6\x8c\ \xcc\x22\xbe\x80\xc4\x2e\xab\x5f\x8f\x7f\x50\x36\xef\xbc\xcd\xcb\ \x9b\xb2\xec\x5f\x4c\xfb\xe8\xb6\x97\xe9\x85\xc3\x3a\xc0\x6e\x34\ \x37\x82\x27\x68\xd5\xe4\x58\x4c\x9a\x44\x8d\x1a\x33\x84\xd4\x51\ \x59\xa8\x0f\x2a\x39\x96\x3d\xbe\xcf\x7f\xb1\x96\xf9\x64\x5d\xbc\ \xca\x9e\x29\x8c\x29\x90\x47\xa8\x6b\x31\x86\x2a\xa5\xc2\xd7\x48\ \x62\x14\xb5\x01\x20\x67\xa3\xad\x4d\xf0\x37\xe3\xfd\x66\xf0\xc5\ \x77\x2c\x3b\x8f\x21\x27\x53\xe0\xb1\x73\xe7\x77\x2e\xd0\xcd\x4d\ \x2d\x5a\xb6\x4b\x6e\x40\xb3\x55\x7f\x15\xae\x25\xa5\xfe\x12\xe6\ \x9e\x49\xf2\x34\xac\x84\xea\x8d\x92\x22\x60\x98\x2c\x5f\x39\xfe\ \xea\xff\x00\x78\x97\xdf\x0f\x90\xf6\xee\x7c\xfb\xa8\xfb\x83\xed\ \xec\x36\xbf\x7a\xdb\xad\xe1\x36\xfb\x1d\xd2\xc5\x96\x28\x0d\xae\ \xe3\x21\x10\xc9\x67\x0e\x15\xa7\x2b\x24\x31\x6d\x97\x6b\x20\x53\ \x1c\xab\x2d\xca\xa5\xdd\xac\x86\xe3\xa5\x3c\x9f\xec\x17\xb4\x1c\ \xc2\xdc\xbd\xee\xaf\x2d\x73\x03\x4b\xed\x44\x76\x46\x79\xad\x67\ \x52\xd2\x09\x6d\xd4\x6b\x59\x9f\x24\x20\x2a\xed\x73\x11\x5a\x86\ \x42\xb1\x16\x8a\x55\xf0\xeb\x1f\xe5\x67\x73\xf6\x2f\xcb\x7e\xf6\ \xc4\xe2\xf6\x75\x5d\x5e\x33\xaa\x76\x74\xcd\x8f\xd9\xdb\x76\x8d\ \xa4\x8a\x07\x4d\x49\x15\x56\xe3\xca\xc3\x1d\xa2\x97\x2f\x93\x58\ \xc6\x85\xd2\x16\x92\x94\x24\x0b\x76\x12\xc9\x2f\x4a\xbe\xe2\x7f\ \x73\x1d\xab\xee\xab\xc8\x29\x0d\xec\x91\x5f\x7b\xbd\xbd\x2a\x4d\ \xbc\xdf\x8a\x35\x1c\xf7\xad\x8d\xbb\x9a\xb7\xd2\xdb\x16\x21\x98\ \xb5\x6e\x67\xd7\x70\xc1\x55\xa2\x8a\x18\x1b\xde\xff\x00\x79\x4f\ \xb8\xfb\x84\xb3\x34\x4d\x07\x2b\x5a\x16\x5b\x38\x0e\x3b\x78\x19\ \xa4\x5e\x1e\x24\x80\x60\x53\xf4\xd2\x91\x8a\x90\xcc\xe7\x33\x0f\ \xfc\xbb\xb7\x86\xee\xda\x78\x2c\x8d\x46\x7b\x11\x13\x64\x31\x94\ \x75\x8a\x93\x57\xd6\x24\xe8\x93\xc2\xb2\x2a\x4e\xab\x8f\x70\xb2\ \xa8\x6b\x30\x0c\x40\x3f\x9f\x61\x8f\x74\x3f\xbd\x63\xee\xaf\xed\ \x3f\xb8\x1c\xe5\xed\x7f\x37\x59\xf3\x63\x73\x36\xc3\xb8\xcd\x63\ \x72\x60\xb0\xb7\x92\x13\x35\xbb\x98\xe4\x31\x3b\x5f\xc6\xce\x9a\ \x81\xd2\xc5\x14\x91\xf8\x47\x45\xfc\xa9\xf7\x5e\xf7\x6f\x9b\x36\ \x1d\x9f\x9b\x36\x36\xd9\xc6\xd3\xb8\xdb\xa4\xf1\x09\x2e\x24\x57\ \xf0\xe4\x50\xcb\xa9\x45\xbb\x00\xd4\x39\x01\x8d\x0f\x9f\x46\x1f\ \xba\xbe\x22\xf6\x56\x57\xe1\x36\x03\xe3\x1f\x52\x64\xb6\xfd\x36\ \x74\x67\x71\x55\x5b\x97\x23\x9b\xcb\x56\x63\xa8\x2a\x31\xc9\xb8\ \x72\xbb\xcf\x28\xd1\x56\xc1\x8c\xc8\x54\xd4\xce\x77\x13\x52\x2c\ \x6a\xd1\xa0\xf0\xa7\xd5\x42\x04\x3c\x70\xe4\xcf\xbe\xaf\xb3\xa7\ \xfb\xc4\x7d\xc2\xfb\xd9\xf3\xcc\x1b\xd1\xe4\x97\xb5\xb8\x8f\x69\ \x48\x6d\xa2\x92\xed\x08\xb3\xb6\xda\xed\xbc\x58\x4d\xc4\x71\xc2\ \x1a\xc1\x6e\x5a\x4d\x32\xc9\x49\x5f\x4f\x79\x76\x90\x66\xc5\xdf\ \xb3\xfc\xdb\x17\xb0\x3c\xbb\xed\x76\xda\x6c\x8e\xf6\xae\x8d\x76\ \x5a\x46\x10\x9a\xcb\x25\xcc\x9a\x1f\xc3\x2c\xf4\x9c\xc6\x16\xaa\ \xb5\x51\x5c\x50\x2f\x45\x03\x63\xff\x00\x2a\xae\xcf\xc7\xe2\x22\ \x87\x74\xee\x7d\xb0\xf9\x10\x80\x48\x68\x73\x39\x1a\x88\x75\x71\ \x7b\x3c\x98\x78\x18\x8e\x3f\xa7\xbe\xa3\x5a\xff\x00\x7c\x9f\xdc\ \xed\x23\x02\x7b\x1e\x73\xd7\xf2\xdb\x6d\x8f\xfd\xe4\x7a\xc5\xcd\ \xc3\xee\x8f\xef\x34\xb3\xb3\x59\x9d\x90\x45\xf3\xb9\x94\x7f\xda\ \xb9\xe9\x5b\xd5\x5f\x16\x8e\x1e\x7c\x8b\x63\x2a\xaa\x32\xab\x43\ \x14\xcf\x58\xd4\xfe\x49\xd2\x08\xa2\x63\x13\xcb\x26\x95\x3a\x50\ \x37\xe4\xfe\x39\xfc\x7b\xea\x9e\xe7\xee\x1f\xb6\xbc\x91\x6b\xc9\ \x77\x9c\xe1\xce\xbb\x7e\xd2\x9c\xc5\x75\x0d\xae\xdc\x2f\x27\x8e\ \x06\xba\xba\xb8\x8c\xc9\x15\xbc\x41\xd8\x06\x95\x94\x61\x41\x23\ \x56\x95\xae\xa6\x50\xd8\x5d\x26\xdd\xcd\x9c\xcb\x26\xf7\x06\xcd\ \xcb\xb7\x37\x6d\xb6\x42\xf3\x5c\x98\x23\x69\x04\x50\xc6\xda\x5e\ \x57\x2a\x30\x80\xf9\x91\xc2\xa6\x94\x06\x99\x3b\x1f\x74\x7c\x8d\ \xd9\xfb\x56\x93\xaa\x76\xa6\x77\xee\x76\x35\x76\xe6\xc5\xd4\xcd\ \x54\xd1\x35\x46\x7a\x8f\x00\xb5\x28\xd5\x7b\x4e\x8f\x24\xd2\x37\ \x83\x6f\xd5\xcf\xa6\x46\x4d\x3e\x55\x55\x68\x96\x41\x03\xb4\x47\ \x14\xbd\xd0\xfb\x8b\xfb\x13\x73\xef\x66\xeb\xf7\xa6\x4e\x56\x0b\ \xee\x05\xbe\xd7\x72\xe6\x34\x21\x6c\xe4\xbf\x11\xb1\x8f\x75\x92\ \x00\xa3\x55\xfc\x69\xa9\x44\x9a\xb4\x33\x95\xb8\x78\xda\xe9\x16\ \x61\x35\x72\x1f\xde\x03\x9b\xdf\x91\x6d\x3d\xaa\xb9\xdc\xcf\xee\ \x27\xb8\x8d\x43\x35\x4c\xcb\x01\x61\x5b\x55\x72\x71\x03\x1a\x1d\ \x34\xa8\x5a\xc6\x18\x44\x4a\x75\x07\xf9\x90\xed\x7c\x8e\xff\x00\ \xf9\x5f\xf1\xdf\x60\x8c\x95\x6e\x37\x09\xb9\xb6\xee\x03\x17\x94\ \x9e\x86\x55\x8e\xa6\x28\x32\x9b\xfb\x29\x8f\xab\x9e\x9b\xcb\x1c\ \xb0\xfd\xcc\x54\xb2\x5d\x35\xab\x2e\xa0\x2e\x08\xe3\xdf\x34\xff\ \x00\xba\x67\x9a\xb7\x1e\x48\xfb\x9d\x7d\xe6\x39\xc7\x6c\x86\x39\ \x6f\x76\x7d\xcf\x70\xbf\x8e\x39\x35\x78\x6f\x25\xa6\xc7\x6f\x3a\ \x24\x9a\x4a\xb6\x86\x68\xc2\xb6\x96\x56\xd2\x4d\x08\x34\x3d\x65\ \xa7\xde\x8f\x6a\xb2\xde\x3d\xd6\xf6\xf3\x6d\xbc\xa8\x4b\xbb\x6b\ \x7b\x72\xc2\x9a\x95\x65\xbd\x91\x09\x5a\xd4\x54\x6a\x24\x54\x11\ \x5e\x3d\x09\x7d\x5f\xf1\x6b\x6d\x74\x07\xcc\xfe\xad\xa0\xdb\x1b\ \x9f\x3f\x9a\xa1\xa5\xc0\x6e\x0c\xa3\x0d\xc5\x53\x45\x2d\x7c\xb5\ \x19\x3d\x91\xbe\xb1\xb2\xae\x9a\x0a\x4a\x28\x0c\x11\xaa\x2b\x2f\ \xa3\x55\xef\x72\x7f\x06\xfe\xec\x7d\xe4\x79\xaf\xef\x5f\xfd\xd3\ \x3f\x78\x1f\x75\xb9\xcb\x64\xdb\xf6\xed\xe2\x2d\xfb\x6f\xb1\x10\ \xd9\xf8\xde\x09\x8e\x0d\xf3\x97\xe4\x57\x3e\x3c\xb2\xbe\xb2\x67\ \x60\xdd\xda\x68\xa2\x80\x66\xa4\x7c\xb1\xc8\x5b\x67\xb5\xbf\x7b\ \x1e\x41\xe5\x0d\x9e\xe6\x7b\x8b\x39\x2c\x2e\x27\xf1\x25\xd1\xac\ \x33\xd9\x6e\x00\xaf\x62\xaa\xd0\x08\xc5\x31\x5c\x9c\xf5\x1f\xa1\ \xab\x72\xa9\xfc\xc9\x7b\xe7\x1f\x3d\x43\xbd\x03\xd6\x6e\x89\xa9\ \xe2\x66\x62\xa8\x0e\x37\x14\xea\x14\x7d\x05\x89\x3e\xc1\x1e\xfd\ \x4b\x27\xfc\x99\x9b\xd9\xc8\x8b\x76\x57\x66\xff\x00\xb4\xab\x8e\ \x84\x7c\x97\x6f\x0f\xfc\x18\x3c\xcf\x70\xa8\x3c\x4d\x37\x80\x9f\ \xf9\xb5\x1f\x4b\xef\x86\xdb\xbb\x29\x9f\xf9\x2b\xf2\x2f\x19\x5b\ \x2b\xbd\x36\x23\x23\xbc\x61\xa5\x56\x6b\x85\x58\x77\xe4\x74\xe8\ \x00\xbf\x16\x41\xed\x5f\xf7\x9c\x5d\xc9\x3f\xf7\x7d\xfd\xcc\xe2\ \x73\x84\x3b\x25\x3f\x2e\x5b\x94\x74\x5d\xf7\x68\xdb\x61\xb3\xfb\ \xc0\xfb\xc3\x71\x1a\xd1\xe4\x5b\xd2\x7f\x3d\xc9\x0f\x44\x87\xe2\ \x75\x3c\xf5\x3b\xdb\x7c\x26\xb7\xd4\x77\x0e\x64\x21\x2e\x6e\xa7\ \xf8\x84\xf6\xb1\xbd\xc5\xbd\xf7\xeb\xdb\x02\xb2\x72\xae\xc3\x14\ \x80\x34\x6d\xb7\xc0\x08\x22\xa0\x83\x0a\x02\x08\x38\x20\x8e\x3d\ \x73\xdf\xdc\xf8\xb4\x5f\xdc\x48\xb8\x61\x3b\x90\x47\x10\x75\x9c\ \xf4\x32\x6f\xbf\x8a\xfd\xbf\xdc\x1b\xa9\x86\xd9\xae\xa9\x86\x9a\ \x49\x40\x9f\x27\x5d\x57\x2c\x38\xea\x38\xfe\x9a\xea\xaa\xd8\xc8\ \xc4\x22\x8b\xe8\x8d\x64\x90\x8f\xd2\xa7\xdc\x2b\xf7\x8d\xfb\xcb\ \xfb\x0d\xf7\x54\xe5\xc3\xb9\xfb\x91\xce\x16\x9b\x6b\x14\x66\xb6\ \xdb\x2d\x55\x24\xbf\xba\x35\xa9\x16\xd6\x31\x95\x6a\x33\x1a\x34\ \xf2\x78\x56\xc8\xc4\x78\xb3\x25\x6b\xd0\xbb\xda\x1f\x6f\x79\xdf\ \xdd\x4b\xd1\x69\xcb\x9b\x04\xd7\x64\x10\x25\xba\x9b\x52\xdb\xc5\ \xff\x00\x35\x6e\x1a\xa2\xa0\x70\x8d\x75\xca\x40\xec\x8d\xa9\xd2\ \xd1\xa8\x7a\x13\xe0\x3e\x12\x7c\xe5\x75\x4c\xdd\xed\xdf\xc9\x0c\ \x9f\x64\x93\x54\xa5\x2e\x2b\x6d\x55\x94\x0a\xd0\xc2\x19\xab\xe9\ \xf6\xfa\x25\xc8\x69\xca\x55\xe5\x25\x22\xca\xb4\xf1\x48\x42\xf2\ \x3f\x78\x8b\xef\xa1\xfd\xe7\x4c\xb1\x47\x69\x71\xed\x87\xdd\x0e\ \x52\x08\x33\x87\x6b\xbd\xe2\x1a\x92\x92\x68\xa4\x32\x5f\x87\xa0\ \x65\x40\xd6\xfb\x54\x60\xff\x00\x6b\x7b\x3c\x21\x9b\x34\xf6\xf3\ \xec\xc7\xdd\xbd\xe9\xe2\x45\xcc\xbe\xed\x25\x41\xf0\xf4\x88\xac\ \xdf\x81\x5d\x55\x75\x80\xae\x41\x24\x49\x74\xd4\xf8\x21\x47\x20\ \x55\xd6\x7f\x72\xfc\xa7\xf9\xa9\xda\xf0\xee\x0d\xf9\x97\xa9\xfe\ \x0d\x49\x34\xf4\xfb\x73\x6d\xe1\x69\xa5\xc7\x6d\xad\xb9\x41\x52\ \xf1\xbc\xd4\xb8\x8c\x7a\xb4\xf2\xb4\x95\x1e\x14\xf3\x54\x4f\x24\ \xf5\x53\xe8\x50\xf2\x32\xa2\x2a\xf5\x0b\xee\xdb\xf7\x5d\xf6\xa7\ \xee\xbb\xca\x17\x1c\xb7\xed\xb6\xd4\x2c\xed\x65\xd0\xf7\xd7\xf7\ \x2e\x1a\xee\xf5\xe3\x0c\x16\x5b\xbb\x82\x11\x74\xa6\xb6\xf0\xe2\ \x8d\x62\xb7\x8b\x5b\xf8\x71\xab\x3b\x96\xc7\xaf\x74\xbd\xd6\xdd\ \xf9\xf6\xf6\x3d\xc3\x98\x6e\x3c\x7b\xb5\x0c\x20\x82\x35\x3e\x1c\ \x21\xa9\x55\x8a\x30\x49\xa9\xa0\xd4\xc4\xb3\xb5\x06\xa6\x21\x45\ \x2c\x73\xaa\x7f\x96\xdd\x1d\x7c\x34\xdb\x87\xb4\xf7\x15\x66\xdf\ \xda\x94\x51\x0a\xdc\x84\x66\xaa\x2a\x5c\x85\x6d\x2c\x4b\xe4\x96\ \xf5\x35\x8b\xf6\xd8\x8a\x2d\x20\x97\xa8\x99\x58\x85\x1e\x94\xb1\ \xd6\x31\x2f\xef\x7d\xfd\xe6\x3c\x8d\xed\x1e\xe1\x2f\xb4\x7f\x77\ \x8b\x34\xe7\x9f\x7d\xee\x24\xfa\x65\x5b\x51\x25\xd5\x85\x95\xc3\ \x1d\x22\x36\x36\xd5\x7d\xc6\xf0\x37\x68\xb2\xb4\x6a\x2b\xd5\x66\ \x9d\x24\x43\x03\x8d\xfd\x9d\xfb\xbc\xf3\x1f\x39\xdb\xaf\x38\x7b\ \x84\x4e\xc1\xc8\x31\xaf\x8a\x4c\xda\x62\xb8\x9e\x31\x92\xca\x24\ \xa0\xb6\x86\x99\x33\xcc\x32\xb4\x31\xc6\xca\xc2\x40\x18\xef\x9e\ \x9b\xf8\xcf\x94\xed\xa9\xf1\x7d\x37\x5f\x57\x26\x0e\x21\x1a\x4f\ \x4b\x35\x65\x45\x66\x3e\x9f\x27\x1c\x8e\x95\x09\x84\xad\xae\x9e\ \x5c\x9d\x5e\x30\xa8\x5b\x35\x46\xa3\xaf\x51\x47\x78\xca\x5b\x2f\ \x3e\xe5\xf2\xfd\xe5\x77\x7f\x67\xb6\x9b\x8f\xbd\x8d\x8e\xdd\x07\ \xb9\x2f\x29\x68\xfc\x0f\x0d\x2e\x5a\xd1\x95\x4c\x47\x71\x82\xdd\ \x45\xa4\x17\x81\xb5\x6a\x4b\x63\xa4\x46\x63\x59\x63\x8a\xe1\x65\ \x53\x0f\xfb\xe5\x73\xc8\x3b\x7f\x35\x5e\x0f\x69\xe5\xb9\x93\x96\ \x42\x51\x8c\x81\x8c\x62\x50\x48\x6f\xa6\x79\x09\x95\xe1\xa5\x28\ \xd2\x8a\xea\xd4\x51\x9e\x32\xa7\xa3\xed\xd4\x9d\x52\x94\x03\x1b\ \x80\xc7\x7f\x9a\x94\x2f\x9a\x61\xea\x14\xf4\xa9\x63\x3c\xe6\xe0\ \x8b\xa4\x63\xd2\x0d\xb5\x35\x87\xe7\xdc\xc3\xf7\x99\xfb\xc0\x72\ \xaf\xdd\x5f\xd8\xce\x76\xf7\x7f\x99\x19\x24\xfd\xdf\x6c\x52\xce\ \xd8\xb6\x96\xbd\xdc\x25\x05\x6c\xed\x13\x3a\xbf\x56\x5a\x19\x59\ \x43\x18\xad\xd2\x69\xf4\x95\x88\x8e\xa1\x8f\x6d\x7d\xbb\xde\x3d\ \xe6\xf7\x17\x62\xe4\xdd\xb9\x59\x4d\xcc\xba\xa7\x94\x0a\x88\x2d\ \x90\x83\x3c\xc7\x14\xec\x4a\x84\x06\x81\xe5\x64\x8e\xa0\xb8\xe8\ \xb1\x7c\xf5\xdf\x99\x6e\xd4\xdf\xfb\x0b\xe2\x8f\x55\xde\xa7\xed\ \x72\xd8\xfc\x76\x42\x9e\x96\x72\xb4\xf5\x1b\x92\xa4\x2d\x14\x34\ \xf5\x6e\x81\x92\x3a\x6d\xb7\x42\xef\xe6\x95\x88\x11\x3c\xb3\xeb\ \x03\xc7\x7f\x7c\x92\xfe\xef\x9e\x45\xff\x00\x5a\xaf\x6a\xbd\xe0\ \xfb\xfe\xfd\xe3\x2f\x8a\x73\x9f\x38\xc5\x77\xba\x3d\xcc\xc9\xfa\ \xd0\x6c\xfe\x23\x5d\xc9\x2c\x6a\x68\xda\xf7\x6b\x8d\x32\xc3\x02\ \x54\x49\x04\x3b\x78\x84\x9f\x17\x40\xcf\x6f\x7c\xb7\x48\xf9\x93\ \x99\xb9\x3f\xd8\x7f\x6e\xed\x81\xe5\xfd\x8c\xc3\x68\x91\x21\xec\ \x7b\xc0\xa2\x15\x46\x3c\x29\x69\x1d\x51\xe4\x39\x59\x1e\xe0\xbf\ \xc3\x5e\x84\xbc\xae\x43\x7c\x7c\x1f\xd9\x74\x3d\x63\xb3\x77\x5e\ \xdd\xdd\x46\x4f\xb8\xcf\x53\xc7\x3e\x0d\xa3\xc8\x24\xb5\xa6\x1a\ \x67\x92\xb6\x92\x4a\x99\xd6\x05\xa9\x6a\x3f\xda\x55\x9e\x42\x42\ \x12\x42\xdc\x5c\xf7\xda\xef\x6c\xfe\xed\x1f\xde\xb3\xb5\xee\x3f\ \x78\x5f\x71\xfd\xa0\xe6\x9d\x8f\x99\x36\xcf\x0b\x66\xd4\x37\x35\ \xfa\x2b\x95\xb7\xf1\x2e\x07\xd2\x49\x12\x47\x24\xad\x0f\xd4\x8f\ \xa8\x69\x2d\xa1\x55\x69\x52\x38\xde\x62\x92\x68\x21\xe6\xbe\x67\ \xf7\x43\xee\xb3\xba\x41\xed\xef\x2e\x73\x8e\xd5\x79\xb4\xdd\xea\ \xbd\xa7\xd2\x9f\x1e\x23\x26\x98\xff\x00\x59\x5c\xb2\xa0\x7f\x0b\ \xf4\xc2\xca\xe4\x85\x66\x65\x40\x57\x50\xc9\xd3\x1d\xf3\xda\x11\ \xf4\xa7\x61\xf7\xdf\xc9\x2c\x86\x2f\x65\x6c\x5c\x2d\x05\x4c\xfb\ \x6e\x3c\x56\x16\x9a\x97\x33\x53\x47\x46\x1a\x39\x73\x10\xc3\x59\ \x25\x44\x55\x95\x39\x5c\x9c\xb1\x50\xe2\xa9\x59\x41\xaa\xa9\xd5\ \x75\x2a\xf1\x31\xe6\x87\xde\xeb\xee\xd3\xec\x47\x2e\xfd\xe3\xfd\ \xb9\xfb\xaf\x7d\xd3\xb9\x3e\xf3\x77\xf7\x2a\x4b\xa4\xfd\xe9\xf5\ \x57\xf7\x17\x16\xe8\xf2\x00\xe9\x65\x21\x88\xc6\xd0\xa5\xbd\xb2\ \xc9\x79\xb9\x4e\x8d\xaa\xde\x12\x80\x3a\x3c\x73\xa8\xca\x3f\x68\ \xbd\xc3\xe7\xad\xd7\xdb\xed\xfb\xdc\x9f\x74\x37\xa8\xad\xb9\x7b\ \xc2\x3f\x4b\xe1\x5b\xc7\x1c\x84\x29\xd2\x67\x5d\x41\x83\x99\x24\ \x2b\x15\xba\x11\x47\x70\xc4\x86\x56\x42\x6a\x97\x6d\x7f\x32\x1f\ \x9c\xbd\xa5\xb9\xe2\xc7\xf5\x8e\x33\x6c\xd6\xd2\x57\xe5\x0d\x1e\ \x27\x16\x76\x3d\x2e\x47\x29\x52\xb3\xd4\x78\xe8\xa9\x99\xe0\x99\ \x44\xb5\x6e\x85\x43\x14\x55\x52\xd7\x20\x01\xf4\xe9\xbe\xe1\xfd\ \xd5\x5f\x72\xde\x5a\xe5\x8b\xce\x67\xe7\x08\x77\x3b\x1d\xa7\x6f\ \xb3\x33\xdf\x5d\x3e\xed\x2c\x36\xb0\xac\x49\xaa\x79\x4b\xca\x0f\ \x87\x0a\xd1\x98\x6b\x72\x42\xd0\x16\x27\x8c\x06\x9f\x79\x7f\x75\ \xae\x37\x08\x36\xbb\x09\xed\xe7\xbf\xb8\x98\x24\x11\xad\xaa\xbc\ \xae\xcc\xd4\x44\x0a\x94\xd4\xe6\xa0\x60\x0a\x9f\x20\x3a\x32\xdb\ \xbf\xe5\xdf\xce\x9e\xb1\xcd\x0d\xa7\xd8\x1b\x53\x69\x50\x6e\x34\ \xa0\xa0\xc8\x3c\x50\x60\xe9\x2a\xe9\xe5\xa6\xc8\x53\xac\xd0\xcb\ \x4f\x57\x8f\xc8\xd4\x51\x54\x2a\xbe\xa8\x9c\xc6\xec\xa9\x34\x6e\ \x84\xea\x53\xec\x83\xd9\x8f\xee\xeb\xfe\xee\xcf\x7f\xb9\x26\x2f\ \x70\x7d\xa9\x93\x7c\xdd\x79\x5d\xae\xe7\xb6\xf1\x57\x71\xba\x89\ \x96\x6b\x77\xd1\x22\x49\x0c\xd0\xa4\xb1\x31\x05\x25\x41\x22\x2b\ \x3c\x32\xc5\x28\x1a\x24\x52\x53\xf3\xa7\xde\x0b\xdf\xce\x42\xde\ \xdf\x61\xe6\x79\xac\xad\x37\x21\x12\x49\xa1\xad\xa2\x60\x52\x41\ \x55\x65\x75\x66\x46\x15\xaa\x92\xac\x40\x75\x65\x39\x52\x3a\x79\ \xea\x3e\xc6\xec\xfe\xc6\xdc\x99\x1c\xee\xf6\xa1\x5a\x6a\xbc\xad\ \x4f\xdd\x54\xad\x35\x3b\x53\x53\x2c\xae\x15\x48\x82\x0d\x4c\x23\ \x4b\x2f\x02\xe7\xdf\x63\xbd\x94\xe4\x1d\x8b\xda\x0f\x6f\x79\x4f\ \xda\xfe\x4f\x82\x78\xb9\x4f\x65\xb4\x16\xf6\xab\x2c\x86\x59\x04\ \x4a\xcc\xc0\x3c\x8c\x01\x73\x56\x39\x23\xac\x0d\xf7\x43\x72\x93\ \x9b\xb9\x8b\x78\xe6\xcd\xce\x68\xdf\x79\xbe\x98\xcb\x2b\x22\x84\ \x52\xc4\x01\x50\xa3\x00\x60\x63\xa3\x7e\x28\x78\x1c\x7e\x07\xfb\ \xd7\xfc\x1b\xdc\xcd\xe3\x7c\xfa\x88\x4d\xb6\x4e\x3a\xef\xec\xbf\ \xc3\xfd\xf7\xfb\x7f\x7e\xf1\x7e\x7d\x7b\xe9\x7e\x5d\x7b\xec\x7f\ \xc3\xfd\xf7\xfc\x95\xef\xde\x37\xcf\xaf\x7d\x2f\xcb\xaf\x7d\x8f\ \xf8\x7f\xbe\xff\x00\x92\xbd\xfb\xc6\xf9\xf5\xef\xa5\xf9\x75\xff\ \xd4\xb9\xdf\xb0\xff\x00\x0f\xf7\x83\xff\x00\x14\xf7\x9d\x7e\x37\ \x5c\x8b\xfa\x6f\x97\x5e\xfb\x0f\xf0\xff\x00\x78\x3f\xf1\x4f\x7e\ \xf1\xba\xf7\xd3\x7c\xba\xf7\xd8\x7f\x87\xfb\xc1\xff\x00\x8a\x7b\ \xf7\x8d\xd7\xbe\x9b\xe5\xd7\x7f\x61\xfe\x1f\xef\x07\xfe\x29\xef\ \xde\x37\x5e\xfa\x6f\x97\x5d\x7d\x87\xf8\x7f\xbc\x1f\xf8\xa7\xbf\ \x78\xdf\x6f\x5e\xfa\x6f\x97\x5e\xfe\x1f\x7f\xaa\x83\xfe\xb8\x3e\ \xfd\xe3\x75\xb1\x6d\xf2\xe9\x29\xf2\xe3\xe4\xc6\xe1\xf8\xb7\xd2\ \x7d\x7d\xbd\x36\xd6\x17\x07\x9b\xaf\xcd\xe4\xf0\x9b\x6c\xd1\xe7\ \x69\xf2\x35\x14\xa9\x14\xbb\x6a\xb7\x23\xe4\x89\x31\xb9\x2c\x5c\ \xc2\x60\xf4\x01\x41\x2e\x56\xc4\xf1\x7b\x11\xf2\x63\xed\x9f\xdd\ \x5f\xdb\x8f\xbd\x97\xf7\x80\x7d\xf6\xb9\x3b\xdc\xbd\xe3\x7b\xb2\ \xda\xf6\xde\x68\xe6\x5b\xd8\x9b\x6c\x9a\xd6\x19\x5a\x6f\xeb\x24\ \x90\x69\x91\xae\xac\xef\x10\xc7\xa2\x66\x34\x58\xd5\xb5\x05\x3a\ \xe8\x08\x3d\xa5\xbd\xf7\x17\x99\x3d\xb3\xfb\xbf\x7b\x1b\xb9\x72\ \xd5\xad\x94\xb7\x33\xec\xfb\x5c\x2e\x2e\x52\x47\x50\x83\x6d\x47\ \xaa\x88\xa6\x84\x86\xd4\xa3\x25\x88\xa5\x71\x5a\x10\x45\x31\x7f\ \xcc\xdf\xe4\x7e\x56\x8e\x2a\xda\x6e\xa7\xeb\xe7\x86\x55\x0c\xac\ \xb8\x3d\xe2\x41\x04\x5c\x58\x8d\xe3\xfd\x3d\xe7\x92\x7f\x72\xaf\ \xdd\x69\xd4\x30\xe7\x7f\x70\xa9\xff\x00\x3d\xdb\x47\xfd\xe8\xba\ \x87\x25\xfb\xdf\xfb\x93\x13\x94\x6d\xb7\x97\xea\x3f\xe1\x17\x7f\ \xf6\xdd\xd1\xaf\xec\xaf\x91\x1b\xbf\x27\xf0\x4a\x87\xbc\xb7\x2e\ \x1f\x1f\x85\xdd\x19\x4c\xed\x0d\x26\x4b\x13\x8a\x82\xb6\x9a\x82\ \x95\x21\xed\x3a\xbd\xa9\x01\x82\x0a\xfa\xcc\x85\x62\x79\xb1\xf4\ \x71\xca\xfa\xe6\x7b\xbb\x92\x2c\xa4\x01\x88\xff\x00\x76\x4f\x68\ \x39\x5f\xee\xcf\xfd\xee\x63\xda\x5e\x48\xbe\xdc\x6e\x79\x6b\x66\ \xdb\xe7\x10\xc9\x7d\x24\x32\x5d\x37\xd6\x72\xc4\x77\xb2\x78\xaf\ \x6f\x05\xb4\x4d\x49\x6e\xa4\x54\xd1\x02\x52\x30\x81\xb5\x30\x2e\ \xd2\x5f\xb9\xdb\xf5\xff\x00\xba\xbf\x75\x17\xdf\xf7\xa8\xed\xd2\ \xfe\xf6\x74\x2e\x20\x57\x58\x87\x83\xb9\x34\x4b\xa4\x49\x24\x8c\ \x3b\x62\x52\xd5\x76\xab\x54\x8a\x0a\x00\xa4\xf8\xe5\xb9\xce\xf6\ \xa4\xda\x79\xe9\x11\x43\xcd\x5b\x43\x29\x36\xe4\x17\x04\x9e\x7d\ \xf6\xcf\xfb\xc0\xef\x7e\xab\xee\x39\xf7\x8d\x72\x38\xf2\xe4\x9f\ \xf5\x76\x2e\xb9\xff\x00\xec\x0e\xd8\x36\xff\x00\xbc\x27\xb6\xb1\ \x0e\x03\x73\x1f\xf1\xc7\xe8\x95\xfc\xab\xa7\x13\x7f\x30\x28\x09\ \x50\x6f\xb2\x36\x60\xe4\x5f\xe9\x0d\x4f\xbc\x4d\xfe\xe7\x56\xa7\ \xdd\x23\x60\xff\x00\xa5\xfe\xe7\xff\x00\x57\x53\xac\x89\xfb\xe3\ \x47\xab\x9f\xf7\x3f\xf9\xe2\xb7\xff\x00\x8e\x1e\x8e\xd6\xe1\xd8\ \xb0\x6e\xbd\xb3\x16\x32\x55\x55\x49\xa8\xc4\x64\x80\x41\xf5\x25\ \xbf\x07\xdf\x62\x65\x55\x9e\x10\x87\x81\x1d\x73\xee\xd9\xda\xd2\ \xe8\xca\x38\x86\xe9\x83\xae\x3a\x27\x62\x7c\x46\xdb\x5b\xe3\xbf\ \xb2\xd8\xc9\xf3\x5b\xd1\xb1\x0d\x8c\xdb\xb8\xe4\x8e\x59\xea\x21\ \x6c\xad\x4c\x14\xb8\xec\x45\x14\x68\x93\x49\x1e\x4b\x73\x65\xa5\ \xa7\x86\x49\x02\xb3\xc3\x4f\xe9\x51\xeb\x91\x1b\xe6\xa7\xef\xb7\ \xef\x93\xfd\xf8\xfe\xf1\x9c\xa7\xf7\x34\xf6\x53\x9a\x2d\x60\xf6\ \xab\x6d\xbf\x92\x7d\xe3\x76\x69\x51\x6d\xa7\x92\xc6\x29\x26\xbe\ \xb9\x57\x66\x55\x96\xcb\x69\xb6\x49\xcc\x5d\xcb\x1d\xe5\xe0\x67\ \x56\x68\x52\xda\xe0\xf5\x6f\xd8\xce\x4e\x9f\xd9\xaf\x6d\xb7\x0f\ \x77\xf9\xe3\x6b\x95\xb9\xa6\xea\x05\x4b\x3b\x30\xa4\xcb\x1a\x4e\ \xca\x90\x46\xca\x01\x29\x35\xdc\x8c\x9a\xf0\x5a\x18\x68\x08\x0e\ \x65\x8c\x56\x3f\xc3\xac\x3f\x62\x76\x7f\xcb\x6f\xf4\xd1\xbc\xb2\ \x75\x59\x3c\x8e\x67\xb1\x29\xf3\xb9\x7a\x89\x11\xe2\x84\x4c\xd5\ \xe8\xb1\xd2\x53\x40\x5d\x96\x92\x83\x1f\x4e\x89\x4f\x4f\x00\xf4\ \xc3\x04\x68\x83\x85\x03\xdf\x4a\xfd\xfb\xf6\xdb\x95\xfd\xac\xfb\ \x84\x7b\xd7\xc8\x3c\x8b\x64\x2d\xf9\x3f\x67\xe4\x0d\xc2\xde\xd9\ \x03\x06\x26\x35\xb4\x90\x99\x1d\xe8\x3c\x49\x66\x62\xd3\x4d\x2d\ \x2b\x2c\xae\xf2\x1c\xb1\xea\x07\xe5\x9e\x6a\xbc\xe6\x2f\x7c\x39\ \x07\x74\xde\x64\xd7\xbc\xdd\xef\xf6\xcf\x21\xa5\x3b\x8c\xab\xda\ \x07\xe1\x55\x14\x55\x5f\xc2\xa0\x28\xc0\xe8\xc3\x7c\xaf\x87\xc9\ \xf3\xd2\x9c\xdb\xfe\x60\x8d\x9f\xfe\xc3\xf6\x2a\xff\x00\xde\x7d\ \xc4\x5f\xdc\xec\xda\x7e\xe8\xbb\x07\xfd\x2f\xf7\x4f\xfa\xba\x9d\ \x1f\xfd\xf1\x63\xd7\xee\x16\xe7\xff\x00\x3c\x56\xdf\xf1\xc3\xd0\ \x9d\xfc\xcb\xab\x2b\x31\xf0\xfc\x59\xc3\xd3\x39\x02\x7a\xed\xdf\ \x24\xb2\xa1\x65\x2c\x71\xb4\x5b\x0a\x99\x17\x48\xb8\xd1\x27\xdf\ \xb1\x37\xe4\x58\x7b\xc5\xcf\xee\x7c\x95\x77\x6f\x76\xfe\xf9\xfc\ \xcc\x9a\xa3\x69\x37\x5d\xba\x91\xd4\x1a\x0b\x9b\xcd\xf6\x5c\x9c\ \x54\xa7\x84\x05\x68\x01\xa9\x38\xc7\x52\x8f\xde\xb6\xdc\x5b\xf2\ \x5f\xb4\x7b\x63\x80\xc1\x2c\xa7\x1a\xbe\x71\xc3\x64\x98\x1f\x3d\ \x44\xfe\x5d\x09\x9d\xad\x1b\x8f\xe5\xe5\xd9\x88\xf7\xd4\xd8\x8a\ \x32\x6f\xf5\xe7\x74\xed\xb3\xfd\x2f\xed\x4f\xbe\x0c\x4f\xf7\xd5\ \x7b\x3c\xc7\xfe\x8d\x76\x9f\xf7\x67\xdc\x7a\x2d\xf6\xc6\x30\xbf\ \x73\x7e\x6b\x41\xc3\xeb\x67\xff\x00\xb4\xbb\x7e\x91\x9f\x04\x76\ \xc4\xb9\xfd\x8f\x8c\xa6\x55\x64\xa6\x48\x63\x96\xb6\x70\xbf\xe6\ \x69\xc6\x90\x6c\x48\xd3\xe5\x94\xfa\x50\x7f\x53\x7b\x58\x1f\x7d\ \x52\xfb\xda\xfd\xeb\xf9\x73\xee\x8b\xec\x16\xf9\xee\x26\xe0\xd0\ \xcf\xcd\xf7\x00\xda\x6c\xd6\x4e\x4d\x6e\xf7\x09\x11\x8c\x7a\x95\ \x4e\xaf\xa6\xb6\x50\x6e\x2e\x9e\xaa\x3c\x24\xf0\x95\xd6\x69\xa1\ \x0d\x88\xbe\xdf\xfb\x39\xb9\x7b\xcb\xee\x85\x97\x2d\xc0\xaf\x1e\ \xcb\x19\x13\x5e\xce\x07\xf6\x36\xca\xc3\x55\x09\xc7\x8b\x29\xa4\ \x51\x0c\x9d\x6d\xac\xa9\x44\x72\x0d\xef\xc8\xad\xdd\x81\xc8\xfc\ \x5c\xf9\x71\x4f\xb6\xaa\x23\x9f\xfd\x1f\x74\xff\x00\x72\xed\x7c\ \x92\xd3\xd9\xa1\xa4\xcd\x63\x3a\x82\xa7\x39\x25\x0c\x4e\xac\xc1\ \xda\x8e\x9b\x31\x04\x72\x7e\x52\x60\xe8\x7d\x4a\x7d\xfc\xa8\x7b\ \x5f\xcb\xfe\xe3\xed\xdf\x7b\x4f\xba\x6f\x3f\x7b\x9f\x24\xd2\x73\ \x17\x3b\xf3\x5e\xc3\xcc\x49\x2c\xc7\xf5\xee\x21\xbc\xe6\x57\x80\ \x5d\x4c\xb4\x5d\x26\xea\x5b\x49\xae\x23\xa0\x0a\xf6\xf2\x43\x2a\ \x51\x24\x51\xd7\x5b\x37\x7b\xae\x5b\x9f\xdb\x2f\x71\xf9\x73\x96\ \x23\x44\xda\xf6\x5d\xba\xf3\x6e\xd0\x83\xf4\xe3\x68\x76\xf5\x6f\ \x09\x0d\x4d\x44\x49\x2a\x46\xd5\xc8\x91\x5d\x4e\x54\xf5\x58\x3f\ \xcb\xbb\x0b\x4f\x3f\x5f\x53\x64\x9a\x15\x35\x15\x11\x19\x5d\xca\ \xfa\x8b\x1b\xfe\x6d\x7b\xfb\xfb\x57\xe5\x36\x1f\x4a\x1f\xcc\x8e\ \xb8\x93\xee\x34\x6c\x77\x06\x8c\x7c\x20\xf5\x6f\x9d\x59\x4c\x61\ \xc8\xe6\x9b\x49\x01\xa8\xa8\x05\xed\xc5\xc4\xf5\x66\xd7\xb0\xe7\ \xdf\x08\xff\x00\xbf\xba\x78\xdb\x95\xfe\xed\x30\xf8\x8b\xe3\x7d\ \x7e\xf4\x74\xd4\x56\x9e\x0e\xda\x09\xa5\x6b\x4a\x90\x2b\xc2\xa7\ \xac\xd3\xfe\xef\x18\x1a\x3d\xd3\xdd\x27\xd2\x74\x7d\x3d\x88\xad\ \x31\x5d\x77\x58\xaf\xaf\x44\x9a\x5c\xe7\xc7\x8f\xe5\xb5\xb2\x72\ \x94\xf5\xb9\xb8\x77\x8f\x73\xef\x77\xaf\xcc\xcd\x40\xb2\x43\x1e\ \x73\x2c\xf5\x55\x35\x35\x34\xc3\xec\x16\x6a\x86\xda\xdb\x2e\x8e\ \xa1\x84\x61\xd8\xbc\xd5\x72\x21\x61\xe6\x64\xd3\x0e\x21\xed\x56\ \xff\x00\x79\x5f\xef\x57\xe7\x9d\x8f\x67\x98\xbf\x2c\xfd\xda\x79\ \x76\x48\x94\x9e\xe6\xb6\x80\xa4\x69\x13\xb2\x9d\x28\x37\x3d\xe2\ \x58\xb5\x78\x60\x85\x86\xd1\x1c\xa9\x30\x24\xac\x6e\x32\x3a\xe5\ \x39\x03\xee\xd5\xb3\xdf\x5f\xc1\x08\xdc\xbd\xc5\xbf\x46\xa7\x01\ \x23\x82\xc5\x80\x39\x3f\x4d\x68\xad\x4d\x54\x25\xe5\x65\x06\x8e\ \x54\x78\x75\x51\x1d\x07\x6b\x7c\xd4\xed\x99\xf7\xb6\xf4\x9e\xae\ \xa3\x1d\x35\x5a\xf8\x21\xd1\x24\x74\x14\x54\x11\x48\xc6\x9b\x1f\ \x8f\xa7\x3a\x92\x9a\x86\x9a\x36\x21\x10\x12\x49\x25\x98\xb3\xb3\ \x31\xfa\x23\xf6\x4f\xd9\x5e\x45\xf6\x73\x91\xb6\x0f\x6d\x3d\xb4\ \xd8\x13\x6f\xe5\x1d\xbd\x7b\x57\x8c\xb3\xca\xd4\xf1\x6e\x6e\x65\ \xa0\x33\x5c\xcc\x40\x69\x65\x61\x9c\x22\x2a\x46\x88\x8b\x80\x1c\ \xfd\xcf\x5b\xa6\xef\xb9\xee\x3c\xc7\xcc\x5b\x81\xb8\xdf\xae\x78\ \x9e\x0a\x8a\x3e\x18\xe2\x5e\x09\x1a\x0c\x2a\x8f\x99\x24\xb1\x66\ \x36\xe3\xb4\x7a\x27\x01\x81\xd9\xd4\xfb\x6d\x69\xd1\x63\xfb\x51\ \x14\x96\x55\xe4\x94\xd2\xd7\xfe\xbe\xf2\x4a\xde\xce\x28\xad\xc4\ \x3a\x71\x4e\xb1\xbe\xf3\x72\xb8\xb8\xbc\x6b\x92\x73\x5e\x90\x1f\ \x36\x7a\x8d\xf2\x9f\x09\x76\x0f\x5c\xed\xfc\x36\x43\x38\xf4\x5d\ \xa5\x82\x92\x83\x15\x8a\xa0\xaa\xc8\xd6\xd4\xbb\x55\x6f\x69\xca\ \xc3\x47\x43\x1c\x95\x32\x92\xd5\xad\x7d\x02\xfc\xfb\xf9\xe6\xe4\ \x6d\xe3\x97\x79\x5b\xfb\xe1\xfe\xf3\xfb\xa7\x32\xef\x96\x9b\x6e\ \xc9\x06\xc1\x29\x7b\x8b\x99\xa2\xb7\x86\x31\xf4\x9b\x16\x5e\x59\ \x99\x63\x5f\x3f\x88\xd3\xae\x9e\xa0\xdc\xf7\x3f\xba\x1f\xb5\xcb\ \xb7\xd9\x4b\x71\x7f\x25\xda\x81\x1c\x68\xce\xed\xfa\xb7\xc2\x81\ \x50\x16\x3c\x3c\x87\x46\x2f\xe3\xf7\x66\x6f\x1c\x86\xfa\xd8\x9d\ \x4d\x91\xeb\x55\xea\x3c\x06\xd5\xf8\xff\x00\x57\x94\xa8\xd9\xf1\ \xd1\xfd\x95\x38\xcc\x52\xee\x6d\x9b\x81\xc4\xbe\x36\x86\x62\xf5\ \xb8\xbc\x35\x06\x29\x6a\x05\x3d\x3c\xf6\xa8\x56\xa8\x94\x4a\x64\ \xd1\x1c\x8d\x83\xdf\x7b\xaf\xbb\x5f\xb6\x7c\x93\xec\x97\x3b\xfd\ \xe0\xb9\x57\xde\xd8\xfd\xc2\xdd\xf7\xef\x75\xe3\xb0\x87\x75\x49\ \x3c\x5f\x0e\xd4\xed\x7b\x9d\xf5\xcc\x37\x13\x20\x10\x5c\xde\xcb\ \x72\xd0\x9b\x89\xe0\xd5\x6e\x63\xb7\x81\xa0\x10\x99\x27\x81\x26\ \xbf\x6a\xbd\xc7\xe6\x4d\xef\x9d\x36\x9e\x44\xdd\x79\x35\xb6\x1b\ \x6b\x1e\x58\x69\xde\xd9\x97\x4e\xa9\x7e\xaa\xde\x08\xde\x35\x35\ \x78\xe1\x58\xc3\xe8\x49\x29\x20\x69\x24\x0f\xac\x2a\x3b\x12\x6d\ \x85\xf0\xd3\xe2\x16\xdf\xdf\x5b\xcb\x35\x5d\xf2\xdb\xab\xf7\x7e\ \x67\x31\xba\x73\xd9\x4c\x86\x1e\x4d\xc3\xd7\xd4\xf5\x78\x7a\xda\ \xec\xad\x5d\x55\x56\x2e\x68\xe2\xde\xb5\x95\x2b\x2d\x0c\xf2\xb4\ \x4c\x1d\x11\xc3\x21\xba\x83\xc0\xce\xcf\x6e\xff\x00\xbc\x13\xef\ \x79\xcb\xdc\xa3\xca\xdb\x56\xdb\xfd\xde\x1c\xd7\xb9\x58\x5b\x6d\ \xb6\xd1\x45\x3a\x5b\xef\x65\x66\x8e\x38\x51\x12\x65\x29\xb2\xba\ \x95\x91\x54\x38\x2a\xcc\xb4\x61\x46\x22\x87\xa8\x67\x9c\xbd\x88\ \xf6\xcf\x79\xdc\x77\x0b\x8b\x8f\x7f\x36\xdb\x19\x24\x9e\x46\x64\ \x2f\x69\x55\x66\x72\x4a\x9d\x57\x88\x6a\xa4\xd0\xd4\x03\x8c\x8e\ \x8e\x1f\x69\x74\x97\x46\x6e\x6f\x88\xf9\x5e\xad\xab\xee\x2d\x9f\ \xb3\x7a\xa2\xab\x3b\x41\x5a\xfd\x95\x3e\x5f\x6d\x1d\xb7\x45\x5b\ \x06\xf0\xa7\xcb\x2d\x1b\x64\x6a\xf3\xb4\x58\x3f\x2d\x4e\x5a\x31\ \x4a\x01\xab\x56\xf2\xb5\x80\x2d\xe9\xf7\x84\x17\xdf\x79\xef\x7c\ \x67\xfe\xf0\x59\x3d\xf9\x6f\xba\xde\xf5\x1f\xba\xa7\x6c\x10\xff\ \x00\x55\x7c\x2d\xc3\xeb\x44\x7f\xba\x45\xaf\x8d\xe1\x9d\xbc\x5e\ \x69\x30\x7f\x8d\x57\xe8\xf4\xe8\xce\xad\x1d\xfd\x4c\x3b\x57\xb6\ \x9c\xa3\x6b\xec\x44\x5c\x8c\x9e\xe6\xda\x4d\xcb\x82\xe4\xbf\xef\ \x40\x60\xf0\x8b\x1b\xa3\x2e\x8a\x89\xcc\x55\x0f\xfa\x5f\xdb\x56\ \xbe\x55\xc7\x40\x1f\x5c\x7c\x5b\xf8\x79\xb7\xb0\x30\x50\xd2\xfc\ \x88\xeb\x0d\xd5\x1a\x22\xa8\xc9\x43\xba\x76\x28\x49\x6d\xfd\xa0\ \x29\xb7\x4d\x5c\x7c\xff\x00\xc1\x8f\xbe\x8a\xd9\xff\x00\x78\xff\ \x00\xdf\x26\x18\x82\xaf\xf7\x6a\xf3\x74\x83\xd7\xe9\xf7\xdf\xfb\ \xd1\x1e\xb1\xd3\x72\xfb\xb9\x7b\x59\x73\x70\xd2\x3f\xde\x4f\x6b\ \x88\xfa\x16\xb2\xff\x00\x2d\xf0\xe8\x5d\xe9\xee\xb7\xea\xca\xac\ \xa6\x72\x9f\x69\xe6\xf0\xf0\x53\x61\xe7\x9a\x38\xf2\x06\x4a\x49\ \x29\xab\xa2\x8e\xae\x4a\x78\xe6\xa6\x95\x2a\x56\x19\x23\x95\x63\ \xd6\xac\x8c\xca\x54\x82\x38\xe7\xde\x74\x7b\xfb\xf7\xc9\xdf\x7e\ \xee\xfe\xd2\x7b\x3d\xee\x2b\xfd\xdf\xb7\xad\xfb\x7f\xe6\x58\x21\ \x37\x5b\x6d\xa3\xcb\x14\xfb\x64\xcf\x67\x1d\xcc\xb1\x4f\x5b\x29\ \xa4\xac\x52\x3b\x5b\x91\x24\x50\xb0\x74\x3a\x80\x6a\xa8\xc6\xbe\ \x48\xf6\x4a\x3f\x72\xf9\xc7\x9c\xf9\x66\x6f\x71\x2c\xb6\xed\xbf\ \x6c\x77\xf0\x6e\xa6\x55\x64\xba\x41\x3b\x44\x8d\x1d\x27\x8d\x7b\ \xd5\x44\x80\xab\xb8\xa3\x60\x91\x92\x2f\xf7\xaf\x50\x62\x3b\x2b\ \xe3\xc6\x7b\xad\xe4\xec\x2d\xb9\xb5\xf1\xd9\x2c\xbe\x2a\xac\xef\ \x1c\x8f\xdb\x4b\x85\xa4\x7a\x1d\xcb\x47\x93\xfb\x69\x75\x64\xe8\ \xa0\x32\xcf\x2d\x3f\x80\x7e\xfa\x91\x23\x0e\x09\xe3\xdf\x03\x77\ \x3f\xbe\xc6\xef\x7b\xfd\xe1\xb2\xfd\xe9\x3f\xd6\x13\x7b\x4d\xc5\ \xb6\xb1\x6f\xfb\x80\xc8\xff\x00\x5c\x00\xda\x05\x8f\x8b\xaf\xe8\ \x83\x69\xa7\xf8\xc5\x3e\x97\xe0\xc5\x69\xdd\xd7\x43\x76\x1f\x64\ \x6d\x76\xbf\xbb\xd5\xbf\xb5\x63\x9e\xec\xa5\xb7\x5b\x96\x93\xeb\ \xd5\x00\x84\xd6\xec\xcf\xa7\x4f\x8c\x45\x41\x3e\x1f\xf6\xbf\x16\ \x69\xe5\xd2\x1f\xe3\xde\xc5\xdb\xbd\x4b\xb8\xb6\x7e\xc6\xc7\xef\ \xac\x06\xf9\xab\xa8\xc5\x64\xeb\x23\xc9\x60\x4d\x30\x83\x45\x3d\ \x0d\x64\x72\x21\x48\x32\x19\x10\x18\x84\xd5\xfa\xfe\x9e\xf3\x8b\ \xef\x57\xf7\xad\xbf\xfb\xd2\x7f\x77\x57\xbf\x3b\xae\xe5\xed\x0e\ \xeb\xca\x13\x6d\x5b\xfe\xc5\x6e\xb1\x5f\x48\xee\xf7\x22\x4b\xfb\ \x69\x4c\xb1\xea\xb5\xb5\xa2\xad\x34\x10\x15\xf3\xe6\x38\x75\x03\ \xfb\x65\xed\x14\x7e\xd7\xfd\xe6\x79\x08\x5b\xf3\x65\xb6\xed\x15\ \xde\xdf\xb8\x48\x5a\x15\x0a\x22\x2b\x6f\x2a\x84\x6a\x4b\x2d\x49\ \xad\x47\x0f\xb3\xaa\xcc\xee\x0e\x8b\xf9\x8f\xb9\x3e\x52\xf6\xde\ \x6f\x68\xd1\x76\xfd\x06\xc8\xaf\xde\xf9\xda\x9c\x0d\x6d\x35\x46\ \xe4\xa7\xdb\xd3\xe3\x24\xac\x91\xa9\x65\xc6\x18\xea\x12\x88\xd2\ \x34\x7c\xa7\x8c\x69\xb7\xd3\xdc\xab\xf7\x53\xf7\x9f\xee\x49\xb3\ \x7d\xde\x7d\x92\xda\xb9\xdf\x9f\x3d\xbc\xb6\xe6\xdb\x6e\x5a\xb0\ \x8e\xf2\x3b\xc6\xdb\x85\xca\x5c\x2c\x08\x25\x59\xfc\x55\xd7\xe2\ \x86\xa8\x7d\x7d\xd5\xad\x7a\xbf\xba\x7c\xab\xee\xe5\xcf\x39\x73\ \x7d\xc6\xcf\xb0\x6f\xd3\x6d\xf2\x6e\x33\xb4\x46\x11\x70\x50\xc6\ \x64\x25\x4a\x69\x34\xd3\x4a\x52\x98\xa7\x0e\x8c\x6f\xf3\x06\xea\ \xbf\x92\x7b\xc3\xaa\xbe\x29\x62\x3a\x8e\x93\xb1\xeb\xb7\x16\xdb\ \xc7\xd4\xd3\xef\xf9\x36\x6c\xb9\xb1\x5b\x1d\x4f\xf7\x63\x67\x53\ \x2c\xb9\xe7\xc6\x4c\x92\xb1\x7a\xfa\x4a\x9b\x19\x89\xf5\xeb\xfc\ \xdf\xde\x0d\xfd\xc4\x7d\xc3\xfb\xb7\xf2\xd7\xde\x13\xef\x7d\xba\ \x7b\x9f\xcc\xfc\xa7\x6b\xca\x97\xfb\xd3\x3e\xd5\x26\xe0\x6d\x05\ \xb4\xd0\xfe\xf2\xdc\xdc\x35\x91\x98\x14\x31\xf8\x2f\x0b\x7e\x95\ \x07\x86\xd1\xf9\x53\xa9\xaf\xdd\xed\x97\x9e\xaf\xb9\x07\xda\xfb\ \x7d\x87\x6b\xdc\xe5\xdc\xe1\xb1\x02\xe1\x21\x12\xf8\x88\xff\x00\ \x4f\x6e\x29\x36\x8e\xed\x5a\x83\x8e\xec\xea\x0d\xe7\x5e\x96\x5f\ \x1c\xba\xdf\xbb\x36\x2f\xc6\x6f\x93\xb4\x7d\xc3\x3e\xea\x7c\x96\ \x63\xac\xf3\x7f\xc0\xd7\x74\xd4\x64\x27\xa8\x80\x43\xb1\xf7\x84\ \x55\xa2\x9f\xf8\x84\xb2\xbc\x7f\xbb\x51\x16\xbd\x36\xb9\x02\xfe\ \xcf\xfe\xfc\x3c\xf1\xec\x2f\x3b\x7d\xe5\xfe\xe4\x72\x7b\x17\xcc\ \x7c\xb3\xb8\xdb\x5b\xf3\x0c\x22\xf0\xec\xe6\xd4\xac\x6e\xfb\xae\ \xd4\x61\x17\x1f\x4c\x00\x0c\xc1\x64\xf0\xf5\xe6\x81\xf4\xf9\xf4\ \x4b\xec\xae\xd3\xce\x9b\x4f\x20\xfb\xc8\x39\xcf\x6a\xdc\xad\x99\ \xec\x98\xc4\x2e\xc4\xa0\xb2\x8b\x6b\x9d\x66\x3f\x13\xc8\x12\xba\ \xa9\xea\x2b\xd0\x39\xfc\xbe\x2b\xfa\xcf\x6d\xf5\x76\x5e\xa7\xb1\ \xab\xeb\x68\xeb\x61\x9a\x0f\xb3\x7a\x78\xab\x66\x8d\xa9\x04\x55\ \x02\xb1\xa5\x14\x94\xf3\x8d\x61\xc2\x5a\xfc\xfd\x6d\x7f\x7d\x62\ \xfb\xd1\xee\xff\x00\x7e\xdd\xb2\x6e\x45\xff\x00\x80\xeb\x69\xd8\ \xee\xb6\xe6\x82\xeb\xf7\xa1\xbf\x36\x40\xac\x81\xa0\xfa\x5f\x0b\ \xea\xe7\x84\xd0\xaf\x8f\xab\x46\xa1\x50\xba\xa9\x8a\xe2\x37\x26\ \xed\x5e\xc2\x6e\x37\x3b\xe8\xf7\x96\xe6\xfe\x3b\x8d\x71\x7d\x20\ \xb7\x13\xe5\x68\xfe\x2e\xaf\x06\x37\xe0\x7c\x3a\x6a\xa7\x9d\x3c\ \xfa\xb0\x0d\x89\xbc\xba\x0e\x9f\x67\xf7\x37\x65\xec\x3d\xeb\xba\ \xa9\x36\xc6\xd5\xdb\x59\x9a\xfe\xc3\xac\xa6\x5c\x94\x91\x61\x69\ \xf0\xf8\x3a\xbc\xe5\x5e\x73\x17\x85\xc9\xe2\xaa\x23\x9b\x37\x41\ \x88\xa2\x94\xc6\xf1\x41\x31\x90\x00\x8c\x8f\x64\x51\xc2\x3f\xbe\ \x95\xef\xdf\x53\x9f\xbd\xd4\xf6\x27\xdb\xef\xbc\xe7\x21\xf2\x9c\ \xbe\xe3\xee\x57\xf0\xc7\xb3\x7d\x3a\x59\xa3\xdc\x0b\x8b\xb4\xb5\ \x5b\x3b\x9b\xbb\x3b\xae\xdb\x49\x2e\xa4\x42\xd1\xcb\x2c\x62\x36\ \x2d\x2a\x3c\x7a\xa4\x66\xce\x6f\x64\x36\xdf\x66\xb9\x6f\x95\xf9\ \xcb\x78\xf6\xc3\x79\xdd\x57\x97\x61\x89\x8d\xd8\x95\xa6\x21\x0a\ \x44\x64\x33\x47\x14\xd1\x66\x55\x8d\x48\xd4\xaa\xda\x85\x15\x83\ \x51\x40\x2b\x9d\x09\xb2\xbe\x10\x55\x75\x4f\x62\xf7\x7f\x46\xd7\ \x6e\xac\xce\x0f\x64\xc7\x9c\x5c\x9e\x7b\x76\xcf\x9d\xa7\x2b\xb8\ \x28\xf1\x31\xe6\x05\x2e\x8c\xf6\x3e\x86\x5a\x89\x24\x35\xd4\xf7\ \xd2\x0a\x96\x99\x45\xee\x7d\xe5\xf7\x2c\xfd\xee\x7f\xbc\x27\xda\ \xbf\xbc\xcf\xdd\xeb\xd8\xcf\x79\xed\x39\x6e\xda\xdf\x99\x77\xad\ \xa9\x65\xb7\xb5\xb7\xb3\x9e\x4f\xdd\x33\x6e\x09\x6b\x75\x22\xc9\ \x6f\x3c\x82\x12\xb0\x47\x73\xa1\x8f\x72\xf8\x45\xc0\x3a\x7a\x8b\ \x39\xab\xd9\xbf\x62\xf9\xbf\xdb\x6f\x70\x39\xbf\x96\x1f\x71\x7b\ \x9d\xbe\xc6\xe8\xc6\xef\x2c\xb1\xaf\xd5\xad\xbb\x49\x0a\x95\x74\ \x1a\xc1\x91\xa3\xa8\xe0\x75\x50\x9c\xf5\xc3\xe7\x47\x65\xee\x6c\ \x6f\xc5\x4e\x90\xdc\x7d\x7b\x98\xc8\x62\x6a\x77\x5e\xe1\xc0\xa4\ \x35\x58\xaa\xca\x8a\x29\x64\xa0\xab\xda\x79\xaa\xc4\x8f\xcb\x4b\ \x24\x6c\xd1\x16\x8d\x0d\xaf\x6b\x81\xec\xcf\xee\x99\xb3\x6c\x1c\ \xcd\xfd\xe6\xbf\x7e\x88\xb7\xdd\x86\xcb\x70\xb5\xf1\xb7\x57\x44\ \xb9\x82\x29\xd1\x58\xef\x56\xc3\x52\xac\xa8\xe1\x5a\x84\x8d\x40\ \x03\x42\x45\x68\x4f\x49\xbd\xc1\x17\x9b\x67\xdd\xaf\xd8\xd8\xa1\ \xbd\x9e\x09\x23\x86\xd5\x58\xc6\xed\x19\x34\xb3\x93\x04\xa9\x04\ \x8a\xe6\x87\x15\xe8\xbd\x6d\x1f\x8f\xf9\xcd\xed\xf1\x0b\xb4\x3b\ \x73\x7e\x6f\xee\xd3\x4e\xce\xdb\xf5\xd9\x59\x76\xa5\x55\x0f\x61\ \x6e\x3c\x7e\x26\x9f\x1d\x4f\x89\xda\x95\x34\x9f\x7b\x8a\x86\xac\ \x45\x58\xe2\xb2\xbe\xac\x96\x62\x2e\xa5\x47\xf6\x7d\xcb\xbe\xff\ \x00\xfb\x89\x75\xc8\x1f\x7f\xbf\xbb\xbf\xdd\xdf\x62\xe4\x2e\x52\ \x4f\x6e\xb9\x97\x68\xb3\xb9\xbc\x47\xd9\xac\x9e\x73\x24\xf7\xbb\ \xbc\x0e\x63\x9f\xc3\x0d\x18\xd1\x65\x08\x00\x03\x42\x18\xfe\x2e\ \x83\xfe\xdf\xed\x56\xbb\xd7\xb1\xfe\xe0\x73\xf4\xfb\xc6\xe6\x77\ \xbd\xb6\xf2\x68\xa2\x22\xee\x60\x94\x48\x6d\x1c\x6a\x4d\x54\x26\ \xb3\x36\x6b\xe9\xe9\xd0\xd1\xfc\xb4\xf1\x9d\x91\x4b\xba\xf7\x4d\ \x5e\xed\xdd\x99\xed\xc5\x84\x97\x64\x34\x34\x31\x65\xb2\xd9\x0c\ \x94\x51\x57\x2e\x73\x0c\xc2\x64\x15\x95\x13\x05\x97\xed\xc3\x8b\ \x8e\x6c\x4f\xb8\xcf\xfb\xe6\x39\x13\x94\xf9\x57\xd8\x3f\x6a\xaf\ \x79\x7b\x95\x76\xcb\x09\xe4\xe6\xd0\x8c\xf6\xd6\xb0\x40\xec\xbf\ \xbb\xef\x5b\x4b\x34\x48\xac\x56\xa0\x1d\x24\x91\x50\x0d\x2a\x3a\ \x3b\xfb\xa3\xf3\x15\xf6\xf1\xcf\xfc\xd5\x6f\x79\xb8\xdc\x4d\xa3\ \x6a\x2d\x49\x24\x77\x00\xfd\x44\x22\xa0\x31\x20\x1c\xd2\xa3\xcb\ \x1d\x06\x3f\x10\x7e\x42\xef\x8d\x9d\x9a\xdd\x8d\x95\x4a\xac\xde\ \x09\x33\xf5\xf0\xe6\xf1\x60\x89\x2a\x25\xa4\xa6\xae\xa9\x55\xaa\ \xc7\x99\x1d\x55\x32\x14\xb1\xb3\x14\x05\x82\x48\x09\x46\xb0\x21\ \x97\x37\xfe\xf4\x5f\x73\xce\x55\xfb\xe4\x7b\x09\xcb\x9b\x35\xeb\ \x25\x9f\xb9\xdb\x3e\xd8\xb2\x6c\xdb\x81\x2c\x16\x19\x64\x82\x22\ \xf6\xd7\x21\x55\x8b\xd9\x5c\x98\xe3\x13\x00\xad\x24\x4c\xa9\x34\ \x35\x2a\xd1\xcb\x07\x72\x07\xba\xb7\xfe\xca\x7b\x85\x7b\x7d\x66\ \x0c\xbc\xaf\x7d\x71\xa6\xf6\xdc\x01\xde\xaa\xed\xa6\x58\xea\x40\ \x59\xa2\xd4\xc5\x32\x15\xc1\x28\xf8\x21\x94\xd4\xf6\xa7\x6c\xf4\ \x7d\x3e\xf5\xd9\x0b\xb3\xf7\x56\x3f\x33\x57\xbf\x69\xc6\x52\xaf\ \x6d\x52\x46\xd3\x47\x89\x85\xea\x8c\x30\xd7\xd4\xb3\x95\x38\x3a\ \xea\x8a\xd8\xe4\x86\x4c\x74\x8a\x25\x47\x89\x9b\x44\x60\x59\xe2\ \x9f\xee\xff\x00\xf7\x0b\xef\x74\x3d\xb8\xf7\x93\xd9\xef\xbc\xf7\ \x27\xdd\xae\xdf\xca\x36\xb3\x58\xd8\xee\xb7\xac\x05\xd4\xcf\x1d\ \xb9\x06\xca\xb4\x3f\xbc\x60\x8a\x13\x1c\xd0\xee\x6a\xec\x1d\x24\ \x54\x32\xdc\xea\x0d\x11\x9f\xde\x13\x91\xbd\xa7\x7e\x60\xe5\x0e\ \x78\xf6\xb7\x73\x88\x4f\xba\xcc\x93\xcf\x6b\x00\xfd\x15\x0d\x20\ \x3e\x38\x15\x1f\x4e\xec\xfa\x91\xed\xb4\x8a\x30\x2c\x16\x3a\x10\ \xe1\xb7\xcc\xf8\xc3\x7c\xd1\xf8\xc5\x20\x1e\xa5\xa2\xda\xe2\xff\ \x00\xe0\x3b\x12\xb0\x8f\xf7\xb3\xef\x0e\x3f\xbb\x39\xa9\xf7\x0a\ \xfb\xe3\x7d\x9b\xdf\xfe\x4b\x91\x75\x3f\x7d\xe3\x13\x57\xbd\x5e\ \xd4\x1f\xe9\x59\x7f\xdd\xc1\xba\x11\x77\xb5\x7d\x5a\xff\x00\x33\ \x5e\xa0\xa0\x59\x58\x51\xc9\xd6\x19\x39\x64\x86\xe7\x4b\x38\xda\ \x9d\xa2\x43\x11\x7b\x5f\x52\x0f\xf6\xde\xe1\xff\x00\x6d\x24\x61\ \xfd\xcb\xbf\x78\x58\xeb\xda\x79\xbe\xdb\xfe\xef\x1c\xb3\xd0\xaf\ \x98\xa0\x43\xf7\xbc\xe4\x39\xca\xf7\x8d\xae\x41\x5f\xfa\x84\xdc\ \x7f\xcf\xd0\x71\xd2\x31\xdb\xf9\x91\xf7\x73\xff\x00\x57\xdc\x9c\ \xff\x00\xe4\x37\x16\x3f\xde\x2d\xee\x60\xf7\xe8\xff\x00\xd8\x1b\ \x7d\x9a\x1f\xf4\xa7\xff\x00\xb4\xab\x8e\x82\xbc\x96\x94\xfb\xdb\ \x73\x43\x7f\xcf\x67\xfd\x5b\x8f\xa7\x2f\x83\xf1\xe9\xf9\x43\xf2\ \x75\xad\xfa\xb3\x1b\xd3\xfd\xe7\xb0\x50\xfb\xbf\xf7\x97\x9a\xfd\ \xc0\xfe\xe7\x43\xfa\x5b\x27\xfe\x4b\x92\xf4\xd7\xdd\xdd\x34\xfb\ \xed\xee\xb9\xfe\x85\xe7\xfd\xdc\x13\xa2\xd5\xf0\xf2\x97\x56\xfc\ \xde\xbc\x5f\xfd\xfc\x59\x8b\x0f\xeb\xfe\x5f\x3f\xf8\xfe\x7d\xf7\ \xf7\xda\xe9\x29\xcb\x3c\xbc\x7f\xe5\xc2\xdf\xfe\xac\xa7\x5c\xf6\ \xf7\x36\x02\xd7\x77\x58\xff\x00\x46\x7f\xf8\xf1\xe8\xef\xf7\xb7\ \xcf\x1a\x4e\x85\xc4\x41\x49\x1f\x52\x65\x77\xbe\x42\x2a\x48\xe0\ \x96\x9a\x0c\xf5\x36\xde\xc7\xcf\x2a\xaa\x47\x3e\x99\x57\x09\x9e\ \x74\x8a\x4f\x5b\x5b\xc2\x7f\x03\xf2\x48\xe1\x0f\xb8\xbf\xdc\xc3\ \xcd\x5c\xc9\xee\xa7\x3c\xf3\xa1\xfb\xc3\x47\x63\xb3\x5f\x6f\x57\ \x57\x56\x75\xb1\xb9\xdc\x2f\xa1\xb7\x79\xa4\x92\xd5\x26\x9e\x4b\ \xdb\x3d\x73\x41\x1f\x83\x19\x91\x5e\x9d\xa5\x94\xf6\xaa\xb6\x76\ \xf2\x2f\xdf\x07\x6b\x5e\x53\xd8\x36\x3f\xea\x09\x7b\xcb\x7b\x18\ \xa2\x9f\xf5\xa3\x82\x07\x91\x51\x56\x56\x48\xd6\x19\x74\xa4\x8d\ \xad\x82\x91\xe7\x43\xc4\x90\x02\xf4\x2f\xca\x2e\xf4\xf9\x2b\x9a\ \x2f\xd7\x5f\x09\x7a\xd3\x6a\x6d\xd4\xac\x6f\xbb\xdf\x1b\xc2\x79\ \x2a\x36\xfe\x3a\xa1\x24\x46\x12\x4b\x96\x87\x6c\xe0\x0e\x4b\x21\ \x4d\x11\x4d\x70\x51\xa4\xd5\x57\x2a\xda\x11\x4f\xb8\xc7\xdf\xbf\ \xbb\x87\xb5\x5f\x77\x8d\xb0\x4d\xf7\x86\xfb\xfc\x73\xe6\xe7\xcc\ \x0d\x6e\x3c\x2d\xaa\xce\x56\x6d\xca\xe6\x22\x08\xd2\x96\xd3\xdf\ \xde\x78\x10\x48\xda\xb4\xcd\x74\xd1\x5b\x61\x93\x5b\xb8\x35\x1f\ \x72\x6f\x3a\xef\xbc\xe7\x39\x8f\xdb\xef\x65\x36\x2b\x7b\x31\x27\ \x75\xcc\x91\x85\xb6\x8d\x81\x19\x69\x23\x86\x2d\x6e\xa2\x95\x48\ \xc3\x49\xc0\xd0\x0e\x8c\xa7\x7b\x7c\xf4\xe9\x2f\x8a\xd8\x7f\xee\ \xfe\xee\xcc\xe1\xb7\xb7\x6a\x2a\x39\x9f\x62\x75\x76\x39\xa8\xe9\ \x69\xb2\x0c\x80\x2c\x79\xaa\xba\x9a\xec\xad\x2e\xdc\x86\x36\x0a\ \x8e\x67\x9a\x5a\xe7\x4b\x48\xb4\x85\x7d\x2b\x88\xbe\xce\x7d\xc3\ \xbd\xdf\xfb\xd5\xf3\x22\x73\x37\x2a\x6d\x3b\xb7\x2e\x7b\x30\xe5\ \x56\x1d\xd3\x98\xae\x05\xdd\xcc\x90\x03\x96\xb5\x8e\x2b\x7b\x36\ \xbd\x66\xab\x48\x8b\x14\x51\x5a\x23\x13\x13\x5f\x16\xef\x69\x53\ \x99\x3d\xe0\xe5\xbf\x6e\xb6\xf6\xdb\xf7\x1b\x8b\x5b\xfe\x6d\x15\ \x2f\x6f\x60\x9e\x0c\x6a\xf4\xe1\x23\x34\x93\x08\x80\xa0\x56\x2c\ \xcd\x29\x14\x61\x08\x1d\xa0\x97\xd2\xee\x9f\x95\x9f\xcc\x03\xad\ \xb7\x96\xf8\xda\x55\xbb\x7b\x6a\x6c\xbd\xbf\x95\x87\x1b\x8c\xeb\ \xca\x2c\xb1\x83\x27\x9d\x99\x63\x8a\xb2\xad\x7c\x4a\xcd\x2b\xd5\ \x51\x52\x4b\x14\x91\x49\x92\x68\x52\xa6\x42\xc2\x99\x56\xcc\x3d\ \xf5\x4b\x96\x37\x3f\xb9\x57\xf7\x64\xfb\x89\xed\xd7\xb6\x77\xfc\ \xb5\xb9\xbf\x3d\xf3\x05\x9b\x49\x77\xcd\x37\x96\xc6\x63\x6b\x0b\ \x33\x42\x84\x4b\xa0\x2c\x36\xd2\xc8\x24\x8e\x68\xb6\xc8\xd9\xa1\ \x8c\x23\x5f\x34\xa7\x4b\x75\x8b\xdb\xce\xd9\xee\xef\xde\x1f\x64\ \xdf\xf9\x8b\xf7\x9d\xbb\x6c\xdb\x7c\xa0\x45\xb5\xc3\x20\x45\x91\ \xc0\x0e\x7b\x6a\x4c\x92\x2a\xe9\x64\x7b\x96\x01\x98\x91\x00\x4c\ \x8e\x9d\x3e\x38\x7c\x62\x9b\x6c\x54\x7f\x19\xcf\x54\xce\xf9\x88\ \xe5\x61\x59\x4d\x54\x24\x4a\x8a\x7a\x94\x66\x59\x61\x9a\x19\x55\ \x64\x8a\x58\xe4\x52\x19\x58\x06\x04\x58\xfb\xed\x8f\x2a\xb6\xdb\ \xba\x6d\xf6\x1b\xee\xd5\xb9\xc1\x79\xb6\x5d\x44\x92\xc3\x3c\x32\ \x2c\xb1\x4d\x14\x8a\x1e\x39\x22\x91\x0b\x24\x91\xba\x90\xc8\xe8\ \x4a\xb2\x90\x41\x20\x8e\xb0\x1f\x9b\xf7\x2b\xa8\xe7\xb9\xda\xe7\ \xb2\x78\x27\x89\xca\x3a\x3a\x94\x74\x65\x34\x65\x65\x60\x0a\xb2\ \x90\x41\x04\x02\x08\xa1\x15\xea\xc1\x25\xec\xec\x17\x4a\xe0\xf2\ \xf9\xcc\xd6\x1f\x2b\x95\x81\x68\xe1\x31\x47\x86\x82\x92\x5a\xcb\ \xd3\x19\x0c\x90\xea\xac\xaa\xa3\x44\x8a\x55\x60\x78\x27\xd4\xa2\ \xe3\xf2\x39\xdb\xfd\xe6\x5f\x72\xdf\x73\xbe\xf8\xdb\x57\xb4\x76\ \x5e\xde\xf3\xd6\xdd\xb5\xd9\xec\x37\x37\xd2\x5e\x41\x7f\x35\xd2\ \x5b\xcd\xf5\x31\xdb\xac\x13\xc5\x15\xb5\xb5\xc0\x92\xe6\x03\x14\ \xb1\x83\x27\x86\x16\x2b\x89\x34\xbd\x49\x56\x9c\xfe\xea\x1e\xf2\ \xf2\xc7\xb3\xbb\x8f\x38\xbf\x30\xec\x37\x17\x37\x1b\x8c\x76\xeb\ \x0c\x90\x24\x46\x44\xf0\xda\x43\x24\x6e\xf2\x49\x19\x58\xa4\xd6\ \x8c\x42\xea\xab\xc6\xb5\x1c\x08\x07\xb6\x4f\x66\xfc\x74\xdb\xbd\ \x61\xbb\xbe\x66\x64\xba\x51\xba\xba\x9f\x15\x55\x9a\xa6\xdb\xb9\ \xdd\xd4\xd4\x53\x6f\x5d\xe9\x3c\xf6\xc7\x4b\x3e\x16\x18\xeb\x32\ \x82\x8a\x4d\xc3\x9c\x9e\x6c\x7c\x12\x79\x0c\xd2\xa2\x4d\x2b\xe8\ \xa7\x25\x9b\x8a\x1e\xec\xf2\x77\xde\xe7\x9b\xfd\xe3\xe5\xaf\xb8\ \xa6\xe5\xf7\x8e\x97\x9b\x26\xb9\x5b\x41\xb8\xdb\x59\xf8\xab\xb5\ \xed\x91\x42\x44\xc8\x97\x3f\xa5\x6e\x65\x8e\xc6\xd6\x38\x6f\x1e\ \x1f\x0d\x62\x8d\xcd\xbc\x31\x87\xb9\x55\x54\xe8\x1f\x2a\xde\xfb\ \x57\xb4\xf2\xa5\xef\xbc\x96\x3e\xdf\x47\xb6\x84\xf1\x4d\xbc\x92\ \x69\x37\x37\x0e\xe0\xab\x18\xfb\xa4\xd2\xd3\x48\xcd\x10\x7d\x45\ \x98\x78\x8c\xd4\x8c\x92\x4a\x07\xc5\x7c\x0e\xf8\xf9\xad\xdb\x7b\ \xab\xb9\x77\x96\x56\x8e\x9b\x63\xe2\x73\xb4\xd2\xe5\x71\xab\x52\ \xdf\xc4\x2a\xc4\xe9\x24\xb8\xbc\x1e\x2f\x1c\xb7\x96\x97\x14\x94\ \x74\xa2\x01\x53\x2b\x2d\xa3\x8c\x84\x32\x48\x1e\xdd\x4f\xfb\xcd\ \x7d\xe5\x79\x33\xfb\xb7\xbe\xef\xfc\x8b\xec\xb7\xb4\xdc\xb3\x74\ \xfc\xd9\x71\xb4\x4d\x6f\xb3\x48\xf1\x0f\xa4\x8d\xe3\x2a\xb7\x7b\ \x9d\xe4\xcc\x02\x4f\x75\xe3\xcf\xf5\x6f\x6d\x1a\xb7\x89\x3c\xab\ \xe2\x88\x2d\xdd\x09\xc5\xee\x44\xf6\xb3\x74\xfb\xc0\xf3\xde\xf5\ \xcd\x9c\xd7\xb9\x44\x36\xf5\xbb\x49\x2f\x42\xb7\xea\xb2\xb5\x4c\ \x56\xd0\xa0\xee\x8e\x2d\x11\xf8\x4b\x23\x11\xa6\x35\x3a\x75\xc8\ \x0f\x46\xfb\xe6\x7f\x41\xf7\xd7\xc8\x2a\x0c\x3f\x5a\x75\xe5\x1e\ \xd1\xdb\xbd\x5f\x83\x14\x93\xc9\xfc\x5b\x3e\xd8\xff\x00\xe3\x15\ \xd0\xc2\x21\x84\x8c\x6e\x3b\x1d\x90\x68\xa9\x71\x14\xec\xd1\xd3\ \x44\xe1\x56\xe5\x9c\x9b\x94\x54\xe6\xdf\xdc\x5b\xef\x4f\xf7\x52\ \xfb\xb7\xd9\x73\x3f\xba\xbe\xed\xee\x7c\xc3\xbf\xfd\xe2\x39\x96\ \xe2\x6f\xaa\xb8\x8a\xc7\xc7\xfa\x1b\x67\x94\xc8\xf1\xa5\xc5\xc5\ \xc4\x26\x6b\x8b\xd9\x29\x71\x79\x38\xa9\x24\x45\x02\x00\xb1\xc9\ \x24\xf9\x11\xef\x27\xb6\x7e\xe7\x73\xf5\xce\xd9\xcb\x5c\xad\x6d\ \x61\x61\xed\xf6\xd9\x1a\x08\x62\x69\xb4\x78\xd2\x2a\x05\x56\x68\ \xe3\x8d\xf4\x47\x0a\xfe\x9c\x31\xf9\x0d\x4e\x72\xca\xa9\x07\xe3\ \xf7\xc1\xba\xfe\xa3\xc1\x52\xa5\x6d\x46\xd9\x39\xe8\x5a\x39\xd6\ \xae\x8a\xa6\xbe\x46\xa6\xab\x85\xd5\xe2\x9e\x29\xff\x00\x85\xc2\ \x43\xc7\x22\x86\x52\x39\xe0\x7d\x0f\xbe\x85\xee\x7f\xdf\x3b\xf7\ \x36\x97\x67\xde\x79\x73\x70\xf6\xe3\x9e\x37\x5d\xb2\xee\xd6\x48\ \x25\x43\xb7\xed\x5f\x4f\x3c\x73\x46\x52\x48\x64\x13\x6f\x28\xfe\ \x1b\xab\x18\xe4\xac\x44\x15\x26\x81\x87\x1c\x68\xba\xfb\x9b\x7b\ \xdf\x79\xb9\x59\x6e\xb6\x9c\xcf\xb1\x59\xcd\x0c\xcb\x22\x37\xd4\ \xdd\xf8\xb1\xb2\x30\x65\x75\xd1\x64\xcb\xa9\x48\x0c\xb4\x71\x90\ \x32\x3a\x31\x1f\x20\x7a\xb7\x2b\xbd\xfa\xfe\x8b\x70\x43\x8f\xa3\ \xc9\x76\x2e\xc7\xa6\x39\x18\x21\xc7\xc6\xf2\x26\xe1\xa3\x88\x2b\ \x66\xb0\xb4\xe1\xe1\x8a\x62\xf5\xd0\x44\x6a\x29\x23\xd2\x4a\xd5\ \xa2\xc4\xa4\x2c\x8e\xe7\x98\x5f\x70\x9f\xbe\x47\x28\xfd\xd9\xfe\ \xf3\x9c\xc3\xb4\x6c\x77\x57\xf6\xdf\x76\x2e\x6d\xdc\xcc\x2d\x16\ \xe0\x53\xc6\xdb\x55\xa4\x6f\xdd\xf7\x93\x78\x72\xcb\x17\x89\x69\ \xac\x5a\xde\xcc\xb2\x52\x6b\x42\xf7\x0e\x86\x48\x61\x89\x32\x83\ \xdf\x7f\x66\x77\x6f\x73\xfd\xb1\xdb\xae\x37\x18\xed\xe4\xf7\x3b\ \x6a\xb5\x0e\x24\xb7\x07\x45\xc3\x05\x1f\x51\x0a\x6a\x54\x6d\x33\ \x69\xf1\x61\x42\xbd\x92\xd2\x30\x74\xbb\xb3\x03\xdd\x61\x55\xb7\ \x37\x36\xde\xa0\xcb\xe1\xe0\xa7\x5f\x2c\x11\xb3\x78\x80\x04\x31\ \x50\x48\x20\x00\x41\xbf\xbf\xaf\x3b\x1b\xb8\x27\x81\x25\x85\x81\ \x56\x00\xe3\xae\x31\xee\x96\x17\x36\xb7\x32\xc3\x3d\x6a\x09\xe3\ \xd0\xa3\xf6\x1f\xe1\xfe\xf7\xed\x77\x8d\xf3\xe8\xaf\xe9\xbe\x5d\ \x7b\xec\x3f\xc0\xff\x00\xbc\xfb\xf7\x8d\xf3\xeb\xdf\x4d\xf2\xeb\ \xdf\x63\xfe\x07\xfd\xe7\xdf\xbc\x6f\x9f\x5e\xfa\x6f\x97\x5e\xfb\ \x0f\xf0\x3f\xef\x3e\xfd\xe3\x7c\xfa\xf7\xd3\x7c\xba\xff\xd5\xbd\ \x0f\xb1\xff\x00\x69\xff\x00\x78\xff\x00\xa4\x7d\xe6\xc7\x8b\xf3\ \x3d\x72\xb3\xe9\xbe\x5d\x7b\xec\x7f\xda\x7f\xde\x3f\xe9\x1f\x7e\ \xf1\x7e\x67\xad\x7d\x2f\xcb\xaf\x7d\x8f\xfb\x4f\xfb\xc7\xfd\x23\ \xef\x5e\x2f\xcf\xaf\x7d\x2f\xcb\xae\xff\x00\x87\x9f\xe8\x3f\xde\ \x3f\xe2\x9e\xf7\xe2\xfc\xcf\x5b\xfa\x6f\x97\x5c\xbe\xc0\x7f\xa9\ \x1f\xef\xbf\xd8\xfb\xd7\x8b\xd7\xbe\x9b\xe5\xd7\xbe\xc4\x7f\xa9\ \x1f\xef\xbf\xd8\xfb\xf7\x8b\xd7\xbe\x9b\xa2\xd5\xf3\xd3\xa9\xb7\ \xbf\x6d\x74\xcf\x51\x60\xb6\x36\xd3\xc9\x6e\xda\xcc\x56\xf4\xc0\ \xe5\x72\x54\x58\xc8\xe2\x96\x4a\x4c\x64\x5b\x53\x2b\x48\xf5\x92\ \x89\x65\x8c\x08\x56\x6a\x94\x5b\x82\x4d\xd8\x7b\xf9\x8c\xfb\xb0\ \xfb\xcb\xed\x77\xb2\xff\x00\xde\x2d\xf7\xe4\xdf\xfd\xd5\xe7\x4b\ \x2d\x93\x66\xbb\xdf\xf9\x92\x08\xa5\xb9\x66\x54\x92\x6f\xeb\x33\ \x49\xe1\xa9\x55\x63\xab\x42\x3b\x70\xe0\xa7\xae\xb6\x73\x9f\x29\ \xf3\x27\x35\xfd\xdd\xfd\x91\xb1\xe5\x9d\xa6\x5b\xbb\xc8\xb6\xad\ \xb5\xd9\x63\x00\x90\xbf\xbb\x15\x75\x1a\x91\x8d\x44\x0f\xb4\xf4\ \xa8\xea\x7f\x8f\xd1\xe2\xb6\x5e\x2a\x8f\x3b\xb2\x24\xa3\xc8\xc5\ \x4d\x0a\xcf\x05\x45\x3c\x62\x54\x71\x18\x0c\x1b\x4b\x30\xb8\x23\ \xfa\xfb\xec\xa5\x97\xf7\x82\x7d\xc9\x63\x81\x16\x4f\xbc\x3f\x2e\ \x86\xa7\xfb\xf2\x5f\xfa\xd5\xd6\x0d\xee\x9e\xc0\x7b\xed\x2d\xe4\ \xaf\x0f\xb7\xdb\x91\x8c\x9c\x10\xab\xff\x00\x41\xf4\x9f\xf9\xbf\ \xb7\x69\xb0\x1f\x09\x77\x46\x0a\x3a\x21\x45\x4f\x47\x9f\xda\xef\ \x1d\x21\x50\x82\x23\x51\xd9\x14\x75\xa0\x85\x1c\x0f\x23\x54\x6b\ \xff\x00\x90\xbd\xf2\x37\x90\xbd\xc2\xe4\x7f\x74\xff\x00\xbe\x83\ \x7f\xe7\xdf\x6e\x79\x8a\xdb\x76\xe4\xcb\xfb\x0f\xf1\x7b\xb8\x09\ \x31\x4b\xe0\xf2\x8d\xad\xbc\xba\x0b\x05\x3d\x93\xc5\x2c\x6d\x50\ \x3b\x90\xfd\xbd\x66\x87\xf5\x7b\x98\x39\x5b\xee\x79\xb4\x6c\x1c\ \xcd\xb7\x4b\x69\xbe\xc1\x33\x78\xb1\x49\x4d\x69\xaf\x75\x9a\x44\ \xad\x09\x1d\xd1\xba\x30\xcf\x02\x3a\x89\xf0\xba\x94\x2e\xc8\xda\ \x4e\x00\xf4\xcf\x42\x6f\xfe\xc4\x5b\xf3\xef\xad\x5f\x7f\x59\x3f\ \xf0\x07\x3e\xf1\x4b\xff\x00\x86\xec\x9f\xf5\x76\x2e\xb0\xef\xd9\ \x98\x48\xfb\xc2\x7b\x76\xff\x00\xf4\x92\x1f\xf1\xc7\xe8\xb1\x7c\ \x9b\x87\xc9\xfc\xc0\x29\x8d\xbf\xe6\x0a\xd9\xbf\xef\x11\x54\xff\ \x00\x8f\xbc\x5e\xfe\xe7\xb6\xa7\xdd\x27\x60\xf4\xfd\xff\x00\xb9\ \xff\x00\xd5\xd4\xea\x70\xfb\xde\xc7\xaf\x9f\xb7\x2f\xf9\xe2\xb7\ \xff\x00\x8e\x1e\xac\xe7\x01\x5b\xb5\xf6\xce\x16\xab\x72\x6e\xaa\ \xa8\xa8\xe8\x30\x38\x98\xf2\x45\xa6\x1a\x90\xa4\x7c\x33\x2c\x42\ \xef\x51\x50\x24\x28\xb1\x46\xa0\x96\x77\x1c\x5e\xde\xe4\x2f\xef\ \x3a\xe6\x0f\xbd\x05\xf7\x23\xfb\x5b\xec\xcf\xdd\xb7\x6a\x94\xc9\ \xcf\x7b\x95\xd6\xdb\xb8\xdd\xc0\x59\x2e\x60\x89\x20\x49\x92\x0f\ \x1f\x09\x69\x69\x71\x00\xbc\x92\xf6\xe9\x99\x59\x20\xb6\x68\xc3\ \x04\x96\x40\xd1\x67\xdd\x5f\x66\xf6\xb9\x39\x8f\x9a\xb9\xcf\xdc\ \xab\x95\xff\x00\x74\x36\xf1\x5c\xdb\x43\x20\x0d\x13\xbb\x48\xc8\ \x64\x29\xf1\x4d\x2c\x4f\xe0\xac\x11\x00\x41\x92\x50\xc4\x12\x8b\ \x42\xcb\xdf\x9f\x2e\xf3\x78\x5f\x88\x79\x2f\x92\xbb\x07\x6f\x63\ \xaa\xaa\x76\xff\x00\x68\xed\xea\x4c\x66\x03\x37\x4f\x1d\x6c\x19\ \x2c\x3e\x3f\xb2\xa8\x76\xe5\x74\x35\x8e\xf1\xca\x68\xab\x72\x38\ \xdf\x2d\xaa\x29\xed\x25\x24\x8e\x1e\x26\x2c\x81\x8f\x12\x79\x37\ \xee\x55\xb0\xf2\xe7\xdf\x70\xfd\xd2\xf9\x93\x9b\xae\xee\x60\xb8\ \xe5\x49\x45\xd5\xf5\xab\x34\x05\x6f\x2e\x36\x43\x7a\xcd\x02\x82\ \xa6\x4b\x68\x2e\x4a\x85\x86\xe2\xab\x73\x14\x74\x9d\x40\x90\xa2\ \xf4\x1e\xeb\xdd\x7b\xdd\xdf\xda\x44\xf7\x2e\xd3\x6b\x8a\x17\x5d\ \xc4\x18\xe1\x90\x07\xfd\x24\xbb\xf0\x94\x39\x35\x02\x47\x8c\x54\ \xb2\x53\xc3\x66\xec\x27\x48\x26\x26\xc7\xee\x0f\x8e\xdb\xe7\x72\ \xf5\x0f\x69\xf5\xa6\x4a\x83\x05\xbb\x7b\x97\x73\xe3\x63\xdc\x7d\ \x76\xd0\x47\xfc\x6e\x93\x33\xf7\x70\xc7\x97\xc8\x66\x69\x68\x04\ \xb4\xd8\x6c\xa4\x15\x92\x2a\xcb\x24\x8c\x91\x65\x44\x82\xa6\x1d\ \x6d\xe5\x77\xcc\x1e\x4a\xb9\xfb\xd9\xfb\x43\xf7\x6f\xfb\xe5\xfd\ \xd6\xbd\xe7\xe5\x4b\x8d\xcf\xdb\x0e\x5c\xe4\x7d\xc4\xed\x7c\xc0\ \xcc\x56\x24\x8e\x4b\x67\xfa\x6b\x4b\x77\x9b\x4b\xdf\x5a\x4b\x18\ \x66\x89\x23\x0d\x2e\xd6\xf1\xb5\xac\xf4\x89\xa0\x8e\x18\x5f\x99\ \x76\x8f\x6c\x79\xb3\xdc\xaf\x67\xfd\xcf\xe5\x2d\xd1\x2d\xf9\x96\ \xef\x7c\xb7\xfa\x9b\x10\x2a\xcc\x56\x45\xf1\x25\x70\xb5\x10\xca\ \x8d\x40\xc5\xa8\xb7\x21\x84\x89\xdc\x1d\x9c\x07\xf9\x07\x85\x97\ \x71\x7f\x30\xcc\x1e\x16\x9d\x19\xa6\xc8\xed\xad\x8d\x43\xe9\x17\ \x28\x2a\x7c\xe8\xf2\x9f\xe8\x91\x46\xe5\x98\x9e\x15\x54\x93\xee\ \x71\xfe\xed\x6f\x70\x76\xff\x00\x6a\xbf\xbb\xdb\x99\x7d\xc8\xdd\ \x1d\x45\x8e\xc5\x2e\xff\x00\x7c\xc1\x8f\xc4\x6d\x90\xca\xb1\x8f\ \x32\xd2\x3a\xac\x68\xa3\x2c\xcc\x14\x02\x48\xe8\x27\xf7\x8f\xe5\ \xc9\xf9\xaf\xde\x8d\xbf\x97\x2d\x94\x99\xaf\xfe\x86\x01\x4f\x2f\ \x10\x84\x2d\xf2\x0a\x09\x62\x78\x00\x09\x38\x1d\x1b\x2f\x9b\xfd\ \x3b\xb1\xb7\x96\xc4\x9b\xb6\x33\xd9\x8c\xf5\x2e\x53\xa4\x71\x75\ \x75\x18\x5c\x66\x2a\xb7\x11\x06\x08\xcf\x95\xad\xc0\xc9\x54\x99\ \xca\x6a\x8c\x3d\x5d\x7c\x87\xed\x52\x02\x8b\x0d\x4d\x35\x93\x49\ \xe6\xfe\xf9\xa3\xfd\xd8\xff\x00\x79\x1f\x70\xbd\xaa\xf7\xbb\x95\ \xfd\xaa\xdb\xb6\x4d\xb2\x6e\x5d\xf7\x03\x7a\xb6\x6b\xeb\xbb\xb8\ \xae\x9e\xf4\xc7\x00\xbb\x8d\x5e\xd2\x54\xbb\x8a\x11\xfa\xa6\x70\ \xcf\x2c\x13\x93\x26\xb0\x4d\x45\x06\x45\x7d\xe2\xbd\xbd\xd8\xf9\ \xa3\x93\x37\x4e\x61\x96\xee\xe1\x77\x0d\x92\xca\x41\x0c\x51\x34\ \x42\x20\xcf\xe1\xb1\x12\x29\x89\x9f\xe1\xd1\x40\xae\x94\x5a\x50\ \x67\xa4\x0f\x66\x64\x68\xf3\x5f\xcb\xdb\xb1\xab\x28\x19\x64\xa6\ \x9b\x0f\x46\x11\x90\xea\x53\xa3\x74\x6d\xd0\xd6\x23\x8e\x08\xf7\ \x9a\xde\xf5\xcc\xb2\xff\x00\x7d\x1f\xb3\xf2\x29\xc7\xee\xcb\x5f\ \xfb\xb4\x6e\x3d\x42\x9e\xdd\x5b\xbd\xbf\xdd\x0b\x9a\xa1\x71\xdd\ \xf5\x93\x7f\xda\x5c\x1d\x05\x7f\x18\xf7\xae\xe9\xd8\x5d\x09\x98\ \xa9\xda\x94\xeb\x3e\x4b\x21\x83\x78\x28\x99\x81\x22\x87\x24\x13\ \x4d\x26\x49\x62\xd2\xcb\x34\x94\x89\x34\x9a\x50\x8d\x25\xc8\x2d\ \x70\x08\x3d\x37\xfb\xcd\x7d\xcf\x3d\xb9\xfb\xd9\x27\xb3\xd7\x3c\ \xf8\xee\x91\x72\xae\xf4\xd7\x6e\xa8\x2a\x6f\x6c\xa5\x8b\xfc\x67\ \x6d\x77\xd4\xa6\x38\xae\x67\x86\xcd\xe4\x95\x6a\xeb\x14\x32\x24\ \x61\x5e\x51\x2a\x63\x1f\x20\xfb\xbd\xcc\x3e\xd3\xee\x9c\xe5\x0e\ \xc8\x14\xfe\xf6\xb3\x10\x82\xc7\x10\xcc\x8f\xfa\x77\x20\x50\x86\ \x68\xa3\x79\x95\x54\xd0\x16\x75\x66\xa8\x4d\x2c\xed\xd2\x9b\x67\ \x72\xd1\x7c\x0c\xf9\x97\x06\xee\x6a\x99\x72\xdb\xa6\x87\xe4\x06\ \x56\x59\x6a\xd9\xe4\x9e\x68\xb2\x7d\x23\x83\xa2\x32\xc9\x24\xa5\ \x9e\x46\x92\x6a\x69\x09\x62\x49\x63\x73\xef\x92\x9f\x7f\x5b\x08\ \x76\xef\xef\x3d\xfb\x95\xd8\x5b\x5b\x47\x05\x9c\x71\x72\x7a\x47\ \x1a\x28\x44\x8e\x35\xe6\xbd\xc1\x11\x11\x14\x05\x44\x45\x01\x55\ \x54\x00\xa0\x00\x00\x03\xac\xc2\xf6\x26\xed\x6e\xbe\xee\xfe\xea\ \xdc\x09\x4b\xbf\x89\xba\x16\x62\x49\x66\x63\xb6\xc0\xcc\xcc\x4e\ \x49\x24\xd4\x93\x92\x78\xf4\xff\x00\xfc\xbe\xfa\x6e\xaf\x6f\x74\ \x86\x07\x7a\x6e\x8c\x96\x1b\x1b\xb6\xf2\xd8\xd7\xc8\xd0\x98\x32\ \x74\x93\xba\xe3\x91\xe4\x47\x9f\x23\x56\x92\x35\x0e\x2c\x44\xd1\ \xb0\x91\x1e\x43\x34\x4c\xac\x92\x24\x6c\x08\x19\x59\xf7\xa8\xfe\ \xf4\x77\xf6\x63\x99\xf7\x7f\x61\x3d\x87\xf6\xdb\x70\xdf\xbd\xf3\ \x8e\x75\xb5\x2f\x75\x6b\x38\xb4\x82\x69\x14\x32\x0b\x6b\x48\xe9\ \x79\xb9\xcc\xca\xca\x62\x58\xd6\x0b\x67\x0e\x93\x47\x3d\xca\x7e\ \x9b\xc3\x7c\x97\xf7\x58\x8f\x9f\x63\xb7\xe7\xbe\x7c\xe6\x58\x2c\ \x39\x18\xa1\x93\x4c\x52\x27\x8d\x22\x29\x20\xf8\x92\xb5\x61\xb6\ \x40\x41\xd4\x58\xbc\x82\x85\x19\x23\x6e\xe0\x76\x3a\xbf\xbb\xba\ \xc3\xb1\x77\x5e\xed\xd8\xbd\x71\x5a\x99\x51\xb1\xe8\xb1\x95\x99\ \x7c\xa5\x22\x01\x8c\x96\x6c\xad\x45\x6d\x34\x50\xd1\xcc\xe7\xee\ \x2b\x5a\x36\xc7\xbe\xb9\x98\x04\x6e\x34\x17\x5f\x57\xbe\x28\x7d\ \xf1\xfd\xa2\xfb\xd2\x6c\x96\x7c\x93\xef\xaf\xde\xbf\x99\x24\xb9\ \xe7\xde\x6f\x9e\xe6\x38\xad\x27\x95\x64\xba\xb4\x82\xd1\x21\x75\ \x59\x62\x84\x0b\x4b\x28\xdb\xea\x01\x8a\xc6\xda\x82\x1e\xff\x00\ \x16\x38\x65\x2d\x1f\x59\x99\xec\xf7\x30\x7b\x64\xff\x00\xbd\xb9\ \x23\xda\xad\xa5\x60\xe5\xed\xa9\x23\x63\x2a\x29\x58\xa6\x92\x52\ \xe0\x95\x67\x26\x69\xd8\x78\x7d\xf3\xcb\x97\xc6\x96\x75\x01\xba\ \xd6\x13\xa0\x3a\x3f\x77\x7c\x93\xee\xbd\xef\xbd\xf7\xb6\x6b\x2f\ \x9f\xac\xc8\xee\xec\xb4\xf5\xd9\x0c\xcd\x6d\x4e\x42\xb6\xa8\x45\ \x5f\x34\x50\x89\xaa\x6a\xa5\x96\x56\x8e\x1a\x78\xd6\x34\x5b\xe9\ \x48\xd4\x2a\x80\xa0\x01\xf5\x7f\xec\xcf\x26\xec\x5b\x17\x23\x72\ \x7e\xc7\xcb\x7b\x3d\xb6\xdf\xb0\xdb\x6d\xf6\xe2\x2b\x7b\x78\xd2\ \x18\x90\x18\xd5\x8e\x94\x40\x14\x6a\x62\x59\x8d\x2a\xcc\x4b\x31\ \x2c\x49\x3c\xe0\xf7\x2b\x9a\x2e\x63\xbf\xdc\xa7\xbc\xb9\x79\xaf\ \xa4\x95\xcb\x3b\xb1\x66\x27\x51\x19\x63\x53\x81\x40\x3d\x00\x00\ \x63\xad\x84\xba\xbb\xa6\xb0\x1d\x73\x86\xa6\xc7\xe3\x28\x22\x8e\ \x48\xa2\x55\x77\x48\xd4\x31\x2a\xbc\xfd\x39\xe2\xde\xf2\x16\x2f\ \xa3\xdb\x2d\xc3\xcd\x2a\x47\x15\x55\x75\x31\x0a\x2a\xcc\x15\x45\ \x4d\x05\x59\x88\x55\x1c\x4b\x10\x06\x4d\x3a\xc6\x8b\xfb\x8b\xbd\ \xd6\xe1\x8f\x73\xb1\xa9\xa0\xa9\xc0\x04\x93\x41\xe4\x00\x24\xfa\ \x01\x53\xc3\xa1\x5a\xa7\x72\xec\x9d\x91\x8c\xc9\x66\xb7\xa0\x71\ \x4d\x4b\x14\x52\xd3\xac\x54\xf5\x15\x52\x49\xa7\xce\x67\x44\x82\ \x26\x10\xb3\x00\xab\xfe\x70\x81\xfe\x3e\xf9\xf1\xf7\xfc\xe5\xef\ \xbf\x07\x37\x37\xb5\x9b\x07\xdc\xf7\x9b\x0e\xd1\xb5\x5c\xae\xe2\ \x37\xc9\xfc\x6b\x0b\x5f\x07\x4f\xd1\x7e\xef\x71\x73\x3c\x6f\x7c\ \x9a\xb5\x5e\x82\xb6\x15\x63\xa5\x4c\x8b\x40\xa4\x64\x17\xdd\xd6\ \x6f\x63\x36\xd6\xe6\xbb\xdf\x78\xb6\x61\x7b\x7b\x19\xb6\xfa\x08\ \xca\x4f\x2e\xba\xf8\xff\x00\x50\x3c\x34\x65\x81\xa9\x48\x08\x37\ \x18\xc9\x0a\x72\x47\x45\xef\xe5\x1f\xcc\xda\x9e\x9a\xf8\xa7\x81\ \xef\xfe\xa5\xda\xb8\xdc\xab\x6e\x7d\xdf\x45\xb5\x30\x18\x9d\xd9\ \x4b\x3c\x54\x94\x69\x57\x51\xb9\xa9\xe6\xae\xac\xc7\xe0\x72\x54\ \xef\x2b\xa5\x46\xde\x62\xb1\x47\x54\xa0\x89\x2e\x5a\xfe\xf8\x1f\ \xed\x77\xdc\xfb\x79\xf7\x6f\xef\xbf\xee\x0f\xb0\xdf\x78\xdf\x72\ \xf7\x1d\xcb\x9a\x36\xdb\x17\xbd\xdc\xb7\x3b\x3b\xa9\x2e\x67\xbc\ \x9d\x23\xb0\x60\xab\x79\xb9\x40\xf3\x3a\xf8\x77\x61\x3c\x59\xad\ \xcb\xd2\x20\x04\x61\x69\x4e\x90\xee\x9e\xe4\xd8\x72\xe7\xb3\xfb\ \x07\x37\x7b\x7f\xcb\x96\xf6\x9b\x4c\xf2\x08\xad\xed\xa4\x89\x62\ \x8e\x18\xcb\x4c\x2b\xe0\xdb\x38\x45\x3a\xa3\x2d\xa1\x1e\x9d\xc4\ \x96\x26\xbd\x02\x1f\x00\xfb\xbb\xb6\x7e\x41\xf7\x1e\x7f\xb0\xfb\ \x4a\x8a\x82\x9e\xa9\xba\xa3\x25\x8a\xa2\x7c\x5e\x26\x2c\x4d\x04\ \x54\xd1\x6e\xdd\xab\x57\x4f\x49\x14\x69\xae\x69\x8a\x9a\x89\x9b\ \xc9\x34\x92\xcc\x56\xca\x5c\xaa\xa8\x5c\xcd\xfe\xf2\x0f\x60\x7d\ \xbc\xfb\xb6\xfd\xc5\xb9\x0b\xdb\xbf\x6c\xac\x6f\x21\xe5\xe7\xf7\ \x36\xd6\xf2\x43\x73\x73\x25\xcc\xb2\x5c\xcb\xb2\x6e\xf1\x49\x21\ \x67\x3a\x63\x0c\x90\x46\x3c\x38\x12\x28\x43\x2b\x38\x8c\x3b\xc8\ \xcd\x10\x7b\x13\xce\x5b\xbf\x3d\xfb\xe3\xbe\x6f\x9b\xf5\xcc\x52\ \x6e\x2b\xcb\x72\x42\x04\x71\xac\x6a\xb1\xa5\xed\xab\x05\xa2\xe5\ \xa8\xce\xdd\xce\xcc\xd4\x20\x6a\xd2\xaa\x01\x4c\xdb\xbf\xcb\xb7\ \xbb\x32\xfd\xad\xbf\x77\x0e\x73\x68\xe4\xb0\x38\x8c\xbe\xed\xdc\ \x59\x2c\x7d\x5b\x65\x30\x86\x3a\x9a\x4a\xfc\xc5\x65\x54\x13\xac\ \x74\xd9\x49\xe5\x55\x92\x19\x43\x7a\x95\x5a\xc7\x91\x7f\x79\xb3\ \xed\x7f\xf7\x81\x7d\xcc\x76\x6e\x45\xe4\x8d\xab\x78\xf7\xde\xc2\ \xdf\x70\xb5\xd9\xec\xe1\x95\x0d\xae\xe4\x4a\x49\x1d\xb4\x69\x22\ \x92\xb6\x44\x12\xac\xa4\x54\x12\x31\x82\x47\x51\x1f\x38\xfb\x33\ \xee\xfd\xd6\xe7\xba\xcf\xb7\x72\x34\xf3\x45\x25\xd4\xac\xa4\x49\ \x6e\x2a\xad\x23\x15\x3d\xd3\x0e\x20\xd7\xa3\xc3\xdc\xdf\x15\x77\ \xf5\x7f\xc0\x3c\xd7\xc7\xed\xab\x89\xab\xce\xee\xf9\x37\x3e\x33\ \x27\x49\x8f\x8a\xb2\x82\x2a\x89\xe9\xd3\xb0\xa9\x37\x0d\x43\x8a\ \x9a\xba\xaa\x7a\x45\x11\x51\x2b\x35\x8c\x80\xd8\x58\x0b\xf1\xef\ \x9b\x37\xff\x00\x79\xaf\x60\xdb\xfb\xd4\x24\xf7\xd6\x1f\x72\x2d\ \x9b\xda\x1f\xdc\xe2\x11\xb9\x78\x37\x7e\x17\x8b\xfb\x8c\x5a\xe8\ \xf0\xfe\x9f\xea\x2b\xf5\x1f\xa5\x5f\x06\x95\xcd\x74\xe7\xa9\xff\ \x00\x68\xe4\x3e\x79\x8f\xee\xdd\x0f\x28\xdc\xf2\xdc\x89\xcd\x82\ \xe8\xb1\xb6\xd7\x16\xad\x3f\x58\x64\x07\x50\x90\xc7\xfd\x9f\x77\ \xc7\xc3\x1c\x71\xd1\x4d\xea\x7f\xe5\xbb\xd9\xf4\x5b\x6a\x96\x2d\ \xc9\x8f\xaf\xc3\x57\xac\x69\xae\x92\x4c\x96\x36\x42\x8c\x3e\xa0\ \x9a\x5a\xda\x88\xf8\xff\x00\x06\xf7\xd6\x3b\x2f\xef\x14\xfb\x8f\ \x2c\x40\x4b\xf7\x83\xdb\xd5\xbf\xe7\x93\x73\xff\x00\xb6\x1e\xb1\ \x63\x73\xf6\x43\xde\xd7\xb8\x66\xb7\xf6\xee\x77\x4f\x5f\x16\xd7\ \xfc\xb3\x8e\x8d\x6e\xcc\xf8\xdd\x59\xb5\x70\xb5\xb8\x74\xc8\xbc\ \xb5\x20\x4b\x4e\xeb\xe5\xf2\x34\x72\xa1\x31\xba\x92\xbc\x6a\x57\ \x16\x36\x27\xde\x79\x72\xc5\xfe\xd3\xcc\x5c\xbd\xb3\x73\x1e\xc1\ \xb8\x2d\xce\xc7\xb8\xda\x43\x73\x6d\x2a\x86\x02\x58\x27\x8d\x65\ \x86\x40\x1c\x2b\x00\xf1\xba\xb0\x0c\xaa\xc0\x1a\x10\x0e\x3a\xc6\ \x3d\xf6\x6b\xab\x4d\xda\xee\xc3\x71\xb3\xf0\xaf\x6d\xa6\x78\xa4\ \x43\x42\x56\x48\xd8\xa3\xa9\x20\x90\x74\xb0\x22\xa0\x91\x8c\x13\ \xd2\x63\xe5\x6f\x5a\xe4\xf1\x1f\xcb\x9f\x79\x6c\x99\xa7\x91\xeb\ \x53\x7a\xe1\x6b\x0c\xa4\x92\xe5\x27\xec\xec\x7d\x7a\x8b\x9e\x6c\ \x23\x7b\x7b\xe1\x66\xf1\x6e\xcb\xfd\xf6\x73\xc3\x5e\xef\xdc\x03\ \xff\x00\x25\xa1\xd7\x41\x39\x62\xf1\x1f\xee\x7b\x69\x72\xab\xd9\ \xf5\xac\x29\xff\x00\x53\x02\x3a\x00\x7e\x0f\x75\xae\xf0\xea\x0a\ \x4c\x6f\x69\xd1\xd2\x9d\xc2\xd8\xdc\x76\x41\x23\xc4\x54\xd6\x4b\ \x49\x04\xc3\x21\x8d\xa8\xa2\x62\xd5\x11\xc1\x52\xc8\x62\x13\xea\ \x1e\x83\x72\x2d\xef\xa7\xff\x00\x79\x4f\xbb\x7c\x1f\x79\xdf\x63\ \xb9\x87\xda\x1b\xee\x6a\x97\x67\xb5\xdc\x27\xb4\x94\xdc\xc7\x02\ \xdc\x32\x1b\x5b\x98\xee\x00\x11\x34\xb0\x86\xd6\x63\xd0\x4e\xb1\ \xa4\x1a\xd0\xd2\x9d\x63\x2f\x27\xfb\xa8\xbe\xdc\x73\xfe\xdf\xcd\ \x10\x6d\x29\x75\x34\x09\x2a\x78\x65\xcc\x60\xf8\xb1\xb4\x75\xd6\ \x15\xc8\xa6\xaa\xfc\x26\xb4\xa6\x3a\x8b\xb8\xbe\x5b\xfc\xeb\xab\ \xed\x1d\xc6\xbb\x7f\x37\xfc\x2b\x68\x4f\x95\xab\x9b\x0f\xb6\x57\ \x67\xec\x7c\x8c\x38\x5a\x07\x95\x8d\x3e\x3d\x33\x35\x9b\x41\x72\ \xd9\x05\xa6\x8e\xca\x25\x9a\x46\x91\xbe\xac\x6f\xef\x15\x39\x47\ \xfb\xa8\xfe\xe8\x1b\x1f\x2f\xec\x5b\x37\x34\x7b\x62\xdb\xde\xff\ \x00\x6d\x6b\x1c\x77\x37\xed\xb8\xef\x56\xad\x77\x32\xa8\x0f\x70\ \x6d\xad\xf7\x55\x86\x03\x2b\x55\x8c\x71\x01\x1a\x56\x8a\x29\xd4\ \xbf\xba\x7d\xe7\xbd\xc7\xbd\x9a\xea\xfb\x6e\xe6\x61\x65\x6b\x24\ \x8c\xd1\xc2\x20\xb4\x94\x44\xa4\xd5\x63\x0f\x25\xb1\x77\xd2\x31\ \xa9\xb2\x78\x9e\x8c\x47\xcf\x7f\x92\x7f\x23\xfa\x6b\xac\x7e\x2e\ \xe6\xfa\xab\x74\x8d\xbd\xb9\xb7\xfd\x15\x4b\x6f\xe9\x3f\xbb\x1b\ \x4b\x33\xfc\x46\xb2\x2d\xb5\xb4\xab\x74\x7d\xbe\x7f\x03\x94\xa6\ \xc7\x68\xc8\x64\x6a\x4d\xa9\x52\x1f\xd5\x6f\xa2\xa8\x1c\xcd\xfb\ \x8e\xfd\xd3\xbd\x83\xf7\x87\xdf\xcf\xbd\xa7\x24\xfb\x8b\xed\xff\ \x00\xef\x1e\x5a\xe5\x8d\xe5\xa0\xdb\x60\xfa\xed\xca\xdf\xe9\xa2\ \x1b\x8e\xe5\x06\x8f\x12\xd6\xf2\x19\x66\xfd\x2b\x78\x93\x55\xc4\ \x92\xb7\x66\xaa\xea\x66\x2d\x92\x1e\xeb\x7b\x93\xcd\xfc\xb5\xc9\ \x1e\xda\xef\x3b\x36\xfb\xe0\x5f\xee\x16\x62\x49\xdf\xc1\xb7\x7f\ \x11\x8c\x16\xef\xab\x4c\x91\x32\x2f\x73\xb1\xa2\x2a\x8c\xd2\x94\ \x00\x00\x4a\x8f\xe6\x57\xca\x79\xba\x9f\x7a\x60\x77\xe6\xcb\x83\ \xb1\xa6\xdf\x9b\x67\x21\xb7\xe8\x73\x4e\x31\x7b\x51\xf6\xe4\x59\ \x8c\x36\x47\x17\x57\x57\x1d\x16\xde\xdb\x51\xc1\x95\x67\x6a\xf4\ \x94\x2c\x85\x2c\x61\xd2\x08\x0c\x4f\xbe\x86\x73\x37\xf7\x50\xfb\ \x12\xbc\xfd\xed\x67\x3f\x7b\x49\xe3\xf2\x8a\xf2\xfe\xe5\x0d\xe4\ \xf6\xd1\xb5\xee\xe4\xbb\x83\xdb\xdc\xdb\xdc\x44\x1e\x5d\xc3\x71\ \x95\xad\x82\x78\x2f\x1f\xe8\xa9\x0c\x25\x2c\xca\x4a\x28\xeb\x1f\ \xf6\xcf\xbc\xef\x34\x9d\xab\x99\x76\x2e\x69\xb8\x4d\xd3\xeb\x60\ \x78\x91\xd8\x43\x6e\x60\x57\x8d\xe3\x6a\x2c\x10\x20\x92\xba\x83\ \x77\x9c\x69\xa0\x22\xa7\xa5\x47\xc4\x1e\xa2\xc8\xe4\x3a\xfe\x4c\ \x5e\xe4\xa5\x92\x09\x27\x89\xd5\xd6\x44\x65\x37\x6b\xff\x00\x55\ \xff\x00\x1f\x7d\x6c\xd9\x20\x66\xb6\xd1\x28\xcf\x58\x65\xcd\x57\ \x48\xb7\xe2\x5b\x73\x50\x0f\x46\xdc\x74\xc6\x2b\xad\xfe\x33\x7c\ \xb1\xc1\x50\x58\x43\xba\xfa\xaf\xb0\xe5\xa8\xb1\x3f\x59\x7a\xe7\ \x71\xd0\x9f\xc5\xff\x00\x44\x9e\xf8\x69\xfd\xe4\x56\x89\x6f\xf7\ \xf9\xfe\xef\xc4\x53\x86\xdf\x76\xaf\xfc\x98\xac\xba\xcd\xef\xbb\ \x0e\xe5\x2d\xef\xb1\xde\xf9\x49\x20\xee\x8e\xda\xe2\x9f\xf6\x41\ \x29\xea\xb9\x30\x1b\xb3\x65\x6d\x6f\xe5\xeb\x27\x42\xec\x2f\xe3\ \x30\xef\x6d\xd9\xba\x85\x7e\xf5\x91\xf1\xe6\x8a\x2a\x84\x9b\x3b\ \x1e\x62\xaa\xb6\x86\xb6\x9e\xa2\xae\x29\xe9\xfe\xc3\x6f\xe3\x71\ \xac\xae\xd1\x4d\x34\x7a\xc9\x8c\x25\xd7\xdc\xe6\x7e\xea\x9e\xeb\ \xf3\x3f\xf7\x89\xdb\xfd\xe4\xf9\xd6\x0d\xb9\xbd\xa7\xd9\x76\x33\ \x1e\xd0\x62\xb8\x13\x4a\xb3\x25\xb7\xd2\xa4\x33\xc0\xf1\xc4\xf1\ \xc8\x66\xbc\xbf\xbf\x57\x45\x96\x18\xca\xc6\xbe\x31\x93\x49\x25\ \x72\x7b\xa7\xcb\x3b\x7f\xb2\x12\x72\x06\xd7\x24\xe3\x99\xee\xef\ \x43\x5d\x6a\x8f\x4a\x14\x2f\xe2\x33\xa3\x86\x65\x65\xd3\x14\x30\ \x90\x4a\xbb\x55\x8e\x80\xb5\xe8\x7c\xf9\x39\x8c\x9a\x93\xe1\x3f\ \xc4\x3a\x1a\x80\x4c\xd4\x35\xbb\x1e\x19\x43\xfd\x75\xa6\xc4\xcb\ \x46\xda\xae\x3e\xb7\xf7\x8e\xdf\x72\x5a\xa7\xf7\x98\x7d\xf7\x6b\ \xe4\x77\x3f\xfb\xbd\x5a\xf4\x38\xf7\x7e\x92\x7d\xde\xbd\xa3\x2b\ \xc0\x8b\x7f\xfb\x44\x93\xa3\x01\xb8\x26\xfe\xef\x7c\x05\xec\x8a\ \xd9\x2d\x12\xd6\xe0\xc4\x54\xcc\x2c\x83\xcb\x93\xaa\xdb\x98\x1a\ \x72\x0f\x20\x9f\xbd\x6b\x7e\x2e\x78\xf6\xb3\xef\x27\x79\x1f\x38\ \xff\x00\x7c\x3f\xdd\x8f\x66\xda\x9c\x1b\xcd\x9f\x97\xac\xd2\x7a\ \x54\xe9\x30\x0d\xf7\x76\x70\x45\x05\x0f\xd3\x4c\x87\x89\x00\x10\ \xd5\xe2\x01\x2f\xb5\x56\xad\xb4\x7d\xd4\x3d\xcb\xba\xba\x07\xc1\ \xbc\xdd\x27\x64\xf9\x87\xfa\x1b\x41\xe6\x6b\xfa\x91\xb0\xf2\xf4\ \xa7\x99\xc7\xfc\xbc\x44\xef\xb5\xaa\x27\x9c\xeb\x76\xc4\xb0\xd6\ \x7e\xa4\x1a\xca\x33\xf5\xff\x00\x61\xec\x51\xfd\xf6\x6e\x5f\xee\ \xe5\xed\x0d\x7f\xe9\xb2\x1f\xf7\x6d\xbe\xe8\xaf\xee\x77\x12\xc7\ \xee\x97\x38\x95\x18\xfd\xca\x7f\xed\x26\x0e\x8a\x5f\xc3\xdc\x3c\ \x19\x1d\xeb\xbd\xe9\xaa\x22\x49\x23\x7d\xc1\x98\x52\xac\x01\x52\ \xad\x5d\x30\x3c\x11\xfd\x3d\xf6\x17\xdb\x36\x07\x96\x79\x78\x1e\ \x1f\x41\x6f\xff\x00\x56\x53\xac\x46\xf7\x15\x18\x5e\xdc\xb0\xe3\ \xe3\x3f\xfc\x78\xf4\x69\xf7\xcf\xc4\x4d\xab\x87\xdc\x78\x4e\xc4\ \x15\x14\x54\xbf\x77\x5f\x44\xe9\x18\x3e\x0a\x84\xaa\x90\x1a\xb4\ \x84\xa1\x52\xb2\x8f\x1c\x47\xd4\x1a\xf7\xe0\x81\xc5\xf0\xfb\xdb\ \xef\xbe\x8f\xb5\xfe\xfc\xfb\x9d\xf7\x89\xf6\x1b\x97\xf6\x0d\xce\ \xd7\x9c\x79\x42\x2d\xe1\x24\x9d\x96\x39\x6c\x2e\xed\xf6\xf9\xfe\ \x82\x4b\x88\x6e\x11\x83\x23\x3c\xee\xba\x61\x92\x20\x19\x0e\xb8\ \xe5\x94\x06\xd3\x27\xef\x5e\xd2\xf3\x8f\x21\x72\x87\xb7\x5c\xef\ \xb8\xee\x16\xd3\x6c\xbb\xc3\x59\x95\x8c\x16\x5b\x88\x64\xb8\x8f\ \xea\x16\x37\x8d\x85\x08\x58\xd4\xd5\xd5\xb0\xd8\x64\x43\x4a\xb4\ \x7c\xaa\xc3\xcb\x9b\xf9\xbd\xf1\x7a\x8a\x24\x67\xd7\x47\xb7\xe6\ \x98\x25\xc3\x8a\x4a\x2d\xf3\x90\xae\xad\x75\x21\x5e\xc6\x3a\x3a\ \x79\x1a\xf6\xb0\xb7\x3c\x7b\xe5\x2f\xdc\x0f\x98\xe0\xe5\x4f\xee\ \xe8\xfb\xeb\xef\x73\xc8\xaa\x63\x4d\xe1\x10\xb7\xc2\x66\x9b\x60\ \x82\x08\x14\x8a\x8a\x86\x9e\x48\xd6\x80\xd4\xd6\x83\x34\x1d\x66\ \x07\xbe\x1b\x73\xee\x9e\xfb\x7b\x45\x68\x8a\x48\x67\xb3\x2d\x4e\ \x3a\x12\xf9\xdd\xc8\xe3\xc1\x15\x8f\x0f\xb7\xa9\x1b\x93\x21\x1e\ \x47\xf9\xa1\xec\x08\x23\x68\xdd\xb0\x3b\x12\xb3\x19\x30\x40\xda\ \xe2\x92\x6e\xb9\xde\xd9\x85\x49\x89\x24\x19\x0c\x59\x95\x61\x6b\ \x0d\x0c\xbc\x5e\xe4\x92\x72\x76\xc9\x2e\xd3\xfd\xca\x7e\xeb\xdf\ \x48\x8e\x13\x73\xdf\xa1\xb9\x52\xd4\xa3\x2a\x73\x2e\xcd\x67\x54\ \xa0\x1d\xba\xad\x19\x4d\x49\x3a\xc3\x66\x94\x01\x76\xed\x74\xb7\ \x5f\x7b\x9e\x59\x8d\x58\x13\x6d\x66\xf1\x9a\x79\x13\xb7\x5d\xcb\ \x43\x9e\x34\x94\x1f\x2c\x11\xe7\x9e\x93\xfd\x2b\x15\xbf\x98\xbf\ \x75\xc9\x6f\xab\xee\x2f\xf7\x9c\x6e\x33\xdc\x83\xef\xcb\x7f\xd8\ \x1c\xbd\x9b\x5f\xfa\x53\xff\x00\xda\x55\xc7\x44\x1c\x9a\x9f\xf8\ \x15\xdc\xce\xdf\xf3\xd7\xff\x00\x56\xd3\xa7\x3f\x85\x31\x68\xf9\ \x33\xf2\x5d\xad\xfa\xb3\x3b\xcb\xfd\xe7\x7e\xa9\xf7\xbf\xef\x2b\ \x6a\xfd\xc1\xbe\xe7\x83\xfa\x5b\x2f\xfe\x4b\x92\xf4\xdf\xdd\xf5\ \x34\xfb\xe1\xee\xa3\x7f\x42\xf3\xfe\xee\x09\xd0\x01\xf0\xc6\x90\ \x36\xfc\xde\x9a\xbe\x83\x71\x65\xee\x40\xbd\x81\xaf\x9a\xe4\x0b\ \x0b\x90\x3d\xf7\xc3\xdb\x99\xe6\x8f\x94\xf6\x47\xb7\x8d\x5e\xe0\ \x6d\xb0\x15\x56\x6d\x21\x98\x40\xba\x54\xb5\x1b\x48\x27\x05\xb4\ \xb5\x06\x74\x9e\x1d\x60\x3f\xb8\x96\xe9\x25\xfc\xe2\x46\x2b\x19\ \x9d\xea\x40\xa9\x03\x59\xa9\x02\xa2\xa4\x0e\x02\xa2\xbc\x2a\x3a\ \xb5\x0c\xdf\x51\xf4\xd3\xcd\x4b\x9b\xdf\xeb\xb7\xb2\x2a\x3c\x73\ \x53\x7f\x79\x6a\xa8\x28\x71\x32\x17\x06\x48\x9d\xa9\xaa\xa6\x8d\ \x2a\x43\x2a\x13\xa2\x47\x78\xd8\x03\x75\x36\xf7\xf3\x81\xf7\x82\ \xfe\xf4\x9f\xbe\x37\xbb\x17\x9c\xcf\xc8\x3e\xd7\x7b\x68\xfc\x9b\ \x15\x9d\xcc\xd6\xb7\x7f\xbb\xe2\xb8\xdc\xf7\x68\x64\x81\xfc\x2b\ \x88\x5a\xfc\xc0\x91\xc0\x51\xe8\x0b\xdb\xd9\x5b\xdc\x23\x15\xd3\ \x38\xa8\xaf\x40\xfd\xb5\xfb\xab\xfb\x45\xc9\xd0\x6d\x9b\xef\x31\ \x73\x41\xde\xa4\x9a\x24\x96\x2f\x1d\xa3\xb5\xb4\x75\x71\xae\x37\ \x16\xe1\xd9\xdc\x32\xe4\x2c\x93\xc9\x1b\x0a\xd5\x0f\x40\xff\x00\ \x6c\xee\x7e\xb1\xdd\x58\x89\x36\x86\x3f\xe6\x27\x50\xf5\x2e\xd9\ \x29\xfc\x2e\x9f\x09\xb6\x77\x06\xc5\xc3\xd4\x88\x95\x1d\x1b\x1f\ \x35\x73\x6f\xaa\x3a\x82\xa2\x30\x54\xc1\x4e\xb4\xd1\x14\x04\x34\ \x6d\xee\x1b\xf6\x13\x76\xe6\x1f\x6f\x37\x48\xb9\xcb\x70\xfe\xef\ \x1e\x73\xf7\x07\xdd\x87\x3e\x3c\xfb\x9e\xf4\xdb\xae\xe2\xa6\x66\ \x20\xf8\xf6\xf6\x2b\xb0\xf8\x51\x92\xd4\x61\x35\xdb\xdf\x5c\xab\ \xd1\xa3\xb9\x4e\x06\x46\xe7\x6d\xb2\x1d\xfe\xdd\xb6\xa8\x3d\xf5\ \xda\xf6\x2e\x55\x51\xa2\x3b\x6b\x34\xb6\xb7\xec\x15\xec\x92\x73\ \x7b\xa9\x85\x2a\x0a\x44\x20\x8c\x8c\x34\x67\xa2\x9b\x43\xfc\xb7\ \x7e\x30\xff\x00\x05\xa7\xed\x2d\xc5\xde\x0b\xb9\x76\xb4\xb5\x2e\ \x7f\xbd\xb0\xcd\xb6\x20\xda\x75\x72\x0c\xa4\xb8\xc2\xb4\xb9\x48\ \xeb\x72\x54\x6d\x6a\xf8\x9a\x9c\x95\x9e\x40\x66\x52\x3e\xbe\x91\ \x98\x2b\xfd\xe9\x3f\x7a\x1d\xcb\xdc\x69\xfd\xab\xd9\xbe\xe7\x8a\ \x9e\xe3\x2c\x41\xc6\xd1\x31\xdc\x4e\xe3\x1a\xfd\x32\xdd\x03\x25\ \xb7\x81\x6f\x30\x1e\x03\x2d\xc0\x06\x28\xc8\x85\x94\xf0\xee\x31\ \x83\xfd\xdd\x7d\xbf\xb6\xe5\xd4\xe6\x0b\x8f\x76\x08\xd8\x0b\x50\ \xdd\x20\xb7\xf0\x18\xf8\x86\x3a\x2c\x9a\xdd\x6b\xac\x14\xae\xa6\ \xef\x07\xec\xe8\xc4\x6c\x2c\x97\xc4\x0e\x85\x34\xf9\x5d\xad\xdd\ \x74\xb8\x4a\x6a\x64\x8e\x1a\xda\x7c\x75\x6d\x3d\x65\x3e\x5a\x9a\ \x30\xed\xf6\xd9\x7a\x2a\x1c\x0d\x6b\xd4\xd3\x5b\x51\x0c\xab\x1c\ \x91\xb9\x05\x1d\x1a\xde\xc9\x7e\xf0\xdc\xc7\xfd\xe0\xbf\x7a\xcf\ \x6f\xe7\xf6\xdb\x9e\x3e\xe2\x7b\x0a\x40\xa4\xcb\x05\xe3\x47\x3c\ \x77\x76\x32\x76\x8f\x1a\xc6\xe2\x6d\xe2\x25\x8a\x63\xda\x1d\x18\ \x4d\x14\xd1\x82\x93\x41\x2c\x60\xd1\xbf\x6f\xf6\x6f\x63\xbd\xb3\ \xe6\x25\xe6\x5d\x9b\xde\xfd\xc9\xe5\x6e\xd7\x86\xa8\xd0\xcc\xb9\ \x3a\x27\x8d\x2c\xd8\xb2\x0c\xd0\x82\x8c\x8d\x42\x8e\xad\xc4\x5a\ \xc3\x6e\xce\xa6\xf9\x11\x49\x98\xdf\x1d\x05\xbe\xb6\xfe\xe6\xcf\ \xed\xca\xc4\xc6\xe7\xe9\xe8\x24\x9e\x89\x6b\x66\x11\x89\xa1\xa4\ \xce\xe3\x72\x14\x94\x79\x1a\x1a\xa9\xe0\xb8\xa3\xae\x78\x44\x53\ \x68\x68\xcb\x3a\xa1\x30\xc6\x1f\x75\x9f\xbd\x67\xde\x2f\xfb\xb8\ \xf9\xb3\x61\xf6\x93\xef\x33\xc9\xbb\xb4\x7e\xca\xee\x95\x96\x38\ \x26\xd3\x3c\xbb\x78\x66\x2b\x25\xce\xd7\x34\x72\xc9\x0c\x90\xab\ \xf7\x5e\x6d\xeb\x26\x0b\x78\xf1\x2c\x53\x48\xc2\xe4\xef\xdd\xff\ \x00\x66\x79\x03\xef\x0d\xb4\xde\x73\x4f\x20\x6e\x56\xa3\x9d\x6d\ \xc6\x93\x22\xd5\x12\xe2\x82\xab\x1d\xca\x95\x57\x0e\x46\x22\x9c\ \xaf\x96\x86\x2c\x8a\x3c\x3c\x9b\x57\x15\xb6\xfb\x7a\x95\xe8\x6b\ \x4d\x3d\x45\x25\x31\x91\x72\xb4\xf1\x4d\x0c\xed\xfb\x13\x78\x2a\ \x29\xa3\x96\x06\x92\x26\xd5\x2d\xd7\x5a\x33\x2d\xb9\x04\xf1\x7e\ \xd2\xfd\xf9\xbe\xfa\x16\x3f\x76\xbf\xbb\x8d\x9f\xb9\xdc\xa7\xb6\ \x49\xb8\x73\x2f\x31\xb4\x76\x9b\x31\x92\x17\x48\x22\x9e\xea\xd6\ \x4b\x98\xee\xef\x12\x55\x47\x58\xe0\x85\x0c\x82\xd5\xd5\x66\x9a\ \x5d\x10\xb2\x46\x9e\x34\x90\xe0\xe7\xb1\x5e\xc6\x5d\xfb\x83\xee\ \x74\xbc\xb1\xbb\x5c\x8b\x5d\xb3\x6d\x0d\x35\xe6\x96\x06\x47\x8e\ \x29\x56\x36\x86\x12\xa4\xa9\x69\x1d\x82\xf8\xa0\x94\x44\xab\x82\ \xc7\x42\xb8\x31\xf2\xf7\xe2\x47\x65\x7c\x98\x1b\x47\x63\xe0\xb3\ \xdb\x37\x63\xf5\x16\xca\x4a\x66\xc7\xe1\x65\x9b\x2a\x6a\xaa\x72\ \x11\x53\xa5\x22\xd6\x8c\x3e\x37\x10\x71\xeb\x0e\x3b\x1c\xcd\x4d\ \x46\x8d\x52\x0c\x29\xac\x80\x3c\xcd\xa7\x84\xbf\x73\xcf\xbe\x9f\ \xdd\xeb\xee\xcf\xb2\x73\x77\x3f\x73\xaf\x2e\xf3\x4f\x35\xfd\xe3\ \xf9\xa2\xea\x69\x77\x1b\xe1\x15\xa2\xc1\x14\x2f\x2b\x4a\x2d\xa3\ \xbb\xb8\xbc\xfa\x89\x24\xb8\x9a\x97\x57\xb3\x0b\x55\x12\xc8\xf1\ \xa7\x70\xb5\x46\x93\xa1\xfe\xe7\xfb\x4f\xcf\xbc\xfb\x7d\xb6\x6c\ \xbb\x3d\xf6\xd9\xb6\x7b\x7f\xb6\xc4\x89\x6f\x0e\xa9\x4b\xb3\x84\ \x0b\xe2\x34\x49\x16\x85\x58\xd3\xf4\xa1\x4f\x10\x95\x55\x2d\x8f\ \x14\x85\x0b\xe9\xba\x91\xbe\x32\xed\x09\xb6\x2f\x58\xf6\x39\x3b\ \xab\x2f\x84\x8a\x4a\xda\xfd\xbd\xe3\xc7\xc8\x59\x66\xa9\x8a\x95\ \x6f\x1d\x65\x64\xc1\xd1\xe3\x66\x56\xba\x3a\x86\xe3\x83\xcf\x67\ \xfd\x8a\xe6\x9f\x6c\x7f\xbc\x3b\xdb\x9b\xae\x6e\xf7\x6f\xee\xd5\ \x15\xa6\xcd\xcb\xfb\xe4\x96\xfb\x6c\x5b\xbb\x1b\xb6\x99\xda\xd6\ \x09\x2e\x2e\x56\x36\xb5\xb6\x45\x8c\x89\x63\x88\xad\x6e\x63\x76\ \x8c\x92\xc1\x90\x01\x85\x9c\xff\x00\x65\xcd\x5e\xc2\x73\x64\x3b\ \x7f\x2c\xfb\x8c\xf2\xdc\x6e\x16\x4b\x25\xcb\x5a\x0f\x08\x22\x89\ \x5d\x52\x32\xc2\x59\x18\xb7\x6b\x35\x69\x1b\x00\xd4\xa1\x0d\x5e\ \x99\xbb\x8b\x35\xdc\xbd\x6b\xfc\xb5\x32\x95\xd9\x5d\xfd\xbb\xb2\ \x1d\xab\x95\xdd\x94\x4b\x16\xeb\xad\xdc\x19\xc9\xb7\x45\x2d\x2d\ \x57\x71\xa5\x6d\x35\x1d\x2e\x78\xd7\xc9\x91\x11\x1d\xb7\x8c\xf1\ \x00\x64\x48\xd6\x96\x56\x84\x2d\xad\x7e\x67\xed\x9e\xd4\xfb\x69\ \x75\xfd\xf0\x3b\xa7\x20\x6c\x9e\xdc\xec\x70\xfb\x7d\xb2\x58\x33\ \x3e\xdd\x0d\x95\xa2\xed\xcc\xc7\x96\x63\x2e\xcf\x64\x21\x5b\x7a\ \xad\xd5\xd8\x63\x48\xd9\x8d\xc4\x6b\x31\x6a\xd4\x8c\xa8\x8f\x9a\ \x77\xa9\x7e\xeb\x76\x3b\xfd\xe6\xfb\x78\xdb\xbd\xec\xb4\x13\xbc\ \xd2\x99\xc0\x17\xec\x05\x26\xd6\x5f\x31\xc5\x8e\xe0\x34\x12\xb4\ \xeb\xbf\x86\x59\x3e\xcf\xa8\xf8\x8f\xf2\x2f\x39\xbc\xb3\xd9\x9c\ \xa6\x66\x5d\xa3\xb9\xeb\x36\xf5\x56\x47\x23\x59\x57\x51\x46\x61\ \xeb\xfc\xb3\xc6\x69\xa6\xa8\x9a\x49\x21\x22\xb1\x55\xbd\x24\x7a\ \x85\xfe\xbe\xcf\x7f\xbc\x73\x95\xb9\x7b\x97\xbe\xf7\xdf\x72\xbb\ \x6d\x93\x97\x2c\x2c\x6d\x6e\x2f\xac\x8b\xa5\xbd\xbc\x30\xa4\x87\ \xf7\xdd\xb2\xf7\xac\x68\xaa\xf8\xc7\x70\x38\xc7\x0e\x8b\xfd\x84\ \xdc\x67\xbf\xf6\xcf\xdd\xef\x1e\xfa\x69\x8c\x71\x4a\x2a\xf2\x33\ \x95\xff\x00\x14\x90\xe0\xb1\x24\x7e\x5d\x11\x5f\x87\x7b\xcb\xe4\ \xc7\x5f\x7f\x7e\x3b\x17\x64\xd5\x53\x67\xeb\x37\x76\xdd\x97\x0f\ \x93\xc5\xee\x84\xad\xc9\x62\xce\x46\x92\x71\x3e\x1b\x71\xbc\x10\ \x56\x53\x54\x54\x64\xf0\xba\xe7\x48\x94\xca\xb1\xbc\x75\x32\x2b\ \x82\x2d\x6e\xa2\xfd\xe4\xbe\xe6\x7e\xda\x7d\xec\x79\x7b\x92\xf6\ \x7e\x77\x5b\x8b\x25\xd8\xf7\x0f\x1e\x19\xac\x84\x71\xcf\xe0\x3a\ \xe9\xb9\xb2\x56\x64\x74\x48\x6e\x69\x13\x39\x11\x96\x57\x86\x36\ \x4a\x1a\xd7\x1c\xf9\x33\xde\x3d\xcf\xda\x9d\xcb\x74\x93\x68\x09\ \x28\xbc\x87\x43\xac\xba\x99\x35\x83\x54\x94\x80\x41\x2f\x1f\x70\ \x19\xa1\x0c\x41\xae\x3a\x3c\xff\x00\x10\xd7\xb2\x5a\x4c\xc4\x9b\ \xed\x09\xc8\x64\xf2\x95\xf9\x4a\xe9\x22\xa1\xa6\xc6\xd2\x3d\x6e\ \x46\xaa\x5a\xba\xb7\xa6\xc7\xd0\xc5\x4d\x43\x43\x03\x4f\x2b\x14\ \x8a\x18\xe3\x8a\x35\xf4\xaa\x85\x00\x7b\xcc\x5f\x6f\x36\x1b\x4e\ \x4d\xe5\xad\x87\x94\xb6\xa4\x95\x76\x6d\xb2\xce\x1b\x58\x04\x92\ \xc9\x34\x82\x1b\x78\xd6\x28\x83\xcd\x33\x3c\xb2\xb0\x44\x50\xd2\ \x48\xee\xee\x7b\x99\x8b\x12\x7a\xc7\x3f\x70\x2e\x62\xdf\x37\x4b\ \xdd\xe1\xd9\x0d\xe5\xcc\xaf\x2b\x95\x55\x40\x5d\xd8\xb3\x10\xa8\ \x15\x54\x12\x4d\x15\x40\x51\xc0\x00\x3a\xb0\x4f\xb1\xff\x00\x0f\ \xf7\xdf\xed\xfd\xc8\x3e\x37\xcf\xa8\xd7\xe9\xbe\x5d\x7b\xec\x7f\ \xc3\xfd\xf7\xfc\x95\xef\xde\x37\xcf\xaf\x7d\x37\xcb\xaf\x7d\x8f\ \xf8\x7f\xbe\xff\x00\x6f\xef\xde\x37\xcf\xaf\x7d\x37\xcb\xae\xfe\ \xc0\xff\x00\xa9\x3f\xed\x8f\xfc\x57\xde\xbc\x61\xfc\x5d\x7b\xe9\ \x7e\x5d\x7f\xff\xd6\xd8\x17\xec\x3f\xc3\xfd\xe0\xff\x00\xc5\x3d\ \xe6\x1f\x8d\xf6\xf5\xcc\xaf\xa6\xf9\x75\xef\xb0\xff\x00\x0f\xf7\ \x83\xff\x00\x1a\xf7\xef\x1b\xad\x8b\x61\xe9\xd7\x7f\x61\xfe\x1f\ \xef\x7f\xf1\x5f\x7e\xf1\xba\xdf\xd3\x0f\x4e\xbd\xf6\x1f\xe1\xfe\ \xf7\xff\x00\x15\xf7\xef\x1b\xaf\x7d\x3f\xcb\xaf\x7d\x87\xf8\x7f\ \xbd\xff\x00\xc5\x7d\xfb\xc6\xeb\xdf\x4f\xf2\xeb\xdf\x61\xfe\x1f\ \xef\x7f\xf1\x5f\x7e\xf1\xba\xf7\xd3\x7c\xba\x20\x7f\x3a\xbe\x51\ \x76\x6f\x57\xec\xad\xa5\xb7\x3a\x13\x29\x99\xdb\xbd\x83\x06\x6e\ \x86\x3c\xd5\x7c\x9b\x5b\x6c\xe7\x31\x95\x5b\x7e\x0c\x4d\x5d\x3c\ \xf4\x90\xff\x00\x78\xa8\x73\x91\x2c\xcf\x93\x30\x3a\xb2\xd3\xc6\ \xfa\x14\xfa\xc0\xba\x9e\x11\x72\xe7\xf7\x61\x2e\xff\x00\xf7\xa4\ \xfb\xc5\x7b\x99\xf7\x8d\xe5\x9d\xa7\x7a\xf6\xc7\x98\xf7\xad\xde\ \xff\x00\x6a\x86\xdf\x72\xdc\x61\xb9\x8a\x5b\xed\xdd\xee\xe0\x7b\ \x85\xb4\x36\x45\x48\xb4\x91\xd1\xd0\xcf\x2a\x2c\x86\x80\x31\x01\ \xc7\x46\xac\xbe\xf1\x76\xf0\x7b\x63\xed\xf7\x2e\x72\x3e\xe3\x75\ \x67\xbf\xed\xb6\x16\x76\xf7\x4d\x24\x10\x34\x6c\x20\xb4\x58\x9c\ \x46\x64\xf1\x81\x1e\x2a\x82\xa7\x42\x92\xbc\x69\xc3\xa2\xc7\xb5\ \x3e\x4f\xfc\xf8\xc9\xe1\x69\x2b\x2a\x73\xbf\x73\x34\xb1\xab\x34\ \xad\xb2\x36\x34\x45\x89\x51\xc9\x48\x76\xd4\x51\xad\xcf\xf4\x1e\ \xf2\x66\x2f\xee\xbb\xfb\x91\x32\x02\x7d\x88\xa9\xff\x00\xa5\xcf\ \x30\x7f\xde\xdb\xa0\x35\xc7\xde\x3f\xdd\x38\xe5\x65\x5e\x7a\xa0\ \x1f\xf2\xe9\x63\xff\x00\x6c\xbd\x23\xfb\x3f\x75\x7c\xd8\xef\x2c\ \x39\xd8\x1b\xcf\x35\x25\x56\xcb\xca\x56\xe3\x6a\xb2\xb8\xa8\xb6\ \xa6\xd0\xc7\x9a\x89\x31\x75\xd4\xf9\x0a\x27\xfe\x21\x8e\xc0\xd2\ \x65\x21\xf0\xd6\x53\xa3\xda\x39\xd4\x3d\xac\xd7\x52\x41\x91\xbd\ \xab\xfb\x87\xfd\xd9\x7d\x95\xe7\x7d\xb3\xdc\x3f\x6b\xfd\xaa\xfd\ \xd5\xcd\xf6\x89\x2a\x45\x71\xfb\xcb\x77\xb9\xd0\xb3\xc6\xd0\xca\ \x3c\x2b\xbb\xfb\x88\x1b\x54\x6e\xcb\x56\x8c\x95\xad\x54\x86\x00\ \x82\x0e\x61\xf7\xcf\x9d\x79\xa3\x65\xba\xd9\x39\x8f\x9a\x3e\xab\ \x6d\x94\xa9\x64\xf0\x2d\x63\xa9\x46\x0c\xbd\xd1\x40\x8e\x28\xc0\ \x1c\x30\xad\x33\x51\xd5\xa7\xfc\x66\xd8\xd5\xfb\x2f\x67\x6d\xbc\ \x6e\x42\x26\x8e\x78\x24\xa1\x57\x0d\xaa\xe1\x85\xaf\xf5\xff\x00\ \x13\xec\x47\xf7\xf8\x53\x17\xdc\x93\xef\x11\x1b\x71\xfe\xae\xc9\ \xff\x00\x57\x62\xea\x3f\xf6\x51\x96\xe7\xdf\x8f\x6f\x66\x4f\x87\ \xf7\x88\xff\x00\x8e\x3f\x44\xa7\xe4\x5c\x3e\x4f\x9f\xb4\x86\xd7\ \xff\x00\x7e\x66\xcf\x1f\xf5\x8a\xa3\xde\x2e\xff\x00\x74\x0b\x05\ \xfb\xa4\xec\x3f\xf4\xbe\xdc\xff\x00\xea\xea\x75\x38\xfd\xec\xe2\ \xd7\xcf\x9b\x89\xff\x00\x97\x3b\x7f\xf8\xe9\xea\xc1\xb7\x7e\xc3\ \x4d\xe7\xb4\xa2\xc4\x49\x75\x49\xe8\xd5\x09\x03\xf0\xf1\xda\xdf\ \x4f\xe8\x7d\xf5\xca\x61\xe3\x42\x10\xfa\x7f\xab\xcf\xac\x1c\xb5\ \xad\xa5\xc9\x94\x0c\x83\xd1\x5d\xf9\x21\xd6\x38\xfd\x8d\xf0\x3f\ \x73\x6c\x65\x8c\x3d\x25\x16\xeb\xc3\x56\x94\x2a\x08\x32\xd6\x76\ \x1d\x0e\x45\x89\x16\xff\x00\x8e\x93\x7b\xe0\x96\xe5\x02\xc1\xfd\ \xf6\x32\x44\x07\x68\xd8\x07\xfe\x4b\x40\xf5\xd1\x5d\x8e\xee\x4b\ \xaf\xba\x04\x17\x15\xee\x37\xac\x3f\x66\xe0\x47\x40\x97\x47\xfc\ \x63\xc5\xee\x7d\x91\x87\xdc\xb8\x79\x2a\x31\x39\xaa\x38\xe9\xaa\ \x68\xf2\x18\xf9\xa5\xa3\xad\xa6\xa8\x88\x2b\xc5\x3d\x35\x55\x39\ \x49\xe0\x9e\x37\x17\x56\x46\x04\x1e\x47\xbe\xdd\xdc\x72\xd6\xcf\ \xcc\x5b\x35\xde\xd5\xbc\xed\xb6\xf7\x7b\x5d\xcc\x46\x39\xa0\x9a\ \x34\x96\x19\x63\x61\x46\x49\x23\x90\x32\x3a\x30\xc3\x2b\x29\x52\ \x30\x47\x58\x55\x75\xcc\x3b\x86\xd3\xba\x24\xd6\xb7\x0f\x1c\xf1\ \xbe\xa5\x74\x62\xac\xac\x0e\x0a\xb0\x20\x82\x3c\x88\x20\x8e\x8c\ \x7f\x4a\xfc\x79\x83\xa8\x77\x6e\xec\xf9\x1b\xdb\xbb\x9f\x23\x94\ \x97\x6e\xe0\xea\xe0\xc3\x56\xe7\xf2\x55\x79\x5a\xea\x7a\x51\x04\ \x90\x54\xd7\x3d\x46\x46\x59\x6a\x1d\xc5\x34\x86\x92\x86\x10\xfe\ \xb7\x9d\xac\x01\xf1\x93\xc2\x5f\xef\x0c\xf7\x57\x6b\xe6\x5d\xe3\ \x97\xbf\xbb\xdb\xee\xad\xcb\xf6\x1f\xbf\xf7\x8d\xd6\x11\xbc\x45\ \xb6\xc3\x14\x16\xb0\xc8\xae\xb3\xa5\x89\x16\xca\x23\x56\x47\x8c\ \x5e\xee\xb2\xe8\xa5\xb4\x56\xe8\xb2\xb5\x7e\xa5\x23\xce\x0f\x60\ \xf6\x2b\xbb\x7d\xba\xef\xdf\x6f\x72\xee\xe7\x16\x16\x96\xcc\x6d\ \x1a\xe1\x99\xe5\x75\x2a\x51\xa7\x1e\x21\x2c\x43\x06\xf0\x6d\x96\ \xbf\xa8\xd2\x12\xa2\x9e\x19\x60\xe7\x73\xf6\x1e\x4f\xba\x3e\x0b\ \x7c\xbd\xdf\x12\xeb\x8a\x7c\xfe\xee\xdd\x9f\xc3\xa2\xd4\x5c\xd2\ \x63\x28\x29\x36\x0d\x26\x2a\x8d\x58\x7e\xb1\x47\x8f\xa5\x48\xae\ \x3f\x51\x52\x7f\x3e\xe1\x2d\xfb\xda\x4d\x9b\xd8\xaf\xef\x11\xfb\ \x99\x7b\x4b\xb0\x38\x7b\x2d\x97\x60\xda\x21\x69\x40\xd3\xe3\xdc\ \x34\xdb\xac\xd7\x77\x14\xf2\x37\x17\x52\x4d\x36\x9f\xc3\xaf\x4f\ \x97\x52\x1e\xd5\xcc\x97\x7c\xdf\xec\x8f\xba\x3c\xcd\xb8\x0a\x4d\ \x79\x7b\x74\xfa\x78\xe8\x8f\x4d\xba\x45\x1d\x7c\xfc\x38\x95\x12\ \xbe\x7a\x6b\xd0\x39\xf1\xeb\xad\x37\x0f\x6b\x75\xc6\xc7\xda\xb9\ \x3c\xce\x6a\x6d\x9d\x51\x9b\xdb\xd0\xee\x4c\x0c\x79\x5c\xa4\x18\ \xba\xfc\x4b\x65\xb1\xef\x92\x86\xaa\x8a\x8e\xae\x9a\x39\x12\x48\ \x54\xb1\x20\xab\x06\x01\x83\x06\x01\x87\x70\xfd\xfe\xda\xf9\x5f\ \x94\x3d\xa4\xf7\x77\xdf\x3b\x2e\x54\xda\x07\xb9\x9c\xbd\xca\x5b\ \xad\xe5\x9e\xe6\xf6\x96\x8d\x7b\x14\xf6\x9b\x75\xcb\xdb\x88\xee\ \xa6\x86\x49\x05\x1c\x04\x54\x3a\x90\x86\x28\x51\x95\x8a\x9c\x23\ \xe4\xfb\xfd\xc6\xf3\x9e\x39\x5f\x92\x64\xdc\xee\xff\x00\xab\xdb\ \x86\xeb\x6d\x0c\xb6\xeb\x2c\xa2\x16\x49\xae\x23\x59\x09\x89\x5d\ \x57\x81\xa9\x22\x87\x15\xd4\x08\xa8\x3b\xd4\x18\x4e\xb2\xea\x2d\ \xe3\x55\xd4\xfb\x7d\x65\x8b\x1e\xb4\x78\xfa\x98\x31\xf9\x0a\xb5\ \xae\x9a\x95\xab\xa3\x33\x08\x12\x57\x89\x67\x68\x56\x26\x42\xbe\ \x42\xf2\x73\x72\xc6\xe3\xd8\x1f\xfb\xbb\x7d\xfa\xf7\x1b\xef\x07\ \xf7\x6e\xd9\x3d\xc3\xf7\x57\xe8\x5b\x98\xe6\xdc\xaf\x2d\xd2\x4b\ \x68\x1a\xdd\x66\x82\xd9\xd6\x25\x96\x48\xcc\x8f\x19\x99\xa5\x13\ \x07\x68\x56\x28\xa8\xaa\x16\x25\x65\x62\xd4\xfb\xc7\xfb\x7d\xb2\ \xf2\x57\xb8\x97\xbb\x4f\x2b\xf8\xe3\x6f\x4b\x78\xa4\x61\x23\x89\ \x0a\x49\x20\x2c\x55\x5b\x48\x6d\x01\x4a\x50\x39\x66\xc9\x25\x88\ \x22\x82\x67\x69\x62\xa8\xb1\x5f\x19\x3e\x42\x53\x50\x42\x90\xc1\ \x37\x55\xf6\xa5\x46\x88\xd4\x2a\x97\x97\xae\x6b\x50\xb5\x80\x02\ \xe4\x46\x3d\xf3\x47\xfb\xc5\x0a\xff\x00\xc9\xd3\xbe\xe5\xc5\x46\ \x3c\x2e\x50\xff\x00\xc9\xbb\x72\xeb\x25\x3e\xec\xc1\xcf\xdd\x9f\ \xdd\xa0\xe6\xad\xf5\x1b\xa7\xfd\xda\xad\x7a\xa7\xde\x8e\xd9\x9d\ \x99\xd8\x5d\x2b\x0e\xcf\xc0\x6e\x1c\xcc\x58\x14\xaa\xab\xab\x8f\ \x0e\x95\xd5\x23\x1b\x1d\x55\x4e\x81\x35\x42\xd1\xac\x82\x11\x2b\ \x78\xc1\xbd\xb8\x3a\x88\xb1\x66\x27\xb7\x3b\x77\xb7\x5c\x96\xfc\ \xd5\x71\xee\x2c\x1c\xa1\xb6\xaf\xb8\x13\x59\xa5\xab\xee\x3f\x4d\ \x17\xd6\x9b\x64\x2c\x56\x0f\xa9\xd1\xe2\x88\xc1\x73\x55\x0e\x03\ \x0d\x21\xaa\x11\x02\xe2\x7e\xf1\xcc\xbb\x95\xb5\xba\x6c\x37\x1b\ \x9d\xc1\xd8\x92\x53\x28\xb7\xf1\x1f\xc1\xf1\x08\x00\xbf\x87\x5d\ \x1a\xb0\x28\x69\x8c\x91\x4a\x9a\xd8\xb7\xc1\xaf\x8e\xb5\x9d\x1d\ \x2e\xf9\xc9\x64\xe7\x92\x7c\x96\xeb\xa1\xc1\x47\x3b\xc8\x49\x3a\ \x71\xb5\x59\x59\x14\x5c\xdc\xfe\xaa\xd3\xef\x8b\x3f\xdf\x87\x62\ \x6c\xf9\x53\xee\xea\xcc\x7b\x9b\x70\xde\x3f\x94\x3b\x7f\x59\x6d\ \xf7\x35\xdd\x97\x73\xdd\xb9\xfd\x11\x40\x8e\x38\x2d\x29\xf9\xbc\ \xff\x00\xe6\xe8\x9a\x7c\x00\xc3\xc1\x4b\xbb\x37\x9c\x11\x46\xa1\ \x23\xdc\x79\x60\xb6\x03\x8f\xf2\xe9\xcf\xfa\xfe\xfb\x7f\xed\x83\ \x04\xe5\x9e\x5d\x00\x7f\xc4\x0b\x7f\xfa\xb2\x9d\x61\x8f\xb9\x48\ \x64\xbf\xba\x27\x89\x95\xff\x00\xe3\xc7\xab\x97\xc3\x51\x04\xc9\ \xd2\xbd\xbf\x47\x99\xbe\x83\x8f\xd8\x91\x41\xfa\xf1\x66\x61\xef\ \x0b\xbf\xbd\x9f\x9b\x62\xe5\xef\xb8\xe7\xba\x16\x2d\x30\x4b\xad\ \xe2\xf3\x6a\xb1\x88\xea\xa1\x2c\x77\x2b\x6b\xb9\x14\x0a\x1d\x5a\ \xad\xed\x27\x05\x71\xdb\xa9\xab\xdb\x42\x36\xfb\xa4\xec\x8f\x7f\ \xef\x9f\x2b\x5c\x08\xeb\x15\x9c\x37\x73\xbe\x2b\x41\xf4\xd2\xc2\ \xa4\xe7\x14\x92\x54\x20\xe7\x34\x14\xce\x08\x77\x64\x76\x8e\x1b\ \x7e\xf7\x96\xf3\xe9\xfd\x28\xf4\xb8\x8a\xaa\x5c\x64\x82\x3d\x2a\ \xab\x3a\xe3\x28\x4d\x72\x95\x01\x0e\xa5\xad\x79\x01\xb8\x3c\xfe\ \x48\xf6\x7f\xfd\xdb\x87\x7a\x87\xee\x63\xec\x84\x1c\xcb\xb8\xdd\ \x5d\xef\x17\x36\x57\x77\x0d\x2d\xc4\xb2\x4d\x21\x8a\xe3\x70\xbb\ \x96\xd5\x75\x48\xf2\x10\x91\xda\x34\x11\xc6\x8a\x42\xaa\x28\xa2\ \x29\xa8\xe8\xc3\xef\x19\xb7\x5a\xa7\xbb\x7c\xe7\xb8\xed\x76\xd1\ \x43\x68\x93\x44\x81\x63\x45\x45\x0d\x1d\xbc\x49\x29\xa2\xaa\x82\ \xcd\x28\x76\x62\x41\x24\x93\x93\x8e\x93\x5f\x36\x3a\xef\x11\x84\ \xf8\x65\xb2\x36\x64\x70\xab\x63\xb0\x9d\x99\x81\x9e\x9e\x3b\x02\ \xa1\xe5\xa8\xde\x15\x24\x8b\xf1\xfa\xeb\xdb\xde\x05\x7b\x47\x0a\ \x47\xfd\xf2\x1f\x78\xf8\xe9\xda\x36\x29\x7f\xed\x17\x62\xeb\x21\ \x37\x3b\x99\x65\xfb\xa6\x7b\x7b\x39\x3f\xa8\xd7\x42\xbf\xf3\x96\ \xf4\x7f\x93\xa1\xfb\xe1\xb6\xd7\xc4\xe0\xf6\x66\x2a\xaa\x82\x8e\ \x2a\x79\xa7\xc1\xcb\x0c\x92\x22\x2a\xb3\x21\xa8\xc6\xc8\x54\x91\ \xf5\x05\xa3\x1f\xed\xbd\xca\x9f\xdf\x56\x10\x7d\xd2\x3d\xbb\xd2\ \xb9\xff\x00\x5c\x2b\x1f\xfb\xb3\xef\xbd\x00\xfe\xe7\xad\x2b\x7b\ \xcb\xcc\xda\xd8\x91\xfd\x5f\x9f\xfe\xd3\x2c\x7a\xaa\x4c\x67\xc8\ \x4f\x99\x19\xae\xe3\xec\x2c\x1e\xdf\xec\xad\xd1\x5b\x84\xc6\x6e\ \xed\xc3\x45\x8e\xa0\x93\xec\xe5\xa7\xa5\xa3\xa6\xcc\x55\xc1\x4d\ \x4f\x10\x34\x4c\xc2\x38\xa1\x45\x51\x73\xf4\x1e\xe6\x8f\x6c\x7e\ \xe3\x3f\x74\xfd\xeb\x91\x39\x1f\x72\xbf\xf6\x13\x61\x9e\xfa\xe3\ \x67\xb2\x96\x47\x68\xe4\x2c\xf2\x49\x6d\x13\xbb\x9f\xd4\xe2\xcc\ \x49\x3f\x33\xd3\x3c\xd5\xef\x17\xb8\x5b\x7e\xe3\xba\x43\x1f\x3a\ \xde\xc7\x1a\x5d\x4a\xaa\x03\x0a\x05\x59\x18\x00\x3b\x78\x00\x29\ \xd1\xda\xee\x9e\xcd\xf9\x01\xb4\xff\x00\x97\xe6\x6f\x7d\x47\xbb\ \x33\x18\x8e\xe2\xa4\xdd\x18\xca\x51\xb8\x69\x85\x3c\x59\x28\x68\ \x6a\x3b\x16\x93\x1e\x62\x50\x69\xcc\x21\x24\xc3\x49\xe2\x3e\x8f\ \xd2\x7f\xaf\x3e\xf9\xa3\x7b\xf7\x74\xf6\x5a\x2f\xef\x57\x7f\x65\ \x87\xb6\xbb\x68\xf6\xbc\x6c\xc2\x5f\xdd\x9a\x5f\xe9\xbc\x4f\xdc\ \x5f\x53\xaf\x4e\xbd\x55\xf1\xff\x00\x57\xe2\xf8\xb3\xf2\xea\x7e\ \xda\xf9\xef\x99\xae\x3e\xee\x31\x73\x6b\x73\x05\xc3\x6f\xa6\xe8\ \xaf\xd4\x12\x3c\x4a\x7d\x61\x8e\x95\xa5\x29\xa7\xb7\x87\x0e\x8a\ \x47\x52\xf7\x37\xce\x0d\xcd\xb6\x69\x72\x12\x6f\xdd\xc7\x93\x32\ \x46\x8c\x6a\x2a\x21\xa2\x91\xda\xf6\xe4\xb7\xd8\x8f\xaf\xbe\xb4\ \x5a\x7d\xc1\x7e\xe8\x92\x44\x18\xfd\xde\xb9\x7c\xff\x00\xcd\xa9\ \x3f\xeb\x6f\x58\xbf\xb8\xfb\xdf\xee\x2c\x13\xb2\x0e\x7c\xbf\x5c\ \xf0\x0e\x3f\xe8\x1e\xac\x03\xe3\xa6\x27\xb5\x6b\xda\xa6\xb7\x7a\ \x25\x6d\x5d\x45\x44\xef\x3d\x55\x43\xc4\xda\x5a\xa2\x76\x69\xa5\ \x79\x18\x20\x8d\x1a\x47\x72\x6d\xc0\xfe\x9c\x7b\xc8\x3e\x62\xf7\ \x7f\xd9\x2f\xbb\xaf\x2e\x6c\x9b\x5f\xb8\x3e\xe0\xec\x3c\xaf\xb1\ \xdb\x59\xc7\x0d\x9d\xbd\xd5\xd4\x50\xb9\xb7\xb7\x45\x8a\x34\xb5\ \xb7\x67\x37\x13\xac\x48\x81\x00\x86\x39\x08\x0b\x9e\xa1\x86\xe4\ \xbe\x6c\xf7\x13\x72\xbd\xb9\xe5\x8e\x5e\xbe\xdc\xef\xa5\x99\x9e\ \x69\x22\x89\xdd\x44\x92\x12\xcc\xd2\xc8\x17\xc3\x42\xc4\x93\x57\ \x65\x19\xe8\xc0\x77\x9f\x4d\x64\x7b\x7f\xa5\xf3\x9d\x67\x06\x5e\ \x8b\x6d\xd4\x65\xf2\xd8\x9a\xf7\xca\xd7\xc2\xf5\x94\xf4\x74\x98\ \xcc\xf5\x1e\x5e\x79\x1a\x0a\x79\x23\x32\xc8\xd4\xf4\xa4\x2a\x99\ \x11\x75\x11\xa9\x94\x5c\xfb\xf9\xd1\xf7\x5f\xef\xaf\xed\x66\xc1\ \xfd\xe4\xbb\xe7\xde\x83\x90\x92\xe3\x9a\x79\x1a\x2d\xad\x2d\x60\ \x16\xeb\x2d\xa3\x5c\xce\x76\x75\xb0\x21\x7e\xb2\x18\xe4\x48\xd2\ \xe0\x90\x5c\xc0\xda\x95\x75\x44\xb2\x02\xa4\xf4\x37\x90\xfd\x9c\ \xe6\x77\xfb\xba\xed\xbe\xda\xf3\x02\xa6\xd9\xbd\x9b\x97\x96\x4d\ \x6c\x92\x88\xd3\xea\xda\x71\x5f\x09\xd9\x4b\x14\xa1\xd3\xac\x50\ \x9a\x31\x52\x0d\x01\x7d\xbf\xba\xba\xcf\xe3\x66\xd6\xc7\xed\x9d\ \xbf\xbe\x36\xff\x00\x65\xe5\x21\xa3\x9e\x93\x22\xb4\x55\xd8\xb6\ \x68\x2a\x69\x8d\x2b\x44\x27\xa1\xc6\x56\xe4\xdf\x1e\xd5\x01\x9a\ \xd1\xc9\x2b\xb8\x02\xf7\xb1\x17\xcf\x5e\x5d\x5f\x74\x3f\xbc\xfb\ \x90\x79\x83\x64\xf7\x7f\x92\xb7\xef\x6a\xb9\x47\x62\xdd\x6c\x6f\ \xb6\x6b\x8b\x78\xae\x4c\xbb\x90\x96\xdf\x70\xb7\xbb\x8d\xee\x2f\ \x23\xb5\x8e\xe2\x38\x2b\x6e\xc1\xed\xed\xe3\x5d\x4e\x54\xea\x2a\ \x74\xc2\x1b\xa5\xbe\xc1\xf7\x6f\xe6\x6b\x1d\xd3\x94\x77\x3b\x2e\ \x66\xdd\x6f\xed\x67\x82\xf2\x39\x5a\x30\x96\xda\x64\xb7\x92\x26\ \x54\x88\xc8\xc8\xcf\x49\x01\x12\x3b\x1a\x00\x45\x01\xc8\x37\x96\ \xf9\xfb\x9b\xc7\xd6\xcb\x15\x2f\x4c\xe3\x2a\xe2\x52\xda\x2a\x04\ \xf5\x4a\x5c\x03\xfa\xbd\x34\x6d\xf5\xf6\x1f\x7f\xee\x7a\xe5\x55\ \x62\x07\xde\x4b\x9c\x88\xff\x00\x4b\x0f\xfd\x6c\xe8\x41\x1f\xde\ \x93\x73\x75\x05\xb9\x03\x66\x07\xed\x7f\xfa\x07\xa5\x8f\xcc\x2f\ \x99\xb9\x8f\x8f\x9b\x07\xa0\x37\x6d\x07\x58\x6d\xdd\xe5\x37\x6c\ \x52\x4f\x55\x55\x8d\xcd\xcd\x52\x89\xb7\x5a\x3c\x1e\xdb\xca\x78\ \xa8\x5a\x1a\x79\x59\x98\xb6\x65\xa3\x3a\x82\xf1\x10\xf7\xce\xef\ \xba\x6f\xdc\xaf\x69\xf7\xd7\xde\x1f\xbc\x6f\x20\x5e\x7b\xa1\xbd\ \x6d\x30\xf2\x8e\xe6\x6d\xd2\xe2\xd4\x21\x96\xf0\x0b\xdb\xeb\x6d\ \x77\x1a\x98\x0d\x54\xb6\x0f\x82\x7b\x9d\xba\xc8\x5f\x70\x7d\xd1\ \xb9\xe5\x5e\x55\xe4\x8d\xea\x2d\x82\xd2\xe1\xf7\x2b\x61\x21\x49\ \x2b\xa2\x2a\xc3\x0b\xd1\x28\x38\x7e\xa5\x33\xe4\x07\x41\x36\x0b\ \xf9\x8c\x6e\x4c\xa6\x36\x96\xa5\xba\x37\x0f\x17\x99\x50\xf8\xe1\ \xa9\xac\x30\xae\xa0\x3f\x48\x6a\x21\xc0\xbf\xbe\x86\x27\xf7\x3e\ \xf2\xb3\x28\x3f\xf0\x48\xf3\x8f\xfb\xcc\x3f\xf5\xb3\xa8\x06\x6f\ \xbc\xfe\xe3\x1c\x8c\xa3\x90\xf6\x73\x4f\x9b\x7f\x9b\xa1\xfb\xe3\ \xa6\xe8\xab\xdd\x74\x92\xd4\xcf\x88\x38\xcf\x3c\xb2\x4b\xe3\xf1\ \x85\x08\x65\x25\xf4\x82\x54\x5c\x29\x3e\xfb\x77\xcb\x63\xe8\x76\ \xcd\xbf\x6e\x0c\x59\x60\x86\x38\xc3\x1e\x2c\x11\x42\xea\x3f\x33\ \x4a\x9f\x9f\x58\x15\xcc\xb6\x61\xee\xee\x2e\x05\x2a\xee\xcd\x41\ \xc0\x54\x93\x4f\xb0\x57\x1d\x0f\xbd\xb1\x4f\xe2\xe8\xbe\xfc\x4f\ \xf5\x7d\x4d\xbf\x7f\xf7\x8b\xcf\x0f\xc7\xbe\x21\xff\x00\x79\x33\ \xea\xfb\xfd\x7f\x77\xc9\xff\x00\xa4\xee\xd5\xff\x00\x93\x15\x97\ \x59\xa7\xf7\x5c\x8b\x47\xb1\xde\xfb\x0a\x71\xb6\xb8\xff\x00\xb4\ \x09\x7a\xad\xbf\x87\x9d\x4f\x84\xdf\x5b\x3f\x5e\x4e\x08\xe5\xf1\ \x33\x90\x1d\x41\xb6\x96\x7b\x5a\xe7\xe9\xef\xb6\x7b\x3c\x51\xcd\ \x0f\x78\x1d\x62\x3f\x32\xdc\x4d\x6b\x73\xfa\x64\x8e\x85\xff\x00\ \x93\xfb\x6f\x75\xf6\x86\x3b\xa9\xba\x03\x62\xec\xea\x89\x6a\xf6\ \xee\xe4\xc6\xe4\x57\x30\xd5\xab\xfc\x36\x1c\x6e\x37\x17\x5b\x8b\ \x9a\x6a\xd4\x14\xa3\xec\x28\xa9\x63\xad\x12\x3c\xad\x23\x70\xba\ \x15\x59\xd9\x41\xe5\xec\x7e\xc9\x72\xa7\xdc\x97\xde\x9f\xbc\x9f\ \xdf\x47\xdd\x1f\x76\x2d\x4f\x25\xf3\x28\xba\x2b\x64\xb6\x8d\x1d\ \xc4\x72\xdd\x5e\xc7\x79\x15\xb4\x0c\x6e\x1b\xea\xee\x5f\xc2\x31\ \x47\x1a\x47\x1e\xa2\x4c\x8c\x63\x89\x24\x65\xc9\x9d\xbb\x9e\x37\ \x1f\x79\x79\x2b\xdb\xff\x00\x69\x39\x7b\x96\x25\x1b\xce\xdc\xb1\ \x03\x29\x94\x32\x30\x8a\x16\x89\xa4\x70\x23\x1e\x14\x63\x56\xa6\ \x62\xcd\x4f\x84\x06\x62\x01\x1f\x3b\x63\xae\x36\x0e\xf7\xeb\x1a\ \x1f\x89\x70\x76\x96\x2f\x6b\xef\xb3\x81\xc4\xe5\xb1\xb4\x32\x35\ \x39\xa9\xce\x4b\x8a\x92\x4a\xc7\x15\x58\xc9\x24\x89\xea\xe9\x2b\ \xab\xa3\x7a\x99\x29\xe9\xe5\xfb\xb8\x23\x54\x9f\x4b\x46\xa4\x3f\ \x21\xb9\x17\xef\x0f\xef\x46\xc1\xf7\x82\xe6\x5f\xef\x1b\xdf\xfd\ \x8f\xba\xdd\xbd\xb2\xdd\x77\x4b\xbd\xbd\xa6\x25\xf4\x59\xc2\x63\ \x82\xda\x34\xb6\xb8\x1a\xb4\x4b\x6b\x66\x91\x59\x25\xd4\xd0\xfd\ \x1c\xef\xe3\xda\xab\x47\x39\x3e\x06\x58\x6e\x5c\x83\xca\x37\x1c\ \x8b\xb7\x7b\x0b\x61\xcd\xd1\xdb\x6f\xd6\x96\xf1\xcf\xa4\x01\x59\ \x5f\x53\xc8\xcd\x22\x60\x15\x96\x66\x69\x8c\x6a\xfe\x2a\x0d\x12\ \x10\xc9\x4d\x68\x8e\xa4\xa1\xcd\x7c\x5c\xd9\xf5\x98\xdd\xd5\xb7\ \x8e\x43\x31\x41\x47\x35\x3c\x50\x50\x57\x2c\x34\x19\x88\xe2\x96\ \x19\x05\x66\x2f\x24\xf4\xb2\xac\xd0\x48\xb1\x82\x55\xa3\x49\xa3\ \xd4\x04\x88\x8d\xe9\xf7\xd6\x7f\x79\x39\x6b\xdb\x2f\xef\x59\xf6\ \x03\x92\xec\xfd\x99\xf7\x7e\xd3\x6c\x97\x66\xde\x52\xfa\xee\x1b\ \x8b\x53\x35\xed\xab\xb5\xad\xc5\xb8\xb6\xba\xb3\x5b\x88\x5e\x16\ \x2d\x2b\x14\x9d\x5e\x5b\x79\xbc\x27\xf0\x24\x95\x41\x61\x89\xfc\ \xab\xb8\xf3\x27\xdd\x8f\xdc\x7d\xea\xeb\x9b\xb9\x4a\x5b\x98\x6f\ \xac\xcc\x11\x3c\x72\x68\x86\x40\x25\x8e\x4f\x12\x39\x4c\x6e\x1c\ \x51\x40\x31\x90\xb2\x26\xa1\xad\x54\xe3\xa2\xe5\xf0\xab\x6a\xe5\ \xe3\xde\x1b\x8a\xb2\xb2\x8a\x4a\x55\xc9\xe6\x6a\xea\x23\x47\x04\ \xe8\x15\x95\x4f\x22\xae\xab\x28\x7d\x3e\x4f\xaf\x17\xb7\xbe\x86\ \x6f\x7c\xd3\x67\xec\xdf\xb4\xdc\xdb\xce\x9b\xc3\x2c\x9b\x7f\x2c\ \xf2\xf5\xc5\xdc\xa7\xe1\x12\x2d\x85\xa3\xca\x54\x71\x20\xc9\xe1\ \x69\x50\x2a\x6a\xc0\x0a\x9a\x75\x03\xdf\xed\x2f\xce\x9c\xcf\xb2\ \x6c\x76\x58\xb8\xdc\xaf\xe2\x85\x7c\xf4\x99\xe5\x08\x09\xff\x00\ \x4b\xaa\xa4\xe0\x50\x54\xf4\xb3\xfe\x60\xbd\xb3\x9c\xc2\xf6\x0f\ \x52\x75\xa6\xd4\xa8\x92\x0a\xa8\xe8\x2a\xb7\x16\x40\x40\xdf\xa9\ \xb2\x75\xa9\x8d\xc5\x47\x22\xf2\x35\xd2\x47\x87\x9d\x80\x3f\x55\ \x9e\xe4\x10\x47\xbe\x3a\x7f\x73\x87\x23\x5d\xee\x7c\x9f\xef\xcf\ \xbc\xfc\xc8\x0d\xc6\xe3\xcc\xfb\xc2\xed\xe5\xdc\x51\x9d\x60\x8d\ \xee\xaf\x5c\x11\x42\x56\xe6\x6d\xc1\x15\xc8\xfc\x76\xf4\x52\x08\ \x6e\xb3\x17\xef\x57\x7d\x6d\x1e\xe1\xc9\x9c\xa9\x64\x04\x76\xbb\ \x5d\xa1\x9c\x28\xe0\xa5\xca\xc5\x08\xa1\xf3\x8d\x20\x3a\x7e\x52\ \x67\x04\x74\x25\x74\x9f\x5e\xef\x8d\xc3\xd8\xd4\x9f\x24\x3b\xbf\ \x72\xb5\x55\x0f\x5f\xec\xdc\xad\x26\xdc\xaa\xc9\xd3\xd0\xd1\xc7\ \x4c\x95\x50\x56\xbe\x4e\xbd\xfe\xd2\x9a\x9a\x21\x8f\xc4\x50\x55\ \x55\x96\x66\x52\xc6\x69\x46\x96\x1e\x32\x3d\x82\xff\x00\xbc\x1a\ \xf3\xda\x2f\x63\x39\x06\xd7\xee\x3f\xf7\x5e\xe4\xf8\xad\xf9\xd7\ \x9d\x77\x8b\x2b\x9d\xce\xc6\xca\x69\xee\x1d\x01\x6b\x7f\xa2\xb7\ \x71\x34\xd2\xba\xdd\xee\x13\x47\x68\x63\x8b\x5a\xd2\xda\x2d\x6f\ \x1e\x9b\x98\x9d\x8c\x7d\x87\xfe\xb4\xf3\xb6\xf1\x37\xbc\x1e\xe2\ \xee\x8f\x26\xcf\xb4\x5b\x4d\x1d\xb4\xf3\x22\x20\x62\x03\xf8\xae\ \xba\x11\x41\x8a\x05\x69\x43\x35\x0f\xea\x35\x03\x56\x36\x01\x0f\ \xbb\xfa\xb2\xaf\x75\xf6\x34\x5f\x31\xbe\x3c\x6f\xc7\xdd\xd8\xdd\ \xc1\x14\xcb\x92\x5a\x04\x82\xaf\x33\xb6\xab\x20\xc4\xb6\xd9\xc8\ \x3e\x3e\x96\xa2\x9d\xda\x6a\x6a\x7a\x05\x6a\x7a\xaa\x29\xe1\x15\ \x94\x4c\x4b\x00\xf1\xf3\x12\xdf\xba\xff\x00\xbe\x1e\xdf\xec\x1c\ \xab\xff\x00\x26\xe6\xfb\xf0\xfb\x77\x6d\xb0\xc7\x66\xcb\x6f\x03\ \xdc\x48\xf0\x58\x5f\x0f\xad\x1b\x8d\xba\x5d\x5c\x45\x2a\x88\xa4\ \x92\xeb\x4c\xf6\xf7\xb1\x4e\x2d\x2e\xe8\xa8\xcd\x1c\x84\x09\xfd\ \xee\x67\x27\x6f\xf7\x77\xdf\xeb\xed\xec\xee\xf7\x25\xe4\xd2\x56\ \x47\x08\xaa\xf3\xc3\xfa\x26\x07\x31\xa3\x29\xd4\xab\x1d\x51\xe1\ \x64\x32\xc5\x92\x03\x28\xaa\x25\xba\x5b\x13\xbc\x36\x2f\x6e\x6e\ \x9e\xf1\xcf\xd2\xd4\xef\x1a\xec\xcd\x1e\x47\xef\x64\x59\xe9\xe8\ \x26\xae\x96\xb2\x18\x63\x13\xb3\xc1\x47\x25\x3a\x68\x48\x40\xb2\ \xc4\x01\xf7\xd1\xff\x00\xbc\x6f\xdc\xcb\x66\xf7\x7f\xee\xd7\x69\ \xf7\x71\xf6\xe7\x74\xb7\xe5\x7e\x5c\xb3\xba\xb4\x7b\x52\x62\x96\ \xee\x38\x61\xb5\x91\xe4\xf0\x82\xb4\xe9\x2b\x6a\x2e\x68\xcd\x31\ \x23\xce\xbd\x63\x9f\x22\x7b\xcf\x71\xca\xbe\xe0\xff\x00\x5e\xf9\ \x82\xd9\xf7\x1d\xc6\x58\xe5\x59\x06\xa5\x89\x9d\xa5\x50\xba\xea\ \x10\xa8\xa5\x38\x05\xcf\x4b\x8f\x84\xb4\x19\x29\x3b\xab\xbb\x37\ \x3d\x6e\x3a\x5c\x6c\x3b\x99\xb3\x79\x78\x29\xe5\x63\x21\x80\x65\ \x37\x55\x3e\x40\x53\x99\xbc\x71\x09\x9a\x15\x9b\x49\x60\x00\x36\ \xbd\x87\xbe\x7d\xff\x00\x7b\x3f\x29\xcd\xc8\x7f\x74\x2f\xbb\x8f\ \x24\x4f\x78\xb7\x12\xec\xfb\xc5\x8d\x89\x98\x29\x41\x29\xb4\xd9\ \x6e\x6d\xcc\x81\x09\x62\x81\xcc\x7a\x82\x96\x62\xa0\xd2\xa6\x95\ \xea\x7d\xfb\xb2\x6e\xb1\x6f\x9e\xe9\xf3\xde\xf1\x14\x7a\x05\xd5\ \x9c\xd3\x69\xad\x4a\x89\x6f\x23\x7d\x24\xd0\x57\x4e\xaa\x56\x82\ \xbc\x68\x3a\x04\xfe\x15\x51\x79\x77\xd6\xf6\x16\xfd\x5b\x83\x30\ \x38\xff\x00\x1a\xe9\xbf\xc3\xdf\x6f\x3d\xb6\x92\x9c\xb5\xcb\xdf\ \xf3\xc1\x6f\xff\x00\x56\x53\xac\x29\xf7\x06\x1a\xde\x5d\x63\xfd\ \x19\xff\x00\xe3\xc7\xa3\x5d\xbe\xfe\x21\xec\x4e\xc1\xdd\x43\x7e\ \xf7\x1e\x50\xae\xc1\xdb\x80\x64\xaa\xb0\x52\xd6\xb5\x0d\x26\x5c\ \x52\xb2\x48\x91\xe6\xaa\xc1\x49\x21\xc2\x69\x50\xaf\x14\x4c\xb3\ \x54\x5c\x20\x65\x1f\xaf\x93\xff\x00\x7e\x2f\xef\x03\xb8\xda\xb9\ \x8d\xbe\xed\x5f\x74\x6b\x76\xdf\xbd\xf0\xdc\x2e\x1e\xd6\x7b\xab\ \x28\xc5\xc4\x56\x13\x39\x90\x4b\x05\xa0\x4a\xad\xc6\xe4\xad\xa9\ \xe6\x90\xab\x5b\x59\x00\xcd\x2b\x49\x32\xc8\xb6\xf9\x39\xec\x1f\ \xb1\xee\x76\x91\xee\x27\xba\x44\x58\x72\x7c\x31\xac\x91\xc7\x31\ \xf0\xde\x74\x01\x74\xc9\x2d\x73\x1d\xb9\x14\x54\x5a\x89\x26\xc0\ \x50\xa8\x54\xbd\x56\xbf\xc5\x1e\x8f\xdf\xbd\xcd\xb9\xcf\x4a\x50\ \x65\x70\xfb\x3a\x6c\x91\x7c\x46\x3b\x29\x5a\xf5\xcf\x4c\x78\xfb\ \xaf\xb2\x69\xd6\x5a\xc8\x31\x4d\x51\xa8\xd3\x45\x51\x2c\xf5\x09\ \x0e\x9f\x23\xea\x25\x57\x3f\xfe\xee\xbc\xbd\xef\x0d\x97\xb5\x1c\ \x9d\x65\xef\xf6\xf3\xb7\x5f\x7b\xac\x96\xe3\xeb\x25\xb3\x4d\x31\ \xd6\xbf\xa6\xb2\x32\xd2\x29\x6e\x55\x34\x8b\x99\x60\x8e\x2b\x76\ \x9b\x57\x82\x86\x30\x24\x92\x2b\xf7\x1b\x98\xf9\x77\xfa\xc1\xba\ \x4d\xc9\x96\x93\xc3\xcb\x45\xff\x00\x49\x65\x35\x6f\xe9\x15\x1f\ \x12\xc6\x4d\x7c\x35\x72\xce\x16\x9a\xc8\x6a\xa8\x3d\xdf\x24\xfa\ \xca\xbb\xae\xbf\x96\xfd\x4f\x5d\x51\xd5\x49\x0d\x56\x0b\x37\x88\ \x0b\x50\xae\xca\xe1\x32\x1d\xbd\x26\x60\x8d\x42\xc6\xde\x3c\x86\ \x9f\xf5\xbd\xf2\x4a\xda\x03\x6f\xfd\xf7\x9c\xe1\x0a\xb6\x56\xc2\ \x3f\xe7\xc9\xb6\x47\xfc\xbd\x64\xe5\x85\xda\xde\xfd\xd0\x76\x6b\ \xa7\x4a\x86\x99\xf1\xf6\x6e\xd3\x0f\xf2\x74\x1f\x7c\x55\xf8\xd9\ \xd1\x5b\xa7\xa7\x9b\x09\xda\x94\x15\xab\xbb\xf7\x65\x45\x39\xc6\ \x6f\x0a\x8c\xc3\xc0\x69\x1c\x21\x4c\x7d\x0e\x14\x15\x8e\x8a\x86\ \xa1\xe4\x95\x84\x91\x55\x24\xe9\x58\xec\xa2\xfa\x84\x48\xb9\x3d\ \xf7\xe7\xe6\x6f\xbe\xd7\xb3\x7b\xef\x2a\xfb\xeb\xec\x75\xcd\x9e\ \xef\xec\xce\xcb\x68\xdf\xbd\x36\x74\xb6\x32\x4b\x42\x75\x4f\x73\ \x7e\x9a\x8c\xf7\x16\xc1\x15\x74\xcf\x64\xf0\xc9\x60\xaa\xf2\x49\ \x1f\x82\x6e\x27\x78\xdb\xd9\xf8\xfd\x9f\xe6\xd4\xdd\x79\x1f\x9b\ \xe3\x96\xcf\x9b\xae\xe5\x1f\x4d\x74\x64\xd2\x98\x14\x48\xe1\x34\ \xd0\x92\x54\x9a\xa4\xc1\xd6\x72\x42\xab\x6b\xd0\x82\x16\xe5\xf8\ \x29\x9d\xea\x2a\xec\xe5\x4e\xc1\xdd\x39\xbd\xb5\x36\xe5\xc4\xd7\ \xed\x9a\x8d\xc7\xb6\xab\xab\x31\x30\xee\x0c\x16\x51\x40\xac\xc2\ \x65\xe3\xa7\x9c\xb4\x46\xa5\x50\x16\x82\x46\x65\x2c\xa1\xa3\x76\ \x29\xa8\x48\x5f\x77\x9f\xbc\x8f\xdd\x93\xef\xef\xcb\xbb\x2d\xa6\ \xe5\xcb\xfb\x7a\xfb\x8d\xb3\x5c\xc3\xb8\x36\xc9\xb9\x2c\x53\xcf\ \x69\x75\x6e\x6a\x97\xb6\x12\x3a\x2a\xdd\xc3\x1b\x12\x3c\x78\x55\ \x64\x40\xc1\x6e\xa0\x84\x48\x8a\xe1\xfe\x7e\xe5\x0f\x73\x3d\x8e\ \xbf\xba\x91\x2f\x26\x93\x96\xee\xa3\x68\x45\xe5\xbe\xa4\x49\x23\ \x71\x98\x66\x50\x49\x89\xc8\xfc\x0e\x4a\xb1\x04\xc6\xef\xa4\x90\ \x34\x74\x57\x4d\xf6\xb6\xc2\xd9\x59\x0c\x56\x1b\x29\x97\x83\x21\ \x25\x24\xb4\x74\xf5\x78\xf9\x67\x8e\x74\x8d\xb4\x32\xaa\xcf\x1d\ \x9a\x2b\xbc\x4a\xd7\x04\x10\x47\xbc\x93\xf7\xea\xe3\xee\xcd\x17\ \x2c\x6d\x3b\x37\xde\x7b\x76\xe5\x01\xcb\xd1\xdd\x0b\xcb\x5b\x6d\ \xfa\x6b\x35\x8d\xee\x21\x8e\x58\x44\xd0\x5b\xdd\x38\xf1\xdd\x23\ \xb8\x96\x3a\x24\x72\x10\x25\x61\x4c\xf5\x13\x72\x83\xfb\x89\x73\ \xbd\xdc\xee\x3e\xd8\xd9\x6e\xdf\x5e\xd1\xf8\x33\x49\x60\x92\x96\ \x11\xbb\x2b\x94\x79\x22\x1d\x8a\xcd\x1a\xb7\x73\x2d\x4a\x8c\xe3\ \xa2\xc3\x95\xfe\x5f\x3f\x2b\x7b\x2f\x79\xd5\xe7\xf7\x7f\x65\xe5\ \x0e\x3a\x69\xd9\xe0\x1b\xcf\x7d\xe6\x72\xd1\x88\xcc\x86\x40\x56\ \x86\x1a\x8c\xdc\xf1\x85\x3f\x45\x78\xd0\xdf\xf1\xf9\xf7\x80\x3b\ \xd7\xf7\x80\x7f\x77\x87\xb1\xf3\x49\x0f\xb6\xd6\x36\xb7\x77\x50\ \x12\x04\x5c\xbb\xb0\xc7\x6e\xaa\x46\x28\x93\x4d\x16\xdb\x6a\xc2\ \x9f\x8a\x19\x9d\x29\x8a\xd4\x53\xac\x96\xb0\xf6\x77\xdf\x4e\x6f\ \xb5\x8c\x6f\xeb\x24\x48\xe3\x2f\xb8\x5e\x97\x27\xe6\xc8\x8d\x71\ \x28\x35\xf2\x74\x06\xbe\x5e\x7d\x0f\xfb\x2f\xe2\x5e\x43\xa9\xb7\ \xae\xd8\xc3\xd6\xef\xf8\xf7\x76\x57\x25\x1b\xcd\x2d\x0d\x2d\x34\ \xb4\xf0\xd2\x3c\x72\xa2\x24\x48\xd3\x56\x4f\x3d\x40\x60\x1d\x99\ \x9e\x28\x42\x2a\xde\xc6\xe7\x4e\x45\x7d\xdb\xfe\xfd\x3c\x9d\xef\ \x47\xb6\xbe\xec\x7b\xd3\xbf\x72\xad\xdf\x2a\xfb\x65\xca\xac\xa4\ \xdd\x5f\x4c\xae\xf7\x51\xf8\x4f\x2b\xba\xc6\x91\x2c\x6a\x47\xe9\ \x45\x14\x71\x4f\x72\xd3\x4d\x20\x8d\x74\xb6\x81\x24\x51\xee\x87\ \xb3\x9b\xb7\x2b\x6f\xfc\xb1\xc9\xbb\x75\xec\x3b\x97\x32\x6e\x80\ \x81\x1c\x08\x40\x8d\xb5\x05\x50\x58\xb1\x62\x0f\x73\x33\x32\x46\ \x11\x17\x51\xa8\xae\x99\xbf\xcc\xa7\x73\x63\xb1\x1d\x73\xd5\xbd\ \x39\x43\x2c\x52\x64\x72\xfb\x8e\x97\x3d\x55\x4f\x19\x53\x2c\x78\ \xec\x1d\x15\x56\x36\x9a\x59\xe2\xfa\xac\x79\x2c\x86\x56\x57\x42\ \x07\x2d\x4a\xdf\xd3\x9e\x7e\xff\x00\x76\x4d\xbf\x30\xfb\xe5\xf7\ \x98\xfb\xcd\xfd\xef\xf7\xed\xbe\x48\x36\xfd\xca\x69\xed\x2d\x43\ \x65\x04\xbb\x8d\xdc\x77\x8d\x04\x6f\xf8\x8e\xdf\x67\x6d\x6b\x03\ \x7f\x42\xe2\x3e\x24\x9a\x64\x27\xbe\xe9\x61\xc9\x3e\xdc\xfb\x75\ \xed\x55\x8c\xea\xf2\xda\x44\x92\x48\x46\x09\x58\x22\x68\x84\x8c\ \x3c\xbc\x79\x64\x95\xc7\xcd\x1b\x87\x98\xcd\xd4\x18\x03\x81\xf8\ \xa1\xd9\x14\x8d\x1f\x8d\xa6\xeb\x7d\xd3\x21\x16\xb1\x37\xd9\xf9\ \x45\xb9\x1e\xcc\x3f\xbc\xf8\x53\xef\x8d\xf7\x1b\x1f\xf2\xfb\x65\ \xff\x00\x77\xcb\x5e\x8a\x7e\xed\x27\x5f\xb6\x3e\xf5\x9f\x55\x97\ \xfe\xd0\xe4\xe8\xbc\x7f\x2f\x4c\x2d\x1e\x4b\x6d\x35\x35\x5c\x41\ \xe1\x96\x59\x51\xc7\x1f\x4d\x32\x1e\x2e\x18\x5f\x8e\x38\xf7\xd5\ \xaf\xbc\xcf\xbc\x1b\xef\xb1\x1f\x76\xcf\x75\x7d\xdb\xe5\x88\xad\ \xa4\xe6\x1d\x96\xc5\x25\xb6\x5b\x88\xda\x58\x1a\x59\x2e\x60\x81\ \x16\x68\xd2\x48\x9d\xa3\x26\x5a\x3e\x89\x11\x82\xd4\xab\x02\x07\ \x58\xbf\xca\xbc\x99\x65\xcf\x7e\xe8\x72\x9f\x29\xee\x6f\x22\xed\ \xd7\xb3\xb2\xc8\x63\x60\x92\x04\x58\xdd\xd8\xa3\x15\x70\x18\x05\ \xc5\x55\x85\x70\x45\x3a\x3d\x6d\x91\xd9\x78\x1d\xe3\x5f\xb3\xe8\ \x9a\x9d\x32\x74\x7f\x6d\xe6\x41\xa1\x64\x0d\x57\x49\x05\x62\x06\ \x09\xc9\x22\x2a\x85\xe7\xd9\x87\xdc\xeb\xdf\xcd\xf3\xef\x1f\xf7\ \x7b\xe4\x1f\x78\xf9\x9f\x97\x6d\x36\xad\xe3\x78\xfa\xbd\x56\xf6\ \xef\x23\xc4\x05\xad\xf5\xcd\x90\x75\x32\x80\xea\x25\x36\xe6\x40\ \x84\xbe\x95\x65\xfd\x46\xe3\xd0\x63\xde\x4f\x6d\xed\xfd\xbc\xe7\ \xcd\xfb\x94\xf6\xcd\xc6\x6b\xbb\x0b\x4f\x0a\x92\x48\xaa\xac\x7c\ \x58\x63\x9b\x49\xd2\x74\x9d\x1e\x26\x92\x40\x5a\x90\x7b\x47\x0e\ \x84\x61\x44\x18\x02\x07\x04\x5f\xf3\xf9\xf7\x94\x9e\x37\xf4\xba\ \x88\xfe\x9b\xe5\xd7\x2f\xb0\xff\x00\x0f\xf7\xbf\x7e\xf1\xfe\x7d\ \x6f\xe9\x4f\xa7\x5e\xfb\x0f\xf0\x3f\xef\x3f\xf1\x43\xef\xde\x37\ \xcf\xaf\x7d\x2f\xcb\xae\xfe\xc7\xfd\xa7\xfd\xe3\xfe\x91\xf7\xaf\ \x1b\xfa\x5d\x6f\xe9\x7e\x5d\x7f\xff\xd7\xd8\xeb\xec\x07\xfa\x91\ \xfe\xfb\xfd\x8f\xbc\xaf\xf1\x7a\xe7\x5f\xd3\x75\xdf\xd8\x0f\xf5\ \x3f\xef\xbf\xdb\xfb\xf7\x8b\xd7\xbe\x9b\xae\xbe\xc0\x7f\xa9\x1f\ \xef\xbf\xd8\xfb\xf7\x8b\xd7\xbe\x9b\xaf\x7d\x80\xff\x00\x52\x3f\ \xdf\x7f\xb1\xf7\xef\x17\xaf\x7d\x31\xeb\xdf\x62\x3f\xd4\x8f\xf7\ \xdf\xec\x7d\xfb\xc5\xeb\xdf\x4d\xd7\xbe\xc0\x7f\xa9\x1f\xef\xbf\ \xd8\xfb\xf7\x8b\xd7\xbe\x98\xf4\x11\x6f\x1e\x90\xdb\x1b\xce\xbe\ \x2a\xfc\xb5\x0c\x13\xcb\x0b\x6a\x5f\x24\x6a\xc2\xf7\x07\xf2\x7f\ \xaf\xb4\x92\xc3\x1c\xcc\x19\x85\x7a\x31\xb6\xb9\xb8\xb6\x42\x91\ \xb1\x00\xf4\xb4\xc4\xf5\xfe\xde\xc4\xd1\x45\x45\x06\x26\x88\x47\ \x12\x85\x51\xe1\x5f\xa2\x8b\x0f\xcf\xb7\x90\x22\xa8\x01\x47\x49\ \xa4\xf1\xe4\x62\xc5\xcd\x4f\x58\xb2\xff\x00\xe8\xf7\x6a\xd3\x4b\ \x5b\xb9\x9f\x11\x85\xa6\x87\x4c\x9f\x79\x57\x68\x63\x55\xb1\x27\ \xd5\x66\x5f\x4d\xb9\xe3\xf3\xef\x98\xff\x00\x7e\xae\x7d\xfb\xf8\ \xf2\x1f\x3d\xf2\x15\xdf\xdd\x3b\x97\xdb\x75\xe4\xc9\xf6\xb9\x45\ \xfc\x03\x6f\xb4\xba\x58\xef\x23\x99\xb4\xbb\xcb\x36\x99\xd7\xc5\ \x86\x58\xf4\xa2\x48\xa9\x58\x09\xa1\xd4\xe0\xe4\xd7\xb1\x5c\xb7\ \xec\x8f\x30\xec\x7b\xec\x1e\xe9\xdf\x7d\x3e\xf4\x97\x4b\xe0\x3f\ \xd4\x4d\x11\x68\x59\x05\x55\x51\x2b\x19\xd2\xea\xd5\x66\x52\x69\ \x25\x3c\x85\x02\xfa\xef\x94\xdf\x17\xb6\xc5\x2d\x4d\x7d\x4f\x6c\ \xed\x14\x8f\x1d\x1b\xc8\xf0\xd2\xcf\x53\x90\xab\x5d\x00\xdd\x69\ \xa8\x28\x29\x27\xab\xa8\x98\x83\x60\xa8\x8c\xdf\xe1\xef\x99\x9e\ \xf1\x6f\x5f\xde\xd1\xf7\x95\xe4\xe9\xbd\xa1\xe7\x7f\x6c\x6e\x6d\ \xf9\x4f\x71\x9e\x2f\xa8\x8e\x1b\x4b\x1d\xbd\x27\x11\x3a\xcb\x1a\ \x5c\xdd\x49\x3f\x64\x09\x2a\x24\xa5\x7c\x48\xd5\x99\x14\x3e\xa1\ \x45\x39\x3f\xc9\xbc\xb7\xf7\x61\xf6\xeb\x7a\x8f\x9b\x76\x2d\xe8\ \x49\xbb\xdb\xa3\x78\x6d\x24\xb3\xce\x53\x5a\x94\x66\x8e\x30\x99\ \x72\xa4\xa8\x3a\x58\x80\x4d\x29\xc7\xaa\x9f\xdb\x9d\xa8\xbf\x26\ \x7e\x66\x67\x3b\x1b\x6d\xe3\xab\xa0\xda\x91\x1c\x66\x17\x6f\x1a\ \xc8\x04\x75\x4d\x88\xc2\x52\x41\x47\x15\x55\x4a\xa3\x3a\x47\x36\ \x42\xa5\x25\xa9\x29\xa9\x8c\x42\x50\x97\x3a\x6f\xef\xb1\x7f\x72\ \x2f\x62\x2f\xfe\xee\x5e\xc3\xf2\x47\xb6\x1b\xc5\xdc\x57\x1c\xc9\ \x07\x8f\x73\x7d\x24\x45\x8c\x26\xea\xea\x67\x99\xd2\x22\xc1\x4b\ \x24\x08\xd1\xc0\x1f\x4a\xf8\x9e\x11\x93\x4a\xeb\xd2\x31\xa7\xdf\ \x1e\x6c\x87\x9d\x79\x8f\x78\xdf\xa0\x8d\x92\xce\x4d\x09\x0a\xb5\ \x35\x78\x71\xa8\x50\x58\x0a\xd0\xb9\x05\xc8\xa9\xd3\xab\x4d\x4d\ \x2b\xd5\xe9\xe3\xf1\xde\x3a\x1a\x44\x2b\xca\xd3\xc4\x0f\x1f\xd1\ \x07\xbc\xe3\x59\x48\x51\xd6\x2c\xbd\xb5\x5d\x8d\x3c\xff\x00\xd5\ \xe5\xd1\x47\xf9\xc7\x5b\x8d\x87\xe3\x66\xf2\xc3\x3d\x7d\x0c\x79\ \x3a\x9c\xde\xda\x7a\x6c\x73\xd5\x53\xa5\x75\x4a\xc7\xba\x71\x53\ \xc8\xd0\x52\x34\x82\xa2\x65\x8e\x14\x2e\xc5\x54\xd9\x41\x27\x81\ \xef\x89\x1b\xcf\x24\x73\xb9\xfe\xf8\xa9\x79\xeb\xfa\x9d\xba\xff\ \x00\x52\xbf\x71\x84\xfd\xe1\xf4\x97\x1f\x45\xaf\xfa\xbc\x22\xd3\ \xf5\x7e\x1f\x81\xab\xc5\xfd\x3d\x3e\x25\x75\xf6\x53\x56\x3a\xce\ \xce\x58\xdd\x76\x8f\xf8\x13\xed\xb6\x31\xba\xdb\x7e\xf8\x17\x8c\ \x7c\x0f\x15\x3c\x6a\x7d\x79\x6a\xf8\x55\xd7\x4d\x3d\xd5\xd3\xc3\ \x3c\x3a\x9f\xd0\xd9\xbe\xb6\xea\xee\x8a\xdb\x7b\x9f\x70\xef\x3c\ \x7c\xb4\x95\x58\x98\x6a\xa7\x88\xc2\x61\xa9\xa7\xa9\x48\xd4\x54\ \x63\x06\x37\x5c\xd5\x95\x15\x34\xd3\x8d\x05\xf4\xac\x6d\x70\xdf\ \xa0\x86\x34\xfb\xca\xfb\xff\x00\xf7\xfc\xf7\x3f\xdc\x9e\x6c\xfb\ \xb2\x7d\xde\x3d\x9c\xbd\xe5\x8b\x0b\x67\x11\xdc\xef\xde\x29\x2d\ \x2d\xa4\xc0\x98\xee\xa0\xdd\x19\x21\xb4\xdb\xe1\x9e\x22\x58\x2c\ \x06\x7d\xcd\x59\x1d\x21\x92\x3b\x88\xe4\x88\x6b\x91\x3d\xb8\xf6\ \x33\x62\xda\xb6\xdf\x71\xf9\xfb\x9a\x62\xdc\xee\x64\xab\x45\x61\ \xa7\x0b\x2a\x7c\x51\xc9\x6c\x0b\x4b\x70\xe8\xd8\xac\x9a\x2d\x88\ \x60\x5d\x59\x19\x5b\xa2\x09\xf2\x33\xe4\xd6\xed\xf9\x29\x99\x8b\ \xad\xfa\xda\x86\xba\x87\x67\x25\x5a\xa3\xa2\x5c\xcd\x90\x75\x6d\ \x0b\x57\x92\x68\x89\x8d\x99\x41\x3a\x22\x52\x52\x2b\xfd\x59\xbd\ \x47\x20\xfe\xe5\xbf\x71\x6e\x4d\xfb\xab\xed\xb7\x1b\xe5\xfd\xe2\ \x6f\xbe\xf3\xee\x31\xe9\xbc\xdd\x0a\x1d\x10\x23\x9d\x4f\x6b\xb7\ \x87\x1e\x24\x70\x96\xa1\x9a\x77\xa4\xf7\x6c\x03\x48\x23\x8c\x24\ \x11\x87\xbd\xd7\xf7\x73\x75\xf7\x0a\x68\xe1\x68\x8d\x97\x29\x5b\ \xb5\x61\xb5\x07\x2e\x40\xa0\x96\x72\x3b\x59\xc0\xf8\x10\x76\x44\ \x0d\x17\x53\x6a\x76\x35\x7d\x5b\x82\xd8\xfd\x27\xf1\xfb\x39\xd5\ \xdd\xd9\x47\x5a\x36\x16\xf0\x19\x1a\xac\xb5\x7d\x2d\x06\x46\xb8\ \xc0\xb9\xbc\x7d\x1d\x1e\x46\x2a\x88\x70\xd0\xd4\x65\xe1\x78\x9a\ \x89\x26\x82\x68\x22\x92\x54\x92\xe7\x8d\x2b\xee\x17\xfb\xfa\xfd\ \xce\xbd\xfa\xe6\xff\x00\x79\x3d\xb1\xfb\xd0\x7d\xda\x6e\x2d\xa6\ \xf7\x0f\x61\xb6\x82\x19\x2c\xe5\x9a\x08\x1c\xbd\xa5\xc4\xd7\x16\ \xf7\x10\xb5\xdb\x25\xac\xaa\xe2\xe2\x4b\x7b\x98\x26\x96\x24\x31\ \xa4\x7a\x44\x9e\x24\xb4\x10\x7b\x23\xef\x07\x25\xd9\xf2\xef\x31\ \xfb\x75\xcf\xa9\x22\x6c\xb7\x92\xbb\xa4\xaa\xae\xe3\x4c\xa8\x88\ \xf1\xb8\x88\x19\x14\x82\x8a\xf1\xba\xab\x1d\x45\xab\xa7\x4a\xd6\ \x6f\x52\x77\xa7\xc2\x8e\xa5\xdb\x72\xd1\xec\x5e\xcc\xcc\x65\x69\ \x31\xa8\xcc\x94\xd9\x7c\x06\xeb\xfe\x24\xf2\x45\xea\x09\x0f\xdf\ \xed\x1c\x0c\x26\x6b\x8e\x0b\x95\x5b\xfe\x7d\xc2\x3e\xe6\x5b\xff\ \x00\x7b\xcf\xbf\x1c\x8b\xbb\xfb\x41\xcd\x3e\xd8\xf2\xe6\xc9\xc9\ \xfb\xc8\x58\x6f\x6e\x2d\xee\xf6\x98\xd8\xdb\xd4\x33\xc5\x24\x8b\ \xbc\x5f\x4e\xb0\x3d\x00\x94\x5b\x40\x65\x74\xac\x75\x31\xbb\xab\ \x0c\xb6\x4b\x1f\xbb\x07\x27\xf3\x15\x9f\x38\xd8\xef\x7b\x85\xe6\ \xf3\x68\x4b\xc2\x8f\x1d\xcb\x28\x92\x94\x0c\xab\xf4\xb0\xa1\x75\ \xa9\x29\xe2\x49\xa5\x4d\x1b\xe2\x0a\x41\x4b\xd9\x3b\xff\x00\x29\ \xf2\x0f\xe5\x46\xe0\xec\x0c\x5d\x15\x75\x0e\xdf\xab\xad\xa2\x87\ \x1b\x4b\x39\xd6\xf0\xe3\x71\x74\x74\x98\xba\x2f\x30\x8d\xbc\x29\ \x3c\xf4\xf4\x62\x49\x55\x0b\x28\x91\xd8\x02\xdf\xa8\xf5\x63\xee\ \x97\xec\xb7\xfc\x0f\x5e\xc8\x7b\x77\xed\x07\xef\x18\xef\x2e\xf6\ \x9b\x69\x0d\xc4\xf1\xa9\x54\x96\xea\xe6\xe2\x6b\xbb\x96\x4d\x5d\ \xe6\x35\x9a\x77\x48\x99\xc0\x73\x12\x47\xa9\x50\xf6\x2e\x36\xfb\ \xbd\xcc\xeb\xce\x9c\xc7\xbf\x73\x3b\xdb\x98\x96\xea\x45\xd0\x8c\ \x41\x65\x8e\x38\xd6\x28\xc1\xa6\x03\x14\x40\x58\x0a\x8d\x44\xd0\ \x9e\x26\xcd\xfb\xfb\x33\x80\xdb\xbf\x1e\x7b\x9f\x1b\x99\xce\x61\ \xf1\x55\x99\x4e\xaa\xec\x0c\x7e\x32\x9b\x27\x93\xa2\xa1\xa8\xc9\ \x64\x2b\xf6\x35\x7d\x1d\x1d\x15\x04\x35\x53\xc5\x25\x65\x5d\x65\ \x5b\xac\x51\x47\x18\x67\x92\x46\x0a\xa0\x93\x6f\x7c\xd9\xfb\xf8\ \x7b\x55\xee\x97\x35\xff\x00\x78\xff\x00\xdd\x2f\x9e\xf9\x63\xdb\ \x5d\xff\x00\x72\xe4\x8d\xb6\x2e\x56\x17\x7b\x85\xae\xdf\x77\x71\ \x63\x6a\x6d\xf9\x9e\xfe\xe2\x7f\xa9\xbb\x8a\x17\xb7\x83\xc0\x81\ \xd2\x79\xbc\x59\x17\xc3\x85\xd6\x47\xd2\x8c\x18\xcd\x7f\x77\xbe\ \x62\xe5\xbd\xb3\xd8\x2f\x73\x36\x3d\xc3\x98\x2c\xad\xf7\x9b\x89\ \xf7\x13\x15\xbc\x93\xc4\x93\x48\x24\xdb\xad\xe3\x43\x1c\x4c\xc2\ \x47\x0e\xea\xc8\xba\x54\xea\x60\x54\x54\x82\x3a\x29\x9f\xcb\xae\ \x83\x5f\x5f\x8d\x71\xfe\x25\x23\x50\xff\x00\x6a\x3f\xd4\x8f\xeb\ \xef\xb7\x7b\x0b\xd2\x0c\xf5\x87\x9c\xdf\x06\xab\xbc\x74\x7d\xb7\ \x86\xe5\x7e\xbf\xa4\xfe\xf1\x9c\x55\x5e\x57\x1f\x4d\x04\xab\x91\ \xa2\xc7\xf8\xbe\xf4\xd3\x82\xb2\xf9\x68\xd2\x69\x22\x82\x5a\x98\ \x8a\x7a\x51\xdd\x15\x83\x10\x59\x7e\xa3\x0b\x7f\xbc\x07\xee\x84\ \xdf\x7c\x0f\x6a\x36\x8e\x5e\xd9\x77\xdb\x7d\xb3\x9e\xb6\x4b\xe3\ \x77\xb7\xcf\x70\x1d\xad\xdf\xc4\x8c\xc5\x3d\xad\xc1\x8d\x5e\x48\ \xe2\x98\x78\x6f\xe2\xc7\x1c\xaf\x1c\x90\xc7\x48\xdd\x4b\xa9\x92\ \xbe\xef\x7e\xe8\xff\x00\xad\x37\x36\x5e\x5e\xde\x59\xbd\xc6\xc9\ \x7d\x00\x8a\x74\x42\x04\x83\x4b\x06\x8e\x54\xd4\x42\xb3\x21\xd4\ \xba\x59\x94\x32\xbb\x77\x02\x01\xe8\x8a\x6d\x9f\x93\x5f\x06\xf6\ \x8e\xf2\xcf\x65\xb1\x1b\x77\x73\xec\xed\xd7\x9b\xc8\x4f\x92\xce\ \xbb\xe0\x37\x1d\x25\x2c\xd9\x3a\xb9\x1a\x7a\xc9\x45\x05\x36\x62\ \xab\x09\x04\xb2\x54\x3b\x33\xfd\xbc\x4a\x8c\xe4\x91\x7b\xdf\xdf\ \x39\x39\x43\xda\xef\xef\x8d\xf6\xe7\x63\xdb\x39\x37\x95\x3d\xda\ \xd9\x97\x61\xdb\xa2\x5b\x7b\x7f\x15\xb6\x5b\xb6\x10\xc4\x02\x46\ \x04\xf7\xdb\x54\xd7\x4e\x81\x14\x04\xf1\x9c\xb0\x5a\x02\x07\x0e\ \xb2\x97\x7c\xdc\x7e\xeb\x1c\xd3\x71\x36\xed\xbc\xf2\xad\xd4\x97\ \x53\xb1\x77\xd3\xf5\x71\x77\x36\x58\xe8\x82\xe5\x23\x04\x92\x6b\ \xa4\x52\xb5\xe9\x7d\xbc\xbf\x98\x5f\x40\xed\x4c\x0d\x76\x47\x6d\ \x2e\x7f\x75\x66\x85\x3c\x9f\xc3\xf1\x54\xf8\xc9\x71\xf1\x4f\x50\ \x16\xf1\x25\x65\x7d\x73\xde\x96\x95\x9e\xda\x9a\x28\xe6\x7e\x3f\ \x41\xfa\xfb\x0f\x73\xd7\xdc\xd3\xfb\xc6\xbe\xf5\x5b\xb7\x2c\xec\ \xdf\x7a\x0f\x79\xf6\x91\xc8\xdb\x7d\xc7\x8b\xd8\xf6\xda\x63\x24\ \x14\x69\x60\xdb\xf6\xbb\x2b\x4b\x7b\x8b\xb0\x8c\xc8\x92\x5d\x34\ \x65\x11\xdd\x56\x60\x19\x91\x94\xf2\xe7\xb8\x1e\xc2\x7b\x5f\x06\ \xe3\x75\xed\xa7\x25\xdc\xae\xf3\x70\x9a\x09\x61\x21\x2c\x01\x04\ \x2b\xcf\x73\x34\xb2\x24\x45\x80\x2c\xb1\x86\x05\x95\x49\x42\x40\ \x20\x9c\xfc\x1e\xc3\x53\x76\x47\x65\x76\x67\x72\xf6\xad\x7d\x4e\ \x0f\x2d\x9b\xca\x54\x6e\x6a\x0a\xa3\x3d\x2d\x06\x2e\x7a\xdc\xa6\ \x4e\xa6\xab\x29\x4f\x24\x55\x90\xce\xe2\x24\x13\xa1\x81\x52\x54\ \x11\x46\x84\x1d\x42\xd6\xe8\x5f\xbe\xdc\xd3\xef\xb7\xdd\x7b\xda\ \xbf\x69\x36\x6f\xba\x8f\xb3\xb1\xf3\x5e\xdd\xb7\x2c\x7b\x5c\xb6\ \x52\x5b\x5e\xdd\xcf\x0d\x9d\xb5\x9a\xa5\xac\xe1\xac\xe6\x80\xad\ \x0c\x25\x27\x92\x44\x7f\x11\xe4\x42\x34\x31\x3a\xa1\x4d\x87\x69\ \xe4\x7f\x71\xf9\x83\x98\xcf\xb9\x7c\xda\xdb\x64\xd3\xea\xb8\x59\ \x96\x48\x62\x47\x96\x49\x49\x91\x29\x32\x38\x3f\x1d\x51\x54\x8d\ \x21\x4f\x11\xc0\x6b\xfe\x60\x3d\xd5\xd6\x75\x9d\x7f\xb4\xba\x9b\ \x6a\x6e\x8c\x3e\xe8\xdc\xb5\xfb\xd3\x17\x99\xaa\xa6\xc1\xe4\x29\ \xf2\xd1\x62\xf1\x98\xda\x7c\xaa\x3b\xd6\xd5\xe3\xe4\x96\x96\x1a\ \xca\x9a\xea\xe4\x54\x84\xb7\x90\x22\xbb\x30\x03\x49\x6c\x30\xfb\ \x88\xfb\x7f\xf7\x8c\xe7\xcf\xbd\xcf\xbb\xff\x00\x7b\x2f\x7d\xbd\ \xb4\xbb\xe5\x63\xba\x6d\x92\xdb\x08\x2e\x2d\x2e\x36\xf3\x25\xcc\ \xcf\x62\xb1\xa5\xbd\xad\xe1\xfa\xaf\xa7\x82\xd6\xce\x8f\x3c\x95\ \x0f\x23\x20\x57\x76\x32\x04\x96\x3d\xd6\xbf\xe4\x4d\x83\xda\xbe\ \x55\xf6\xc7\x92\xb7\xf8\xf7\x18\xad\x26\x57\xf1\x12\x58\xe7\xa4\ \x6a\x26\x2c\xcf\x24\x43\xc2\xd6\xf2\xcb\x50\x8b\x4a\x28\x35\x00\ \x69\xa9\xb4\xf8\xd6\x69\x70\x5d\x6d\x85\xac\xca\xd4\xd2\xe3\x69\ \x93\x16\xde\x4a\x9a\xea\x88\xa9\x20\x8f\x51\xa4\x7f\x5c\xd3\xc8\ \x91\x27\x08\x4f\x24\x70\x3d\xcf\xbf\xdf\x01\xc9\xfc\xdf\xcf\x1f\ \x75\xae\x42\xda\x79\x33\x95\x77\x2d\xdf\x74\x8b\x9e\xec\xa6\x78\ \x6c\xad\xa6\xba\x95\x62\x5d\xa7\x7a\x46\x95\xa3\x81\x24\x75\x8d\ \x5e\x48\xd4\xb9\x01\x43\x3a\x29\x35\x60\x0c\x5d\xf7\x55\xdc\xb6\ \xad\x97\xdd\x9e\x61\xbb\xdd\xb7\x2b\x7b\x5b\x66\xd8\xe6\x40\xd3\ \x48\x91\x29\x73\x77\x66\xc1\x43\x39\x50\x58\x85\x62\x14\x1a\x90\ \x09\xa5\x01\xe8\x8c\xe2\xbe\x7c\x74\x2e\x17\xb0\xb7\x5e\x0b\x13\ \xf1\x8f\x09\x8b\xc8\x63\xf3\xb9\x5a\x5a\xad\xcf\x81\x83\x69\xa3\ \xe7\x26\x82\xba\x68\xa4\xca\x34\xf4\x5b\x5a\x9e\x69\x8d\x7b\x29\ \x97\x5b\x4b\x21\x6d\x57\xd4\x7e\xbe\xf1\xff\x00\x93\xfe\xe1\x1f\ \x7c\x5b\x9e\x5b\xe5\xdb\x9b\x5f\xbf\xff\x00\x38\x6d\x91\x4b\x61\ \x6e\xeb\x6a\x2e\x37\xb4\xfa\x65\x68\x90\x8b\x7d\x03\x79\x8c\x2f\ \x82\x0f\x87\xa4\x22\x81\xa6\x81\x56\x94\x12\xce\xf5\xee\xbf\xb5\ \xa2\xea\xf0\x4f\xec\x9e\xd3\x76\x44\xce\x0b\xb4\x76\x6d\xac\x86\ \x35\x7a\x9b\x46\xae\xaf\x8a\xb5\x35\xad\x6a\x7a\x7a\xec\x1f\xe6\ \x2b\xd7\x13\x61\x9f\x6e\xd7\xfc\x6d\xa9\xdf\x5b\x7e\xae\x68\xa5\ \xaa\xc1\x65\xea\xb0\x53\xe1\xe6\x96\x19\xd6\xa6\x19\xa7\xc6\x57\ \x6d\xac\x95\x14\xd2\x43\x53\x1a\xc8\xa5\x90\x95\x70\x18\x1b\x8b\ \xfb\x28\x9f\xfb\xac\xbe\xf0\x87\x9d\x8f\xb9\x6d\xf7\xd6\xdd\x5f\ \xdc\x73\x1f\x87\xfb\xd4\xc7\xb9\x7e\xf2\xd1\xe1\x78\x3a\x3e\xbb\ \xf7\xb1\xba\xd1\xe0\xfe\x96\x9f\x16\x9e\x17\xe9\xd3\x46\x3a\x53\ \x67\xef\xff\x00\x23\x8d\x9c\x72\xea\x7b\x4f\x69\x17\x2f\x86\xd4\ \x2d\x83\x5b\xfd\x3e\xad\x5a\xeb\xe0\x8b\x61\x1d\x75\xf7\x57\x4d\ \x75\x77\x71\xcf\x4e\x9b\x37\xe7\xd7\x53\x53\x62\x62\x4a\x0f\x8f\ \x0d\xb4\x60\x08\xba\x71\x98\xb4\xdb\xf0\x53\xc4\x2d\xc2\xaa\x51\ \xe0\x28\x62\x01\x7f\xc1\x07\xb1\xe4\x3f\x70\x0f\xbe\x70\x50\x17\ \xfb\xc7\x39\xc9\x07\xa0\xba\xdf\x7f\xef\x78\x3a\x0f\xdc\x7b\xb5\ \xed\x23\x48\x4b\xfb\x07\xb3\x48\x7d\x4c\x56\x5f\xe5\xb3\x3d\x2b\ \x17\xe6\x76\x63\x3a\x99\x79\xfa\xef\x67\x0c\x60\xaa\xa6\x87\xec\ \xe9\x72\x14\xab\x56\xd4\x93\x41\x11\x47\x96\x35\xa6\xfb\x58\x1d\ \xe5\x91\x89\xf5\x23\x0b\x70\x41\xfa\xfb\xc8\x19\x7f\xbb\xd3\x95\ \x7d\xd3\xf6\xeb\xda\x3e\x58\xfb\xce\x7b\x91\xbf\xf3\xa7\x38\x72\ \xa4\xdb\x9b\x0d\xcb\xea\xa7\x8a\x7b\xf8\x77\x0b\x84\x99\x6d\xaf\ \x26\xb9\x7b\xcb\xb7\x86\xd9\x63\x44\x84\x25\xcc\x6e\x87\x57\x86\ \xe8\x8c\xc8\x63\xb4\xf7\x9b\x72\xe5\x2e\x63\xe6\xbd\xcb\xdb\xad\ \x86\xc3\x66\xda\x37\x55\xb6\x06\xd8\x44\x8d\x1c\x0d\x6f\x1b\x21\ \x92\x14\x8d\x61\x89\x5e\x42\xcc\x5c\xb4\x6c\x1b\x1a\x81\x20\x10\ \x45\xfb\x53\x6c\xfc\xad\xf9\x37\x59\x2e\x1f\x72\x67\xb7\x22\xed\ \xe7\x99\x4f\xf0\x98\xe7\xa8\xa1\xc3\x30\x0d\x75\x67\xc4\x51\x0a\ \x6c\x69\x71\xc7\xa8\xc5\xab\x81\xcf\xbc\x9c\xf6\xc3\xee\xbd\xec\ \x67\xb3\xc2\x31\xed\x77\xb4\xbb\x36\xd1\x72\x82\x82\xe5\x20\x12\ \xde\x91\xe8\xd7\xd7\x06\x6b\xc7\x1f\x27\x9c\x8c\x9f\x53\xd0\x3f\ \x7d\xf7\x3b\x99\xb7\xed\x52\x73\x27\x34\x5d\x5d\x83\xf8\x19\xf4\ \xc5\x5f\x51\x0c\x7a\x62\x07\xec\x41\xd1\xad\xe9\xaf\x8e\x7d\x05\ \xd1\xbd\x75\x85\x9b\xb8\x30\xdb\x8e\x7d\xe7\x4d\x2d\x74\x99\x3c\ \xac\x35\xd9\xe3\x8f\x96\x16\xad\x9e\x4c\x72\xc7\x43\x4b\x90\x8e\ \x91\x7c\x14\x3e\x34\x6b\x44\x2e\x45\xcd\xcf\x3e\xf1\x67\xef\x11\ \xb1\x7f\x79\x4a\x7b\xa9\xbd\xcd\xf7\x74\xdf\xf9\x76\xdf\xda\x8f\ \x06\xdb\xe9\x96\xed\x76\xf3\x38\x90\x41\x1f\xd4\xea\xfa\x8b\x69\ \x65\xa1\x9f\xc4\x2b\xa9\x88\xd3\x4a\x00\x28\x3a\x1e\x72\x4e\xf3\ \xf7\x7d\xbf\xe5\xeb\x58\xf9\xe6\xc6\xf9\xf9\x97\x5c\x9e\x27\x85\ \xe3\x85\xd3\xad\xbc\x3a\x78\x72\x2a\xd7\x45\x2b\x41\xc7\x8e\x7a\ \x17\x13\xb9\xbe\x14\x42\x82\x1f\x14\xd6\x8c\x14\xb3\xe1\xb2\xee\ \xe2\xdc\x10\x58\xb3\x31\x3f\xec\x7d\xc2\x3f\x4b\xfd\xf3\x43\x1f\ \xd6\xfe\x4d\xff\x00\x9c\x7b\x47\xfd\xb1\x74\x29\x36\x7f\x75\x03\ \x9f\xdc\xfb\xc7\xfb\xdd\xdf\xfd\x6e\xe8\x2d\xee\xcf\x92\x3f\x01\ \xbb\x31\x76\x5e\xdb\xec\xba\x6d\xe3\x9c\xa6\xd8\xf2\xca\x76\xbc\ \x58\xdc\x2e\xe3\xa4\xa6\xc7\x99\xe9\xe8\xa8\xe4\x0f\x2d\x05\x65\ \x29\xa8\x8c\xc1\x8f\x89\x40\x93\x50\x1a\x7f\xc4\xfb\xc7\x4f\x6b\ \x7e\xeb\x3f\xde\x67\xec\xaf\x38\xfb\x87\xcf\x1c\x81\x7d\xca\xf6\ \xbc\xc9\xcd\x57\x46\xe3\x71\x91\xe6\xb1\x9d\x65\x94\xcd\x3d\xc5\ \x52\x39\xad\xdd\x22\x1e\x2d\xc4\xad\xa6\x35\x51\x46\x0b\x4a\x28\ \x02\x4f\xdf\x39\xf7\xd8\x7e\x6b\xd9\xf6\x4d\x9f\x76\x83\x70\x7d\ \xbb\x6e\x88\x47\x02\x85\x99\x0a\xa8\x44\x4a\x16\x59\x03\x37\x6a\ \x28\xab\x12\x71\x5e\x24\xf4\xbb\xdb\xfd\xc7\xf0\x66\x93\x15\x49\ \x0e\x32\x96\xaa\x1a\x38\xe3\x51\x0c\x75\x58\x5c\xcb\x4c\xaa\x00\ \xb0\x76\x96\x47\x72\x7f\xd7\x27\xde\x44\xa5\xa7\xf7\xcc\x05\x1a\ \x79\xbb\x93\xa9\xff\x00\x34\xf6\x8f\xfb\x62\xea\x34\x9a\xd3\xee\ \xa4\xd2\x31\x7d\xa3\x77\x2d\xf2\x7b\xbf\xfa\xdd\xd0\xe3\xd5\xbd\ \xb5\xd1\xdb\x8b\x27\x99\xa7\xda\x59\x9c\x4e\x0b\x13\x43\x4f\x47\ \x35\x1d\x46\x5e\x6a\x7c\x32\x55\x17\x5d\x35\x51\xc6\x32\x93\x40\ \xef\x24\x32\x0f\xa0\x24\xe9\xb9\xfa\x7b\x9a\x79\xc7\xdf\xef\xbf\ \x8f\xb0\x5e\xc8\x7b\x4d\xb9\x6f\x5e\xce\x5b\xfb\x83\xee\xcd\xe6\ \xe1\xb9\xc5\xbc\x47\xb6\xd9\xdd\x5c\xf8\x11\x2c\x81\xf6\xd9\x63\ \x1b\x3c\x3e\x1c\x68\x61\xd6\x93\x34\x90\x10\xd2\x04\x01\x83\x6a\ \xd5\x1f\x59\x7b\x65\xec\xb7\x3c\xf3\xa7\x34\xdb\xc1\xcd\x92\xec\ \x5c\xad\x14\x16\xcd\x68\xd7\x13\x46\x9a\xdc\xa9\x5b\x95\x63\x76\ \xfa\x99\xb5\xd1\x90\x2b\xe1\x75\x60\x8a\x51\x33\xf2\x9b\xe4\x47\ \x50\x6c\x9e\x96\xec\x6c\x45\x2e\xf4\xdb\xbb\x87\x72\xef\x2d\xab\ \x9a\xda\x78\xac\x26\x07\x2b\x47\x98\xac\x96\xa3\x70\x63\x6a\x30\ \xc6\xa2\xa0\x63\x26\xa9\x8a\x82\x9f\x1f\x4f\x5b\x24\xec\xd3\xb2\ \x6b\xd1\xa5\x75\x33\x2a\x9c\x24\xda\xb6\x8f\xbe\x1f\xdf\x6b\xef\ \x87\xec\x77\xbb\x5e\xed\xfb\x1b\x7b\xc9\x3c\x93\xc9\x37\xb6\x57\ \x3f\xe3\x36\x57\x76\x31\xa4\x76\x37\x63\x71\x21\x4e\xe2\x12\xe2\ \xf2\xe6\xf2\xe1\x23\xb7\xff\x00\x17\x8f\xc3\x8a\x3d\x0c\xc8\x81\ \x26\x99\xe7\x0b\x5b\x6f\x6a\xfd\x9a\xf6\xb3\x9b\xf9\x57\x95\x39\ \xc2\x3d\xe3\x76\xde\x23\x95\x09\x49\x62\x99\x8b\x4d\x17\x81\xfe\ \x81\x58\xe2\x8e\x28\xcb\x3f\x7b\x6a\x66\xa8\x0c\x6a\xaa\x02\xff\ \x00\xe5\xfd\x8f\x8e\x2d\x82\xf5\x75\xf2\x0a\x34\x91\x1a\x48\xfc\ \xeb\xa1\x64\x5b\xbb\x48\x4c\xae\x55\x23\xd0\x9c\xf3\xf5\x1e\xfa\ \xd3\xf7\xac\xf7\xf3\xdd\x0f\xbb\xb7\xb4\x47\x9f\x3d\xb0\xf6\x76\ \x4e\x6e\xdc\x9a\xe5\x2d\xe4\x45\x95\xd5\x6c\xbc\x72\x23\x82\xe6\ \x5b\x68\x63\x92\xe6\xf2\x27\x9d\x92\x13\x15\xb9\x89\x83\x3a\x96\ \x95\x14\xea\x18\xb3\xc9\x7e\xdf\xf2\xc7\xb8\x7c\xe8\x36\x2e\x65\ \xe6\xe5\xda\x6d\x84\x66\x45\x25\x01\x33\x68\x05\x9e\x35\x91\xd8\ \x47\x0b\x04\x0c\xe1\xe4\x0c\x28\x0d\x15\x8e\x3a\x5d\x77\xe7\xcc\ \x8e\xbb\xea\x3a\x6c\x9e\x23\x62\x0a\x2d\xc7\xbe\x6a\x63\x6a\x7f\ \xbb\xa6\x8d\x67\xa0\xa3\x98\x02\x23\x79\x27\x51\x7c\xa4\xb0\xb3\ \x92\x91\xa1\xf0\x06\x37\x2c\x79\x43\xcb\xee\x4e\xfb\x9d\x7d\xe8\ \xfe\xfa\x9c\xeb\xb4\xfb\xbb\xf7\xea\xe6\xab\xcd\xab\x92\x61\x73\ \x25\xa6\xc1\x15\x2d\xee\x3c\x36\x35\x36\xf1\xda\x27\x66\xd5\x0b\ \x05\x44\x9a\x59\xbc\x4d\xd6\x64\x5d\x32\x94\x93\x45\xca\xe4\xbd\ \xc7\xb8\x9e\xdc\x7b\x43\xb3\x5c\xf2\xaf\xb2\x7b\x54\x57\x1b\xa3\ \x8d\x32\xdf\xbf\xea\x21\x60\x3f\xb4\x69\x5b\xba\xe9\xc5\x49\x45\ \x4d\x36\xc8\x4d\x50\x15\xac\x66\xb1\xb6\x9f\x43\x76\xb7\xc9\x8d\ \xe3\x2f\x63\x6e\x2c\x96\x72\x97\x2b\xfc\x45\x73\x34\x39\x81\x55\ \x53\x4b\x92\xa7\xaf\x86\x45\x9a\x92\xae\x92\xae\x16\x8a\x6a\x49\ \xa9\x1a\x34\xf0\x98\x8a\x78\xb4\xa8\x4d\x21\x40\x1d\xa7\xe5\xcf\ \x6d\x79\x43\x67\xe4\xeb\x1f\x6f\xb6\x4e\x56\xb1\xb5\xe4\x3b\x6b\ \x3f\xa5\x8e\xc1\x61\x43\x6a\x2d\xca\x95\x68\x9a\x26\x0c\xb2\x2c\ \x81\x9b\xc5\xf1\x03\x19\x59\x9d\xa5\x2c\xcc\xc4\xe2\xae\xed\xcd\ \xb7\xd1\x6e\x53\x6f\x17\x3b\x8c\xb2\xef\x72\x4b\xe2\x3c\xc5\x8f\ \x88\x64\xad\x43\x06\x04\x10\x45\x06\x9d\x34\x0a\x00\x0a\x00\x03\ \xab\x25\xda\x7d\xb9\x9a\xdb\x11\x53\xf5\x3f\xca\x5a\x24\xcb\xe1\ \xa7\x58\xa8\x70\xdd\xa3\x51\x4e\x23\x8b\x5a\xa9\x8a\x9d\x77\x83\ \xc2\x23\xfb\x1a\xb4\xe1\x13\x2d\x06\x93\x72\x0d\x40\x5f\xdc\xa8\ \x6e\x39\xfd\xe4\xff\x00\xbb\xeb\xdc\x8f\x60\x79\xb6\x4f\xbc\x77\ \xdc\x53\x77\xbe\xdb\x37\xcb\x36\x69\xae\x76\x5b\x77\x66\x6d\x04\ \x86\x94\x6d\xe8\xfa\xd2\xea\xd9\xe9\xaa\x5d\xa6\xe4\x48\x8c\x01\ \x5b\x6d\x63\xc2\xb5\x5c\xa0\xf6\xfb\xdf\x1e\x5b\xf7\x07\x69\x1c\ \x89\xef\x05\xa4\x17\x16\x92\x80\xa9\x73\x20\x00\x56\x84\x29\x98\ \x8a\x18\xa4\x1c\x16\xe6\x32\xa4\x1c\xbd\x0e\xa9\x0a\x93\xa6\x7b\ \x5b\xa6\x3f\xbc\x9b\x8e\x8f\x6b\xe6\xd6\xaf\x03\x84\xae\xaa\xa6\ \xa4\xdc\x13\xd2\xe9\x4a\xd1\x01\xf0\xb4\xc8\xf4\xb1\xb7\xdc\xd2\ \x79\x75\x78\xaa\x42\x22\xcc\x8a\x1f\x4a\x86\xf7\x94\x9f\x78\x5b\ \x5f\xbd\x77\xbe\xbf\xdd\xf3\x37\x2f\x0f\x6d\xed\x60\xf7\xdb\x7f\ \xb7\xb3\x1b\x9e\xdf\x67\x70\xb1\x18\xec\xd6\x75\xb9\x9f\x42\xdd\ \xb4\x7a\x2e\x25\x8a\x18\xa3\x9e\xc7\xc6\x95\xe3\xf1\xa6\x85\x25\ \x95\x92\x86\x29\xe4\x9b\x4f\x6d\xf9\x1b\xdf\xc8\x37\x29\x37\xf9\ \x5f\x92\xac\x5e\x63\x6d\x34\xb1\x97\xac\xc6\x33\x1a\x6a\x31\x06\ \xaa\x23\x3b\x32\x4d\xa1\x43\x68\x46\x2a\xa0\xd7\xa2\xd5\x83\xc5\ \xf5\x6f\x7c\xfc\xbb\xed\xae\xc0\xdf\xfb\xe2\x1a\x0c\x1f\x5b\x49\ \x41\x0e\xdc\xc1\x4c\xf1\xd2\x63\xb7\x1e\x1b\x0b\x14\x58\x86\xc9\ \xd3\x67\xa4\xa8\x11\x8c\x72\xd7\x53\x89\x1a\x9e\x04\xf3\xd4\x7d\ \xe2\xb4\x6e\x2e\xde\xf1\xba\xe3\x78\xfb\xce\x7d\xcf\xbe\xe7\x3f\ \x77\x6f\x6b\xfd\x8b\xf6\x6a\xe6\xf3\xdc\x7e\x61\xb7\x71\x75\x76\ \x20\x6b\x9b\x8d\xaf\x73\xdc\x1a\x4b\xe6\x86\x5d\xbf\xc2\x20\xdd\ \x24\x72\xb4\x6b\x35\xd1\x36\xb6\xdf\x46\xeb\x71\x13\x85\x00\xcb\ \x1f\x45\xed\xef\xba\x1e\xe5\xf3\xc7\x30\x73\x97\x34\xc7\x16\xc1\ \x67\x20\x31\xc7\xac\x46\x97\x36\xf0\x05\x84\x32\xcf\xa8\x7e\x9b\ \x15\x0c\x52\x31\xe2\x49\xe2\x82\x8c\x09\xaf\x49\xaf\x96\xff\x00\ \x2c\xe4\xdf\xf4\xe7\xa4\xba\x62\x9a\x71\x84\xa9\x68\xa8\x72\x79\ \x0a\x58\x65\xa7\x93\x23\x0c\x24\xc7\x1d\x1c\x10\x47\xa4\x53\x62\ \x12\xca\xda\x19\x43\xc8\x55\x75\x05\x03\x49\x94\xbe\xe4\x5f\x70\ \x8b\xff\x00\x69\x39\x86\xe7\xdf\xaf\x7f\xb7\x4f\xdf\x9f\x78\x2d\ \xc5\xa5\x98\x09\x24\x17\x51\xed\xcf\x73\xdd\x34\xcf\x3b\x86\x37\ \x1b\x9c\x95\x74\x92\xe5\x1c\xc5\x12\xbc\x91\xc2\x64\xd4\x66\x21\ \xdf\x75\xbd\xe0\x83\x99\xac\x23\xe4\xfe\x4e\xb6\xfa\x1e\x42\xb6\ \x0a\xbd\xab\xe1\x9b\x81\x1e\x11\x42\x0a\x08\xed\x96\x80\xac\x64\ \x6a\x62\xaa\xce\x16\x81\x06\x1f\x8c\xdd\x3f\xdc\x7f\x1a\x68\xa5\ \xec\x2d\xab\x35\x56\x47\x19\x9e\x34\xf5\x7b\xd3\x63\x55\x48\xc3\ \x19\xb8\x69\xa2\x0e\x44\xa8\x1a\x39\x3f\x87\x66\xa9\x63\x91\xbe\ \xde\xb2\x31\xad\x0f\xa5\xc4\x91\x17\x8d\xb2\xbb\xef\x57\xf7\x34\ \xf6\xf3\xef\x57\xc8\x4f\xb3\x73\x4d\xb8\xb4\xe7\x2b\x48\xe4\x3b\ \x6e\xe9\x1a\xd6\x7b\x39\x5a\x87\x4b\x00\x57\xc7\xb5\x91\x80\x13\ \xdb\x39\xd2\xc3\xbe\x36\x8a\x75\x8e\x54\x8b\x7d\xbd\xf7\xab\x76\ \xf6\xf7\x7f\x59\x2c\x1b\xc4\xda\x64\x60\x27\xb7\x63\x44\x95\x46\ \x2a\x0e\x74\x48\xa0\xf6\x38\xc8\x38\x60\xc8\x4a\x93\x39\xb3\x7e\ \x40\x75\xae\xf5\xee\x1c\xde\xde\xfe\x07\x5f\xb1\xb6\xa4\xd8\x66\ \x9e\x7a\xfd\xc2\xf4\xb8\xb4\xaf\xdc\x96\x8a\xa6\xae\x46\xa4\x3f\ \x73\x49\x8f\x53\xe4\x78\x6c\xb2\xb0\xa8\x96\x3f\x20\xb1\x73\xab\ \x16\x79\x67\x6d\xfb\xf8\xfd\xd4\x3e\xe7\xb6\xdb\x56\xd1\x7d\x67\ \xcf\x3e\xec\xed\xbb\xf4\x31\xda\xd8\x7d\x25\xc6\xe4\x2d\xf6\x4f\ \xd4\x83\xe9\x96\x58\xa5\xb5\xba\xb9\x01\x84\x57\x08\xcd\xa5\xed\ \x20\x63\x6c\x09\x48\xd7\xc2\x1e\x6f\x36\x7e\xc9\xfb\x9f\xee\x9b\ \x5f\xde\x45\x2e\xcf\xcb\x37\x16\x4e\xd2\xce\xb2\xc7\x6e\x5e\xf3\ \xb5\xfc\x52\xac\x92\xc5\x19\x20\xb2\x30\x15\x12\xb8\x12\x1e\xe6\ \x3a\x84\xed\xc7\xde\x9f\x1a\x7a\x37\x09\xb8\x37\x34\x7b\xdb\x6d\ \xd5\x64\xe3\xa0\xa8\x68\xb0\xf8\x9c\x95\x36\x4f\x35\x95\xa9\x41\ \xe4\xa7\xc6\xd3\x52\x63\x91\xda\x23\x59\x54\xa8\xa6\x59\x42\xc5\ \x1f\xea\x76\x55\x04\xfb\xc1\x2f\x79\xec\x3f\xbc\x5f\xef\xeb\xbc\ \x7b\x7b\xed\xe7\xba\x3e\xc7\x47\xca\xfc\xa5\x63\xb8\x78\xcd\x2c\ \x7b\x7d\xce\xdd\x69\x13\x48\x3c\x29\x2f\x2e\x64\xdc\x6f\x2e\x65\ \x99\xad\xe0\x69\x44\x70\x5b\xb8\x67\xd4\xca\xb0\xbc\x8c\xa4\x4d\ \x5c\x91\x6b\xec\x4f\xb2\x96\xfb\xe6\xf9\xca\xfc\xdf\x26\xe5\xba\ \x4f\x06\x80\xaf\x3c\x73\xca\xc1\x4e\xa1\x14\x6b\x6f\x0c\x4a\x81\ \xdc\x29\x67\x75\x34\xa0\x25\x82\x83\xd1\x1f\xf8\x0b\xba\x70\x18\ \xf5\xde\xbb\xd3\x75\x63\x6b\x00\xac\x9e\xab\x23\x41\x53\x4a\xac\ \xd4\xb4\xf2\xbc\x93\x54\x54\x44\x68\x8a\x99\x25\x6a\x8d\x61\x62\ \x76\x90\xac\x65\x7d\x40\xea\xd6\x9d\x62\xfb\xe0\x7b\x61\xf7\x9c\ \xf7\x03\xd9\xfd\x93\x90\xfe\xec\x3c\xf7\x6b\xb4\x34\x93\x47\x69\ \xb9\x89\x5c\xdb\x5d\xcf\x60\xea\x91\x6a\x87\x70\x4a\x9b\x74\x84\ \x06\x92\xee\x28\x61\x59\xee\x61\x2c\xb0\xca\x0a\x1b\x5b\xac\x6d\ \xf6\xff\x00\x7c\xf6\xdf\x62\xe6\xf9\xf7\x8f\x72\x36\x39\x2f\x02\ \x46\x65\xb6\xd2\x04\x91\x24\xea\x4b\x51\xe0\x38\x90\xbe\x16\x26\ \x76\x29\x1b\xd0\xba\xe4\x49\x12\x47\xe4\x07\x7e\x76\x8f\xc8\x7d\ \xd3\x27\x5e\x6c\xaa\x2a\xdc\x4e\xd6\x8a\xaf\xc2\xb4\x94\xfe\x4f\ \xde\x2a\xc6\x3f\xba\xae\x99\x55\x7e\xe2\xa7\x49\x36\x1c\x24\x60\ \xd9\x45\xee\xcd\x7f\xba\x27\xdc\x8f\xdb\x3f\xba\x8e\xc4\xa7\x65\ \x89\x77\x5f\x74\x2e\xa0\x09\x7d\xbc\x4d\x18\x59\x18\x1a\x17\xb7\ \xb3\x42\x5b\xe9\x6d\x35\x00\x74\x2b\x34\xb3\x10\x1a\x79\x1f\x4c\ \x6b\x1b\xbe\xe6\xfb\xb1\xbe\x7b\x8d\x73\xe3\xee\x72\x7d\x37\x2e\ \xc4\xfa\xa0\xb4\x46\xaa\x8a\x56\x92\x4a\x71\xe2\xcb\x42\x7b\x88\ \x0a\x80\x90\x8a\xb5\x62\xc7\x1f\xa3\x7a\x47\xa6\x7a\x4b\x6b\x6d\ \xfc\xf6\xe5\xdd\x87\x05\xba\xea\xf1\xd4\xf2\x67\xd7\x71\xe7\x71\ \x50\x51\xae\x49\x54\xad\x4b\x52\x45\x3d\x25\x3d\x44\x30\xcc\xeb\ \xac\x2b\x4b\x25\x83\x5b\xde\x3b\x7b\xc1\xf7\xa4\xfe\xf0\xdf\x6b\ \x7d\xe3\xf7\x03\x94\xf9\x03\xee\xbd\x6b\xcc\xde\xdc\xda\x5e\x11\ \xb7\xdf\xa6\xd5\xbb\xb3\x4d\x03\xa4\x72\xa1\x6b\x88\x6f\x56\x09\ \x4c\x5a\xda\x17\x31\xc0\x9d\xe8\x72\x68\x6a\x2a\xe5\xff\x00\x6d\ \xfd\x89\xe7\x4e\x54\xd9\x37\x1d\xef\xdc\x79\x76\xed\xf6\x58\xbf\ \x5e\x0f\xa9\xb5\x01\x1d\x59\x94\xd2\x37\x84\xba\xea\xa0\x71\xa9\ \xcf\x69\x18\x15\xc0\x3b\xf3\xd7\xe4\x87\x56\xe5\x7a\xa6\x1e\x9f\ \xd8\x9b\x87\x1f\xbc\x77\x06\xe9\xcf\xe1\xa6\xad\x6c\x24\xdf\x7d\ \x8f\xc4\xe3\x31\x79\x24\xcb\x34\xb3\x64\x21\x06\x96\x6a\xda\xbc\ \x84\x11\x22\x45\x13\x3e\x94\xf2\x33\x94\xb2\x07\x89\x7e\xe7\xde\ \xca\x7d\xe7\x3d\xc7\xfb\xe1\xf3\x77\xdf\x27\xef\x19\xc9\x9f\xd5\ \xbb\x99\xad\xa5\x58\xed\x9e\x3f\xa7\x79\xa7\x92\xd2\x3d\xb6\x18\ \x61\xb4\x79\x24\xb8\x8a\xd6\xd2\xc6\x3d\x2d\x35\xcb\x09\x24\x75\ \x8b\x49\x9d\x9a\x77\x8c\x6f\xee\x0f\x30\x7b\x7b\xcb\x5e\xd4\xed\ \x3e\xd3\xf2\x16\xe8\x6f\xad\xa2\x65\x26\x4d\x5a\xc2\xa0\x95\xae\ \x1d\xde\x50\xaa\x8d\x24\xb3\x31\x3a\x63\x1a\x54\x16\xa8\x40\x10\ \x30\xaf\xd2\x1d\x49\x0e\xf5\xe8\xda\x1c\x3e\x52\x13\x13\xcf\x8f\ \x8d\x57\x52\x58\x82\xd1\xdf\xf2\xbf\xd7\xdf\x76\x6c\xe3\x12\xd9\ \xaa\x3f\xa7\x58\x21\xb9\x4a\xd6\xfb\x9b\x4b\x1f\xaf\x5c\x28\xbb\ \x5b\x7c\x7c\x7b\xa3\xca\x6d\x0e\xe3\xc4\x66\xfb\x23\xae\x62\xa1\ \xad\x3b\x7f\x39\x4b\x4e\x99\x2d\xcb\x8f\x58\x29\xe4\x9a\x97\x6f\ \xe5\x05\x64\xb0\xa6\x67\x1d\x53\x24\x4b\x1d\x3d\x44\xb2\x0a\x8a\ \x47\x60\x1d\x9e\x10\xbe\x0e\x35\xfd\xeb\xbf\xbb\x1e\xe3\x79\xe7\ \xdd\x9f\xde\xbf\xba\x7e\xf9\x0f\x28\x7b\x90\x9b\x8c\x32\xcf\x0c\ \x72\x49\x6b\x6a\x1d\xa5\x01\xf7\x0b\x37\xb7\x52\xd6\x77\x11\x06\ \x32\x4f\x04\x4b\xe0\xdc\xa2\xb1\x8d\x23\x9c\xb8\xb9\xcc\x6f\x6b\ \x7e\xf1\x36\xed\xb1\x5d\x72\x87\xb9\x56\x67\x73\xd9\x1a\xdd\x95\ \x59\x95\x65\x90\xae\x9c\x41\x2a\xb9\xa4\xa8\xc4\x69\x47\x63\xa9\ \x09\x01\x89\x40\x34\x34\xf5\x7f\xc9\xad\xd3\xba\x36\xa6\x66\xbb\ \x6d\xed\xd1\x8a\xaa\x66\xa8\x92\x83\x19\x58\x2a\x32\x6d\x8d\x87\ \xc9\x2b\x52\x52\xfd\xcc\xfe\x36\xab\x92\x9e\x36\x08\x64\x91\x7d\ \x76\xb9\x03\xe9\xef\x31\xfd\xda\xfb\x9e\x7b\x6f\xf7\x97\xe5\xaf\ \x68\xec\xfe\xf0\x7b\x8e\xe1\xbf\xf3\x2f\x2a\xda\xba\x35\xe4\x0d\ \x1e\xda\x77\x09\x6e\x23\xb7\x5b\xb9\x2e\x23\xb6\x8f\xf4\xe3\x9a\ \x4b\x64\x95\x21\xb7\x92\x21\x11\x24\x2b\x10\x4d\x62\x0e\x5b\xf7\ \x23\x7f\xf6\xc3\x77\xe6\xb9\x79\x0a\x2b\x7b\x1d\xb3\x75\x95\x4f\ \x84\xe1\xae\x3c\x05\x8d\xa4\x31\x08\xda\x46\x3a\x99\x16\x46\x52\ \xf2\x2b\xea\x14\xa8\x14\xe8\xb9\x67\x77\x6f\xcb\x3e\xc9\xcf\x35\ \x05\x6e\xe1\xdc\x98\x9c\x0c\xb5\x69\x0d\x5b\x62\x62\x34\xf1\xc5\ \x42\xf2\x85\x9e\x78\xf1\x54\x33\xe2\x68\xeb\x65\x8a\x12\x59\x23\ \x77\x8c\x39\x1a\x75\xa8\x24\x83\x6e\x4d\xfb\xa2\x7d\xde\xfd\xa6\ \xdb\xe7\x9f\xda\xff\x00\x60\xb9\x69\x37\xeb\x78\x59\xad\x9e\xea\ \x11\x3d\xc3\x4a\xaa\x4c\x68\xdb\x95\xec\x77\xf7\x90\xa3\xbe\x95\ \x79\x54\xca\x54\x77\x98\xe4\x2a\x14\xbf\xba\xfb\xa3\xcd\xbc\xc7\ \x24\x6b\xcc\xdc\xf3\xb8\x3d\xa4\x8c\x04\x8b\x1b\xe8\x8c\x29\x23\ \x51\xfa\x78\x4c\x31\x39\x51\x52\x14\x85\xaf\x0d\x4b\x5a\xf4\x66\ \xf2\xbb\xcf\xa2\xbe\x16\xec\xf9\xf2\xd0\x64\xf2\xbd\x93\xd9\x79\ \xaa\x05\x96\x2a\x9c\x8d\x40\x9b\x2d\x54\xd5\x08\x25\x58\xea\x24\ \x48\x85\x0e\xd3\xc4\xf9\x18\x17\x81\x15\xab\x64\x1a\x43\xf9\x74\ \xeb\x5e\x46\xf3\x27\xb6\x7f\x7f\x2f\xef\x04\xe7\xb9\x79\x6b\xdd\ \xdd\x9e\x5f\x6f\xfd\x8a\xd9\xb7\x27\x8a\x6b\x63\x1b\xc5\x6c\xb2\ \x5b\x3b\x44\xc6\xde\x07\x71\x2e\xf3\x74\xba\x59\x22\xbb\x24\x6d\ \xd1\x1d\x6d\x03\xc1\xaf\xc2\x93\x28\x36\xad\xef\xd9\x8f\x66\x76\ \x84\xbf\xe5\x2b\x88\xf7\xae\x70\xbb\xb7\x0c\x92\x02\xad\x26\x99\ \x14\x30\xd6\xe0\x69\xb5\x8c\xd4\x16\x88\x7e\xbb\x60\x38\x7a\x6a\ \x5a\xfc\xd8\x58\xae\xc7\xf9\x6d\xdd\x9f\xe9\x23\x77\xc3\x2b\x52\ \x35\x64\x6f\x04\x42\x39\x12\x86\x8a\x8e\x07\xb5\x2d\x0d\x0c\x2e\ \xef\xe1\xa3\xa6\x88\x05\x45\x24\xb1\xe5\x98\xb3\x96\x63\xdb\x9f\ \x64\x3d\x9d\xe4\xcf\x65\x79\x07\x96\x7d\xb3\xf6\xff\x00\x6d\x36\ \xdc\xb1\xb6\x45\xa5\x4b\x51\xa5\x9e\x46\x3a\xa6\xb9\xb8\x70\xab\ \xe2\x4f\x3c\x84\xbc\x8f\xa5\x45\x48\x54\x54\x8d\x51\x17\x12\x39\ \xf7\x9b\x77\x1e\x60\xdc\xb7\x2d\xf7\x7a\xb9\xf1\x37\x4b\x96\xa9\ \xa6\x15\x14\x0a\x2c\x68\x2a\x74\xa2\x2d\x15\x45\x49\xf3\x24\xb1\ \x24\xdc\xf6\x5a\xa7\x66\xf5\xb6\xcc\xa9\xc1\x6f\x8f\x2d\x36\xcd\ \xcb\xe0\x66\xc4\x65\xaa\xa1\xa5\xad\xa9\x8e\x2a\x6a\x9a\x39\xe8\ \xab\x22\xa8\x8f\x19\x14\xf5\xeb\x15\x4d\x2d\x43\x2e\xb8\x91\x8a\ \x11\x73\x61\xea\x18\x31\xfd\xe6\x9f\x74\xff\x00\x77\xbd\xe7\xbc\ \xf6\x73\xde\x1f\x61\x6d\xe2\xbb\xf7\x0b\x94\x27\x7a\xda\xb4\xb0\ \xc5\x24\x89\xe3\x41\x75\x6d\x3d\xbb\x5c\xbc\x76\xcc\xf6\xb3\xc2\ \xe5\xe2\x91\xd4\xcc\xb2\x8d\x1a\xcc\x61\x1a\x40\xfb\xb3\xfb\x9f\ \xcb\x1c\xa8\x39\xc3\x94\xf9\xd1\xda\x2d\x93\x76\x0a\x44\xa1\x59\ \x95\x5b\x43\xc7\x22\x48\x23\x06\x40\x24\x47\x1a\x58\x02\x14\xa9\ \xad\x03\x6a\x05\x6b\xa6\xbb\x17\xe1\x67\x43\xe2\x32\x63\x65\x77\ \x16\x57\x39\x0d\x18\x9e\x47\xa6\xcd\xc1\x5d\x57\x90\x59\x1b\x5a\ \x98\x29\x20\xa5\xda\x18\x1f\x24\x8c\x1c\xa0\xd7\x75\x00\xdd\x98\ \x00\x58\x62\x2f\xbc\xd7\x5f\xde\xa7\xf7\x9f\xf6\xf2\xe3\xd8\xee\ \x6f\xf6\x0f\x60\xd9\xb9\x47\x74\xb9\xb6\x6b\xb9\xed\x9a\x0b\x76\ \x91\x2d\xa6\x4b\x98\xc4\xf3\x5c\xef\x57\xa1\x21\x49\xe1\x8a\x76\ \x16\xf0\x2c\xce\xd1\x2a\x26\xa0\xc6\x27\x9b\x39\x63\x6f\xfb\xb9\ \xfb\x7f\xcc\x90\xf3\xbe\xdd\xce\x17\xd7\x5b\xc5\xb4\x72\x08\x51\ \xc3\xb8\x53\x22\x18\xd8\xa2\xc7\x69\x11\x2e\x51\xd9\x07\x88\xe5\ \x00\x62\xc6\x84\x06\x52\xcb\xd2\x3b\xf7\x3d\xdd\xff\x00\x26\x77\ \x96\xfd\xa4\x86\xb2\x97\x01\x96\xce\x4f\x51\x8d\xa5\x98\x96\x6a\ \x7c\x6c\x2c\x94\xb8\xd8\x66\x65\x76\x88\xd4\x47\x43\x4d\x18\x7d\ \x27\x4e\xbb\xe9\xe2\xde\xfb\x29\xf7\x67\xf6\xbc\xfb\x25\xec\xe7\ \xb6\xbe\xd4\x2d\xea\x5c\xc9\xb1\xed\x51\x41\x2c\xa8\x0a\xa4\xb7\ \x06\xb2\x5c\xcb\x1a\x90\x18\x47\x25\xc3\xca\xe8\x18\x6a\xd2\x46\ \xaa\xb5\x4f\x58\x9b\xee\xbe\xf4\x9c\xd3\xbf\xef\xfc\xc6\xd0\x18\ \xda\xf2\xe1\x9d\x54\x9a\xb2\xa7\xc3\x1a\x93\xc0\x95\x40\xa0\xd3\ \x15\x18\xc7\x57\x45\x0d\x06\x98\xa2\x5b\x72\x23\x40\x7f\xd7\x0a\ \x2f\xfd\xaf\x79\x2c\x26\xc0\xcf\x50\x31\xb6\xc9\xc7\x59\x7e\xcb\ \xfc\x3f\xde\xbf\xe2\xbe\xfd\xe2\xfc\xfa\xf7\xd3\x7c\xba\xec\x50\ \xdf\xf1\xef\xde\x37\xcf\xaf\x7d\x37\xf4\x7a\xf7\xd8\x1f\xf5\x27\ \xfd\xb7\xbf\x78\xdf\xd2\xeb\x7f\x4d\xf2\xff\x00\x57\xec\xeb\xff\ \xd0\xd9\xaf\xec\x3f\xda\x3f\xde\x3d\xe4\xdf\x8d\xf3\xeb\x02\xbe\ \x9b\xae\xfe\xc2\xdf\x44\x3f\xed\x8f\xfc\x45\xbd\xfb\xc6\xf9\xf5\ \xbf\xa7\xf9\x75\xef\xb1\x3f\xea\x4f\xfb\x63\xff\x00\x15\xf7\xef\ \x18\x75\xef\xa7\xf9\x75\xef\xb1\x3f\xea\x4f\xfb\x63\xff\x00\x15\ \xf7\xef\x18\x75\xef\xa7\x1d\x77\xf6\x07\xfd\x49\xff\x00\x7d\xfe\ \xc7\xdf\xbc\x5e\xb7\xf4\xc3\xaf\x7d\x81\xff\x00\x53\xfe\xfb\xfd\ \xbf\xbf\x78\xbd\x7b\xe9\x87\x5e\xfb\x03\xfe\xa4\xff\x00\xbe\xff\ \x00\x63\xef\xde\x2f\x5e\xfa\x6e\xbd\xf6\x07\xfd\x49\xff\x00\x7d\ \xfe\xc7\xdf\xbc\x5e\xbd\xf4\xc3\xa0\xbf\xb4\x3a\xb2\x97\xb1\x70\ \x55\x18\x7a\xa0\xca\xb3\x46\xd1\xdd\x4d\x8d\x88\xb7\xfa\xab\x5f\ \xdb\x17\x00\x4e\x85\x4f\x4b\x2c\x98\xda\x4a\x24\x5e\x3d\x57\xbe\ \x43\xf9\x68\xed\xca\xfa\xc9\xa7\x92\x79\x8a\x4d\x21\x76\x52\xe6\ \xd6\x26\xe6\xfc\x8f\xf7\xaf\x64\x8d\xb4\x44\x4d\x6b\xd0\xa1\x39\ \x96\x64\x50\x02\xf0\xe8\xd1\xf4\x7f\xc4\x6d\x9f\xd3\xba\x66\xc6\ \xd1\x45\xf7\x23\xeb\x26\x85\x2d\x70\x78\x24\xde\xe6\xfe\xcc\x2d\ \x2c\xe1\xb5\xca\x8c\xf4\x4f\xb8\xee\x57\x17\xf8\x76\xed\xe8\xda\ \xad\x06\x90\x06\x8f\xa0\x00\x58\x01\xff\x00\x15\xf6\x63\xe2\xf4\ \x47\xf4\xfd\x16\xfe\xef\xe8\x2a\x3e\xd5\x14\xc2\xa6\x3f\xf3\x32\ \x2b\xfd\x17\xf1\xff\x00\x20\x93\x6f\x68\x6e\xe1\x17\x00\x57\xa3\ \x6d\xba\xe5\xac\xab\x4f\x3e\x81\xfd\xd1\xf0\xfe\x3c\xde\xd9\xa5\ \xdb\xb0\xce\xf1\x53\xc2\xa8\x8c\xaa\xc5\x6e\xa2\xc2\xd6\x00\x71\ \xed\x2c\x96\x61\xe3\x09\x5c\x74\xbe\x1d\xd0\xc7\x33\x4b\x4c\xf4\ \x21\x74\xd7\xc4\xcd\x9b\xd6\x31\xc5\x3a\xd0\x43\x3d\x72\xd9\x8c\ \xce\x8a\xcd\xab\xeb\x7b\x95\x36\x20\xfb\x7e\xd6\xd2\x2b\x7c\x81\ \x9e\x92\xdf\xee\x17\x17\xa4\x8a\x9d\x3d\x0e\xfb\xcf\xac\xf0\xbb\ \xcf\x0d\x26\x1b\x25\x49\x1c\x94\xd2\x46\x63\xd2\xc8\x08\x00\x8e\ \x2c\x34\xf1\xed\x5c\xa1\x25\x5d\x2c\x31\xd1\x75\xbf\x89\x6f\x20\ \x91\x0e\x7a\x25\xb9\x1f\xe5\xed\xb0\xea\xab\x26\xa8\x82\x34\x86\ \x39\x9c\xbb\x46\xa4\xa8\xf5\x1f\xa5\x81\x03\xf3\xec\xa9\xb6\xc8\ \x49\x26\x9d\x1f\xae\xfd\x74\xaa\x01\xc9\x1d\x18\x1e\xa6\xf8\xcd\ \xb4\x3a\xac\x07\xc5\x51\x42\x27\xfc\xc8\xa8\x09\xff\x00\x6f\xa6\ \xfe\xd6\xdb\x5b\xc7\x6f\xf0\x8e\x8b\x2f\xaf\x2e\x2f\x7f\xb4\x26\ \x9d\x3b\x77\x67\x48\xd0\xf6\xc6\x14\x62\xab\x23\xba\x0d\x3c\x58\ \x73\xa7\xe9\xf5\x5b\x7e\x3d\xde\xea\x35\xb9\x4d\x27\xaa\x6d\xd3\ \x3d\x8c\x9e\x22\xf1\xeb\xbe\x93\xe9\x2a\x2e\xa6\xc3\x7f\x0a\xa3\ \x8e\xc9\xea\xe2\xdf\x4d\x5f\x5f\xa0\x1f\xd7\xde\xad\x63\x5b\x64\ \xd2\x3a\xf6\xe1\x33\xdf\x49\xad\x86\x7a\x19\xb2\x58\x0a\x6c\xad\ \x24\xb4\x75\x70\xac\xb0\xcc\xa5\x1d\x59\x6e\x08\x60\x41\x04\x10\ \x6e\x3d\xa9\x67\x0c\x08\x3c\x3a\x40\x90\x94\x60\xcb\xc7\xa2\x8b\ \xbb\xfe\x12\x75\xb6\xea\xc8\x4b\x92\x93\x1d\x4f\x14\xf2\xb1\x66\ \x65\x89\x14\x92\xc6\xe7\x9d\x3e\xcb\xa5\xb0\x81\xdb\x51\x5c\xf4\ \x7b\x06\xef\x79\x0a\x04\x0c\x69\xd2\x5e\x9f\xe0\x0f\x5a\xc7\x34\ \x72\x49\x49\x14\x8a\x8c\x1b\x4b\x85\x61\xc1\x07\xe9\x6e\x7d\xb6\ \x36\xeb\x7a\xe4\x74\xf1\xdf\x2f\x08\x22\xa4\x74\x3b\x52\x7c\x79\ \xdb\x18\x5d\xaf\x36\xde\xc2\xd1\x43\x48\x92\x42\xf1\x17\x89\x11\ \x0f\x29\x6b\x8d\x20\x7b\x56\x21\x8d\x23\xd0\x82\x9d\x16\xb5\xd4\ \xd2\x4c\x25\x90\x93\x9e\x8a\x25\x3f\xf2\xf5\xc3\xc9\xbd\x46\xe8\ \xc8\x4a\xd5\x1a\x2a\x04\xea\xb2\x15\x65\x04\x3e\xaf\xcd\xcf\xb2\ \xd1\xb6\x21\x97\xc4\x6e\x8f\x0e\xfd\x28\xb7\xf0\x54\x79\x74\x78\ \xf2\x5d\x57\x45\x3e\xc6\x3b\x42\x18\x95\x69\xbe\xdc\xc1\x61\x6b\ \x58\xa6\x8f\xa1\x00\x7d\x3d\x9a\xb2\xaf\x85\xe1\x81\x8e\x83\xa8\ \xcc\x2e\x7e\xa0\xf1\xaf\x45\x6b\x63\x7c\x15\xd8\xd8\x4c\xcd\x66\ \x57\x23\x8f\x8a\x79\x2a\x65\x79\x09\x68\xd0\xfe\xa6\xd4\x7e\xa3\ \x81\x73\xed\x04\x5b\x7c\x28\xe5\x8a\xf1\xe8\xe6\xe7\x7a\xb9\x96\ \x35\x44\x62\x00\xe8\x6d\x3f\x14\xba\xbc\xfd\x70\x74\x87\xfd\x78\ \x63\x3f\xef\x7e\xd5\xfd\x2d\xb7\xf0\x74\x5f\xfb\xc2\xf3\xfd\xf8\ \x7a\xec\x7c\x53\xeb\x01\xf4\xc1\xd2\x01\xfd\x04\x31\x81\xfe\xf1\ \xef\xdf\x4d\x6f\xfc\x1d\x6f\xf7\x85\xe7\xfb\xf0\xf4\xa8\xc0\x7c\ \x7f\xd8\x9b\x75\xc3\xd0\xe2\x29\xd7\xfc\x0c\x68\x05\xaf\xfe\xb1\ \xbf\xbb\xa4\x50\xa7\xc2\xbd\x31\x2d\xd5\xcc\xbf\x13\x1e\x84\xba\ \x2d\xa3\x87\xc7\xd8\xd2\x63\xa9\x61\x23\xf2\xb1\x46\x0f\x1f\x4e\ \x42\xfb\x50\x1d\x47\x00\x3a\x48\xd1\xbb\x7c\x4c\x7a\x41\xf6\x37\ \x4f\x62\x3b\x0e\x89\xa8\xb2\x31\xa7\x8c\x8b\x5a\xc2\xd6\xff\x00\ \x6d\xed\x99\xd1\x66\x14\x6e\x1d\x2a\xb4\x91\xed\x5b\x52\x71\xe8\ \xb4\x3f\xc0\xcd\x82\xee\xcc\x62\x8e\xec\x49\x3c\x0f\xcf\x3f\xea\ \x7d\x97\xfe\xee\x83\xa3\x6f\xdf\x77\x7e\x87\xa8\x32\xff\x00\x2f\ \x9e\xb4\x9d\xc4\x92\xd1\x53\xbb\x8e\x43\x32\x82\x41\xfe\xbf\xa7\ \xde\xbf\x76\xdb\xf9\x81\xd5\x86\xfb\x7a\x30\x2b\x4e\xa5\x27\xc0\ \x7e\xbf\x45\x0a\x90\xc6\x14\x7d\x00\x02\xc3\xfe\x4d\xf7\xbf\xdd\ \xd0\x75\xaf\xdf\x77\x7e\x60\xf4\xfd\x4b\xf0\xc7\x6b\xe2\x31\xf5\ \x14\xd8\xcb\x45\x24\xb1\xba\x06\x5b\x71\xa8\x1f\xcd\xbd\xdc\x59\ \x44\x8a\x42\xf1\xe9\xa6\xdd\x67\x77\x05\xc7\x45\xea\xb7\xf9\x73\ \xd2\xe5\xb7\x10\xca\x64\x6b\x27\x9a\x05\x9c\x4b\xe2\x77\x05\x2c\ \xac\x48\xb5\xd7\xda\x23\xb5\xab\x3e\xa6\x38\xe8\xd1\x79\x81\xe3\ \x88\xa2\x25\x0d\x3a\x3c\x5b\x77\xa3\x71\xdb\x5b\x63\x36\xd4\xc5\ \x22\xc0\x86\x98\xc1\xa9\x2c\xa7\x94\xb1\xe4\x0f\xea\x7d\x9b\x24\ \x4b\x1c\x3e\x1a\xd3\xa0\xf4\xb3\xbc\xd7\x3e\x3b\x8a\xe7\xa2\xbd\ \x89\xf8\x21\x84\x9f\x77\xcb\xb8\xf3\xe7\xef\x43\x54\x99\x84\x73\ \x1d\x6b\xfa\xcb\x0e\x1a\xfc\x0f\x65\xeb\xb7\x46\x65\x32\x39\xe8\ \xe1\xf7\xa9\x44\x02\x18\xc5\x31\xd1\xec\xda\xbd\x7f\x83\xda\x34\ \x10\xd0\x62\x68\x61\xa7\x8a\x24\x54\x1a\x23\x0b\x70\xa0\x01\xf4\ \xff\x00\x5b\xd9\xb4\x7a\x23\x50\x14\x0e\x83\x93\x09\x27\x62\xce\ \x49\x3d\x35\xef\xae\xac\xdb\xdb\xef\x17\x3e\x3b\x2d\x41\x04\xe2\ \x54\x64\xd4\xf1\x2b\x30\x2c\x3e\xbc\xfb\xac\xca\x93\x29\x56\x03\ \xab\xdb\x19\x6d\x9c\x3c\x64\x8a\x74\x5e\x36\x77\xc3\xfd\xb7\xb4\ \x2a\xb2\x12\x50\x20\x8e\x0a\xdd\x77\x8c\x70\xb6\x7b\xdc\x00\x1b\ \x81\xcf\xb4\x51\x59\xc7\x19\x6a\x52\x87\xa3\x5b\x8d\xca\x69\xc2\ \xea\xe2\x3a\x6a\xac\xf8\x69\xb7\x16\x5c\x8d\x55\x1c\x49\x15\x45\ \x76\xbd\x52\x2d\x81\xbb\x92\x49\x26\xe0\xfe\x7d\xd4\xd9\x47\x52\ \x47\x13\xd5\xc6\xe9\x35\x14\x37\x01\xd6\x1e\xad\xf8\x59\xb5\x36\ \x66\x76\x4c\xf5\x75\x34\x75\x75\x6d\x27\x94\x34\xaa\xae\x41\xb9\ \x61\xfa\x8f\x1c\xff\x00\xbd\xfb\xf5\xbd\x8c\x51\x3e\xb3\x42\x7a\ \xdd\xe6\xeb\x3d\xc4\x62\x25\xc2\xf4\x74\x57\x6e\x50\xad\x17\xd8\ \x0a\x68\xbe\xdb\xc7\xe3\xf1\x69\x1a\x74\xda\xda\x6c\x0d\xad\x6f\ \x66\x7a\xc5\x29\x8a\x74\x1f\xf0\x5b\x56\xbf\x3e\x81\x0c\xf7\xc6\ \xed\x9b\x94\xa9\xa9\xae\x86\x82\x08\x2a\xe7\xd5\xfb\x89\x12\x06\ \xbb\x7f\x88\x20\xfb\x4a\xf6\xf1\x31\x26\x82\xbd\x18\xc7\x77\x70\ \x80\x29\x35\x51\xd1\x3b\xdd\x9f\xcb\xaf\x11\xb9\xf3\xad\x92\xa9\ \xa9\x95\xa0\x69\x4b\xf8\x8b\x00\xba\x75\x5e\xda\x75\x7f\x4f\x65\ \x92\x6d\x69\x23\xea\x27\x1d\x1f\x41\xbf\xc9\x0c\x7a\x42\xe7\xa3\ \x65\xd7\x3f\x19\xb6\xb6\xc4\xda\xff\x00\xdd\xda\x6a\x68\xd6\x29\ \x22\xf1\xca\x42\x8e\x43\x2e\x93\x7f\xf1\xb7\xb3\x08\x2d\xa3\x86\ \x3d\x00\x0a\x74\x4b\x75\x7b\x35\xcc\xde\x29\xad\x7a\x53\xec\xff\ \x00\x8f\x7b\x2b\x68\x64\x24\xc9\x51\x63\xa9\x4d\x54\x8e\x5c\xc9\ \xe2\x5d\x5a\x89\xbf\xd6\xd7\xfa\x9f\x6e\x47\x0c\x51\xb1\x60\xa2\ \xbd\x33\x3d\xd5\xc4\xea\x11\x89\xd3\xd2\x3b\xbc\x7e\x39\x41\xda\ \xf4\x82\x9c\x4a\xd4\xe0\x70\x3c\x64\xad\x81\x5b\x70\x45\xb8\xf6\ \xd5\xdc\x2b\x70\x29\x5e\x94\x6d\xd7\x46\xc9\xab\xa7\xa2\xb9\xb4\ \x7f\x97\x36\x03\x13\x9b\xa6\xca\xe5\x1c\xd5\x9a\x79\x96\x45\x12\ \x9d\x76\x2a\xe1\xaf\xf9\xf6\x82\x2d\xb2\x35\x70\xcc\x6b\xd1\xc4\ \xfc\xc1\x33\xc6\x51\x16\x95\xea\xc7\xf6\xb6\xcd\xa3\xda\xf8\x9a\ \x5c\x55\x0c\x4b\x1c\x34\xf1\x24\x6a\xaa\xba\x47\xa5\x40\xfc\x0f\ \xc7\xb3\xb4\x75\x8d\x42\xad\x29\xd0\x52\x68\xda\x67\x67\x61\x93\ \xd6\x1d\xcf\xb0\x70\xbb\xae\x86\x4a\x1c\xb5\x0c\x15\x31\x48\x08\ \x22\x48\x83\x7d\x45\xbf\x2a\x7d\xea\x42\x92\x0a\x30\x1d\x6e\x15\ \x92\x06\x0c\x84\x8e\x92\x1b\x4b\xa3\xb6\x8e\xd0\x69\x7f\x86\xe3\ \xa0\x8d\x65\x2c\x59\x04\x4a\x01\xd4\x49\xfa\x05\xf6\xd4\x69\x14\ \x75\xd2\x07\x4f\xcf\x34\xf3\xd3\x59\x35\xe8\x40\x8b\x68\xe2\x29\ \xc3\xf8\x31\xf4\xd1\xb3\x29\x05\x84\x22\xfc\xff\x00\xb0\x1e\xdf\ \xd6\xa3\x80\x1d\x26\x31\xc8\x69\x56\x3d\x13\xde\xd8\xf8\x7b\x89\ \xec\xed\xc3\x0e\x4f\x22\x6f\x02\x48\x1c\xc2\x2e\x03\x0d\x5a\xad\ \x6b\x01\xec\xb2\xe2\xd1\x2e\x1f\x53\x1c\x74\x7b\x65\xb9\xc9\x67\ \x16\x84\x19\xe8\xc0\x75\x97\x49\xed\x9e\xb5\xc5\xc1\x41\x88\xa0\ \x82\x13\x12\x2a\x97\x48\xc0\x24\x81\x6b\xdc\x01\xed\x6c\x09\x1c\ \x0a\x15\x69\xd1\x6d\xe4\xd3\x5e\x39\x69\x09\xe9\x5f\xbc\x36\x1e\ \x37\x78\xe2\x2a\x31\x39\x28\x12\x58\x27\x8d\xa3\x2a\xca\x48\xb3\ \x02\x0f\xd4\xdb\xdb\x92\xb2\xca\xa5\x58\xe3\xa6\x20\x0d\x03\x87\ \x4c\x1e\x88\x66\x6f\xf9\x77\xec\xcc\x8e\x4e\x7a\xca\x60\x20\x8e\ \xa2\x46\x77\x45\x25\x41\xd4\xd7\x3c\x06\x1f\x51\xec\xa1\xb6\xc8\ \x59\x89\x06\x9d\x09\x23\xdf\xae\x15\x02\x91\x9e\x8c\x8f\x4d\xfc\ \x67\xda\xdd\x4b\x10\xfe\x17\x4b\x12\xcd\xc6\xa9\x02\x7a\x89\x17\ \xb9\xbd\xc1\xf6\xba\xda\x08\xed\xbe\x1e\x3d\x15\x5f\xde\x4d\x7c\ \x7b\xeb\x4e\x8c\x7f\xd8\x5b\xf1\xc7\xfb\x1f\xf8\xa9\xf6\xb7\xc6\ \xf9\xf4\x55\xf4\xdf\x2e\xbd\xf6\x1f\xe1\xfe\xf0\x7f\xe2\xbe\xfd\ \xe3\x7c\xfa\xf7\xd3\x7c\xba\xf7\xd8\x7f\x87\xfb\xc1\xff\x00\x8a\ \xfb\xf7\x8d\xf3\xeb\xdf\x4d\xf2\xeb\xdf\x61\xfe\x1f\xef\x07\xfe\ \x2b\xef\xde\x37\xcf\xaf\x7d\x37\xcb\xaf\xff\xd1\xda\x7b\xec\x7f\ \xda\x7f\xde\x07\xfc\x53\xde\x43\xf8\xc3\xd7\xac\x29\xfa\x6f\x97\ \x5e\xfb\x1f\xf6\x9f\xf7\x81\xff\x00\x14\xf7\xef\x18\x7a\xf5\xef\ \xa6\xf9\x75\xef\xb1\xff\x00\x0f\xf7\x8f\xfa\x47\xdf\xbc\x6f\x9f\ \x5b\xfa\x61\xe9\xd7\xbe\xc4\x7f\x4f\xf7\x8f\xfa\x47\xdf\xbc\x6f\ \x9f\x5e\xfa\x61\xe9\xd7\xbe\xc7\xfd\xa7\xfd\xe3\xfe\x91\xf7\xef\ \x1b\xe7\xd7\xbe\x9b\xe5\xd7\x7f\x63\xfe\xd3\xfe\xf1\xff\x00\x48\ \xfb\xf7\x8b\xf3\xeb\xdf\x4d\xf2\xeb\xdf\x63\xfe\xd2\x7f\xdb\x7f\ \xd2\x3e\xfd\xe2\xf5\xbf\xa6\x3e\x9d\x7b\xec\x7f\xda\x7f\xde\x3f\ \xe3\x5e\xfd\xe2\xfc\xfa\xf7\xd3\xfc\xba\xf7\xd8\xff\x00\xb4\xff\ \x00\xbc\x1f\xf8\xa7\xbf\x78\xbf\x33\xd7\xbe\x9f\xe5\xd7\x7f\x62\ \x3f\xd4\x9f\xf6\xdf\xf1\xa1\xef\x5e\x2f\xcf\xaf\x7d\x3f\xcb\xaf\ \x7d\x88\xfe\x87\xfe\x49\xf7\xef\x17\xaf\x7d\x3f\xcb\xaf\x7d\x88\ \xfe\x87\xfe\x49\xf7\xef\x17\xaf\x7d\x37\xcb\xae\xfe\xc3\xfc\x3f\ \xde\x07\xfc\x57\xdf\xbc\x6f\xb7\xaf\x7d\x37\xcb\xaf\x7d\x87\xf8\ \x7f\xbc\x0f\xf8\xaf\xbf\x78\xdd\x7b\xe9\xbe\x5d\x7b\xec\x3f\xc3\ \xfd\xe0\x7f\xc5\x7d\xfb\xc6\xfb\x7a\xf7\xd3\x7c\xba\xf7\xd8\x7f\ \x87\xfb\xc0\xff\x00\x8a\xfb\xf7\x8d\xf6\xf5\xef\xa7\xf9\x75\xef\ \xb0\xff\x00\x0f\xf7\x81\xef\xde\x37\xdb\xd6\xfe\x9c\xfa\x75\xef\ \xb1\xff\x00\x0f\xf7\x81\xef\xde\x2f\xdb\xd7\xbe\x9f\xe5\xd7\xbe\ \xc0\x7f\x4f\xf7\x85\xf7\xef\x1b\xed\xeb\xdf\x4f\xfd\x1e\xbb\xfb\ \x01\xfd\x3f\xde\x07\xbd\x78\xdf\x6f\x5e\xfa\x7f\x97\x5e\xfb\x01\ \xfd\x3f\xde\xbf\xe2\x9e\xfd\xe3\x1f\x9f\x5b\xfa\x7f\x97\x5e\xfb\ \x01\xfd\x3f\xde\x07\xbf\x78\xdf\x6f\x5e\xfa\x7f\x97\x5e\xfb\x01\ \xfd\x3f\xde\xbd\xfb\xc6\xfb\x7a\xf7\xd3\xfc\xba\xef\xec\x4f\xf8\ \xff\x00\xbc\x7b\xf7\x8b\xd7\xbe\x9f\xe5\xd7\xbe\xc4\xff\x00\x8f\ \xbf\x78\xbd\x7b\xe9\xbe\x5d\x76\x28\x7f\xc0\x9f\xf5\xff\x00\xe3\ \x5e\xfd\xe2\xf5\xef\xa6\xf9\x75\xef\xb2\xff\x00\x69\xff\x00\x7b\ \xff\x00\x8a\xfb\xf7\x8b\xd7\xbe\x9b\xe5\xd7\xbe\xcb\xfd\xa7\xfd\ \xef\xfe\x2b\xef\x5e\x2f\x5e\xfa\x6f\x97\x5e\xfb\x2f\xf0\xff\x00\ \x7b\xff\x00\x8a\xfb\xf7\x8b\xd6\xfe\x9b\xe5\xd7\xbe\xc7\xfd\xa4\ \xff\x00\xbc\xff\x00\xc5\x7d\xfb\xc5\xeb\xdf\x4d\xf2\xeb\xdf\x63\ \xfe\x1f\xef\x7f\xf1\x5f\x7e\xf1\x7a\xf7\xd3\x7c\xba\xef\xec\x7f\ \xc3\xfd\xf7\xfc\x95\xef\x7e\x2f\x5e\xfa\x6f\x97\x5e\xfb\x1f\xf0\ \xff\x00\x7d\xff\x00\x25\x7b\xf7\x8b\xd7\xbe\x9b\xe5\xd7\xbe\xcb\ \xfc\x3f\xdf\x7f\xb7\xf7\xef\x17\xad\xfd\x37\xcb\xaf\x7d\x97\xf8\ \x7f\xbe\xff\x00\x6f\xef\xde\x2f\x5e\xfa\x6f\x97\x5e\xfb\x2f\xf0\ \xff\x00\x7d\xfe\xdc\xfb\xd7\x8b\xd7\xbe\x9b\xe5\xd7\x7f\x64\x3f\ \xd4\xff\x00\xbc\x8f\x7e\xf1\x4f\x5e\xfa\x6f\x97\x5e\xfb\x21\xfe\ \xa4\xff\x00\xb7\x1e\xfd\xe2\x9e\xbd\xf4\xdf\x2e\xbd\xf6\x23\xfa\ \x7f\xbc\xff\x00\xc6\xbd\xfb\xc5\x3d\x7b\xe9\xbe\x5d\x77\xf6\x23\ \xfa\x7f\xbc\xff\x00\xc6\xbd\xfb\xc5\x3e\x9d\x7b\xe9\xbe\x5d\x7b\ \xec\x47\xf4\xff\x00\x79\xff\x00\x8d\x7b\xf7\x8a\x7a\xf7\xd3\x7c\ \xba\xf7\xd8\x8f\xe9\xfe\xf3\xff\x00\x1a\xf7\xef\x14\xfa\x75\xef\ \xa6\xf9\x75\xdf\xd8\xdf\xf0\x7f\xde\x7f\xe2\x9e\xf5\xe2\xf5\xef\ \xa7\x3d\x7b\xec\x3f\xc0\xff\x00\xbc\xff\x00\xc5\x3d\xfb\xc5\xeb\ \xdf\x4e\x7a\xf7\xd8\x7f\xb4\x9f\xf7\x9f\xf8\xa7\xbf\x78\xbd\x6f\ \xe9\xcf\xa7\x5e\xfb\x1f\xf6\x93\xfe\xf3\xff\x00\x14\xf7\xef\x17\ \xaf\x7d\x3f\xcb\xae\xfe\xc7\xfd\xa4\xff\x00\xbc\xfb\xf7\x8b\xd7\ \xbe\x9f\xe5\xd7\xbe\xc7\xfd\xa4\xff\x00\xbc\xfb\xf7\x8b\xd7\xbe\ \x9f\xe5\xd7\xbe\xc0\x7f\x43\xfe\xf3\xef\xde\x29\xeb\xdf\x4f\xf2\ \xeb\xdf\x63\xfe\xd2\x7f\xde\x7d\xfb\xc5\xeb\x7f\x4f\xf2\xeb\xdf\ \x61\xfe\xd2\x7f\xde\x7d\xeb\xc5\xeb\xdf\x4d\xf2\xeb\xdf\x61\xfe\ \xd3\xfe\xfb\xfd\x8f\xbf\x78\xdd\x7b\xe9\xbe\x5d\x77\xf6\x3f\xed\ \x3f\xef\x03\xfe\x29\xef\xde\x37\x5e\xfa\x6f\x97\x5e\xfb\x1f\xf6\ \x9f\xf7\x81\xff\x00\x14\xf7\xef\x1b\xaf\x7d\x37\xcb\xaf\x7d\x8f\ \xfb\x4f\xfb\xc0\xff\x00\x8a\x7b\xf7\x8d\xd7\xbe\x9b\xe5\xd7\xbe\ \xc7\xfd\xa7\xfd\xe0\x7f\xc5\x3d\xfb\xc6\xeb\xdf\x4f\xf2\xeb\xdf\ \x63\xfe\xd3\xfe\xf0\x3f\xe2\x9e\xfd\xe2\xf5\xef\xa7\xf9\x75\xef\ \xb1\xff\x00\x69\xff\x00\x78\xff\x00\xa4\x7d\xef\xc5\xeb\x7f\x4c\ \x3a\xef\xec\x7f\xda\x47\xfb\x6f\xfa\x47\xdf\xbc\x5e\xbd\xf4\xc3\ \xaf\x7d\x8f\xf8\x7f\xbc\x7f\xd2\x3e\xf5\xe2\xf5\xef\xa7\xeb\xdf\ \x63\xfe\xd3\xfe\xf1\xff\x00\x48\xfb\xf7\x8b\xf3\xeb\x7f\x4c\x7a\ \xf7\xd8\xff\x00\xb4\xff\x00\xbc\x7f\xd2\x3e\xfd\xe2\xfc\xc7\x5e\ \xfa\x63\xd7\x7f\x65\xfe\xd0\x3f\xdb\x1f\xf8\xa7\xbf\x78\xbf\x3e\ \xbd\xf4\xc7\xd3\xaf\x7d\x97\xfb\x40\xff\x00\x6c\x7f\xe2\x9e\xfd\ \xe2\xfc\xfa\xf7\xd3\x1f\x4e\xbf\xff\xd2\xdb\x3b\xec\xbf\xda\x47\ \xfb\xcf\xb9\xd3\xc5\xfe\x97\x58\x91\xf4\xfd\x7b\xec\x87\xfa\x91\ \xfe\xf3\xef\xde\x2f\xf4\xba\xf7\xd3\xf5\xef\xb2\xff\x00\x68\x1f\ \xed\x8f\xfc\x53\xdf\xbc\x5f\xe9\x75\xef\xa6\x3e\x9d\x77\xf6\x5f\ \xed\x3f\xef\x07\xdf\xbc\x5f\xe9\x75\xef\xa6\x3e\x9d\x7b\xec\x87\ \xfa\x9f\xf9\x34\xff\x00\xc5\x7d\xfb\xc6\x3f\xc5\xd7\xbe\x98\xfa\ \x75\xef\xb2\x1f\xea\x7f\xe4\xd3\xff\x00\x15\xf7\xef\x18\xff\x00\ \x17\x5e\xfa\x63\xe9\xd7\xbe\xc8\x7f\xa9\xff\x00\x93\x4f\xfc\x57\ \xdf\xbc\x63\xfc\x5d\x7b\xe9\x8f\xa7\x5d\xfd\x90\xff\x00\x53\xff\ \x00\x26\xff\x00\xc6\xfd\xeb\xc5\x3f\xc5\xd6\xfe\x9c\xfa\x75\xef\ \xb2\x1f\xea\x7f\xe4\xdf\x7e\xf1\x4f\xf1\x75\xef\xa7\x3e\x9d\x7b\ \xec\x47\xfa\x91\xfe\xd8\x7f\xc5\x7d\xfb\xc6\xfe\x97\x5e\xfa\x73\ \xe9\xd7\x7f\x62\x3f\xd4\x8f\xf6\xc3\xfe\x2b\xef\xde\x37\xf4\xba\ \xf7\xd3\x9f\x4e\xbd\xf6\x23\xfd\x48\xff\x00\x6c\x3f\xe2\xbe\xfd\ \xe3\x7c\xfa\xf7\xd3\xfc\xba\xf7\xd8\x8f\xf5\x3f\xef\x5f\xf1\x5f\ \x7e\xf1\xbe\x7d\x7b\xe9\xfe\x5d\x7b\xec\x47\xfa\x9f\xf7\xaf\xf8\ \xaf\xbf\x78\xdf\x3e\xbd\xf4\xff\x00\x2e\xbd\xf6\x23\xfd\x4f\xfb\ \xd7\xfc\x57\xdf\xbc\x6f\x9f\x5e\xfa\x7f\x97\x5e\xfb\x11\xfe\xa7\ \xfd\xeb\xfe\x2b\xef\xde\x37\xcf\xaf\x7d\x3f\xcb\xae\xfe\xcb\xfc\ \x3f\xdf\x7f\xb7\xf7\xef\x14\x7a\xf5\xef\xa7\xf9\x75\xef\xb2\xff\ \x00\x0f\xf7\xdf\xed\xfd\xfb\xc6\x1d\x6f\xe9\xba\xf7\xd9\x7f\x87\ \xfb\xef\xf6\xfe\xfd\xe2\x8f\x5e\xbd\xf4\xfd\x7b\xec\xbf\xc3\xfd\ \xf7\xfb\x7f\x7a\xf1\x7e\x7d\x7b\xe9\xfe\x5d\x77\xf6\x5f\xe1\xfe\ \xfb\xfd\xbf\xbf\x78\xa3\xd7\xaf\x7d\x3f\xcb\xaf\x7d\x89\xff\x00\ \x52\x7f\xde\x7d\xfb\xc5\x1e\xbd\x7b\xe9\xfe\x5d\x7b\xec\x4f\xfa\ \x93\xfe\xd8\xff\x00\xc5\x7d\xfb\xc5\x1e\xbd\x7b\xe9\xfe\x5d\x77\ \xf6\x27\xfd\x49\xff\x00\x6c\x7f\xe2\xbe\xfd\xe2\xfc\xfa\xdf\xd3\ \x8f\x4e\xbd\xf6\x27\xfd\x49\xff\x00\x6c\x7f\xe2\xbe\xfd\xe2\xfc\ \xfa\xf7\xd3\x8f\x4e\xbd\xf6\x27\xfd\x49\xff\x00\x6c\x7f\xe2\xbe\ \xfd\xe2\xfc\xfa\xf7\xd3\x8f\x4e\xbd\xf6\x47\xfd\x4f\xfc\x9b\xef\ \xde\x28\xf5\xeb\xdf\x4e\x3d\x3a\xef\xec\x8f\xfa\x9f\xf9\x37\xdf\ \xbc\x51\xeb\xd7\xbe\x9c\x7a\x75\xef\xb1\x3f\xea\x7f\xe4\xd1\xef\ \xde\x28\xf5\x3d\x7b\xe9\x87\xa7\x5e\xfb\x13\xfe\xa7\xfe\x4d\x1f\ \xf1\x5f\x7e\xf1\x47\xa9\xeb\xdf\x4c\x3a\xf7\xd9\x7f\xb4\x1f\xf6\ \xc3\xde\xbc\x5f\x9f\x5e\xfa\x61\xe9\xd7\x7f\x65\xfe\xd0\x7f\xdb\ \x0f\xf8\xa7\xbf\x78\xbf\x3e\xbd\xf4\xc3\xd3\xaf\x7d\x97\xfb\x41\ \xff\x00\x6c\x3f\xe2\x9e\xfd\xe2\xfc\xfa\xf7\xd3\x0f\x4e\xbd\xf6\ \x5f\xed\x07\xfd\xe3\xfe\x29\xef\xde\x2f\xcf\xad\xfd\x3f\x5e\xfb\ \x2f\xf6\x93\xfe\xf1\xff\x00\x14\xf7\xef\x17\xe7\xd7\xbe\x9f\xaf\ \x7d\x97\xfb\x49\x1f\xed\xbf\xe2\x07\xbf\x78\xbf\x3e\xbd\xf4\xfd\ \x77\xf6\x3f\xe1\xfe\xf1\xff\x00\x48\xfb\xd7\x8b\xd7\xbe\x9f\xaf\ \x7d\x97\xf8\x7f\xbc\x7f\xc6\xbd\xef\xc5\xeb\xdf\x4f\xd7\xbe\xcb\ \xfd\xa7\xfd\xef\xfe\x29\xef\xde\x2f\x5e\xfa\x7e\xbd\xf6\x5f\xed\ \x3f\xef\x7f\xf1\x4f\x7e\xf1\x7a\xf7\xd3\xf5\xef\xb2\xff\x00\x69\ \xff\x00\x7b\xff\x00\x8a\x7b\xf7\x8b\xd6\xfe\x9f\xae\xfe\xc7\xfd\ \xa7\xfd\xe0\xff\x00\xc5\x3d\xfb\xc5\xeb\xdf\x4f\xf2\xeb\xdf\x63\ \xfe\xd3\xfe\xf0\x7f\xe2\x9e\xfd\xe2\xf5\xef\xa7\xf9\x75\xef\xb1\ \xff\x00\x69\xff\x00\x78\x3f\xf1\x4f\x7a\xf1\x7a\xf7\xd3\x7c\xba\ \xf7\xd8\xff\x00\xb4\xff\x00\xbc\x1f\xf8\xa7\xbf\x78\xdd\x7b\xe9\ \xbe\x5d\x7b\xec\xbf\xda\x7f\xde\x3f\xe3\x5e\xfd\xe2\xf5\xbf\xa7\ \xf9\x75\xef\xb2\xff\x00\x69\xff\x00\x93\x7f\xe3\x5e\xfd\xe2\xf5\ \xef\xa7\xf9\x75\xdf\xd8\x7f\xb4\x8f\xf7\x8f\x7e\xf1\x7a\xf7\xd3\ \xfc\xba\xf7\xd8\x7f\xb4\x8f\xf7\x8f\x7e\xf1\x7a\xf7\xd3\xfc\xba\ \xf7\xd8\xff\x00\xb4\x8f\xf7\x8f\xf8\xa7\xbf\x78\xbd\x7b\xe9\xc7\ \xa7\x5d\xfd\x8f\xfb\x4f\xfb\xd7\xbf\x78\xbd\x7b\xe9\xfe\x5d\x7b\ \xec\x7f\xda\x47\xfb\xc7\xfc\x53\xdf\xbc\x5e\xbd\xf4\xe3\xd3\xaf\ \x7d\x89\x1f\x8f\xf7\x91\xff\x00\x14\xf7\xef\x17\xad\xfd\x38\xf4\ \xeb\xbf\xb2\x3f\xd3\xfd\xe4\x7b\xd7\x8a\x3d\x3a\xd7\xd3\xfc\xba\ \xf7\xd9\x1f\xe9\xfe\xf2\x3f\xe2\x9e\xfd\xe2\x8f\x4e\xb7\xf4\xe3\ \xd3\xaf\x7d\x91\xff\x00\x7c\x7f\xe3\x5e\xfd\xe2\xfc\xba\xf7\xd3\ \x8e\xbd\xf6\x47\xfa\x5f\xfd\x8f\xbf\x78\x9d\x7b\xe9\xc7\x5d\xfd\ \x97\xfb\x48\xff\x00\x6e\x7d\xfb\xc4\xeb\xdf\x4e\x3d\x3a\xf7\xd9\ \x7f\xb4\x8f\xf6\xe7\xdf\xbc\x4e\xbd\xf4\xe3\xd3\xaf\x7d\x91\xff\ \x00\x52\x3f\xdb\x9f\x7e\xf1\x7a\xf7\xd3\x8f\x4e\xbd\xf6\x47\xfd\ \x48\xff\x00\x6e\x7d\xfb\xc5\x1d\x6f\xe9\xbe\x5d\x7b\xec\x8f\xfa\ \x9f\xf7\x93\xef\xde\x2f\x5e\xfa\x6f\x97\x5d\xfd\x97\xf8\x7f\xbe\ \xff\x00\x6f\xef\x5e\x2f\x5e\xfa\x6f\x97\x5e\xfb\x2f\xf0\xff\x00\ \x7d\xfe\xdf\xdf\xbc\x5e\xbd\xf4\xdf\x2e\xbf\xff\xd3\xdb\xf7\xec\ \x8f\xfb\xe2\x3f\xe2\x9e\xe6\x2f\x1b\xac\x64\xfa\x71\xe9\xd7\x7f\ \x64\x7f\xa0\xff\x00\x6f\xef\xde\x2f\xcf\xaf\x7d\x38\xf4\xeb\xdf\ \x64\x7f\xa0\xff\x00\x6e\x7d\xfb\xc5\xf9\xf5\xef\xa7\x1e\x9d\x7b\ \xec\x8f\xf4\x1f\xed\xcf\xbf\x78\xbf\x3e\xbd\xf4\xe3\xd3\xaf\x7d\ \x91\xfe\x83\xfd\xb9\xf7\xef\x17\xe7\xd7\xbe\x9c\x7a\x75\xef\xb2\ \x3f\xd0\x7f\xb7\x3e\xfd\xe2\xfc\xfa\xf7\xd3\x8f\x4e\xbd\xf6\x5f\ \xd4\x0f\xf6\xe7\xfe\x2a\x3d\xfb\xc5\xf9\xf5\xef\xa7\x1e\x9d\x77\ \xf6\x7f\xe1\xfe\xf1\xff\x00\x1b\xf7\xaf\x17\xe7\xd6\xfe\x9c\x7a\ \x75\xef\xb2\xff\x00\x0f\xf7\x8f\xf8\xdf\xbf\x78\xbf\x3e\xbd\xf4\ \xff\x00\x2e\xbb\xfb\x2f\xf0\xff\x00\x78\xff\x00\x8d\xfb\xf7\x8b\ \xf3\xeb\xdf\x4f\xf2\xfe\x5d\x7b\xec\xbf\xc3\xfd\xe3\xfe\x37\xef\ \xde\x2f\xcf\xaf\x7d\x3f\xcb\xf9\x75\xef\xb2\xff\x00\x0f\xf7\x8f\ \xf8\xdf\xbf\x78\xbf\x3e\xbd\xf4\xff\x00\x2f\xe5\xd7\xbe\xcb\xfc\ \x3f\xde\x3f\xe3\x7e\xfd\xe2\xfc\xfa\xf7\xd3\xfc\xbf\x97\x5e\xfb\ \x2f\xf0\xff\x00\x78\xff\x00\x8d\xfb\xf7\x8b\xf3\xeb\xdf\x4f\xf2\ \xfe\x5d\x7b\xec\xbf\xc3\xfd\xf7\xfb\x7f\x7e\xf1\x7e\x7d\x6f\xe9\ \xfe\x5d\x77\xf6\x5f\xe1\xfe\xfb\xfd\xbf\xbf\x78\xbf\x3e\xb7\xf4\ \xff\x00\x2e\xbd\xf6\x5f\xe1\xfe\xf5\xff\x00\x15\xf7\xef\x17\xe7\ \xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb7\xf7\xef\x17\xe7\ \xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb7\xf7\xef\x17\xe7\ \xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb7\xf7\xef\x17\xe7\ \xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb7\xf7\xaf\x17\xe7\ \xd7\xbe\x9f\xfa\x3d\x77\xf6\x43\xfc\x3f\xde\x7d\xfb\xc5\xf9\xf5\ \xef\xa7\xfe\x8f\x5e\xfb\x2f\xf5\xbf\xde\x7d\xfb\xc5\xf9\xf5\xef\ \xa7\xfe\x8f\x5e\xfb\x2f\xf5\xbf\xde\x7d\xfb\xc5\xf9\xf5\xef\xa7\ \xfe\x8f\x5e\xfb\x21\xfe\x1f\xef\x3e\xfd\xe2\xfc\xfa\xf7\xd3\xff\ \x00\x47\xaf\x7d\x90\xff\x00\x0f\xf7\x9f\x7e\xf1\x7e\x7d\x7b\xe9\ \xff\x00\xa3\xd7\xbe\xc8\x7f\x87\xfb\xcf\xbf\x78\xbf\x3e\xbd\xf4\ \xff\x00\x2e\xbb\xfb\x21\xfe\x1f\xed\xaf\xef\xde\x2f\xcf\xad\xfd\ \x38\xf4\xeb\xdf\x65\xfe\xb7\xfc\x93\xef\x5e\x2f\xcf\xaf\x7d\x3f\ \xcb\xae\xfe\xc8\xff\x00\x41\xff\x00\x24\xfb\xf7\x8d\xf3\xeb\xdf\ \x4f\xf2\xeb\xdf\x64\x7f\xa7\xfc\x9b\xef\xde\x37\xcf\xaf\x7d\x3f\ \xcb\xaf\x7d\x91\xfe\x83\xfe\x49\xf7\xef\x1b\xe7\xd7\xbe\x9c\x7a\ \x75\xef\xb2\x3f\xd3\xfe\x4d\xf7\xef\x1b\xe7\xd7\xbe\x9c\x7a\x75\ \xdf\xd9\x7f\xb4\x9f\xf6\xdf\xf4\x8f\xbf\x78\xa3\xd7\xaf\x7d\x3f\ \xcb\xaf\x7d\x97\xfb\x49\xff\x00\x6d\xff\x00\x1a\xf7\xef\x14\x7a\ \xf5\xef\x03\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb6\xf7\xef\x14\x7a\ \xf5\xbf\xa7\xf9\x75\xef\xb2\xff\x00\x0f\xf7\xdf\xed\xbd\xfb\xc5\ \x1e\xbd\x7b\xe9\xfe\x5d\x7b\xec\xbf\xc3\xfd\xf7\xfb\x6f\x7e\xf1\ \x87\xaf\x5e\xfa\x7f\x97\x5e\xfb\x2f\xf0\xff\x00\x7d\xfe\xdb\xdf\ \xbc\x61\xeb\xd7\xbe\x9f\xe5\xd7\xbe\xcb\xfc\x3f\xdf\x7f\xb6\xf7\ \xef\x14\x7a\xf5\xef\xa7\xf9\x75\xdf\xd9\x7f\xb4\xff\x00\xbe\xff\ \x00\x6d\xef\x5e\x28\xf5\xeb\xdf\x4f\xf2\xeb\xdf\x65\xfe\x1f\xef\ \xbf\xdb\x7b\xf7\x8a\x3d\x7a\xdf\xd3\xfc\xba\xf7\xd9\x7f\x87\xfb\ \xef\xf6\xde\xfd\xe3\x0f\x5e\xbd\xf4\xff\x00\x2e\xbd\xf6\x5f\xed\ \x3f\xef\x7f\xf1\x4f\x7e\xf1\x47\xaf\x5e\xfa\x7e\xbd\xf6\x5f\xed\ \x3f\xef\xbf\xdb\x7b\xf7\x8c\x3d\x7a\xf7\xd3\xfc\xba\xf7\xd9\x7f\ \xb4\xff\x00\xbd\xff\x00\xc5\x3d\xfb\xc5\x1e\xbd\x7b\xe9\xfe\x5d\ \x7b\xec\xbf\xda\x7f\xde\x3f\xe3\x5e\xfd\xe2\x8f\x5e\xbd\xe0\x7c\ \xba\xef\xec\x87\xf4\xff\x00\x93\x47\xbf\x78\xbf\x3e\xb7\xe0\x7c\ \xba\xf7\xd9\x0f\xe9\xff\x00\x26\xfb\xf7\x8d\xf3\xeb\x5e\x07\xcb\ \xae\xfe\xc4\x7f\xa9\x3f\xf2\x4f\xbf\x78\xbd\x6f\xe9\xcf\xa7\x5e\ \xfb\x11\xfd\x0f\xfc\x93\xef\xde\x2f\x5e\xfa\x7f\x97\x5e\xfb\x11\ \xfd\x0f\xfc\x93\xef\xde\x2f\x5e\xfa\x73\xe9\xd7\xbe\xc8\x7f\x43\ \xff\x00\x24\xfb\xf7\x8b\xd7\xbe\x9c\xfa\x75\xef\xb2\x1f\xd0\xff\ \x00\xc9\x3f\xf1\xaf\x7e\xf1\x7a\xf7\xd3\xff\x00\x47\xae\xfe\xcf\ \xfc\x1b\xfd\xb7\xfc\x6b\xde\xbc\x4e\xb7\xf4\xff\x00\x2e\xbb\xfb\ \x2f\xf5\xff\x00\xde\x3d\xfb\xc5\xeb\xdf\x4f\xf2\xeb\xdf\x65\xfe\ \xbf\xfb\xc7\xbf\x78\xbd\x7b\xe9\xfe\x5d\x7b\xec\xbf\xd7\xff\x00\ \x78\xf7\xef\x17\xaf\x7d\x3f\xcb\xaf\x7d\x97\xfa\xff\x00\xef\x1e\ \xfd\xe2\xf5\xef\xa7\xf9\x75\xdf\xd9\x7f\x87\xfb\xef\xf6\xfe\xfd\ \xe2\xf5\xef\xa7\xf9\x75\xef\xb2\xff\x00\x69\xff\x00\x7d\xfe\xdf\ \xdf\xbc\x5e\xbd\xf4\xff\x00\x2e\xbd\xf6\x5f\xe1\xfe\xfb\xfd\xbf\ \xbf\x78\xbd\x7b\xe9\xfe\x5d\x7b\xec\xbf\xc3\xfd\xef\xfe\x2b\xef\ \xde\x2f\x5e\xfa\x7f\x97\x5e\xfb\x2f\xf0\xff\x00\x7b\xff\x00\x8a\ \xfb\xf7\x8b\xd7\xbe\x9f\xe5\xd7\xff\xd4\xdc\xa7\xec\xbf\xda\x7f\ \xde\x3f\xe3\x5e\xe5\x1f\x17\xa8\x03\xc0\x1d\x7b\xec\xbf\xda\x7f\ \xde\x3f\xe3\x5e\xfd\xe2\xf5\xef\x00\x75\xdf\xd9\xdb\xe8\x3f\xde\ \x3f\xe3\x5e\xfd\xe2\xfc\xba\xf7\x80\x3a\xf7\xd9\x9f\xe9\xfe\xf1\ \xff\x00\x1a\xf7\xef\x13\xe5\xd7\xbc\x01\xd7\xbe\xcc\xff\x00\x4f\ \xf7\x8f\xf8\xd7\xbf\x78\x9f\x2e\xbd\xe0\x0e\xbd\xf6\x67\xfa\x1f\ \xf6\xdf\xf1\xaf\x7e\xf1\x3e\x5d\x7b\xc0\x1d\x77\xf6\x67\xfa\x1f\ \xf7\xdf\xec\x3d\xeb\xc5\xf9\x0e\xb7\xf4\xe3\xd3\xaf\x7d\x99\xfe\ \x87\xfd\xf7\xfb\x0f\x7e\xf1\x7e\x43\xaf\x7d\x38\xf4\xeb\xdf\x66\ \x7f\xa1\xff\x00\x7d\xfe\xc3\xdf\xbc\x5f\xb3\xaf\x7d\x38\xf4\xeb\ \xdf\x66\x7f\xa1\xff\x00\x7d\xfe\xc3\xdf\xbc\x5f\x90\xeb\xdf\x4e\ \x3d\x3a\xf0\xa3\x3f\xd3\xfd\xbf\xfb\xe1\xef\xde\x2f\x5e\xfa\x71\ \xe9\xd7\x7f\x66\x7f\xd4\x8f\xf6\xfe\xf5\xe2\xf5\xef\xa7\x1e\x9d\ \x77\xf6\x67\xfd\x48\xff\x00\x6f\xff\x00\x1b\xf7\xef\x17\xaf\x7d\ \x38\xf4\xeb\xaf\xb3\x3f\xea\x47\xfb\x7f\x7e\xf1\x7a\xf7\xd3\x8f\ \x4e\xbb\xfb\x33\xfe\xa4\x7f\xb7\xff\x00\x8d\xfb\xf7\x8b\xd7\xbe\ \x9c\x7a\x75\xef\xb2\x3f\xea\x47\xfb\x73\xef\x7e\x2f\x5e\xfa\x71\ \xe9\xd7\xbe\xc8\xff\x00\xa9\x1f\xed\xcf\xbf\x78\x9d\x6f\xe9\xc7\ \xa7\x5e\xfb\x33\xfe\xa4\x7b\xd7\x89\xf3\xeb\xdf\x4e\x3d\x3a\xf7\ \xd9\x9f\xf5\x23\xdf\xbc\x4f\x9f\x5e\xfa\x71\xe9\xd7\xbe\xcc\xff\ \x00\xa9\x1e\xf7\xe2\x7c\xfa\xf7\xd3\x8f\x4e\xbd\xf6\x67\xfd\x48\ \xff\x00\x6f\xef\x5e\x27\xcf\xaf\x7d\x38\xf4\xeb\xbf\xb3\xff\x00\ \x01\xfe\xfb\xfd\x8f\xbf\x78\x9d\x7b\xe9\xc7\xa7\x5e\xfb\x3f\xf0\ \xff\x00\x78\xff\x00\x8d\xfb\xf7\x89\xd7\xbc\x01\xd7\xbe\xcf\xfd\ \xf7\xfb\xe3\xef\xde\x29\xf5\xeb\x7e\x07\x5e\xfb\x3f\xf7\xdf\xef\ \x8f\xbf\x78\xa7\xd7\xaf\x78\x1d\x7b\xec\xff\x00\xdf\x7f\xbe\x3e\ \xfd\xe2\x9f\x5e\xbd\xe0\x75\xdf\xd9\xff\x00\x87\xfb\xef\xf6\xfe\ \xfd\xe2\x9f\x5e\xbd\xe0\x0e\xbd\xf6\x7f\xe1\xfe\xfb\xfd\xbf\xbf\ \x78\xa7\xd7\xaf\x78\x1f\x2e\xbd\xf6\x7f\xe0\x7d\xfb\xc5\x3e\xbd\ \x7b\xc0\xf9\x75\xef\xb3\xff\x00\x03\xef\xde\x29\xf5\xeb\xdf\x4f\ \xf2\x3d\x7b\xec\xff\x00\xc0\xff\x00\xbe\xff\x00\x63\xef\xde\x29\ \xf5\xeb\x7e\x07\xc8\xf5\xef\xb3\xff\x00\x0f\x7e\xf1\x4f\xaf\x5a\ \xfa\x7f\x91\xeb\xbf\xb3\xff\x00\x0f\xf7\xdf\xed\xfd\xfb\xc5\x3e\ \xbd\x6f\xe9\xff\x00\xa3\xd7\xbe\xcf\xfc\x3f\xde\x7f\xe3\x7e\xfd\ \xe2\x9f\x5e\xb7\xf4\xff\x00\xd1\xeb\xdf\x67\xfe\x1f\xef\x3f\xf1\ \xbf\x7e\xf1\x4f\xaf\x5a\xfa\x7f\xe8\xf5\xef\xb3\xff\x00\x0f\xf7\ \xdf\xed\xfd\xfb\xc5\x3e\xbd\x6f\xe9\xff\x00\xa3\xd7\xbe\xcf\xfc\ \x3f\xdf\x7f\xb7\xf7\xaf\x14\xfa\xf5\xef\xa7\xfe\x8f\x5d\xfd\x9f\ \xfc\x17\xfd\xb7\xfc\x6b\xdf\xbc\x53\xeb\xd7\xbe\x9f\xfa\x3d\x77\ \xf6\x7f\xe0\xbf\xed\xbf\xe3\x5e\xfd\xe2\x9f\x5e\xbd\xf4\xff\x00\ \x2e\xbd\xf6\x7f\xe0\xbf\xed\xbf\xe3\x5e\xfd\xe2\x9f\x5e\xbd\xf4\ \xff\x00\x2e\xbd\xf6\x7f\xe0\xbf\xed\xbf\xe3\x5e\xfd\xe2\x9f\x5e\ \xbd\xf4\xff\x00\x2e\xbd\xf6\x7f\xf0\x5f\xf6\xde\xfd\xe2\xfc\xfa\ \xf7\xd3\xfc\xba\xf7\xd9\xff\x00\xad\xfe\xdb\xdf\xbc\x5f\x9f\x5e\ \xfa\x7f\x97\x5e\xfb\x3f\xf5\xbf\xdb\x7b\xf7\x8b\xf3\xeb\x7e\x07\ \xcb\xaf\x7d\x9f\xfa\xdf\xed\xbd\xfb\xc5\xf9\xf5\xef\x03\xe5\xd7\ \xbe\xcf\xfd\x6f\xf6\xde\xfd\xe2\xfc\xfa\xf7\x81\xf2\xeb\xdf\x67\ \xfe\xb7\xfb\x6f\x7e\xf1\x7e\x7d\x7b\xc0\xf9\x75\xef\xb3\xff\x00\ \x5b\xfd\xb7\xfc\x8f\xdf\xbc\x5f\x9f\x5e\xf0\x3e\x5d\x77\xf6\x63\ \xfa\x7f\xbe\xff\x00\x6d\xef\x5e\x29\xf5\xeb\xde\x07\xcb\xae\xfe\ \xcb\xfc\x0f\xfb\x6f\xf8\xd7\xbf\x78\xbf\x3e\xbd\xe0\x7c\xba\xf7\ \xd9\x7f\x81\xff\x00\x6d\xff\x00\x1a\xf7\xef\x17\xfa\x5d\x7b\xc0\ \xf9\x1e\xbd\xf6\x5f\xe0\x7f\xdb\x7f\xc6\xbd\xfb\xc5\xf9\xf5\xef\ \x03\xe5\xd7\xbe\xcb\xfd\xa7\xfd\xe3\xfe\x35\xef\xde\x2f\xf4\xba\ \xf7\x81\xf2\xeb\xdf\x65\xfe\xd3\xfe\xf1\xff\x00\x1a\xf7\xef\x17\ \xfa\x5d\x7b\xc0\xf9\x75\xdf\xd9\x7f\xb4\xff\x00\xbe\xff\x00\x6d\ \xef\x5e\x2f\xf4\xba\xdf\x81\xf2\xeb\xdf\x65\xfe\xd3\xfe\xfb\xfd\ \xb7\xbf\x78\xbf\xd2\xeb\xde\x07\xcb\xae\xbe\xcb\xfd\xa7\xfd\xf7\ \xfb\x6f\x7e\xf1\x7f\xa5\xd7\xbc\x0f\x97\x5e\xfb\x2f\xf6\x9f\xf7\ \xdf\xed\xbd\xfb\xc5\xfe\x97\x5e\xf0\x3e\x5d\x77\xf6\x5f\xed\x3f\ \xef\x1f\xf1\xaf\x7e\xf1\x7f\xa5\xd7\xbc\x0f\x97\x5e\xfb\x2f\xf6\ \x91\xfe\xdb\xfe\x35\xef\xde\x2f\xf4\xba\xdf\x81\xf2\xeb\xdf\x65\ \xfe\x03\xfd\xb7\xfc\x6b\xdf\xbc\x5f\x9f\x5e\xf0\x3e\x43\xaf\x7d\ \x97\xf8\x0f\xf6\xdf\xf1\xaf\x7e\xf1\x7f\xa5\xd7\xbc\x0f\x97\x5e\ \xfb\x2f\xf0\x1f\xed\xbf\xe3\x5e\xfd\xe2\xff\x00\x4b\xaf\x78\x1f\ \x2e\xb9\x7d\x9f\xfa\xff\x00\xed\xbd\xeb\xc5\xf9\xf5\xef\x03\xe5\ \xd7\xff\xd5\xdd\x4f\xed\x3f\xda\x47\xfb\x61\xff\x00\x15\xf7\x20\ \x78\xa3\xd4\xf5\x0d\x7d\x3f\xf4\x7a\xf7\xda\x1f\xe8\x3f\xdb\x0f\ \x7e\xf1\x07\xaf\x5e\xf0\x0f\xa7\x5d\xfd\x9f\xfa\xdf\xed\xbd\xfb\ \xc5\x1f\x3e\xbd\xe0\x1f\x4e\xbd\xf6\x7f\xeb\x7f\xb6\xf7\xef\x14\ \x7c\xfa\xf7\x80\x7d\x3a\xf7\xd9\xff\x00\xad\xfe\xdb\xdf\xbc\x51\ \xf3\xeb\xde\x01\xf4\xeb\xdf\x67\xfe\xb7\xfb\x6f\x7e\xf1\x47\xcf\ \xad\xf8\x1f\x2e\xbd\xf6\x7f\xeb\x7f\xb6\xf7\xef\x14\x7c\xfa\xf7\ \x81\xf2\xeb\xdf\x67\xfe\xb7\xfb\x6f\x7e\xf1\x47\xcf\xaf\x78\x1f\ \x2e\xbd\xf6\x7f\xeb\x7f\xb6\xf7\xef\x14\x7c\xfa\xf7\x81\xf2\xeb\ \xbf\xb3\xff\x00\x5b\xfd\xb7\xbf\x78\xa3\xaf\x78\x1f\x2e\xbd\xf6\ \x63\xfd\xf5\xbf\xe2\x9e\xf5\xe2\xfc\xfa\xf7\x81\xf2\xeb\xdf\x66\ \x3f\xdf\x5b\xfe\x29\xef\xde\x2f\x5e\xf0\x3e\x5d\x7b\xec\xc7\xfb\ \xeb\x7f\xc5\x3d\xfb\xc5\xf9\xf5\xef\x03\xe5\xd7\x7f\x68\x3f\xa7\ \xfb\xef\xf6\xde\xfd\xe2\xf5\xef\x03\xe5\xd7\xbe\xd1\x7f\xa0\xff\ \x00\x7d\xfe\xc3\xdf\xbc\x5e\xbd\xe0\x7c\xba\xf7\xda\x2f\xf4\x1f\ \xef\xbf\xd8\x7b\xf7\x8b\xd7\xbc\x0f\x97\x5e\xfb\x30\x7e\x83\xfd\ \xf7\xfb\x6f\x7e\xf1\x7a\xf7\x81\xf2\xeb\xbf\xb2\xff\x00\x69\xff\ \x00\x78\x3f\xf1\x4f\x7e\xf1\x7a\xf7\x81\xf2\xeb\xdf\x67\xfe\xd3\ \xfe\xf1\xff\x00\x1a\xf7\xef\x17\xad\xf8\x3f\x2e\xbd\xf6\x7f\xed\ \x3f\xef\x1f\xf1\xaf\x7e\xf1\x7a\xf7\x83\xf2\xeb\xdf\x65\xfe\xd3\ \xfe\xf1\xff\x00\x1a\xf7\xef\x17\xaf\x78\x1f\x2e\xbd\xf6\x5f\xed\ \x3f\xef\x1f\xf1\xaf\x7e\xf1\x7a\xf7\x81\xf2\xeb\xbf\xb3\x23\xfb\ \x3f\xef\x1f\xf1\xaf\x7e\xf1\x47\x5e\xf0\x3e\x5d\x7b\xec\xcf\xf4\ \xff\x00\x7b\xff\x00\x8a\x7b\xd7\x88\x3d\x3a\xdf\x81\xf2\xeb\xdf\ \x66\x7f\xa7\xfb\xdf\xfc\x53\xdf\xbc\x41\xe9\xd7\xbc\x0f\xb3\xaf\ \x7d\x99\xfe\x9f\xef\x7f\xf1\x4f\x7e\xf1\x07\xa7\x5e\xf0\x3e\xce\ \xbd\xf6\x67\xfa\x7f\xbd\xff\x00\xc5\x3d\xfb\xc4\x1e\x9d\x7b\xc0\ \xfb\x3a\xef\xec\xcf\xf4\xff\x00\x7b\xff\x00\x8a\x7b\xf7\x88\x3d\ \x3a\xf7\x81\xd7\xbe\xcf\xfd\x7f\xf6\xde\xfd\xe2\x7c\xba\xf7\x81\ \xd7\xbe\xcf\xfd\x7f\xf6\xde\xfd\xe2\x7c\xba\xf7\x81\xd7\xbe\xcf\ \xfd\x7f\xf6\xde\xfd\xe2\xfc\xba\xf7\x81\xd7\x7f\x67\xfe\xbf\xfb\ \x6f\x7e\xf1\x3e\x5d\x7b\xc0\xf9\x75\xef\xb3\xff\x00\x83\x7f\xb6\ \xf7\xef\x13\xe5\xd6\xfc\x01\xe9\xd7\xbe\xcf\xfe\x0d\xfe\xdb\xdf\ \xbc\x4f\x97\x5e\xf0\x07\xa7\x5e\xfb\x3f\xf8\x37\xfb\x6f\x7e\xf1\ \x3e\x5d\x7b\xc0\x1e\x9d\x7b\xec\xff\x00\xe0\xdf\xed\xbd\xfb\xc5\ \xf9\x75\xef\x00\x7a\x75\xef\xb4\x1f\xd0\xff\x00\xb6\x3f\xf1\x5f\ \x7a\xf1\x3a\xf7\x80\x3d\x3a\xef\xed\x07\xfa\x93\xfe\xd8\xff\x00\ \xc5\x7d\xfb\xc4\xeb\xde\x00\xf4\xeb\xdf\x68\x3f\xd4\x9f\xf6\xc7\ \xfe\x2b\xef\xde\x27\x5e\xf0\x07\xa7\x5e\xfb\x41\xfe\xa4\xff\x00\ \xb6\x3e\xfd\xe2\x75\xef\x03\xe5\xd7\xbe\xd3\xfd\xa4\xff\x00\xb6\ \x3e\xfd\xe2\xf5\xbf\x03\xfa\x3d\x7b\xed\x3f\xda\x4f\xfc\x92\x7d\ \xfb\xc5\xeb\xde\x07\xf4\x7a\xf7\xda\x7f\xb4\xff\x00\xbc\x1f\x7e\ \xf1\x7a\xf7\x81\xfd\x1e\xbb\xfb\x3f\xf6\x9f\xf7\xaf\xf8\xaf\xbf\ \x78\xbd\x7b\xc0\xfe\x8f\x5e\xfb\x33\xfd\x3f\xdf\x7f\xb7\xf7\xef\ \x13\xaf\x78\x07\xd3\xae\xfe\xcc\xff\x00\x4f\xf7\xdf\xed\xfd\xfb\ \xc4\xeb\xde\x09\xf4\xeb\xdf\x67\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8b\ \xf2\xeb\xde\x01\xeb\xdf\x67\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8b\xf2\ \xeb\x7e\x01\xeb\xdf\x67\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8b\xf2\xeb\ \xde\x01\xeb\xdf\x67\xfe\x1f\xef\xbf\xdb\xfb\xf7\x8b\xf2\xeb\xde\ \x07\x5e\xfb\x3f\xf0\xff\x00\x7d\xfe\xdf\xdf\xbc\x5f\x97\x5e\xf0\ \x3a\xf7\xd9\xff\x00\x87\xfb\xef\xf6\xfe\xfd\xe2\xfc\xba\xf7\x81\ \xd7\xbe\xcf\xfc\x3f\xdf\x7f\xb7\xf7\xef\x17\xe5\xd7\xbc\x0e\xbd\ \xf6\x7f\xe1\xfe\xfb\xfd\xbf\xbf\x78\xbf\x2e\xbd\xe0\x75\xdf\xd9\ \x8f\xe8\x7f\xdb\xfb\xf7\x8a\x7a\xf7\x81\xd7\xbe\xcc\x7f\x43\xfe\ \xdc\x7b\xd7\x88\x7a\xf7\x81\xd7\xbe\xcc\x7f\x43\xfe\xdc\x7b\xf7\ \x88\x7a\xf7\x81\xd7\xbe\xcc\x7f\xa9\x3f\xed\xfd\xfb\xc4\x3d\x7b\ \xc0\xeb\xdf\x66\x3f\xd4\xff\x00\xbc\xfb\xf7\x88\x7a\xdf\x81\xf2\ \xeb\xdf\x66\x3f\xd4\xff\x00\xbc\xfb\xf7\x88\x7a\xf7\x81\xf2\xeb\ \xdf\x66\x3f\xd4\xff\x00\xbc\xfb\xf7\x88\x7a\xf7\x81\xf2\xeb\xdf\ \x66\x3f\xd4\xff\x00\xbc\xfb\xf7\x88\x7a\xf7\x81\xf2\xeb\xbf\xb4\ \x1f\xea\x7f\xde\x8f\xbf\x78\x87\xaf\x78\x3f\x2e\xbd\xf6\x83\xfd\ \x4f\xfb\xd7\xbf\x78\x87\xaf\x78\x1f\x2e\xbf\xff\xd6\xdd\xef\xed\ \x1b\xfa\x1f\xf7\xdf\xec\x3d\x8c\x7c\x5e\xa3\x2f\x03\xe5\xd7\xbe\ \xd0\xff\x00\x4f\xf7\xdf\xed\xbd\xfb\xc5\xeb\xde\x07\xcb\xaf\x7d\ \x99\xfe\x9f\xef\x7f\xf1\x4f\x7b\xf1\x7e\x7d\x7b\xc0\xf9\x75\xef\ \xb3\x3f\xef\xaf\xff\x00\x14\xf7\xaf\x17\xe7\xd7\xbc\x0f\x97\x5d\ \xfd\x9f\xfa\xff\x00\xed\xbd\xfb\xc5\x3f\x2e\xbd\xe0\x7c\xba\xf7\ \xd9\xff\x00\xaf\xfe\xdb\xdf\xbc\x53\xf2\xeb\xde\x07\xcb\xaf\x7d\ \x9f\xfa\xff\x00\xed\xbd\xfb\xc5\x3f\x2e\xbd\xe0\x0f\x4e\xbd\xf6\ \x7f\xeb\xff\x00\xb6\xf7\xef\x14\xfc\xba\xdf\x80\x3d\x3a\xef\xed\ \x07\xf4\xff\x00\x78\x3f\xf1\x5f\x7a\xf1\x0f\xaf\x5e\xf0\x07\xa7\ \x5e\xfb\x41\xfd\x3f\xde\x0f\xfc\x57\xdf\xbc\x43\xeb\xd7\xbc\x01\ \xe9\xd7\xbe\xd0\x7f\x4f\xf7\x83\xff\x00\x15\xf7\xef\x10\xfa\xf5\ \xef\x00\x7a\x75\xef\xb4\x1f\xd3\xfd\xe0\xfb\xf7\x88\x7d\x7a\xf7\ \x82\x3d\x3a\xf7\xda\x0f\xe9\xfe\xf0\x7d\xfb\xc4\x3e\xbd\x7b\xc1\ \x1e\x9d\x77\xf6\xbf\xe1\xfe\xf0\x7d\xfb\xc4\x3e\xbd\x7b\xc1\xf9\ \x75\xef\xb5\xff\x00\x0f\xf7\x83\xef\xde\x21\xf5\xeb\x7e\x0f\xcb\ \xaf\x7d\xaf\xf8\x7f\xbc\x1f\x7e\xf1\x0f\xaf\x5e\xf0\x7e\x5d\x7b\ \xed\x7f\xc3\xfd\xe0\xfb\xf7\x88\x7d\x7a\xf7\x83\xf2\xeb\xdf\x6b\ \xfe\x1f\xef\x07\xdf\xbc\x43\xeb\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf0\ \xff\x00\x78\x3e\xfd\xe2\x1f\x5e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\ \x87\xfb\xc1\xf7\xef\x10\xfa\xf5\xef\x07\xe5\xd7\xbe\xd7\xfc\x3f\ \xde\x0f\xbf\x78\x87\xd7\xaf\x78\x3f\x2e\xbd\xf6\xbf\xe1\xfe\xf0\ \x7d\xfb\xc4\x3e\xbd\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x0f\xf7\x83\ \xef\xde\x21\xf5\xeb\xde\x0f\xcb\xaf\x7d\xa7\xf8\x1f\xf6\xc7\xdf\ \xbc\x43\xeb\xd7\xbc\x13\xe9\xd7\x7f\x66\x7f\xa7\xfb\xef\xf6\xfe\ \xf5\xe2\xfc\xfa\xf7\x80\x7d\x3a\xf7\xd9\x9f\xe9\xfe\xfb\xfd\xbf\ \xbf\x78\xbf\x3e\xbd\xe0\x9f\x4e\xbd\xf6\x67\xfa\x7f\xbe\xff\x00\ \x6f\xef\xde\x2f\xcf\xad\xf8\x07\xd3\xaf\x7d\x99\xfe\x9f\xef\xbf\ \xdb\xfb\xf7\x8b\xf3\xeb\xde\x01\xf4\xeb\xbf\xb3\xff\x00\x7d\xfe\ \xf8\xfb\xdf\x8b\xf3\xeb\xde\x07\x5e\xfb\x3f\xf7\xd6\xff\x00\x8d\ \xfb\xf7\x8b\xf3\xeb\xde\x07\x5e\xfb\x31\xfd\x0f\xfb\x7f\x7a\xf1\ \x4f\xaf\x5e\xf0\x3a\xef\xec\xc7\xf4\x3f\xed\xc7\xbf\x78\xa7\xd7\ \xaf\x78\x1d\x7b\xec\xc7\xf4\x3f\xed\xfd\xfb\xc5\x3f\xc5\xd6\xfc\ \x0f\x97\x5e\xfb\x31\xfd\x0f\xfb\x7f\x7e\xf1\x0f\xf1\x75\xef\x03\ \xe5\xd7\x7f\x68\x3f\xd4\xff\x00\xbd\x7b\xd7\x89\xfd\x2e\xbd\xe0\ \xfc\xba\xf7\xda\x0f\xf5\x3f\xef\x5e\xfd\xe2\x7f\x4b\xaf\x78\x3f\ \x2e\xbd\xf6\x83\xfd\x4f\xfb\xd7\xbf\x78\x9f\xd2\xeb\xde\x0f\xcb\ \xaf\x7d\xa8\xfe\x9f\xef\x5e\xfd\xe2\x7f\x4b\xaf\x78\x3f\x2e\xbd\ \xf6\xbf\xe1\xfe\xf5\xef\xde\x27\xcf\xaf\x78\x3d\x7b\xed\x7f\xc3\ \xfd\xeb\xdf\xbc\x4f\x9f\x5e\xf0\x7a\xf7\xda\xff\x00\x87\xfb\xd7\ \xbf\x78\x9f\x3e\xbd\xe0\xf5\xef\xb5\xff\x00\x0f\xf7\xaf\x7e\xf1\ \x3e\x7d\x7b\xc1\xeb\xdf\x6b\xfe\x1f\xef\x5e\xfd\xe2\x7c\xfa\xf7\ \x83\xd7\xbe\xd7\xfc\x3f\xde\xbd\xfb\xc4\xf9\xf5\xef\x07\xaf\x7d\ \xaf\xf8\x7f\xbd\x7b\xf7\x89\xf3\xeb\xde\x0f\x5e\xfb\x5f\xf0\xff\ \x00\x7a\xf7\xef\x13\xe7\xd7\xbc\x1e\xbd\xf6\xbf\xe1\xfe\xf5\xef\ \xde\x27\xcf\xaf\x78\x3d\x7b\xed\x7f\xc3\xfd\xeb\xdf\xbc\x4f\x9f\ \x5e\xf0\x7a\xf7\xda\xff\x00\x87\xfb\xd7\xbf\x78\x9f\xd2\xeb\xde\ \x0f\x5d\xfd\xa7\xf8\x7f\xbd\x7b\xf7\x89\xfd\x2e\xb7\xe0\x1f\x4e\ \xbd\xf6\x7f\xe0\x3f\xdf\x7f\xb0\xf7\xef\x13\xe7\xd7\xbc\x03\xe9\ \xd7\x7f\x67\xfe\xb7\xfb\xef\xf6\x1e\xf5\xe2\xfc\xfa\xf7\x80\x7d\ \x3a\xf7\xd9\xff\x00\xad\xfe\xdb\xfe\x35\xef\xde\x2f\xcf\xad\xf8\ \x07\xaf\x7d\x98\xff\x00\x0f\xf6\xdf\xf1\xaf\x7e\xf1\x7e\x7d\x7b\ \xc0\x3d\x7b\xec\xc7\xfb\xef\xf9\x17\xbf\x78\xbf\x3e\xbd\xe0\x7c\ \xba\xf7\xd9\x8f\xf7\xd6\xff\x00\x8a\x7b\xdf\x8b\xf3\xeb\xde\x07\ \xcb\xae\xfe\xd1\x7f\xa0\xf7\xaf\x13\xe7\xd7\xbc\x0f\x97\x5e\xfb\ \x45\xff\x00\x52\x3f\xde\x7d\xfb\xc4\xf9\x9e\xbd\xe0\x7c\xba\xf7\ \xda\x2f\xfa\x91\xef\xde\x27\xcc\xf5\xbf\x03\xe5\xd7\xbe\xd1\x7f\ \xd4\x8f\x7e\xf1\x3e\x67\xaf\x78\x3f\x2e\xbb\xfb\x51\xfd\x07\xfb\ \xcf\xbf\x78\x9f\x3e\xbd\xe0\xfc\xba\xf7\xdb\x7f\x87\xfb\xdf\xbd\ \x6b\xf9\xf5\xef\x07\xe5\xd7\xbe\xdb\xfc\x3f\xde\xfd\xfb\x58\xf5\ \xeb\xde\x0f\xcb\xaf\x7d\xb7\xf8\x7f\xbd\xfb\xf6\xb1\xeb\xd7\xbc\ \x1f\x97\x5f\xff\xd7\xde\x83\xed\x7f\xc0\xff\x00\xb6\x3e\xc4\x5e\ \x27\xcf\xa0\x4f\x83\xf2\xeb\xdf\x6b\xfe\x07\xfd\xb1\xf7\xef\x13\ \xe7\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf0\x3f\xed\x8f\xbf\x78\x9f\x3e\ \xbd\xe0\xfc\xba\xf7\xda\xff\x00\x81\xff\x00\x6c\x7d\xfb\xc4\xf9\ \xf5\xef\x07\xe5\xd7\xbe\xd7\xfc\x0f\xfb\x63\xef\xde\x27\xcf\xaf\ \x78\x3f\x2e\xbd\xf6\xbf\xe0\x7f\xdb\x1f\x7e\xf1\x3e\x7d\x7b\xc1\ \xf9\x75\xef\xb5\xff\x00\x03\xfe\xd8\xfb\xf7\x89\xf3\xeb\xde\x0f\ \xcb\xaf\x7d\xaf\xf8\x1f\xf6\xc7\xdf\xbc\x4f\x9f\x5e\xf0\x7e\x5d\ \x7b\xed\x7f\xc0\xff\x00\xb6\x3e\xfd\xe2\x7c\xfa\xf7\x83\xf2\xeb\ \xdf\x6b\xfe\x07\xfd\xb1\xf7\xef\x13\xe7\xd7\xbc\x1f\x97\x5e\xfb\ \x5f\xf0\x3f\xed\x8f\xbf\x78\x9f\x3e\xbd\xe0\xfc\xba\xf7\xda\xff\ \x00\x81\xff\x00\x6c\x7d\xfb\xc4\xf9\xf5\xef\x07\xe5\xd7\xbe\xd7\ \xfc\x0f\xfb\x63\xef\xde\x27\xcf\xaf\x78\x3f\x2e\xbd\xf6\xbf\xe0\ \x7f\xdb\x1f\x7e\xf1\x3e\x7d\x7b\xc1\xf9\x75\xef\xb5\xff\x00\x03\ \xfe\xd8\xfb\xf7\x89\xf3\xeb\xde\x0f\xcb\xaf\x7d\xaf\xf8\x1f\xf6\ \xc7\xdf\xbc\x4f\x9f\x5e\xf0\x7e\x5d\x7b\xed\x7f\xc0\xff\x00\xb6\ \x3e\xfd\xe2\x7c\xfa\xf7\x83\xf2\xeb\xdf\x6b\xfe\x07\xfd\xb1\xf7\ \xef\x13\xe7\xd7\xbc\x1f\x97\x5e\xfb\x5f\xf0\x3f\xed\x8f\xbf\x78\ \x9f\x3e\xbd\xe0\xfc\xba\xf7\xda\xff\x00\x81\xff\x00\x6c\x7d\xfb\ \xc4\xf9\xf5\xef\x07\xe5\xd7\x7f\x6a\x3f\x20\xff\x00\xbe\xff\x00\ \x6f\xef\xde\x27\xcf\xaf\x78\x3f\x2e\xbb\xfb\x55\xff\x00\x52\x7d\ \xfb\xc4\xf9\xf5\xbf\x07\xe5\xd7\x7f\x6c\xbf\xea\x4f\xfb\x6f\xf8\ \xd7\xbd\x6b\xeb\xde\x08\xeb\xdf\x6c\x3f\xa7\xfb\xc7\xfc\x6b\xdf\ \xb5\xf5\xbf\x0b\xae\xfe\xd4\x7f\x4f\xf7\xaf\x7e\xf1\x07\x5e\xf0\ \xba\xf7\xda\x8f\xf5\x3f\xef\x5e\xf5\xe2\x0e\xbd\xe0\xf5\xef\xb5\ \x1f\xea\x7f\xde\xbd\xef\xc4\x1d\x7b\xc1\xeb\xdf\x6a\x3f\xd4\xff\ \x00\xbd\x7b\xf7\x88\x3a\xf7\x83\xd7\xbe\xd4\x7f\xa9\xff\x00\x7a\ \xf7\xef\x10\x75\xef\x07\xaf\x7d\xa8\xff\x00\x53\xfe\xf5\xef\x5e\ \x20\xeb\xde\x0f\x5e\xfb\x51\xfe\xa7\xfd\xeb\xde\xfc\x41\xd7\xbc\ \x1e\xbd\xf6\xa3\xfd\x4f\xfb\xd7\xbd\x78\x83\xaf\x78\x3d\x7b\xed\ \x47\xfa\x9f\xf7\xaf\x7e\xf1\x07\x5e\xf0\x7a\xf7\xda\x8f\xf5\x3f\ \xef\x5e\xfd\xe2\x0e\xbd\xe0\xf5\xef\xb5\x1f\xea\x7f\xde\xbd\xef\ \xc4\x1d\x7b\xc1\xeb\xdf\x6a\x3f\xd4\xff\x00\xbd\x7b\xd7\x88\x3a\ \xf7\x83\xd7\xbe\xd4\x7f\xa9\xff\x00\x7a\xf7\xbf\x10\x75\xef\x07\ \xaf\x7d\xa8\xff\x00\x53\xfe\xf5\xef\x5e\x20\xeb\xde\x0f\x5e\xfb\ \x51\xfe\xa7\xfd\xeb\xdf\xbc\x41\xd7\xbc\x1e\xbd\xf6\xa3\xfd\x4f\ \xfb\xd7\xbd\xf8\x83\xaf\x78\x3d\x7b\xed\x47\xfa\x9f\xf7\xaf\x7e\ \xf1\x07\x5e\xf0\x7a\xf7\xda\x8f\xf5\x3f\xef\x5e\xfd\xe2\x0e\xbd\ \xe0\xf5\xef\xb5\x1f\xea\x7f\xde\xbd\xeb\xc4\x1d\x7b\xc1\xeb\xdf\ \x6a\x3f\xd4\xff\x00\xbd\x7b\xdf\x88\x3a\xf7\x83\xd7\xbe\xd4\x7f\ \xa9\xff\x00\x7a\xf7\xef\x10\x75\xef\x07\xaf\x7d\xa8\xff\x00\x53\ \xfe\xf5\xef\xde\x20\xeb\xde\x0f\x5d\xfd\xa8\xff\x00\x53\xfe\xf5\ \xef\x5e\x20\xf5\xeb\xde\x0f\x5d\xfd\xb0\xff\x00\x50\x3d\xfb\xc4\ \xf9\xf5\xbf\x07\xe5\xd7\x7f\x6e\x3f\xd4\xff\x00\xbe\xff\x00\x6f\ \xef\xde\x27\x5b\xf0\xba\xf7\xdb\x8f\xf5\x3f\xef\xbf\xdb\xfb\xf7\ \x89\xd7\xbc\x21\xd7\x7f\x6e\x3f\xa0\xff\x00\x79\xf7\xaf\x13\xaf\ \x78\x43\xaf\x7d\xb0\xfe\x83\xfd\xb9\xf7\xef\x13\xad\xf8\x3d\x7b\ \xed\x87\xf4\x1f\xef\x3e\xfd\xe2\x75\xef\x07\xae\xfe\xdb\xfc\x07\ \xfb\xcf\xbf\x78\x9f\x2e\xbd\xe0\xfc\xba\xf7\xdb\x7f\x80\xff\x00\ \x79\xf7\xef\x13\xe5\xd7\xbc\x1f\x97\x5e\xfb\x6f\xf0\x1f\xef\x3e\ \xfd\xe2\x7c\xba\xf7\x83\xf2\xeb\xdf\x6d\xfe\x03\xfd\xe7\xdf\xbc\ \x4f\x97\x5e\xf0\x7e\x5d\x7b\xed\xbf\xc0\x7f\xbc\xfb\xf7\x89\xf2\ \xeb\xde\x0f\xcb\xaf\x7d\xb7\xf8\x0f\xf7\x9f\x7e\xf1\x3e\x5d\x7b\ \xc1\xf9\x75\xef\xb6\xff\x00\x01\xfe\xf3\xef\xde\x27\xcb\xaf\x78\ \x3f\x2e\xbd\xf6\xdf\xe0\x3f\xde\x7d\xfb\xc4\xf9\x75\xef\x07\xe5\ \xd7\xbe\xdb\xfc\x07\xfb\xcf\xbf\x78\x9f\x2e\xbd\xe0\xfc\xba\xf7\ \xdb\x7f\x80\xff\x00\x79\xf7\xef\x13\xe5\xd7\xbc\x1f\x97\x5e\xfb\ \x6f\xf0\x1f\xef\x3e\xfd\xe2\x7c\xba\xf7\x83\xf2\xeb\xff\xd0\xde\ \xff\x00\xed\xbf\xdf\x7f\xbe\x1e\xcd\xfc\x41\xe9\xd0\x73\xc2\x3e\ \x9d\x7b\xed\xbf\xdf\x7f\xbe\x1e\xfd\xe2\x0f\x4e\xbd\xe1\x1f\x4e\ \xbd\xf6\xff\x00\xe0\x0f\xbd\x78\x83\xaf\x78\x47\xd3\xae\xfe\xdf\ \xfc\x07\xfb\xcf\xbf\x78\x83\xaf\x78\x47\xd3\xaf\x7d\xbf\xf8\x0f\ \xf7\x9f\x7e\xf1\x07\x5e\xf0\x8f\xa7\x5e\xfb\x7f\xf0\x1f\xef\x3e\ \xfd\xe2\x0e\xbd\xe1\x1f\x4e\xbd\xf6\xff\x00\xe0\x3f\xdb\x9f\x7e\ \xf1\x3a\xdf\x85\xf2\xeb\xdf\x6f\xfe\x03\xfd\xb9\xf7\xef\x13\xaf\ \x78\x5f\x2e\xbd\xf6\xff\x00\xe0\x3f\xdb\x9f\x7e\xf1\x3a\xf7\x85\ \xf2\xeb\xbf\xb7\x5f\xe9\xfe\xfb\xfd\xbf\xbd\x78\x9d\x7b\xc2\xf9\ \x75\xef\xb7\x5f\xe9\xfe\xfb\xfd\xbf\xbf\x78\x9d\x7b\xc2\xf9\x75\ \xef\xb7\x5f\xe9\xfe\xfb\xfd\xbf\xbf\x78\x9d\x7b\xc2\xf9\x75\xef\ \xb7\x5f\xe9\xfe\xfb\xfd\xbf\xbf\x78\x9d\x7b\xc2\xf9\x75\xef\xb7\ \x5f\xe9\xfe\xf1\xff\x00\x1b\xf7\xef\x13\xaf\x78\x5f\x2e\xbd\xf6\ \xeb\xfe\xf8\x1f\x7e\xf1\x3e\x5d\x7b\xc2\xf9\x75\xef\xb7\x5f\xf7\ \xc0\xfb\xf7\x89\xf2\xeb\xde\x17\xcb\xaf\x7d\xba\xff\x00\xbe\x07\ \xdf\xbc\x4f\x97\x5e\xf0\xbe\x5d\x7b\xed\xd7\xfd\xf0\x3e\xfd\xe2\ \x7c\xba\xf7\x85\xf2\xeb\xdf\x6c\xbf\xef\xbf\xe4\x7e\xfd\xe2\x7c\ \xba\xdf\x85\xd7\x7f\x6c\xbf\xef\xbf\xe4\x7e\xfd\xe2\x7c\xba\xf7\ \x83\xd7\xbe\xd9\x7f\xdf\x7f\xc8\xfd\xfb\xc4\xf9\x75\xef\x07\xaf\ \x7d\xb2\xff\x00\xbe\xff\x00\x91\xfb\xf7\x89\xf2\xeb\xde\x0f\x5e\ \xfb\x65\xff\x00\x7d\xff\x00\x23\xf7\xef\x13\xe5\xd7\xbc\x1e\xbd\ \xf6\xbf\xe1\xfe\xf0\x7d\xfb\xc4\xf9\x75\xef\x07\xae\xfe\xd7\xfc\ \x0f\xfb\x63\xef\xde\x27\xcb\xaf\x78\x3d\x7b\xed\x7f\xc0\xff\x00\ \xb6\x3e\xfd\xe2\x7c\xba\xf7\x83\xd7\xbe\xd7\xfc\x0f\xfb\x63\xef\ \xde\x27\x5e\xf0\x7a\xf7\xda\xff\x00\x81\xff\x00\x6c\x7f\xe2\xbe\ \xfd\xe2\x9e\xbd\xe1\x1e\xbd\xf6\xdf\xe0\x7f\xdb\x13\xef\xde\x21\ \xeb\xde\x11\xeb\xbf\xb6\x3f\xd3\xfe\x4d\xf7\xef\x13\xaf\x78\x47\ \xaf\x7d\xb1\xfe\x9f\xf2\x6f\xbf\x78\x9d\x7b\xc2\x3d\x7b\xed\x8f\ \xf4\xff\x00\x93\x7d\xfb\xc4\xeb\xde\x11\xeb\xdf\x6e\x7f\xa7\xfc\ \x9b\xef\xde\x27\x5b\xf0\x8f\xa7\x5e\xfb\x73\xfd\x3f\xe4\xdf\x7e\ \xf1\x3a\xf7\x84\x7d\x3a\xf7\xdb\x9f\xe9\xff\x00\x26\xfb\xf7\x89\ \xd7\xbc\x23\xe9\xd7\x7f\x6f\xfe\xd3\xfe\xf1\xff\x00\x1a\xf7\xaf\ \x10\xf5\xef\x0b\xe5\xd7\xbe\xdc\x7f\xa9\x3f\xed\xbf\xe3\x5e\xfd\ \xe2\x1f\x5e\xbd\xe1\x7c\xba\xf7\xdb\x8f\xf5\x27\xfd\xb7\xfc\x6b\ \xdf\xbc\x43\xeb\xd7\xbc\x2f\x97\x5e\xfb\x71\xfe\xa4\xff\x00\xb6\ \xff\x00\x8d\x7b\xf7\x88\x7d\x7a\xf7\x85\xf2\xeb\xdf\x6e\x3f\xd4\ \x9f\xf6\xdf\xf1\xaf\x7e\xf1\x0f\xaf\x5e\xf0\xbe\x5d\x7b\xed\xc7\ \xfa\x93\xfe\xdb\xfe\x35\xef\xde\x21\xeb\xde\x17\x5e\xfb\x71\xfe\ \xa4\xff\x00\xb6\xff\x00\x8d\x7b\xf7\x88\x7a\xf7\x85\xd7\xbe\xdc\ \x7f\xa9\x3f\xed\xbf\xe3\x5e\xfd\xe2\x1e\xbd\xe1\x75\xef\xb7\x1f\ \xea\x4f\xfb\x6f\xf8\xd7\xbf\x78\x87\xaf\x78\x5d\x7b\xed\xc7\xfa\ \x93\xfe\xdb\xfe\x35\xef\xde\x21\xeb\xde\x17\x5d\xfd\xb8\xff\x00\ \x52\x7f\xdb\x7f\xc6\xbd\xfb\xc4\x3d\x6f\xc2\xeb\xdf\x6e\x3f\xd4\ \x9f\xf6\xdf\xf1\xaf\x7e\xf1\x0f\x5e\xf0\xba\xf7\xdb\x8f\xf5\x27\ \xfd\xb7\xfc\x6b\xdf\xbc\x43\xd7\xbc\x2e\xbd\xf6\xe3\xfd\x49\xff\ \x00\x6d\xff\x00\x1a\xf7\xef\x10\xf5\xef\x0b\xaf\x7d\xb0\xfe\x9f\ \xef\x43\xfd\xef\xdf\xbc\x43\xd7\xbc\x2e\xbb\xfb\x51\xfd\x3f\xde\ \xbd\xfb\xc4\x3d\x7b\xc2\xeb\xdf\x6a\x3f\xa7\xfb\xd7\xbf\x78\x87\ \xaf\x78\x5d\x7b\xed\x47\xf4\xff\x00\x7a\xf7\xef\x10\xf5\xef\x0b\ \xaf\x7d\xa8\xfe\x9f\xef\x5e\xfd\xe2\x1e\xbd\xe1\x75\xef\xb6\xff\ \x00\x0f\xf7\xaf\x7e\xf1\x0f\x5e\xf0\xba\xef\xed\x8f\xf8\xff\x00\ \xb7\x1e\xf5\xac\xf5\xef\x0b\xaf\x7d\xb1\xfe\x87\xfd\xb8\xf7\xef\ \x10\xf5\xef\x07\xaf\x7d\xb1\xfe\x87\xfd\xb8\xf7\xef\x10\xf5\xef\ \x07\xaf\x7d\xb9\xfe\x87\xfd\xe3\xdf\xb5\xf5\xbf\x08\xf5\xef\xb7\ \x3f\xd0\xff\x00\xbc\x7b\xf6\xbe\xbd\xe1\x1e\xbd\xf6\xe7\xfa\x1f\ \xf7\x8f\x7e\xd7\xd7\xbc\x23\xd7\x7f\x6e\x7f\xa5\xff\x00\xdb\x7f\ \xc4\x7b\xf6\xb3\xd7\xbc\x23\xd7\xbe\xdc\xff\x00\xa9\xff\x00\x79\ \xff\x00\x8d\xfb\xf6\xb3\xeb\xd7\xbc\x23\xd7\xbe\xdc\xff\x00\xa9\ \xff\x00\x79\xff\x00\x8d\xfb\xf6\xb3\xeb\xd7\xbc\x23\xd7\xff\xd1\ \xdf\x73\xc0\x7f\xc7\xfd\xb1\xf6\xaf\xc4\xe8\xb7\xc2\x1d\x7b\xc0\ \x7f\xc7\xfd\xb1\xf7\xef\x13\xaf\x78\x43\xaf\x78\x0f\xf8\xff\x00\ \xb6\x3e\xfd\xe2\x75\xef\x08\x75\xef\x01\xff\x00\x1f\xf6\xde\xfd\ \xe2\x75\xbf\x0c\x75\xef\x01\xff\x00\x1f\xf6\xde\xfd\xe2\x75\xef\ \x0c\x75\xef\x01\xff\x00\x1f\xf6\xde\xfd\xe2\x75\xef\x0c\x75\xef\ \x01\xff\x00\x1f\xf6\xde\xfd\xe2\x75\xef\x0c\x75\xef\x01\xff\x00\ \x1f\xf6\xde\xfd\xe2\x75\xef\x0c\x75\xef\x01\xff\x00\x1f\xf6\xde\ \xfd\xe2\x75\xef\x0c\x75\xdf\xdb\x9f\xf7\xd6\xff\x00\x8a\xfb\xf7\ \x88\x3a\xf7\x84\x3a\xf7\xdb\x9f\xf7\xd6\xff\x00\x8a\xfb\xd7\x88\ \x3a\xf7\x86\x3d\x3a\xef\xed\xcf\xf8\x7f\xbe\xff\x00\x63\xef\xde\ \x20\xeb\xde\x18\xf4\xeb\xdf\x6e\x7f\xc3\xfd\xf7\xfb\x1f\x7e\xf1\ \x07\x5e\xf0\xc7\xa7\x5e\xfb\x73\xfe\x1f\xef\xbf\xd8\xfb\xf7\x88\ \x3a\xf7\x86\x3d\x3a\xf7\xdb\x9f\xf0\xff\x00\x7d\xfe\xc7\xdf\xbc\ \x41\xd7\xbc\x31\xe9\xd7\xbe\xdc\xff\x00\x87\xfb\xef\xf6\x3e\xfd\ \xe2\x0e\xbd\xe1\x8f\x4e\xbd\xf6\xe7\xfc\x3f\xdf\x7f\xb1\xf7\xef\ \x10\x75\xef\x0c\x7a\x75\xef\xb7\x3f\xef\xad\xff\x00\x15\xf7\xef\ \x13\xaf\x78\x63\xd3\xaf\x78\x3f\xc3\xfd\xe4\x7b\xf7\x89\xd7\xbc\ \x31\xe9\xd7\xbc\x1f\xe1\xfe\xf2\x3d\xfb\xc4\xeb\xde\x18\xf4\xeb\ \xbf\xb7\xff\x00\x03\xfe\xdc\x7b\xf7\x89\xd6\xfc\x31\xe9\xd7\xbe\ \xdf\xfc\x0f\xfb\x71\xef\xde\x27\x5e\xf0\xbe\x5d\x7b\xed\xff\x00\ \xc0\xff\x00\xb7\x1e\xfd\xe2\x75\xef\x0b\xe5\xd7\xbe\xdf\xfc\x0f\ \xfb\x71\xef\xde\x27\x5e\xf0\xbe\x5d\x7b\xed\xff\x00\xc0\xff\x00\ \xb7\x1e\xfd\xe2\x75\xef\x0b\xe5\xd7\xbe\xdf\xfc\x0f\xfb\x71\xef\ \xde\x27\x5e\xf0\xbe\x5d\x7b\xed\xff\x00\xc0\xff\x00\xbc\x7b\xf7\ \x88\x7a\xf7\x84\x3d\x3a\xf7\xdb\xff\x00\x81\xff\x00\x78\xf7\xef\ \x10\xf5\xef\x08\x7a\x75\xef\xb7\xff\x00\x03\xfe\xf1\xef\xde\x21\ \xeb\xde\x10\xf4\xeb\xdf\x6f\xfe\x07\xfd\xe3\xdf\xbc\x43\xd6\xfc\ \x31\xd7\xbe\xdf\xfc\x0f\xfb\xc7\xbf\x78\x9d\x7b\xc3\xeb\xdf\x6f\ \xfe\x07\xfd\xe3\xdf\xbc\x4e\xbd\xe1\xf5\xef\xb7\xff\x00\x03\xfe\ \xf1\xef\xde\x27\x5e\xf0\xfa\xf7\xdb\xff\x00\x81\xff\x00\x78\xf7\ \xef\x13\xaf\x78\x7d\x7b\xed\xff\x00\xc0\xff\x00\xbc\x7b\xf7\x89\ \xd7\xbc\x3e\xbb\xfb\x7f\xf5\xff\x00\xdf\x7f\xb0\xf7\xef\x10\xfa\ \x75\xef\x0f\xaf\x7d\xbf\xfb\xef\xf7\xc3\xde\xbc\x43\xe9\xd7\xbc\ \x3e\xbb\xfb\x7f\xf7\xdf\xef\x87\xbf\x78\x87\xd3\xaf\x78\x7d\x7b\ \xed\xff\x00\xdf\x7f\xbe\x1e\xfd\xe2\x1f\x4e\xbd\xe1\xf5\xef\xb7\ \xff\x00\x7d\xfe\xf8\x7b\xf7\x88\x7d\x3a\xf7\x87\xd7\xbe\xdf\xfd\ \xf7\xfb\xe1\xef\xde\x21\xf4\xeb\xde\x1f\x5e\xfb\x7f\xf7\xdf\xef\ \x87\xbf\x78\x87\xd3\xaf\x78\x7d\x7b\xed\xff\x00\xdf\x7f\xbe\x1e\ \xfd\xe2\x1f\x4e\xbd\xe1\xf5\xef\xb7\xff\x00\x7d\xfe\xf8\x7b\xf7\ \x88\x7d\x3a\xf7\x87\xd7\x7e\x0f\xf0\x1f\xef\x3e\xfd\xac\xfc\xfa\ \xf7\x87\xd7\xbc\x1f\xe0\x3f\xde\x7d\xfb\x59\xf9\xf5\xef\x0f\xaf\ \x78\x3f\xc0\x7f\xbc\xfb\xf6\xb3\xd6\xfc\x3e\xbd\xf6\xff\x00\xe0\ \x3f\xdb\x9f\x7e\xd6\x7a\xf7\x87\xd7\xbe\xdf\xfc\x07\xfb\x73\xef\ \xda\xcf\x5e\xf0\xfa\xf7\xdb\xff\x00\x80\xff\x00\x6e\x7d\xfb\x59\ \xeb\xde\x1f\x5e\xfb\x7f\xf0\x1f\xed\xcf\xbf\x6b\x3d\x7b\xc3\xeb\ \xdf\x6f\xfe\x03\xfd\xb9\xf7\xed\x67\xaf\x78\x7d\x7b\xed\xff\x00\ \xc0\x7f\xb7\x3e\xfd\xac\xf5\xef\x0f\xaf\x7d\xb8\xfe\x83\xfd\xb9\ \xf7\xed\x67\xaf\x78\x63\xd3\xaf\x7d\xb8\xfe\x83\xfd\xb9\xf7\xed\ \x67\xaf\x78\x63\xd3\xaf\x7d\xb8\xfe\x83\xfd\xb9\xf7\xed\x67\xaf\ \x78\x63\xd3\xaf\x7d\xb8\xfe\x83\xfd\xb9\xf7\xed\x67\xaf\x78\x63\ \xd3\xaf\x7d\xb8\xfe\x83\xfd\xb9\xf7\xed\x67\xaf\x78\x63\xd3\xae\ \xfe\xdf\xfc\x07\xfb\x73\xef\xda\xcf\x5b\xf0\xbe\x5d\x7b\xed\xff\ \x00\xc0\x7f\xb7\x3e\xfd\xac\xf5\xef\x0b\xe5\xd7\xbe\xdf\xfc\x07\ \xfb\x73\xef\xda\xcf\x5e\xf0\xbe\x5d\x7b\xed\xc7\xe4\x7f\xbe\xff\ \x00\x78\xf7\xad\x67\xaf\x78\x5f\x2e\xbd\xf6\xe3\xfa\x7f\xbe\xff\ \x00\x6f\xef\xda\xdb\xaf\x78\x5f\x2e\xbb\xfb\x71\xfe\x3f\xef\xbf\ \xd8\xfb\xf6\xb6\xeb\xde\x19\xf4\x3d\x7f\xff\xd2\xdf\xcf\xc4\x3f\ \xc7\xfd\xbf\xfc\x6b\xdd\xf5\x9e\x9b\xd1\xd7\xbc\x43\xfc\x7f\xdb\ \xff\x00\xc6\xbd\xfb\x59\xeb\xda\x3a\xf7\x88\x7f\x8f\xfb\x7f\xf8\ \xd7\xbf\x6b\x3d\x7b\x47\x5e\xf1\x0f\xf1\xff\x00\x6f\xff\x00\x1a\ \xf7\xed\x67\xaf\x68\xeb\xde\x21\xfe\x3f\xed\xff\x00\xe3\x5e\xfd\ \xac\xf5\xed\x1d\x7b\xc4\x3f\xdf\x7f\xc8\xbd\xfb\x59\xeb\xda\x3a\ \xef\xc6\x3f\xdf\x7f\xc8\xbd\xfb\x51\xeb\x7a\x3a\xf7\x8c\x7f\xbe\ \xff\x00\x91\x7b\xf6\xa3\xd7\xb4\x75\xef\x18\xff\x00\x7d\xff\x00\ \x22\xf7\xed\x47\xaf\x68\xeb\xde\x35\xff\x00\x1f\xf7\x8f\x7a\xd6\ \x7a\xf6\x81\xd7\xbc\x6b\xfe\x3f\xef\x1e\xfd\xac\xf5\xed\x03\xaf\ \x78\xd7\xfc\x7f\xde\x3d\xfb\x59\xeb\xda\x07\x5e\xf1\xaf\xf8\xff\ \x00\xbc\x7b\xf6\xb3\xd7\xb4\x0e\xbd\xe3\x5f\xf1\xff\x00\x78\xf7\ \xed\x67\xaf\x68\x1d\x7b\xc6\xbf\xe3\xfe\xf1\xef\xda\xcf\x5e\xd0\ \x3a\xf7\x8d\x7f\xc7\xfd\xe3\xdf\xb5\x9e\xbd\xa0\x75\xef\x1a\xff\ \x00\x8f\xfb\xc7\xbf\x6b\x3d\x7b\x40\xeb\xde\x35\xff\x00\x1f\xf7\ \x8f\x7e\xd6\x7a\xf6\x81\xd7\xbc\x6b\xfe\x3f\xef\x1e\xfd\xac\xf5\ \xed\x03\xaf\x78\xd7\xdf\xb5\x1e\xbd\xa0\x75\xdf\x8d\x7f\xa7\xfb\ \xdf\xfc\x57\xdf\xb5\x1e\xbd\xa0\x75\xef\x1a\xff\x00\x4f\xf7\xbf\ \xf8\xaf\xbf\x6a\x3d\x7b\x40\xeb\xde\x35\xfe\x9f\xef\x7f\xf1\x5f\ \x7e\xd4\x7a\xf6\x81\xd7\xbc\x6b\xfd\x3f\xde\xff\x00\xe2\xbe\xfd\ \xa8\xf5\xed\x03\xaf\x78\xd7\xfa\x7f\xbd\xff\x00\xc5\x7d\xfb\x51\ \xeb\xda\x07\x5e\xf1\xaf\xf4\xff\x00\x7b\xff\x00\x8a\xfb\xf6\xa3\ \xd7\xb4\x0e\xbd\xe3\x5f\xe9\xfe\xf7\xff\x00\x15\xf7\xed\x47\xaf\ \x68\x1d\x7b\xc6\xbf\xd3\xfd\xef\xfe\x2b\xef\xda\x8f\x5e\xd0\x3a\ \xf7\x8d\x7f\xa7\xfb\xdf\xfc\x57\xdf\xb5\x1e\xbd\xa0\x75\xef\x1a\ \xff\x00\x4f\xf7\xbf\xf8\xaf\xbf\x6a\x3d\x7b\x40\xeb\xde\x35\xfe\ \x9f\xef\x7f\xf1\x5f\x7e\xd4\x7a\xf6\x81\xd7\xbc\x6b\xfd\x3f\xde\ \xff\x00\xe2\xbe\xfd\xa8\xf5\xed\x03\xaf\x68\x5f\xf7\xd7\xff\x00\ \x8a\xfb\xf6\xa3\xd6\xf4\xfc\xfa\xf6\x85\xff\x00\x7d\x7f\xf8\xaf\ \xbf\x6a\x3d\x7b\x4f\xcf\xaf\x68\x5f\xf7\xd7\xff\x00\x8a\xfb\xf6\ \xa3\xd7\xb4\xfc\xfa\xf6\x85\xfe\x9f\xef\x27\xdf\xb5\x1e\xbd\xa4\ \x75\xed\x0b\xfd\x3f\xde\x4f\xbf\x6a\x3d\x7b\x48\xeb\xda\x17\xfa\ \x7f\xbc\x9f\x7e\xd4\x7a\xf6\x91\xd7\xb4\x2f\xf4\xff\x00\x79\x3e\ \xfd\xa8\xf5\xed\x23\xaf\x68\x5f\xe9\xfe\xf2\x7d\xfb\x51\xeb\xda\ \x47\x5e\xd0\xbf\xd3\xfd\xe4\xfb\xf6\xa3\xd7\xb4\x8e\xbd\xa1\x7f\ \xa7\xfb\xc9\xf7\xed\x47\xaf\x69\x1d\x7b\x42\xff\x00\x4f\xf7\x93\ \xef\xda\x8f\x5e\xd2\x3a\xf6\x85\xfe\x9f\xef\x27\xdf\xb5\x1e\xbd\ \xa4\x75\xed\x0b\xfd\x3f\xde\x4f\xbf\x6a\x3d\x7b\x48\xeb\xda\x17\ \xfa\x7f\xbc\x9f\x7e\xd4\x7a\xf6\x91\xd7\x7a\x57\xfa\x0f\xf6\xc3\ \xde\xaa\x7d\x7a\xf6\x91\xd7\xb4\xaf\xf4\x1f\xed\x87\xbf\x54\xfa\ \xf5\xed\x23\xaf\x69\x5f\xe8\x3f\xdb\x0f\x7e\xa9\xf5\xeb\xda\x47\ \x5e\xd2\xbf\xd0\x7f\xb6\x1e\xfd\x53\xeb\xd7\xb4\x8e\xbd\xa5\x7f\ \xa0\xff\x00\x6c\x3d\xfa\xa7\xd7\xaf\x69\x1d\x7b\x4a\xff\x00\x41\ \xfe\xd8\x7b\xf5\x4f\xaf\x5e\xd2\x3a\xf6\x95\xfe\x83\xfd\xb0\xf7\ \xea\x9f\x5e\xbd\xa4\x75\xed\x2b\xfd\x07\xfb\x61\xef\xd5\x3e\xbd\ \x7b\x48\xeb\xda\x57\xfa\x0f\xf6\xc3\xdf\xaa\x7d\x7a\xf6\x91\xd7\ \xb4\xaf\xf4\x1f\xed\x87\xbf\x54\xfa\xf5\xed\x23\xaf\x69\x5f\xe8\ \x3f\xdb\x0f\x7e\xa9\xf5\xeb\xda\x47\x5e\xd2\xbf\xd0\x7f\xb6\x1e\ \xfd\x53\xeb\xd7\xb4\x8e\xbd\xa5\x7f\xa0\xff\x00\x6c\x3d\xfa\xa7\ \xd7\xaf\x69\x1d\x7b\x4a\xff\x00\x41\xfe\xd8\x7b\xf5\x4f\xaf\x5e\ \xd2\x3a\xf6\x95\xfe\x83\xfd\xb0\xf7\xea\x9f\x5e\xbd\xa4\x75\xed\ \x2b\xfd\x07\xfb\x6f\x7e\xa9\xf5\xeb\x7a\x47\x5d\xe9\x5f\xe8\x3f\ \xdb\x7b\xf5\x4f\xaf\x5e\xa0\xf4\xeb\xda\x57\xfa\x0f\xf6\xde\xfd\ \x53\xeb\xd7\xa8\x3d\x3a\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\ \xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\ \xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\ \xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\ \x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\ \xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\ \xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\ \xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\ \x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\ \xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\ \xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\ \x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\ \xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\ \x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\ \xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\ \xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\ \xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\ \xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd4\xdf\xe3\xdf\xba\ \xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\ \xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\ \xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\ \x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\ \xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\ \xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\ \x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\ \xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\ \x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\ \xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\ \xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\ \xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\ \xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\ \xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\ \xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\ \xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\ \x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd9\ \ \x00\x01\x55\x02\ \x00\ \x08\x3f\xc8\x78\x9c\xbc\xbd\xd9\xb2\x25\xc9\x75\xa6\x77\x8f\xa7\ \x38\xc2\x8d\x9a\x52\xd5\x81\xcf\x43\x37\x1a\x6d\x20\xc8\x96\x60\ \x46\x01\x34\x10\xea\x36\x5d\xd1\x12\x95\xa7\x50\xc7\x54\x95\x89\ \xce\xcc\x02\x88\xb7\xd7\xff\x2d\x8f\xd8\xb9\x63\xa8\x26\x14\xdb\ \x01\xd0\x48\x26\x32\xcf\x10\xdb\xc3\x7d\xf9\x1a\xfe\xe1\xa7\xff\ \xe5\xdf\xbe\xfb\xf6\xe9\x8f\x2f\x1f\x3e\xbe\xbe\x7f\xf7\x9f\x7f\ \xec\x9f\xdd\x8f\xff\xcb\xcf\x7e\xf4\xd3\xff\xe5\xcb\x2f\x7f\xf4\ \xa4\xff\xfc\xf6\xc3\xcb\xcb\x97\xbf\x7b\xf3\xf1\xe5\xed\x53\x70\ \xff\x16\xdc\xd3\xef\x5f\xde\x7d\xfa\xf6\xe5\xe9\xcd\xdb\x37\xbf\ \x7b\xff\xfe\xe3\xa7\xa7\xaf\x3f\xbc\x7f\xf7\xe9\xcd\xb7\x4f\x5f\ \xbf\xf9\xea\xe5\xe9\xed\xcb\xa7\x97\xaf\x3e\xbd\xff\xf0\x6c\xdf\ \xfb\x8b\x0f\x2f\x6f\x3e\xe9\x1b\x7f\xf7\xe7\xa7\xdf\xbc\x79\x7d\ \xf7\xf2\xe1\xe9\x9f\x5e\x5f\xde\x7d\xf3\xe6\xc3\xa7\xe7\x1f\xfd\ \xe8\x27\x7f\xa5\xff\xfc\x48\xbf\xfa\x97\xff\xd7\x3f\xff\xfa\x37\ \xbf\xfd\xf9\xaf\x7e\xfb\x1f\x9f\x7e\xf3\x8f\x3f\xff\x87\xa7\xbf\ \xff\xc7\xff\xfa\xeb\xdf\xfc\xe3\xd3\x3f\xfc\xfa\xbf\xff\xea\x9f\ \x7e\xfd\xf3\x7f\xf8\xe5\xaf\xfe\x8f\x2f\x9e\x7e\xf1\xeb\x7f\xfe\ \x7f\xec\x0f\xbf\xfc\xd5\xbf\xfc\xf6\xe7\xff\xf4\x4f\xfa\xf3\xd3\ \xaf\x7f\xf3\xf4\x7f\xff\x8b\xfe\xf0\xcc\x0f\xf9\xfb\x3f\x3f\xbd\ \x7d\xff\xa7\x77\xdf\xbe\x7f\xf3\xf6\xf5\xdd\xef\xbf\x78\xfa\xea\ \xfd\x1f\xfe\x6c\x7f\x78\x7d\xf7\x51\x1f\xf8\x5b\xfd\xf9\xe9\xfd\ \x87\xa7\xef\x3f\xf2\x87\x4f\xdf\xbc\x3c\x7d\x7c\xff\xf5\xa7\x3f\ \xbd\xf9\xf0\xf2\xf4\xe7\xf7\xdf\x3f\xbd\xf9\xbd\x16\xee\xe9\xd3\ \x7b\xfd\xcb\xeb\xc7\xa7\x6f\x5f\xbf\x7a\x79\xf7\xf1\x85\x65\xf9\ \xe5\xd7\xf6\xef\x6f\xdf\x3f\xbd\x7b\xff\xe9\xfc\xcb\xbe\x58\xff\ \x75\xfd\xfd\xb7\xdf\xf9\x85\x7e\x00\xcf\x31\x7e\xf1\xcb\xe6\xd7\ \xea\xa1\x6d\xd5\xcf\xfe\xf3\xcb\x77\x9f\x5e\xbe\xd5\xea\xdb\x8f\ \x7f\xfa\x39\xbf\xf4\x3b\xbd\xc7\xc3\xd7\xff\x57\xfd\xdc\x5f\xff\ \xe1\xe5\xdd\xd3\xbf\xbc\xff\xfe\x83\xde\xe7\x2f\xde\x7f\xf7\x87\ \xef\x3f\xe9\xc5\xfd\xb7\x57\xb6\x87\x7e\xc2\xef\x3e\xbc\xf9\xf0\ \x67\xfd\xa2\x5f\xe8\x29\x3e\xbc\xfe\xfe\x9b\x4f\x4f\xff\xe1\x17\ \x7f\xa7\xad\xe1\xdc\x17\xcb\x6f\xf9\xc5\xfb\x0f\x7f\x78\xff\xe1\ \xcd\x27\x7d\xfd\x17\x4f\x7a\xe6\x27\xfb\xb2\x8f\x4f\x1f\x5e\x3e\ \xbe\x7c\xf8\xe3\xcb\x5b\x2d\xc2\x6f\xbf\x79\xfd\xf0\xf6\xe9\x0f\ \xda\x08\x7f\xb6\x8f\xb3\x7c\x05\x6b\xf7\x87\x0f\xef\xff\xf0\xc2\ \xdf\xbf\xff\x9a\x4f\xf7\xfa\x81\xef\xfb\x83\x36\xd5\xeb\x1f\x5f\ \x9e\xb4\x1c\xda\xa7\xbc\x9d\xdf\xbc\xbc\x7d\xfd\xf8\xe9\xc3\xeb\ \xef\xbe\xe7\xf7\x3c\xbd\x79\xf7\xd6\xd6\xe3\xf5\x9d\x96\xc3\x9e\ \x9c\xbf\xf9\xdd\xeb\x3b\x3d\xec\xd3\xd7\xef\x3f\x7c\xf7\xf1\x8b\ \xa7\x3f\xbd\x7e\xfa\x86\x75\xe3\xff\xbf\xff\xfe\xd3\xd3\x77\xef\ \xdf\xbe\x7e\xfd\xfa\xd5\x78\xd0\x1f\x8d\x5f\xfe\xf2\xe1\xbb\xd7\ \x4f\x6c\x59\x3d\xc6\x1f\x5f\xdf\xea\x0f\x9f\xbe\x79\xf3\xc9\x96\ \xf9\xeb\xf7\xdf\x7e\xfb\xfe\x4f\xbc\xeb\xaf\xde\xbf\x7b\xfb\xca\ \x77\x8d\x27\xfe\xee\xe5\xd3\x7f\xb4\x95\xff\xdf\x76\x4f\xf5\xbf\ \x7e\xe4\x43\x2c\xcf\xf3\xd5\xfb\xb7\xfa\xd2\xef\x75\x60\x3e\xbc\ \x7c\xd2\x61\xb0\x9f\xa9\x23\xf4\xc7\x97\xcf\x2b\xc0\x3b\xd7\x2b\ \xfa\x62\xbc\x96\x65\x47\xe8\x3b\xf4\x53\xee\x7f\xe7\xbb\xb7\xbb\ \x07\xd2\x2f\xfd\xea\xdb\x37\xaf\xdf\xbd\x7c\x78\xfe\xa1\x07\xd1\ \x2f\xbc\x5b\x8d\xf5\x41\xf4\x29\xdf\x7e\xff\xd5\xcb\x5f\xe7\x59\ \x9e\x96\x0f\xf9\xf6\xfd\x57\xdf\xb3\xd9\x6c\xa1\xc7\x8f\xd3\xb7\ \xfd\x44\x6f\xe2\xbd\xfe\xf9\xc3\xd3\x77\x8a\x11\x1f\x5e\xdf\x7c\ \xfb\xf1\xf3\xa2\xdb\xab\xb2\xef\xbd\xfb\x14\xeb\x67\xfb\xad\xfe\ \xfe\xdd\x9b\xef\x5e\x78\x94\xc3\x8e\xd3\x4f\xfb\xb3\x1d\x9d\xdf\ \xbd\xb0\x21\xde\x72\xb4\x5e\xde\xbd\x7d\xff\x41\x9b\x43\xbf\x51\ \xbf\xe1\xbb\xf7\x9f\x6c\x97\xe9\x83\x7f\xfa\x38\x1e\xe7\xad\x7e\ \xbf\x36\x26\xa1\xec\xbb\xf1\x51\x6f\x47\x79\xdd\x2c\x6c\x41\x76\ \x8b\xbe\xf3\x95\x3d\xf4\x81\x6d\xf2\x6e\x6c\x98\x8f\x1f\x97\xa7\ \xfb\xed\xe6\x5b\x5f\xef\x3e\x90\x22\x20\x1f\xe7\xf3\xea\x7e\xf3\ \xfe\x5b\xfd\xd6\xb1\x80\x5a\xcf\xf1\x21\xf5\x94\x4f\x3f\x7e\xa3\ \x97\xf5\xf1\xc7\xfc\x83\xf6\xe4\xbb\x3f\x3f\xbd\xfc\xdb\x1f\x74\ \x02\x3e\xf2\xf4\xaf\xdf\xfd\xe1\xdb\x57\x96\xe7\xcd\x87\x0f\x6f\ \xde\x7d\x7a\x7d\xf9\x48\x60\xf8\xea\xdb\xef\x47\x80\xd2\x4f\xb0\ \x8f\xfe\xed\xab\x36\xb1\x7d\xf4\x2f\xec\xb7\x2e\xdf\xf6\xa3\xbb\ \xef\x63\xed\xf4\x8a\xbe\xfa\x46\xff\xf5\xcd\xef\x5e\xbf\x7d\xd5\ \x81\xe3\x51\xbe\x7e\xfd\xf4\x8e\x5f\xa6\x4d\xf2\xf4\xc6\x0e\xe8\ \xeb\x57\xdf\x7f\xfb\x46\x0b\xf7\xbd\x96\x58\x6b\xc8\x07\xbb\xbd\ \x62\x8e\xf2\x2f\xdf\xe9\x77\x3e\xbd\xfc\x51\x2f\xf8\xe9\xe3\x37\ \x1c\x77\x7e\xe5\xf1\xbd\xe8\x07\x6e\x3e\xa7\xde\xcf\xb7\xaf\x6f\ \x7e\xf7\xed\xcb\xf8\x5d\xfa\xa0\x6f\x5f\x3f\xe8\x98\x6b\xc3\xbd\ \xbe\x5b\xfe\xc8\x87\xd3\xf2\x71\xbd\x7c\x31\xde\x00\x7f\x78\xf9\ \xb7\x17\x7d\x20\x6d\xe5\x2f\x96\x1f\xfa\xf1\xe5\x7f\x7c\xaf\x2f\ \xd2\x3f\x3e\xbd\x7d\xf3\xdd\x9b\xdf\xbf\xe8\xb5\xfe\x87\x7f\x67\ \x5d\xf4\x66\xbe\xfa\xfe\x83\x05\x41\x3b\xa4\xdf\xff\xee\xe3\xa7\ \xd7\x4f\x0a\x75\x4f\xbf\x7f\xff\xfe\xad\xad\x36\xd1\x4a\x27\xe0\ \xe3\x7f\xfa\xd1\xd3\xb7\xef\x3f\xda\x92\x7d\x6f\xb1\xf9\xcd\xa7\ \x37\x5f\x2c\x9b\x49\xeb\xf5\xf1\x3f\xf1\xe7\xdf\x71\x0d\xb0\x72\ \xaf\xfa\xe4\x1f\x3e\x7c\xff\x07\x3e\xf4\xdf\xe9\x35\xff\x49\x4b\ \xa3\xa7\x7c\xc3\x66\xfc\x91\xad\xb1\x85\x2b\xdb\x0f\xef\x3f\x58\ \x98\x63\x1d\xec\x15\x28\x46\x7d\xf3\x62\x67\x42\x47\xc7\x56\xeb\ \x0d\xab\xc0\x11\xf8\xea\xd3\xdd\x97\xfd\x88\xdf\xa8\x55\xfc\x74\ \xf7\x31\x9f\xde\xbd\xfc\xfe\xdb\x57\x5d\xce\x5f\xd9\x46\xb7\xa3\ \xf5\xa7\xd7\x8f\x2f\x7f\xa7\x57\xf6\x6a\x57\xd4\xeb\xf8\xbd\x7f\ \xd2\x01\x61\x47\xbf\xff\xfa\x47\xf6\xaa\x08\x9b\x16\x6b\xef\xf6\ \xee\x17\xf6\x42\x9f\x5e\xbf\xd6\x35\xff\xc7\x57\x8e\xd1\x88\xc6\ \x4f\xda\x03\x1f\x5f\x97\xfd\x62\xcb\xf6\xd5\x37\xcb\x9a\x3f\xff\ \xe8\xcb\x2f\x95\x36\x28\x78\xbf\xfb\xea\x8f\xff\xfa\x51\x4f\xa7\ \xbf\xd4\x5f\x7c\xf5\xe6\xe3\x57\x6f\x14\xfa\x3e\xfd\xf9\x0f\x2f\ \xff\xfa\xfa\xf6\x3f\xff\x78\x7c\xc5\x97\xcb\xdf\x7f\xa9\x9d\xa4\ \x1f\xf9\xf5\xeb\xcb\x87\x1f\xff\xec\xa7\xba\xe3\x7e\xff\xf2\x5b\ \x7d\xe5\xcf\xfe\xfe\xd7\xbf\xfe\x97\xdf\xfe\xf4\x27\x9f\xff\x42\ \x27\xf5\xa7\x5f\x2b\x9d\xd0\x4b\xb3\xff\xfe\x7f\xfe\xfc\xe7\xbf\ \xf9\xe9\x4f\xee\xff\x86\xaf\xd0\x85\xa1\xd3\xf5\xb3\xe0\x7e\xfa\ \x93\xe5\x8f\xfc\xed\x9f\x5e\xdf\x7e\xfa\xc6\xfe\x72\xfc\x89\xbf\ \xb3\x9f\xfc\xcf\x6f\x3e\xbc\xf9\xee\xe3\xcf\x2c\x0a\xfc\xf4\xbb\ \x37\xff\xf6\xdf\x5f\xde\xfc\xbf\xbf\x78\xff\xfd\xbb\x4f\x3f\xf3\ \xae\xff\xf4\x27\x9b\xbf\x59\x1e\xe6\xf3\xb7\xac\x8f\xb3\xff\x21\ \xbf\x78\xf3\x69\x7c\x87\xb3\x9f\x70\xfb\xaf\xb7\xa7\xbd\xfb\x11\ \xf6\x23\x7f\xf5\xfd\x77\xf6\x70\xb7\xff\x72\xfb\x97\xf5\xa7\xfe\ \xeb\xcf\x96\x9b\x7a\xfb\x90\x71\xf7\x88\xeb\x17\x8d\x55\xfb\x46\ \x61\x83\x30\xf3\xb3\xf8\x9c\x5d\xe9\x21\x3a\xdf\x5b\x2b\xce\x97\ \xf6\xf2\xa5\xf3\xeb\xe2\xde\xbe\x6c\xfd\xee\x3f\xf1\xf3\x6e\x6f\ \xe5\xe3\xcf\x6e\x49\xc2\xe7\xc7\xb0\xff\x66\x3b\xfd\xdd\x9b\x6f\ \x7f\xa5\x9b\xed\xe3\xcf\x36\xa9\x84\x7b\xf2\xfa\xdf\xf4\x1c\x43\ \x0d\x31\xf4\xd4\x53\xcc\x55\x4b\xaa\xdf\x1b\x9f\xbe\xf4\x4f\x5f\ \x06\x7d\x81\x7f\x8e\xae\x16\xaf\x07\x72\xd1\xb5\x50\x72\xd5\x3f\ \x87\x9f\xfe\xe4\x07\x7f\xee\x4f\xbf\x7d\x79\xf3\xf5\x7f\x7b\xf3\ \xed\xf7\xfb\x5f\x17\x9f\x5b\x6c\xbe\x3b\x57\x62\x8b\x49\x7f\x48\ \xfc\xa4\xa7\xf6\xdc\x4b\x0e\xb9\x34\xef\x7c\x6b\xa1\xc7\xcc\xe7\ \xde\x7c\x67\x78\x2e\xfa\x7b\x9f\x5c\x49\xbd\xf6\x9c\x63\x18\x4b\ \x73\xf7\x9b\x7e\xfa\x93\x7f\xbd\xba\x04\xe1\x29\x3f\x87\x14\x93\ \x3e\x62\x0b\xde\xb9\x1c\x13\x4f\x96\x96\x25\x88\x5a\xa1\x94\x6b\ \x74\x3c\x78\x08\xa1\xa4\xc2\x12\xc4\x2b\x4b\xa0\xb4\x3d\xf8\x52\ \xa2\x0b\x59\x7f\xd0\x07\x71\x7c\x10\xfd\x75\x88\x2d\xe9\xc5\xd7\ \x1e\x5c\xed\x3d\x94\xc3\x12\x94\xe7\xae\x17\xd0\xa2\x77\x39\xd4\ \xe6\x7c\xf6\xb3\x96\xc0\xf6\xc0\xd3\x97\xfd\x39\x54\xde\xaf\x0f\ \x5e\x4f\xa1\x47\x09\x77\x6b\x90\xf5\xf2\x62\x6f\x7a\x04\xfd\x93\ \x96\xbf\x14\xc7\x1a\xa4\x6b\x6b\xd0\x73\x2c\xbd\xba\x9c\x73\x6d\ \x21\x7a\xdb\xe7\x7a\xc7\x7a\xff\x29\x79\x2d\x4d\x8d\xb1\xa7\xda\ \x0e\x6b\xd0\x9e\x43\x6e\xa5\xa6\x9a\xb4\x48\x3e\x06\xd7\x4e\xd7\ \x40\xf1\x63\x77\x36\x6e\x2b\xf3\x43\x47\x74\x1f\x45\x7e\xf0\x88\ \xa6\xaa\xe5\xa9\x5d\x8f\x1d\x9d\x36\x43\x7c\xf9\xdf\x9d\xfb\x6b\ \x1f\xd1\xa2\xb5\x89\xb6\x2c\xbd\xc7\xe6\xb4\x43\x5c\xb9\x3b\xa2\ \x95\xfd\xe9\x6b\x8a\xb1\x95\xee\x7a\x2c\xb9\xe4\x07\xf6\xa7\x6f\ \xb1\xe6\x5e\x6b\xab\xfc\x2e\x3b\x68\x2c\xbc\x8e\x6b\xd6\xa2\xeb\ \x9f\x92\x7e\x49\x3d\xbc\x1b\xde\x6a\xc9\x59\x31\xa4\x87\x16\x73\ \xef\x7d\xe6\x11\x6d\x5a\x82\x10\xb4\xe2\xde\xd5\xe4\x43\xf3\xd9\ \xa2\x54\x58\x96\xa0\xeb\xff\x3f\x57\xfd\x5e\xaf\x33\xc2\x43\x04\ \x45\x93\xab\xfb\x53\xbf\xc9\x65\xed\x30\x17\x62\x0a\xbd\x8d\xc5\ \xf6\x4f\x55\x61\x52\xe7\x3f\x57\x3d\x80\x3e\xa2\x36\x2b\x0f\xb0\ \xf9\xce\xfc\x4c\x90\x6a\xda\xc3\xda\x9b\xfa\x92\x7e\xbe\x3f\x2f\ \xae\x81\xb7\x50\x9d\x4b\xd5\x39\x75\xc9\x65\xaf\xfd\x9f\xef\x43\ \xf5\xf6\x85\x7c\xa9\xa0\xa9\xe7\x68\x4d\x27\xb9\x66\xc5\xee\xe2\ \xaf\xef\x8a\xa6\x83\xe9\x53\xcf\xba\x9e\xba\xfe\xaf\xbd\x7e\x3d\ \x0d\x47\xc0\x2b\x2e\xe4\xee\xf5\xd7\x21\x9d\x9c\x58\x57\x14\xdc\ \xf5\xc6\x4a\x2f\xfa\x19\xb6\x33\xe7\xad\x88\x3e\xf4\xb3\x02\x73\ \x57\x40\x75\xba\x40\x52\xf4\x25\xdc\xaf\x48\xdc\xae\x48\x7d\x6e\ \x3e\x15\xc5\x59\x05\xb8\xaa\x30\x5e\xd2\xd5\x15\x09\xcf\x39\x35\ \x2d\xae\x4b\xda\x94\x2e\xc6\x64\x9f\x4b\x41\x5a\x87\x44\x97\xb8\ \xd6\xbc\x64\xaf\x37\x75\x5c\x91\xf0\xac\xf0\xc1\x0d\xa8\xef\xe5\ \xba\x1d\x37\xc0\xb4\x15\x51\xc0\x6e\x5a\x12\xdd\x66\x5e\x37\x79\ \x73\xb9\xf5\xb0\xb9\xcf\xf3\xe6\x7b\xba\x6e\x36\x45\xb1\xe0\x92\ \x76\x76\x6b\x29\xb7\xeb\xa7\x46\x3b\xad\x37\xe7\xaa\x0e\x48\xd4\ \xc5\x16\x97\x53\xa3\xd4\x21\x37\x9d\x4d\x1f\x42\xf5\xde\x1f\xa3\ \xba\x82\xaa\x42\x87\xde\x9d\xd6\xa4\xe9\xec\xb6\x69\x2b\xc2\xcd\ \xe6\x8b\xf6\x69\x4f\x3a\x96\xb9\xe9\xf2\xe6\xf9\xec\xea\x5c\x43\ \x87\xaf\x9b\x6f\x51\x28\x6d\x44\x39\xbd\x1c\xdd\xf7\xfa\xae\x76\ \x75\x8b\xb4\x67\xdd\xd1\xda\xfb\xfa\xe0\x5d\x41\xa3\xc4\xba\x5c\ \x73\xcd\xb5\xda\xa2\x42\x4c\xcc\xbe\xe9\x78\x9c\x5c\xf5\x2e\xb0\ \x8a\x8a\x31\x8a\xb8\xba\xea\xcb\xd4\x05\x69\xfc\x02\xad\x76\xf1\ \xbd\x54\xbd\x76\xc5\xd4\x72\xbf\x20\x7d\x7b\x68\x74\x25\xd4\x12\ \x9a\xf2\x95\xa6\xa7\xf6\xcb\xdd\x73\x65\x45\xb4\x17\x9c\x56\x56\ \x57\x15\x7b\x4e\x37\x84\x5b\xc2\x48\xd2\x62\x47\x6d\xbf\x5a\x95\ \x80\x39\x77\x76\xb9\xa4\x58\xa3\x02\x9e\x82\x49\xd6\x93\xcc\xcb\ \xff\x58\x91\xe0\xc8\x7e\xb2\xd3\x81\x8e\x2d\x67\x1d\x5f\x9d\x9c\ \x7a\x77\x68\x82\xdf\x7f\x0e\xa5\x8a\x0a\x3b\x55\x97\xa5\x73\x4a\ \x1c\xaf\xae\x48\x7e\x56\xf6\xe3\xf9\x31\x8a\xa1\x7a\xe1\x76\x54\ \xbd\xfe\x5a\xd1\xd6\xf1\x62\xaa\x1e\xa5\xeb\xc2\x39\x09\x23\xec\ \x1d\x5d\x4e\xda\xa6\xba\x99\x8b\x9b\x76\xdd\xda\x8a\x04\x3e\xa4\ \xf2\xdc\x52\x75\x26\x83\x9e\xb1\x58\x4a\x7c\x5b\x90\x5d\x60\x6d\ \xcf\x0a\xa6\xca\xd0\x75\xbe\x12\x39\xa4\xbb\x1c\x46\xbc\x4e\x4d\ \xeb\x85\xa3\x97\xf5\x5b\xdb\x12\x46\x94\x00\x29\xf9\x57\xe0\xd4\ \x9e\x6d\x2a\x00\x46\x76\xb1\xbf\x7c\xbb\x12\x64\xa5\x2f\xfa\x0a\ \x4f\x3e\x34\x2b\x39\xf4\xe9\x2f\xcb\x0e\xf5\x04\xba\x27\x15\x06\ \x75\xc5\xe8\x90\xeb\x0d\xfe\xb5\xb3\x43\x7b\x57\x0a\xf9\xe9\x59\ \xe7\xb3\x04\x76\x63\x23\xb3\x8e\xf1\xfe\x65\x6d\x43\xbe\xbe\xb8\ \x78\x6e\x62\x0a\x89\xaa\xe0\xd2\xe2\x03\x79\x81\xc2\x98\xde\x56\ \x29\x04\x35\xb7\x64\x4a\xda\x9b\x4a\x1f\x7b\xec\xba\x60\xa3\x6e\ \xba\x72\xdc\xbe\x8d\x3c\x33\xc4\x52\xb3\x52\xaa\x54\x47\xb6\x36\ \xaf\xa0\x2b\x64\x3f\x29\xda\x21\x2d\x4e\xf9\x5a\x1d\x67\xe8\xb6\ \x24\xfb\xa0\xef\x95\xee\xea\x2b\x55\x7a\x29\x79\xd3\x93\x3f\xb0\ \x7d\x93\x8f\xac\x89\x0e\xb6\xb6\xec\xe7\xfa\x4e\x7f\xd4\xcf\xad\ \x56\xf1\xf4\x74\xcc\x0b\x8a\xca\x9f\xa6\x6b\x53\x09\x76\x53\xaa\ \xa5\xfd\x3f\x75\x45\x1a\xa9\xbd\xa3\x7c\xeb\x39\xe5\xd8\x14\xd2\ \xef\x6b\x88\xd0\x77\x1f\x43\x79\x8c\xf2\x07\xe5\x77\x5c\x40\xda\ \x54\xd7\x13\x25\x16\x55\xe7\x55\x39\x80\xee\x55\xa5\x4c\xb6\x20\ \x91\x82\x46\x7b\x47\x11\xce\x73\xdf\xb6\x63\xcd\x5f\x9f\xb3\x82\ \x60\x4f\x4a\x1e\xb3\x25\x28\xd3\x52\x47\x4e\x4d\x74\x56\x74\x2b\ \x4d\x53\xc5\x12\xb8\x91\xf5\x49\xef\x16\x24\xee\x73\x94\x1c\x55\ \x73\x44\xe2\x74\x26\x9f\xce\xd7\xf3\x24\xed\x76\x12\x91\xae\x1b\ \x8f\x5a\x3a\x2e\x3b\x44\x67\x48\x11\xd4\x05\x25\x87\x0a\x64\xee\ \xb8\x20\xf9\x59\x5f\xa0\xb3\x52\xd9\x62\x5a\x96\x72\x1e\xe0\x2e\ \xee\x90\xc8\xfd\xff\xec\x29\xcd\x8b\xb3\x74\x5d\xb5\xcf\x7d\x5e\ \x10\xe3\x6e\x8b\x24\x9d\x60\x5d\xe2\xca\x60\xf5\x9e\x46\xb7\xea\ \x62\x14\xc9\xac\x7f\x53\x6c\xd7\x8f\xac\xde\xb2\x72\xd2\x82\xd8\ \xc9\x19\x75\x2c\x55\xf4\xe7\x54\x8f\x21\xdf\xee\xa8\xac\xc2\x43\ \xa1\x26\xaa\x26\x0b\x53\xd3\x82\x98\x48\x4d\x0b\x35\xa0\x53\x6a\ \x5b\x0a\x85\xff\xfd\x16\xd9\xc5\x55\xad\x48\x57\xf2\xa8\x04\x27\ \xe9\xfe\x69\x7a\x87\x57\x1b\x65\xaa\xdc\xb2\x57\x22\xc2\x6b\xd6\ \x67\x8b\x23\x23\xa6\x30\xd5\xa3\x28\x46\x64\xee\xc7\x52\x46\x16\ \xb4\xdb\x23\x89\x9d\xa1\xb2\x42\xa9\x4c\x54\xd6\x3d\x35\x97\x8e\ \xc5\xd2\x41\x5d\x35\x4d\x29\xbb\x72\xc8\x94\x4a\xb8\x2f\xb8\xe2\ \x36\xae\xea\xaa\x71\x76\xb0\xd8\xf0\x41\x19\x78\xbe\x5c\x70\xc5\ \x67\xfd\x26\x15\x78\x3d\x68\x69\x15\xc0\xfa\xda\x34\x52\x26\x16\ \x14\x5e\x52\xa1\x93\x14\xdc\xf1\xaa\xa9\x3a\xe6\x51\x2b\xa2\xbc\ \xa0\xd3\x41\x0c\x53\x4b\xd0\xd8\x58\xf3\x90\xb4\xf9\x5a\xa1\x1e\ \x24\x47\xbe\x6f\x1e\xee\xb2\x69\xba\x08\x14\xef\x5d\x27\xbf\x52\ \x32\x87\xeb\x2b\xa2\x97\x50\xb8\x67\x63\xd1\x8f\xcc\x4b\xee\x18\ \xe8\xa6\x66\x15\xdc\x55\x29\x90\x2d\xfa\xd9\x26\x69\x5c\x47\x7c\ \x51\x51\x75\xe2\xa7\xae\x48\x72\x76\x0b\x52\xf3\x77\x32\x0c\xa5\ \xf5\x56\x55\xae\x7b\x24\xed\x53\x7b\x45\x7f\xdd\x94\x4e\x79\x7d\ \x6a\x69\xb4\x97\x2f\x2d\x88\x6e\x71\x97\xaa\x92\x69\x1d\x99\xac\ \x6a\xaf\xae\x7d\x1b\xfd\x77\x17\x92\x6e\x10\x65\xf8\xbe\xbb\x63\ \x1c\x51\x4c\xa6\x42\xd5\xb7\xd1\x59\x51\xa8\x99\x9a\x8d\xa4\x40\ \x89\xe3\xb8\x4f\xb9\x7b\x53\x51\xa4\x4a\x77\x81\x35\xc5\xdd\x7b\ \x55\x9a\x4b\x52\xaf\xc4\x2c\xa8\x82\xf4\xfd\x7a\x75\x51\x68\x13\ \x69\x5b\x7a\xaf\x38\x1a\x96\xb6\x8d\xd2\xd4\x54\xb3\xaa\xcb\x4c\ \xd8\x0e\x31\x1f\x93\x11\x5d\xcf\x3a\x4b\xa0\x05\xd8\xa4\xfa\x9a\ \xa9\x8d\xac\x94\x2c\x3d\xd3\xc6\x53\xbc\xd7\xab\x4a\x34\xf4\xef\ \xcb\x8b\x74\x68\x52\x04\x3d\x83\xce\x4a\xd5\x9d\x59\xf4\x7f\xaf\ \xae\x48\xb1\x96\x18\xcd\xb9\xa2\xe4\x46\x95\xc6\xda\xc8\x2a\x14\ \xe2\x59\x99\x9b\xa2\xa6\xd2\x59\x77\xb2\x45\x5c\xa1\xc3\xea\x08\ \x42\xba\xbb\xc7\x77\x4e\x5b\x91\x62\x9d\x32\x6b\xf2\x56\xfd\xaf\ \xb2\xf2\x78\x5f\x80\xa6\xba\x7b\xb1\x3a\xd8\x8e\x8e\x0a\x25\xbc\ \x12\x89\x07\x0a\x50\x5d\x29\x4d\x89\x96\x56\xa5\x53\xe0\xc7\x65\ \x8b\x68\xcf\x28\x0d\xa8\x49\x9f\x57\x47\xd8\x1d\xbb\x36\xfe\xb9\ \xb3\x9d\xbb\xb2\xd5\xa8\xab\xaa\x4c\x3e\x33\x8d\x50\xc9\x8a\xa8\ \x3e\x51\x06\xa9\x6a\x45\x8f\x72\xbf\x22\x7d\xbf\xd5\x9b\x92\xeb\ \xa4\x1c\x4d\x5f\xae\x5a\xfa\x81\x0e\xb8\x5e\x72\x49\xb9\x33\xf5\ \xaa\x0a\xd4\xeb\x8a\x24\xba\x76\xba\x65\xb8\x97\x95\x71\x1c\x0f\ \x8d\xf2\x49\x32\x27\x95\x7d\xb4\xbc\x8a\x82\xdf\xcc\x15\xc9\x96\ \xb0\xa6\x1a\x74\x8e\xb5\x55\x55\xe7\xea\x37\xdd\x2d\x48\xde\x3e\ \x4c\x7a\xd6\xcb\x89\x89\x9e\x8a\xab\xba\x00\xad\x1a\xbe\x98\x8c\ \x28\x8f\xb0\x91\x15\x5d\x11\x12\xae\x75\x8b\x24\x92\x10\x4f\xe4\ \xd4\x6e\xad\xc7\x33\xe3\x95\xea\xea\xbe\xe6\x3c\xa9\x0a\xd4\xe9\ \x3d\x3f\x33\x57\x2a\xf2\xbf\x70\x5e\xd3\xa8\x21\x6a\xd3\x43\x8f\ \x47\x4f\xed\x6f\x51\x91\xe7\x40\xe6\xd3\xa3\x82\x4c\xea\x35\x95\ \xaa\x2a\x37\xdc\x1f\xe7\x1c\x77\x2b\xac\xd2\xa8\x29\x37\x51\xbd\ \xd8\x83\xd6\x92\x77\x95\x2f\x8e\xd6\x3a\xbb\x97\xf3\xe2\xe8\x94\ \xac\xdd\x93\x60\x93\x23\x47\x57\x33\xeb\x9c\xc4\x93\x2c\x49\x79\ \xa6\x72\x2b\xcf\x8c\xa3\x66\x9f\xa6\xf6\x1c\x33\xa9\x34\xaf\x40\ \x57\x8a\x57\x0a\xeb\x5c\x4d\xf7\xe5\x67\xce\xbb\x87\x49\x45\x05\ \x48\x61\x12\x5b\xf5\x39\x3a\x27\xa9\x5c\xac\x2d\x22\x93\x55\x66\ \xb7\x2a\x9e\x42\x5e\x33\x69\xa7\xa3\x9c\x5b\x67\x63\xe8\x1d\x95\ \xb3\x4c\x9a\x5e\xb4\xcf\x74\xf2\x83\x35\xb4\xa7\x9e\xe6\x42\xf3\ \xa4\xc6\x5e\x83\x55\xb8\x8a\xbf\xe5\xbe\xb6\xc8\xdb\x80\xdf\x9f\ \xed\xea\x61\xe4\x43\x83\xa7\xd4\xcb\x0d\x0a\x7d\xf2\xd4\x1b\x23\ \x1c\xe5\xca\x5a\xdd\x51\x55\xeb\xed\x04\x26\xf2\xba\x0b\x18\x4a\ \x6b\x03\x9d\x15\x5b\x11\x6c\x42\xa2\x37\xa1\x22\x55\x6b\x37\x75\ \x41\x68\x50\x68\xb9\x7d\x53\xfd\x14\x15\xc1\x95\x17\xdc\x37\xb1\ \xf2\x2e\x8f\x56\x12\xa3\xfc\xa8\xf6\x4a\x18\x74\x55\x75\xeb\xf5\ \x3c\x5a\x29\x1f\x25\x9b\x92\x22\x9a\xae\x6d\x6d\x62\x71\x1e\x22\ \x6f\xa8\x24\xe5\xcb\xf9\xac\xe3\x58\xf4\xea\xba\xa2\x7d\xd5\x99\ \x55\xe6\x3a\x35\xe0\x17\xc7\x15\xa8\x23\xa9\x6a\x4f\xd7\x1a\x1b\ \x35\xb8\x7b\x5c\x42\xf1\xc7\x25\x29\xd1\xe2\x9d\xde\x94\x96\xf0\ \x72\x45\xae\x62\x2b\x37\x4e\x08\x41\x53\x1f\x6b\xf4\xa2\x88\x53\ \x1e\xd0\x82\x8a\x75\xdd\x2d\x2d\xc7\x63\x56\xa0\x07\x56\x00\x89\ \x8c\x2e\x02\x57\xe0\xbc\xfa\xd3\x96\x24\x8c\x30\x92\xbc\x32\x02\ \x95\x2e\x95\xe8\x7e\x97\x49\x97\x5d\x5b\x5a\xb5\x85\xeb\x5d\x79\ \xb7\xde\x52\x60\xeb\x86\xab\x97\x20\x13\xf6\xae\xfd\xd6\xf4\x73\ \xb2\xca\x2b\xbf\x1e\x1b\xea\x27\xdd\x72\xca\x0b\x5a\xa3\xf2\x3e\ \xd9\x24\x3a\xb6\x89\x0c\x4b\x25\x2a\xad\xfe\xa9\x89\x63\x49\x74\ \x5b\x7d\x61\x45\xaa\x52\x75\x7a\x69\xf7\x81\xb5\xec\x7a\x14\x4a\ \xa5\x23\xad\xf1\x0e\xd4\x27\x87\xf1\x34\x97\x0b\xf2\xa6\xad\xaf\ \x74\xc4\x65\xe5\xe7\xee\xd6\xc7\xa2\xcb\x98\x15\xe3\x81\x71\xa4\ \x7e\x4c\x0b\x94\xd7\xe5\x10\x94\x5c\x29\xb9\x8b\x7a\x97\xf3\xae\ \x1a\x5b\x91\xf2\xf4\x65\x7c\xce\x20\x54\x7c\xe7\x42\x8d\x29\x6d\ \xda\x36\xa5\xee\x37\x49\xe9\xae\xe6\xac\xa2\x28\x29\xe9\xf3\x8f\ \x80\x7b\xf4\xed\xda\x07\xc4\xe8\xd6\x19\xf0\x2e\x4b\x32\x4e\xa4\ \x9e\xa4\xf2\xbf\xe1\x78\xfb\x66\x3d\xb0\x92\xca\xae\x92\xbc\xa7\ \xc6\x51\x9f\xba\x24\x8d\x0a\x87\x9b\x54\xcf\x47\xd4\xef\xdd\xee\ \xc1\x5b\x20\x39\x4e\xfc\x38\xe6\x55\xff\xb7\xe9\x15\x7b\x77\x39\ \x77\x8c\xcf\x09\x18\x89\x8a\xc9\x4a\x1b\x37\xa4\x35\x90\x14\xb0\ \x2c\x8a\x11\x29\x75\x06\xd5\xc7\xae\x8d\x2a\x35\xdd\x72\xbe\x33\ \x0d\x02\xd1\x51\xa6\xce\xb7\xaa\x25\xd3\xc5\xb2\x8b\x4a\xa8\xd2\ \x7e\xb9\x87\x52\x54\x7f\x08\x24\xad\xf2\x7e\x2a\x69\x03\x7b\xf6\ \x81\x15\x89\x6c\x07\x2d\xac\xca\xb6\xb8\xc4\x50\x1b\x5e\x29\x53\ \x51\x48\x53\xee\xa6\x43\x93\xce\xc7\xe4\xb5\x72\xce\x75\xd3\x10\ \xd1\xa6\xee\x91\x1a\xc6\xa4\x57\xfb\x34\x2a\xe1\xca\xcc\x4d\xfc\ \x7d\xfb\xb7\xc6\xdd\x21\x66\xd0\xa6\x38\xdf\x00\xb4\xe5\xec\x2e\ \x5f\x36\x8a\x5f\x74\x7e\x3a\x28\x92\xa4\xea\x7a\x19\x22\x95\xe7\ \x50\x7d\x8a\xba\x61\x93\x0e\x30\x1b\xf2\xa4\x26\xcf\xba\xf7\x99\ \xee\x34\xaa\xf6\xdc\xa7\x06\x92\x6a\x5d\x0a\x5a\x53\xad\xd1\x38\ \xec\x25\x8e\xfe\xe5\x6d\x45\x0e\x73\x35\x55\x65\xe4\x48\xba\x73\ \x74\x69\x8f\x1c\xea\x52\x92\xd6\x54\x5b\xd1\x41\x0e\xdc\xb7\xbe\ \x84\x34\x00\x0b\x19\x08\x20\x05\xb1\xde\x7d\x0e\x6b\x8e\xbe\x6f\ \x1e\x39\xc2\xba\xd7\x82\x2a\x08\x2d\xbd\xf4\x69\xc7\x06\x2c\x45\ \x20\xaa\x26\x70\x66\xda\x01\x5b\x70\x49\xdd\x86\x56\xf6\x53\x06\ \xc3\xa0\x58\xdf\xe9\x91\xf6\xab\xa7\x46\x69\xbc\xc2\x73\x50\xf8\ \x64\x0c\xac\xcf\x7f\x3b\x35\x74\x5c\x1d\xa8\x37\x65\x6f\x31\x1d\ \xd3\x78\xde\x60\xa0\x29\xd0\xaa\x42\x49\x70\x71\x2a\x6c\xb2\x1a\ \x2e\x4d\x25\xb1\x57\xa4\xb2\xd6\x91\xb3\xe8\x7e\xdb\x22\x87\xac\ \xb5\xd2\x6e\xd1\x55\x10\x1b\x58\x98\x7a\x19\x4b\x5b\x9f\xa9\xec\ \xbb\x76\x87\xc2\xa3\x8a\x88\x65\x45\xb4\x50\x0a\xdc\x7a\x3b\x2d\ \xf0\x9e\xda\x09\x90\x34\xd3\x0f\x55\x08\xf1\x05\x04\x88\xc2\xce\ \xd4\x15\x69\xee\xc9\x92\x56\xd5\x07\xcb\x90\x6a\x19\x1e\x2e\x2b\ \xd2\xfc\xfe\xd0\x34\xa6\xc0\x60\x95\x32\xfd\xf9\x7c\x39\x45\xd3\ \x8d\xa1\xd7\x5b\x80\x2e\x86\x46\x9b\x24\x2f\x2b\xa2\x9d\x57\x29\ \x6d\x3a\xf1\xbb\x9e\xec\x91\x44\x2f\xb2\xe9\x95\x30\xb3\xa9\xe0\ \xc8\x66\xc6\x91\x66\x91\x35\x25\xea\xde\x0e\xb2\xc1\xd5\x62\xc3\ \xb2\x75\x93\xb4\x5d\xd6\x1a\x9e\x23\xfd\x3f\x8a\xb4\xe4\x2a\xe5\ \xfc\x03\xc7\x06\x44\x15\x77\x9c\xce\x8e\x02\xe9\x0d\x4c\xa1\x15\ \x07\xa4\xe6\xa8\x7f\xbb\x3f\x02\x6e\xb4\x49\x74\x2d\x2b\x53\x50\ \x9c\x51\xf2\x5a\xca\xd4\x39\x52\x4b\x8c\xee\x14\xf0\x75\x9a\x73\ \xc9\x7a\x2e\x17\xef\xe3\x48\xcb\xfb\x63\xa3\x18\xa8\x4c\xa4\x07\ \xca\x21\x1d\xe5\x07\xba\x7b\xe4\x1b\x0a\x08\x04\x68\x07\xe4\xed\ \x76\xd9\xe8\xe6\xc9\x15\xf8\x8f\x03\x07\x70\x16\x59\xb5\x58\xca\ \x57\x22\x2d\x71\xb2\xde\xa9\x2b\x52\xac\xd8\x53\x50\xad\xfa\xa0\ \x0a\xe0\x2a\xa3\xea\xfd\x1c\xa9\xd5\xdd\x66\x67\x6a\x42\x92\xa9\ \xd4\x28\x28\xae\x5d\x9e\x47\x33\x46\x72\xb6\xb0\xb4\x09\x81\x45\ \x2e\x95\x8d\xa7\x8f\xa4\x14\x9d\xa8\x49\x84\x3b\x4b\x5a\x95\xca\ \x24\x86\x8c\x40\xb2\x7c\x9f\x36\x8f\xb6\x15\x69\xe3\x46\x25\x83\ \x27\x2f\x50\xd1\xd9\x2d\x2b\xca\xeb\x8a\x1c\xb2\x56\x8e\x79\xcc\ \x5d\x71\x44\xf5\x88\xb7\x2d\x7b\xa9\x8b\x16\x01\xa4\xe9\x4d\x13\ \x0c\x14\xa5\xb5\xcc\x6b\xf9\x1b\x3a\x45\x53\xa7\x48\x50\xe4\x3c\ \xe6\xf1\x45\x91\x44\xe7\x96\x8c\x52\x59\x00\xad\x94\xbf\x7d\xc7\ \x53\x65\x26\xbb\xbb\x3a\x30\x87\xa5\x86\xbf\x05\x42\xbd\x3b\xd6\ \x5f\x15\x6e\x8f\x95\xb1\x70\x53\x72\xe2\xee\xdb\x37\xfd\x80\x4d\ \x4e\x0a\xc5\x0c\x2f\x93\xc2\x8b\xbe\xeb\x81\xa2\x8b\x74\x18\xbe\ \x8c\xea\xb7\x0a\xa6\x71\x6d\x79\xaa\xf0\xd0\x9b\xd0\x03\x59\x08\ \x3b\xc6\xb8\xa2\xec\x41\xbf\xbf\xd7\xc0\xe8\x36\xa4\x38\xb5\x32\ \xef\xc6\x2a\xa1\x99\x4a\x5d\xce\x48\xbe\xd6\xfb\x01\x46\xdf\x46\ \xfd\xf4\x4c\x11\xaa\xdc\xbb\x07\x47\x6f\xff\x3a\xca\x52\x41\xdf\ \x07\xc7\xe4\x26\xf2\x1e\x5a\x5c\xa7\x7e\x8a\x78\x24\xd2\xca\x19\ \x62\x55\x86\x7f\xdc\xbd\xd4\xee\x0a\xc6\x74\x05\xa2\x57\xf2\xd8\ \xa6\xf6\xb3\xba\xe5\xd3\x4a\xc6\x92\xd6\x9c\xbc\xde\x65\x1f\xef\ \x21\x37\xfd\x88\xa7\x28\x86\xfb\x50\x91\xd4\x79\x41\x0f\x44\xfd\ \x46\xf7\xb4\x83\x53\xa3\x0f\x94\xea\x1a\xe3\xf4\x53\xb5\x09\xe0\ \xb5\x64\xfd\xf1\x98\x2c\xa9\xcc\x29\x4a\xd7\xf4\xb4\x2a\xd5\x3c\ \xc5\xea\xcc\x18\xd7\x0d\x4f\xa1\xd0\xa9\x2c\xce\xa9\x6e\xd0\xd9\ \x71\x69\x04\x9b\x65\x49\xb6\x51\x5f\x9b\x5a\x79\x12\x29\x70\x54\ \x59\x4c\xda\x77\xbd\x7b\x33\x3a\xac\x5e\xb1\x55\x35\x54\xce\x2b\ \x38\x39\x29\xc0\x29\xe0\x36\x80\xfd\xe0\xb3\xce\x9a\x9e\x9d\x74\ \x0d\xaa\x54\x03\x2e\x37\x35\x59\xea\xcd\x26\xad\xc5\x6b\xb5\x6d\ \x38\xed\xb6\x6d\xe0\xde\x77\x1f\xa3\xf8\xe8\x74\x01\xf5\x48\xc5\ \x94\xf3\x03\xa4\x8f\x0a\x58\x1b\xc4\x60\x89\xca\x47\xea\x1a\xf3\ \xc3\xc0\x57\x84\x81\x75\x69\x67\xed\x2c\x9d\x58\xc0\x52\x60\x17\ \x40\x54\xcc\x85\xaf\x3b\x12\x6a\x65\xe9\x20\x14\xf4\x5b\x98\x2c\ \xa6\x7b\xea\x8b\x3f\x52\xe5\x74\x71\x57\x66\xf7\x3a\x3a\x4a\xb2\ \x2e\x03\x4c\x54\x62\xd8\x47\xef\x0e\x2c\x85\xcf\x37\xf8\x80\xc2\ \x69\xd0\xfe\x50\x16\xd4\x00\x71\x9f\x15\x5d\x19\x8c\x50\x67\x31\ \xa0\xeb\xcd\xcd\x0c\x74\xbb\x2a\x76\x67\x50\x72\x06\x8e\xa7\xdb\ \x18\xee\x11\x26\x0a\xfa\xfb\xb8\xa6\xc3\x5f\x3c\x64\x0d\x00\x90\ \xc9\x3d\x10\x48\x74\x59\x81\xce\x53\x64\xad\x29\x0f\x64\x2b\xe8\ \x40\x88\x42\x5a\x26\xbb\xcc\x52\x3b\xeb\x67\x65\xa8\x00\x7a\x64\ \x32\x94\xdc\xfc\xd4\x71\xb9\x3e\x9a\x35\x64\x99\xed\xe8\x18\x00\ \x92\x0e\x1b\xc0\xab\xce\xf2\xbe\xee\x4a\xb1\xeb\xe4\x33\xca\xa6\ \x37\xe7\x2f\xf7\x6f\xb2\xc2\x74\x00\x0c\xef\xe9\x7e\x38\xdf\x57\ \xc8\xab\x3e\x28\x58\x89\x35\x17\x39\x0e\xcc\x81\xb9\x67\x60\x28\ \x36\x26\xed\x75\x1e\xcf\x61\xac\x49\xa1\xdf\x0d\x95\xab\x5b\x54\ \x23\xcb\xd8\xa0\xd8\xbd\x3b\xc0\xd5\x74\x76\xe0\x5d\x78\x4e\x3c\ \xa4\xd4\xab\xe1\xc4\x3f\xf3\x1a\x54\x75\x56\x86\x25\xca\x86\xd6\ \x86\x85\xa2\x84\xb2\xd4\x0a\x76\x12\x80\xd4\x19\xb0\x5f\xcb\xc6\ \xe0\x3e\x33\xa3\x0b\x03\x45\x38\x71\x51\x9a\x95\x53\x5c\xbf\xc9\ \xba\x44\x3a\x11\x9b\x02\xdd\xbb\x3d\xb2\xc2\x43\xe0\xd1\xda\x69\ \x15\x93\xee\xaa\x07\xd0\xe2\x05\x6c\x84\xc2\x89\xf6\x85\xcd\x90\ \x96\x35\x51\x3a\x52\xb4\x4e\x10\x1e\xc0\x47\x1d\xd7\x04\x92\x17\ \xef\x90\xab\x5b\x19\x6d\x9c\xdb\xfa\xf4\xde\x91\x99\x78\xc5\x3a\ \x7a\x9f\x4a\x9e\xba\xd2\x8e\x4d\x40\xd9\x53\xeb\x0c\x41\xa7\x54\ \x0d\x98\x9b\xbe\xbd\xc4\x07\x22\x4a\x87\xd0\x69\xc8\x1f\xc7\xc5\ \x13\x96\x88\x12\x08\xe1\xcd\xc6\xe5\x46\x14\x3a\x89\x28\xf4\x5f\ \x93\xee\x1e\x70\x4b\x7e\x74\xe2\x26\x2e\x4a\x80\xd6\xa1\xcf\xa6\ \x03\x5d\x3d\x18\xcb\x96\xfc\x86\x49\xb6\x63\xd7\x95\x67\xdd\x38\ \x8d\x54\x1c\xf6\x70\x1c\x9d\xb6\x8b\x28\xad\x4e\x09\x11\x80\xf1\ \xc0\x5e\xf4\x2b\x4a\x4b\xc9\x34\xa0\x0a\x6f\x73\xfb\x7a\x82\x5b\ \xd3\x77\x82\x34\x51\xee\xa0\xa3\x13\xe9\x3d\xce\x5d\x93\xc1\xae\ \xd3\x6d\x03\x7c\x2e\xd0\xad\x8a\x06\xc2\xbd\x5d\xc6\xfe\x10\x66\ \x6b\xa3\x73\xac\x44\x29\x97\xc0\x35\x74\x75\x51\x1a\x2d\x50\x1f\ \x19\xbb\x76\xaf\xcf\xb6\x0c\xee\xbb\x1d\x0d\xa8\x8c\x50\x66\xd8\ \x10\x2f\x7b\x56\x2a\x55\x34\x99\x25\x20\xc0\x14\x75\x90\x27\x2f\ \x8a\x91\x2d\x60\xb5\x97\xe2\x6c\x38\x0a\x3b\x77\xb3\x51\xf6\x6d\ \x61\x6d\xdc\x00\x6c\xbc\xdb\x2c\xea\x3a\xff\x84\x3c\x43\x97\x4f\ \x6e\xa5\x55\x70\xe8\x61\x3d\x3c\x06\xf3\xd4\xff\xd0\x9a\x88\x03\ \x6d\x79\x20\x0b\x15\xa8\xe6\xba\xb0\xdd\xc0\x73\xcd\x5d\x93\x66\ \x57\x8f\xae\xbd\xc6\x8b\x29\x9e\x41\xe9\x76\x4d\x0e\xdd\x0b\x88\ \x08\x1e\x9a\x08\x68\xab\x7a\x7d\x54\xad\x04\x50\x65\x53\x57\x26\ \xa0\x0d\xaa\xc3\x53\xd6\xce\x70\x63\x5a\x43\x7b\x44\x75\x37\x67\ \xe8\xe4\xf4\xa8\xc6\xea\xe0\xc5\xa0\xb7\x31\xdf\x99\x9a\xb6\x41\ \xb3\x4b\x6c\x14\xa3\x12\xea\x34\x68\xab\x94\xfb\xe4\xde\x87\x7d\ \x5f\x56\x59\x7d\x87\x10\x13\x80\xee\x36\x53\x04\xb8\xb4\x26\xdc\ \x31\x9d\x71\x8a\x2e\x32\xd5\x3a\xfe\xc6\xb3\xd3\x87\xa4\x22\xd6\ \x9d\xef\x52\x19\x7d\xc5\x03\xcf\xae\x42\x20\x62\x5a\xa9\xa7\x6d\ \x75\xea\x1c\x52\xf5\x27\x13\x8a\x4a\x0c\xf7\x00\xb0\x14\x29\x6c\ \xd5\xd3\x6d\x49\xf6\xa9\x6c\x80\x08\x49\x77\x29\x72\x05\x5d\xaf\ \x89\x03\xa5\x93\x62\xa5\x82\x82\x36\x67\x6b\x61\xed\x0d\xf3\x30\ \x60\xd4\x91\x62\xd0\x9d\x7c\x36\x40\x00\xfd\xd3\xd8\x43\x5e\x45\ \x53\xf7\x93\x97\x24\x99\x96\x40\x68\x08\x6e\xc4\x5c\x69\xc4\x6d\ \x68\xee\x7b\x3e\x9b\xf1\x2e\xaa\x2b\xca\xd8\xe8\xe2\xc6\x72\xb9\ \xe2\x61\x4d\xa0\xbe\x78\x90\x93\xfa\x79\xb7\x6d\xd2\x95\x98\x00\ \x7a\xd2\x43\x31\x42\x3a\x56\x3c\x91\xc2\xb9\x52\x1c\x28\x12\x2b\ \x51\xa9\xd3\x00\xd3\x63\x4d\x0a\x35\x06\xfb\x84\x71\x40\xa1\x64\ \x0f\xdb\x35\xd9\x65\xb2\x64\x91\xc8\x41\x78\xcb\xb8\xb4\x8a\x97\ \xef\x1d\x6f\xb7\x87\x2a\x63\xc5\x12\xa6\xe4\xf9\xc6\x68\xe3\x5c\ \x20\xd9\x91\xb3\xb6\xcf\xc9\xc0\x5a\xcb\x56\xad\x73\xdb\x2a\x7d\ \xc8\x85\x89\x30\xa3\x19\x1a\xea\x5f\xd6\x0c\xd5\x43\xea\xa5\xe8\ \x8a\xd1\x73\x20\xde\x62\xf0\xcf\xbf\xba\xa2\x8e\xb6\x90\xbd\x2d\ \xe5\x4e\x0d\x3c\x48\x01\x44\xb6\x49\xb1\x77\x6c\x3b\xc6\xcc\x2a\ \x50\x62\xa6\xed\x0f\x2e\xbf\x3d\x32\xdf\xa0\xfd\x6c\xb7\x2a\xe9\ \xf2\x80\x29\x83\xdd\xd3\xf5\x08\x6a\xc0\x41\x2e\x2c\xa7\xba\x04\ \x4a\xdb\x6a\x64\xe8\xa3\x54\xa5\x2c\x8a\x06\xd3\x6e\x44\xe3\xdb\ \x29\x96\x93\xbe\x58\x1a\xa2\x53\xbd\x49\xb1\x0f\x84\xbb\x40\x7b\ \xca\x43\x3f\xd6\x9d\x18\xd2\x03\x1b\x98\x2b\x4f\x11\x3c\xa5\x5a\ \x6e\xb7\x9a\xf5\xb1\x18\x6c\xb4\x46\xae\xe8\xd2\x09\xbe\x4f\x57\ \xa6\x6a\xfd\x92\x3a\x57\x86\xca\x83\x34\x37\x71\x8a\xc1\x26\x71\ \x9e\x61\x82\x49\xb7\x94\x18\x36\xb1\x3f\xee\x61\xc2\xd9\x10\xac\ \x60\x21\x9c\xae\x81\xeb\xa8\x7f\x2e\x35\xe5\x6b\x28\x55\x40\x20\ \x70\x7e\x45\xc5\x8e\x39\xa9\x55\x40\xfa\x0d\x27\xb1\xbf\x02\xd6\ \x08\x88\x81\xa8\x62\x8b\x94\x3f\x73\x97\xc4\x7a\xc4\xd9\x45\x80\ \x41\x2a\x6b\x00\x56\xb6\x4d\x82\xbd\x23\xdd\xa9\x08\x72\xba\x93\ \x99\x53\x32\x92\xf3\xfd\x81\x6d\xd2\x42\x36\x44\x83\x1d\xda\x85\ \x6e\x68\xdb\xc4\x80\x7f\x0e\x18\x71\x89\xf5\x2c\xf6\x67\xd5\xd0\ \x99\x9c\x66\xcc\xd3\xa7\xb2\x10\x7d\x34\x40\x5b\x30\x61\x1d\x9d\ \x84\xac\x72\xac\x6e\xb8\xbb\x7e\xcf\xba\xd3\x85\xd8\x5a\x5e\x78\ \x99\x4e\x7f\x7c\x00\xf6\xe8\xe0\x85\x14\xd5\x3b\xda\x8d\x2b\x31\ \x86\x56\x93\x4b\x0e\x4a\x6f\x21\xbf\x6c\x27\x09\x36\xc3\x4c\xd3\ \x84\xd1\xc6\x4e\x9e\xdb\x7c\xee\xa2\x34\x23\xcc\x84\x18\x40\x20\ \xea\x7e\xd2\x05\xbd\x69\xed\xec\x78\x77\xda\xda\x8c\x9a\x6b\x0f\ \x2a\xc1\x40\x25\xf8\xab\x4b\x52\x9e\x81\x0a\xc3\xd0\x2a\x2a\xbb\ \x94\x95\xae\x5d\x8c\x4c\x3b\x9c\x86\x7a\x00\xbb\x7e\xa2\x5e\x05\ \xab\xb3\x17\xe2\x2f\x03\x18\x6d\xd9\xa9\xd8\x1c\x9f\x9c\x81\xcb\ \x8a\x12\x17\x9d\x6b\x94\x8a\x46\x33\xe1\x76\x74\xd2\x61\x06\x67\ \x64\x92\x6a\xeb\x92\xa8\xdf\xae\xaf\x89\x52\xea\x0c\x14\xba\x53\ \x3e\x2c\x20\x1b\x1a\x3e\x1d\x2c\x37\x9a\x38\xc4\xf0\x93\xbc\x89\ \x14\x5f\x59\x5b\x05\xa1\x50\xaa\xbe\x6c\xea\xc8\x49\xf1\x09\x2e\ \x41\x42\x80\xc8\xd3\x46\x61\x16\x77\x8f\x7c\xf4\x69\x8f\x6a\x73\ \xb4\xbc\x1b\x3b\x2b\xad\x40\x83\x8b\x63\x75\xa8\x77\x30\xee\x2b\ \xad\x99\x3e\xb8\xba\xb6\x4d\x08\xf7\x94\x57\x64\xb8\x27\x9d\x62\ \xaa\x57\x4f\xb1\xd3\x95\x87\xdf\xb8\x57\xf3\x96\x24\xd9\xcc\x29\ \x54\x55\xce\x4e\x9f\x55\x29\xc2\x42\x66\xbb\xad\x49\xde\x3d\x4f\ \x40\x6f\x23\x34\x05\xa0\x8e\x56\xd0\x23\x0d\xc0\x6a\x34\x7a\xe0\ \xbf\xa0\xea\xe2\x1a\x4d\x7c\xae\x3a\x3e\xaa\xe4\x75\x3a\xe3\x09\ \xf7\x80\xb9\x3a\x4c\x62\x34\x93\x00\x16\xe5\xb9\x37\x71\x1a\x21\ \xd6\x75\x17\x6d\xa2\x05\x84\xcf\x6f\x86\x2c\x3b\x02\x9e\xbe\xb8\ \x67\x20\x00\x46\x56\xa8\x43\x2f\xf0\xe2\x55\xdc\x91\x79\xe9\x60\ \x06\xc7\x8d\xba\x5e\x3b\x9e\x16\x1a\xb0\xa4\x8a\xa0\xd9\x71\x5a\ \xab\x7d\xa2\xe4\xd6\xe6\xde\x3d\x9b\x06\xd5\xdc\x35\x69\xb6\x26\ \x41\xd5\xa6\x8e\xa5\x72\xff\xb6\xc8\x22\xde\x42\x6c\xda\x6b\x46\ \x78\xcb\x2a\x3a\xcd\x28\x64\x14\x2f\x4f\x14\x8a\x12\x45\x45\x57\ \xc3\x95\xe8\x7d\xb4\xba\xee\x93\xcc\x8c\x8f\xd2\x57\x7b\x81\xea\ \xf5\x64\x9f\x78\x74\x9b\xd8\x48\xd4\x1d\x7e\x1e\x92\xcb\x42\x6c\ \x76\x43\x67\x0e\x45\x0b\x50\x20\x0d\xf1\x81\xcd\x3e\xc9\xfb\x0c\ \xd2\x23\x57\xe7\x94\x67\xf2\x2a\x87\xcc\xc9\xc5\x0e\x86\x82\x81\ \x07\xea\x08\xae\x1e\xe8\xfc\xda\x3c\xa7\x18\xac\x81\x19\x8a\x4a\ \xf6\x7c\x76\xed\x18\xbc\x0e\xe0\x52\x80\xad\xe7\xe7\xde\xc4\x39\ \x18\xb8\x9c\x33\x4d\x7d\x4a\xb7\x64\x33\xb1\xf5\xf9\x40\xca\xe0\ \x56\xe0\x3e\xe8\xcc\x32\xbd\x7b\xa0\xd3\x85\xdc\x02\x73\x6a\xfd\ \x98\x88\xa0\xcd\x72\xed\x28\xa7\x26\x5e\xf5\x98\x4a\xcc\xfe\x94\ \xdc\x85\x66\x84\xb2\x92\xe4\xab\x89\x93\xcd\x9d\xd9\xe6\x64\x6a\ \x2b\x20\xa8\x7b\x65\x5c\xef\xc6\xf8\xeb\xf3\x36\xd9\xb5\x30\xca\ \xb3\xae\x09\xe8\x66\x09\x8d\x89\xac\x60\x77\xf5\xde\x69\xe0\x5e\ \x74\x75\x55\xc4\x29\x4d\x47\x66\x39\x3b\xfa\xb9\x11\x98\x83\x02\ \x85\x8d\x29\xcf\xa6\x71\x4a\xe7\x14\x86\x4d\x9d\x80\x11\xf8\xdc\ \x35\x19\xda\x11\x28\x79\x68\x0b\x23\x57\xd0\x5d\xde\x6e\x94\xba\ \xfb\x24\xa0\x44\x1c\xca\x3d\x60\x34\x06\x29\xff\x22\xd8\x81\xad\ \x06\x0c\x12\x52\x03\xa3\xa6\x97\x01\xfa\x53\xa0\x68\xca\xed\xa1\ \x01\x44\x05\x9c\x33\xd6\x77\x42\x82\x03\xb5\x0d\xe7\x6e\xcd\x8f\ \x79\x6b\xd2\x4c\xa5\xd1\xf8\xb5\x8e\x07\xd3\x1f\xcb\xbd\xec\xaa\ \xcf\xfb\x18\x8b\xc2\x25\xfc\x49\x07\xc4\x2c\xa6\xcb\x12\x23\x11\ \x29\x44\xd7\x4d\xbc\x49\x87\x68\x85\xc4\x90\x9f\xd0\x0f\x0c\x0c\ \x29\xf5\x81\x4f\xce\x8e\xb6\x52\x80\x59\xaa\xe7\x45\xe6\x33\xfc\ \x80\xce\xd6\xd5\x7b\xa7\xd8\x30\x0e\x16\xab\xc5\x7f\x96\x24\x6d\ \xa7\xfb\x7b\xde\x5b\x7a\x46\x24\x41\x31\xae\x41\x9c\x57\x06\xfc\ \x40\x0d\x18\x20\x57\x43\x70\xac\x0c\x9e\xca\xaa\x61\xc8\x7d\x52\ \xe1\x07\x22\xba\xe2\x4e\x40\x20\xe9\x99\x83\x4e\xe3\x4f\x17\x90\ \x0a\x92\xc9\xca\x9f\x46\x7c\x83\x42\x1d\x03\x74\x18\x85\xd9\x81\ \x5c\xbd\x05\x94\x23\xf3\x2d\x28\x28\xc2\x1c\xe4\x1d\x22\xbd\x74\ \x75\x4d\xb8\x61\x20\xf0\xa8\x04\x04\xb7\x9c\xf2\xba\x51\x5a\xf6\ \x8c\xe9\x50\x84\x86\xb7\x74\x0c\x28\x89\x27\xd6\x8a\x29\x91\x55\ \x8e\x19\xe2\xbc\xba\x78\xac\x89\x25\xb2\xb0\x32\x82\xdd\x26\xf4\ \xdb\xca\xe6\x32\x3e\x92\xdf\xba\x02\x5c\xea\x36\x1e\x09\x30\x47\ \xaf\x46\x59\x60\x41\x43\xb5\xa4\x19\x6b\x3a\xde\x38\x2b\xca\x07\ \x60\x09\xa2\x12\xab\x0f\x7f\xcc\x50\xb4\x59\x95\x01\x77\xd4\x3d\ \x0a\x8b\x13\xe6\x62\x1e\x4a\x19\xf8\x71\xa4\x36\x81\x32\x74\x25\ \xa7\x2e\x6e\x16\x65\x0f\x29\xd3\xfa\x29\x2a\x76\xeb\x53\x06\x1f\ \x2f\x47\x14\xee\x75\xc5\x75\x34\xf8\x98\xec\xad\xca\x7d\xd9\x52\ \x20\xd4\xbe\x06\x99\xf6\x14\x6c\xde\x81\xcd\x74\x58\xae\x88\x5c\ \x87\x05\xf0\x3e\x6b\x4d\x9a\x6d\x94\x98\xc1\x77\x35\x66\xa4\xc5\ \xf5\x4d\x65\xbc\x27\xc0\x0d\x3d\x38\x0f\x2d\x5b\x29\x6d\x6a\xe1\ \x01\xe5\x5c\xd8\x19\x09\x9e\x32\xca\x80\x4b\x5b\x80\xac\x5f\xbb\ \x90\x14\xd5\xb8\xf0\x67\x92\xe7\x50\x45\xf4\x60\x30\x5c\x95\x6c\ \xa6\xd8\xa7\xca\x9f\x29\x4d\x03\xfe\x68\xfa\x10\x14\xa7\xa1\x80\ \xc6\xbc\x8f\xb2\x75\xdf\xcf\xe1\xe5\xa1\x22\x43\x76\xd0\xc6\x61\ \xbe\x98\xdd\xe7\xae\x6a\xc2\x60\x0f\xc1\xda\xab\x6b\x26\xab\xe0\ \x59\xe1\x6c\x6a\xeb\xa0\x71\x7e\x76\xf3\xd0\x5d\x63\xe6\xc0\xec\ \xa9\xcf\x25\x8e\xfa\x4a\xb3\x00\x30\x24\xc3\x51\x7d\xc2\xd2\x07\ \x75\xa5\xdc\x96\x64\x0f\xd9\xd5\x16\x49\xf4\xc1\xe8\xdc\xba\x81\ \xa8\xbd\x78\x19\x7b\xb4\xab\x13\x83\x7d\x8e\xce\x4d\x85\x05\x80\ \x7d\xd7\x1e\x54\x02\x89\x3e\xe1\x99\xe6\x88\x63\x92\x4e\x3b\x8a\ \xf6\xe0\xa8\x46\x26\x2e\x09\x44\x0d\xf2\x7a\xb4\x8b\x82\xb2\x27\ \xb0\x20\x9b\x5d\x72\x48\x64\x3d\x7a\x4f\x9e\x6a\x27\xc3\x88\xba\ \xbc\x4d\x12\x22\xab\x08\x4b\xc3\x1f\x83\x5e\xb5\x4e\x32\xb8\xfa\ \x90\x3f\x71\x46\x5e\x39\xa1\x05\xea\xbd\x84\x64\x7d\x02\xa4\x52\ \x90\xeb\x9f\x7b\x72\x90\x63\x47\xc8\x91\x4c\xa0\xd1\xc6\x18\x8d\ \x8c\xcf\x6b\x72\x68\xc7\xea\xec\x2b\xa1\xe9\xcd\xd4\x54\x4b\x7b\ \x40\xd0\x49\x25\x0d\xd3\xb6\x52\x1d\x43\xb5\x34\xa2\x58\x1d\x9b\ \xc0\x43\x83\x04\x45\x7c\xd2\x54\x62\xaf\xea\x3b\x54\x06\x66\x40\ \x65\x65\x2e\x6a\x57\xbf\xd9\x76\xa2\x82\x54\x72\x83\x69\x34\x26\ \x03\xb7\x3c\xb6\xee\xdb\xb1\xa8\xc1\x98\xc8\x55\x07\x85\x78\x5d\ \x5f\x52\x79\x88\x4a\x03\x25\xe9\xca\x31\x74\xc5\xb8\xbc\x6a\x0a\ \x37\x94\xad\xd0\x14\xe6\x05\x95\x93\xf4\x04\x01\x1b\x15\x7f\xda\ \x41\xb5\x64\xdd\x59\x6d\x6e\x34\x69\x8e\xd3\x40\xce\x18\xb9\x47\ \x0a\x8a\x2c\x36\xd7\xbb\xdd\x3a\x6d\x1f\xdd\x90\x68\xf1\xd9\xa7\ \xd0\x81\x9b\x5b\x15\x7d\x29\x3b\x01\x3f\xa5\x6c\x15\x7c\xa1\x51\ \x9c\xc7\x01\xb0\x13\xa5\x37\xcf\xc0\x49\xf5\x1f\x0b\x76\x52\xef\ \xc4\x16\x92\xf1\xd4\xb8\x13\x16\x6b\x86\x19\x23\xdb\xe8\xff\xd2\ \x91\x2d\x0a\x69\x55\x8b\xa5\x04\x89\x51\xba\xff\x9b\x8c\x6c\x5b\ \x30\x8d\xe9\x5e\x15\xcf\x43\x52\xd8\x55\x71\x75\xaf\xd8\xe3\xf7\ \x24\x3d\x55\xcb\x7a\x42\x25\xd8\x15\xcc\xce\x52\x9d\x5e\x45\x9e\ \x5b\x05\xda\xac\x99\xe7\x16\x82\x22\x7d\x6b\xf0\x2a\x09\xdc\x25\ \x5b\xfb\x54\x03\x9a\xc4\x82\x39\x2f\x8a\xa2\xaa\xe7\xe6\x02\x31\ \x5a\x82\x93\xa6\x2b\x09\xbe\x5b\xa1\xbc\x89\xa3\xea\xb8\x5d\x88\ \x7b\x9e\x9e\xb6\x4f\x29\x1e\xc6\x96\xfe\xd7\x74\xa3\xaf\xb7\x45\ \x19\x1e\x21\xad\x8f\xf4\x4e\x58\xea\x50\x4e\x3b\x44\x71\x7d\x68\ \x55\x79\xe0\x64\xcf\xb4\xfc\x32\xb5\x20\x28\xc1\xe6\xf5\x8d\x7e\ \x2e\x7e\xb6\x15\x43\xa3\x26\xf4\x7a\x10\x7d\xd4\x79\xa9\x9b\xe8\ \xdf\xf6\x60\x37\x43\x85\x77\xda\x07\xe0\xb1\xae\xab\xf9\xe9\x1a\ \x19\x5a\x97\x88\x7c\x80\xff\xf0\xcb\xa9\x46\x34\xa7\x12\x4a\x23\ \x4d\x95\x72\x26\xca\xa2\x77\x92\xaa\x29\xf7\x00\x9f\x9d\x27\x1c\ \x3b\xf6\x49\xb3\x9e\x40\x33\xce\x6a\x85\xcc\xb2\x10\x34\x6f\x4b\ \x72\xc0\xba\xd1\x76\x51\x02\x57\x22\x40\xf5\x45\x3a\xec\x22\x00\ \x10\x81\xd8\x4a\xf2\xa5\x23\xbb\xbc\x6c\xb2\xee\x0e\x7a\x08\xfa\ \xa2\x0e\x90\x3f\xe1\xfc\x22\xcb\x82\xec\x4f\x83\xa5\x0c\xdf\x76\ \x6e\xb7\xab\x1b\x6b\x23\x81\xab\xe7\x29\x62\x2d\xbb\x66\xd7\x9e\ \x10\x87\x1c\x85\x62\x33\x93\x22\xcc\x45\xfa\xf5\xce\x0e\x5d\xd1\ \x4a\x66\xad\xf8\xa1\x7a\xbd\xb6\xcf\xe2\x3d\xae\x1a\xa4\xca\xd1\ \x34\x3d\x01\xec\x94\xe7\xe2\xe9\x87\x21\x30\x6c\x1b\x6c\x2e\x04\ \xa4\x9b\x7a\x8f\x4f\x68\x96\x02\x64\x52\x51\x68\xbd\xdf\x7c\x5b\ \x93\x63\xa7\x38\x22\xc8\x82\x10\x25\xdb\x3e\x5f\x1e\x50\xd2\xed\ \xd2\x61\x35\x5b\x1b\x87\xf6\xcc\x4a\x12\xd4\x31\x4e\x46\x5a\x00\ \x29\x19\xc2\xe9\x3e\x29\xa8\xa6\x20\x4e\xa1\x4c\x23\xcd\xd3\xd9\ \x1f\x6b\x42\xa7\x18\x62\x91\x0e\x81\x55\x61\xa8\xf3\x6c\xd6\xe4\ \x10\x62\xf5\x28\xba\x19\x9d\x89\x8b\xd3\xa7\xbd\xba\x26\xc9\xa8\ \x4d\x14\x2e\x1d\xde\xfd\x50\xf0\x18\x02\x3e\x6e\xe8\xe6\x50\x8e\ \xd5\x76\x36\x65\x31\xdb\x26\x9d\xac\x4a\x73\xae\xd4\xb9\x09\x76\ \x27\xc1\xe6\x08\x64\x15\x8a\x15\x25\xab\xb2\x9d\x28\xf4\xfd\x30\ \xae\xd2\xeb\x57\x5e\xed\x1a\x37\x45\x7f\xa0\x34\x05\x21\x30\x24\ \xe0\xa9\x20\xc2\xaa\x44\x9d\x11\x5b\x30\x79\xd0\x64\x2d\x8e\xb3\ \x10\x5b\x91\x49\x65\x8b\x00\x48\x9e\x3c\xdb\xef\x86\x28\xd3\x33\ \xd1\x33\x02\x6f\x17\xf3\x46\xf8\xca\xf7\x43\x88\xf5\x5c\x82\x8e\ \xb1\x60\xf5\x0b\xba\xf3\xf2\xb5\x93\xb0\xed\x30\xa9\x6d\x34\x2b\ \x6e\xb5\xa9\x1d\x28\x9e\xc9\xdc\x04\x4e\xca\x75\x84\x5d\xb2\x01\ \x50\x48\xf1\xe7\x41\x67\x4d\xd1\xde\x39\xb2\x30\x5d\xae\xa1\xe6\ \x00\xfd\xca\x87\x61\xa6\x73\xd3\xb4\x77\x87\x18\x6b\x8a\x57\x8a\ \x3c\xb0\xc6\xe2\xd0\x14\xba\xc4\x10\xd7\xfe\xb4\xa6\xaa\x02\x25\ \x43\x7e\x77\xd3\x23\xd1\x45\x1c\x82\x2e\x94\x6a\x34\xda\x13\x6f\ \x17\x04\x5a\x12\x69\x43\x06\xe6\xa7\x0d\x33\xd9\xc9\x24\x18\x18\ \x1f\xf2\xae\xee\x45\xdd\xf4\x7a\x67\xe1\x1e\xf1\x10\xdc\x41\x6d\ \xb8\x51\x52\xaa\x3e\x45\x7e\x68\x29\x65\x2f\xc6\x13\xbe\xdd\x7a\ \x11\x26\x3d\x19\x97\x9e\x28\x40\x33\x25\x2e\xb8\xb6\x41\x10\x38\ \x4b\xd9\x12\xe9\x5a\x30\xb8\x3e\x5d\xe5\xa9\x53\x96\xe0\x8c\xb5\ \xc1\x1e\xec\x60\xc4\x62\x02\x5e\x71\xaf\x24\x10\x4e\xc9\x71\xe6\ \x03\xe4\x80\x3a\x87\x7a\x59\xb8\x46\xa7\x16\x12\x4b\x35\x4d\x07\ \xc4\xa9\xd7\x11\x25\x46\x36\x94\x66\x51\xe1\xdc\xf5\x93\x20\x8b\ \x4c\x4b\x6a\x00\xb9\x4a\x87\xbd\x98\xe6\xfa\x41\xb8\x62\x5e\x6f\ \xdc\x38\x8e\x93\x0c\xe6\x64\xe3\xf0\xb2\xe7\xc6\xd5\x67\xe3\xb2\ \x37\xa4\x93\x0b\xc8\x83\xcb\x94\x27\x9c\xa2\x92\xe9\xe6\x61\xb3\ \x54\x57\xca\x13\xc2\xe5\xdd\x5a\xea\x24\xf6\xe1\x8c\x30\x58\x74\ \xf9\x39\xd3\x28\x55\xca\x1b\xd2\x44\xe9\x9a\xb1\x26\xcd\x2c\xcd\ \x22\xb8\xe6\x86\xe2\x6d\x5d\xf8\x3a\xb7\x35\x39\x4c\xe3\x0a\x33\ \x11\x8c\xef\xc0\xc2\xaf\xae\x44\x57\xce\x4e\xd6\x59\x35\x50\x59\ \x66\xde\x98\xd7\x78\xe2\xc1\xfa\x25\xda\x01\x6c\xa0\x93\xde\x39\ \xca\x32\xe8\xeb\xeb\xb1\x89\x26\x13\x11\x0f\xb6\x24\xde\x82\x2c\ \xa3\x6c\xc4\x1a\x70\x1b\x6a\x29\x6d\x82\xec\x9e\x1a\xe7\x47\x5b\ \x45\xf5\x9f\xae\x1f\xd3\x5e\xbd\x7a\x76\xcc\x3a\x0c\xaf\xc1\x44\ \x27\x27\x0e\xd7\x4d\x73\x97\x81\xa4\x52\xe0\xed\x78\x8b\xe5\x27\ \x67\xc7\xbc\x3c\x2b\x36\x6f\xf3\xbd\x32\x03\xd4\xb8\xfe\xcc\x94\ \x10\x8c\xb2\xae\x80\x98\xfb\x06\xb9\x1b\xf6\xc6\x73\x1e\xff\x44\ \xdd\xe2\xe6\x6a\x84\xf2\xd2\x03\x01\xa5\x43\x03\xcf\xc8\x6f\xb9\ \x8a\x24\xd9\xcb\x98\xef\x27\x7a\x8b\x1e\x8b\xac\x46\x2a\x72\x36\ \x65\x41\xa6\x11\xf5\x74\x04\x80\x95\x57\xcd\x3d\x3c\x70\xe3\x10\ \xc9\x26\x4f\x86\xd6\x15\xcc\x05\x63\xb3\x28\x87\x54\x16\xf1\x38\ \x28\x8f\x35\x9a\x60\xf1\xe5\x16\x0a\x93\x7c\xaa\x1d\x28\x99\x0e\ \x83\x31\xff\xb2\x62\x77\xb1\x0a\xf5\x1c\x21\x7a\x5f\x67\x2a\xe6\ \x86\x3d\xa4\xe6\x2a\xbd\xa7\x3e\x17\x44\x15\x7c\xb1\x66\x9c\x07\ \x2b\x06\x63\x1c\x53\x8f\xbc\x39\x3d\xbb\x28\xdb\x9f\xc1\xa8\x97\ \x6e\x1a\x92\x3c\xf3\x65\x0d\x39\xa3\x3c\x45\x68\x90\xfa\xfd\x4c\ \x6f\x57\xe8\xae\x42\x2b\xb0\x76\x0c\x0a\x3b\xfd\x84\xd3\xd3\x83\ \xfe\x02\x1d\xa5\x6a\xaa\x8d\x73\xd7\xa4\x19\x89\xb2\x55\x93\x19\ \x81\x15\x49\xbb\x78\xb3\x28\x87\x64\x16\xb1\x57\x87\x46\x17\xad\ \xda\xd1\x0a\xbb\xda\x56\x82\x8a\xa7\x0b\x17\xd8\x7f\x19\xd8\x72\ \xcb\x51\x30\xe3\x81\x6d\x86\xe7\xd8\x60\x55\x1d\x86\xd9\x45\x09\ \x9b\xd2\x07\x5f\x14\x93\x53\x99\x1b\x52\x82\xc5\x59\x94\x8b\x74\ \x7c\x08\xe3\x25\x0d\x0a\xf2\x9a\xe1\x87\x70\x88\xb3\x98\x8d\x45\ \x73\xb2\x74\x50\xf8\x2f\x17\xc7\xda\x29\x64\xd1\xca\x4a\x15\x1d\ \x50\x48\xf8\xac\xe4\x0a\xe0\x52\xa9\x3b\xd7\x4b\x8a\xc7\x0c\x5f\ \xdf\xa9\xb7\x41\x93\x1d\x02\x96\xca\x81\xb9\xb6\xcc\x21\x90\x76\ \x18\xec\xc2\x0f\xd8\x4b\xaf\xd6\xbb\xba\x85\x94\xb0\x67\x48\x60\ \xca\xdb\x8c\x49\x81\x8e\x96\xbb\xac\x9c\x16\x46\x0b\x5d\x7b\x01\ \xf1\xb8\xe8\xe3\x0a\xb7\x63\xe4\x14\x40\x9b\xf1\x0f\x8b\x64\xd0\ \x2e\xa2\x40\x37\xc2\xba\x71\x61\x5f\xce\x4d\x66\x71\x7b\x8b\xcf\ \x34\x72\x02\x19\xbb\x47\xa2\x6a\x63\x5c\x15\x8e\xf4\x38\x94\xfe\ \x1a\x09\x2d\x0d\xa0\x12\x1f\x90\x85\xee\x68\xb9\x26\xa7\x4b\x86\ \x06\x6c\x5d\x17\xa5\x66\x2d\x45\xe1\x2c\x57\x66\xda\x67\x30\x6f\ \x48\xfb\x08\x42\xeb\x55\x4e\x9d\xdc\x8e\x45\x29\x43\x86\x31\xe1\ \x1b\x0d\xed\x1b\x1a\xf2\xcb\x67\x48\x73\x08\xfb\xa6\x6c\xa2\x35\ \x47\x6a\xc1\xb8\x2c\x5d\x27\x17\x55\x42\x93\x92\x13\x8f\x32\x7a\ \x5f\x11\x1f\x1c\x0c\x65\x63\xa8\x2c\x74\x95\x9c\x4c\xec\xce\xfa\ \xd4\x14\x04\x05\xa1\x07\x70\x58\x73\xfb\xd4\x21\x18\x7c\xd7\x41\ \xfa\x4e\x64\x4b\xdc\xc6\xce\x6f\x02\xca\x41\x9b\x12\x58\x2d\x78\ \x30\xc3\xfc\x3e\xa0\xd6\xc9\x18\x20\x81\xa5\xb6\x28\xe6\xbc\x5b\ \xe9\x45\x91\xd6\x55\x44\x7c\x9e\xa2\xea\xc4\x16\x10\x45\x10\xe0\ \xc3\x35\xe5\x18\x87\x83\xe2\xcc\x7d\x12\x1d\xea\x42\xcd\x44\x60\ \xc0\x96\x51\x58\x6d\xce\xce\x8e\x84\x66\xfe\x55\x58\x4a\x22\xf4\ \x80\x68\x96\xbb\x5c\xf4\x14\x9c\x28\xec\x2d\x20\x91\x40\xf3\x73\ \xb9\x79\x90\x7c\xf2\xc9\xbb\xa4\x2b\x65\xb9\xef\x0f\xf4\x22\xba\ \x4f\xba\xff\x94\xf8\x25\xb4\x79\xe7\xae\x89\xc9\x53\xc2\x9f\x8a\ \xb8\x9d\xf0\x20\x29\xdc\x0b\xff\x86\x78\x18\x7d\xe9\xdd\x10\xf0\ \x69\x7e\x90\xfc\x3e\x70\xf3\x90\xda\x77\xb4\x3a\x0d\xfb\x51\x6e\ \xfa\x94\x88\xfa\xb0\x7f\x90\x2c\x1b\xc7\xf3\xb0\x51\x94\x3e\x64\ \xc4\x85\xc0\x6b\xa4\x3a\xb5\x55\x1d\xa2\x45\xd9\x84\xcb\x19\x2a\ \xf3\x7a\x61\x6d\x34\x03\x3f\x2f\xca\x21\xca\xaa\x28\x6d\x09\x64\ \xa6\x62\x61\xbb\x09\x66\x5e\x2a\x8f\x23\xda\x98\x0d\x98\x12\x90\ \xaa\xf5\x3a\xc6\x68\xc7\x9a\xe1\x3f\x84\x2d\x63\x39\xbd\xb3\xd2\ \x87\x1e\xee\xa8\x32\x26\x2e\x4a\x01\x05\x84\x27\x15\x4a\x3f\x4c\ \x18\xaa\x45\x94\x72\x5b\x93\x03\xf0\x41\xe5\x68\x44\x7b\xa2\xeb\ \x7f\x28\xa9\x1f\xa8\x7a\x9a\x69\xbb\x62\xc8\x11\x94\xd2\xaf\x2d\ \x03\x7a\x11\x7a\x4b\xb0\x75\x10\x64\x39\x13\x7a\x08\x10\x34\x28\ \xbc\xf4\x3f\x78\xc8\xce\x5d\x13\x53\xa9\x6c\x69\xc0\x8a\x55\x46\ \x58\xb0\xdd\x84\x94\x6d\x98\x6d\xcf\x28\xf6\x22\xe4\xad\x7d\xa5\ \x47\xcf\x0f\x90\xd5\xb5\xb6\x58\x7c\x87\x62\x1e\x4c\x37\x25\xf1\ \x88\x70\x36\xf3\x26\xd8\x24\xee\xa4\x59\xad\x67\xe8\x8c\xa4\x60\ \xe3\xd6\x3c\x1b\x5a\xa6\xd7\x33\x90\x0f\x10\x9d\x78\x3c\x2e\x39\ \xbf\x49\xf0\xf7\x4c\x34\x24\x0b\x1b\x94\x4b\x50\x12\xfa\xff\x36\ \xaf\xbb\xd4\x98\x4d\x74\xf0\x0b\xf6\x5c\x98\x32\xf4\xe5\x56\x35\ \xf1\x43\xea\x20\xcc\xcc\x2c\x0a\x1f\x23\x0a\x09\xbe\x16\x04\xa8\ \xbe\x89\x85\xcd\xf3\x7b\x19\x8b\x62\xc3\x2f\x88\x81\xe8\xe9\x43\ \xc6\xee\xb5\x6d\xd6\xe4\x38\xfc\x0a\xfa\xea\xe0\x00\xfd\xd2\x40\ \xad\xd7\xab\x63\x7c\x78\x55\x56\x50\x0a\x83\x16\xb8\xad\x49\xa7\ \xef\x6a\xaf\x89\x99\xdf\x19\xe0\x8e\x21\xa2\x69\x5b\x33\x7d\x2b\ \x61\x1e\x1c\xe4\x2f\x94\x33\x55\xd4\x03\xb0\x94\x75\xf8\x91\xac\ \xd2\x8b\xfd\x6b\xc3\x41\xc6\xdb\x4a\x94\xe2\x2d\x70\x42\x18\x2b\ \xb5\xee\xcb\xee\x75\x1d\x5a\xc6\x9c\x6b\xa2\x36\x52\xb8\xb0\x6f\ \x1f\xaa\x51\xcd\x11\x5c\x37\x89\xd1\x9d\x96\x4c\x41\xc1\xa5\x34\ \x78\x2b\xd5\x92\x88\x33\xe6\xa0\x4b\xc8\xfb\x38\xbc\xee\xc1\x75\ \xce\xed\xf0\xa4\x32\x86\x50\x2a\x87\x18\xfb\x24\xa3\xec\xdd\x57\ \x63\x69\xef\xaa\x8c\x3b\x74\x4e\xa6\x02\x57\x17\xb1\xb3\x8b\x85\ \x87\x6f\xaa\xeb\x32\xee\x2b\x0e\xc4\xcb\xda\xdf\x51\x49\x91\x91\ \xf5\x84\x61\xb5\x3a\x12\xed\xb3\x6c\x95\x91\x85\x17\x18\x01\xb0\ \xcc\xd5\x78\x55\xcd\xcc\xeb\x42\x1f\x4b\x1f\x15\x93\x34\x6c\xf3\ \x36\x4b\x72\x54\x7a\x88\x98\x6a\x20\x9f\xa2\xf8\xdc\xaf\x23\x8b\ \x03\xc2\x61\xc5\xcc\xb4\x14\xc4\x43\x2e\x2b\x49\xce\x53\x92\x33\ \xa9\xd3\x55\x09\x2d\xfa\xa4\x8b\xae\x50\x40\x6b\xc8\xe8\x26\xca\ \xb3\xe6\xb6\x32\xb2\xf9\x16\x65\x2a\xc4\xda\x93\xf9\x04\x75\xe3\ \x12\xdd\xf2\x84\x1d\x49\xee\xcb\xf6\x6c\x64\x3d\xe5\x7b\xca\x6c\ \x0a\xe2\x77\x57\x43\x1d\x33\x04\xe4\xf8\x19\x78\x82\x37\x5f\xbc\ \x24\x74\x30\x3a\x48\x50\x92\x22\xe0\x33\xa7\x0e\x2c\xd5\x10\x0f\ \x48\x27\x3a\x53\xb3\x9e\xba\x51\x72\x30\x15\x4a\x67\xa3\x9c\x40\ \x9a\x90\x37\xb0\xa1\xb0\x63\xc9\xf5\x67\xc4\x79\xc0\x3c\xe0\x81\ \x1c\x46\xdb\xe3\x6a\xd1\xae\xdc\xcb\x40\x43\x51\x39\x94\x77\x2b\ \x6c\x08\xe0\x52\xc5\xe1\x4a\xd5\x5e\x1b\x8c\xb3\xfd\x4c\x1b\xf8\ \x31\xe7\x4e\x39\x30\x6c\xe5\xb9\x67\x27\x9b\x6f\xbd\x07\x76\xa1\ \x62\x0c\x59\xe0\x32\xd8\x6a\x9f\xd7\xe4\xd0\x30\x86\xa7\xc4\x08\ \xaf\x03\x1d\xef\xee\x01\xd6\x6d\x19\xba\x01\xe0\x2e\x54\xe0\xdc\ \xec\x9c\xb0\x38\x74\x81\xd8\x1b\x30\xd1\x3d\xeb\xa2\x1b\x4a\x5b\ \x2f\x26\x04\xea\x9f\x79\x7d\xc0\xb1\x28\x85\xdc\x09\xe9\x49\xad\ \x38\xd7\x35\x40\xe7\x7a\x1f\x51\x76\x2c\xb9\x2f\xa3\xa9\x0a\x90\ \xeb\xe9\xe0\xe4\x65\x10\x7f\x51\xf6\x1c\x63\x08\xdd\x2d\x19\x4a\ \x4d\xc8\x8b\x59\x0f\x95\xab\x2e\x22\x6c\xb7\x74\x09\xd7\xc5\xe8\ \x69\x17\xe9\xb5\x41\x90\x0d\x81\x62\x4f\xdb\x6b\xee\x50\xdb\xbc\ \xe1\x18\x95\x23\x4f\xa2\xcb\x91\xe9\xc2\x3d\x7f\x23\x1c\x58\x72\ \xb0\x5d\xd1\x1c\xe8\x7c\x8a\x50\x1f\xa8\xda\xab\xe1\x3b\x1b\x1c\ \x6c\x70\x6d\x2b\xba\xd8\x62\x2b\x2d\xe9\x1a\x8c\x3a\x78\xb2\x4f\ \xf4\x0e\x01\xea\x75\x2d\x26\x0e\x72\x73\xd3\xc9\xe2\x4c\xb0\x44\ \xd5\xb7\x52\x05\x7e\x49\x6b\xf6\xe2\x6f\x4b\xb2\x27\xc9\xf9\x67\ \xbb\x00\xa9\xa2\x3a\x36\x03\xfd\x91\xb1\x1c\x5d\x22\x06\xf6\x1d\ \xba\xe2\x80\x56\x9b\x8c\x59\xc4\x75\x3c\xd7\x8a\xd7\xe7\xa9\xd8\ \x43\x87\xf4\x4f\xe1\x68\x4e\x39\x73\x65\x81\x43\x31\xdb\x4d\xba\ \x7a\x19\x57\x8b\x4a\xac\x0f\x9b\x80\x52\xf6\x04\x8e\x50\x4c\x84\ \x15\x25\x54\xf0\xb7\xe1\xfa\xb0\x45\xd5\xb6\x73\x0a\x92\x60\x29\ \x6a\x2b\xeb\xbd\x53\x22\xc1\x02\x81\xd0\x8a\x1f\xd9\xa9\xf3\x97\ \xc7\x7e\x4a\x4f\x02\x11\x2b\xce\xcb\xd9\xc6\x9a\xa4\xd1\x62\x52\ \x1e\x60\x4d\x27\x08\xbe\x9b\x52\xac\xec\xc5\x1e\x62\x1e\xc6\x32\ \xe4\xfb\xc0\x6c\xaf\x2e\x09\x1e\xe0\xd4\x98\xe6\x18\x89\x5c\xf2\ \x6d\x9b\x40\xe9\x68\x6c\x04\xd5\x67\xe5\x44\x73\x1d\x0f\xfb\x1a\ \x71\xb4\xc3\x6e\x6b\x55\x61\x9b\xb7\x24\xcc\xe4\x60\x32\x65\xd5\ \x60\x0d\xdf\xa0\x1e\xee\x6d\x15\xc3\xde\x20\x4e\xd7\x4e\x43\xa6\ \x49\xd5\x69\x53\x68\xf3\x8f\xf0\x7c\x10\xe5\xd7\x75\xdb\xe9\x75\ \xc5\x7e\x5b\x13\x0f\x44\x26\xe3\x80\x55\x4d\x63\xed\xac\x8d\x51\ \x1b\x32\x3a\xfa\x7e\x64\x1c\xe7\x6a\x0c\x29\x41\x36\x4d\xa8\x4a\ \x93\x38\xd2\x1b\x50\x0d\x91\x37\xe1\x64\x1f\x61\x2b\x90\xf3\xce\ \xc8\x14\xde\x7f\xb9\x7c\x13\xa3\x2e\xc2\xcd\x85\x78\x3b\x02\xc0\ \xed\xe6\x2e\x8c\xf7\xb3\xde\x10\xed\x2c\x45\xcf\x33\x85\xa1\x8c\ \xbd\x82\x59\xb4\xea\x62\x8a\x71\x2a\x0f\x59\x97\x86\x59\x5a\x20\ \xcd\x85\x4e\xa8\xa9\x72\xb6\x4d\x03\x7d\x6f\x12\x97\x81\x66\xea\ \x0d\x75\x55\x24\x50\x09\xfa\x65\x52\x4b\x7d\xd6\x7d\x0b\xf4\x95\ \x01\x3f\x90\xc3\x95\x5e\xda\xf4\x41\x9d\xea\x29\x83\xd8\x97\x93\ \x6b\x27\x3d\x0f\x8e\x16\x44\x1f\x50\x32\xf3\x78\xc8\xb6\x4f\x6a\ \x30\xe7\x19\x64\x4f\xaa\x59\x29\x28\xad\xdc\x74\xbb\xea\x5e\xae\ \x12\xe1\x9f\xc8\xb5\x9d\x74\x72\xea\x75\x2b\x23\x64\x7c\x00\x79\ \xf2\x26\x48\x64\x17\x42\x00\x3c\x1f\x47\xa9\x4b\x82\x82\xe6\xfd\ \x31\x63\xa3\x9b\xac\x08\x54\xd1\x46\x67\xb6\xd0\xe7\x0e\x29\xb1\ \x89\x33\x79\x1a\x0f\xd8\x84\x72\x47\x39\xf5\x06\x35\xb4\xe7\xc8\ \x01\x4b\xe0\xde\x01\x3e\xc2\x8e\xb9\xee\xd3\x0a\x74\xb8\xd2\x1d\ \x52\x8e\xee\xb5\xef\xd2\x8a\x90\x89\x48\xbc\x76\xbc\xf1\xb8\x8e\ \x4e\x35\x3c\x31\xfa\xc3\x6b\xde\xeb\x4a\x70\x93\x59\x12\xaa\x57\ \x8c\x3a\x62\xe3\x74\x84\x0a\xe8\xa4\xa7\x4d\xbd\x53\xf7\x34\xe4\ \x84\x68\x85\x36\xb6\xc7\xd9\xb0\xf6\xcb\x01\x05\x1b\xa0\x8a\xe2\ \x94\x4e\x20\x71\xcc\xaf\x7e\x46\x09\xbf\xa9\x88\xec\xaf\xc9\xa1\ \x9c\xc5\x58\x88\xa7\x94\xd4\x26\x47\x5e\xc3\xdc\x94\xad\xda\x44\ \x0e\x62\x51\xc2\x84\xd3\xd1\x2d\xf6\x9b\x34\x76\x47\x92\x4b\xcf\ \xb6\xb1\x13\x45\x80\xf2\xea\xf1\x8e\x2e\xa6\x27\xd0\x46\x70\xc1\ \xeb\x43\xd6\x34\x2f\x87\x07\xad\x2b\x05\xac\x4a\xa0\xd1\xcf\x3f\ \xa3\x04\x04\xc6\x64\xb4\x0a\xc0\xa6\xf5\x1f\x20\x84\x5d\xdd\x27\ \xcd\x7a\x05\x7a\x2e\x25\x6c\x4e\x37\x31\xaa\x7f\xe5\xde\x25\x27\ \x1c\x48\x72\xc1\xa8\x9f\x40\x9f\xf0\x86\x71\x0f\x0c\x29\xa1\x6d\ \x11\x4d\x69\xaa\x95\x45\xff\x11\xc8\x1d\xd4\x55\xd2\x13\x74\xb5\ \xeb\x89\xbb\x85\x7f\x1e\xd9\x80\x4e\x8d\x0a\xe8\x9a\xeb\xdc\x7d\ \xd2\xcc\xdd\xc2\x43\x5b\xc4\xdb\x3a\x19\xee\xfc\x3e\x3f\x69\xfb\ \x2c\xb6\xa4\x86\x29\x33\xec\x7b\x6c\xbc\x2e\x0f\xb3\x0b\x41\x21\ \xe9\x56\x07\x70\x88\x5b\xc6\xba\x4d\xf0\x0a\xd7\x06\x50\x56\x06\ \xf0\xe1\x64\x49\xb0\xe3\x80\xc1\xe6\x95\xb7\x15\xb8\xba\x73\xab\ \xe2\x36\xa4\x1e\x1a\xf4\x73\xba\x9f\x96\x4f\x6f\x50\x88\x7b\x26\ \x9a\xd9\x10\xf3\x21\xc6\x3c\xa1\x3e\x22\x46\xe5\x72\x44\x5c\x98\ \x2e\x4a\x5d\x29\x91\xda\x27\xf8\xa2\x40\xd6\x26\x87\xc4\x9d\xf2\ \xa4\x1d\x6b\xee\x8c\x60\x34\xe0\xff\xf4\xb9\x04\xd3\xd0\x4c\xb4\ \x4c\x0f\x07\x65\x88\x33\xe1\xcb\xb0\x09\xf8\xbc\x28\xfb\x7e\x6c\ \x0c\xd4\xe8\xce\xc0\x31\xd4\x6e\x57\xe3\x49\x34\xc3\x44\xe6\xd6\ \x85\x5e\x49\xc8\x6b\x8c\x45\x0e\x51\x2b\x15\xb0\x00\x68\xe9\x34\ \xc6\x56\xac\x96\x41\xcf\x03\xb8\xea\x93\xe7\xb6\xcd\x04\x75\xaa\ \x09\xfe\x39\x8c\x30\x43\x1d\x7e\xb2\xb7\x18\xbb\xe3\xa2\xf5\xe7\ \xc8\xd8\x50\x6b\x68\xf0\xaf\x41\x28\xbc\xd8\x7a\x44\x6d\xb7\x98\ \x37\x0c\x2e\x19\x37\x77\x0b\x46\xeb\x0c\x2f\x16\x42\xed\x31\x67\ \xd3\xa5\x80\xc3\x3b\x86\x02\x8c\x1b\xd2\x5c\x0e\xbf\xaa\x6d\xd3\ \x67\xc4\x80\xb2\x93\x77\x40\x60\xb9\xa7\xb6\x86\x3d\x15\x4d\x35\ \x60\x75\xa6\x7e\x90\x4c\xe2\xe5\x7a\x40\x31\x8d\xdd\xa2\xea\x82\ \x5a\xc7\x6e\xdd\x65\x4d\x90\xe9\x36\xd8\x03\xeb\xbe\x0c\xe9\x76\ \x6b\x02\xec\x17\xdc\x45\x06\x18\xda\x26\x83\x55\xbb\x81\x1e\x1a\ \x9d\xc4\x8c\xdc\x56\xa6\x0d\xb0\x99\xef\xef\xb9\x68\x8a\x70\x0d\ \x41\x48\x5f\x00\x3d\x20\xde\x78\x3d\x41\xc1\xdf\xad\x63\x25\x58\ \x69\x35\xf7\x15\x09\xd2\x00\xcc\x02\xc9\xd7\x25\xa8\xdb\xf8\xac\ \xcd\x16\x61\x8d\x80\x7c\xc0\x3e\x7d\xe2\x7c\xdf\x2e\x9e\x9e\x8c\ \x5f\x4b\xcc\xc4\xa4\x88\x5c\x2c\x6e\x72\xb6\x1d\x17\xad\x3d\x03\ \xa4\x71\x00\xf1\x9b\xb5\xc3\x1e\x38\x3b\x54\x57\xc0\x1d\x4a\x33\ \xeb\xb9\xbe\x5c\x3c\x21\x96\x44\x46\xa8\xf5\x86\xb8\x7e\x86\x03\ \x69\x58\xc2\xa8\x0c\xc1\x65\xa7\x4f\xa4\xe7\x8d\x25\x81\x25\x81\ \x8b\x20\x76\xa9\x11\xee\xe4\x20\x8a\x7e\x5e\x92\xbd\x2d\x27\x16\ \x25\x28\xd1\xe9\x51\xc0\xfa\x3e\xd0\xb6\x47\x8a\x1b\x21\x66\xba\ \xe3\xd0\x65\xd7\xba\x18\x86\x11\xbd\x37\x74\x2a\x4b\x3d\x5e\x3b\ \x8d\x3b\x81\x39\x3a\xea\x4f\x6d\xad\x12\xe7\x1d\x1d\x4b\x63\xa3\ \x8a\x2d\x95\xa0\xa8\x3d\x20\xd9\xb9\xc1\x34\x1f\xb9\x68\x20\x7c\ \x98\xc6\x67\xc4\x10\xd2\x75\xe9\x98\xf0\x0c\xb0\xc6\xe3\xcf\x04\ \x9d\x39\xfb\x55\xca\x9b\x76\x12\x90\x07\xe3\x3b\x95\x13\x9c\xb7\ \xae\x26\xb3\x50\x33\x86\x45\xf1\x61\xae\x8d\x83\x76\x06\x75\x07\ \x72\xc7\xc6\xd2\xd0\x3b\x1a\x09\xc1\x1a\x4e\xe2\x9e\x8a\x16\x8c\ \xda\x0a\xff\x25\x32\xc0\x1c\xbe\x54\x17\xf3\x58\x5f\x55\xec\x95\ \xa1\xaa\xee\x46\xed\x69\x22\x88\x68\xad\x1a\xc3\x48\x6b\x16\x4e\ \xf5\xf9\x0b\xcd\x7a\xf2\x06\x94\xfd\x5b\x9e\x0a\x03\x89\x6e\xb4\ \x63\xd1\xe6\x40\x35\x96\x7d\x9b\x36\x92\xef\xd1\xed\xd1\xbb\x08\ \xcb\x99\x0a\xbe\x56\xa5\xfb\xeb\x1a\xcd\x89\xe6\xbb\x4e\x0e\xd4\ \xc3\x86\xb5\xfc\x1a\x4f\x6a\x41\x53\xde\xe9\x3e\x02\x98\x7b\x8a\ \x68\xa6\x69\x0c\x66\x49\xc9\x7f\xaf\xa3\xe3\x33\x71\x4d\x92\x32\ \x0e\xb0\xe7\x18\x7d\x00\xc0\x01\x61\x70\x97\xdb\xc7\x3d\x13\xcd\ \xeb\x30\x07\xc6\xb5\x88\xb5\x23\xe6\x71\xb9\xa7\x14\x11\x70\x4a\ \x40\xc3\x4c\xf3\x39\xd4\x9b\x64\x99\x2e\xd8\x84\x37\x90\x52\x43\ \x1d\x92\x33\x6d\x3b\x9e\x80\x31\x48\x02\xef\x57\xca\xd4\x06\x8a\ \xb6\x27\x51\x2d\x98\x0e\x3f\x6e\xa5\x61\xd5\x8d\xb8\xad\xc9\x9e\ \xee\xcb\xad\x9d\xf0\xb7\x40\x38\xd1\x87\xcb\x93\x0c\xa4\xed\x2a\ \x12\xe6\x60\x80\x91\xb0\xbb\x29\x2a\xe0\x24\x09\x44\x35\x13\x65\ \x4e\x62\x2c\x0e\x6a\xce\xf0\x5b\x78\xa7\x40\xfe\x9a\xbb\x24\x8d\ \xb2\xb8\x9b\x25\x0c\x38\x3e\x70\x54\x9b\xf4\x24\x1e\x98\x68\xe4\ \x9c\x68\xef\x9a\x1f\xd8\x42\x0e\xbe\x68\xfa\xc8\x68\x86\xac\x58\ \xb5\x5e\xcc\x61\x9d\x8c\x16\x07\xba\x1a\xa9\x59\xad\xfa\x19\xf0\ \xdd\xe8\x0b\x19\x90\x3e\xe6\x58\xad\xce\x55\xb6\x53\x15\xf5\xef\ \x6c\x13\x7f\x48\x96\xe8\x5b\x60\xed\x0b\x1b\xb6\xe7\xcb\x52\xde\ \x80\x92\x01\xa2\x2a\x3d\xcf\x2d\xde\xa0\xbb\xfa\xbc\x88\xb6\x16\ \x02\x8c\xa3\xc4\x3c\xab\x00\x5b\x33\x6a\xbf\x37\xdd\xdd\x38\x97\ \x01\x1d\x87\x45\x9b\xae\x7a\x8f\xae\x21\x81\xc2\xf5\x7a\x2f\x1f\ \x1a\xfd\xa1\x1d\x8b\x6e\x49\x45\x85\x9e\x8e\xdc\x75\x0e\x27\x88\ \x1c\x12\x62\x04\x15\x14\xc8\x96\xf1\x26\x6b\x52\x5b\x2c\xe6\x53\ \x86\x6c\xe4\x89\xc9\x54\x84\x0a\x37\x7c\xa6\x94\x38\xfa\x89\x76\ \xa9\x63\x4d\xd2\x30\x52\xef\xd8\x4b\x63\xf0\x91\xe3\xd6\xcb\x2f\ \xee\x69\x68\x9d\x2e\x18\x6a\x19\x70\xb2\x53\x19\x26\x62\x97\x36\ \x4a\x05\x2d\x0e\x9a\x40\x81\xa3\x9b\x92\xf8\xba\x28\x19\x12\xa2\ \x01\xa6\x15\xc9\x4f\xc8\xbe\x09\xb9\x6f\x40\x18\x86\xf3\x2e\xdd\ \x4f\x85\x5a\x44\x6f\xa8\x02\x84\x99\x51\xe1\x74\x14\xe7\xd9\x85\ \xcd\xa2\xec\xf3\xd8\x8a\xa1\x86\xde\x54\x2f\x65\xa5\xe6\x5d\x6c\ \x9f\x70\xe1\x60\x05\x8b\x9a\x0f\xe2\xb2\x6b\xdf\x1e\x9b\x00\x65\ \x64\x65\xe0\x5c\xce\xfa\xf6\x05\x11\x26\xc7\xbf\x6a\x7b\xd7\x79\ \xd3\xe2\xb1\x26\x6d\x48\x0e\x36\x2a\x30\x07\xe6\xb4\xf9\x7b\xa1\ \xcc\x78\x64\xa1\x39\xf8\x9e\xde\x0d\x4f\x25\x77\x9d\x0b\x90\x69\ \x62\x82\x35\xa2\xbc\xd5\x0a\xdf\x10\x7e\x48\x7b\x10\xd6\xc0\xab\ \x2d\x56\x7e\x87\xa0\xa6\xb7\x58\x2a\x0d\x94\x02\xf9\x6b\x6e\x1a\ \x1b\x4c\x14\x32\x20\xbe\xde\xd1\xc6\x26\xce\x6f\xae\x9d\x3d\x09\ \xad\xa0\x1e\x8a\x05\x07\xb6\x57\x90\x3a\x1e\x58\x13\xc4\xcb\x91\ \x62\x49\x58\xbd\x95\x70\x23\xd2\x04\x65\x6b\xb9\x62\xc8\x0a\x9c\ \xe3\x8c\x48\x43\x91\xa8\xdc\x12\x7d\x73\x72\x94\x69\x36\x53\x29\ \xff\x65\x20\x55\x18\xc9\x58\xea\x31\x00\x62\xe6\xa2\xa3\xf5\x37\ \x00\xa9\x46\xe8\x71\x4c\xb2\x75\x07\x29\x63\xc0\xf8\xb2\x8f\x3d\ \x73\x3b\xd5\x07\x7a\x1c\xe0\x88\x88\x82\x16\x3a\xfa\x83\x24\x7c\ \x15\x3f\x15\x30\x31\x56\xac\xc2\x8d\xe6\xb3\xac\x01\xe6\xd4\xd4\ \x7a\xa8\xc2\xd4\x78\x72\x25\x2a\xb2\x74\xd4\x9f\x94\x7f\x42\x0a\ \xe8\x73\x0d\x84\xa2\x99\xc7\xd1\xb8\xa2\x23\xa1\x52\x42\x41\xb5\ \xfa\xcd\x0e\xde\xfb\x07\x29\xee\x3b\x3a\x2a\xa5\xa2\xbd\xde\x2e\ \xf7\x30\xa0\x8b\x28\xcc\xeb\x3d\xb4\x6c\x1e\x04\x37\x73\x0b\x1a\ \xa4\x9c\x75\x65\x08\x7d\xa1\xb8\xec\xb6\x3e\x8e\x34\x19\x21\x2c\ \xf2\xeb\x3e\x57\x8a\x4a\x87\xc2\x68\x1b\x94\xa5\x4a\xdd\x28\x4e\ \x43\xd8\xd4\x1c\x07\x72\x9c\x43\x13\xcb\xb9\x6c\x06\x8d\xfd\x3a\ \x39\x0e\xfe\x99\xe2\x37\x80\xe1\x60\xc2\x01\x75\x5d\x92\x00\x6c\ \xa0\xeb\x99\x7a\x42\xa2\xeb\xb0\x24\xdc\xa4\x41\x7b\xc8\x35\xdc\ \x64\x6a\x9c\x27\xa7\x33\x76\x09\x80\x32\xd0\xe4\x99\xd5\x86\x93\ \x55\x72\xd8\xec\x92\x5d\xec\x27\x19\x0f\xd4\xd3\x09\x11\x4f\x97\ \xeb\xe5\xee\x5f\x22\x99\x54\xea\xe3\xba\xe1\xc5\x57\x06\x32\xc8\ \x10\x88\x61\xde\x39\xe0\x21\xee\xe4\x3e\x24\x0d\x65\x90\xe0\x61\ \xe8\x79\xfa\x62\x53\xd7\xc4\x0c\xda\xe8\x35\x91\xfa\x33\x29\x0c\ \x6e\x03\xb2\x8b\x47\x6e\x1c\xdc\x7d\xca\x26\x93\x4a\x1a\x1a\xd8\ \x17\xd7\x24\xe2\xc3\x0a\x82\x3b\x62\xe8\x3a\xd8\x92\x2c\x95\x01\ \x0c\x90\x72\x1b\x10\xe7\x93\x7d\x92\x8d\xc6\x4e\xa6\xa7\x9a\x20\ \xcd\xb5\x0f\x8a\xd1\xd4\x74\x00\x54\x43\x78\x6b\x50\xb2\x5b\xb9\ \x47\x63\xc6\x3d\x37\x2e\x3c\x63\x55\x0a\x90\x15\x74\x44\x0b\x8f\ \xa8\xa4\x30\x38\x42\x95\xc0\x7c\x1c\x16\xd7\x5e\x10\xf8\x4a\xde\ \x91\xb2\x69\xa5\xb0\x17\xcf\x36\x8a\xb6\x74\xc7\xb1\x07\xee\x5c\ \x58\xb4\x20\xe6\x2d\x4a\x22\xfc\x63\xe2\x00\xde\xc2\xe1\x98\xbe\ \x91\xfb\x8b\x3b\x6a\x9c\xde\x11\x36\x64\xe0\x88\x23\xca\x2d\xe1\ \x01\x16\x18\xb2\x17\xca\x8d\x1c\x2c\x08\x65\x61\x2b\x7b\x9f\x42\ \x15\xf7\x28\xfc\x89\xea\x70\x0b\x3d\xe4\x08\x86\x92\xb0\x75\x03\ \x27\x31\x79\x49\x0c\xee\x80\xbd\x22\x7a\x86\x4a\xf1\xb5\x25\x5d\ \xdd\xac\xc9\x41\x15\x92\x9e\x6e\x45\x9a\xa4\x61\xf9\xf1\x00\x01\ \x59\xb5\xa7\xb2\x25\xf0\x0e\xb9\x60\xcb\xb6\x8e\x58\x40\xb1\x9b\ \xa9\x48\x81\x0e\x7f\xe6\x1f\x04\x4e\x09\x6e\x63\x00\x54\xdb\x26\ \xdf\xc4\x83\x19\x57\x71\x66\x8e\x66\x0c\xe3\xd1\xb2\xd9\x9c\x9d\ \x3d\x33\x4e\x57\x71\xaa\x66\x4c\x95\xe9\x04\x5e\x2e\xd8\x83\x11\ \x4f\xc8\xc3\x10\x5d\x09\xab\x2f\x0c\x60\xf3\xcc\x14\xac\x78\x87\ \x7d\xf7\x89\xb7\x05\xe0\x26\xcc\x7d\xa0\x08\x57\xdf\xdb\x5c\x45\ \xd5\x98\xdc\x10\xbf\x0c\x3a\x11\x98\x47\x75\xb7\x78\x7d\xde\x82\ \xec\x9e\x19\x07\x12\x40\x21\x8e\x46\x2d\x29\xd3\x30\x79\xba\xda\ \xc5\xc0\x5b\xba\xf1\xa9\x22\xb5\xdd\x3a\x8b\x83\xa8\x01\x63\x35\ \xa3\x47\x16\xea\xa9\x21\x19\x93\x8c\x4e\xe1\xc3\x03\x97\xb9\x5d\ \x8c\x64\xb3\xb8\x80\x4b\x76\x46\xc5\xad\x61\xb2\xb1\x5d\x94\x7d\ \x17\x03\x9f\x02\x24\x2a\xb5\x75\x1b\x36\xb4\xd7\x0f\x8f\xde\x83\ \xde\x05\xd3\x23\x9d\xd8\xc5\xdc\x19\x9c\xb2\x12\x47\x26\x28\x31\ \xe9\x9a\x3d\x37\x55\xd2\x39\x57\xbd\xe2\x4c\x13\x57\x71\x78\xee\ \xc5\x93\xcc\x07\x93\xf7\x95\x18\xc3\x39\x7c\xb5\x42\xdf\xac\xc9\ \x36\xc8\xa6\x67\x66\x3d\x66\x34\x57\x12\x16\x80\x0f\x38\x16\xc0\ \x14\x01\x9a\x4b\x52\x54\x17\x4d\x0f\x93\x93\x81\x9f\x89\xfc\x20\ \x89\xd9\x89\x6e\x0c\x78\x07\xf4\x4b\xf0\x71\x70\x24\xc1\x93\x0f\ \x4f\x31\x99\x2c\x94\x69\xb0\x62\x8e\x18\x61\x6f\xaa\x9d\x1d\xfd\ \xcc\x54\xdc\x50\xe5\x32\x39\x60\xdd\x0a\xf9\x81\x20\x1b\x1c\x43\ \x46\xaa\x1d\xb0\x0d\x8b\x06\x22\xa3\xc1\x54\x20\x9c\x7a\x13\x42\ \x0c\xc7\x04\x05\xc8\x3b\xc2\x60\x1d\xc9\xed\xcc\x8b\x99\xbb\x26\ \xcd\x6a\xae\x8e\xf2\xb9\xf2\x75\x4c\x6a\x52\xd9\xac\xc9\xc1\xd9\ \x02\x09\x0e\x3d\x2a\x24\x45\x45\xe0\xf8\x88\x7f\x38\xda\xc7\xb4\ \xfa\x82\xc3\x1e\xb4\x2d\x97\x31\x5e\x01\x05\x39\x60\xdc\x0b\x7d\ \x3f\xe6\x27\x68\xd1\xb3\x47\xb1\x95\xae\x69\xa6\x5f\xaa\x9d\x9d\ \xec\x06\x06\x04\xf6\x2c\x66\x12\x74\xc5\xeb\x26\x93\x3d\x98\xb4\ \x25\x34\x49\xf4\x65\x28\x02\x87\x07\x1a\x3b\x7a\x17\xca\x84\x1b\ \x6d\x2b\x54\xf0\x43\x5f\xe9\x22\x11\x25\xde\x00\x31\xc1\x0f\x4d\ \xf3\xe3\xc5\x63\x83\xe3\xe6\x70\xb7\xf0\x6b\xdb\x7d\xde\x9a\x58\ \x8c\x35\x7d\x0f\xd3\xe3\xc0\x9f\xb4\x6d\x3a\x3b\x7b\x97\x36\x33\ \xb5\x0d\x26\x3e\x9e\xf1\x85\x6e\x8f\x90\x37\x41\x4e\x27\xaf\x04\ \x1a\x9b\x91\xbc\x76\xbb\x7c\xef\x28\xe8\x20\xd0\x8c\xa2\xc0\xd9\ \xe1\x89\xb4\xaa\xab\x89\x98\xe8\x2a\xff\x01\xfa\xf1\xd5\xc3\x63\ \x2e\x6d\xf4\xac\x8c\x8d\xad\x0f\xaa\x7b\x76\x13\x63\x77\xfc\x33\ \x60\xfa\xf4\xa2\x1c\xfb\x9d\xaa\xe7\x11\xdc\x2e\x30\xe6\xa4\x42\ \x2e\x65\x06\x37\x6b\xb3\x4b\x21\x1c\x79\xd9\xee\x30\x7a\x4a\xfd\ \xec\x2e\xd6\x85\xa4\x10\x8b\x62\x71\x24\x28\xcd\xbd\x8b\x33\x78\ \x07\xaa\x17\x3d\x04\x69\x58\xdf\xe1\xec\x62\x3e\x08\xe9\xc0\x5b\ \x30\xd1\x28\x1c\x81\xfd\x65\xcf\x82\xf8\x8c\x72\x1c\x23\x7a\x83\ \x96\xf5\xbc\x96\x3b\x21\x99\xd5\x19\x04\xf6\x4a\xfd\x75\x36\x8b\ \x33\xc9\x18\x24\xad\xb1\x03\x9c\x87\x77\x18\xbb\x64\xe0\x1d\x7c\ \xac\x88\xa3\x00\xef\x22\xe0\x6d\xd6\xe4\xc0\xf1\xb5\x97\x08\x41\ \x91\x94\xb7\x5e\x17\x5c\x52\x89\x0d\x96\x8d\x71\x31\xad\xa5\x45\ \x0e\x87\x84\x8c\x89\x94\xc1\xf0\x33\x1b\xf2\x54\xca\x1b\x61\x74\ \xb6\x2a\x39\x5f\x98\x67\x5c\x67\xfb\xc4\xe8\x67\xb1\x40\x4d\x05\ \x6e\x61\x7e\xc3\xf7\x5a\x7f\xb1\xec\x1f\xc7\x11\x59\x23\x6a\x2f\ \x60\x04\xdb\x65\xe8\xa1\x12\x9d\x54\xcc\x60\x0d\x55\xe1\x30\x54\ \xd5\x8d\x0a\x8e\x6f\x21\x37\x34\x33\xa5\x12\xcf\x94\x77\x33\x12\ \x7f\x0e\x1a\x7d\xba\x21\x7b\xe7\x2d\x89\x85\x58\xec\x3e\x20\xa6\ \xba\x10\x56\xed\xaf\x5b\x38\x39\x7a\xb4\x35\xcc\x1b\xc0\x67\xe4\ \xfe\x10\x25\x8f\xf1\x2f\x52\x01\x1d\x7f\x24\xea\xe3\xd5\x2b\x47\ \x45\x0c\xb2\xba\xdc\x27\x21\xb6\x13\x12\x4d\x7e\x36\x17\x0b\xf3\ \x1c\xa2\x52\xec\x73\x0f\x4f\x21\xc4\x06\x20\x37\x09\x4b\x11\x65\ \x86\x71\xa3\x6a\x17\xf7\x16\x6d\x0c\x7d\x54\xb9\xe1\x64\x83\xe4\ \x68\xb9\xde\x7c\x5c\x48\x55\x7a\xcd\x9d\x4e\xe6\x12\x4c\x41\x2a\ \x37\xfb\xf9\x64\xee\x3a\x17\xf5\x74\x18\xa7\xb2\x22\x19\xa3\x36\ \x00\x48\x9b\x7b\xed\x14\x62\x6c\x02\xe5\xa2\x4a\x14\xea\x12\x44\ \x85\xfb\x78\x52\x0e\xfd\x58\x6c\x75\x3c\x9a\x24\x99\xd8\xfc\x00\ \x54\x88\x9b\x25\xe3\x25\xa2\xeb\x16\xf3\xaa\xe5\xec\xe8\x7e\x8d\ \x8c\x8f\x75\x25\x22\xb8\x74\xe6\x20\x81\x4a\x34\xac\xcd\x0e\x43\ \xb8\x4e\x2e\x77\x8a\xa5\xb1\xca\x03\x2a\x0a\x1f\x41\x9b\xc4\x85\ \x0d\x7c\x6a\x6f\xd0\xa6\x05\x34\xc8\x52\x47\x5b\x3a\x95\x71\x49\ \x5d\xc4\x80\x78\x8b\x4a\x68\x1f\x22\x9f\x5a\x6f\xf0\xa9\x14\xcc\ \x78\x14\xb5\xe1\xda\xf2\xa9\x40\x33\x65\x79\xbb\xf9\x2e\x4d\xa5\ \x46\x44\x33\x68\x1b\x4a\xc4\x58\x2a\x91\x4e\xfb\x7b\xd1\xea\x58\ \x0f\x2d\x2e\x85\x55\xc0\xfb\x5a\xbc\xb2\x84\xb7\x8b\x6d\xb6\x04\ \x78\xdb\x74\x51\xd3\xfd\x18\xbb\x58\xff\xce\x81\x84\x08\xf1\x4c\ \x80\x2a\xa0\x14\xcc\x54\x87\x72\xab\xf5\x3e\x57\xbe\x4d\x49\xb5\ \x41\x40\xe8\xed\x70\xb7\x1a\xc8\x7b\x53\xed\xd4\x43\x37\x16\x54\ \x75\xc2\x1e\x92\xba\xcd\xf5\x07\x1c\xee\x69\xeb\xa5\x86\x4e\xac\ \x8a\xa7\x3a\x38\xa9\xa4\x27\xd8\x36\x00\x48\x74\x1c\x1e\x7f\x16\ \x61\xa1\x67\x07\xc8\x47\xcc\x0d\xca\x3c\xfb\xe5\xb1\x4d\xd2\x22\ \xdf\xc6\x98\x1e\xac\x1f\x04\x8c\x0d\xde\x61\x4f\x3f\x6b\xcf\x80\ \xfe\x5c\xc2\x70\x1c\x2c\x88\xbb\xdc\xb7\xc7\x6d\xdb\x21\x1a\x97\ \x68\x51\x94\xd5\x7b\xcb\x0c\xfe\x68\xb5\xe2\xb5\xd8\x19\x6c\x9d\ \xdc\xc5\xe4\xfc\xa8\x60\x80\xa3\x6a\x7e\x1e\x35\x62\x6c\x94\x32\ \x3c\x7f\x03\x9e\x8b\x1d\x13\xcc\xbc\x4d\x63\x8f\x16\x6d\x91\xf0\ \xca\xf4\x25\x54\x50\xaa\x97\xd7\x24\xf0\x2e\xf4\xd9\x46\x36\xbb\ \x12\x1c\x4c\x76\x17\x5f\xc3\x0e\x3d\xa2\x20\x7c\x7b\xb2\x51\xcc\ \x8f\xda\xc6\x0c\xa5\x14\x3f\xef\xda\x19\x1b\xa5\x0d\x76\x7c\xe6\ \x7e\xc5\xba\x34\x2a\xce\x6e\x4f\xcf\x11\xf0\xd0\xcc\x1f\xd2\x7a\ \x5c\xbd\x5c\x6f\xdc\xe3\xc8\xed\x00\xf2\x27\x06\x06\x25\xd6\x95\ \x1e\x0f\xcc\x5c\x79\x87\x02\x96\xb2\xd9\x7e\x4a\x8f\x67\x3e\xa7\ \xe4\x11\x1b\x1d\xbf\x14\x18\xf3\x36\xca\xe0\x9f\x15\xab\xce\xf1\ \x00\x02\xca\xb4\x1d\x66\xec\xf8\x67\x08\x34\x57\xbc\x5f\x2b\x63\ \x63\xc6\xb9\x0f\x24\xf7\xb5\x46\xdd\x31\x0d\x46\x8c\x92\x92\x45\ \xd3\xae\x3d\x93\xe8\xd3\x2d\x72\xd5\x8c\x3e\xce\xa4\xca\x18\x70\ \x13\x75\x80\x99\xbb\x3e\x57\x5b\x22\x1a\x01\xcd\x18\xcc\x50\x01\ \x20\x3f\xd5\x8d\x8c\x42\xdc\x7b\xa1\x19\x7a\x09\x6b\x92\xe1\xba\ \x95\x1e\x71\xae\x53\x9e\xa1\x7a\xcf\x53\x22\x54\x04\x9f\x96\xab\ \x07\x64\x16\x1d\x68\xf0\x48\xe8\x25\x9c\x44\x94\x62\x5a\x92\x08\ \x72\xe0\x36\x31\x6f\x9a\x31\xd6\x24\x99\x21\x6b\x0f\x70\x89\xc1\ \x16\xa0\x36\x78\x9f\xa1\xec\x08\x68\x38\x35\x36\x4c\x1f\x49\x4f\ \xd0\xe6\xbb\x0c\x2a\xc3\xc9\x39\x25\xea\x84\x00\xe3\x30\xa4\xb5\ \x47\x8d\x62\x33\x4e\xc3\x78\xb8\xb2\x34\x27\x67\xa7\x06\x00\xaa\ \x64\x32\xce\x52\xbc\xa9\x01\xa5\x0d\xa9\x1a\x08\xea\xf0\x37\xab\ \x09\xc5\x6d\x1a\xb2\xed\x10\x65\x03\x40\x5b\x72\x94\x02\xc4\x28\ \x3d\x40\xde\x44\xf7\x2a\x21\xd6\xd4\x02\xf6\xba\x61\xc9\xda\x54\ \x12\xa3\x43\x43\xf7\x11\x2e\xcd\x29\x72\x97\xba\x11\xdc\xef\x1d\ \x72\x65\xde\x3e\xc1\x42\xc2\x9b\x20\x01\xb7\xa2\x47\x66\x7f\x53\ \x18\xb7\xfd\xd0\x0b\x5f\x1d\xd0\x81\x4e\xa7\x8d\xbd\x72\xfd\xe8\ \x00\x52\x6d\xb4\x29\x54\xdc\xc0\xd5\x5d\xf6\x09\x3a\x00\x48\x69\ \xa0\x5c\xad\x63\x75\xb6\x4f\x3a\x13\x7c\xea\x40\x38\x14\x75\x72\ \x8c\xed\x36\xf4\x42\xee\xc2\xa6\xc0\xd0\x43\xeb\xc6\xcf\x29\xee\ \x09\x68\x68\x53\x75\xfb\x8f\xb2\x0a\x95\x49\xd7\x87\x19\x49\xc1\ \x14\x9f\x3e\x87\x4d\x47\x74\x29\xdd\xbc\xd0\x90\xe5\xa1\x31\x9c\ \xf0\x1a\x39\xb1\x90\x28\xcf\xfa\x62\xbe\x48\x05\x53\xc7\x58\x7e\ \x6e\x11\xd8\x0d\xbb\x15\xf1\x2b\xc0\xaf\x41\xaf\x9f\x14\x72\xb3\ \x28\x07\xe8\x6e\x63\x9a\x09\x74\x57\xd5\xa9\x4b\xcb\x4b\xba\x44\ \xca\xab\xb8\xc2\xe3\x6d\x8d\x3c\x5b\xba\xe9\x86\xd2\x85\x0d\xbe\ \x04\x1e\xab\x9f\x08\x82\xa1\x9a\xa5\x48\x84\xa2\x00\x47\xcf\x4f\ \x06\x2a\x75\xb4\x6a\x32\xc5\xba\x79\x7b\x28\xa6\x8c\x02\xe2\x76\ \x76\xfa\xbe\x1f\xab\x78\x48\x6b\xcb\x90\x66\x0a\x03\x97\x75\x59\ \xcc\x8e\xbb\xc2\x8e\xa8\x28\xaa\x2e\xfb\x81\x18\xdb\xe8\x0b\x43\ \xfb\xc3\xe3\xe9\x44\x0e\x0c\x2d\x3d\x68\xc9\x9d\x5b\x01\xe3\xc9\ \xb9\x57\x71\x37\x3b\x77\xb4\x1d\xf0\x09\xf7\x85\x61\x60\xdf\x34\ \x50\xfa\xbe\x59\x50\x0d\x59\xa5\x08\x14\x00\x87\xb4\xcb\xb3\x51\ \xea\x16\x3c\xea\xb1\xb8\xc7\x33\x30\xde\x74\x14\x50\xa9\x86\x35\ \x09\x2f\x3d\xf5\xb3\x86\x2c\x4d\x49\xe6\xfe\x01\xa7\xba\x32\x19\ \xa4\xda\xc7\xcc\x2b\xe0\x55\xa0\xd0\x06\xee\xb3\x6f\x4f\xce\x2e\ \x8f\xc5\x93\xba\x37\x5c\xb2\x15\x4a\x2a\xcc\xb9\xeb\x4d\x6a\x1d\ \x42\xc0\x7d\x11\x29\x9e\xb4\x56\x81\x3a\x17\xdd\x28\x43\x28\x78\ \x63\xcb\x72\x66\x23\x98\xcd\x92\x1a\xc0\x64\x41\x83\x62\x2a\xd8\ \x42\x4f\x44\x52\xa8\xb2\x03\x01\xe8\x6c\x3d\xd0\x76\x9f\xc6\xa6\ \xc3\x49\x0e\x4c\x63\x20\x11\x62\x92\xdd\xd2\x03\xfe\xcb\xb8\x5b\ \x25\xf4\x01\x1b\xbc\xc7\x85\x1c\x81\x0e\xaf\xca\x20\x88\xf3\x0c\ \xf8\x62\x38\x66\xb1\x85\x6e\x14\x9e\x11\xca\xd7\x9a\x31\x6b\xe7\ \x2e\x49\x30\x7a\x3c\x6a\x74\x20\x63\x32\x92\x97\xee\x7e\xe4\x95\ \x8e\xf4\xb3\x6c\xd8\x6a\xb8\x5f\x31\xe5\x95\x4a\xfa\xff\x7f\x4d\ \x3a\x7e\xdc\xb9\x33\xa2\xa9\x77\xb8\x47\xe6\x9e\x88\x05\xf4\xd5\ \x1e\xee\x0c\xf3\xce\x1c\x12\x2c\x04\xf3\x21\xb8\xd7\x33\x8f\x4e\ \x52\x28\x8d\xa8\xb7\x21\x56\x66\xb2\xe6\xda\xb5\x65\xb3\x4d\xf6\ \xd0\xad\xa0\x90\x06\x27\x41\x35\x34\x50\xa1\xcb\x74\x56\x25\x8a\ \x3a\x80\xc8\x8a\x99\x8e\xfd\xca\x17\xd1\xa6\x05\x02\xcc\xa4\x02\ \x15\x05\x17\xcf\x20\x39\xcc\xc3\x74\xd8\xa1\xbf\x75\x45\xb7\xa9\ \x93\xd1\x84\x2a\xa9\x6e\x44\xed\x55\x9d\x4b\x14\xf6\x61\x5f\x6f\ \xb7\xc9\x41\x0e\x0c\xa8\x3b\xe4\x5a\xe8\x61\xa5\x5c\xa7\xc7\x63\ \x24\xac\xeb\x17\x51\x0b\x18\xc6\x0b\x09\x82\x59\x30\xdc\x78\xca\ \x8c\xe8\x11\xac\x39\x86\x58\xdd\x4c\x55\xf7\x92\xef\x51\xb9\xbd\ \x6e\xbe\x36\x35\x8b\x4d\xf0\xcf\xe8\x51\xe3\xc6\x86\x9e\x7d\xea\ \xcb\x55\xfc\x79\xa3\xec\xfd\xdc\x31\x18\x82\x6e\xa3\xf8\x67\xa4\ \xb8\xeb\xf1\x24\x2a\xe3\x02\x59\x40\xce\x85\xa7\xe7\x9a\x9d\xa8\ \xec\x84\x33\x04\xfa\xf5\xd4\x09\x2d\x3e\x57\x2b\x07\x20\xc2\x7a\ \x6a\xea\xa9\x15\x60\x32\xfe\x59\x33\xbb\x2a\xe6\xae\x84\x95\x21\ \x16\xb1\x2e\xc9\x8e\x7f\xd6\x21\x56\xf6\xd4\xd0\xa1\xe8\xf0\x6f\ \x2f\xbb\x5b\xc5\x67\x14\xde\x4d\x78\x85\xc5\x75\x6d\x95\xbe\xca\ \x10\xed\x60\x4c\x20\x44\x19\x4f\x50\x4a\xd0\x33\xe0\x61\x79\x2a\ \x11\xa6\xaa\xe7\x21\xf6\x0a\x35\xa2\xfe\xa5\xd4\x08\xcc\x50\x03\ \xfb\x07\x5e\x21\xc0\xcb\xbf\x81\x9d\x7b\xf2\xc8\xed\xea\x03\x13\ \x68\x3a\x3e\xd3\x75\x3b\x8b\x4b\x3b\x62\x5c\x35\x4e\x69\x41\xaf\ \xc5\x48\x4f\xf5\x72\x19\x46\x65\xda\x91\xd5\x72\x70\x56\xb4\xf4\ \xeb\x1c\x5b\x17\x2d\xd3\x49\x5c\xc9\x21\xcd\x1f\x03\x5d\xe5\x3e\ \xd4\x85\x39\xb2\xfb\x34\x31\x95\x1c\x4b\x02\x6c\x37\x67\x2d\x05\ \x20\x93\x86\xf2\xd3\x86\x8d\x9d\x76\xbc\x38\x0a\x8e\x90\x54\x94\ \xe8\x30\x81\x9a\x2c\x0f\xb0\xf6\x3b\x96\x3f\xb5\xeb\x0e\x86\xf4\ \xe1\xd6\xde\x39\xd3\x69\xd4\xfd\x90\x19\xf6\x0b\xba\x63\x17\x0c\ \x1a\xdb\x06\xf6\xa4\x82\x90\x1f\x52\x2e\x13\x8f\x74\xa1\x9f\x17\ \x4c\x0a\xa7\x43\x1f\xca\x71\x48\x74\x7e\x3e\xd3\x87\x0e\x86\x21\ \x43\x81\xf9\x46\x2b\xde\x2e\xcf\x9d\x22\xb1\x9f\x73\x4b\x6e\x1f\ \xda\x80\x14\x0c\x29\x48\xa6\x2c\xce\xea\xb0\x72\x66\x6e\x88\x4b\ \xb7\x6e\xc1\x08\x4e\x16\xde\xd1\x3c\x59\xe6\xb1\x28\x48\x41\x46\ \xaa\x0d\x66\x38\x41\xcf\x32\x68\xab\x9f\xf7\xc9\xc1\xd0\x82\x16\ \x0c\x05\x10\x6a\xb0\x03\xe1\x76\x55\xbc\xdb\x9b\xf3\xf4\x22\xee\ \xec\x6f\x4e\xc3\xd8\xa7\x86\x86\x20\x68\x54\x0d\x74\x8a\x50\x2d\ \x38\x1b\xa2\x0e\x3c\xdf\xc5\x4f\xa9\x9a\xe9\xa0\xf5\x1c\xc1\x98\ \x04\xc8\x82\xdb\xd0\x1f\xf6\xa1\xbf\x54\x82\x6d\xaf\x14\xd9\x61\ \x4c\x06\xaf\xa2\x1d\xe0\xc1\xe0\x47\x91\x68\xd2\xe4\x1b\xc8\x2e\ \x53\x82\x55\x94\x6e\xe9\x03\x9e\x9a\x2f\x83\xe0\x81\xf8\x8c\x1e\ \x7a\x9e\x37\x9d\xb4\x5d\x12\x82\xc9\xfb\xd3\xaa\xf5\x41\x07\xb8\ \xa9\x3e\x0c\x9b\x25\xd9\xeb\x99\xe3\x32\xab\x6a\x32\x03\x06\xc8\ \xd9\x60\xc6\x17\x55\xaa\x51\x2c\x47\x44\x38\x29\x25\x50\x1c\x5b\ \x03\x6c\x54\xde\x8e\x69\x0e\xfc\x11\xa4\x88\x4f\xa2\x09\xf0\x3e\ \x53\xe3\xd2\x6e\x8a\x3d\xce\x2d\x38\x82\xe9\x99\x47\x13\x4c\xd2\ \x53\xd0\x63\x09\x9b\x5a\x3d\xed\x9d\xd9\xb2\x71\xb7\x23\x13\x6f\ \x65\xe2\xd4\x28\xd7\x43\x6c\x09\x28\xb0\x61\xef\xc1\x54\xb4\xaf\ \x99\x24\x5d\x52\x5c\xd9\xf0\x41\x55\x8c\x39\x63\x01\xa0\x7b\xe5\ \x01\xb5\xfd\x55\xf6\x09\x93\xb8\x56\xcc\xf8\xca\xeb\x63\x5a\xee\ \x74\x1f\x4d\x76\xe4\x33\x9a\x62\x8e\x8e\x1d\x4a\x40\x09\xad\xdc\ \x72\x7d\xa3\x90\xcd\x5b\xea\xa3\x1f\xd8\x56\x71\x4c\xdd\x29\x9e\ \x7e\x51\x63\x24\x5b\x56\x99\x82\xdd\xa9\x83\x5e\x85\x5a\x16\x4e\ \x1b\xca\xc0\xa7\x36\x75\x52\x68\x26\xc8\xc8\x36\x6e\x11\xff\xf0\ \x9c\xe2\x76\x9f\x1c\x6c\x86\x99\x90\x16\xa6\x60\x3e\xa7\x85\xb9\ \x7d\x91\x2c\x62\xb6\x5a\xdc\x38\x9f\x05\x64\x79\x1a\x30\xcd\x4a\ \x58\x0a\x57\x7d\x3e\xc1\x09\x21\xbd\x8f\x6b\xb6\x91\xb9\x91\x41\ \x98\x5b\x70\x44\xc7\x5c\xba\xab\xf8\xd2\xf6\x88\x59\x89\xad\x56\ \xe7\xbe\xf7\x97\x76\xec\xb3\x86\xaf\x36\x0a\xce\xc0\x56\x10\xc4\ \xbd\x2c\x78\x41\x8b\x18\x53\x13\xad\x4c\x87\xef\x5c\x6f\x6b\x02\ \x6b\x06\xbc\x3b\x45\x4d\x3f\xd1\x9e\x82\xde\xa8\x33\x15\x3a\x4a\ \x03\x78\xf2\x4e\xd5\x64\x4e\xc3\x98\x4d\xe9\x7b\x44\xb5\xd4\x78\ \xa1\xc3\xad\xf5\xf3\x9a\xec\xe6\x70\x9d\xe6\x5f\x62\x8f\xa0\xdd\ \xb6\xf8\x6d\x5d\xed\x9b\x1b\xb8\x0e\x49\x3b\x38\xa0\xee\x46\x3e\ \x43\x19\x52\x89\x8f\xae\x64\x45\xf2\x13\xd1\x43\x33\x1b\x02\x5d\ \x00\xf7\x26\x82\x34\x98\x1a\x64\x63\x32\xf3\x46\x54\x3d\xe8\x23\ \xd0\x0c\x8f\xf7\xd8\xee\xb4\xf7\x65\x4b\xf0\xe5\xb0\x4f\xf2\x86\ \xc0\x18\x78\xf4\x8b\x1b\x05\xa1\x2b\x1d\xc3\xc2\x0c\x3b\x2c\xfe\ \xc9\x86\xe5\x4d\xdc\xc3\x0e\xc2\xea\xea\x44\xb7\xbb\x78\xbc\x32\ \x18\x92\x07\x80\xb5\x34\x00\xe7\xae\xc9\x68\x12\xd7\x12\x0d\x38\ \x9c\xd0\x63\x8b\xf7\x1d\xd1\xb4\x37\x66\x43\xa8\x51\x95\x08\x20\ \x5f\xa7\x68\x30\xfc\xb1\xaf\x22\x0f\xc1\xba\x63\x57\x8c\x96\x6a\ \x5f\xe4\xbb\x19\x62\x1b\x66\x35\x87\x64\x69\xcb\x99\xd2\x12\xcd\ \xd2\xa6\x93\x93\xef\xc4\xac\xe7\x2d\x4a\x33\xa9\x79\xc2\x3c\x7a\ \x76\x54\x20\x35\x6d\xd6\xe4\x80\xda\x35\xf3\x0c\x5e\xae\x75\x45\ \xfb\xe5\x5e\x57\x7a\xa6\xd6\xf6\x50\xaa\x54\xf5\xd4\x70\xeb\x9c\ \xc7\x64\xce\xdd\x39\x98\x45\x59\x39\x5b\x13\x56\xcb\xf8\xc8\x91\ \xb9\x46\x9c\x0a\xb3\x53\x2d\xcc\xf0\x27\x34\xab\x44\xb1\xc8\x89\ \x83\x53\x7b\x0b\x28\x69\x1f\xe0\xf4\x82\x12\x4c\x4b\x25\x54\xd0\ \x6b\x1f\xe0\x00\x64\xeb\x7d\x03\xdc\x4d\x78\x61\xaf\x5d\x1d\xed\ \x54\x15\x40\xe0\x64\xca\x8d\xf5\x70\x28\x1e\xe9\x81\x29\x48\x67\ \x3c\x46\x26\x77\xba\x52\xa0\xe4\x42\xd9\xb5\x01\xf5\xa3\x81\xe4\ \xee\x67\x93\x29\xed\x1b\x05\x98\x2d\x03\x14\x2a\x11\x79\x9b\xeb\ \x9c\x22\xe6\xb5\x11\x77\xee\x86\x5b\x98\x0a\x9e\x9b\xc0\x9f\xaf\ \xb8\xc9\x82\x52\x8d\x88\x3d\x9e\x2c\x09\x7c\x1b\x23\x6f\x2a\xc8\ \xc2\x44\x98\xbb\x24\x86\x28\x83\xb3\x01\x2b\x02\x9f\x63\x17\xf3\ \xa6\x2a\x4e\x7b\xcf\x08\x1d\x1c\x06\xef\x50\x92\x23\x21\xe8\xfa\ \x36\x49\x40\x9f\x4c\x52\x76\x48\x2e\xae\x15\x60\xc7\xf2\x92\x79\ \x16\xfa\x3a\x27\xba\xf7\x4a\x80\x95\xd6\xc3\x29\x42\x96\xa8\xf9\ \xb9\x82\x01\x7a\x2a\xa3\x76\x9b\x3f\xb7\x4a\x53\x8c\xaa\x06\x21\ \xfb\x76\xef\xa4\xbd\x9e\x79\x85\x0c\x6c\x40\x94\x0c\xc1\xe3\x72\ \x55\x4c\xff\xdb\x21\x61\xd5\x41\xda\x95\x78\x1b\xb0\x24\x56\x9b\ \xd9\x1c\xee\x4c\xf9\x44\x69\x09\x81\x2a\xd6\x23\x24\x5a\x3e\x35\ \xa6\xc9\x6b\x62\x4d\x62\x65\x6a\x09\x31\xa7\x86\x34\x74\xdb\x98\ \x46\xa4\x3d\xf9\xac\xf1\xcc\x8c\x9e\x15\x67\xa1\x5b\x3e\xe2\xe3\ \x3e\xc4\x8c\x1c\xb9\x73\x45\xa0\x73\xb9\x8b\x83\x72\x1f\x95\x5d\ \x1d\xf3\xc7\x10\x4e\x05\xfe\x1c\x50\x4d\x3c\x1e\x15\x8e\xdd\x18\ \x69\xcc\x5b\x94\x6c\x60\x07\x3c\x9b\x92\x11\xb0\x0b\xe4\xb8\xf1\ \x70\xcb\xa2\xec\xcd\xcf\x3c\x8a\x01\xce\x59\xef\x1a\xea\x4b\xbc\ \x9c\xdd\x97\x67\x08\xc2\x0e\x9f\x33\x28\xad\x03\xc7\x1d\x16\xad\ \x3a\x7e\x03\x45\x7a\x29\x27\x77\x71\xa2\x00\xa0\xab\xee\x8c\xfe\ \x1c\xe7\xd2\xe3\x53\x36\x1f\x77\x80\xf8\x40\xee\x75\x2d\x02\x9d\ \xdb\x8c\x13\x76\xec\x33\x95\x02\x91\xc1\x60\x89\xc6\x35\x1d\x42\ \xd2\x57\x19\xbe\xd8\x8a\x21\x90\x0d\xc2\xbb\x2f\x15\x4f\x62\x9c\ \xd0\x2a\xef\xbf\xc3\x38\x3a\x51\x0c\xad\x6c\x94\x86\x0c\x96\x82\ \x1b\x76\x46\x73\xa3\xec\x70\x3f\xab\x15\x42\x8c\x89\x79\x20\xd8\ \x70\xaf\x54\x93\xf6\xee\x67\x28\x87\x64\xaa\x1e\x36\xb0\xd7\xb3\ \x3d\x60\xbb\x1c\x8a\xa9\xde\x07\x8f\xc1\x68\x6e\xab\x0d\x0d\x09\ \x9b\x32\x17\x22\x16\xe5\xf1\x69\x0b\x85\xf1\x35\x33\x4d\x8c\xad\ \x26\xc2\x31\xc7\x46\x19\x99\x2c\x43\x52\x9d\xa0\x08\x08\x36\x6c\ \x04\xa8\xd2\xde\xfd\x4c\x4b\x88\xc6\xa7\x0a\x0d\xc8\x9b\x79\x0c\ \x7d\x2e\x0e\xe3\x48\x14\x33\xc3\x7d\xda\x5a\xb9\xaf\x50\xa1\x21\ \x05\x89\x28\x40\x04\x86\x77\xea\xa5\x11\xcd\x41\x55\x95\x33\x40\ \xd9\x36\x37\xbd\xcf\x8d\x93\x8d\x36\x02\x95\x18\x52\x35\x7d\x03\ \xc7\x4c\x07\xf7\x33\x8f\x33\x02\x38\x7d\xc0\xfb\x43\xfc\xf4\xaa\ \x8c\x6a\xc7\xea\x5b\xc5\x6d\x45\x2d\xd0\xaf\x54\x70\x40\x5c\x65\ \xb1\x3c\x51\xf6\x72\xd6\x90\xc5\x6f\x59\x6f\x31\x97\x44\x3f\x6c\ \x1e\x15\xdc\x96\xa4\xb8\xe1\xa2\xd2\x00\xe2\x67\xe6\x82\x6d\x91\ \x5a\x5e\xd7\x64\x6f\x7f\xc6\x24\x7b\x50\x9c\xb8\x07\xfb\x03\xd9\ \x3d\x1c\xaf\x62\xa5\x24\xca\x51\x35\x2c\x87\xa7\x3e\x23\x38\x88\ \x1f\x1c\xe6\x9e\x35\x9e\x88\x90\xa8\xe2\x51\x89\x68\x4a\xc8\x55\ \xb7\x76\x4d\x73\x0f\x4f\x09\x10\xbe\x80\x7e\x70\xdd\x67\x64\x03\ \x36\xb8\x98\x74\xe4\x9f\x65\xc5\xbe\x5e\xf5\xcc\x34\x39\xf2\x23\ \xda\x12\x18\x9f\x65\x7e\x10\x50\xb6\x55\x47\x01\xf9\x4b\x9e\x85\ \x31\x9c\x67\xcc\x7d\x2a\x1a\xca\x30\x17\x2a\x3f\xd6\x3c\x7e\x72\ \xbb\xa0\xa4\x21\x91\x66\xa6\x66\x10\x6a\x0b\x76\x37\x9b\x45\xd9\ \x4f\xbd\xb4\xe1\x71\x5e\x8f\xcc\x56\xd0\x9f\xba\x9e\xa2\x24\xf2\ \xd8\x0e\x23\x43\x71\x3b\xd4\x35\x6f\x0b\x25\x98\x3d\x77\x66\xa8\ \xdb\x4f\x75\x99\x3b\x71\x06\xc1\x30\xa7\xdd\xa4\xad\x3d\xf5\xe6\ \x29\xa6\xb7\xeb\x78\x24\x83\x1e\xe8\x0e\x8a\xdb\xb3\x73\xe4\xf8\ \x16\x42\x4f\x65\xef\xaa\x60\x79\x00\x66\x87\x43\x09\xf0\x34\x03\ \x0c\x97\x9b\x2e\x8b\x42\x88\xb2\x6a\x05\x2c\x06\xb0\x35\x1e\x53\ \x59\xb2\x07\xaf\x3d\x84\x81\x8d\x89\xad\xce\x85\x4f\x95\xc6\x36\ \x01\x8c\x01\xe3\xab\x82\x48\xf1\x1b\xd1\xd0\xb4\x23\xa0\x51\xcb\ \xe3\xf8\xee\xb2\x69\x79\xf9\xeb\x7a\x60\xb8\x24\xa1\x4d\xd4\x6d\ \x32\xaa\xd8\xb1\x92\xad\x40\x97\x04\xbb\xa2\xcd\x28\xee\x18\x63\ \x99\x34\x23\x02\x09\x7f\xc0\xd1\xfe\x9f\x8b\x77\xa8\x4b\x26\x0b\ \xb9\xd7\xc0\x7e\xc0\x73\x36\xe9\xfd\x8e\x80\x06\x27\xcf\x86\x85\ \x58\x80\x42\xe2\x7b\xc0\x36\x02\xc9\x0c\x13\xfd\xcf\x59\x41\xfb\ \x86\x9f\xca\x9c\x07\x94\x63\x41\x12\xc4\x93\x7b\x07\x8c\x3e\x2a\ \xc4\xe6\x5e\xa8\xb2\x7e\x9e\x95\xc6\x58\x93\x60\xfd\x08\x48\x65\ \x1d\xb0\xb4\x09\xbd\xdf\x6f\x93\x23\x01\x0d\xa5\x21\xb8\xdb\xa5\ \x45\x94\x4e\x1f\x90\x96\xa0\x4d\x87\x31\x38\x9e\x00\xe9\x8e\x6b\ \xe5\x82\x36\x50\x08\x90\xf5\x20\x1b\x9c\x24\xf7\x19\x20\x91\xbd\ \x40\x4c\x38\xca\xdc\xb1\x57\x4d\x46\xef\x31\x4e\x1c\x2e\x6f\x65\ \x35\xfa\xbe\xad\xc9\xd1\x9a\xa7\xb3\x20\xda\xf1\x70\x91\x1e\x80\ \xed\xa2\x49\x53\x02\x93\x36\xb0\x53\x61\x74\x6e\xb8\x8a\x91\x42\ \x89\x91\xd8\x99\x6f\xb4\xb4\xdd\x9a\x74\x8b\xc1\x5a\x53\x28\xaf\ \x7e\x2e\x9f\x35\x61\x7f\xa6\xb3\xc3\x8c\x92\xbd\xda\xf0\xf9\xae\ \x9b\xb1\xd7\xc1\xfe\x8c\x86\x36\xf5\xfd\xd0\x72\xbe\xde\xb9\xa7\ \x11\xd2\xaa\xc2\x2b\xfc\x3e\x24\x33\xd6\x82\x07\x83\x3c\x66\x3f\ \x1e\xb7\xaf\x74\xaa\xcc\x19\x51\xc7\xef\xbd\xb5\xd1\x7b\x9c\xdb\ \x2e\x18\xf6\x67\x8a\x26\x00\xdd\x30\x8e\x64\x5e\xbb\xe9\xc8\xee\ \xf8\x67\xd9\x80\x7f\x88\xd1\xc2\x5c\xa8\xe5\x7a\x5b\x29\x50\x18\ \xe7\x02\x31\x3f\xe3\xbb\x52\x6e\xf7\x8e\xb2\x41\x43\xe4\xe0\x74\ \x12\x4e\x5a\x6d\x05\x0a\x0d\x54\x11\x2e\x3f\x38\x04\x73\xc1\x87\ \xcd\x99\x0e\xa5\x63\x2d\x20\x01\xd4\xb2\x88\x45\xac\x4b\xb2\x67\ \x9f\x05\x4a\x0d\x48\xbe\xcc\x51\xb1\x0b\x7a\x64\xc2\x53\x99\xef\ \x78\xcc\x6f\x20\x3d\xae\x35\x20\x3b\x07\x4a\x11\x80\xde\x30\x34\ \x09\x0e\x1a\x69\xe0\x64\x9d\x69\x21\x87\x34\x3b\x65\x6b\x86\xdb\ \x2d\xd0\x22\x48\x92\xc0\xe4\x0c\xec\xdc\xe7\x45\xd9\xfb\x9f\x39\ \x4c\x1d\xf0\x24\x66\xdc\x9b\xae\xb3\x8a\x74\x7b\x58\x1d\xae\xac\ \xd8\x7b\x28\xc6\x2b\xd0\x4e\x39\x09\x10\xa1\x66\xe2\x5a\x67\xfb\ \xa4\x3e\x83\xff\x76\xb4\x1f\xb1\x00\x4d\x69\x6e\x3c\x69\x26\x6a\ \x0e\x33\x21\x30\xdf\xcf\x38\x9b\x95\x4d\xce\xb6\xf7\x3f\xeb\xcf\ \x10\x81\x2a\x60\xc5\x9c\x18\xf6\x5e\xd6\xb5\x2d\xba\xf0\x14\xc3\ \x15\xe0\x95\x03\x68\x57\x2c\xc2\xcc\x60\xde\x75\x1d\xd1\x92\xc7\ \x2a\x3d\x9d\x20\x77\x55\x9b\x03\xc4\xec\x8d\x56\x39\x52\x5c\x73\ \x93\xb6\x66\x41\xb6\x80\xb0\x56\x06\x16\x01\x38\xb4\x2d\xe8\x7d\ \xc7\x3f\x6b\xcf\xd8\x8e\xd5\xe1\x80\xed\x55\xa1\xe5\xab\x1b\x25\ \xd2\x14\x40\xa9\xba\x60\x31\x96\x96\xc2\x86\xb4\x3a\x25\x88\xbb\ \xcd\xdc\xf8\x96\x9b\x76\x17\x8a\x30\x39\xca\x8e\x33\xaf\x2b\xd0\ \xf9\xb9\x85\x71\x6b\xfa\x94\xa8\xf1\x14\x34\x1d\xa1\x43\x96\x8d\ \xbf\x48\x6a\x07\x61\xdb\xa2\x0d\x5d\x74\x01\x9a\x64\x7f\x34\xcc\ \xd5\x45\xa8\x12\xfc\xe9\x5e\x14\xdb\xc1\xbd\x86\x9b\xe7\x0a\x93\ \xda\x1e\x81\xf8\x33\xdb\x3f\x01\x3e\x62\xb2\x8e\x6a\xb6\x32\x5e\ \xfc\x07\x5b\x99\xca\x3f\x4b\xe6\x7f\xa6\xd0\xda\x6d\x98\x85\x4e\ \x68\x6b\x9b\xa9\xd7\x9e\x7e\x36\x14\x5f\xf1\xdc\x40\xc7\x53\x07\ \xfe\x72\x4f\xc9\xa6\x6d\xc1\x5c\x5e\x4c\x65\xba\x7e\x46\xb4\x15\ \xbc\x9e\x01\xfa\xa1\x90\x7c\x96\xa0\x64\x5d\x3b\x88\x84\x74\x83\ \x39\xa4\xb9\x35\x60\xb7\x20\x5b\xf1\x07\xe2\xaa\xd7\x6b\x69\x83\ \xdd\xf4\x79\x51\x0e\xcd\x82\x21\x20\x8d\x05\x56\xc2\x14\xe5\x32\ \xf2\x11\x09\xba\x1e\xe0\x78\xe1\x43\xd3\x5a\x59\xbb\x4a\xe4\x3d\ \xd6\x0e\xa5\x93\x30\xba\x11\x87\xc3\xa3\x64\x8f\x56\x79\xb2\x0d\ \x93\xe6\xc2\x41\x7b\xa2\x2f\x6c\x7a\x67\x5d\x19\x25\x38\x74\xb7\ \x29\x78\x76\xfc\x33\x60\x7e\x00\x44\x7c\x36\x5e\xff\x10\x50\xbd\ \x88\x7c\x0c\x8c\xf1\x1a\x7e\x22\x78\x33\xde\x8c\x68\x54\xfd\x20\ \xc1\x81\x76\x2a\xf8\x94\x33\x30\x28\x17\x16\x3e\x61\x44\xbf\x52\ \x27\xc7\x93\x6e\x1e\x93\x1e\x0d\x2a\x44\xa9\x9b\x56\x3d\x94\x4d\ \xc5\x73\xe0\x9f\x65\x33\xc0\xc0\x69\x30\xf9\x32\x00\x2b\x17\xa7\ \x19\x20\x3a\x95\xc8\xa3\xef\x92\xfd\x22\x38\xc9\xfc\x86\x49\x06\ \xce\x80\xc4\xdd\x5e\x8f\xcd\x02\x25\x49\xcd\x54\xe8\xa9\xa6\x11\ \x18\x9c\x0b\x90\xed\x20\x0b\xd0\xb7\x0c\x86\xf3\xcb\x48\xe4\x6d\ \x97\x64\xdf\x2b\xc0\xfb\x13\x14\x68\xc0\x1b\xa5\x5f\x97\x79\xc2\ \x3d\x18\x64\x2e\x59\x06\x33\xf9\xb0\xda\x9f\x79\xa4\x73\x20\x78\ \x47\x6b\x70\x1d\xeb\x62\xf8\xb7\xd0\x59\x5d\x88\x94\x80\x93\x6d\ \xc1\xb3\xd9\x9f\x15\x7c\xc1\x31\xa7\x53\xae\xbc\xd4\xa7\xeb\x92\ \xe4\xbd\xfd\x59\x79\x0e\x66\x32\x84\xce\xb8\xde\xec\xf0\x05\xbf\ \x78\x74\x32\x0a\x4d\x78\x5b\xc2\x4c\x4d\x61\xad\x8b\xe9\xd8\xeb\ \x4a\x1b\x02\x36\xe9\xa4\x6d\x8f\x49\x18\x04\x7a\x9d\x1e\x10\x2c\ \x7e\x2e\x8e\x5a\x79\x1a\xbd\x1d\xe6\xaf\x3a\xbf\x05\xa6\x46\xdf\ \xa0\xb7\xb2\x3b\x28\x2e\x62\x39\x0c\x1d\x0e\x95\xfe\x14\xc2\x03\ \xe9\x49\xcc\x09\xea\x34\x13\xf3\x9e\xca\x10\x74\x02\xe8\xc0\xf9\ \xc5\xfe\x21\x83\xa5\x3e\x95\x0c\x08\x11\x02\x78\x45\xd6\x06\xa9\ \xd7\xa9\x2d\xea\x6c\x1f\x5e\x19\x10\x9c\x59\x43\x21\x82\xa6\xf2\ \x9b\x8d\x72\x90\x5c\x84\x05\x67\x2d\x0f\x13\x7b\x7a\x00\x6e\x91\ \xcc\x55\xa5\xc1\x04\x4c\xd8\x4d\x2e\x6b\x02\x10\x12\x45\x71\x2c\ \x58\x95\xd2\x9d\x8d\x77\x42\xb6\x26\x8e\x2f\xd6\xc3\xfe\x01\x02\ \xda\x05\x12\x4d\x8e\x7f\x29\x89\x06\x4a\x27\x06\xdc\x3e\x9a\xcd\ \x89\xfb\x5b\x90\x68\xf2\x30\x66\xe3\x46\x06\xbb\x6b\x83\xbf\xbe\ \x7d\x59\x07\x66\x1c\x56\x30\x28\xee\xb0\xe1\xf3\x00\x3d\x5c\x04\ \x82\xe0\xe0\xe4\xd1\xe9\x2e\xd8\x06\x2d\x03\x85\x8a\x20\x16\xcd\ \x2c\x64\x4f\x2a\xea\x79\x27\x93\xa7\x10\x0d\xf1\x4e\x28\x80\xcd\ \x39\x15\x94\x99\x61\xc6\xb5\x67\x4b\x83\x7a\x30\x79\x80\x94\x37\ \x1a\x54\xd9\x1d\x40\x0f\x67\x5f\x7d\x31\x71\x2a\x24\x02\xaa\x30\ \x3d\x50\x81\x45\x22\x53\x51\x26\x34\x95\x13\x8a\x19\x15\x0d\xd3\ \x13\xa9\xf7\xf3\xef\x9c\x76\xac\xbd\xb3\x54\x25\x21\xee\x00\x7c\ \x8d\x36\xfe\x3d\x60\x28\xef\xa8\x71\x66\x0b\xa9\x42\x8c\x14\x41\ \xe9\x39\xaa\x5a\x57\xc3\x3f\x02\x5c\x10\xb1\x3d\x4a\x7d\x5a\x06\ \xb7\x9a\xe9\xea\xa8\x74\xfa\x82\xfa\xb7\x90\x17\x68\xee\xb1\x86\ \x83\x47\x90\x4d\xc0\x34\xf9\xa9\x6d\x0c\xd5\xcb\xb4\x9d\x5a\x88\ \x06\x3e\x47\xc6\x7b\x69\xd6\xdc\xd6\xe4\x60\x30\xcc\xcc\xa9\xe9\ \x53\x44\xcc\xa2\xbb\xbd\xc6\x8b\xc0\x77\x25\xc9\xde\x78\xc6\xc9\ \x74\x6a\x6e\xae\xcb\x68\xe8\x60\x1a\x55\x07\x97\xe6\x64\x4d\xb0\ \x10\x32\x04\x00\x5d\xee\xa1\xac\x3e\xef\xf0\x78\xe8\xc7\x3a\x00\ \x5e\xb7\x6e\xa9\x0c\xa9\x77\x69\xc2\x81\x82\x46\xf7\xd4\x28\x3d\ \xca\x80\x89\x29\xd7\xb7\x89\x33\x5f\x26\xec\x0b\x51\x3a\x59\x0a\ \x31\x45\x7f\x60\x85\xc8\x3e\xd1\x16\x18\x30\xfc\x83\x0e\x08\xe4\ \x33\x03\x81\x7b\x50\xbe\x53\x6b\x8e\xec\xcb\x68\xea\xd5\x66\x2e\ \x27\xa4\xba\x5b\xe7\x88\xbc\xa7\xa0\x51\x9d\x92\xd7\x2a\xb8\x45\ \xaf\xac\xe5\x11\x8b\x61\x13\x00\xf1\xa6\x70\xa2\x4a\x77\x01\x34\ \x6b\x13\xe0\x4e\x03\xce\x4d\xa9\x4b\x3e\x53\x97\xe5\x5a\xa0\xa9\ \x14\xf0\xf4\x70\xab\x39\xf1\xbc\xb3\x83\xc2\x83\x89\xfe\x3a\x38\ \x0f\xe4\x2b\x2e\x6d\xd6\xe4\xa0\x6a\xce\x8d\x1e\xf4\xd8\x20\xdf\ \x99\x53\x5e\x3f\x3b\x88\xa8\x77\x1b\x87\x23\xf8\x9e\x6e\x63\x16\ \x03\x7b\x62\x47\x9e\xf2\x69\x25\x96\x60\x03\x14\x04\x9c\xf5\x1f\ \xf0\x12\x53\x49\x23\xba\x3a\x38\xc0\x90\xe7\x19\x62\x7b\x26\x72\ \x56\x82\xdf\x62\x6c\x38\x4c\xc2\x8c\x21\x1e\x94\x00\xf3\xc4\xe5\ \x81\x10\xab\x37\x0d\x65\xc6\x56\x60\xe5\xe8\x53\xaf\xc3\xdc\xc4\ \x61\xd3\x30\x22\x27\x8e\xa0\x68\x0d\x98\x37\xa4\xc3\x1f\x48\x11\ \x7f\x6a\x63\x27\x07\x03\x3c\x20\x97\x80\x30\x33\xa6\x16\x7d\x83\ \x53\xcd\x3b\x0e\x1a\x86\x27\x5a\x8a\x44\x3a\xd3\x60\x00\x3d\xa0\ \xb5\x94\xe0\x81\x5b\x6e\xcf\x3c\xa3\xaf\x5e\x5f\xb1\x71\xc7\x1a\ \x9f\x14\x1b\xcc\x33\x00\x55\x43\x7e\x18\x39\xf4\x86\xdf\xf9\xbc\ \x7a\x7d\x2c\x89\xb5\x30\x18\xa1\x83\x61\x6a\x86\x01\xf2\x9b\x25\ \x39\x88\x41\x76\xae\x61\x38\xa8\x74\x64\xe2\xf5\x1e\x06\xe5\x4b\ \x23\x8e\x92\xa0\xc5\x55\xfb\x13\x48\x2f\x55\xba\x37\xa4\x66\xd7\ \x91\x3a\x5b\x13\xac\x11\x98\xbb\xa3\x11\xa8\x0a\x75\xf2\x9a\x14\ \xb3\xce\x62\x56\x11\x8c\x84\x58\xe2\xf6\x26\xde\x53\xd0\x1a\xed\ \xb9\x84\xa9\x54\xc7\x86\xd1\xf7\xcb\xd8\x5d\xe6\x5d\x88\xbf\x29\ \x45\x51\x16\xcb\x08\x76\x89\x26\x5a\x0a\xfc\x5a\xbd\x1d\xcd\x78\ \x72\x74\x92\x69\xcd\x27\x84\x34\x19\x1e\xc6\x36\x37\x63\x0b\xcd\ \xb2\x75\xd4\x18\x13\xa3\x38\x78\x0a\xfd\x9e\x47\x93\x8f\x0e\x68\ \x4a\xb7\xcd\x25\x48\x2f\xcb\x8a\xa5\x07\x1a\x3b\xdc\x73\x58\x11\ \xa2\xb9\x11\xe3\xea\x08\xea\x9b\x59\xd3\x95\x82\x32\x73\x3b\x81\ \x64\x66\x86\x53\xf0\x61\x1b\x9d\x97\x9a\xe7\x82\xbc\x73\x5c\x8c\ \x23\x20\xac\x74\x93\x1a\x69\xe3\x7c\xde\x16\x25\xee\xbb\x2a\x7c\ \x11\x32\x62\xb8\xba\xaa\x58\xb9\x2c\xb6\x84\x2a\xb5\x4a\xd3\x60\ \xc0\xad\x9c\x7a\x5c\x5d\xe1\x02\x6c\x10\xf4\xec\x20\x85\xb7\x13\ \xd5\xd0\x84\xc5\xb0\x11\x9c\x5a\x82\x5d\x39\x17\xcf\x9c\x21\xa1\ \x21\x18\x46\xe3\xca\x77\x5c\x12\x94\xb4\x6d\x4e\x4f\xdc\xeb\x94\ \x81\xdc\xd7\xce\xd6\xf5\x84\x6f\x9f\x75\x0b\x2f\x5d\xc5\xda\x9f\ \x81\x43\xe8\xdc\xfd\x9c\x91\x7d\x02\xea\x8e\xd1\x65\x47\xde\xf5\ \x54\x99\x19\x46\x56\x47\xdd\x1b\xbe\x63\x9c\xcb\xb7\x52\xa1\xc3\ \x9a\x24\xa5\x61\xd5\x1e\x4c\x45\x57\xcf\x6d\xb3\x26\x7b\x31\xc8\ \x48\x21\x1a\x11\x79\xf7\x88\x07\x3c\x20\xa5\xc0\xc8\xa9\x1b\x9f\ \x0d\xa6\x57\x5b\x41\x65\x50\x27\x15\x39\xa1\xf2\x9a\x5d\xee\x61\ \x4d\x00\x42\x63\x61\x07\xed\x47\x89\x77\x9c\x37\x64\x19\x6b\xb2\ \x34\x8a\x43\x01\x6c\xae\x54\x3d\x82\xde\xdd\xac\xc9\x51\xd5\xdc\ \x99\x6e\x65\x06\x27\x37\xb4\xe4\x2e\x4a\x33\x1b\xfd\x8c\x78\x60\ \x26\x81\x71\x6d\x14\x07\x4f\xc7\x13\x67\x4f\x6a\xa1\x93\xcb\xd8\ \x83\xbd\x42\xcb\x4c\x85\x4e\xd3\x86\x99\x3b\x4f\x50\xdc\xe7\xba\ \xd7\xee\xc0\xb3\xd1\x63\xf9\xd8\x53\xd8\x2c\xc9\x36\xc6\xc2\x91\ \x77\xe8\xca\xea\xa0\x19\xe0\xea\x32\x47\x5e\x81\x49\xd9\x2b\x3c\ \x80\x4a\x2a\x3a\xf0\xf3\x96\xd9\x73\x26\x2a\xa8\x10\x8f\x6c\xda\ \x99\x5a\x35\xbf\xb7\x61\x19\xd1\x70\x6b\xce\x73\x33\xfb\xb4\x68\ \x41\x62\xf4\xd1\xd1\xf9\xc3\xfe\xf3\xde\x75\x39\xa7\xfd\x2b\xca\ \x66\x1d\x6d\xdd\x73\xe7\x1f\x60\x02\x04\x78\x9a\x78\x08\x63\x59\ \xae\xcd\xe9\xd6\xf9\x24\xfe\x7b\x0d\x4c\x62\xd2\x65\x5d\x4f\xb5\ \xdb\x3a\x48\xdf\x4e\x80\xa5\x3e\xee\x73\xef\x62\xfc\xcf\xe0\xdb\ \x72\xae\x81\xcd\x61\x07\x91\x36\x65\x71\x3a\xb4\x0a\x80\xfc\x81\ \x7b\xc2\xe4\x2e\xe6\xeb\x3e\xbe\x15\x8a\x50\x80\xe6\xc0\x28\x1f\ \x72\xc8\x5a\x17\xeb\xe3\x7a\xfc\xc4\x10\x87\x73\xee\x8c\x5c\x64\ \x56\x00\x4a\xc2\x15\x61\xb5\x97\xe6\x0d\x28\xc7\xa2\x24\xe2\x49\ \xe0\xb2\x41\x79\x1a\xe4\xc3\x78\xb8\xcf\x8b\xb2\xef\x15\x20\x40\ \xc5\xac\x59\x97\xb7\xf1\x27\xaf\x97\xc5\x8e\x4b\xd7\x79\x86\xa2\ \x96\x06\x2c\x1b\x05\x24\x2f\xa8\x18\xfa\x45\x50\x39\xcf\xf2\x93\ \xaa\x4d\x1d\x50\x79\xa7\x50\x9b\x8b\x7a\xcf\xc9\x00\x0f\x01\xf8\ \x21\x57\x31\xec\xf4\xc1\xdf\xfc\x7c\x78\x0e\x72\x35\x89\x72\x83\ \x36\x4b\x29\xeb\xe8\xee\x52\x26\xcb\xac\x53\xd1\x20\x5b\x73\xa8\ \x26\x5f\x06\x2b\x83\xb6\x5f\xa5\xfe\x8b\x0c\xdc\x82\x3f\x99\x64\ \x97\x67\xf8\x24\x6c\xb0\xfb\x21\xe6\xb4\x20\x0b\x0b\x0d\xbd\x3d\ \x4f\x96\x10\xa9\xc0\x9b\x4b\x7d\xb3\x51\x0e\x44\x5f\xc0\x19\xd8\ \xf3\x60\xb7\x85\x71\xc3\xd5\x9b\x07\x05\x14\x4e\x62\x63\x70\xab\ \x7b\xd5\xaf\x59\x9b\xb2\x7d\x7e\x05\x82\x75\xba\x8f\x4e\x89\xbe\ \x21\x67\x74\x88\x99\x45\xac\x4a\x62\xf3\x16\x25\xbb\xa7\xff\xf9\ \x9a\xe4\x7d\x72\xa0\xcd\x81\x44\x18\x88\xc8\x54\xdb\x75\x57\x38\ \x02\x0a\xea\x10\xa0\xb4\xc1\x0d\xb7\xf5\x32\xa6\x71\x92\x0a\xaa\ \x2b\xa8\x82\x9e\x8c\xe3\x74\xda\xd1\x76\xc3\x7c\x10\x37\x79\x3f\ \xd7\xb1\x28\xe7\x81\x78\x08\x1e\x46\x97\x03\xb3\xd3\xb6\xfa\x57\ \x39\xef\x13\xd9\xce\xac\x08\x71\x09\xc6\x83\xb7\x7d\x7b\xe5\xe6\ \x01\x9e\x86\x94\x2c\x58\xea\x5a\x6e\x0d\x94\xa0\xfc\xd1\xc8\x31\ \x5a\x78\x64\x7a\x4e\x12\x94\x84\xff\x2f\xd6\x39\x08\xbb\x4c\x14\ \x22\x19\x6b\x92\x6c\x5e\x8f\xf6\x66\x37\x3d\x43\x5a\xc3\x2f\x9f\ \x2d\x46\xf2\x9e\x82\xa6\x1a\xdf\xe9\x63\xd0\x76\x2c\xb9\x2f\x54\ \xc2\x8b\x41\xb6\x30\x72\x05\x2d\x87\x6a\xf8\x2a\x6c\x54\x8d\x8b\ \x8d\xf8\xb3\x62\x9b\x8a\xe3\x13\xcb\x67\xe5\xba\x9d\x22\x5e\x8b\ \xe9\x68\x27\x94\xa9\x50\x3b\xfd\x46\x46\xca\x1e\x19\xb6\x66\x94\ \x2f\xda\x9b\x9b\x6d\xb2\x47\xee\x22\x60\x69\x73\x4c\x46\x10\xc3\ \x01\xe4\x22\x89\x06\xad\x28\x98\xdd\x95\xc2\x65\xa8\x5e\x1b\x80\ \x0a\x81\xb2\x06\xdd\xe8\x07\xf4\x6a\x68\x0c\x26\xcc\x6e\xb5\x96\ \xd9\x4a\xb5\xb9\xd1\x04\x02\x5a\xa7\x93\x14\x3d\xb5\x87\xcf\x65\ \xa3\xe1\x93\x0f\x04\x34\x73\x7c\x02\xdd\x43\x1f\x25\xe6\xcb\xbb\ \x84\x5f\xab\x60\x5d\x2b\xbd\x36\x13\x89\x58\xaf\x62\x06\x69\xc9\ \x68\x5f\x98\x37\x9c\x2a\xc7\x55\xd5\x3a\x8b\xc2\x35\xb7\xf2\xd4\ \x5d\x52\xdc\xbf\xb3\x4b\xca\xfe\x20\xeb\x02\x4c\x66\x0b\x06\x64\ \x25\x85\xcb\xd9\x89\x76\x09\x53\x0c\x50\xe2\xd1\x8c\x81\xd7\xe1\ \x8e\x12\x22\xb4\xf5\xf5\x3b\x06\xe1\xe8\x24\xc0\x2a\xad\xc9\x28\ \x09\xa9\x2e\x02\x7c\x36\x37\x8d\x2d\x96\xc6\x22\xa4\x10\xbc\x5d\ \x3d\x0e\x48\xf3\x66\x4d\x0e\x36\xbe\x28\x32\x23\xf8\x5d\xf1\xd4\ \x68\x97\x2f\x1d\x6f\x9a\x09\x0d\x74\x0b\xa0\xd4\xcf\x12\x3e\xb1\ \xda\x2e\x41\x70\x31\x52\x09\x9d\xad\x89\x87\x0b\x4e\x9b\x00\x42\ \xde\x5c\x0d\xe2\x5c\x50\x34\xaf\xa8\xf7\x34\x30\xfd\x48\x19\xb6\ \x4d\xd3\x7e\x6f\x7f\xe6\x91\x49\x73\xd6\xe6\x77\xf4\x2d\xae\x7b\ \x7d\xf1\x2a\x40\x79\x20\x12\xe1\x94\x9e\xdd\x28\x79\xb8\x65\xa9\ \x34\x85\x93\x62\xcd\x9c\xb3\xcc\x5e\x47\x1e\xa5\x4a\x58\x14\xbe\ \xcc\xa5\xb3\x6a\x19\xac\xdc\x29\x35\x00\x63\xd7\x0d\x5b\xc0\x33\ \xdb\xc3\xad\x8b\x72\x14\xdc\xc5\x84\xd9\x24\x06\x29\x03\xe3\x03\ \x84\x11\xf8\x07\x80\x96\x8d\x33\x33\x24\x27\x83\x49\xf8\x00\x8f\ \x02\x5a\x4d\x71\x78\x4a\x2c\x82\x44\x53\x21\x91\x53\xeb\xc4\xc9\ \x60\xa1\x02\xa6\x2c\x20\x8b\x87\xcb\x94\x07\xd9\xef\xb6\x67\xe7\ \x10\x62\x07\x08\x3f\x41\xdb\xcf\xfe\x3a\xa6\x4c\x99\x99\x4e\x9f\ \x7e\x04\x15\x8d\x02\xec\x8d\x1b\x11\x94\xda\x0e\xc3\x4b\x6f\xda\ \x53\x67\xd5\x4e\x80\x1e\xd6\x14\x02\x4d\x87\x62\x6e\xab\x60\xf0\ \xcf\x68\x9f\xe4\x68\x29\x47\x4b\x61\xa3\xe1\x9a\xeb\xfe\x79\xac\ \xd3\x42\x42\xa5\xaa\x34\x87\x47\x20\xef\x3a\x18\xfa\x41\x3e\x02\ \xd6\xf6\x0b\x01\xd3\x68\x24\xd9\x23\x05\x10\xec\xb6\xf5\x67\x90\ \x77\xad\x06\xf3\xc1\xc8\x20\x3f\xe7\x79\xc9\x89\x6d\x93\x1a\xec\ \x34\x40\x8b\x43\xb0\xcc\x0f\x13\x87\xfb\x7d\xb2\x27\xa0\xe1\xed\ \xe7\xb1\xa1\x81\x40\x63\x8a\xe4\xd7\xd3\x93\x50\x12\xe1\xd5\xa7\ \xa4\x60\x96\xfb\x9a\xc5\x32\x05\xf3\x28\x94\x24\x6b\x71\x9d\x65\ \x6c\x80\xd1\x1d\x02\xf1\x4c\x95\x27\xfa\x3d\x8f\x45\x61\xe6\x45\ \x7c\x68\x54\xb8\x0c\x77\xc2\xc6\x72\x25\xef\x09\x68\xd9\x78\x84\ \x08\xca\x14\xed\x32\xdf\xe3\x65\x79\xce\x68\x65\x0d\x62\x1b\x15\ \x2c\x75\xf3\xeb\xb4\x18\xa9\x23\x9d\x0d\xf8\xaa\x37\x68\xc9\x3e\ \x3c\xa3\x30\xa8\x8c\x2f\xc0\x41\x8a\xf3\x84\xde\xc7\xe1\xb1\x56\ \x01\x3f\xb6\x9a\xfd\x27\x51\xb6\x6c\xda\xf6\x7b\x07\xb4\x88\x03\ \x9a\x56\xcf\x7b\xa3\x0e\x0c\xac\xc5\xc5\xa4\xcd\xf5\x31\x03\x1d\ \x35\xf6\x82\x52\x2d\xc6\x5f\xb1\x11\x05\x4e\xe9\xed\x14\xf4\x5e\ \xf1\xe4\xa1\x1d\x55\x6d\xf4\x3f\x77\x5e\x5c\x9b\x41\x1e\x3a\x06\ \xcb\x1e\x69\x48\x4a\xd4\xcd\x9a\x1c\x0c\xd0\x0a\xea\x82\x20\x32\ \x30\x04\xed\x96\x54\x5d\x85\x29\x29\x11\x35\x4f\x20\x2a\x16\x1f\ \xd6\x4e\x01\x73\x68\xa2\xbe\x8e\x55\x0c\xed\x24\xa2\xc0\x49\x02\ \x58\xa5\x0b\x8b\x25\xa9\x93\x2f\x9e\xe6\x9e\x9a\xd2\x24\x85\x4b\ \x92\x24\x86\x59\x71\xa3\x7f\x95\x8f\x0c\xb4\x6c\xfa\x5d\x1d\x64\ \x48\x61\xb0\x7f\x7d\x9f\x14\x62\x18\x6e\x08\x26\x1d\xe4\x56\x6d\ \x5b\x1a\x00\xf8\xb6\x02\xe7\x58\x81\x9a\xbb\x7d\x62\x85\x16\xb4\ \x64\x44\xa5\x63\x9d\x0b\x53\x6a\x81\xee\x09\xb1\xb2\x35\x2a\xcc\ \x8e\xad\xc6\x7d\x40\x69\x7b\x5c\x81\xf5\x41\xf5\x61\x98\xb0\xf4\ \x21\xfd\x70\x71\x9b\x90\xac\x91\xfb\xa5\x82\xdd\x82\x5b\x41\xaa\ \xf8\x62\x83\xdd\xad\x36\xa6\x4f\x67\xdb\x04\x36\x72\xe2\xbb\x55\ \x31\xf9\xe5\xd0\x4d\x8b\x27\x2d\x69\x49\x7a\x85\xdc\xa4\x70\x8f\ \x6b\xbb\x1f\x6a\x11\xb7\x25\x39\x74\x0a\x8a\x49\xa9\x75\xbc\x3a\ \x71\x99\xbc\xdc\xa2\xc6\x0c\x0a\x5c\xae\x32\xd6\x42\xa5\xfd\xf9\ \xde\xf1\x20\x76\xc9\x6d\xa3\x72\xb9\x13\xd9\x45\xcc\x25\xbc\xdd\ \x3c\xd5\xcc\x7c\xdb\xdc\xee\x09\xfc\xb3\x86\xe1\x18\x3d\x36\x7e\ \x03\x5b\x60\x73\xf1\xec\xf8\x67\xb4\xcc\x4d\x18\x33\x79\x12\x9a\ \x1c\x2f\xaf\x09\x67\x84\x91\x22\xb3\x78\xb3\xe6\xb9\x11\x15\xe9\ \x0e\xa3\x39\xc1\x18\x29\x9c\xca\xe9\xe9\x44\xa3\x13\xa9\xfc\x32\ \x30\x7d\x9b\x3b\x42\x37\xfb\xb3\x60\x23\x27\x05\xab\x52\xa8\xbe\ \x37\x05\xcf\xc1\xfe\x2c\x33\x9f\xd3\xae\xc2\xc3\xbd\x8e\x42\xe0\ \xe2\x36\x51\xbe\xe6\x43\xc2\xae\xd7\xe2\xd2\x8d\x1b\x41\x2f\x9e\ \x76\x9f\xfb\x4c\xfd\xdd\x1d\xba\x68\xf3\xca\x86\xda\x54\x4a\x8b\ \xbe\xf8\xb4\x25\xc1\xfe\x8c\xd3\xa0\xda\xd4\x21\xc1\xdc\xb1\x32\ \xdc\x40\x2d\x8e\xf6\x67\xda\xb3\x91\x34\x93\xdb\x01\x0d\x9d\xab\ \x8b\xd2\x9f\xcd\x2e\x03\xa1\x4d\xac\x76\x4a\x1a\xbf\x57\xab\xae\ \xbd\x8a\x54\x69\xc4\x9f\x6e\x19\x0f\xee\xf7\x6a\x54\xf1\x88\xf0\ \xba\x92\x82\x95\x07\x3c\x2d\xc4\x0e\xfb\x33\x5a\x8e\x31\x22\x6a\ \x95\x90\x40\xbc\xe7\x6e\xe6\xbe\x37\xe7\x41\xfe\xb1\xd0\x42\xf1\ \x08\x29\xd4\x07\x6a\xc0\x94\x91\xd0\xe2\x4e\xef\xc8\x85\xdf\xb8\ \x9b\x1e\x84\xb6\x92\x48\x86\x80\x67\x38\x25\xff\x3c\xe4\x8e\xcc\ \x6c\x57\x67\x6e\x5e\xb3\x60\xac\x49\xb2\x81\xb4\x89\xcb\x33\x16\ \xb7\xa0\xb2\xd9\x27\x07\x73\x9e\xa4\xb0\xe7\xc0\x1f\x28\x00\x0e\ \x12\xea\x45\x8b\x49\xe5\x43\xba\x39\x90\x67\x4b\xba\xd9\x3f\xeb\ \x3c\x2d\x6c\xa1\x8a\xb5\x7c\x39\x69\xc6\xea\xc2\xc2\xff\x51\xef\ \xc4\x45\x38\xb5\x73\x5d\x37\x55\x76\x6a\x0b\xeb\x20\x30\x00\x26\ \x6e\xa2\x26\xb4\xe9\xd9\xf7\xc3\xc0\xcb\x23\x1c\x5d\x50\xa2\x00\ \xbe\xe9\x2e\x73\x68\xe0\x8b\xc0\x49\x35\x07\x42\x08\x5c\x65\x69\ \x50\x2b\x81\x73\x78\x68\x20\xc5\x16\xf2\x69\x6a\x0f\x3f\x51\x81\ \x4f\xdb\x84\xf0\x3c\x57\xd8\x36\xf7\x36\x2c\x9c\x73\x84\x04\x97\ \x4d\xeb\xa9\x6d\x60\x05\x7b\xff\x33\xd3\xca\xc6\x4c\x16\x3c\x59\ \xab\xc3\x6a\xe2\x6a\xd7\x9e\x21\x1e\xfa\x0d\x81\x16\x52\xb9\x79\ \xc2\xe9\xf0\x38\xe8\xac\x48\xfc\xc5\x13\x01\x1f\x3c\x26\xb5\xbb\ \xbc\x72\x14\xe5\x74\x2e\xcd\x13\x66\x61\x51\xb4\x79\xe9\x9f\x74\ \xd4\xca\x94\xaf\x57\x5c\xd8\xf2\x7d\x6a\x5f\x8e\x40\xf7\x14\xa1\ \xd4\x80\x8f\xd7\xab\xba\xae\x2d\x81\xba\x0a\xfe\x58\xba\xd4\xb1\ \x42\xcd\x7e\x6d\x51\x57\x0f\xa0\xcb\x1b\x0b\x05\x9b\x8f\xc3\x92\ \x80\x83\x83\x60\xcc\x40\xaa\xf1\x30\x53\xab\x9d\x42\xdc\x50\xce\ \x66\xa5\x1c\xa5\x14\x34\xb7\x8d\x9d\x62\x39\xf8\x9f\x65\x9a\x4f\ \x85\xc1\x3f\x30\xf4\xeb\x3a\x0a\x28\x65\x2b\x52\x72\x0a\x15\xc8\ \x62\xaf\xab\x1b\x01\x5b\x10\x49\x54\x34\xa0\x94\xb8\x1d\xb7\x09\ \x02\x9e\xad\x45\xc0\x0d\xa9\xc5\x34\x51\x47\x61\xac\x89\xf1\xcf\ \x32\x3f\x5b\x4f\xc8\x84\x29\x0e\xe9\xc7\x70\x5b\x93\x43\x43\xb6\ \x39\x65\xbd\xca\x40\x81\x28\xf5\x7a\xdd\x03\x9b\x68\xca\xd8\x59\ \x19\x69\xd6\x51\xa8\x8b\xd0\x53\x53\xa5\x91\xd1\xbf\x52\xce\x84\ \x6c\xdc\x89\xa4\xfa\xa0\xbc\xea\xa4\xc3\xa7\x45\xfe\x63\x6a\xb9\ \xa3\x04\x01\x30\x16\xba\xba\x68\xc9\x26\x6b\xf2\x84\xcd\x9a\xec\ \x91\x5b\x85\x06\x5b\x42\xdb\xdb\xf8\x07\x0f\xe8\xb2\x40\x76\x36\ \xdd\x1b\x60\x04\xad\xae\x67\x47\xc7\xa8\x27\xcc\x6f\x12\x5a\xa4\ \xe9\x0c\xa6\xd4\x4a\x2d\x36\x96\xf5\x73\x59\x19\x23\x9c\x98\xc5\ \x24\xed\x7a\x9c\xcf\x5a\xa8\xd5\xf5\xed\x92\xec\xdb\xb1\xb0\x7b\ \x78\x89\x01\xc2\x72\x4d\x0f\x88\xcc\x27\x73\x51\x34\x12\x5d\xe7\ \x8e\x59\x96\x24\x0f\x19\x75\x40\x8d\xe8\x01\x9f\xed\x12\x2c\x03\ \xb9\xaf\xcc\x2e\x26\xce\xe3\xee\xd8\x92\x78\x03\xc7\x9a\x96\x31\ \x13\x60\xcc\xec\x6b\xb9\x67\xc7\x17\xbf\x7f\x1e\x7c\x69\xb4\x99\ \xc0\x7a\xe9\x13\xe5\x07\xaa\x9d\x1c\x54\x1f\xec\x88\x4b\x36\xcf\ \x62\x34\xbf\xe5\xf4\xec\x9e\x21\x86\x54\x62\x41\x5b\x02\x85\xac\ \x1f\x20\x20\x5c\xa0\x6e\x96\xbf\xd0\xff\x0c\x13\x92\x54\xcd\xbf\ \x55\x71\x0d\xb5\x94\xbf\x05\x75\xb3\x98\xff\x59\x23\xa3\x25\xde\ \x96\x5e\x16\x23\x86\xdb\x7d\xe8\xf7\x82\xbb\x48\x20\xc1\xdb\x0c\ \xd8\xe0\x0e\x13\xa7\xab\xa4\xa2\xc1\x4f\x57\x64\x1d\x6e\x22\xcb\ \xcb\x82\x6b\x17\x2b\xb2\xe9\xed\x5c\xbb\xad\x10\x57\x1a\x73\xa1\ \x96\xc1\xde\xcf\x1d\xd9\x6a\x05\x8c\x4f\x86\xb6\xc4\x10\xe0\x54\ \xcd\x19\x37\x4b\xb2\x0b\xfd\x55\xfb\x4b\xf7\x04\x53\x64\xb8\xc7\ \xc9\xd0\x92\x17\x91\xcc\x25\x19\x91\xcd\xa3\x98\x4b\x3f\x69\xc9\ \xaf\x0b\xb9\x90\xb2\xa2\xf4\x43\xba\x42\xda\xe3\xf4\x09\x40\x7e\ \x30\xea\xad\xf3\x24\xbc\x2d\xf4\x7b\x73\xe7\x51\x29\x43\xe8\xc7\ \xa8\xcf\x0f\xfd\xa9\x5b\x8a\xb0\x23\x9f\xe9\x2d\x62\xc9\x38\xb4\ \x07\x82\x02\xf7\xe5\x26\x31\x58\x61\x07\x2b\x1e\x2f\xb3\xca\x2f\ \x5f\x52\x04\xd8\x39\xdd\x3a\x47\x0e\x71\xe2\x63\xe8\x37\x51\xd1\ \x8a\xb4\x1a\x92\x6f\x08\xcd\xcc\x5d\x12\x42\x3f\x92\xd3\x4a\x93\ \x55\x37\x2b\xa0\xf6\xa5\xe3\xb4\x2e\xc9\xc1\x5d\x18\x34\x3a\x77\ \x50\xa5\x4b\xf5\x00\x1f\xaf\x42\x9f\xce\xe6\xc6\x0b\xe9\xdd\x95\ \xd5\xd4\xbe\x28\xea\x02\x28\x53\xd0\x55\xca\xda\xcf\xe2\x9c\x0e\ \x6f\x43\xb3\x18\xd4\xa2\x9f\xec\x2e\xac\x1b\x8d\x67\x2b\x20\x64\ \xf5\x11\xd1\x41\xab\xd6\x24\x2e\xeb\x9a\x1c\xb8\x67\x08\x31\x23\ \x34\x07\x7c\xa9\x8c\x06\xc6\xc5\x86\x28\xeb\x70\x27\x71\xd2\x97\ \x93\x03\x40\xa8\x93\x29\x72\x38\xc2\x89\x88\x2a\x5d\x9d\x8a\xdc\ \x1d\x15\x41\x84\x8b\x30\x77\x49\xcc\x9c\x07\x58\x2a\xae\x5a\x2a\ \x38\xb1\x0e\xd9\x5c\x87\x3b\xf2\x19\x46\x34\xe0\x44\x02\x97\x34\ \x72\x02\xf5\x01\xf1\x7b\x76\x09\x1a\xaa\x75\xc8\x58\xa5\x65\x9f\ \x34\xe0\x86\x0d\x84\x5d\x32\x45\xd5\xb3\xfb\x50\x1b\x25\xa3\xfa\ \x8a\x73\xba\x9b\x2b\x19\x5a\x82\x81\x76\x71\x75\x74\x06\x39\x05\ \xe1\xb5\x41\x32\x97\xb0\x6f\x61\xd0\xd3\x51\x94\x31\xa8\x71\x1b\ \xcc\x92\xab\x2e\x4e\xc0\x94\xc9\x10\x52\x42\xa1\x7c\x65\x5a\xa1\ \xdb\x60\xe3\xb9\xe1\xce\x7e\xd6\xd5\xe1\x19\x5a\x51\x0a\x4a\xa7\ \x3a\xc6\xa9\x5d\xe2\x12\x8a\x85\x7f\x8a\x4c\x48\x0a\x45\x55\x57\ \xdb\xee\x93\x7d\x88\x25\xfd\x86\x1c\xe5\x02\x13\xe4\xf4\xc0\x92\ \xe8\x0c\x02\xd7\x63\x2a\x5b\x51\xec\x5e\x53\xc9\x40\x66\xc0\x52\ \xb5\x40\x19\x7c\x56\xac\x73\x0b\xaf\x8e\xde\x61\xae\xa9\x7d\x31\ \xff\x33\xc6\x08\xc0\x1e\x19\xaf\xd3\xa2\xdd\xec\x92\x3d\x2f\x02\ \x3d\x9f\x0a\xab\x04\x37\xf1\xde\x2e\x53\x59\x03\x82\x4a\x8d\x05\ \x01\xb4\xdb\x57\xc3\x65\x50\x40\xaa\xe0\x75\x34\x23\xf5\x4c\x3d\ \x05\xec\xf6\x00\xa1\xb3\x72\xe4\x3b\xac\xb9\xa9\xbb\x24\x0e\xb1\ \x5d\x8c\xe5\xf5\x62\x94\x16\xe8\x4c\xc4\x7b\xe1\xfb\xb2\xa3\x9e\ \xf1\xd5\x95\xae\xb9\x73\xd6\x03\xea\xe1\x72\x93\xb8\x3c\x6b\x21\ \xd0\x5e\xae\xca\x4d\xa2\x56\xc0\x2d\x8b\x82\xad\x46\x4b\x68\x0d\ \x6a\x3f\xc6\xd3\x92\x43\xa9\xa2\x89\xe3\x93\xb5\x01\x5b\x99\xbb\ \x28\x43\x09\x12\xa0\x29\x4d\x89\x8c\x3e\xd6\x46\x6e\xb7\xec\x0d\ \xd0\xd0\xdc\x0e\xd6\x13\x35\x98\x7e\xb9\x3e\x61\x09\xaa\xb9\x4d\ \x18\x86\x3e\xaf\xc7\xf0\x67\x89\x27\xd0\x1d\x3a\x42\x77\xba\x67\ \x73\x3f\x99\xc4\xc1\xbf\x85\xb9\xae\x88\x02\xd1\x26\xfc\x80\xe7\ \xf2\xe5\x45\x31\xdf\x88\xc4\x8c\xa3\xa2\x79\xc9\x4b\xda\xe6\xb1\ \x7b\x07\x34\x68\xcf\x85\xfc\x15\x5f\x55\xed\x96\x70\x59\x43\x47\ \xcb\x8b\x68\x9b\xfe\x83\x04\x41\x48\x37\x9c\x1d\xca\xc2\x55\x0b\ \x15\x92\x0a\xd6\x74\x42\x8e\x8f\x26\x85\xc1\x14\x53\x15\x64\x48\ \xc9\x4d\x05\xed\x96\xc1\x3e\xd3\xa5\xac\x80\x09\x6a\x1b\xd7\x81\ \x4d\xa3\xb8\x1c\xd8\x67\xba\xa4\xa0\x29\x57\xa8\x4e\x1c\xfe\xeb\ \x89\xac\x23\xa4\xe0\x45\xc0\x2e\x8d\x6e\x65\xe4\x31\xa4\x00\x68\ \x06\xfc\x90\x56\xed\x49\xbd\x13\x23\xb3\x04\x18\xbe\x20\xb8\xe6\ \xd9\x01\x58\x94\x8d\x8c\xe2\x74\x74\x53\xc7\xa8\x8a\x6c\x29\xed\ \xf6\xc9\x51\x44\xa1\x23\xd8\xa6\xa7\xad\x64\x91\xe5\xb2\xa6\x79\ \x81\xb4\x85\xd9\x75\x1e\x08\x6d\xbf\x4e\xf6\x19\x45\x75\x3c\x94\ \xdc\xe7\x6b\x65\x77\x78\x6a\xce\x01\x97\xe8\x8a\x84\x42\x9c\x97\ \xdc\xdb\x3e\x19\xf4\xb3\xd8\x8c\x67\xa0\x6a\xb7\xf6\xb8\x60\xd8\ \xd7\x45\xd9\xd1\xcf\xc0\x4f\x21\x25\x54\x28\x17\xad\x7a\x7d\x40\ \xa8\x8c\x91\x2b\xad\x62\x74\x67\x68\xa4\xac\x61\x36\x80\x1a\x70\ \xc6\xa4\x2a\xed\xd4\x0f\x80\xe1\x61\x50\xd2\x0d\x19\x01\x4c\xeb\ \xdc\x45\x09\x66\x7f\x6e\xae\x27\xc8\x5b\x05\x3f\xac\xe4\xf3\x6d\ \x4d\x8e\xa2\xe6\x4c\x83\x52\xb7\xae\xbf\xde\xd3\xe5\xf4\x1e\xfa\ \x10\x93\x34\xb0\x52\x15\x1d\x89\xd5\xef\x0b\xc5\x67\x6a\x52\xe4\ \x14\x7a\x3c\x9d\xed\x87\x42\x02\x81\xda\x2e\xbe\x98\x73\x3d\x12\ \x4a\xa2\x59\xa0\xfb\x1e\xed\xa0\x66\xd8\xd0\xe6\xc2\x66\x9f\x1c\ \xd9\x67\x46\x2a\x8c\x36\x5a\xcc\x8f\x30\x7c\x0b\xc2\xd8\x1e\xd2\ \x23\x90\xbd\xb8\xd2\x14\x3d\x23\x1c\x2d\xbc\x72\x20\x04\xba\xcf\ \x6e\x63\xce\x0b\x12\x65\x2d\x62\x65\x33\xfb\xec\x14\x9b\x13\x56\ \xe5\xd6\x76\x72\xb4\x83\x47\x37\xe2\xb6\x24\x07\x6b\x9e\x54\xf1\ \x55\x47\x46\x06\xa3\xc1\xeb\x85\x31\x6c\xa9\xa2\x5c\x27\x8c\xa9\ \x42\x73\xeb\x65\xcc\x64\x1a\x0c\x6a\xba\xb3\xf2\xda\x6d\x13\x45\ \xe0\x0c\x26\x93\x10\x88\xbe\xfa\xdc\x35\x31\x0b\xb4\x60\xc6\x25\ \x20\x1b\x1d\x82\xbb\x75\xb3\x28\xdb\x20\x4b\x2b\x93\xd5\xa8\x9e\ \x82\x16\x54\xca\xd5\x9e\x92\x57\xb4\xee\x76\xc1\x14\x83\x6f\xb5\ \x95\x2d\x12\x22\x02\x71\x20\xc5\x3a\x4e\xd0\x67\xbd\x73\x73\x0d\ \x07\xec\x9c\x7a\xa0\x54\x9c\xba\x26\xd9\x99\x94\x83\xae\x60\x63\ \xa3\x54\x5f\xc7\xd8\xe9\x76\x74\x76\xdc\x33\x14\x17\x48\x0e\xc0\ \x9b\x53\xd2\xe6\xcb\x0a\x24\xb8\xd0\x70\xed\xe8\x87\xa1\x7c\x95\ \x6f\x4b\xa2\x1b\x05\x8b\x8e\xea\x30\x68\xad\xa7\x5e\xa4\x85\xfc\ \x9f\x81\x6d\x74\x36\x58\x98\xbb\x24\x06\xdb\xa5\x6c\x68\x88\xbd\ \xeb\x71\x42\xdc\x56\x3c\x07\xee\x59\xa9\x29\x01\x6e\x02\xa5\x88\ \x10\xc8\xf5\xa3\xa3\xa4\x4b\x21\x9a\x36\x08\xb0\xc3\xb6\x26\xf7\ \xa8\x6f\xea\x9f\x90\xbf\xa4\xc9\x79\x86\x00\xc9\xd9\x1a\xb9\xcd\ \x5c\xdb\xf2\x5c\xf1\x9e\x62\xdc\x33\xbd\x26\x05\xb4\x4e\x07\xd0\ \x23\x41\xb2\x59\x92\x83\x52\x8d\x72\x47\x50\x70\xa9\x20\x00\x3c\ \x2c\x1b\xae\x4e\xb1\x33\x8a\x27\x4c\x77\x3e\x9b\xd3\x1a\xbc\x03\ \x64\x7f\x37\x25\x2e\xe8\xf3\xe7\xfd\x93\x92\xac\x9d\x40\x41\x3a\ \x7b\x4d\x0a\x79\xa3\xf6\x20\xd2\xfe\x21\xe3\x88\xb4\x11\x0c\x28\ \x7b\xf7\xb3\x06\x9a\x2b\x0f\x37\x00\x18\x82\xd7\x53\x36\xdd\xe9\ \x41\x9f\xca\x42\x7b\x0d\x69\x65\xc7\xd7\x67\xe8\xab\xc5\x79\x8f\ \xbe\xc2\x2a\xcd\xb3\x5b\x13\x8f\xf6\x31\xfb\x94\x0e\x68\x0d\x73\ \x53\xfb\x4c\x3f\xd6\x34\x99\x0d\x35\xe0\x6a\xaf\x69\x33\x8a\xcb\ \x07\xa1\x9a\x0a\x69\xcc\x13\x18\x75\x83\xd6\xeb\x00\x55\xae\x9d\ \x80\x64\x11\x42\x12\x79\xb9\xd4\x4d\xf9\x3e\x02\x6f\xa6\x5a\x66\ \x96\x7d\x2a\x40\x62\xe6\x23\xb8\x7e\xd0\xb6\x4f\x73\xa9\x11\xa5\ \x18\xa4\x0c\x92\x97\xb2\x57\xc6\x2a\x91\x91\xc9\xfd\x46\xd9\xdb\ \x9f\x91\x2e\x45\xae\xe2\x02\x60\x16\xeb\xcb\x07\x6a\x40\xbc\x07\ \xc9\xbc\x28\x14\x96\xb0\x60\xea\x4f\x05\xac\x67\xe6\xd2\xaf\xe5\ \x14\x02\xa2\x38\x6f\x55\x22\x76\x63\x3e\xcd\x4b\xd9\xc6\xa2\x80\ \x6b\xe3\xb6\x29\xe4\x48\x78\x8f\x0f\x63\xba\xcf\x6b\x72\xd0\xdb\ \xa5\x79\x8b\x27\xa4\x63\xac\x1a\xaf\xcf\xb1\xcd\x84\x10\x07\xab\ \x52\x07\x01\x73\x6d\x2b\x15\xf4\x98\x71\xea\x48\x59\xa9\x64\x3c\ \xd5\x96\x6d\x0d\x33\x47\x20\xc6\xad\xcd\x6e\x3e\x16\x6b\x16\x90\ \x21\xa9\xce\xa1\x5d\xa4\xbc\xdd\xdd\x9b\x4c\x96\x83\xfd\x59\x37\ \xf0\xbd\x8a\xa3\x8c\xc9\x50\xb9\xcc\x3f\x2b\xda\x10\xde\x64\x2c\ \xcd\x23\x2f\xf5\xd5\x87\x26\x53\x03\x11\x60\x29\x35\xbb\x3f\xae\ \x49\x79\x6e\x39\xa3\x04\x06\x85\x20\x93\xbd\x4d\x0d\xb2\x65\x28\ \xd5\x78\xec\x14\xb9\xf4\x9b\xf6\x63\x8c\x9b\x35\xd9\xc3\x76\x99\ \x4f\xc5\xe1\x1c\x91\xab\xbf\x4e\x67\x55\x58\xd0\xf5\xaf\x64\xa4\ \x5b\xe3\xc6\xe5\x75\x9a\x61\xf5\x28\x9c\x49\xe5\x91\x61\x91\xe6\ \xd9\x97\x3b\x18\xbb\x06\x00\xf1\x9e\x62\x74\xee\xd0\xab\x34\x63\ \xa3\x47\xed\x12\xa4\x96\x71\x62\xdb\x48\xa4\x95\x1d\xfd\x8c\x05\ \x24\x85\x51\x76\xef\x8a\x29\x97\x3c\xd0\x3f\x09\xdc\x19\x58\xee\ \xb5\xfc\x59\xe6\x9d\x8d\x88\x91\x17\x84\xd5\x68\xee\x23\x67\x41\ \x16\xb3\x36\xe5\x0e\xc0\x6a\x8b\x9f\x6b\x5a\xab\x6a\x9b\xcb\x18\ \x98\x5d\xc2\xc3\x0f\x0d\xe8\x7e\xaf\x2e\x58\xea\xbe\xc5\x85\x35\ \x02\x5c\x38\x9a\x61\x98\x50\x5f\x6f\xdc\x07\x67\xaa\x12\x25\x58\ \x52\x9c\x57\x38\x26\x25\x97\x52\x20\x9f\x18\xef\x2c\x5e\x44\xbb\ \x67\xd0\x45\x0d\x68\xd1\x0a\xd1\x54\xe7\x5a\x38\x95\x6a\x14\x5f\ \x68\x9b\x44\x92\x64\x02\x76\xdb\x36\x5b\x3d\x68\x28\x64\x93\x12\ \x55\x6a\xd1\xf8\xae\x07\x94\xf4\x02\x22\xac\x05\xc6\x68\x64\x0e\ \xb0\x8e\xd0\x51\x9f\x81\x96\x89\xd6\x04\xfd\xab\xb3\xa3\x13\x32\ \xf4\x16\xa4\x28\x55\xb1\xcd\x75\xc1\xd6\xed\x6e\x29\x07\x63\xa7\ \xa6\x05\x51\x8d\x81\x63\xc3\x66\x4d\xf6\x21\x16\xf5\xd6\xcc\x00\ \x33\xeb\xb6\x18\xb4\xac\x4b\xfb\x84\x79\x31\xa2\x1d\x95\x82\x52\ \x79\x5a\xbd\xb1\x00\x50\x67\xf0\x9d\xe9\x8e\xa7\x34\x3d\xac\x09\ \xfd\x1e\xf2\x3d\x68\x3f\xe6\xfe\x39\xb7\x2c\x86\x7d\x06\xd9\x01\ \xe8\x7a\x27\x60\x62\x7e\xb2\xb9\x76\xf6\xec\x33\x72\x03\x0e\x39\ \xe2\x91\x5c\xca\xfe\xf2\x34\x03\x17\xc2\xcc\x28\x0f\xb3\x3d\x84\ \xc0\x57\xec\xa1\xf5\x7b\x3d\x4e\x48\xc1\xfa\x68\xa7\x8d\x7b\xd4\ \xc0\x60\xf5\x9b\x8c\xd0\xe4\x8d\x62\x98\x32\xf6\x61\xec\xf6\x21\ \x11\x9d\xba\x6f\xb3\xd5\x03\xa6\x0c\xe2\x1e\xbe\xe0\x29\xc2\x91\ \x78\x80\x41\x93\x1a\x4a\x46\x48\x3f\x43\x2c\x0e\xab\x90\x1e\x4d\ \x19\xc8\x6d\x91\xfe\x62\x3e\x55\xbe\x52\xba\x08\x3c\x16\xfc\x8b\ \x6e\xc9\x34\x37\x3d\x69\xd6\x8e\xd5\x8d\xa8\x52\x8a\xfe\x39\x00\ \x99\x8d\xa8\x6d\xd9\xb1\xcf\x9a\x91\x4d\x6b\x43\xa0\xac\xa3\x29\ \x7b\x39\xb7\xd7\x87\xa7\xa9\xdb\x7b\x53\xae\x4c\x1a\xb0\x0e\x47\ \x99\x85\x59\x3a\xa8\x75\x3a\xb5\x36\x2e\xcf\x28\xc5\x51\x5a\xe8\ \x1b\x33\xa0\xbf\xb9\x6b\x12\x4c\x3f\x08\xd0\x56\x77\x98\x8c\xe2\ \xf7\x71\x1f\x4e\x76\xe4\xb3\xfc\x0c\xe3\x07\x56\x56\x86\x18\xd1\ \xd3\x65\xf2\x99\xce\x20\xee\x4b\x66\x55\xa9\x2d\x1a\x17\xc4\x3b\ \x59\x6c\xc1\x43\x2c\x2b\x0b\xd0\xd1\xac\x67\x0d\x6a\x05\xd6\x88\ \x52\x87\xa2\x4a\xaf\xcb\x85\x35\x6f\x49\xd2\x68\x9f\x90\x9f\xa0\ \x6a\xeb\xd1\x0f\xdf\xb4\x94\xf6\xec\x33\x2a\x46\x1a\x4a\xd8\xf8\ \x30\x1a\xed\x97\xf1\x98\x80\xa2\xe9\x81\x34\x13\xe7\x54\x0c\x59\ \x47\x19\xba\x87\x51\x12\xd0\x92\xd7\x1b\x8d\x6a\xb7\xc3\x10\x47\ \x46\x09\x23\x61\xc2\x3d\x91\xf5\x3c\x16\x05\x6a\x44\x83\x87\x5d\ \xb2\x59\xf3\xc0\x1a\xd9\x1c\x9d\x43\x3b\x56\xe5\x00\x6c\x06\x0f\ \xa7\x3d\x0e\xb1\xaa\x8b\xf6\x22\x0c\x59\xa1\xdf\x61\x68\xe3\xf2\ \x4d\xe9\xd7\xe9\x9a\x47\xd3\x56\xb5\x18\x8d\x84\xb3\x78\x12\x52\ \x82\xe8\x4a\x81\x88\x5f\xcc\xe4\x35\xb1\x76\x2c\x90\x7a\xe5\xd9\ \x31\xf3\x68\x21\x6e\xc0\x5b\x6d\x1f\x63\x3b\xdd\xd2\x66\xa9\x35\ \xd8\xbc\xcb\xfb\xc4\xdb\x18\x10\xcd\x1b\xc3\x56\x0c\x00\xa5\xc9\ \xb2\xa8\x20\x4e\x86\x0c\x06\x84\x79\xd2\x53\xa2\x0c\xc5\xce\x0f\ \x21\x5c\xee\xa7\xb9\x76\x8a\xca\xd0\x0d\x44\x15\x70\xbf\x66\x9a\ \x0f\xa7\xf5\x5e\x45\xa1\xf4\x7d\x3b\x16\xa9\x45\x60\x45\x68\x33\ \x96\x61\x9c\x73\x71\xb8\x43\x27\xb6\x2a\x79\x46\x20\xd7\xaf\xc6\ \x81\xa8\xb2\x18\xbd\x37\xc1\x38\xaa\x39\x9c\xa1\x1e\x75\xd4\x18\ \xfa\x33\x3e\xd7\x76\x71\x73\xdb\x27\x83\x7c\x16\xc8\x17\x19\x79\ \x01\x5d\xc8\x61\xd3\x67\xeb\x7b\x74\x2c\x4a\xc0\x43\x12\x3e\x41\ \xfd\xba\x7c\x15\x7b\x5d\xa8\xca\x3f\x54\x49\xaa\xd0\x53\x9c\xad\ \x6b\x6a\x0f\x22\x05\x7d\x18\x20\xb2\xd1\x9d\xc0\x94\x2a\x08\x70\ \x8c\xb0\xa2\xf6\xa9\xee\x9e\x38\x37\x65\xeb\x89\x37\x6f\x8e\x6c\ \x1d\xd5\x5d\x4f\xd9\xbe\x59\x92\xbc\xdf\xb5\xc0\xff\x0b\x45\x3e\ \xfd\x93\xf0\x40\x87\x5a\x91\xb5\x24\x84\x0a\x15\xdb\x11\x33\x59\ \x6e\x62\xfd\xb9\x58\x64\x8b\x29\xa1\x07\x70\x12\x4d\x2c\xbc\x06\ \xa0\x3c\x08\x0b\x4c\xee\xda\x2f\xde\x67\x64\x4e\x70\x56\x32\x02\ \x3e\x65\x83\xc9\x39\x78\x9f\xe9\x85\x1a\xe2\x5a\x57\x14\x23\x9e\ \xcb\x45\xb1\xb6\x49\xb2\x7a\x27\x79\xd4\xe7\x42\x5f\xbb\xf6\xda\ \x7d\x80\x39\x1c\xde\x6a\xaa\x39\xce\x1a\x4a\x1e\x13\xb9\xb4\xc5\ \x90\x4e\x6b\x14\x40\x3e\x33\xbb\xf6\x80\x76\xa2\x82\xab\xde\x7e\ \xba\x37\x53\x2c\x7b\xf2\x19\x17\x28\x56\x3d\x10\xf2\x4a\x5d\xf4\ \xd1\x2e\x2b\x5f\x15\xd7\xcc\x51\x51\x97\xbb\xbb\x41\x86\x23\x09\ \x24\x92\x2f\xb8\x9b\xa4\x78\x6a\x7f\x43\x12\x60\xca\xaa\x20\x35\ \xe6\x82\xb7\xaa\x73\x03\x27\x60\xb4\x52\xb4\x39\x61\x51\xdd\xb7\ \x63\xeb\xde\xfe\xcc\xa0\x16\x4c\x78\xad\x0a\x78\x04\xe4\x17\xc9\ \x74\x90\xef\x57\x39\x57\xfc\x4d\x44\x41\x5b\xb1\x20\xd2\xa7\xe0\ \x66\x54\x92\x13\x55\x96\x6c\x12\x42\x2a\x88\xa3\xd2\x60\x65\x8f\ \xf3\x46\xa3\xec\x14\xc5\x77\xce\x67\x47\xb4\x87\xee\x39\xa0\x82\ \x0d\x76\xab\xba\xbd\x88\x02\x35\x2c\x52\xe7\xd9\x5a\xd5\xf9\x01\ \x7d\xf9\x80\xdf\x68\x46\x58\x45\x89\xec\x52\xf0\x5b\x59\x9c\x55\ \xf2\xe2\x9f\x9e\x8d\x16\x7d\x12\x63\x83\x72\x92\x64\xba\x4a\x26\ \x2b\x31\x15\xf7\x58\x17\xf7\x33\x0c\x23\xad\xb1\x83\x8b\x65\xbc\ \x17\x96\xa8\x47\xf6\x99\x32\x0a\xee\x03\x8f\x36\xbe\x0e\xdd\x03\ \xb3\x51\x38\x64\x06\x28\xc8\x00\xb9\xc3\x9a\xc7\x9a\x80\x39\x1b\ \x17\xa0\x50\x38\x89\x28\xc1\x04\xe7\xd0\xa2\xa0\xc5\x46\x87\x70\ \xee\xe1\x29\xa6\x7b\x8d\x9a\x7a\x32\x21\xb6\x32\x48\xc4\x9f\xf7\ \xc9\x1e\x1f\x8b\x89\x39\xee\x0c\xe8\xee\xd3\x77\xb9\xde\x66\xb3\ \x06\x30\xf1\x80\x59\xf1\xd8\x71\xd6\x66\x43\x9f\xa1\x54\xa5\x2c\ \x9d\xad\x70\xac\x77\x70\x6b\x87\xd2\xd9\xc0\xdc\x63\x4e\x36\x35\ \x3f\xa9\xae\x19\x35\x44\x01\x4b\x79\xa3\x1e\x0e\x47\xee\x6d\x38\ \x39\xc4\x58\xb3\x0e\x05\x55\xc5\x8d\x19\xd2\x65\x84\x1f\x0a\x3c\ \xa9\x07\xc0\xfb\xca\xd1\x5b\xb9\xb1\x59\x3d\x03\x1f\xb4\x9f\x98\ \x0d\xb8\x93\xee\x09\x34\x08\x15\x18\x43\x4f\x09\x09\xa1\xa9\xd3\ \x9d\x0a\xfd\x0c\xe5\x7f\x8c\xc9\xcd\xe8\xd9\x97\xb2\x69\xb3\xd5\ \xbd\xc7\x98\xd2\x19\x3a\xa5\x34\xa0\x3a\x48\xf4\xf2\xc0\xc5\xd3\ \x5c\x6f\xc6\x00\xed\xf8\x78\xd4\x55\xd0\x08\xa2\x5f\xa3\x51\xa0\ \x38\x8e\xd5\xe2\x59\x0d\x08\x4f\x12\x03\x3d\xdd\x12\x35\xcd\x13\ \x98\x1f\x8b\x62\xb8\x02\x5a\x5a\x5c\x3c\x4a\x4f\xe2\x22\x8e\xf7\ \x79\x51\x0e\x92\x8b\xc8\xc4\x20\x39\x9b\x51\xdd\x78\xa4\x6d\x0f\ \x6c\x00\x67\xae\x8a\x37\x6c\xec\x37\x4a\x13\x26\x81\x0e\x25\x46\ \x1a\xbe\xee\x2c\xb9\xc7\xf5\x97\xdc\x86\x2e\x25\xf9\xdb\xdc\x35\ \x49\xa6\x07\x8d\x76\x9d\x6a\x5c\x70\xdd\x6e\x40\xb7\xc2\x6d\x4d\ \x0e\xc0\x02\x25\xe3\xc8\xa3\x71\x2b\x50\x35\x5e\xe6\x3d\xe3\x7d\ \x11\xc6\x09\xf0\xd9\xdc\x18\x5e\xc6\x10\x3d\x2b\x6e\x56\xde\x3f\ \x0e\x4a\x67\xdc\x37\xeb\xd9\x82\x2e\x87\xbf\x09\x6a\x72\x6a\x2a\ \x5b\xbd\xc9\x81\x69\x31\x2a\x7a\x39\xcc\x8d\x7d\xdb\x58\x39\x56\ \xbf\x9f\x79\x91\xed\x56\x9b\x8c\xba\xb2\x48\x58\x5f\xf5\x22\xed\ \x80\xa5\x81\x4b\xa0\x19\x95\x56\xcc\x30\x4e\x27\x3a\x9b\x14\x42\ \x1d\x85\x85\x93\xdb\x38\x99\x9f\x89\x8e\x17\xbb\xa4\xcc\x23\xab\ \x8c\x35\x31\x16\x02\x6a\xb6\x11\x02\x11\xd0\x98\x1a\x37\xfb\xe4\ \x80\x8f\x05\x1b\x4b\x41\x0a\x4a\x33\xa5\xd5\x06\xe0\x4a\x40\xf1\ \xbd\xc6\x4a\xba\x96\x70\x8a\x1a\x3f\x09\xa9\x8b\x08\xf9\xba\xd4\ \x6e\xc8\x39\xeb\xf8\x86\xfd\x77\x36\x90\x5d\x3a\x77\xce\xee\xc0\ \xa9\xac\xa6\x1a\x2c\xca\x42\x55\xa1\x7a\x41\x89\x3b\xd5\x4d\x7a\ \x5f\x77\x4c\x2f\xea\xd9\xc0\x67\xa8\xec\x78\x3a\x96\xd7\x07\x3c\ \x43\x2a\xd8\x33\x44\x37\xa7\xbd\x35\xa0\x40\x10\x54\xf5\x50\x86\ \x4c\xf4\x59\x40\x31\xa5\x39\xb6\x36\x74\x84\x3a\x4f\xfa\xca\xb2\ \xb6\x40\x22\xeb\x22\x3a\xfa\xfa\x94\x8b\xd0\xd3\xfd\xd1\x09\x07\ \x03\x1c\x44\xa7\x94\xdf\xc2\x00\x70\x03\xd6\x7d\x71\x84\x1e\xd1\ \x87\x07\x07\xda\x53\x58\x51\x24\x23\x56\xe0\xda\x50\x94\xbf\x58\ \x77\xfe\xf4\xe8\x14\x5d\x3d\xa0\xaf\xa3\x15\xc7\x73\xb7\x89\x25\ \xb2\xd8\x37\x47\xac\x5b\x20\xf4\xfa\x7a\x6f\x94\x54\xc3\x01\x1e\ \xeb\x81\xaa\xd0\xbe\xd0\xe7\xc9\xee\x32\xd4\x02\xf4\x76\xc7\x6c\ \x00\xcf\x96\x88\x83\xda\xad\x81\x82\x24\xb2\xaa\x9d\x00\x5a\xbb\ \x1c\xe1\x27\x50\x69\x03\xce\x6b\xd0\x5d\xfd\x2a\x9c\x3c\x6f\x9b\ \x90\xc7\x66\x7c\x5b\x98\x64\xa1\xd5\xee\xdd\xf6\xe4\x1c\xa4\x6a\ \x30\xb6\x08\x8c\x5f\xfc\x98\xd6\x5e\xdf\x27\x8e\xd6\x21\x00\xad\ \x04\xe9\x60\x7c\x78\x93\x9d\xef\xf8\xf6\x15\x54\x73\x7c\x3e\xed\ \xc7\xaa\x7e\x47\xe3\x30\x15\xba\x8f\x65\xae\x0a\x65\x5d\x5c\xc6\ \xc0\x94\x33\xdd\xef\x24\x29\xd9\x6d\xf6\xc9\xb1\x5b\x80\xd9\x7c\ \x74\x70\xae\xf5\xa7\x72\x79\x88\x5e\xe0\xa0\x22\xa5\xc7\x28\xa5\ \xa0\x13\xb8\x14\xc6\x34\x11\x10\x58\x86\xed\x0e\x67\xf0\xe4\x2e\ \xd6\xde\x70\x31\x81\x79\xd3\xa3\x4c\x06\x6f\xe9\x7d\xd8\x58\x1c\ \xb5\x0d\x9d\x5e\x6e\x80\xb8\x31\xf1\xa8\x27\x4c\x2f\x72\x09\xd4\ \xce\x3d\x5a\x59\xed\xf2\x6c\x94\xdb\x43\x97\xa9\x5e\x07\xd5\x93\ \x5b\xf3\x13\xc5\x19\xfd\x3d\x60\x64\x08\x4d\x3f\xa0\xcc\x49\x9b\ \x02\xb4\xbf\x2a\x56\x55\xd1\x79\xee\x5d\x1c\xc3\xf0\x2a\x29\x20\ \x86\x3a\x21\xa2\x0f\x95\x87\x5b\x90\x8d\x07\x2b\x47\x26\x41\x48\ \x86\x04\x70\xce\xee\x01\x5a\x06\x6e\x31\xd5\xba\x66\x90\x6a\xdb\ \x9a\x9f\x60\xc2\x6b\x8a\x46\x6c\xde\x7a\x4a\xf4\x42\x56\xce\x5b\ \xfb\x84\x56\x8e\x9b\x4a\x41\xa8\x31\xfd\xd0\xab\xbf\xad\xc9\x3e\ \xc8\x6a\x3b\x63\xfd\x88\x4e\x46\xaf\x39\x5e\xd6\xbe\xc2\x13\x29\ \xd2\x7e\x24\x9c\x3a\x57\x6e\x6b\x42\xc6\xe2\xc0\xff\x2b\xa1\x5b\ \xc5\x8d\x77\xab\x09\xb1\x07\xac\x12\xc4\x7c\x3d\xca\xdc\x82\x27\ \x9a\xe4\xa2\x6a\x2e\x64\x56\x94\xb0\xdb\x7d\xbf\x49\xda\x0e\x3c\ \x2f\xec\xde\x1b\x88\xd0\x6c\x7e\xf3\x97\x2b\x63\xf8\x96\xbd\x1b\ \x6f\x16\x11\x56\x77\xd3\xaa\xe9\xc6\x20\x23\x5c\x21\x9e\x7d\xa2\ \x2f\x58\x9e\x49\xf6\xa0\x1f\x43\x13\x07\x9b\x33\x77\x9f\x58\x90\ \xd5\x5d\xcc\x26\x0c\xa8\xd3\xc5\xd0\xb6\x67\xa7\xef\xce\x4e\x04\ \x56\x5e\xb0\xd5\xcd\x20\x47\xfc\xd5\x7d\x92\x9f\xe9\xaf\xa1\x6b\ \x41\xc1\x73\x2b\x8c\x49\x97\xb0\x07\xf6\xdd\x2a\x8e\x7c\xc2\x55\ \x01\xe3\xe7\xc1\x4b\xc2\xea\x98\xde\xba\xaf\x0b\xcf\x2b\x37\x10\ \x43\xa5\x99\x89\xe2\x86\xbf\x53\xd3\x3e\x61\x82\x7a\x90\x80\x2a\ \x65\x88\x36\xfe\x01\xb7\x5c\x02\x93\x49\x81\xea\x6e\xf5\xcd\xdd\ \x70\x8f\xd0\x49\x11\x4d\xc3\x08\xa6\xbb\x33\x3e\xa0\x39\xe5\xea\ \xca\x41\x36\x85\x06\xcc\xd4\x7d\x92\xc2\x50\xb3\x0a\xf8\xd5\xe2\ \x01\x90\xe3\x10\xef\xbd\x9d\x9d\xb4\x4f\x64\x71\x0a\xc4\x08\x4b\ \xc7\x2c\xe3\xe0\xfa\x40\xe7\xde\x7b\xaa\x3c\xc8\x17\x58\x4a\xaf\ \x23\x1e\x4a\x3f\x57\x60\xc9\x02\x9b\xed\x67\xc8\x02\x55\x1c\x28\ \x41\x55\x9c\x4f\x74\xf9\x4c\xc5\xe4\xd4\x64\xcd\x02\xc4\x1e\x4d\ \x23\x96\xe1\xde\xc8\x81\x6e\x59\xdb\x8e\xe7\x85\x5a\xd7\xb0\x90\ \xcb\xe6\x5e\x58\x1f\xa9\x77\x8a\x01\xb7\x3b\xd6\x96\xfa\x61\xab\ \x0c\x65\x54\xa1\xa3\x8a\x30\x16\x44\xfb\xdc\x89\x0b\x2a\x3b\x0c\ \x7f\x33\x74\x1c\x50\xdf\xfa\x01\xdd\xb8\x2b\xa2\x46\xf1\x2f\x15\ \x35\x42\x60\x96\x19\x31\x99\x3f\xb2\x68\x7f\x0b\x51\x23\x55\xa2\ \xa0\xcf\x71\x81\x40\x20\x3a\xe1\xb0\xec\x37\x17\xe2\x9e\x81\xa6\ \x40\x84\x41\x68\x67\xbc\x58\x6d\x4c\xf2\xc0\x98\x45\xb7\x1a\x26\ \x07\x3a\xa0\x25\x2f\xa2\x09\xe8\x57\x38\x20\x99\x0e\x6e\x9e\x32\ \x92\x74\x2c\x3b\xe8\x32\x33\xcf\x68\x10\xd4\xac\x49\x3b\xf7\x54\ \x37\x83\x1f\x36\xeb\xc6\xa9\x0a\x0b\x10\x07\xb7\x3b\x78\x1b\xfd\ \x75\x55\x64\x74\x73\x1c\x50\x7d\xf8\x59\x97\x55\x43\x19\x01\x9b\ \x0c\xaa\x07\x6a\xe3\x62\xbe\x39\x8c\xa8\x32\xe5\xba\x73\x25\xf9\ \xa5\x9b\x7f\x18\xdc\x22\x6f\xa1\x2a\x91\x14\xbc\xf8\x79\xcc\x67\ \xdb\x27\xc6\x40\xc3\x0c\x14\xa9\x15\x74\x8a\xc2\x56\x5f\xa2\xee\ \x18\x68\xed\x19\xdd\x60\x1a\xde\x89\xb4\xe2\x01\x16\x4d\xd2\xd5\ \x5a\x88\x64\xaa\x1e\x40\xaa\x0e\xe2\x2a\xae\x56\x38\xef\xa8\x04\ \xbc\xa7\x0d\xed\xbf\x93\x6a\x27\xe1\x79\xd5\x40\x90\xce\x6d\x9f\ \xe7\x30\x54\x03\xcc\x59\xa4\x60\xf7\x15\xc6\xe4\xe4\xb6\x4d\xf2\ \x81\xe4\xdb\xc0\xac\x44\xdc\x3d\x8a\x6e\xa4\x76\xd9\x4d\x23\xa2\ \x99\xd0\xa1\xa0\x31\xb9\xb9\x13\xdc\x65\xb4\x81\x37\x0d\xa4\x73\ \x7f\xe6\x6d\x8c\x1c\x3a\x6d\xc8\x1e\x10\x63\xc8\x71\xae\x92\xaa\ \x6e\x59\xde\x0c\x5a\xd1\xd1\xdb\xf0\x89\x5e\xf6\xcb\x67\x59\xa3\ \x7a\xb4\x3f\x33\x1d\x12\x07\x95\x42\xa9\x85\xbf\xbe\x26\xe9\xd9\ \xc1\xfa\xa7\x0d\x0f\x48\xb5\xd5\xcf\xae\x2b\xd1\xce\x13\x20\x2a\ \xb4\x3d\x4e\xb2\x04\xec\x9d\x10\x5a\xc5\xc2\x00\x4d\xf4\xb9\x6b\ \x62\x2c\x5f\x1c\x79\x8b\xf9\xdb\xe7\xb4\x0c\x1d\x6f\x6b\x72\x68\ \x63\x80\xbf\x67\x5d\x32\x72\x2e\xb5\x5e\xae\x3a\xe2\x33\x5d\xae\ \x02\xb2\x1c\x6c\x4e\x08\x6b\x1b\x23\xf4\x84\x72\x05\xe3\x47\xe3\ \xec\x9d\xc4\x13\x62\x33\x22\xbd\x8c\xbc\xf5\x5e\xe6\x56\x1d\xb9\ \xe1\x91\x90\x6d\x9c\x5e\x4c\x34\x76\xf4\xdc\x3e\xaf\xc9\x36\xc4\ \x02\xd5\xe9\xd6\xec\x60\x28\xd4\x42\x7d\x40\xfe\xca\x31\x93\x00\ \x87\x5a\x09\x0e\xf1\x06\x66\x06\x67\x57\x60\xcc\x27\x5d\x48\xe9\ \xec\xe8\x24\xd4\x38\x38\xbc\x45\xcf\x5d\xe6\xaa\xa4\x69\x19\x48\ \x85\x82\x67\x88\x14\xc0\x32\xc4\xb8\xd1\x51\xa8\x7b\x02\x5a\x7c\ \x36\x63\x04\x87\x0b\x36\x42\xc0\xfd\x01\xd4\x3b\x4c\x98\xc4\x34\ \xdb\x25\x3a\x57\x2b\xd9\x0a\x48\xbd\x02\x49\xc0\xbd\xd5\x95\x53\ \x7b\x56\xeb\xe6\x40\x70\x49\x64\x04\x75\x6e\xc1\x8e\x01\x1a\xc0\ \x7a\x95\x9b\x50\x88\xa1\x46\x0c\x9b\xa8\x7c\x5b\x94\x5d\x8c\x6d\ \xa8\x67\xc3\xd4\xc6\x47\x0e\x0d\x9d\xcb\xd5\xa9\x5e\x37\x32\x09\ \xcd\x46\xd7\xfa\x68\x83\x42\x64\xdc\x6a\x4c\x36\x9c\x19\x6f\xae\ \x22\x68\xbb\x45\x19\x61\x04\x85\x59\x9d\xbc\x1a\xe7\x76\x76\x0a\ \x34\x5f\x95\x0f\xc6\x66\x06\xc1\xb6\x68\xfa\xdd\x8a\x8e\x1d\x01\ \xcd\x50\xb3\x78\x2a\x30\x96\x51\xae\xed\x2f\x87\x58\xa8\x75\x5c\ \xfd\xc1\x84\x02\x91\xb7\x5c\x0b\xb1\xa0\xbf\xea\x48\x72\x02\x5b\ \x3b\x49\xb0\xe1\x0a\x24\xe3\xa3\xd3\x37\x40\xd9\x7c\xee\x92\x10\ \x62\x01\x31\xfb\xec\x88\xf2\x61\xa9\xc3\x6e\xe1\x64\xc7\x3f\x33\ \xe0\xae\x89\xdc\x46\x40\xde\xc3\xed\xf0\x62\x38\xd1\x4e\x33\x7b\ \x24\x38\xa0\x2a\xff\x57\xe1\xb8\x44\xf2\x0a\x35\x6d\xa8\x3a\x9c\ \x72\xad\x30\x17\xac\x28\x33\xe6\x30\x13\x04\x32\x8e\x8e\x69\x9a\ \xa7\x86\x9f\x4b\x20\x95\x0c\xb9\x6f\xec\x00\xea\x9e\x80\x46\xf7\ \x3c\x22\xe1\x9d\xd0\xc2\x48\x43\xda\xe6\x72\xb3\x0b\x2a\xad\x11\ \x88\x78\xe3\xb7\x78\xa2\xb4\x27\x99\x4b\x82\x6f\xfe\x6c\xf0\x84\ \xfc\x95\xb5\xab\xb1\xcf\x8e\x75\xa2\x58\x8d\x2d\x8a\x11\xd0\x7a\ \x33\xe7\xbb\x80\xf6\x27\x57\xc1\xfd\x9a\x1c\x08\x68\x09\x2d\x94\ \x46\xfb\x01\x06\xe5\x75\x8e\x2f\x8a\x60\xd5\xdc\x10\x6b\x63\x6c\ \x5b\x57\xe4\xae\x02\xb8\x4d\x93\x3a\xa6\x48\xfe\x44\xe7\x89\x99\ \x43\xe9\xe0\xcd\x98\x5a\xa5\x89\x1c\xdf\xb1\x24\x38\x4e\xa7\x80\ \xbb\xb2\xf7\xcd\x74\xec\xea\x26\x3b\xa9\x7b\x49\x73\xdd\xd4\x41\ \x6b\x01\x42\x2e\xfa\x41\xd5\xbe\x68\x09\x67\x54\x3c\x4f\x2d\x09\ \xfc\xb0\xde\x5a\x18\x39\x0f\xbc\x74\x8a\xf8\x09\x9e\x25\x27\x30\ \xf8\x90\xb1\x46\x83\x37\x4e\x34\x67\xb5\x68\x02\xff\xac\x30\xee\ \xa3\xca\x1c\x23\xe1\x5d\xb5\xb3\xe3\x9f\xf5\x67\xf2\x79\xc6\xcb\ \x04\xfe\x34\x64\x93\xaf\xca\x77\x33\x15\xd5\xc9\xd1\x8d\x0e\x86\ \x7e\xd5\xaa\x76\x09\xb5\x63\xfc\x4e\xb9\x0a\x4f\xcd\xe3\x61\x80\ \x1b\x12\x13\x39\xca\x05\x03\x3e\x6f\x4d\x8a\xa9\xf7\xa0\x7b\xef\ \x92\x59\x0e\xa4\x8d\x98\x5e\xdd\xd3\xcf\xb4\x26\xec\xeb\x4a\x46\ \x01\x42\xee\x3a\x80\x0a\x97\xbc\x8a\xf4\x0a\xd4\x55\xd8\xba\x6b\ \xc6\x56\x6d\x62\x8f\x22\xa9\x79\xdd\x9c\x29\x1a\x55\x53\x25\xd6\ \xd1\x81\x5b\xe2\x27\xb7\x89\xcd\xfc\x8c\x1f\x0d\xc9\x00\x33\x88\ \x3c\x8c\x3d\x3f\xaf\x49\xdf\x3d\x0e\x6d\x4a\x34\xb7\x95\x52\x90\ \x1d\x58\x26\x73\x65\x49\x9a\xaa\x26\xe4\x43\x22\x38\x43\xf8\x8e\ \x63\xda\x95\x10\x0a\xad\x58\xa7\x53\x17\xd6\x73\xd3\x88\xc4\xf7\ \x05\x46\xb6\x09\x23\xb9\xb9\x17\x71\x73\xff\xce\x36\xd9\xb1\xcf\ \x74\xe7\x34\x58\x93\x9d\x77\xab\xc3\x7c\x5d\x5d\xd0\x76\x89\xca\ \x5e\xfa\x04\x1e\x66\xf1\x3a\xd9\x6f\x38\x2f\x60\x74\x42\x5f\x25\ \x9e\xb0\x45\xca\x33\xf9\x33\xa8\xdd\xd8\x70\x1c\xac\x73\xd3\xb5\ \x66\x4d\xe2\xff\xe9\x9a\x1c\x9a\xc4\x15\x65\x1d\x80\x31\xf8\xf2\ \xa4\x07\x88\x9b\xc8\xb8\x7b\x4b\x43\x22\xc3\xc8\x95\xa5\xa8\x9c\ \x00\x6e\x00\x4d\xa5\x9a\xca\x89\x4b\x3a\xf3\x4b\xe7\x8c\xdf\x8b\ \x06\xdf\xc2\x50\x9b\x76\x72\xcc\xfb\x0c\x7e\x95\x42\x15\x28\x8c\ \xe8\x86\x34\xde\xed\xd2\x69\xfb\x39\x5c\x82\xd8\xeb\x98\x3c\xc3\ \x7b\xb5\x2f\xbe\x74\x72\x30\x4d\x01\x74\x88\x47\x93\xf9\x9a\xae\ \x5a\x60\x4a\x94\x3c\xc6\x50\x58\xe7\xd1\xd1\x39\xcb\xd7\x54\xa8\ \xd2\xee\xe9\xe8\x27\x87\x3a\xf7\xd2\xc1\xfa\x0c\xf3\x86\x9a\x13\ \x7a\x98\x71\x58\xae\x6e\xd6\xe4\xd0\x26\x30\xb7\x29\xa3\x78\xa0\ \x82\x1b\x2e\xe7\x6b\x50\x32\x06\x53\xaa\x0c\xea\xf2\x6a\xa5\xe8\ \x68\x42\x28\x52\x55\x82\xd5\xa8\xa5\x0e\x8b\xa2\x9b\x86\x86\x20\ \x68\x63\x92\xcc\xb9\x8b\xd2\x86\x2a\x0b\x19\xa9\xab\x48\xc4\x92\ \xaf\xdf\xdf\xc4\xed\xd0\x27\x00\x55\x8d\x72\x08\xb8\xa2\x87\x20\ \xef\xd4\x4b\x8c\xee\xbd\x09\x8f\xfa\x1b\xe4\x3d\xd3\xd9\xc2\x87\ \x33\xa1\xb1\x77\x86\x14\x72\x83\x0c\x08\x30\x9e\xed\x3d\x55\x11\ \xba\x76\xa3\x46\x54\x70\x6d\xad\x61\x6c\x85\x88\xc2\xa6\x67\xdf\ \xf7\xcf\x93\xc8\x91\x0a\x42\x3f\xa8\x34\x59\xfd\x77\xe9\xf0\xc4\ \x67\x76\x67\x50\xf1\x8b\xef\xad\xf2\x9d\xb5\xfe\x63\x92\x8e\xd6\ \x6d\x87\xb2\xea\x4f\x95\xaf\xa0\x4c\xa4\xc4\xf5\x4d\xb2\x57\xe6\ \x02\x40\xa0\x9f\x35\x50\x31\x3a\x09\x68\x56\xb7\x86\x0e\xd7\x66\ \x4d\xf6\x14\x5f\xba\x2b\xa0\x28\x55\xe1\xa7\x12\xaf\x03\x40\xba\ \x8a\x1a\x6f\xbe\x7c\xd1\x42\xbb\x1f\x4a\xd4\xa6\x4b\x92\xad\xad\ \x89\xea\x4b\x3b\x45\x4f\xa1\xd4\xdc\x71\x7b\x56\xb1\x88\xcd\xe4\ \xdc\x35\x31\x8a\x2f\xd8\x73\x94\x75\x23\xca\xf1\x6e\xa3\x68\x54\ \x0f\xe6\x67\xda\x53\x1e\xca\xa5\xca\x10\x9e\xeb\x01\xf9\x63\xed\ \x02\xac\x25\x91\x7f\x46\xf2\xf1\x66\x1c\xe8\x1d\x42\xb5\x99\x09\ \x07\x1d\xc9\x93\x35\x21\xf8\xd2\xe7\x69\x50\x3c\x87\x22\xd9\xc4\ \x35\x31\x5f\x9e\xa6\x68\xe9\xc0\xcd\xc2\xca\xab\xf7\x22\x0a\xf5\ \x40\x3f\x43\x68\xb6\x98\x11\x41\xc5\xcb\xfc\x01\x01\x92\xe6\xd0\ \x23\x82\x40\x56\x1d\x34\x88\x65\x49\x92\xa9\xd9\x7a\xe2\xac\x29\ \x38\x9d\x24\xb1\x1e\x2d\x01\x20\x01\x0a\xce\xec\x96\xb9\x4b\x62\ \x04\x5f\x1a\x49\x86\xc3\x50\x0c\xaf\x69\x0b\x3c\xec\xfb\x10\x5b\ \x91\x1f\x6a\x28\x50\x34\xde\xe6\x65\xc0\x7b\x85\x06\x13\x4d\x87\ \x8c\x61\xdf\x52\xfc\xda\x9d\xc2\x68\x1a\x20\x0a\x64\x6c\x7f\xb6\ \x4d\x12\x0e\x87\x15\xa3\x31\x90\x4d\x61\xea\x9a\xb4\xc1\x3e\x6b\ \x84\x13\x94\x31\xa3\x6e\x9d\xda\xef\x47\x3b\x6d\xcf\x3e\xc3\x4e\ \x36\xb2\xdf\x71\x24\xc6\x58\xf8\xf2\xd9\xb1\x8a\xc2\x99\xa5\x33\ \x1e\x37\xed\x66\x6b\x6c\x1a\x60\xce\x63\x7a\x82\xd5\xd6\x99\x08\ \xa5\x62\xbb\x8a\xd7\xf9\x4a\x7a\x63\x51\x46\x2f\x16\x92\x24\x69\ \x36\x8a\x49\x6d\x63\x08\xd7\x76\xf4\x33\xe6\x18\x2a\xd6\xb0\x84\ \xf4\x00\x9f\xc6\xe8\xe5\xe2\x10\xd0\xd9\x7c\xba\x41\x90\xa5\xce\ \x5a\x4b\x40\x64\xc1\x13\x05\xa0\xca\x1e\xe7\x4e\x12\x14\x6b\xf7\ \x78\x25\x7c\xa8\xee\xa3\x10\x3a\x15\xa2\xda\x06\xff\x8c\xd4\x09\ \x53\xeb\x12\x21\xa6\x18\x69\x25\xdc\x16\xe5\xc0\x3f\x53\xb9\x86\ \x30\xb0\x43\xae\xc6\xf5\xeb\x58\x66\x55\x3c\x4a\xcc\xa1\x3b\x2a\ \xd9\xb0\x93\xf2\xb2\x0e\x01\xa1\xfb\x35\x24\xb2\x0b\x69\xd9\x59\ \x5d\x4c\xb7\x09\xba\x55\x9d\x2b\xcb\x32\x16\xa5\x98\x27\xae\x79\ \xfc\xe8\xae\xf7\x60\x87\xcb\x66\xa3\x1c\x8c\xd2\x2b\xa8\x0d\x20\ \x3c\xa0\x05\x07\xcc\xee\xb2\x51\x3a\x90\x18\xd0\x2f\x88\xb8\xba\ \x5b\xaf\x20\x78\xe3\xff\x9a\x55\xf0\x99\x07\x8e\xb6\x98\xf2\x46\ \xa5\xf6\x19\x62\x7d\x4b\x7e\x72\x48\x69\x43\x42\x23\x83\x59\x42\ \x84\xa4\xfa\xf1\x70\x9f\x17\x65\xaf\xa3\x80\xb5\x89\x16\x85\x47\ \x61\x0e\x73\xb9\x32\x8e\x74\xcb\x90\x17\x64\x84\x06\x03\x7c\xbd\ \x7a\x22\xd2\x7a\xf0\xe3\xf5\x77\x84\xfd\xb3\x35\x41\x02\x53\xf7\ \x53\x2b\xed\xff\xe3\xed\x4d\xb0\x65\xe9\x8d\xeb\xdc\xa9\x68\x02\ \x3e\x0b\x7d\x33\x20\xcd\x7f\x0a\x6f\x7f\x81\xcc\xaa\x9b\x48\xf0\ \x59\x0b\x05\x8b\xb2\xc4\xdf\xe4\x6d\xea\x44\x01\x81\x68\x76\xf3\ \x91\x34\x3d\x76\x4e\x3c\xc3\x02\x48\x22\xa4\x08\x46\x45\xf5\xde\ \x28\x5c\x21\x79\xd9\x9f\x29\x2f\x36\x23\x25\xa0\x80\xdb\xf7\xd1\ \x98\x68\x4b\xd7\x8c\x74\x3f\xcc\x08\x37\xe6\xba\xf6\x1a\x2b\xa9\ \xa9\x90\xd3\x7d\x86\x9c\xb6\x18\x50\x37\x1e\xec\x50\x2a\x13\x72\ \x28\xa7\xfe\x42\xfa\x9d\x0a\x89\xd1\xcf\x3c\xb4\x25\xc7\x12\x1d\ \xdb\xe7\xf2\x2f\xbc\xbb\xf9\x97\xe4\xa2\x1a\xf5\xce\xd2\x5f\x2f\ \x62\x46\x2d\xe3\x87\x12\x05\x9d\xed\x88\xa3\x33\x68\xa8\x72\xc3\ \xbb\xd1\x50\xd4\x5f\x62\xa3\x91\x76\xe5\xde\x39\x13\x01\xd6\xc1\ \xdb\x55\xf9\xac\x97\x7e\x14\x7a\xd8\xfc\xe0\x46\x00\xf9\x0c\x36\ \xe0\x02\x64\x1e\x1e\x41\x79\x71\x23\xd0\xd8\x85\x43\xd8\x50\xd0\ \xd9\x77\x7b\xae\xc0\x9d\x50\x17\x84\xe4\x75\xaf\x13\x2f\xe9\xf0\ \x8c\xb9\x4e\x68\x38\x15\xc5\xb5\x9d\x22\x30\x25\xa5\x61\xc5\x2e\ \xb7\x73\xee\xac\xe3\xa0\x14\x46\xac\x95\x11\x31\x62\x3a\x11\x2d\ \xd9\xf2\x78\x8d\xfd\xab\x94\xad\x5c\x72\x1d\x59\xbd\xca\xfa\x26\ \x7f\x92\x5c\x54\x8f\xa9\x1e\x5b\x45\x34\x8e\x92\x37\xf8\x04\x07\ \xcb\xcc\xd5\x69\x5f\x21\x9a\x39\x13\x39\x2c\x67\x9c\x37\x33\x5f\ \x77\x4e\x34\x60\xc4\xc4\x74\x6d\x89\x3a\xe5\x89\xee\x52\x4a\x0f\ \x4d\xa3\xe6\xdf\xb8\x2d\xac\xbd\x1a\x73\xfb\x9a\x06\x4b\x71\xd7\ \xb1\x02\x76\x10\x85\x86\xca\xb6\x3e\x5a\x6c\x3f\xc0\xbc\x31\x44\ \xb6\xa6\xca\xe2\xc1\xbf\x77\xc5\x58\x18\x50\xde\x2b\x22\xec\x01\ \xf3\x39\x77\x56\xbb\x3a\xb0\xcf\xca\x9f\x67\x41\x8f\xaf\xa8\x21\ \x99\xfd\xe3\xd9\x09\xf3\xe0\x4f\xb5\x77\x43\x7d\x1d\xe5\x66\x18\ \x0c\xfb\xeb\x1d\xf2\x01\xc6\x59\xc6\x0e\xf1\xe5\x3e\x26\xca\x55\ \x3a\x7e\xea\x0f\x83\x75\xc6\x2b\x8a\x2f\x3e\x05\xb4\xc6\xfd\xb2\ \x53\x3f\x7a\x4c\x42\x40\x6f\x98\x77\xc7\x63\x97\xc7\x50\xa2\xfc\ \x0b\x78\x6f\xb3\xcd\x18\x8c\xbc\x8c\xa5\x89\x67\xd3\xa0\x0c\xf8\ \x03\xfd\x2c\xd1\xb8\x80\xbf\x72\xff\x18\xd6\x22\x10\x14\x18\x9f\ \xa0\x5f\x07\xb8\x7b\x55\xc7\x16\x80\x3c\x19\xd6\x11\xc9\xf8\xdc\ \x90\x7a\xc4\xc4\x24\x17\x0b\xb0\x29\x50\x30\x51\xb7\x28\x0c\x59\ \x91\x4f\x50\xa6\x3a\x16\x1c\x84\x1e\x6d\x87\x32\x07\xcc\xaf\x7d\ \xbb\x67\x26\xf7\xc8\xeb\x77\xca\x78\x2e\xe2\xfd\x18\x37\x33\x9b\ \xf3\x46\xb0\x41\x61\x62\x11\x14\x33\x88\x50\x3b\x6d\xee\xc3\xc3\ \x77\xe4\x60\x50\x6c\xe7\xd5\xb2\x1e\x3d\xc7\x0a\xeb\x56\x0c\xfc\ \x1e\x94\x3a\xdd\x65\x70\x41\x1e\x44\x2b\xcc\xb9\xea\x7f\x10\xab\ \xc9\x08\x8a\xe9\xd6\x66\xc6\xd5\xee\x33\xa5\x86\x0a\x5d\x0d\xca\ \x4c\x9f\xb7\x44\x15\x30\xff\x34\xbf\x0c\x0f\x72\xe5\xec\xa0\xad\ \x05\x1b\xc8\x7a\x93\x4c\x62\x2b\xd0\x78\x50\x1e\xb5\xfd\x4c\x3f\ \x63\x4a\x6d\x6e\x2f\x7c\x47\x00\xb7\xc2\xee\xf4\xb1\xfc\x19\xd2\ \xb2\x0c\x9f\xdc\x54\xeb\xcd\x8f\xc7\x9c\x5c\xb5\x7d\xf6\xe6\x71\ \x93\x97\x23\x14\x58\x6b\x98\x29\xd5\xc6\xa6\xf6\xe8\x6e\xb4\xe1\ \x34\x56\xff\xf4\x95\x60\x9f\x48\xb9\x50\x2f\xef\x88\xcf\x41\x99\ \xf9\x67\x11\x6e\x25\xe3\x85\x80\x3f\x8c\xea\xc8\xed\x86\xc7\x63\ \xf7\x52\xed\x16\x2a\x02\xf1\x16\x71\x45\xc1\x07\xde\x59\x07\x45\ \xcc\x9a\x7c\x15\x14\x3d\xc6\x38\xb4\xb1\xe5\xf6\xf5\xf4\xcb\x13\ \xb1\xc0\xe9\x94\x4e\xca\x5a\xb8\xab\x30\xab\xfe\xf7\xa0\xc4\x59\ \x10\x2c\x57\x05\x04\xfa\x11\xe7\x36\xb5\x1f\x36\x81\x60\x4e\x30\ \x1b\x60\xa9\xd1\xf3\x67\xfa\xc8\x51\x55\xd1\x8f\x1e\x98\xbf\x8f\ \xcf\xf4\x8c\x37\x86\xe4\x20\x72\x58\x4a\x8e\x1a\xe9\x5c\x3e\x89\ \x89\xc3\x9a\x1c\x78\x0e\xd5\x26\xe0\x85\x9f\x6f\xf1\x6c\x33\xe6\ \x91\xca\x82\x92\xec\x6c\x4c\x1d\xe2\x0f\x5a\xbf\x3c\x3b\x58\x59\ \xeb\x91\x71\x1f\x44\x4e\x26\x81\xc2\x71\xc2\xe2\xb2\xf8\x95\x5e\ \x29\x39\x07\xd8\x0a\x9a\x71\xa5\x95\xc3\x7a\xa5\x2d\x9a\x8c\x02\ \x22\x4b\xd8\x9f\x55\xd4\xb8\xa3\x7f\xde\x9d\x69\x58\x10\xd0\xa8\ \x46\x21\x06\xaf\x80\xfc\x8b\x72\x1c\x25\x3a\xf3\x68\x74\x94\x94\ \x1c\x62\xb9\xc5\x7e\x13\x60\x1c\xca\xb8\x42\xd9\x5f\x56\x42\x4f\ \xfa\x25\x78\xea\x16\xd5\x7b\x66\xef\x70\xf6\xa0\x18\x03\x81\xef\ \x23\xa2\x1a\x1f\x21\x73\xe5\xf0\x38\x29\x2f\xf1\xf0\x48\x39\x0e\ \xfc\x23\xb2\xc7\xdc\x9f\xdd\x27\xeb\x27\xf1\x58\xc3\xdf\xd2\x57\ \x7f\x27\x14\x5d\x1a\x0c\xe5\x4d\xe0\x5f\x0f\xcc\xd2\xa5\x2f\x9b\ \xae\x12\xcd\xb9\x4a\xf0\xb3\x22\xf3\x0d\x02\x5a\x47\x15\x55\x1f\ \xad\x33\xf2\xc5\xb6\x32\xff\x3b\x94\x4d\x73\xab\x5e\x51\xfa\xce\ \xa8\x62\xe8\x83\x85\xf4\x43\x85\x82\xc1\x34\xfb\xae\x4e\xcd\x18\ \x3e\x4a\xd9\x98\x12\xf2\xe7\xa3\x9b\xcb\xf8\x62\xb5\xe3\x61\xc9\ \xc4\xf8\x45\xdd\x68\xbf\x28\xd3\xe7\x62\x82\x27\x39\x39\x2e\x51\ \xd9\xdb\x8e\x2f\x3f\x43\xf2\xa2\x20\xf0\x59\x90\xdc\xc1\x46\x28\ \xb5\x5f\xd4\x6a\x72\x67\x7a\xaf\xf2\x0c\x81\xb8\x1c\xef\x5d\x20\ \x34\x6f\x86\xbe\x21\xb3\x7b\x5a\xbc\xc6\x56\xa2\xb0\x78\x09\x6c\ \x57\x43\x3f\xc7\xcb\x18\x31\x49\x43\xd8\x51\x4f\x22\x44\x2e\x07\ \xd0\xfb\x5f\x51\xe8\x36\xf1\xcf\xd8\x91\x79\x18\x84\x24\x39\xe8\ \x57\x3f\x0c\x64\x13\x22\xc7\x49\xbd\x38\x2b\xe8\x4b\xc6\x98\x11\ \x74\xc2\x15\x8a\xc7\xd0\x30\x06\x2b\xd8\x63\x6e\x60\x50\x18\x2d\ \x41\x9d\x38\x3c\x90\x4d\x85\xb9\x55\xc6\x37\xa3\x19\x6b\xc6\x0d\ \x7b\x86\xef\x31\x79\x41\x0b\xd4\xc8\xe2\x20\x4c\xf6\xe1\x35\xde\ \xae\x4f\x4c\xe8\xc9\x24\x24\x2a\x26\x43\x17\x99\x97\x09\x74\x2a\ \x1d\xc3\x8a\x18\x2a\xff\xbe\xc2\x3d\xea\x9b\xc2\x50\x16\x78\xa0\ \x3e\xf9\x39\x75\xce\x11\x93\x66\x60\x3b\xd5\x09\x06\xa2\xc6\xb0\ \x38\x3f\xba\xc0\x34\xaf\xbd\x18\xa1\x86\xa2\x33\x0b\x59\xff\x23\ \x27\xb4\x83\xf1\x53\x3d\x96\xf4\x16\xeb\xcd\x43\x19\xdb\xdf\x6f\ \xb1\x57\x20\x0a\x54\xd6\x80\x43\x42\x7e\x67\x58\x14\x71\x41\x58\ \x3b\xea\x60\xb5\x83\x87\xe7\x27\x19\x5d\xdb\x4a\x99\xce\x7e\x22\ \x19\x21\xf0\x5f\x19\x85\x96\xe7\x8f\x83\x6e\x24\x1c\xbd\x62\x12\ \x8d\xf5\x07\x26\x38\x2e\xe8\xb1\x0d\x8f\xe4\x74\xf9\xb1\x5f\x8a\ \xe2\xd5\x8c\xfb\x3a\x75\xee\xd2\x79\x0d\x6c\x4a\x64\xbe\x82\x45\ \x83\x3b\xbb\xf4\x82\xe4\xa5\x2f\xa6\xc2\xa5\x32\x89\x93\x14\x2e\ \xe7\xb0\x4f\x4c\x66\x78\x2c\x7a\x25\x7a\x28\x4c\x03\xa4\xd6\x7d\ \x07\x9c\xc2\x18\x38\x06\xb6\x7d\x98\xec\x0d\x39\x58\x6f\xb3\x56\ \x84\xc6\x3c\xdc\xdf\x9c\xfd\x52\xf9\x8a\x45\xa4\x02\x82\x94\x9f\ \xef\xe9\xdc\xa3\x33\x62\x62\x96\xe4\xfa\x5e\x00\x81\x14\xd3\x8f\ \xab\xe5\xd1\x03\xce\x24\xaf\x80\x45\x9f\x12\x00\x17\x88\x7e\xbe\ \x6e\x4b\x4b\x80\x54\x02\xc8\xae\x37\x15\xe9\xa2\xf4\xd1\xaa\xa9\ \xb0\x1e\xf5\x98\x60\x09\x14\x2f\xe7\xbe\x57\x50\x60\x1a\x61\x67\ \xd7\x80\x59\x1d\xbe\x3b\xc5\xb6\xa3\x60\x18\x93\xda\x87\x84\xb4\ \xe4\x43\x74\xb1\xcd\x2c\x2f\x96\x0d\x6a\x45\x0a\xf6\x34\x8c\xa8\ \xdd\x0f\x62\x7a\x1e\x05\x57\x3c\x9a\x18\x0c\xdc\xe6\xf5\xe1\x8f\ \x55\x74\xd3\x1b\xaf\xb7\x47\x4f\xcb\x22\xa1\x20\x58\x4a\x5a\x46\ \x35\x59\x89\xad\x9c\xf3\x7b\x19\x41\x19\x4b\x2f\xdd\x04\x55\x1c\ \x0e\xe3\xd1\xcb\xa9\xfd\xf3\x16\xcf\x4e\x63\x1e\xa3\xa2\x42\x86\ \x03\xfe\x4d\x4e\xd9\xaf\x4f\x54\xa1\x2b\xba\x8e\x6c\x16\x63\xcd\ \xf7\x1e\x5d\xd5\x34\xaa\xa8\x09\x67\xfa\x9e\x16\x75\x2c\x29\x25\ \xb3\x7c\x53\x6d\x63\x90\xcd\xb3\xf5\x49\x81\x83\x00\xe9\x4d\x9d\ \x60\x61\x87\x5e\xc3\x03\x96\xd3\xca\x9c\x65\x31\xea\xd4\xd9\x0d\ \x28\x11\x5e\xe5\xc3\x66\x46\x61\xa9\x93\x81\x55\x98\x95\x76\xfe\ \x96\xb1\x0a\x3a\xc6\x97\xaa\xca\xea\x65\x0e\x35\x5d\x9e\x14\x10\ \x2b\xb5\xf7\x4f\x99\xf8\x9c\xf0\xfe\x08\x49\x18\x4e\x09\x0c\xce\ \x95\xfc\x95\xd6\x5a\x7a\x24\x94\x99\xe5\x55\x74\xa8\xa0\xbd\x75\ \xbd\x81\x19\x6a\xd6\x0f\x77\xa7\xb3\x5c\x6d\x78\xff\x04\xdc\x91\ \xda\x3d\xb9\xc7\x29\x29\x99\x9c\x1e\x48\xa4\xd5\x32\x03\x17\x3a\ \x3e\x43\xe8\x5f\x9e\xc2\xb1\x2c\x5b\x6c\x22\xcb\x12\x3f\x9b\xf9\ \xb9\xb2\x5a\xcc\x0f\x0c\xca\x9b\xe6\x05\x3d\x92\x56\x03\xdb\x9c\ \x94\xb7\xf5\x05\x69\x01\xb1\xd1\x56\x59\x1c\x5b\xf9\x08\x20\xf3\ \x0e\x56\x24\xd5\x1d\x9c\x33\x24\xea\x16\x05\x0a\xca\x2d\xce\xe6\ \x15\x55\xbf\xa0\x1d\x85\x52\xb7\x32\x4c\x70\x12\x6c\x51\x8c\x31\ \xd8\xe0\x3e\xc4\x39\x5b\x79\x0d\x0b\x3c\xcb\x15\x34\x31\x70\x4d\ \x1a\x43\xe4\x4d\xd7\x8a\x98\xe9\x6a\xb0\x95\x53\xd7\x77\x19\x28\ \xff\x97\x71\x75\x4d\x9d\x4c\x8f\x0e\x1d\xcf\x8a\x0e\x98\x82\xd1\ \x14\xd0\x9f\xf5\x4a\xd5\x87\x83\x32\xc4\x6a\x6a\x31\xe2\xaa\x91\ \x58\x5b\x7e\xde\x9e\x3e\x7f\x1e\xb4\xd7\x55\x5a\x63\x40\xa2\x1c\ \xb4\x0d\x6a\xb3\xf1\x11\xea\x9e\x74\x3d\xa0\xe7\x3f\x07\x45\x6d\ \x4e\x84\xd1\x83\x04\x71\x5d\x0c\x1f\x11\xd3\x56\x95\x84\x75\x6b\ \x80\x03\x74\xd6\x55\x4b\x0d\x0e\x07\x25\xaa\xeb\x02\xbf\x85\xaa\ \x7b\x18\xca\xd3\x9f\xcb\x33\x11\xbd\xfe\x8f\x51\xe7\x61\xd7\x78\ \xa8\x11\x80\xdb\x76\x4b\x14\xe4\xe2\x11\xf1\x0f\x09\xf4\xa3\x4a\ \xb7\x0f\xad\xa9\x9a\xf4\x0b\xc3\xd0\x0f\x8d\x6b\x6e\x0c\x90\x0d\ \x8f\x10\x9d\x09\xe8\x7f\xa0\x35\x6d\xa8\x90\x54\xff\x3f\x55\x21\ \x51\x35\x60\x04\x6b\x68\xd6\xd0\xbb\xfe\x37\x54\x48\x5a\x0d\xa6\ \xc0\x12\x3d\x66\x51\x4a\x38\xa5\xd4\x27\xb2\x6c\xe2\xa0\x95\xbf\ \x6e\x26\x90\x6c\x01\x20\xd3\xec\x6b\x78\x47\x0e\x49\x41\x7f\xb9\ \xa8\xa7\x42\xd2\xe4\xfa\xb2\x50\x4f\x40\x34\x94\xc5\x2c\x30\xa9\ \xd7\x97\x55\x69\x1e\x95\x91\x83\x1b\xd6\xf3\x67\x0d\x35\x94\xc3\ \xd9\xd8\x83\x8c\xc4\xb2\x1d\xb3\xa9\xd1\xed\x7d\x7a\xb1\x89\x82\ \x66\xf3\x42\x67\x33\xc9\x84\x1a\xd1\x80\xb4\xec\xca\xb7\xa1\x4d\ \x0e\x42\x36\x20\xb0\x15\x3e\x8b\x5b\xc6\x4b\x09\x97\x52\x43\x4c\ \xbf\x63\xa2\x96\xdd\xe6\x2d\x80\xf1\x94\x8d\xd2\x61\x04\xa2\x71\ \xd0\x4c\xbe\x9b\xf1\xbe\x7e\xd2\x30\x48\xd9\xdf\x4b\xfd\x1a\x63\ \xa8\xa1\xc4\xb8\x2c\x33\x69\x40\x88\x78\x37\x26\xe9\x0f\xcf\xf5\ \x8a\x53\xbb\x53\x5b\x76\x39\x22\x18\x00\x11\x1f\xce\xe0\x0b\xd2\ \xe5\x69\xe1\x5b\x9b\x30\x9f\xc7\x39\xc0\x51\x7c\x31\x04\x3c\x5a\ \x3a\xd5\x46\xee\xca\x88\x62\x19\x9a\x49\x35\x89\x7f\x18\x25\xb4\ \x97\x07\x1a\x88\x07\x04\x06\x0a\x66\xe5\x3d\xfc\x80\x54\xd5\xdf\ \x57\x8c\xa7\x8b\xa8\xfa\x25\x25\xc2\x95\xd2\x7f\x0e\x43\xc6\xb1\ \x21\x1c\xea\x94\x6f\xa4\x6a\x89\xc8\x7e\xe8\xcb\x2c\x7c\x94\xa3\ \xe7\xa4\x99\xe4\x2e\x6f\x2e\x63\x16\x9d\x00\x46\x13\x8f\xf1\xf9\ \xc4\x42\x63\xae\xdc\xd9\x7e\x78\x84\x88\x74\xbe\xf7\x91\xaa\x6a\ \xba\xcc\x28\xde\x76\xb4\xfe\xd3\x8b\xd5\xbf\xd4\x12\xcb\x0d\xb4\ \xb7\x9a\x8f\x61\x55\x26\x20\x5b\x4a\x83\xcc\x60\x1b\x4f\xa1\xa3\ \x07\xa5\x05\xb0\x1d\x1c\x45\x1c\xd0\x91\xe7\xaa\xcf\x51\xf1\xc4\ \x42\x53\x04\x11\x98\x01\xbb\x84\x78\x56\x1e\x3f\xc9\x66\x92\xed\ \xe6\x50\xab\x57\xb1\xa3\x79\xff\xd1\x3e\x34\xee\x1f\x31\x29\x88\ \x76\xc6\x95\x0e\x71\x36\x97\x6a\xd8\x36\xc1\x50\xb3\x67\x0f\x8a\ \x79\xf9\x82\x66\x0a\x26\x1b\xd3\x4c\x53\xfb\xdf\x2c\x3b\xbb\xa0\ \x31\xa4\x63\xa2\x6f\x1e\x39\x19\x28\xda\x7e\x96\x35\x7b\xb7\x86\ \xb8\x63\x73\x00\x5d\xae\xdb\xe3\x2d\xe7\x32\xa5\xf5\x70\x7c\x56\ \xfd\x69\x6e\xa6\x89\xeb\xa0\x40\xf3\x68\x9e\x3d\x28\x85\xa0\xe8\ \x2f\x60\xa8\xa0\xcf\xa5\xa2\x36\xb8\xe7\xed\x99\xd2\x6c\x85\xc8\ \x42\x4d\xac\xa7\xc2\x6e\xd1\x0f\x38\x6f\xe6\x9e\x0d\xfe\x0e\x82\ \x70\xf5\x03\x7e\x6f\x6e\xb8\xb0\x36\x28\x66\x6e\x61\xd3\x9a\x4d\ \x9a\x50\xbf\xc8\x21\xc2\xa7\x4f\x72\x76\xf9\x34\x88\x68\x08\x78\ \x03\xca\xd5\x5f\xd5\xd2\x40\x73\x7d\xaf\xcf\x6b\x92\xc1\x2c\x0a\ \xef\xda\x88\x59\xc1\x98\xbe\x6c\xb6\x63\xf8\x8b\xa8\x85\xd1\x0d\ \x41\x73\xed\xf2\x19\x51\xa6\xf1\xd8\xef\xa0\x9d\x0e\x5c\x74\xb1\ \x69\x29\x38\xe8\x28\xbd\x06\xc6\x91\xc1\x57\x77\xb6\xca\xee\x43\ \x12\x12\x2d\x6d\xec\x93\xd4\x7b\xd4\xa7\x4c\x66\xeb\x73\xd5\x6f\ \xee\x1e\xd0\xc4\xd0\x78\x18\x03\x88\xcd\xce\xa3\x33\x91\xd0\x77\ \xd0\x41\xdd\x5d\xee\x19\xb6\x6a\xc1\x57\x51\x99\x14\x9f\xa6\x95\ \x9c\x42\x45\x76\xa3\xd9\xe0\xd4\xa3\x4e\x76\x4e\xda\x7c\xc4\xc4\ \x00\xbc\x01\x21\x60\x9a\x70\x15\xd1\x17\x61\xfd\x1b\x93\x38\xdf\ \x1e\x64\x9c\x4d\xd3\xd3\x35\x53\x7a\xd8\x7f\x7b\x02\x3e\xc6\xbe\ \x53\xa6\xa8\x8f\xb8\x66\x19\xcc\x6a\x51\x91\x52\x01\x02\x89\xc9\ \x2f\x0c\x7d\xa1\x12\xb0\x29\x65\x8a\x01\x8e\xe5\x9c\xc6\xac\xdd\ \x9e\x4e\x31\x9b\x7c\x42\xea\x55\x35\x10\x2e\x33\xd3\x39\x79\x03\ \x1f\x58\x0c\x41\xa6\x60\xb3\x38\xde\x9e\xcd\x83\x52\x31\x95\x2c\ \xa1\xb0\xbf\xa6\x7a\xbd\x0b\x37\x2c\xd0\x8a\x8e\xa3\x29\xee\xd5\ \x15\x0a\x51\xf5\x25\xbe\x72\x18\x69\x23\x03\x74\x76\xe6\xd5\x21\ \x49\xe8\x85\x2d\x86\xad\xc6\x94\xbd\x3e\x98\xad\xad\xcf\xf6\x11\ \x68\xd0\x36\xfd\x2f\xee\x11\x6d\x88\xec\xec\x8a\xc7\xf9\x42\x9b\ \xc7\xdb\xce\xe4\xf9\x56\x67\xe9\x98\x05\xb9\x6b\xd3\x12\x17\x36\ \xf2\x6a\x01\x1a\xba\xe8\x20\xcf\xf4\x4d\x06\x7f\xf8\x98\x80\xdf\ \xd5\xa7\x42\xaa\x06\x98\xb0\x77\xf5\xa1\x44\xdc\x66\x23\x34\xd6\ \x94\xfa\xb0\x7a\x91\xe9\xda\xd1\x86\xda\x3d\x26\x95\x21\xab\x41\ \x74\x2b\xde\x9f\x57\x45\x4a\xc5\x84\x61\x30\x00\x2b\xf0\x06\x79\ \x61\x5c\x04\x29\xa1\x1a\x6a\x3e\xa0\x9c\xe2\xce\x4e\x77\xba\x33\ \x6c\x19\x02\xd1\x40\x21\x3b\x66\x93\xf9\x91\x4f\xfa\xab\x07\x1b\ \x54\x7f\xec\x3d\xa0\xb7\xef\xe3\xbc\xc3\x1f\x63\x36\xae\x0d\x94\ \x1a\xfc\x92\xaf\x1c\x1b\x91\x5d\x54\x3a\xc1\x7f\xa5\x0c\x06\xc4\ \xeb\xdd\xd1\xad\x8b\x0a\x88\x8a\xb6\x46\x62\x39\x79\x4e\xba\xb3\ \x1c\xdb\x71\xcb\x83\xd4\xc2\xb8\x6b\x50\x35\xc2\x27\x26\xb3\xa2\ \x82\x92\x9e\x59\x83\x64\x04\xd1\x2f\x67\xca\x4d\xac\xaa\x0d\x00\ \x91\xd8\x64\xd0\xd6\xef\x15\x3f\x93\x08\x14\xd6\x79\xf0\x91\x32\ \x5c\xc5\x04\xcd\x8e\x64\xce\x0e\x1d\x90\xc0\xd9\x98\xa0\xa8\x40\ \x5f\xa7\xae\x3b\xa0\x77\xc2\x71\xf9\xa7\x3e\xe9\x6e\x9e\x16\x7b\ \xb3\x28\x50\xdb\x48\x3b\x3b\x98\xc1\xbb\x82\x7a\x09\xa0\x00\xb7\ \x55\x49\x3b\x96\x7b\xde\x95\x21\xd0\x34\x4f\x71\xdf\x61\x20\x2d\ \x42\x12\xd4\xca\xb3\xb8\xd2\xa9\x86\x97\x75\xf8\xea\x0c\xb3\x49\ \xfa\x7e\xbe\xb0\xc0\x52\x2e\x86\xc7\x31\x99\xf1\xbb\x95\xa5\x2d\ \x48\x6f\x00\xfb\xb1\x6f\x1f\x13\xfd\x49\x1c\x04\x32\x89\x2a\x11\ \x35\xa2\x77\x4c\x0a\xd3\x13\xc6\xe3\x50\x11\x7b\x7b\x77\x81\x05\ \xbf\xa3\x51\xc3\x34\x94\xc4\xcf\x2e\x9f\xba\x03\xf5\x90\x4d\xa9\ \xaf\xab\x81\x01\x59\x56\xca\x23\x24\x53\x8a\x55\x62\x8c\x36\xde\ \x42\x92\x22\xba\x61\xf2\xbe\xbb\xe3\x77\x88\x04\x38\x34\x49\xe2\ \x47\xda\x48\xaf\x11\x46\x78\xcd\xdc\xe7\x80\x26\xad\x52\x2c\xfa\ \x72\x21\x30\x63\x2e\x50\x71\x8e\x8e\x50\x94\x21\xed\x43\xe8\x5a\ \x26\xc6\x45\x48\x57\x3f\x16\x72\xfd\x6d\x83\x86\xc0\xba\x2e\x7c\ \x05\x71\xcc\x32\x62\xf7\xee\x94\x3f\xa6\xbc\x31\x02\x70\x68\x3a\ \x6f\xf1\x56\x05\xa3\x06\xd3\x3b\x08\x3c\x17\x08\xd3\x6a\x9d\x6d\ \xfb\x8c\xa8\x80\xe9\x77\xd5\x83\xe8\x18\xbb\x3b\xde\xfc\x7c\xa9\ \x24\x71\x02\xd5\xa3\x08\xa9\xf8\xdf\x71\x41\x9f\x79\x68\xc8\x78\ \xe3\x20\x4a\x81\xe9\x70\xb3\xf8\xa1\x3e\x61\x75\x9e\x06\xc9\xb8\ \xf9\x9c\x6e\xe1\xc5\x8e\x33\x7c\xec\xed\xb2\x41\x5b\xab\x51\x62\ \x0d\xce\x63\x85\x6c\xe5\xb9\xb7\x78\x1c\x14\x93\x36\xc7\xb3\xae\ \x99\x5d\x54\xa3\xaa\x2c\x8f\xa0\xcc\x3c\x34\xb5\x80\x1d\x07\xe0\ \xec\xed\xbb\xfc\x05\xd3\xac\x17\x06\x97\xf6\x6c\xc2\xba\x9f\x39\ \x75\x31\x72\x02\xae\x03\xba\x16\x6e\x61\xd4\xca\x59\xd2\x23\xa9\ \x72\xf2\xe2\x17\x1d\x1d\xa1\x74\x78\x68\xe5\x0f\x6c\x37\x92\x9b\ \x74\x9a\xaa\x29\xdd\x23\x26\x6f\x93\x1e\x54\x51\x58\xaf\x76\x33\ \x80\xfa\x41\x18\x4c\x0f\xd7\x20\x6a\xa2\xa8\x95\xf3\x07\xe8\xad\ \x3c\x11\x22\x82\xbf\x1d\x9f\xf0\xd5\x5c\x89\x32\x2a\x78\xcc\xb8\ \xbb\xa9\x19\x9c\x3d\x28\x86\xdf\xd5\xdb\xe6\xd8\xa9\xf3\xf9\xc2\ \x30\x72\xf8\xa6\x94\x79\x25\x17\xc1\x94\x25\x33\xf7\x36\xd3\x84\ \x1f\x0a\x14\x1e\xff\x84\x7c\xc2\x57\xc7\xd6\xf4\x8d\x18\x6f\x42\ \x15\x4c\xb5\xac\x7c\x46\xf4\x2d\x7a\x3b\xa6\x99\x98\xf0\x0b\x8f\ \xc6\x24\xb8\xcb\x55\x0c\x56\x0b\xe6\x8e\x6a\xd0\x1f\x21\x99\x88\ \x68\xed\xcf\x0c\x88\x75\x81\x7c\x41\xc1\x6d\xdf\x3e\x82\xad\x84\ \x5a\x15\xbd\x2d\xe4\xa7\xd8\x2e\x08\x22\xfd\x8e\x2e\x32\xcc\x38\ \x0a\x48\xbf\x80\x20\x32\x58\x0f\xc9\xe4\xd4\x2a\xd7\xe7\x70\xcd\ \x66\x36\x68\x19\x11\x0d\xec\x65\x68\x36\x7d\x7a\x86\xe4\x35\x2a\ \xc8\xe8\x11\xa6\x9a\x32\xfd\x48\x8a\xdb\x31\x29\x2a\x50\x52\x09\ \x64\x0e\xc3\xeb\xf6\x4f\x0f\xa8\x56\xd4\x45\x47\x2b\x83\x67\xc7\ \x2a\x26\x89\xb5\x7b\x00\xca\x55\x8e\x9a\xa6\x8f\x98\x24\x43\x34\ \x23\x52\xae\x0c\x1f\x58\x04\x3e\x5c\x15\xfb\xcc\x43\x43\x2d\x8d\ \x18\x2a\x03\x20\x7c\x37\x14\x88\xb7\xed\xf2\x9c\xea\x00\x1c\x05\ \x3a\x33\x99\xdb\x48\x9e\x0a\x15\x75\x64\x05\x0a\xaa\xf8\x0a\xf9\ \x0e\xca\xae\x32\xdc\x00\x44\xd5\xcf\xc2\x1e\x7a\x60\x54\x10\x1c\ \xf2\x76\xce\xb3\xd3\xa8\x4f\x5c\x66\x7f\xfb\xa0\x75\x04\x3d\x9b\ \xb1\x3d\xe1\x5e\x6d\xcf\xd9\xf4\xc0\xe8\xef\x85\xa4\x44\xd3\xaf\ \xc0\xdc\x03\xd9\x50\x50\xd4\x73\x90\x26\x3a\xb6\xa0\xcb\xb7\xb8\ \x38\x13\x37\x52\x81\x93\x06\x73\xee\x60\x4c\xda\xe0\x84\x2b\xd6\ \xce\xb4\xb2\x7b\x4a\xcf\xe2\x7e\x26\xa2\xa9\xac\x88\x11\x91\xf7\ \x80\x36\xbc\x5a\x92\xed\x77\xa7\xa2\x43\xe0\x61\x4e\xc1\xb9\x48\ \x97\xf7\x39\x79\x86\x69\x1f\xa9\x93\xab\xd5\x17\x64\x1a\x76\x3c\ \x05\x6f\x47\x95\xd4\x78\xe8\x9e\x1b\xc8\xda\xe5\x89\x06\x7b\x08\ \x88\x5a\x65\xea\x7b\x28\xbf\x8f\x65\x60\x8f\xf3\xb0\x00\x45\x66\ \xa7\xae\x04\x6f\xef\x6b\x61\xbb\xed\x72\xcc\x96\x07\x4d\x13\x03\ \xf6\x7f\x50\x0f\xea\xa5\xd0\x49\xd3\xd3\xc6\xa0\x66\xe5\xe5\x64\ \xaa\xa5\x9e\x39\x41\x01\xd8\x7a\x74\x48\xdd\xa3\xd9\x34\x98\x73\ \x85\xeb\x30\x41\x60\xeb\xa7\x47\x4c\x5e\x8b\xaf\xec\x31\x57\x87\ \x3c\x57\x10\xbb\xfd\xc1\xe2\xc4\x64\xae\x02\x2b\x6b\xdb\xd5\x8c\ \xdb\x03\xc8\xd1\x27\x48\x47\xc8\x86\xa9\x1a\x5a\xc1\x9a\x33\x58\ \x94\x84\x4c\xa3\xfe\x88\x94\xcf\x66\xd9\x38\xb4\xc1\x6a\x83\x12\ \x4e\xb6\x6d\x7e\xb0\x9a\xbf\x41\x79\x43\x78\xf1\x42\x44\xc4\x4a\ \x05\x30\x32\x89\xfb\x27\x85\x09\x49\x6a\xe6\x54\xe5\x54\xca\xe6\ \x6b\xd4\x86\x59\x1c\x3f\xb3\x77\x36\xda\x59\xca\xb9\x32\xc1\x55\ \xbe\x21\xa7\x29\xa6\x67\xfb\xc0\x58\xc6\xa0\x28\xe1\x3f\x97\x12\ \x88\xf2\xdc\x1e\x31\x99\xc7\x05\x88\xa3\xb0\xf6\x8f\xac\x77\x62\ \xfd\x41\x1c\x1a\xdb\x51\x40\xe6\xf8\x34\x50\xb9\x5e\x97\x47\xb9\ \x44\x8f\x0e\x56\xd7\x56\xd4\xad\x5e\xe3\xa2\xab\x63\xc2\x0b\x3a\ \xb2\xf9\xb0\x92\x4f\x8f\x28\xdc\x36\x50\x02\x4d\x6f\x9b\x8d\x0c\ \x7a\x7f\x84\x64\x56\x54\xd0\x41\xd7\x81\x72\x26\x88\x04\xcb\x68\ \x37\x24\xd8\x34\xe4\x06\x7a\x59\xdd\x0b\x00\xde\x0f\xfa\x3d\x06\ \x1a\x1e\xb6\x81\x3a\x3e\x8b\xa9\x52\x50\x23\x5a\xc9\xbf\x19\x75\ \xbf\x50\xcf\x4d\x95\x2c\x24\x89\x3a\xb6\xa0\x54\xd3\x51\x05\x67\ \x8b\xe4\x1f\x05\x4a\x7a\xa5\x58\x7d\x0c\x46\xfc\x10\x1b\xf4\x84\ \x6f\x3b\xe1\x20\x49\xcd\x08\xb1\xdb\xab\xca\xf7\x7e\xcf\x63\x6d\ \x43\xc1\xd4\xaa\xaa\x36\x58\xd8\x3e\xf3\x3b\xc1\x3f\x62\x28\x8c\ \x1a\xd3\x59\x1d\x9f\x9e\xc2\x40\xe4\xe2\x2b\x03\x2d\xa1\xb2\x1f\ \x78\xa4\xd8\x99\x86\x06\x5e\x1f\xfd\x07\x9f\x61\xd3\x91\x0f\x7e\ \xe8\x77\xc0\x51\xeb\x58\x3a\x2b\xa3\x07\xb9\xca\x4c\xad\x18\x56\ \xd9\x0c\x85\xe5\xe7\xea\xea\x04\x34\xa1\x19\xba\x78\xa4\x71\xcf\ \xe2\x2d\x54\x8e\x20\x0b\x4e\x55\x5a\x31\x3d\x00\xd5\x9e\xfe\x95\ \x73\xed\xe9\x05\xe0\x02\xcf\x64\x19\x3f\x9a\x22\xde\x0f\x13\x59\ \x70\x0c\x68\x38\xe2\x76\xc6\x32\xfd\x2a\xda\xc0\x95\x18\x15\x0d\ \x47\xa5\xb8\x74\x7d\xc1\x02\x0c\x6b\x18\x04\x20\x11\xcc\x3a\xfa\ \x16\xa7\x62\xa7\x15\xce\x60\x8b\x98\xad\xa8\x2e\x7c\x94\x27\x69\ \xb6\x69\xc0\x07\x07\x57\x09\xe5\x1d\x3a\xc1\x1f\x5c\xa4\x94\x31\ \x2a\x5c\xcd\x40\xd2\xbe\x74\x6a\xad\x5b\x56\x77\xe9\x42\x02\xfa\ \x43\xe8\x17\xa3\x02\x52\x33\x24\x0a\x14\xf8\xcb\x61\x8a\x84\x1e\ \x3c\x52\x9d\x2e\x02\xa0\x07\xac\x1f\x43\x79\xb8\x83\xf7\xf4\x82\ \x6f\x15\x53\xfc\x85\x76\x09\xe5\x65\xfb\xd1\x81\x9a\x9a\x47\x69\ \xc6\xfc\x3d\x7e\xd6\x80\x36\x68\xad\x66\xa5\xcb\x41\x5c\x9d\x92\ \x06\x4e\x29\xfb\x0a\x6d\xb2\xb4\xb3\xce\xb5\xca\xdb\xa6\x48\xe9\ \xad\x07\x8c\xec\xb1\xda\x53\xee\xa9\xe7\xd7\x40\x16\x66\x7a\xe1\ \x9c\x40\xdc\x4f\xfb\xe7\xa4\x99\x3b\x10\xec\x2a\xd7\x86\x0f\xd0\ \x15\x14\xb5\x0c\x45\x1d\x31\x3a\x68\xc8\x2b\x2e\x29\xe1\xa5\xb0\ \xc2\xcf\x5c\x79\x54\x96\x8e\x9e\x13\x88\x68\xdd\x0e\x4a\x41\xc7\ \x87\x47\x20\x3c\xac\x2b\xfa\xec\x36\x86\xd5\xb9\x4b\xc6\xb7\x02\ \xb7\x1e\x7f\xa9\xd8\x10\xde\x42\xad\x06\xf8\x49\xbb\x90\x9f\x86\ \x4f\x55\x59\xe2\x1d\xca\x00\x25\xae\x08\x8b\x48\xab\x2b\x1e\x85\ \x85\x2e\x43\xa7\x73\x8b\xc0\x71\x52\x92\xa1\x60\x30\xe4\x76\xa6\ \x84\x1f\x63\xcc\x8f\x98\xbc\x64\xc4\xf1\x88\xc6\x25\x4c\xf5\x1d\ \x5c\x96\xdd\xca\x7e\xd0\x55\xda\xec\x49\x00\x66\x0e\xc9\x43\x5e\ \x68\xa5\x50\xb7\xb4\x69\xc5\x10\x81\xd6\xb8\x23\x68\x1d\x0e\x2f\ \x33\x72\x19\xc4\x59\xc4\x45\x00\x7d\xe0\x28\xff\x58\x17\xe7\x59\ \x16\x2c\xe1\xfd\xdb\x10\x0c\x05\x81\x6d\x2b\xa9\x4d\x71\x68\x53\ \x1a\x36\x35\xf0\x18\xcb\xe5\x7a\x64\xb3\x91\x8c\x5f\xba\x02\x12\ \xeb\xad\xab\x38\x05\x13\x3a\x5e\x29\x43\x6a\xad\x94\x73\xb0\x82\ \x71\x4a\xf0\x1a\xf3\x68\x90\x66\x50\x6d\xfa\x7a\x86\xa4\xec\x37\ \x24\x7d\xfa\x86\x70\x58\xa4\xa0\x50\x14\x55\xb6\xf9\xed\x14\xab\ \x57\x07\xab\x4c\x58\x21\x91\x29\xe2\xc7\xf4\x45\xc7\x0f\xb6\xa2\ \x2d\x69\x93\xf3\x2b\xe5\x45\x4e\x06\xd8\x26\x82\x89\x1f\xcf\xd1\ \x90\x14\x67\x28\x25\x3c\x11\x0a\x7e\xc2\x9c\xd4\x87\x5e\x76\x7f\ \x91\xd0\xe8\x6f\x72\xc1\x8a\xab\xb4\x6b\xd4\xbe\x29\x81\x65\x28\ \x50\x16\x3c\x8a\x80\xbe\x8b\x7b\x93\x01\x05\x1b\xf9\xd4\x5c\x4c\ \x98\x7f\x35\x28\xc8\xb0\xa3\xe3\x30\xad\xbd\x67\x96\xc7\x6e\x4e\ \xb1\x2a\x16\xf5\x38\xd0\x04\x40\xfb\x59\xed\x3d\x62\xf2\xf6\x1a\ \x83\x0f\xe5\x23\xd2\x29\xdc\xe6\x1f\xa6\xf6\x40\x17\x6b\x63\x13\ \xc1\x2b\xf2\xd9\x17\xdb\xbc\x2f\x9b\xcb\x8d\xfd\x55\xab\x67\x07\ \xc4\x63\xc1\x19\x5c\xdf\x66\x3e\x2b\x30\xd1\x4b\xb2\x8d\x74\x45\ \xe5\x04\x6b\x19\xd0\xee\x8f\x11\x75\x99\xc5\x14\x10\x22\x64\xf8\ \x15\x91\x90\xcc\x75\x7b\xf2\x68\x1e\x85\x88\xfe\x22\x70\xab\xe7\ \xcb\xdd\x77\xc7\x57\x6a\x13\x25\x15\x6f\x60\x9d\xa5\xc5\xa5\xaa\ \x34\xd4\x6e\x30\x89\x0d\x03\x92\x78\xf0\xee\x14\x53\xf8\xaf\x51\ \xc7\x15\x16\x27\xbd\xc3\xf3\x98\xcc\x19\x56\xd9\x1e\x94\x43\xf7\ \xfa\x51\xe2\x28\x29\x76\x4f\x09\x14\x32\x84\xf7\x51\x53\x1e\x02\ \xed\x86\xef\x0b\x48\x4f\x79\x95\xd3\xf8\x32\x2d\x78\x79\x68\x64\ \xe1\xd0\xd0\x1c\xf7\x0e\x12\xda\xd9\x53\xd2\x0c\xe0\xee\x99\x7d\ \x43\x86\x41\x9c\xec\x99\x4d\x66\x23\x1c\xb4\x25\x5a\x34\x3f\x5b\ \x04\x7f\x7e\xd0\xfb\xd5\xd1\xd4\xcf\xe3\x2f\x67\xe7\x78\x5b\xc8\ \x7b\xf3\x5e\xc0\x73\x40\x85\x64\x76\x2b\xa0\x85\x43\x0a\x2a\xe3\ \x36\xac\xdf\x17\xce\x02\x86\x7b\x35\xe1\x45\xe4\x84\x91\xfa\x33\ \x22\x65\x7a\x70\x9a\xfa\xcb\x6a\x8c\x3e\x44\x51\xc9\x20\x66\xc0\ \xe0\xfd\x50\x9b\x50\x6e\x15\x02\xac\xe7\xe7\x82\x4b\xd0\xeb\x00\ \x2a\xe0\x3d\xab\x70\xef\x16\xfb\x73\x68\x84\x10\x21\x3a\x8d\x28\ \x06\x83\x67\x57\x80\x46\xf3\x02\x29\x5e\xa2\x15\x04\x3d\x0c\x71\ \xea\x4f\x5d\x5f\x67\xd8\x16\xbb\xd0\x82\x3e\x63\x00\xea\x90\xb6\ \x51\xa0\x15\x36\x48\xa8\x3d\xa2\x76\xad\x16\xc1\x70\x7c\xc1\x44\ \x15\x29\x5c\x21\xeb\xb5\x4f\xc9\x32\x35\x04\xfa\xc5\xca\xfc\x48\ \x47\x63\x96\x73\x56\x4b\xa1\xd7\x44\xdd\x54\xe1\xe2\x40\xc4\x04\ \x55\xe6\x1f\xc9\xa4\xce\x15\xac\xbe\xd3\x8a\xfb\x28\xaa\x43\x4a\ \x3f\xdb\xec\x1d\x90\x6c\xcd\x84\x8e\x59\x6e\xe9\x1f\x3e\x12\xc8\ \xe4\x7a\x36\x5d\xe4\x9a\xab\xb0\x9d\x6e\x6f\x30\x09\x6b\x70\x16\ \x6c\x98\xd2\xd9\x77\xb8\x16\x63\x5b\x31\x42\x22\x99\x60\x7f\xfb\ \x1c\xc3\xd6\x97\xea\x22\xca\xc0\x88\xd1\x62\x6b\x34\xe4\x92\xb7\ \x51\x5b\x3c\xa6\x6a\x39\x93\x8e\x44\x2b\x37\x3f\x3e\x21\x22\x00\ \x5a\x56\xf1\x4e\x03\x07\xf3\xe2\x82\x33\x6e\xd2\x89\x86\xbe\xe3\ \x87\xfc\xd6\xc1\x90\x18\xc9\x0b\x2b\x84\x82\x48\x26\xa5\x42\x7d\ \x78\x39\xf6\x89\xe4\x85\xef\x6f\x31\x39\x30\x3c\x2e\xdb\xe0\x12\ \x6d\x12\xdf\x50\x87\x88\xf8\xdd\xb8\xcc\xf3\x75\x37\xc4\x24\x98\ \xec\xa8\x1d\xbf\x1a\x36\xaf\x16\x09\xd5\x23\xcf\xb8\x02\x66\xda\ \x51\xfc\x74\x6f\x8e\xd1\x6a\xc5\xeb\x75\x18\xfd\x60\xc0\xf6\x6f\ \x48\x5e\x4e\x63\x70\x39\x13\xea\xd6\xa0\x68\x87\x99\xed\xe6\x9b\ \x13\x50\x31\x0e\xc0\x3c\x13\x86\x96\xf7\x78\x0d\x41\x57\xf8\xf7\ \xc9\x46\xf9\x6d\xb5\xd5\xf1\x48\xf3\x03\x8b\x05\x19\x59\xce\x5a\ \x39\xf6\x66\x62\x35\x11\x34\x39\x05\x90\x95\x4f\x36\xe4\xfb\x0c\ \x93\x5e\x4e\x63\x09\xa6\x32\xea\x91\x9e\x79\xa1\xdb\xd6\x34\x82\ \x6c\x9d\xcc\x5d\x1b\x9f\xfa\xfa\xbd\x3a\x7a\x4c\x4c\x8a\x99\xc5\ \xb8\x5e\xc0\x15\xe9\x59\x95\x5a\x0b\x11\xb4\x57\xa6\xde\x3b\x9b\ \x4d\xa0\x78\x41\x34\xf3\x4c\x56\x49\x59\x30\x32\xcc\x3d\xec\x13\ \x93\x17\xa0\xa0\x98\x92\xa6\x0e\x0a\x2e\x1c\x25\xff\x00\x16\x46\ \x5b\x1f\xce\x10\x69\x1d\x0b\x8c\x6b\xd3\xc5\x82\x42\xa7\x11\x5d\ \xb8\x74\x8d\x2c\xde\x43\x47\xb6\x06\x8a\x9d\xc7\xf9\xe5\xdc\x41\ \xb1\x57\xa7\x99\xe8\x22\x48\x57\x0c\x4e\x92\xed\x5d\xf3\x03\x40\ \x3d\x51\xbc\xe0\x47\xb2\xc6\x55\xe1\x10\x4d\x06\x7d\xdb\x7e\x5b\ \x39\xd6\x0f\x11\xff\x56\xd5\xda\xe6\x8f\x80\x0f\x0b\x37\x9c\x22\ \x91\x6b\x4f\x6d\x61\x0d\x84\xb9\xa1\x32\x59\x63\x65\x88\x23\xd8\ \xe1\x95\x68\x1b\x80\x02\xd5\xa2\xbd\x1b\xfb\x20\xb8\x21\x08\xfe\ \x8d\x49\x9f\x62\xa2\xcf\x53\x0a\x12\xd7\x48\xf4\x8e\x16\x7d\x77\ \x77\xae\x04\x8b\x63\x74\xca\xa6\x9b\x38\x5a\x1d\x10\x64\x70\x8d\ \x79\x9b\xbf\xad\xdd\x3c\x73\x69\x26\x37\x6e\x14\x95\xee\x0e\xcf\ \xd7\x20\x78\xb5\xbf\xc2\x9a\x44\xc9\x4a\x77\x13\xaf\xd6\x7f\xf9\ \x91\x7d\x22\x78\x29\x82\xb0\x36\x32\x3e\x35\xa6\xb5\x6b\xc8\x93\ \xad\x71\x12\xfd\x9f\x43\xbf\xaf\xa8\x71\x01\xc2\x7d\x1f\x14\xc6\ \xce\xad\x03\x67\x83\x96\xb0\x64\x5c\x2b\x8d\x30\x0e\x34\xd5\x39\ \xc5\xe5\xec\xec\xa4\x9b\x9f\xa3\xb2\x7e\x45\x05\x93\xd8\x20\x29\ \xfc\x08\xca\x4b\x74\x31\x63\x1a\x58\x99\x8c\xe9\x0d\x4d\xe5\x07\ \xb3\x31\x38\xde\xea\xfe\x0c\x89\xe4\x86\x45\x03\xc4\x5e\xb6\x1a\ \xea\x74\x70\x85\x83\x57\xb7\xd2\x0f\xaf\xf0\xd3\xcd\x0b\x0c\xd9\ \xa1\x73\x8b\xe2\x11\x14\xf3\x24\xd7\xbb\x63\x3e\x66\x99\x4b\x1a\ \x1f\xdd\xce\xcc\xf0\x4a\xb6\xb7\xe3\xad\x42\xd2\x08\xc3\xa2\xfd\ \x2c\xcb\x12\xa2\xab\x92\xff\xd7\xaa\xd2\x5a\x5e\xbc\xd5\xd0\xce\ \x61\x07\xb8\x10\x66\x61\xae\xad\xd3\x51\x55\x72\x26\x04\x90\xcf\ \x61\xed\x47\x4c\xcc\xa2\x81\x42\x19\xd8\x21\xed\x47\xa8\x0f\x22\ \x6d\xef\x2f\xdc\x56\xe6\xc1\xc0\x86\x8b\xb5\x47\xd9\x27\x20\x44\ \x7e\x7a\x76\x05\xaa\xd0\x50\xc2\xfc\x58\x6b\x41\x17\xd5\xb1\x05\ \x53\x09\x11\x7d\xe9\x4a\x17\x11\xa7\xc7\x2f\xc6\x99\x20\xdf\xd1\ \x34\xdb\x9b\xcd\xa7\x13\x6e\x9e\x90\xeb\x6a\x98\x06\x4a\x33\xc7\ \x2b\x9a\x23\x72\xb2\xcb\x6e\x54\xfe\x1f\x62\xd2\x9d\xf1\x61\xa1\ \xee\xaa\x0b\x0d\xb7\x14\x65\xa6\xd4\x27\x79\x42\x9c\xf4\x6b\x05\ \x1f\x95\x8c\x89\x66\x09\xb5\x9a\x70\x96\x1e\x89\x5e\xd2\x20\xe5\ \xa1\x33\xd8\x99\x66\xf4\x71\x16\xef\x1a\x05\xf3\x95\xe9\x47\x71\ \xc6\x67\x82\x0c\xc1\x34\x7b\x5f\x54\x1d\x7d\x4e\xac\xe5\x2a\x8a\ \x2a\xb8\xdc\xdd\x9c\x51\xd5\xfc\x0d\xa7\x01\x0c\x72\x7c\x5e\x80\ \x0a\x06\x44\x89\x23\xd6\xcb\xd9\x9e\x87\xdb\xa3\x1f\xd9\xaa\x59\ \x1a\x63\xe4\x88\x59\x21\x29\xf3\xff\xbb\xca\x20\x05\xce\xf7\x07\ \xe1\x85\x30\xd8\x48\xa1\x0f\xcf\xe9\xcd\x29\xb5\x69\xc5\x63\x89\ \xae\x34\xaf\x3a\x7f\xec\x77\xda\x1f\x80\x92\x02\xe5\x59\xc1\xd7\ \x3b\x67\x73\x84\x57\x5f\x9d\xc0\x59\x57\xae\xd7\x65\x2d\x71\x32\ \x2c\xa6\x59\x90\x70\x24\x6f\xd8\x57\xa0\xbc\x61\x30\xc2\x7f\x0e\ \xcb\x3c\x33\xe0\xf9\x6c\x86\x69\x05\x24\xb4\x4f\x57\x21\x37\xa8\ \xe1\xb7\xe9\xa3\x5e\x9c\xf4\x71\x1c\x63\x8b\x0c\x59\x50\xf9\x42\ \xd9\x6e\x6d\x62\x88\x56\x64\xb2\xa1\x82\x59\xf6\x1d\x8e\x0a\xd8\ \x2d\x93\xdd\x8c\x06\xf2\xc6\x25\xa0\x3f\xcf\xca\x3c\x35\xc8\x29\ \x01\xcf\xd7\x63\xe9\xd9\xa6\xfe\x02\x2d\x88\x40\x19\x40\xe4\xe8\ \xfb\x08\x9f\x11\x64\x65\x50\x93\x98\x55\xa3\xd4\x19\x56\x34\x49\ \xca\x3e\x58\xd9\xd9\xa0\x4e\x67\x97\x3c\xe8\xcb\x12\x14\xd7\x70\ \x27\x37\x0d\x55\xaa\x95\xe7\x49\x99\x92\x6d\xff\xeb\x78\xd5\x80\ \x87\xd0\x41\xcf\xc3\x08\x72\x2b\xaf\x30\x24\x22\xad\x38\x66\x48\ \x30\x71\xbe\x0e\x16\xa8\xfa\x9a\xca\x16\x1e\x4a\xcb\xc1\x2c\xbe\ \xee\x48\x70\x21\xa0\x70\xd0\xac\x61\x24\x5b\xef\x48\x5d\x11\x7c\ \x3b\xde\x8e\x66\x39\xf0\xaf\xf7\xb4\x7e\xc5\x4b\xb5\x80\xc9\x36\ \x8d\x2c\x62\x90\x6d\x5f\x31\x87\x9f\x5e\xf7\xb5\x42\xfb\xc6\xe2\ \xeb\xc3\xe2\x81\x21\xe8\xb0\xa6\x50\x09\x13\xd6\xf2\x16\x68\x87\ \x99\x0b\x0a\xf7\x3e\x9e\x7d\x95\xf5\x23\x5b\xb2\x25\xad\xc1\xb8\ \xa0\x13\xaf\x63\x42\xf2\x4f\x54\xe6\xd9\x41\x0d\x98\xa6\x3b\x5b\ \xc9\xc5\xdf\xb8\x4d\xb5\x22\x7a\x53\x9b\x51\x9b\xc2\x07\x4e\x6d\ \x7a\xae\x0d\x91\x14\xac\x3b\x56\x4f\x50\x81\xb2\x02\x2c\x43\xe5\ \x66\x72\xff\x61\x5e\xbd\x23\x98\x96\xff\xa7\x82\x69\x34\xc3\x66\ \xdc\x9a\x40\xcd\xa8\x01\xfb\x5f\x10\x4c\xc3\x2f\x96\x51\x30\x3a\ \x34\xc8\x71\x62\x51\x7d\x19\xbf\x7d\xbf\xae\x17\xdf\x97\x01\x0d\ \x52\xc9\x28\xff\x0d\x52\xc5\x2e\xba\x0c\x71\x22\xf4\x7c\x3c\xad\ \xc6\x65\x2a\x8f\xa5\x49\x37\x2f\x57\x1f\xd9\x89\x2d\x0c\x4a\xcb\ \x1f\xfa\x54\x7d\xe8\xf0\xf2\xd5\x1e\xed\x41\xf4\x23\x17\x03\xb4\ \xc7\x6c\x36\x12\xdd\x7c\x72\xd2\x33\x28\x33\xbe\xac\xc5\x60\x07\ \xa7\x21\x41\xde\xca\xf6\xce\x25\xa1\x17\xea\x12\x5c\xb2\xf0\x05\ \xba\xf0\x1f\x3b\x6f\x9b\x37\xf5\x19\x59\x31\x7b\xd7\xdb\xe0\x9e\ \xe1\xc8\xfb\xa0\x26\x1b\xcc\xf9\xe1\x32\xca\x4c\xd1\x0a\x53\xa8\ \x6c\x7a\x41\xb8\x89\x3c\xab\x28\x3f\x23\xcc\x22\x83\x7f\xb4\xb4\ \x6d\x2a\xb8\x8f\x1b\x82\x65\xa7\xcc\x50\xcc\x79\x07\x25\xd5\xdb\ \x8c\x33\x24\x20\x67\x35\x32\x4f\x82\x55\xb2\x68\x42\x32\x43\x5a\ \x16\x14\x05\xe9\x9f\x73\x2b\x86\x11\x94\x80\xf3\x24\x86\xf6\x28\ \x6b\xab\x90\x26\x7d\xe5\x47\xb6\x0b\xf3\x07\x42\x12\xc3\x9c\xcb\ \x4a\x00\x20\xd7\xf7\xaf\x0f\x85\x42\xc0\x1a\x55\x1d\x08\xef\xd0\ \xfd\x06\xb8\x51\x18\xc1\xe9\x0d\x79\x3d\x50\x87\x3c\x92\xbc\x2d\ \x02\x68\x89\x0e\x07\x25\x8c\x09\x58\x66\x87\x51\x00\x9c\x2b\x3e\ \xcf\x22\x2a\xbc\x74\x15\xd0\xad\x89\x46\x21\x83\xf4\xf2\x83\x9b\ \x84\x8e\x09\x48\x6a\x5d\x06\x60\xbb\xf5\xbe\x3f\xec\xc3\x14\x2b\ \x6c\x9f\x50\x3d\x5f\x25\x15\x08\x37\x05\x3e\x67\xe9\x78\x0b\x1e\ \x45\xc0\x33\xc6\x32\xb1\x09\xa5\x59\xd3\x6f\x43\xe8\x63\xa4\xbc\ \x6f\x15\x15\xde\x86\x12\x59\x6f\xbb\x31\x2e\x93\x12\xc0\x76\xbd\ \xad\x7a\x01\xd4\x30\x63\x4f\x63\xf4\xb4\xf8\xc9\x2a\x05\xf8\x8c\ \xb2\x69\x71\xe9\x02\xc2\xcc\x6d\x9d\x47\x8c\xdc\x99\xd1\x90\xae\ \xda\xd1\x4d\x03\xc3\x89\x21\xfb\x15\x8a\x29\xa1\x29\x7d\x95\xd1\ \x0c\xfd\x13\x95\x3a\x27\x03\x15\xc1\x89\xc6\xac\x99\xde\xf4\x0f\ \x72\x72\xa5\x98\x18\x96\xce\xa9\xda\xd3\xe0\xee\xb3\x52\x50\xc6\ \x89\xc3\x12\x3a\x94\xa5\x06\x87\xdd\x78\x66\x68\xea\xd1\xd4\x2e\ \x1c\xdd\x6f\xf3\x93\x19\xff\x2a\xba\x6c\x76\xb6\xbc\x87\x2d\x3e\ \x9f\xe5\x30\x13\x26\x8a\x4d\xb4\xbb\x37\xed\xbf\x5e\x7f\xd0\xe2\ \x65\x63\x89\xd7\xb6\x5a\xc3\xcf\x3b\x62\x0a\xef\x0a\x86\xc7\x3c\ \x70\x68\xdb\x2e\x92\x2d\xdb\x17\x7a\x55\xd0\x9d\x0c\x46\xce\x46\ \x25\xba\x21\x99\xe0\xcc\xf5\x1a\xbc\x75\x09\x29\x3d\xb2\xed\xec\ \x8f\xa6\x17\x4b\x29\xb2\x40\xfb\xe5\x7f\x72\xfb\x81\x47\x92\x31\ \xec\x30\xf7\x5a\x2c\x26\xca\x4d\x60\x34\xfe\xb1\x47\x89\x31\x22\ \x0f\xb5\x42\x25\x92\x72\xf4\xa6\xeb\xad\x42\x55\xc5\x9d\x0e\x4b\ \x18\xc0\xe5\x68\x02\x53\x8c\x9e\x2e\xc0\xc5\x3f\x61\x79\x0d\x92\ \x81\x86\xc0\xb8\xc4\xc1\x15\xc8\xd8\x7e\x27\x92\x07\x6e\x36\x78\ \x8c\xb4\x4a\xbe\xe7\x83\x91\xf2\x8d\x6e\x1e\xca\x42\x5f\xf0\x3a\ \xed\x25\xf4\x39\x99\xe9\x43\x38\x39\x5d\xbf\xc2\x92\x4c\xf1\x1e\ \x36\x74\xa7\x66\x48\x65\x18\x49\x7d\xaf\x50\x9c\xc7\x1b\xca\x41\ \xb8\x93\xa5\xdc\x71\x3e\x6f\xd7\xf7\xb4\xb3\x72\x30\x9b\xc7\xa8\ \xe2\x87\xa9\xe4\x25\x45\x62\xb0\x2b\x18\x48\x10\x10\x06\x7f\xe6\ \x15\x14\x50\xc8\x10\x5d\xc1\x86\xab\x75\x3e\xb8\x9b\x1a\x4f\x73\ \x2c\xc3\x24\x1d\x00\x80\x37\x35\x4c\xb5\x4c\xff\x8e\x4d\xf5\x4b\ \x5e\xca\xe7\xaa\x55\xb0\xff\x60\x53\x01\xe9\xff\x87\x7d\xb7\x49\ \xe9\x25\x5e\x35\x07\xae\xe0\x46\x8a\x28\xd3\x56\x08\x92\x0a\x89\ \xbf\xbd\x23\xe6\x53\x96\x20\x48\xe9\x85\xc0\x03\xbe\xa7\xc3\x73\ \xd3\xd8\x8c\x84\xa7\xae\x99\xe7\x26\xf0\xf3\xba\xf6\x8c\xca\x0c\ \xed\x05\x51\x1b\x1b\xdd\xa2\x85\xb0\xee\xce\x37\x8a\x79\xb9\xab\ \x84\x83\xaf\x87\x26\xf2\x8d\x8b\xc8\xc1\xc4\x07\xc1\x9f\x15\x5a\ \x9d\x45\x5e\x01\xba\x5a\x4d\x18\xd2\xb4\x2c\x0f\x77\x41\xc9\xb1\ \x39\x54\xee\xaa\x4c\x88\x4d\x2f\xb2\x3f\x0b\xfe\x89\xa1\x66\x7a\ \x85\xd1\x2c\x00\x1d\xeb\xcf\x51\x65\x6d\x3f\x42\xc0\x67\xa1\x0b\ \xa2\x4b\xf3\xe9\x0d\xf1\x13\x6e\x36\x93\xc5\xcc\x74\xe9\x80\xc5\ \x88\x5f\xd5\x3e\xff\xca\xf7\x2f\x39\x18\x95\xc0\x2a\x13\x29\x1d\ \x4c\xbe\x9c\x41\x12\xa2\x7f\x86\xe5\xc5\x03\x8e\x41\x29\x50\x71\ \xa1\x4d\x69\x03\x34\xb9\xb9\xf4\x46\x8c\xc3\xea\x02\xac\x9f\xf2\ \x87\x45\x8f\x1a\x22\x05\xcc\x45\x54\x5c\x11\xc6\xd1\x0c\x03\x38\ \x0f\x9b\x5b\x57\xef\xf0\x30\x2c\x99\x97\x0f\x73\x25\x96\xf2\x81\ \x4d\xd9\x58\x64\x7f\xd3\xed\xcc\x53\xeb\x10\x18\x30\x89\xc2\xf8\ \x40\xc5\x46\xde\x9e\x24\x64\xab\x63\x3d\x27\x83\xa9\x5a\xfa\x94\ \x2c\xc9\x7c\x62\x58\xde\xd9\xbb\xbb\x34\xf3\xc9\xec\xfa\xd0\xe2\ \xe5\x11\x3b\x2b\xcc\x01\x42\x91\xfd\x73\x35\x73\x2b\xf4\x7e\x94\ \xc5\x1e\xe2\x8c\xfa\x15\xb3\x3a\x63\xd7\x37\xa4\x63\x95\xf4\x63\ \xe4\x9a\xdb\x0f\x50\xf0\x5e\x9a\xde\xe6\x00\xe8\x8c\xb5\xe6\x3d\ \x38\xe5\x0f\x85\x2b\x50\x2a\x35\xcb\x02\xd1\x8a\x2f\xaf\xf2\xb3\ \x02\x4a\x6b\x1d\xdb\x59\xf4\xa6\x7e\xe4\x36\xa0\x34\x58\x13\xe3\ \xd8\x80\x3f\x66\x7e\x76\xcd\x13\x59\x4d\x37\xae\x05\x46\x9e\xcc\ \xa2\xb1\x60\xf0\xdb\xe2\x1c\x28\x03\x57\xac\x95\x8c\x87\x45\x2e\ \xb9\xcf\x4a\x28\xd1\x97\x60\x1e\x1f\xf9\x52\x57\x9f\x47\x33\x11\ \x16\x35\xaa\xdc\x30\xee\x4f\x2f\xef\xb2\x29\x34\x02\x63\x46\xf0\ \xa7\x60\x24\x53\x6c\x3c\xfb\x6d\x85\xf2\x6b\xc5\x8a\xf5\xa2\x5e\ \x01\x7a\x7d\x64\x7f\x7e\x68\x10\xcd\x1b\xad\xa3\x5c\xa9\xa4\xeb\ \x6e\xd9\x4a\x7d\x16\x84\xa1\xd0\x0e\xa8\x0a\xcd\x6a\xf7\xcd\x68\ \xc8\x24\xfa\x80\x47\xb7\xb3\x94\x60\x34\x3c\xcd\x24\x8c\x8d\x8c\ \xd5\x54\x74\x44\xf9\x39\x4c\x98\x09\x6b\xf0\xc9\x60\x1a\x74\xb8\ \xc1\x3c\x45\xdb\xcf\x10\x87\xa5\x73\x60\x75\x4c\x99\x1c\xf8\x0f\ \x15\x29\xd1\x7d\x00\x2b\x75\xed\x26\xd5\xbc\x66\x2c\xe0\xaf\x15\ \x32\x9d\x6e\x5c\x97\xce\x3e\x43\x78\xa7\xb1\x8f\x8b\x55\xad\x79\ \xb6\x56\x28\xf7\x67\x79\x3b\x71\xd6\x22\x1d\x62\x2c\xc9\xe1\x1a\ \xcf\xa0\x65\x7b\x1c\x87\x3e\x89\x01\x13\x33\x06\x0a\x3d\x7c\x6a\ \x7e\x46\x80\x88\x54\x21\x4d\xa9\xe2\xff\x9d\x6e\xeb\x9f\xcd\x99\ \xf5\x34\xf0\x84\x23\xb7\x72\xf8\xb0\x58\x79\xdb\x28\xdf\xcd\xb9\ \x08\x29\x92\x16\x9e\x87\xe5\xe5\x9e\xd6\xc1\x22\x81\x49\x4b\xa8\ \x51\xd4\x5f\x14\xb3\xc0\xf0\x04\x1d\xd3\x86\x79\x7b\xb9\xa7\x94\ \x0c\x06\x33\x69\xbd\x22\x28\xb7\x80\x2e\x72\xcc\x80\xe7\x39\xba\ \xa1\x16\xe2\x59\x3b\x46\x9c\x62\x4c\xe6\x2f\xa9\x04\xe1\xa7\xa4\ \xcb\x69\xe9\x19\x95\x79\x74\xcb\xd0\x21\x33\x73\xc6\x88\x63\x78\ \x68\x6f\xdd\x20\x8c\x9c\x78\xc8\xb8\xba\x46\x86\xba\xf9\x8d\x05\ \xc9\x43\xa0\xf0\xa8\xf2\xaf\x3c\x40\xf0\xc9\x34\xb1\x08\x16\x0d\ \x21\x8d\xd6\xfd\xe0\x0d\x2a\xc6\x0e\x6e\x56\xe0\x92\xb7\x3c\xde\ \x9d\xf1\x71\x83\x5e\xdc\xb5\xd4\xf5\x1e\x42\x0d\xee\xf6\xa2\xb7\ \xdd\xa2\x1f\x93\x1a\x34\x11\xb1\xbd\x47\xd5\x36\xdd\x86\xd1\x40\ \x58\x1d\x4a\x44\xb8\x43\xa6\x85\x0f\x30\x9b\x2a\xe5\x36\x8c\x40\ \xf4\x6e\xea\x30\x1d\x9e\xdd\x16\x2b\x6f\x01\xf6\x98\xd7\x5f\x32\ \x29\x39\xf7\x8c\xca\x8b\x1f\xec\xe0\xc4\xa3\x76\xa9\x07\x5d\xbd\ \x50\xda\x0d\x0b\x8e\xdc\x6a\xf2\x1c\x23\x7b\x95\x90\x77\xd5\x8f\ \xf2\x60\x08\xa6\xb7\xcb\x86\x7c\xd5\x37\x27\xb3\x53\x50\xba\xd5\ \xd7\x0a\xbe\xf4\x1c\x58\x62\xdc\xa0\x92\x8c\x30\xaf\x67\xd9\xc4\ \x3a\xa3\xf5\x5c\x8f\x1b\x54\x5e\xfc\x0a\x20\xf6\xb5\x43\x27\x67\ \x32\xf7\x83\xa6\x0b\x89\x43\x69\x05\xbb\x4b\x2c\xe7\xef\xe2\x96\ \xd6\x33\x03\x97\xa8\x20\x7e\x16\xce\x42\xca\x84\xa0\x09\x02\xf0\ \xfd\x8a\xfa\xf9\xe1\x09\x4b\x29\xc3\xa3\x05\xfb\x79\xa7\x52\xb1\ \xb3\x69\x7f\x06\xe5\x85\x4b\xc3\x84\xdc\xe1\x60\x86\x4c\x6a\x8c\ \xbf\x48\x67\x51\x21\x79\x9f\xd1\x4f\x71\x97\x8b\x2e\x17\x0b\x26\ \x79\x54\xc4\x62\xb7\x8d\xfc\x2a\xd9\x82\xb8\x57\xb1\x5f\x9b\xe3\ \xb7\x9f\x8e\x8a\x69\x36\xfa\xd4\x83\x43\x66\x0d\x55\x9f\xda\x9e\ \x9d\x50\x99\xb3\x2d\x28\x54\xd6\x8c\x9e\x83\xe5\xf6\xa3\x82\xab\ \x48\x64\xbb\x1f\xf0\xdc\xcd\x2e\xdd\x6e\x06\x4c\x41\xd1\x18\x4a\ \x06\x46\x5a\x22\xd3\x1a\xf6\x0b\x09\x6c\xa1\x2e\x7d\x3f\x5d\xdc\ \x56\xc7\x41\xce\xa0\xe7\x71\x6b\x33\xbe\xd0\x73\xc2\x52\xe7\x49\ \x18\x56\x14\xb4\x4d\x45\xdf\xd2\xe5\x00\xb8\x59\xae\xe8\xa2\x34\ \x93\xd9\xd1\x37\xa1\xf4\xf0\xb1\xe6\x6a\x78\x42\x37\xbc\xa4\x4b\ \x6e\x6b\x8a\x3d\xcc\xbe\xa8\xbf\x3d\x1a\xc1\xe1\xa8\x35\x17\x02\ \xc6\x6c\xbe\x50\x89\x02\x3e\x54\x53\x86\x55\xf2\x38\x29\x2f\x22\ \x5b\xe6\x69\xc0\x04\x90\xf6\x7f\xd8\x67\x6e\x7b\x81\x30\xd5\xd3\ \x91\x50\x86\x50\xd6\xcc\xdf\x17\x88\xcd\x99\x4a\xc5\xe6\x61\x72\ \x2c\x82\x82\xa8\x85\x69\x58\xd0\x5e\xfb\x7a\x78\xec\x54\x87\xa4\ \x58\xc7\xf7\x0f\x67\xeb\x00\x96\xf2\xf9\x02\xd5\x19\x92\x80\x65\ \x0c\xb4\x58\x1f\xe8\x9a\xe2\x36\xd8\xc8\x8c\x8d\xf0\xd4\x56\x64\ \xbc\x69\xac\xdf\x63\x27\x5d\x8a\x00\x73\x4b\xa5\x7c\x88\x8b\xed\ \x61\x06\xe7\xd8\x8b\xa9\xd9\x37\x30\x14\x87\xdf\xe5\x3a\x98\x16\ \x98\x59\x30\xc8\x30\x40\x60\x7a\xd6\xfb\xb3\x69\x59\xc1\x0f\xc4\ \xab\x03\x41\xd4\xd7\x87\x41\x4c\xdd\x5c\x94\x55\xac\xb8\x0a\xda\ \xe7\x8f\x82\xbf\xfa\x6a\x76\xf4\x15\x1c\xc6\x80\x03\xbc\xd0\xe2\ \xca\x68\xf0\xac\x1b\xe6\x2e\xad\x1f\x6e\x83\x6a\x1b\x05\x7f\x0f\ \x36\xc0\x31\x56\x5d\x7d\x96\xb6\x75\xa6\x0c\x77\x4f\x2e\xa8\x1e\ \x69\x8b\x4b\x73\x66\xd7\xca\x2d\x17\xf0\x93\x50\xa1\x01\x44\xdc\ \x3d\xb3\xae\x04\x9a\x7b\x3a\x88\xc9\x3c\xec\x16\x51\x41\xc6\x32\ \xab\xca\x89\xb8\x22\x84\xd3\x3d\x73\x73\xd0\x4d\xbd\x47\x69\x33\ \xa3\x7b\x4d\x25\xf2\x08\xca\xec\x5b\xa6\x7b\x8f\x98\xbb\x1e\x44\ \x64\xc1\x70\x26\xda\x4d\x2c\xfc\xf8\x14\x1c\xa0\x79\x03\xf7\xe1\ \xd6\xd1\x0a\x4c\x63\xe1\x23\xeb\x8d\xeb\x71\x69\x47\x65\xe6\x59\ \xaa\x23\xf5\xfa\xa0\x11\x71\x54\x0d\x08\x29\x7e\x63\xb5\xa9\xcf\ \xea\xe0\xd4\xc2\x70\x0d\x7d\x86\xe5\x35\x49\x08\xf0\x75\x2b\x1b\ \x47\x3e\x5b\xd8\x76\x7d\xf5\xc6\x2f\xc7\xe2\xbe\x9a\xe4\xdb\x85\ \xa3\xaf\xe8\x9f\x76\x98\x16\x48\x28\xc6\xd6\x56\x9a\xb0\xcc\x55\ \xc8\xc8\x05\x2d\xd6\x72\xba\xe2\x6f\xc9\x8c\x5c\x31\xca\xf2\x1c\ \xca\xaa\xea\xe8\xb9\x11\x9a\x88\x6d\x68\xa0\xa4\x02\x56\x1b\xf8\ \xbd\x1b\x9f\x79\x73\x6e\x8b\xa6\xe5\x3f\x58\xa7\xcf\x2c\x2e\x99\ \x62\xb3\x1e\xe5\x42\x6d\xb9\xc2\xf5\x84\x4a\x45\xcc\x49\x66\x16\ \x71\x4e\x39\xea\xba\x41\x70\x87\x01\x5b\x0d\x40\x1c\xad\x48\x7e\ \x96\x2b\x6d\x46\x25\xf4\x4c\x3d\x89\x96\x3e\xcf\x63\xda\x0e\x8a\ \x2a\x5b\x54\xb4\xcc\xb3\x2d\xd7\x0b\x69\x6b\x8a\x40\xc5\x98\x98\ \x90\xdd\x95\x50\xdb\x8a\x71\x81\xcd\x26\x56\x47\x43\xc2\xfd\xac\ \x42\x3b\xdf\x34\x95\x64\x23\x93\xb3\x27\x65\xca\xdf\x9e\xc3\xec\ \xb7\x77\x59\xd3\x63\x91\x14\x3c\xdf\x80\x6f\xb9\xed\x7a\x85\x8b\ \xcb\x38\xad\x31\x94\x46\xa5\xf9\x4e\xb6\x89\xea\x00\x70\x6f\x84\ \x8f\xb9\x40\x25\x30\xf0\x06\x24\x86\xf6\x5b\x31\xa9\xc7\xb3\x51\ \xe9\x26\xd0\xc0\xa5\x41\xfe\xa1\x5d\xa2\x95\x8f\xb0\xf4\xb9\xb4\ \x05\x27\xe6\x59\x51\x95\xc8\x13\xf0\x83\x51\x57\x54\x77\xc1\x48\ \xda\xf4\x4d\x06\x46\xc4\xea\xfd\x60\x3e\x77\xc9\xfc\x93\x7d\x59\ \xa1\x9d\x98\x92\xe1\xc3\xee\xd4\x78\x94\x7e\x96\xdb\xc6\x00\xc3\ \x8c\x1f\x0b\x0a\x9a\x7d\x68\x11\xc6\x87\xac\x32\xfc\xb1\x29\x43\ \xaa\xa4\xd4\x5b\xea\x58\x4d\x07\xe4\x8a\xf6\xa3\x02\x34\x51\x25\ \x12\xf6\x86\xf1\x52\xf2\x1e\x51\xf1\x66\x0a\x08\x11\x56\x0d\xda\ \x4a\x90\x8e\xf6\x9e\x79\x93\x55\x39\x17\xa6\xee\x60\x54\x8c\x73\ \xc1\x94\x91\x19\x05\x96\xd5\x6e\xec\xd3\xff\x89\xca\x5c\xdb\x56\ \x6c\xc5\x60\x5b\x60\x94\x15\x7e\xb1\x92\x41\xc0\x4d\x07\x23\x87\ \x8c\xb6\xb2\xbb\xcf\x4a\x43\x2d\x42\x4f\xb3\x92\x2e\x1e\xd7\x2b\ \xb4\x13\x1b\x3d\x15\x6f\x0d\xd7\xe9\x10\x4e\x6f\xdf\xbb\xd5\xb6\ \x46\xde\x03\x1d\xc7\x42\x7d\x00\x35\xff\x89\xca\x33\xdb\xd6\x3f\ \x40\x94\x8c\x7a\x0a\x0a\x68\x43\xbd\x62\xf7\x09\x02\xc9\x9a\x11\ \xe9\xc3\x38\x26\xde\x93\x38\x8f\x07\x91\x31\x92\xb2\xa1\xe5\x57\ \x13\x7e\xab\x24\xc1\xd4\xf1\x0d\x9d\xd5\x73\x44\xd6\xe6\xbf\xfe\ \x6f\x41\x79\x2d\xc9\x1c\x88\xcf\xc4\x9d\xee\xfc\x8e\x6d\xe1\x4f\ \xdc\xee\x13\x79\xbe\x42\x4b\xf6\xb7\x1a\x0e\x3f\x32\xc4\x1f\xc2\ \xa5\xda\x2e\x2c\xf6\xcc\x89\x69\x15\x12\x00\xfa\x25\x3c\x62\x87\ \xf3\x8a\x2e\x36\x5f\x7e\x56\x5a\x41\xf6\x0c\xd1\x74\xdf\xff\xb5\ \xa7\xd2\xaf\x98\x4a\xdb\xf2\xc7\x54\xbe\xb3\xf8\x36\x4e\x78\xd9\ \xc6\x3a\x21\x87\xea\xb1\x8b\x34\x89\x0e\x7f\x6f\xdf\x71\x4b\xc4\ \x66\x15\xa1\x7c\x54\x4c\xfc\x0a\x94\xa0\xc3\x84\xc1\x7d\xb0\x85\ \x67\x3c\xdc\x06\x79\x67\xd9\x16\x5f\xc2\x56\x00\x2d\x7a\x0f\x98\ \xe4\xdf\xc3\xe2\x67\x8a\x9b\x7e\x98\x92\x01\x45\xa1\x51\x90\xf3\ \x0f\xa3\x38\xcf\xde\x07\xa7\x48\x18\xa7\x4c\x8b\x6f\xac\x06\x95\ \x9b\xc3\x7d\x2a\x99\x4d\xe7\x12\x19\xe7\xc9\x84\x28\x1d\x46\x94\ \x0c\xce\xf6\x41\x5e\xa7\xa2\xd2\x6a\x21\x5d\x08\x3b\x17\xec\xfa\ \x74\x58\xde\x6c\x62\xea\x5f\x13\x87\x6b\x38\xbb\xfc\x40\x46\x81\ \xf7\x8a\x1f\x48\xc7\x11\xfa\x72\xc0\x30\x21\x4b\x7c\x2b\x3d\xfc\ \x6a\x9f\x86\x14\xd1\xab\x60\xf1\x3e\xc5\xe1\xd2\xe7\x71\xa5\x3b\ \x1c\x95\x62\x4a\x5f\x8e\x25\x5c\x43\x40\xb7\x0f\xfe\x50\xfc\x46\ \x65\x66\x37\xd4\x68\x82\xd3\x64\x5c\x54\xc5\xb7\xdd\xcf\x23\xe0\ \x74\xfe\x46\x1c\x39\x43\x29\xe5\x3e\x2a\x43\x47\xaa\x75\x4a\x57\ \x14\xf6\x57\xf3\x15\xa8\x90\x0c\x42\x2a\xae\x25\x67\x45\x60\x90\ \xbc\xe6\x7a\x3b\x5c\x51\xba\x89\x9d\x5e\x0a\xd0\xff\x5c\xa0\xb7\ \x67\x64\x06\x23\xa1\xb6\xb0\x14\x53\x92\xdb\xad\x6d\x2b\x95\x0f\ \x28\x6f\xa4\x78\xd5\x86\x0f\x9c\x0a\x47\x05\xbb\xf7\x66\xe6\xc9\ \x46\x78\x59\x1c\x15\xfd\x82\x88\x6d\x1e\xf3\x84\x7c\xd8\x2f\x04\ \x3f\x5c\x83\x24\x04\x34\x59\x48\x9e\x08\x46\x3d\x84\x51\xf5\x4b\ \x5e\x93\x04\x90\x6c\x3a\xfa\x78\x89\x81\x0c\xdd\xbe\x41\x40\xf9\ \x29\xdb\x51\x29\xd0\x71\x75\x1f\x57\xa6\x4a\x53\xd8\x03\x83\x3e\ \x03\x25\x2c\xc2\x12\x81\xcf\x30\xeb\xad\x08\x72\xbb\xb3\x73\x5b\ \xef\x99\xdb\x2a\xf0\x91\x8a\x0e\x7d\x47\x15\x02\xcf\xc3\x32\x71\ \xdc\xd4\xd3\x71\xb4\x13\xcc\xb4\x8e\xe9\xc1\x0f\xcc\xbf\xc2\x53\ \x56\x71\x0d\x33\x99\xbe\x76\xd5\x2b\xf8\x66\xe1\x7d\x97\x11\xcd\ \xa8\x0b\x0b\xf4\x62\x1b\x13\x9c\x26\x51\xf3\x3d\x2d\x52\x80\x2e\ \x0d\x77\x82\xb6\x50\x85\x07\x7d\x9a\x1a\xe2\x87\x2a\x1b\x9c\x8c\ \xe9\xe1\x48\x43\x20\x35\x33\x9f\xc2\xa6\x77\x37\xaf\x94\xbf\x6c\ \xa6\xdd\x60\x15\x8d\x56\xdd\xaf\xbc\xa2\x57\xc5\x70\xb8\x7c\x41\ \x37\x27\x7d\xca\x2b\xce\xd0\x47\x0a\x08\xd8\x88\x83\xdb\xa0\x2b\ \x2a\x86\x48\x40\xbb\x8f\xa9\x53\xf4\x58\x95\xcd\x37\xa8\xce\x37\ \x08\x69\x46\xd8\xa3\x86\x1b\x0f\x6d\x9b\xe0\xc0\xe6\xa3\x5a\x82\ \x67\x19\xa6\x86\xe6\x16\x53\xca\xa6\x51\x8e\xa4\x92\xde\xe5\xb2\ \x38\x2c\xfa\x0c\x25\x27\x93\xbe\x64\xd4\xdc\xe3\xd9\x21\xbf\xc7\ \xd8\x0c\x29\xf5\x8a\xae\xa2\xee\x36\xce\x03\xa1\x3e\x0f\xcb\x8b\ \x52\x1c\x32\x9c\x04\x3d\x9e\x25\xe2\xb7\xfd\xc3\x84\x05\x20\x57\ \xd6\xa3\xdc\x4b\xe2\x32\xf9\xeb\xb4\x64\xd4\x2a\x70\x06\x04\xc5\ \xd1\x96\x9e\x55\x01\xc7\x15\x24\x32\x51\x45\x2c\xe7\x90\x71\x23\ \x2c\xc1\x30\x09\xfa\x4c\xdc\x60\x32\x1f\xd4\xc3\xfe\x08\xcb\xc4\ \x27\x03\x04\x84\x52\xb9\xf2\x2d\xfb\x89\x5b\xf0\x68\xaf\x8e\xa3\ \x07\x44\xe1\x44\x57\x01\xbc\xef\x78\x9c\xfb\x1f\x7c\xc4\x80\xe5\ \x8d\x3e\x18\x2a\xb2\xff\xfd\x96\x2a\xa0\x0f\x82\xd1\xa4\x42\x0f\ \xbc\xd8\xe1\xd4\x12\x4c\xb3\x1c\xbb\x75\x2a\x4a\xda\x60\xbc\xb8\ \x1f\x85\xdc\xec\x70\x06\xe9\x17\x89\x12\x54\x7f\x52\x0c\x83\x25\ \xb4\x59\xc8\x71\x42\x9c\xf1\x61\x40\x37\xe5\x5b\xa5\x2d\x19\x28\ \xce\xf4\xf1\x30\x47\x58\x0d\xb4\x55\xe0\x81\x6f\xcd\xb8\x6c\x97\ \x70\x6e\x27\x34\x6a\x96\x60\xd3\x84\x88\xfa\x31\x0d\xbc\x83\xf5\ \x37\xaa\x90\x6f\x58\x66\x46\x99\x6e\xb4\x09\x9c\x3a\x50\xcb\x29\ \xfe\x62\x97\xc1\x2a\x08\xbb\x9f\x9c\x6a\x4e\xe5\xde\x34\x73\xb1\ \x10\xdb\x87\x6d\x77\x73\xee\xa7\x5c\x8d\x59\x2c\x06\xee\xb5\x19\ \xde\xfe\xec\xe8\x56\x37\xf3\xbf\xfe\x6f\x41\x99\x75\x75\xab\x37\ \x6f\x18\xba\x79\xbd\xe6\xfb\x08\x30\x40\x1f\x29\x9b\x42\x37\x8f\ \xce\xe8\xa9\x6c\xa9\x6a\xc4\x76\x86\x90\xe8\xf7\x2c\x3a\x21\x1e\ \x67\xa4\xd3\x1a\x4e\x23\x90\x6c\xcf\xe2\x57\x7c\xb0\x3d\x19\xfb\ \xb1\xce\x4c\x23\xb2\x74\xaa\xcf\x7c\x3b\xdb\x9c\xf9\xc1\xc3\xee\ \xa8\x4e\x20\x9d\xb9\x7f\x83\x98\x03\xe2\x48\xa4\x6f\xdc\xec\xb3\ \xe2\xc7\x0f\x2f\x7a\xf4\x0b\xc1\xcb\x31\x3a\x5f\x81\x4b\xe1\x00\ \xe0\x91\xea\x31\xb8\x6a\xa7\x1b\xc4\xe8\x86\xf7\x27\x5b\x42\x5e\ \x16\xb0\x6e\xcf\xb6\x79\x22\x94\x9d\x0b\x0a\x46\xf1\x94\xf6\x28\ \x41\x78\xe3\x9b\x5e\x67\x45\x79\x17\x41\x25\x1a\xe7\xd0\x4b\x59\ \x41\x35\x2a\x0a\x21\xb0\x09\x9c\x59\xb3\x9d\x85\xf2\xfb\x68\xf4\ \xdd\x84\xdf\x02\x53\x6a\xd7\xe2\x65\xd7\x97\xbf\x51\x79\x66\xdb\ \xa8\x44\x07\xeb\x1d\x28\x5b\xc6\x17\x61\x1b\x2e\xa8\x3a\x56\xd9\ \x9a\xae\xb4\x99\x94\x64\xb8\x37\x42\x7a\xe2\x92\x5a\x72\xc6\x4e\ \x1d\xcc\xdc\x62\xf9\x61\xf3\x97\xdc\x03\x32\x28\x6d\x50\xda\x4e\ \x46\xc5\x84\xc9\x90\x40\x49\xdc\x22\xa4\x05\xe3\x33\xad\xc4\x79\ \x4d\x46\x05\x55\xc1\x5a\x46\x43\x91\xfc\xc0\x53\xd5\xcf\x83\x0f\ \x2b\x4f\x1a\xd2\x30\xf7\xfa\x1d\x7f\x3e\xcc\x59\x03\x9a\x1e\x71\ \xc1\xb1\x4b\x68\x9f\x43\xf3\x63\x70\xab\xcc\x74\x18\x58\xaa\x17\ \xd1\xe8\x0d\xac\x18\x9c\xc9\x90\x5c\xf2\xbf\xdf\xe2\x36\xbe\xd6\ \x64\x51\x0d\x59\xf0\x36\xb9\x53\x2a\xfa\xe1\x01\xea\x84\xb7\x30\ \x9a\x08\xed\x96\x89\x30\xc0\x01\xab\x43\x74\xab\xd1\x4f\x5d\x24\ \x15\xe5\x1d\xbc\x4f\x22\xb4\x48\xe0\x1a\xc7\x93\x8a\xd9\x44\x98\ \x5f\x70\x85\xe6\x8d\x56\x6c\x7d\x06\x65\x4a\xb5\x86\x1c\xa6\x04\ \x6e\x38\x50\xa1\x44\xb2\xdf\x33\xe3\xc7\x54\x6b\x43\xc3\x8e\xf1\ \xc4\xc7\x00\x2e\x14\x14\xec\x99\xf8\x55\x78\xbc\xcb\xac\x92\x2a\ \x3e\xc8\xa4\xe9\xdb\x01\xfa\x5c\x54\x92\x49\x40\x02\x85\x03\x13\ \x81\x5d\xe0\x35\xa0\xfe\x86\x25\xcd\xb9\x36\x43\x17\x04\xb2\x0d\ \x8c\x2e\xfe\xa2\x8b\x49\xf5\x46\x62\xc5\xac\x2a\xa4\xcf\x90\x5f\ \x0d\x6a\x6e\xa8\x0e\x9b\xc9\xf7\x72\xec\x94\x5b\x34\xf3\x70\x3c\ \x45\x7c\x3d\x3c\xe4\x57\x01\x39\x58\xd3\x0d\xec\x4a\x83\xa2\x1c\ \xda\x14\x94\x67\xaa\x2d\x7a\x11\x5d\x02\x3c\x8c\xc4\x4f\x1c\x2e\ \xdc\x9b\xb8\x52\x6f\x52\x14\x00\xbd\x54\x22\x85\x0f\x56\x10\x13\ \x33\xe8\x5b\x08\xbe\x87\x54\x96\xec\xf7\xe6\x80\xf1\x03\xb9\x55\ \x0f\x74\x4e\x69\x77\x94\xfb\x83\x4b\x86\x3e\x2c\x80\x14\xb4\x87\ \xc1\x5d\x3f\xa3\xf2\x72\x95\x74\x98\xc3\x36\x5b\xf1\xaa\x98\xab\ \xdb\xdc\x5d\xea\xfa\x62\x8b\xff\xc4\x73\xd3\xd3\xed\x51\x04\x8b\ \x2a\xe3\x27\x79\xd9\x9f\xaf\x9a\x43\x97\x90\xe3\x88\xfe\x92\xb2\ \x3b\x7c\x56\x8a\x8d\x04\xd1\x04\xc0\x8b\x02\x0e\xe4\x43\xa8\x1a\ \x75\x93\x67\x54\x10\x08\x8e\x20\xf9\xd9\x90\x35\x37\xf8\x41\xbb\ \xcb\x43\x1d\x16\x95\x1b\xd9\xa6\xb7\xb7\x3b\x5e\x41\x27\x0f\x48\ \x42\xa9\x43\xe9\x63\xf5\x04\x35\xfe\x1b\x70\x11\x60\xa4\xdc\x39\ \xad\x9e\x2b\x2a\x8d\xbc\xe2\x6d\xea\x55\xcd\x95\x40\xe7\x39\x3c\ \xc3\x32\x73\x77\xa3\x29\x00\x22\x6b\x89\x9d\x55\xdf\x7e\x98\x87\ \x87\x08\x64\xb9\x12\x1a\x0e\x4e\x77\x0d\xd7\x14\x0d\xd3\xee\x2b\ \x40\xd6\xc3\x92\xa5\x5a\x12\x33\xfe\xce\x1d\xea\xa9\x1d\x1e\x67\ \x67\x74\x69\x1c\x35\x2a\xce\xa8\x40\x23\x53\x7b\xce\xf8\xf3\xfc\ \x35\xf5\x0a\x4b\xc5\xd8\x4e\x48\xd9\xfc\x00\x16\x4c\x26\xc7\xac\ \x6f\x3a\xd3\x66\xa4\x1b\xbf\x92\x6c\xd1\x8c\x64\xb5\xb3\xe7\x69\ \x11\x94\xee\x39\x49\x0e\x9f\xd2\x10\xcb\xe9\x27\x28\x33\xb6\xe5\ \xa3\xd1\x16\x32\xf4\x6b\x83\x14\xf9\x9d\x22\xe4\x19\x92\x80\xf1\ \x0c\x06\xe2\x31\x29\x25\xe4\xfd\x11\x3f\xd4\x7f\xd0\x1e\xfa\x1b\ \x28\x5a\xbe\x0c\x55\x58\xc4\x34\xc2\xe0\x38\xfc\x25\x14\xf0\xea\ \x4e\x6d\x16\x04\x26\x81\x36\xe9\xec\xf2\xdd\xe7\x34\x2c\x52\x55\ \xac\x20\xb0\xd7\x6a\x18\x1a\xaf\xdf\x62\x7f\xe2\x91\x41\xf3\x2d\ \x81\xba\xb3\x1b\x2e\x3a\xec\x2b\xee\x82\xc5\x04\xd4\x06\x16\x42\ \x45\xdc\xa5\xea\x0e\xa8\x47\x87\x16\xe5\x06\x65\x39\x95\x88\xfe\ \x9d\x55\x02\xd8\x56\x60\x40\x6a\x9f\x3a\x7a\x91\xa7\xef\x8f\x41\ \x12\x90\x8a\x75\xd0\xdc\xf9\x20\x83\x75\xf8\xcf\x59\x99\x75\x20\ \x75\x97\x11\xbb\xe5\x81\x40\xe5\xe1\x07\x01\x16\x88\xdd\x7c\xdd\ \x29\xa8\x7e\xbd\x6c\x31\x6c\x2d\x08\x90\xa9\xdd\x3b\xde\xd5\x0b\ \x54\x8c\x0b\x81\x0e\xa5\x21\xc7\x0e\x77\x86\x19\x7b\x1e\x96\x0c\ \xfc\x4b\xd9\x4d\x59\x37\xb4\x67\x50\xfa\xf4\x81\x46\x77\xaf\xef\ \x17\x15\xc8\xdc\x7f\xd8\x1c\x86\xca\xca\x90\xe1\x2c\xe6\x5e\x1f\ \x4c\x0f\x5e\x37\x8e\xc5\x7b\x6f\x09\xff\xb9\x65\x50\x14\xb0\xcc\ \x67\xa0\x88\x3c\xfd\x2c\x17\x67\x6e\xcf\x85\x21\x61\xc4\x2b\xc8\ \x0f\xdd\xc5\x6f\x50\x26\x1a\x59\xfb\x73\xf0\xef\x75\x66\x31\xa9\ \xc6\xbe\x74\xbf\x07\xd2\x81\x43\x67\x0b\x2e\x26\x88\xa9\xbb\x31\ \xc4\x9d\x89\x71\x30\xa6\xe1\x3a\xc2\x2b\xa0\x13\xd2\x8c\x40\x2c\ \x8b\x11\x58\xcb\xe1\x6e\xb9\x84\xff\xea\x7f\x3a\xc5\x80\x57\xf0\ \xb8\x50\xa6\x2d\xcf\x93\x32\xb3\xc8\x74\xdb\xb2\x91\xaf\xf5\x6c\ \xa6\x96\x06\x8b\x6c\xd3\x2c\x1d\x0a\x35\x8e\x49\xa6\x87\x73\x13\ \xdf\x95\x55\xaa\xf9\xf6\x15\xee\x68\x1f\xbb\xa9\xd7\xb8\x29\x99\ \x42\x02\xb6\x72\x1d\x6b\xe8\x65\x54\x76\x64\x20\xdb\xff\x54\x06\ \x12\x7b\x7b\x95\x9a\xc1\x19\x16\x4b\x97\xfc\x7f\x43\x06\xd2\x97\ \x64\x56\x57\xb0\x84\x80\xd2\xab\xd5\x19\x72\x22\xdf\xe9\xc6\x8b\ \xdf\x96\x81\x77\xbb\x8e\x7f\x28\x15\xc6\x0f\x5f\x17\xa4\x27\x8f\ \x04\x4c\x53\x5f\xe1\xc2\xad\x05\x4c\xe2\x75\xa6\x0e\x89\x23\x74\ \x7d\x8f\x7c\x2a\xca\x7b\x58\x51\x43\xc6\xc4\x65\xea\x2c\x32\x5a\ \x77\x9a\x0d\x1a\xc0\x2b\x2a\x22\x1c\xb1\x87\xb9\xc5\x3f\x87\xf8\ \xc5\x6f\x73\x40\xb4\x1d\x56\x25\x8d\x50\xfe\x20\x79\x58\x90\x30\ \xc5\xed\x0b\x6a\xea\xb5\xe5\x1e\x2e\x7d\x85\x19\x2a\xb6\x04\xea\ \x50\xde\x8f\x40\xfc\xeb\x86\xf2\x73\x10\x9e\x54\xb6\x9c\x1b\x0f\ \x5e\x51\x69\x00\x02\x3d\x62\xea\x30\x4b\x94\xdc\xf3\x9c\xef\x5e\ \x3a\x90\xaa\x5e\xa8\x73\x83\x3e\xb8\x1f\xae\x14\xbb\x2a\x05\xd9\ \xa6\xa5\x54\x63\x90\x38\xbe\x2d\x6b\xf6\x00\xde\x10\x24\x8d\x79\ \xc1\x0f\x2d\x0a\x4a\xae\xc0\x08\xe8\x68\x95\x34\x0f\x3f\x02\x15\ \xe1\x75\x0f\x01\x08\xe7\x35\xe6\xc9\xf5\xc9\xb0\xf6\x13\xbd\x8d\ \x8e\x35\x9b\x01\x57\xc5\x34\x07\xff\xab\xfd\xa3\x02\x0c\x00\x56\ \x01\xef\x31\xa7\xe2\xbf\x2f\x58\x5a\xa4\x38\xea\xf4\xea\x11\xec\ \xcc\xaa\x63\x45\x21\xc4\xf8\xf2\x81\x96\xff\x74\x54\x0c\x96\x66\ \x4a\x7a\xe8\x53\x44\x53\xc6\x7f\x02\xb0\xea\x3c\x49\xc6\x2b\x00\ \xcd\x66\x64\x41\xd4\xb3\x6e\xeb\xb5\x01\x44\x1c\x26\x12\xce\x50\ \xc8\x1f\xfc\x95\x5a\x50\xa5\x76\x80\x18\x19\x32\xca\x8a\x9d\x43\ \x61\x63\x70\x17\xb8\x28\xe1\x74\x1b\x32\x08\x6e\x03\x03\x05\x24\ \x3e\x99\x37\xc9\xf3\xb0\xbc\x84\xd7\x3b\xcd\x5c\x87\x9a\xc9\x37\ \xf6\x83\x8a\x5d\x61\xb1\x4b\x6a\xf5\x54\xf1\xfe\x3e\x2b\xdd\xa1\ \x3c\xae\xea\xb2\x20\x46\xbf\x14\x82\xc4\x3f\x14\x8d\x9d\x8e\x36\ \x7b\x3d\xac\x4c\xe6\x07\xc1\x4d\xdf\x18\x7a\xd6\x80\x39\x70\xff\ \x78\x96\x0c\x33\xc1\x4d\x5f\x94\x6a\x3a\xa3\xf3\xe0\x89\x58\x7e\ \xd2\xc7\x8c\x11\xef\x74\xd5\xd6\x66\x27\x71\xef\x78\xe9\xd9\xd0\ \xd0\xc1\xe8\x21\xa6\x85\x32\x59\xf9\x1b\x6a\xa1\x08\xb6\xe9\x19\ \xd2\xff\xe7\x70\x58\x9a\x1d\x96\x1a\xe9\xcc\x11\x11\x4d\x68\x41\ \x3e\xc3\x32\x2b\x41\x62\xa7\xc7\x23\xe4\x4c\x59\x20\x6c\x2f\x63\ \xd4\xb4\x06\xfb\xd2\xe3\xe5\x09\x74\x13\x67\x11\x30\xa7\x4e\x0b\ \xe9\x8b\x6c\x9c\x0b\xd3\x1a\x1f\xca\x29\x67\xa3\xd2\x0c\x27\xa1\ \x5e\x1a\x41\x00\x16\x72\xb1\x4c\x38\x7a\xff\x72\x6d\x53\xa7\xcb\ \x28\x04\x78\xbf\xeb\x3f\x11\xdc\x9a\x15\x97\x9e\xb1\x0d\xc2\x51\ \x77\x27\xa2\x97\x5f\x15\xb8\x33\xe4\x53\x5b\x35\xad\x78\x8c\xea\ \x37\x61\xa7\xdd\x54\x1f\xc4\xd3\x78\x80\x86\x81\x8f\xea\x7e\x54\ \xf6\x54\xc1\x52\x88\xa4\xe7\xd8\xf4\x65\xdb\x16\x10\x90\xc3\x8c\ \x30\x07\x40\xc0\xdb\x3d\x2b\x60\x5f\x95\x2b\x48\xa2\x75\xfe\xef\ \xd5\xb3\x72\x82\xea\x3d\x33\xac\xcb\x9a\x3b\xfe\xd5\x84\x0c\x08\ \x76\x7a\x91\x33\x75\x38\xaf\xb4\x64\x00\xe5\x12\x23\x62\x97\x8c\ \x15\xe2\x93\xf4\xe7\xdb\x4b\xb9\x81\xb1\xb8\x8a\x27\x80\xee\x7e\ \xf0\x9b\x77\x97\x31\xe8\xa1\x21\x06\xc3\xe0\x27\xb6\x1b\x7e\x55\ \xf4\x2e\x03\x79\xd2\x83\x0b\x4b\xf4\x3d\x1e\x8c\x7f\xa0\x60\x31\ \xbb\xcf\xd5\x26\x1c\x87\x71\x9d\xad\x98\xda\x65\x64\x38\x8c\xa1\ \x07\xca\xe5\x4f\x98\xd1\x44\x6f\x63\xc4\x9a\xf1\x99\xd3\xd5\x2b\ \x09\x8b\x97\x1f\x8a\x38\x04\x82\x02\x86\x71\x15\xdf\xcf\xf2\xf1\ \x32\xcf\xe6\x68\x18\x8d\xe9\xb0\x32\xc7\x4c\xb0\x3e\x94\xd3\xf0\ \x6b\x1e\xd0\x91\xc3\x51\x69\x26\x4a\x47\x63\x6e\xfa\x1e\x0d\x50\ \x6f\x7e\x86\x65\x2e\x6d\xf1\x5e\x84\xb3\x14\x10\xca\xc9\x6e\x9b\ \x1f\x1a\x28\x50\x6d\x20\x50\x5c\xae\x48\x70\x5d\x59\x45\xd5\x6a\ \xca\x09\xcf\x43\x0c\xb7\x16\xa6\xf7\x78\x76\x39\xde\xa6\x0c\xfa\ \x11\x01\x94\xb3\x51\xe9\xa6\xba\x8b\x26\xb0\x3e\x01\x24\xf0\x9a\ \x06\xd8\xe9\x1b\x95\x17\xbf\xcd\x9b\xe4\x2b\xad\x13\x66\x31\xe1\ \x07\xed\x13\x95\x8d\x0d\xf6\x00\xc6\x8e\x38\xdb\x5e\x67\x45\xc7\ \x00\x2f\x07\x05\x1d\x81\xe4\xa5\xf1\x21\xa8\x65\x00\xeb\x25\x1a\ \x3f\xe7\x30\x52\x6f\xf0\xdb\x60\xc5\x07\xe0\xb4\x36\x94\x73\xcf\ \x6d\xcc\x8b\xdf\x96\x2d\x3d\x22\x69\x94\xad\x36\xdd\x1f\xfb\x74\ \x96\xed\x28\x66\x53\x87\xa5\x8f\xc6\x39\xfe\x15\x19\x65\x80\xee\ \xd1\x6c\x5a\x79\x64\xd2\x71\xf4\x6a\xba\x0a\xb1\x94\x7e\x18\xd6\ \x69\xee\x6d\x49\x1f\x4d\x35\x3f\x0a\xd2\x68\x00\x3f\x51\x46\x13\ \xbd\xad\x0e\xf5\x38\x56\x44\xc6\x4b\x0b\x3f\x04\x45\x07\xc1\x8c\ \xca\x50\xab\xbb\x05\xfc\x86\x2e\x03\x60\x71\x60\x10\x6c\x70\xdf\ \x17\x08\xd9\xca\x44\x3b\x69\xf6\x17\x7a\xa1\x0f\x27\x5b\xe8\x6d\ \x88\xce\x04\x5f\x20\x7f\x63\x29\x95\xdc\x73\xc9\x3b\xfb\xb7\x31\ \xd8\x23\xff\x74\x84\xae\xd3\x65\x0b\xb8\x2b\x7e\xd2\x18\x99\x82\ \xf5\x03\x8c\x50\xee\x87\xb9\x18\xac\x4a\x35\x3f\x0d\xe3\x7f\x60\ \x72\xa9\x43\xf2\x38\x97\x02\xb8\x1d\x3e\xe2\x07\xab\x95\xce\x30\ \x99\xb5\x54\x30\xb7\x27\xc6\xca\x4f\x93\x00\xff\x76\x70\xc3\xa2\ \x57\xcf\x10\x82\x16\x3c\x8f\xdb\x83\x53\x06\x18\x68\x82\x07\x0c\ \xe6\x29\xed\xef\xc1\x29\x3a\x3c\x6a\x7f\xb0\x00\x5c\xc3\x8c\x94\ \x90\x1d\x3b\x0f\x3a\x25\x95\x57\xf1\x9c\xff\x94\x45\x45\xfd\xaa\ \x29\x11\x27\x63\x4e\xb1\x40\x0c\x83\xdb\xfe\x89\x4a\x58\x3d\x8a\ \x48\x19\x21\xa1\x8d\x74\xd8\x76\x6f\x18\xa8\xc4\x40\xd1\xeb\x0d\ \x86\x79\x1e\xee\xa3\xa2\x6a\x8e\xc6\x26\x23\x62\xae\xc8\x2f\xed\ \xde\x4d\x94\xb3\x1b\x63\x30\xf6\xc3\x2e\x1b\xc1\x9c\x29\xd1\xfa\ \x67\xc0\x63\xa1\x71\xbd\x3d\x83\xf2\x2a\x6c\x33\xbe\x18\xf4\xd8\ \x1d\x85\xd1\x1f\x16\x77\x48\x33\x27\x54\x06\x6c\xcc\xee\xef\x1e\ \x88\x39\x2d\x56\xe1\xae\xa9\xc0\xf5\x0b\xb9\x50\x55\xfb\xc6\xb4\ \x6d\x54\x80\xbc\xdd\x67\xab\x95\x40\x07\x58\x74\x54\x00\xa8\x34\ \x55\x2b\x0a\x4f\xce\xee\x19\x95\x3c\xa7\x15\xbe\x9d\x42\x21\x07\ \xc2\x7d\x30\xf5\x36\x91\xae\xc8\x13\x44\x6b\x46\xd9\xa3\x7e\x36\ \x77\xb0\x61\x1a\xea\xb5\x8e\x86\xa2\xaf\x66\xec\xea\x95\x75\xa0\ \x1c\x13\xd5\xf3\xc2\x98\xc1\x0c\xdc\x62\xb6\x21\x05\x50\x39\xd5\ \x0e\xb5\x3f\xa3\x32\x2f\xee\x0c\x42\xa7\xe7\x3b\x5b\xef\x64\x4b\ \xfc\x4d\xf0\x22\x24\xd0\x66\x84\x12\xc0\x69\xfd\x06\x2f\x7a\xd4\ \xcd\x75\x50\x42\x45\x90\xd2\xbd\x29\x7f\x1e\xe8\x48\x64\xc1\x1c\ \xd0\x00\x09\x87\xdf\x65\xe5\x70\xe3\x4f\xa8\x96\xc2\x81\x11\x84\ \x7f\x1f\xfc\xd0\x7f\xa2\xf2\xa6\xb7\xe1\x6a\xa6\x9b\x85\x72\x1c\ \x23\xc2\xfd\xbc\x82\x02\x90\x52\x77\x48\xb9\x82\x98\xbf\x45\x95\ \x3a\x7e\xee\x09\x7e\x97\x4e\xe4\x5a\xe1\x5c\x55\x12\x55\x2f\xed\ \x89\xfa\x24\x77\xb6\x88\x0b\xde\x0d\xe4\x50\xb2\x87\x9f\x89\x60\ \x2e\xe1\x19\x16\xff\x9a\x0d\x16\x94\x31\x6d\xac\x01\x92\xec\x07\ \x7e\x28\xca\x97\xfa\x43\x22\x65\x7b\xf2\xfe\x6e\x0e\xf1\x13\x81\ \xd5\xd6\x90\x0a\x6f\x0b\xbf\x4c\x20\x8e\x0d\xa2\x62\xb1\x19\x7c\ \xea\x67\xe7\x93\xaa\x05\xc6\xb0\xaf\xd1\xb8\x56\xaa\x90\xeb\xc7\ \xfc\x06\xe5\x2d\x93\xa3\x92\x0f\x45\xf6\x66\x82\x62\xfb\x38\x23\ \xec\x32\xa9\x62\xd5\x1a\x42\xc1\xb9\x36\xd8\x54\x71\x9e\x77\x1a\ \x4a\xba\xba\xa1\x9e\x57\x73\x04\x5d\x9f\x4e\x03\xa9\x3f\x01\x24\ \xf2\x59\x0e\x4a\xf0\xc8\xe4\xd0\x27\x07\xbc\x66\x23\x1e\x45\xee\ \xb1\xf6\x08\x2f\xa3\x34\x2c\x78\x81\x4f\x23\x03\xee\x87\x16\xdf\ \x2e\x20\x60\xd8\xfc\xa1\x5a\xd4\x62\x0c\x77\xb5\xc2\xc7\x00\x44\ \x64\xba\x7d\x71\xc1\xb5\x80\x9a\x1e\xf5\x37\x3b\xd8\xa1\xfa\x8d\ \xfd\x74\x50\x8a\x71\xb8\x81\x8c\x82\x0e\xa8\xdd\xe5\xa7\xaa\x5f\ \xf0\xb3\x70\x43\xd0\x87\xb1\x0a\xce\xbe\xae\xbc\xfd\x02\x19\x76\ \x04\x0d\x55\xca\x12\x3d\x81\x63\x98\x46\xfb\x81\x4e\x42\xfe\x8e\ \x27\x17\xf7\xc7\x6a\x6b\x95\x29\x0d\x13\xdf\x1e\x0e\x57\x2b\x83\ \xdb\x96\x0d\xd8\xa3\x1f\xd1\x17\xb8\xe4\xd3\x05\x9a\x35\xc9\x32\ \xef\x21\xad\x9b\x3e\x77\x18\xa6\x55\x9b\x0a\xaa\xea\x30\xaa\x81\ \x49\xf5\x97\x20\x7c\x73\x8f\x11\xf4\xf2\x98\xc1\x38\xc8\xb7\x15\ \x67\xd6\x58\x05\xce\xdc\x7b\x0b\xda\x99\xfe\xec\x20\x3b\x04\x93\ \xc9\x61\xee\x65\x88\x39\x26\x5f\x23\xe7\x7d\xa3\x32\x51\xdb\x1a\ \x82\x25\x85\x8b\x66\xae\x06\x69\x1f\x3c\x82\x0b\x50\xb2\x44\xe6\ \x98\x33\x0e\x28\x82\x35\xcc\xb5\x99\x93\x79\x31\x9f\x8d\x85\xdd\ \x2c\xe3\x7d\x3e\x84\x1a\x31\xf2\x61\x3b\x97\x6b\xaf\xa8\x18\x24\ \xad\x02\xa8\x44\x34\x4d\x3f\x6c\x6a\x0f\xce\x6c\x78\x3b\xa5\x61\ \x67\x0f\x7d\x0a\x6f\x55\xb7\x8f\xff\x45\x7c\x0b\xf0\x3c\x16\x8c\ \x3a\x31\xd1\xdf\x59\x05\xcf\x8c\xd4\xec\xf0\x2a\x66\x8b\x39\x5c\ \xa4\xa7\x44\xc5\x14\x1e\x27\xf6\x02\x67\x47\xb6\x21\x0c\x6d\xf3\ \x02\x4c\x9c\x06\x58\x35\xdd\x98\x9d\x7e\x73\x6d\x78\x59\xf7\xa8\ \x3f\xa9\xf0\xf0\x94\xef\xfc\x68\x5d\x76\x45\xfd\xd8\x04\xa9\x26\ \x61\x6b\x18\x5d\xbf\xd1\x8b\x1e\x12\x2c\x06\x1b\x88\x6c\xac\xd6\ \x86\x26\xf8\x10\x31\x4d\x48\xce\x96\x0c\x67\x97\xa9\xaa\x8f\xfe\ \xc3\x97\xff\x0d\xca\x0b\x8d\xa0\x66\x11\x91\xed\xc2\x3b\xc1\xe4\ \xe7\xbf\xb7\x41\xd1\x9d\x9f\x2c\x35\x1c\x69\x94\x30\xaf\xb5\x21\ \xfd\x3b\xf3\x09\xb5\x39\x6a\x74\xc2\x80\x90\xbf\x5d\xac\x03\xc3\ \xb1\x0c\x96\x5b\x17\xf0\x74\x5a\x69\xff\x75\xb9\xdd\x23\xba\x88\ \xb8\x11\x76\x93\xcf\x1b\xd4\xa7\x9f\x25\x9b\xfa\x04\x9c\x32\xc6\ \x71\xfb\x74\x3f\x56\x17\x68\x7c\x60\x9f\x47\x0d\xf9\x21\x2b\x01\ \xdc\xd1\xc9\x8d\x2c\xbe\x9b\x5b\x0a\xcb\x16\x8c\x8c\x0a\x4a\x20\ \x19\xc4\xe0\xe1\x77\x39\x3a\x73\xdf\x34\x72\xaa\xe2\xa1\x7f\xf7\ \x4f\x5e\x5b\x98\x8d\xd2\x50\x87\x2a\xc8\x36\x24\x93\xeb\x2c\xfb\ \xe5\x3e\x5e\x4d\x95\x41\xb4\x47\x34\xb5\xf8\xeb\x06\xa1\x14\x8d\ \x7e\xaa\xc7\x5d\x09\xf9\x82\xa5\x86\x6a\x4b\x81\x78\x44\x65\xfc\ \xde\xce\xb9\x03\x5c\x51\x31\x62\x9b\xfe\xf6\xaa\xd4\x46\x77\xcc\ \xb8\xa5\x3f\xc3\x32\x67\x5b\x2e\x3c\xfa\x8f\x1e\x1b\xbe\xc1\x9f\ \xda\x2c\x6c\x01\x43\x67\x44\x30\xb1\xd0\x0a\x9f\xde\x50\xef\x72\ \x65\xe7\x9c\xcc\x44\x63\x41\x41\x01\xde\x51\x6c\xfb\x5b\x1a\x03\ \xc4\x72\x38\xdb\x46\x63\x5b\xe0\xbe\xe9\x4d\x45\x0e\xc0\xed\x13\ \xbb\x12\xe2\xcb\x49\x22\xe2\x8f\x89\x1e\x98\x72\x64\x4b\x3f\x70\ \x50\x02\xac\x17\x28\x1e\xec\x53\xdd\x67\x3a\x69\x32\x87\xe8\xd9\ \xe9\xf1\x57\x4b\xbc\xa2\x15\xe8\xb7\xc4\x8e\x6b\x28\x2c\xdf\x81\ \xb6\x39\x19\x95\xf2\x5f\x5d\x47\x05\x0a\x8a\xaf\x36\xb6\x1d\xac\ \xc6\xfc\x0d\xca\x94\x6d\x41\xa8\xe2\xef\xd7\x18\x14\x51\x75\xff\ \x60\x8c\x8c\x94\x3e\x9b\x54\xf3\x3f\x18\xa8\x59\xbb\x41\x98\x69\ \x57\x0a\x5b\x74\xbc\x97\x37\x28\x03\xa6\xce\x80\x11\x12\xda\xaf\ \x67\x01\xc0\xfa\x26\x2c\xf0\x21\x2b\xa9\x34\x53\x12\x19\x8a\xbe\ \xdf\x87\x39\xce\x0b\xb2\x84\x8a\xb7\xad\x81\x4c\xb5\x65\xdb\x18\ \x59\xcf\x2b\x12\x11\x8c\x95\xd0\x31\x49\x1f\x0d\x62\xc0\x7f\x95\ \x3f\x9a\x66\x78\xf0\x16\xde\x4a\xe2\x30\xe1\x41\x88\x65\xd8\x9b\ \x67\xe7\xfb\x01\x66\x5b\xff\x83\x6e\x37\x8a\x83\xae\x5b\x94\x1f\ \xfe\x8b\x21\xbd\x0a\x28\x90\x19\xaa\xd1\x9d\xd9\xe3\xd6\x1f\x04\ \xdf\x11\xa9\x42\xdb\xa3\xe3\x40\xd9\xf2\x3d\x9e\x04\x3b\x8f\x58\ \x0f\xda\x10\xbc\xff\x8b\xb4\x82\x0c\xed\x3f\x7a\x9a\x87\xcb\x95\ \x64\x6a\xbb\x8d\x5e\x1e\xf2\x77\xe6\xb2\xb6\xe7\x59\x99\x7d\xd2\ \xac\x5e\xd1\xcf\xe2\x82\xd9\xc1\xc7\xb2\x8d\xd1\x00\x28\xd8\x9a\ \xe9\x82\x56\x58\x13\xf5\x36\x60\x34\xb5\xcb\x8a\x5b\x83\x7e\xf8\ \xba\x80\xc4\x41\x57\x62\x1a\x85\x13\x7c\x2f\x94\xe3\x87\x0f\x4b\ \x1a\x2e\x08\x01\x38\x0a\xe2\xcf\xad\x5f\x50\x91\x6f\x58\xa6\xa9\ \x2d\xc5\x02\x68\x4f\x80\x7c\x4c\x9b\xfd\x0f\x7c\x8b\x88\x13\x1a\ \x13\xca\x48\xd1\x72\xd9\x12\x20\xd9\xd4\x81\x89\x57\x83\x0a\xba\ \xbc\x4a\x2c\x85\xf2\x20\x50\xe1\xa2\xce\x79\x7a\xed\x91\x4c\x26\ \x07\x71\x82\x8a\x81\x79\x41\x45\xaf\x3e\x2b\x96\x34\x33\x89\x95\ \x96\x55\x2e\x28\xcf\x42\xc4\x6f\x69\x7b\x73\x98\xc8\x2c\x9e\x9c\ \x5d\xb1\xd3\x70\xfe\xc3\xe2\x52\xeb\x81\x1d\x96\xbe\xa7\x04\x83\ \x6d\x11\x95\x66\xdf\x60\x40\xe6\x8a\x7e\xe9\x70\xba\x4d\x43\x94\ \x2c\x36\x87\xed\x8c\xda\xc3\x38\x36\xe0\xff\x04\x65\xae\x6d\x4b\ \xab\x81\xa2\x36\x32\xeb\x8d\x69\xfb\xa8\x54\x2b\x62\x91\xd0\x80\ \x5c\xc1\x0f\x78\x05\x25\xe1\x1b\x9b\x0c\xb9\xd2\x2f\x70\xcc\x8b\ \x5a\x80\x67\xcf\x57\xc0\xe0\x70\xba\xc5\x26\x0d\x45\x0d\x16\xec\ \xbd\xc3\x6b\x46\xb9\xe1\x51\xaf\xbc\xb8\x6d\x7e\x20\x0a\x73\xf2\ \xa0\x95\xfb\x0f\xb5\xad\x0e\x9b\x4b\x95\x9d\x29\x52\x1f\xee\x46\ \x65\x23\xe8\x0a\xfb\xd4\x8a\xa2\x31\x43\x7e\xc1\x9c\x94\x8e\x4d\ \xf8\x2f\xb0\xf9\x38\xdd\x33\x67\xf3\xed\x61\xdd\xd5\x54\x19\x50\ \x35\xc4\xfc\x74\x1a\x0c\xb3\x4d\x5a\xf8\x63\xa2\x8e\x68\x23\xd9\ \x30\x96\xb2\x0d\x14\x54\x86\x82\x46\x8d\x35\xc0\x80\x08\x8d\x32\ \x2e\xfc\x15\xfc\x44\x20\x78\xd1\xb4\xb6\x45\x58\xcc\x33\x0c\x34\ \xee\x63\x3d\x7f\x30\x2c\xc9\x94\xa3\xa9\xe2\xe0\xd6\x1b\x38\x20\ \x3c\xa3\x32\xd7\xb6\x0d\x2d\x3d\xea\xca\x64\xc8\xb8\x5f\xb6\x41\ \x6c\xee\x51\x2d\xa9\xb8\x7b\xb5\xfb\xac\x78\x73\xf7\x83\xb7\x80\ \x31\xd8\xc2\xa1\x46\x89\x10\x69\x29\x46\x65\x31\x84\x7e\xda\xc2\ \x34\x40\x6e\x63\x50\x08\x69\x97\xa5\x3b\x5a\x63\xe1\xa1\x65\x11\ \x66\x97\xb4\xfe\xa7\x72\x2f\x01\xcd\x46\xe8\x01\x31\xa8\x1f\xb6\ \x41\x26\x98\xa7\x16\x33\x20\x89\xd3\xee\xcd\x21\x6a\x41\x26\x27\ \xaf\x78\xf9\x15\x78\x45\x91\x43\xb0\x13\xd3\xdb\x86\xfa\xeb\x39\ \x8d\x9c\x2b\x2c\xa6\x91\x83\xeb\xae\xb7\xa3\x82\x0f\x55\x9c\x0e\ \xcb\xb4\x24\x2b\x7a\x84\x70\x63\x41\xbb\x1f\xa2\x6d\xfd\x81\x4a\ \x9c\x22\x3f\x39\xda\x41\xf0\x07\xf3\xdd\x09\x81\xbf\x4d\xd8\x84\ \xc5\xfe\x91\x2a\x9b\x2b\x16\xca\xce\x08\x3e\x3c\x97\x9b\x14\x71\ \x2e\x2c\xf8\xa4\xe1\x2b\x94\x8c\x5c\xa0\x22\x1a\x6a\xfc\x73\xa3\ \x5a\x5e\xc3\x04\xdc\xdd\x54\x08\xeb\x31\x6d\x4c\x37\x7f\x11\x22\ \xf6\xb0\x18\x94\xe6\x95\x32\x63\x6f\x37\x00\x0c\xbd\x75\x5c\xc7\ \xf4\xe3\x7e\x38\x7d\x73\x8d\x8d\xd2\x52\xc5\x67\x30\x42\x6a\x3a\ \x1d\x96\xc0\x76\x45\x1d\x87\xa5\x38\xb0\xe3\x03\x38\xf4\x4f\x54\ \xde\xe5\x2d\x45\x67\x81\xf0\x6d\x73\xa1\x1f\x2a\x16\x64\x91\x10\ \x63\x8d\xa1\x5b\x7b\x75\x45\x85\xec\x06\x32\x86\xa4\x8b\x06\xce\ \xaa\x6d\x06\x19\x46\x3b\x04\xe8\x27\x9f\x63\xe3\x5f\x51\x31\x6e\ \x03\x08\x34\x53\xe4\xef\xca\x63\x69\x0e\xcb\x8b\x4e\xac\x2f\x47\ \xc7\x04\x92\x75\x47\x24\xf9\x07\x9d\x1c\xb0\x16\x89\x3d\x19\x82\ \x8e\x6d\x80\x25\xd1\xd6\x72\xf8\xd4\x20\xda\xc7\x7f\x5c\x57\x3a\ \xaa\x19\x6d\xcc\xa0\x54\x88\xb0\xc6\x90\x3b\x3a\x58\xc8\x95\x62\ \xee\x57\x6a\x54\x31\xae\x46\xf5\x2a\x5e\x90\xa3\x4f\x54\x9e\x09\ \xb7\x2b\x3d\x63\x82\xe1\xaa\x0d\x56\x5d\xde\xce\xb7\xc6\xd5\x42\ \xef\x06\xb5\x9b\xea\xf3\x05\x68\x45\xa3\x20\x32\x99\x55\xe1\xdf\ \x38\x48\x4b\xab\x41\x60\x8a\x95\xbf\xbd\x81\x73\x3d\x5c\xdd\x96\ \xa6\x1f\xd3\xf8\x96\x7a\x69\x33\xab\xb2\x71\x62\xbf\xaf\x50\x79\ \x61\x12\xba\x89\xa3\x21\x7d\xc1\x1d\x2a\x3f\x00\xc0\x54\x98\x9a\ \x05\x0c\x83\x71\x94\xdf\xed\x2f\x46\x69\xa9\x21\x09\xa1\xb7\x0e\ \x11\xf3\xbe\xa2\x13\x07\x30\x48\x15\x19\x83\xef\x2a\xed\xdc\x0d\ \xaa\x4e\x51\x01\x1d\xca\xaa\x1b\xf0\x8a\x6f\xe1\x59\xc7\xd5\xf9\ \xec\x2a\xad\xe8\xd9\xe0\x99\x28\xf9\xd2\x3e\xdd\x45\x66\x07\x7d\ \x2b\xd8\xab\x63\xae\x52\xda\xdd\x08\xa9\xb5\x61\x79\xac\x37\x97\ \xb5\x46\x5e\x35\x42\x05\x53\x85\x50\x8d\x17\x51\xca\x39\x10\xff\ \x38\x2a\x83\x48\x96\x28\x18\x3a\x75\x3f\x77\x23\x3d\x87\x09\xf5\ \x65\xba\x0e\x23\x2e\x9b\x50\x1b\x76\x2c\x61\x1b\x93\x40\x01\xc9\ \x69\xd0\xeb\x9f\xc0\xe3\x7f\xb4\x4f\xd4\x30\xe2\x4b\xda\x23\xc6\ \xa1\x7d\xc9\x6d\xc0\x16\xb9\xd9\x68\x06\x5d\x25\x77\xb8\x90\xab\ \xc0\x6d\x91\xdd\x54\x73\x9a\x99\xf7\xe1\xb0\xf5\x3c\x2b\xb3\xfe\ \x23\x02\x9d\x06\x2a\x45\x43\xe0\x5a\xd6\x6f\x0a\xb5\xa9\x5e\x0b\ \xe6\x0e\xa0\x6f\xfd\xb2\x7d\xb6\xf1\x09\xb0\x2e\x7c\xf5\x1c\x8a\ \x7d\x2b\xfd\x47\x24\x35\x32\xb6\x27\x2a\x72\xb1\x7c\x3a\x1c\x14\ \x23\x92\x59\xca\x42\x6d\x37\x9b\x1b\xd5\x73\x23\x54\x67\x01\x48\ \x07\x86\x22\xb0\xa3\x42\x67\x7b\xdf\xab\x93\x11\x2d\xd5\x7e\x37\ \x6e\x2c\xce\x10\xf7\x38\x0e\x5f\x6d\x88\x4a\x54\xd1\x3e\xac\x8a\ \xdb\x8e\x56\x69\xa5\x4d\xf2\x50\xb0\x0f\x17\xb7\x83\x47\x06\x26\ \xa0\x00\xea\xad\x68\x97\x86\x27\x28\xa1\xbe\x04\x77\x23\xd8\x63\ \x6c\xac\x1d\x8b\x1c\xbf\x2d\xb8\x6b\x69\x15\xf4\x66\x36\xe6\xc8\ \xa5\x0a\xca\x93\xa8\xc3\xe3\xe9\x26\x58\xc2\xa7\x05\xeb\xd0\x34\ \x82\x95\x9f\xc1\x67\x65\x65\xc4\x73\x5a\x6d\x23\x2c\xcd\x86\x09\ \x8a\x06\x4b\x70\x68\xa1\x0e\x35\xf7\x47\x58\x66\xab\xb4\xf2\x67\ \xea\xe6\x2a\xe3\x9c\x37\xfb\xe2\x1f\x44\x95\xf0\xb7\x34\x3c\x51\ \x0a\x4c\xfa\x3f\xa2\x4a\xfa\x5c\xb5\xb1\x25\xd2\x35\xe9\x0b\xf7\ \x9e\xfc\xa7\x3c\xcb\x56\x1c\x73\x12\xd5\x3a\x87\x99\xef\xa1\xd9\ \x53\x18\xb0\xa8\xa1\x38\x63\x89\xfc\x74\x7a\x0a\xb3\x53\x9a\x32\ \x0b\x98\x1a\x93\xd1\x34\x07\x9f\x1f\x44\x2d\x90\x37\xc3\xc1\x84\ \x21\xd6\x47\xfe\x04\x8f\x32\xd5\x95\x2a\xe4\x2a\xc3\x97\xcb\x1b\ \x78\x2e\x6e\x01\xff\xe0\x64\xef\x0d\x26\x76\x78\xc6\xd2\xac\xb8\ \xa5\x6d\x4f\x90\xda\x02\xcc\x82\x09\xd8\x33\x71\xc9\xcc\xd6\xc6\ \x23\x04\xab\x82\x4f\xef\x78\xdb\xf7\x93\x28\x7f\xbd\x22\x66\xdc\ \xcd\x02\x58\xa9\xea\x36\xbc\x45\x05\xce\x9b\xb8\x10\x67\x68\x31\ \xa5\x04\x29\x55\x9b\x39\x86\x7a\x7a\xd5\xd3\x28\xca\x66\xe3\x04\ \x16\x52\x99\x22\xb3\x33\xbb\x1d\x3a\x2c\xdf\xb0\xbc\x20\xb7\xb6\ \x44\xd2\xe7\x2a\xe0\x9d\xfa\xf6\x15\xaa\xba\x8c\x66\xa6\x84\x4c\ \x51\x08\xf1\x3a\xa5\x09\xc5\x75\x46\x27\x50\x3d\x13\xc3\xa5\xc5\ \x15\xb2\x15\x33\x8d\x5c\x85\x2c\x99\x0f\x4f\x9e\x9a\x25\x5c\xa4\ \x2e\xc1\xfe\xa9\x30\x4b\x79\xf4\xc1\xdf\x67\xe8\x45\x26\x43\x79\ \x0b\xe8\x7f\x4a\x91\x87\x71\x9b\xce\x8c\x6f\x2d\x80\x56\xe5\x5b\ \xde\x41\xf7\x91\xac\xe6\xc4\x26\xc6\x38\x18\x7e\xf5\x05\x71\x17\ \x6e\x2f\x92\x1a\x7a\xa5\x54\x53\xba\x2b\xf7\x9c\x8b\x0a\x64\x32\ \x7d\x0c\xb6\x93\x20\xb4\x91\xe5\x99\xfc\x3a\xc3\x44\x26\xd3\x2f\ \xaf\xc1\xbe\xa9\x8c\xc1\x2a\xca\xd5\xbb\x13\xb9\x48\x55\xc0\x52\ \x34\x15\x06\xa4\xe5\x32\x02\xf6\x7f\x85\xed\xa4\xd9\x94\x99\x71\ \xd1\xb2\xe8\x57\xd0\xf4\x5f\xb1\x6e\x06\xd7\x70\xb8\xbe\xed\x06\ \x03\x6b\xe6\x1f\x9b\x13\xd6\x4b\x63\xb4\xfc\x2d\x6f\xfb\xcb\xbe\ \xc7\x23\x96\x16\xf0\x65\x49\x08\x3f\xfc\x30\x79\xca\xe0\x3d\x90\ \xc6\x20\xdb\xe7\xb1\xfd\x61\xb7\x01\xdc\x87\xf6\x0c\x61\x96\xb4\ \x70\xc0\x8a\x20\x9e\x60\x1f\x14\x04\x91\xfb\xc5\x43\x3b\x18\x15\ \x73\xa6\x64\x2e\x00\x53\x27\x31\x19\x4b\xfd\x19\x95\xf7\xf0\x36\ \x97\x86\x94\x0c\x08\xac\xf2\x0b\x38\x4e\x3d\x0f\x9e\x04\xce\x14\ \x53\x5b\xff\xe8\xb5\xa1\x41\x35\xb9\x64\xcf\x25\x60\x30\x7c\x09\ \xc2\x88\xba\xcc\x87\x35\x35\x94\xe3\x39\xb0\x14\xdc\xe6\x51\x47\ \x35\xf5\x74\xa6\x0c\x6f\x32\x19\x9f\x55\x27\x1f\xc0\x65\xae\xc3\ \xf8\x6d\x77\x48\x39\x2c\x06\x8a\xbe\x74\x04\x17\x6f\x65\x25\x17\ \x60\x4c\x61\x98\x8c\xf9\x47\x59\x81\x58\x0a\x18\x66\xc2\x31\x32\ \xcf\xe9\xa3\xd2\x0c\xf0\x14\xe1\xfd\x15\xf3\xb4\x1a\xb6\x19\xdf\ \x64\xdb\x67\x95\x04\xcf\x00\x31\x76\x68\xa2\x01\x1d\xd3\xfd\x9a\ \x3f\x21\x10\x87\x2a\x0d\x36\x01\xbd\x7d\x80\x09\xf0\x03\xe0\xcc\ \x2a\xeb\xa2\x4f\xf0\x0a\x0a\x84\x2b\x08\x6d\x2a\x8d\x2b\x32\x60\ \xe9\xec\x51\x51\xd9\xcc\x9b\x82\x79\xba\x2e\x0a\x26\xa9\xd9\x95\ \x87\x65\x74\x5c\x99\x2c\x31\x9c\x2f\x7a\x52\x5d\x1f\xdc\x9c\xad\ \xa0\x34\x1d\x09\xdc\x95\x01\xf3\xa3\x1b\x1a\xef\xa4\x12\xb0\xcf\ \x36\xba\x87\x8e\x4b\xcf\x2b\xf9\x22\x1d\x2f\x32\x7e\x85\x68\xe1\ \xfc\xe1\xf9\x4a\xd4\x4f\xdf\x6c\x6d\x8b\x6b\x26\x13\x0d\xb5\x17\ \x8f\xd2\x36\xba\x59\x92\xa6\xf1\x26\xa4\xce\x80\x1e\xd6\xdf\x0f\ \x86\xd1\xdd\xa1\x22\xcb\x1a\x1d\xee\x47\xfc\x72\xbc\xf9\x2c\x1e\ \x08\x58\xbc\xe1\xfd\xd3\x17\x03\x10\x4a\x37\xfe\xd6\x8a\x3f\xfb\ \x2c\x47\x97\x46\x77\x88\xae\x12\x5b\x08\xc7\x94\xb8\x3d\xa3\x32\ \x55\xb6\x0d\x05\x53\xac\x71\x71\xcc\x44\x3a\xe2\x87\x5c\xab\xc0\ \x22\x6b\x6b\x6b\xff\x74\xbb\xd4\x14\xa5\x60\x2c\x38\x91\x17\x8b\ \x26\x2d\xbe\x5a\x94\xe1\xa0\x66\xe4\xa1\xc2\xc7\x39\xcb\x84\x89\ \xc6\x25\xcb\x88\x2d\x76\x07\x28\x31\xe0\x26\xf1\xbc\x40\x33\xbd\ \xc1\xa0\xb6\xe8\xe4\xa2\xe3\x1d\xf6\xa1\x1a\xfd\x2f\x40\x50\x05\ \x71\x8c\x31\xd8\x25\x3c\x3d\xdc\x3a\xf5\x1a\xe1\xc3\x42\xdd\xba\ \x80\x6a\x14\xb5\xed\x90\xa9\x55\xe7\xf7\x1e\x59\x4d\x1c\x0e\x8a\ \x81\x12\x40\xc9\xc0\x2d\xa1\xf7\x1c\x2b\xfe\xf4\x0d\xca\x2b\xd5\ \x92\x83\x50\x7e\x05\x00\x3c\x76\xbc\x9b\x73\x04\x8a\x46\x5c\xb7\ \x00\xb4\xaa\x9f\xba\xb3\x8a\xf1\xcd\x03\x13\x6e\x44\x91\x17\x0c\ \x55\xfd\x4e\xfd\x57\xcd\x5d\xe2\x24\x03\x5a\x74\x30\x28\x83\x49\ \x56\xc1\x22\xe2\xa4\xea\xba\x59\x27\x3d\x8e\x8a\x7f\x6d\x33\x71\ \x4c\x2c\xc8\x8c\x40\x9e\xd9\x17\xd0\xa3\x38\x65\x18\x50\x39\x6f\ \xf8\xdd\xde\x51\x01\xbb\x11\x4d\x03\xb2\x63\x78\xb4\xd2\x96\x35\ \x8d\x5e\xdb\x00\xb3\x7b\x3d\x27\x92\x70\x45\x85\x31\x02\x05\xb7\ \x2e\x03\x34\x18\xe5\xdb\xf4\xe8\x97\xe3\xcc\x24\x0b\x08\xe7\x43\ \x52\x05\xd5\x86\xfc\xca\x0f\xaa\x68\x20\xc9\x80\x67\x23\x15\xa1\ \x87\x3e\xdc\x3d\x90\x33\x08\x94\x5e\xe5\xaa\x12\x71\x01\xce\x56\ \x95\x43\x2b\xdb\x40\xdd\x40\xfb\x38\x67\xb8\x7e\x45\x25\x19\x32\ \x8e\xbd\x0b\x66\x22\x94\x0c\xce\xc6\x08\xdf\x1b\x34\x51\xc9\x18\ \xc5\x15\xf5\xb6\x8c\xa9\x6c\xf7\xe0\xb6\x17\xaa\x0c\x68\x03\x14\ \xd0\x52\xe0\xba\xfb\x0f\x82\xa5\x9b\xc6\x54\x28\x20\xd7\x99\x24\ \x2c\x5a\x43\x72\x6c\xe9\xce\x0a\x7e\x2c\x01\x0f\x87\xc5\x2c\xd7\ \x4b\xa9\xd8\xea\xf6\x0a\x67\xa0\xb8\xe7\x0d\x7a\xc9\x9b\x57\x1d\ \x15\xa8\xef\xe8\xf5\xa4\x21\x02\xbc\x8b\x76\x42\xaa\x02\xb5\xea\ \x6a\x5e\x12\xb7\x23\x58\x08\x66\x0f\xcc\x86\x85\xa2\x65\xb5\xf9\ \x50\x4d\x85\x9e\x78\xc4\x74\xa1\x0d\x55\x8f\x93\x51\xb1\x31\x02\ \xe8\xbc\x0c\x25\x27\xd2\x9e\x3f\xb5\xf0\xa3\x9f\x31\x60\x08\x2a\ \xe4\x68\xba\x99\x48\x6a\xfc\xa0\xd4\x63\x48\x18\xc4\x0c\xe9\xc0\ \x52\xb8\xdf\x20\x98\x7b\xfa\x14\x09\x6b\xb8\x54\x97\x16\x35\x76\ \xe3\x03\xa6\x57\xfa\x97\xff\x0f\x8b\x8f\x0d\x21\xd5\xee\xff\x67\ \x42\xaa\x49\xe5\x49\x63\x65\xe5\xcd\x46\x40\xb5\xdb\xff\x8a\x90\ \x6a\x0c\xa6\x06\x6c\x6f\x8d\x81\xc4\x38\x4f\x0f\xc8\x5e\x0c\x73\ \x0e\xd6\xb3\x88\x5e\x17\xfa\xc5\x5d\x65\xce\x0f\xda\x7e\xcd\xdc\ \xb9\xd1\x48\xa8\xe0\xd1\x6e\x13\x44\xaa\x08\xfd\x05\xa8\x9d\x9b\ \x7c\xcf\xa2\x64\x68\x18\x1e\x14\xdf\x5d\x49\x18\xa3\x9c\x75\x44\ \x51\x11\xa2\x7a\x06\x3c\x9a\x43\x75\x98\xe2\x65\x40\x6f\xbf\x67\ \xf8\xc5\x72\x2b\x06\x92\x72\x29\x77\x63\x6a\x6e\xdf\xec\xc2\xa8\ \x51\xf7\x06\xe2\x85\x09\x09\x8d\x19\x3b\xba\xae\x21\x11\x24\x0c\ \x2c\x74\x50\x56\x67\x38\x99\xed\xaa\x9e\xac\x06\xb7\xe9\x9c\x33\ \xe4\x15\x94\xe1\x97\x89\x78\xb9\x63\x14\x16\x6b\x4f\x39\x3e\xa3\ \x32\xb3\xdc\xaa\x4d\xa0\x1c\x82\x1c\x88\x34\x6e\x37\xf2\x40\x34\ \x00\x39\x75\x00\x11\xf9\xae\xad\x6d\x7e\x02\x72\x03\x69\xd9\x6c\ \x7d\xdb\x22\x2a\x4d\x51\x53\x57\xc7\xbc\x27\x86\x72\x98\x8d\xa2\ \x3f\x71\x00\x48\xf4\x67\x83\x9c\xeb\xe8\x8d\x3d\xf5\x1b\xe2\x44\ \x73\x6b\xf8\xc9\xb9\x66\x16\x47\xae\x86\x31\x70\xd9\x36\xcf\xd1\ \xb9\xc3\x76\x59\xd7\x90\x4f\x70\x37\xad\xfa\x47\xe7\x6c\xb3\xc9\ \x80\x61\x05\x36\x42\x6d\x1b\xf1\x77\x4c\x5e\x7b\x38\x2c\xa7\xad\ \xd3\x8b\x91\x75\x2c\xd8\xb7\x96\xac\xff\x87\xf3\xf9\x33\x28\xd3\ \xf2\x8e\xf9\x06\x4a\xf4\x9d\x45\x95\xbf\x5c\x18\x36\x87\xc9\xc8\ \x2a\xe1\x5f\xd7\x86\x64\xd4\x47\xaf\x8d\x59\xa5\xe7\xbf\xc4\x15\ \x7d\xa9\x44\xdc\x90\xdd\x2b\x8c\x8c\x74\x9e\x62\x3d\xdc\xb5\x46\ \x73\x27\xe6\xf9\xc7\x23\xa0\xe0\xe9\x34\xd4\x3b\xbe\x61\x89\xaf\ \x77\xc9\xd4\x3c\x41\x79\xe3\x71\xb3\x4f\x29\x06\x3f\x89\x56\x1b\ \x95\xbb\xaa\xcc\xfa\xf1\x3f\x2c\xac\xfb\xd9\x10\x25\xa4\xb1\xd3\ \xaa\x97\xa7\x94\x28\xf1\xbc\x2b\xe4\x15\x15\x33\xcb\x44\x1a\x20\ \xe3\xf3\x88\xfb\x7a\xad\xe1\x19\x95\x17\x32\x0d\xed\x46\x04\x77\ \x31\xf2\xca\x83\x97\xbd\xcb\x3f\x77\xd8\x5d\x51\x1b\xc4\xc8\x60\ \xec\xee\xd0\xd8\x53\xea\x9b\x62\xb1\x77\x99\x84\xbd\xe6\x3e\xb5\ \x47\x3f\x90\x26\xa8\xb6\x9d\xc5\x4a\xe8\xc3\x00\xaa\x72\x18\xfd\ \xf1\x38\x46\xa6\x4c\xcf\x6c\x1b\x5f\xc0\x34\x15\x4f\x0e\xb1\x6d\ \x33\x66\x4a\xfb\x62\xde\xc0\xc6\x71\x96\x05\xc6\xc9\x58\x2d\xdf\ \xac\x7c\x0f\x42\x52\x29\xc3\xd8\xf9\xa9\x2d\x09\x5d\xaa\x46\x31\ \x6d\xb6\x7c\x1d\x0e\xcf\x4d\xa3\x19\xb8\x19\xe5\x9f\xad\x48\xd2\ \x4d\x8d\x4f\xac\x44\x7c\x19\xb8\xa5\x8c\x08\x20\x9b\xaa\xd2\xa9\ \x95\x77\x83\x82\x85\x07\xb4\x3a\x73\x8b\x56\x9a\xba\x2c\x51\x6c\ \x77\x05\xae\x11\x79\x20\x0f\xcc\x77\xd1\x89\x98\x93\x90\xbe\x96\ \x9c\x4c\x85\xe5\xf0\x1b\x14\x1b\xd0\x4e\x54\xc6\x19\xd2\xb1\x3f\ \x9c\x68\xa2\x31\xce\x25\x37\xa6\x85\x60\x18\x70\x22\x49\xc1\xfd\ \x84\xec\x44\x15\x83\x81\x72\x45\xdb\xf0\xa3\xdf\x50\x40\xec\xa0\ \x71\x5c\x03\xd4\x8a\xd5\x88\x10\xbb\xe8\xe0\xf5\x9e\x07\x6c\x6b\ \xce\xee\x33\xe3\xf0\x6f\x43\xe4\xa5\x45\x13\xc7\x74\x69\xa2\x89\ \xc6\x97\x7f\x5b\xd2\xaf\x76\xc8\x81\x85\x8e\xb6\xe5\x0f\x18\x46\ \xf4\xcb\xa3\x6d\x0c\x71\x84\xf3\x37\xa5\xd8\x40\x6f\x48\x98\xea\ \x6d\x56\xb6\x5b\xfa\xb7\x45\xa4\x54\x6d\x32\xa3\xd2\xf3\x30\x66\ \x3c\xa6\x80\x23\x8a\x3e\x52\x35\x9b\x6c\x9d\xdc\xb9\x86\x9b\x48\ \x6e\xe1\x0f\x9c\x09\x16\xb9\x3c\x99\x7d\x0c\xa2\x36\x97\x31\x4a\ \x1a\xa0\x2d\x30\xd2\x25\x79\xbb\x3b\x28\x11\x66\xb3\x2e\x17\x96\ \x42\x71\x31\xf6\x31\x75\x1f\x25\xe1\x80\x06\x18\x94\x98\xc3\x2f\ \xd0\xf0\x6f\x43\xa4\x20\x78\x1c\x4e\xa8\xe2\xdd\xf3\x05\x9a\x39\ \x6e\x8c\x59\xf1\x0c\x86\x3a\x84\xbd\xb6\x55\x37\x9b\x2f\x10\x8a\ \x38\x86\x01\x46\x89\x39\x7c\x29\x3a\x21\x19\x96\xa9\x59\xb5\xb0\ \x70\x5a\x82\x3c\xa5\xbe\x0d\x71\x5a\xa0\x6b\xfe\x30\x04\x2b\x26\ \xd3\x81\x04\x19\x86\xe6\x46\x40\xd1\xdd\xf9\x29\x2c\x33\x0a\xd8\ \x47\x53\x5b\x45\x53\x09\xc2\xed\x0f\x44\x6b\x60\xfb\x2c\xdc\x87\ \x5d\x92\xff\x8c\x93\x95\x52\x72\xa3\xd6\x87\xa9\xe2\x57\x0a\x28\ \x99\xed\x47\xe4\xf9\x4e\x98\xce\x1d\x2e\x6d\x13\x6e\x99\x8c\x72\ \x4d\x7c\x1d\x4f\xfa\x1a\x9e\xf5\xfe\xc4\x71\xeb\x7f\x48\x50\x20\ \x14\xac\xea\xaa\x5c\xf6\x9d\x9b\xe3\xe4\x02\x0f\x12\x6d\x4c\x85\ \x16\xe1\xb6\xff\xbe\x61\xf4\x08\x9f\xa0\xc2\x9b\xc1\x26\xaf\xf4\ \x99\x8b\x02\xa2\xde\x04\x4f\x03\xde\xf4\xc3\x2f\x50\x36\x7d\x73\ \x68\xd6\x06\xb8\x65\x4e\x99\xdc\x43\x48\x35\x4e\x1c\xb7\xc6\xb6\ \x04\x1d\xef\x04\x96\xfe\xb2\xd2\xda\x7c\x97\x43\xc1\x04\x58\x37\ \xa8\x55\x83\xf5\x5e\x47\x85\xc7\x8d\x43\xcb\xb3\x88\xa8\xe8\x6a\ \x8c\x90\xf0\x01\x44\x2d\xff\x6b\x47\x74\x30\x2a\xa6\xdf\xa0\x23\ \x4c\x01\xa2\xc7\x36\x2a\xeb\x4d\xd5\x4a\x9e\xb3\x2d\xe2\x98\x70\ \x96\x30\x1e\x45\x44\x68\x3f\x2a\xc9\x8c\x74\xa9\xd5\x8c\x53\x7c\ \x0f\x57\x32\xbe\x72\xb4\x63\xc0\x99\xc2\x22\xad\x98\x98\x41\x0b\ \x05\x95\x07\x3d\xe1\xa7\x19\xc5\x31\x9b\x0b\x3c\xd0\x27\x75\xcb\ \x55\xdf\x18\x76\x4b\xcf\xe9\x4a\x9e\xe7\x08\x2d\x1a\x35\x46\xbf\ \xa5\xa4\x50\xc3\x2f\x5a\xf8\xea\x09\xad\x57\x0f\x28\x54\xe4\xf2\ \x49\x2b\xca\x2a\x4e\x89\x5f\x2f\x8c\x7e\xc5\xbb\x86\xab\x78\xb6\ \xa0\x1c\x66\xb1\x43\x58\xf4\x70\x54\x6c\x8e\x90\x54\xf6\x67\x44\ \x9f\x98\x6b\x0d\x3d\x91\x7f\xce\xca\x33\xd9\x62\xfe\x54\xa8\x43\ \xa9\x82\x1b\x32\x6b\xfb\x79\x05\x54\x26\x16\x4a\x7a\x0a\xcd\x7c\ \xec\x8a\x0a\xec\xd0\x82\xaa\x2b\x5a\x88\x21\xae\x0c\x59\x20\x12\ \xe1\x54\xd3\x52\xc2\x07\xea\xf0\x20\x2e\x37\x13\xc6\x2e\xc6\x6d\ \xf3\x40\xc6\xeb\xf4\x02\xcd\x0c\xb7\xf0\x07\x68\x31\xfa\x06\xb2\ \xc6\xb5\x0b\xef\xb8\xd9\x04\x71\x09\xd0\x34\x8e\x2a\xe2\xee\xa8\ \xa8\x0d\xc0\xe8\x0e\x23\x74\x96\xa6\x69\x31\x5d\x61\x41\xac\xef\ \x4f\xb5\x84\xcd\x61\xf2\xb9\x22\x6e\x44\xc5\x1c\xdc\xf0\xc7\x2e\ \x26\xac\x44\xc3\xec\x9e\x6b\xaa\x99\xe0\xa6\x87\x39\x00\x47\x06\ \xe4\x03\x08\xd4\x6f\x4f\x57\x22\x73\x04\x6b\x94\x71\x4a\xd0\x3b\ \xfb\x51\x22\x0e\x98\x3f\x75\x80\x2c\x08\x38\xaf\xba\xa0\xc0\x82\ \x9c\x19\x9e\xb2\xed\x6d\xb9\x70\xee\x06\x19\xc1\xcd\x8c\x3f\x70\ \x6e\x2d\x08\x35\x4f\x45\xdc\x44\x70\x43\x57\x4f\xef\x02\xce\x90\ \x15\x36\xd5\xbe\x4b\x8d\xf1\xdb\x20\xb7\x67\xc8\x5c\xfc\xef\x9d\ \x56\x72\xb4\xa7\x1f\x98\x7e\x2c\x8b\x91\x13\xa6\xc6\x70\xce\x90\ \x30\x62\x8d\x73\x1a\x52\x53\x92\xd9\xf7\x61\x93\xc3\x47\x64\x52\ \x5a\x9e\xb9\x76\xa6\xb7\xd5\x3f\x68\x44\xe8\xb5\x43\x29\x4e\x7d\ \xbf\x61\xf6\xc8\x4d\x31\x31\x20\x61\xea\x49\x29\x37\x5c\xbc\x41\ \x24\x46\x09\x1e\xc0\xd9\xca\xdb\xdb\x58\x19\xfa\x00\x10\x03\x95\ \xf7\xc3\x61\x42\x71\x2c\x65\x68\x02\x35\x77\x69\x77\x5e\x88\xf4\ \xef\x42\x73\xa2\xb7\x41\x86\x43\xeb\xd0\x79\x86\x93\x90\xee\x76\ \x5f\x20\x1d\x15\x8f\xf7\x8f\x2b\xcd\xa4\xfc\xdc\x3d\x9d\x84\x51\ \xe8\x6b\xc8\x2a\xf0\x3e\xa3\xdc\xe9\x45\x2f\xa6\xf1\x81\xee\x3c\ \x9a\x13\x87\x79\x28\x8a\x06\xef\xb2\xbe\x16\xdd\x1b\xee\xb8\x4e\ \xc6\xc4\xc8\x8f\x33\xbf\x0d\xbc\x70\x43\x1e\x33\x91\x9e\x2f\x41\ \xc2\xdd\xb3\xc2\x78\xb1\xc0\x61\x63\xac\x17\x6f\x2a\x24\x9a\x30\ \xf4\x13\xd8\x66\x52\xcf\x2c\xce\x4a\x8f\xba\x73\xa8\xbd\x21\xcb\ \xdf\xcf\xe1\xaf\xc6\x0d\x32\x7e\x5b\x2e\xe6\x2b\x54\xd1\x8b\x25\ \xc1\x3d\xce\xca\xec\x94\x16\xd9\xa7\xb1\x9d\xca\x78\x8d\x87\xb4\ \x2f\xa4\x8a\x51\x1c\x86\x68\x5d\xe7\x41\x89\xb3\x5e\xbd\x61\xf9\ \x43\xd7\x3c\xd7\xc0\xec\x33\xc6\x95\x60\x1b\x3c\x14\x12\x0b\xd3\ \x7d\x0c\xa5\xcf\x29\x7d\x8c\xc3\x52\x01\x00\xeb\x11\x6c\x0c\xf8\ \x1d\x0a\x01\xb1\x3c\xf1\x57\x13\xbf\xad\xa3\x5a\x9d\x01\x55\xe0\ \x5b\x05\x6a\x7a\xf7\xa8\x40\x31\x47\x37\x5e\xb9\xcc\x15\xd2\xcb\ \x2d\xde\xd0\x79\x6c\x55\xd4\x36\xb6\xda\x6e\x59\xef\xf3\x60\xa2\ \x65\x00\x2d\xef\x32\x35\x38\x79\x54\xa0\xb7\x05\xf8\x0e\x20\x9e\ \x0a\x63\x76\xff\xbc\x40\xf5\x0d\x4a\x0b\x94\xb6\xf4\xaa\x8c\xaa\ \xea\x2f\xca\x64\x2d\x98\xac\x6c\x82\x65\xed\xdd\xbd\x0b\xd2\x57\ \x94\xeb\x90\xb0\x35\x0f\xdc\xd5\x51\x81\x65\xcc\x5c\x57\xe9\x28\ \xe4\xc3\xba\xef\x11\x7e\x5b\xfd\x43\x4a\x3c\x06\x34\x88\x3d\x72\ \x0a\xf9\x79\x83\x5e\x95\x6d\x4b\x70\x5d\x91\xe7\x87\x38\xfe\xc3\ \x8a\xd9\x04\x1f\x3b\x69\x0a\x1a\xdb\x67\xbc\xef\x91\xb9\x37\x40\ \x8d\x27\x0d\xaf\x0c\x9b\x2d\x94\xfa\x5d\x05\x00\x68\x3c\xec\x93\ \x16\xab\xe9\x40\x3a\x13\x1a\xef\xaa\x3e\x2a\x6a\x2f\xcf\xf1\x64\ \x9d\xe7\x08\x8c\xef\x2a\xf2\xc8\xb6\xfb\xd8\x77\x93\xc8\x66\x2e\ \xd9\xf9\xc9\xf1\x44\xbd\xcb\x15\x24\x1d\xcc\xa0\xb4\xe0\xcc\x80\ \x13\xe1\x6a\x92\x9d\x8a\x21\x05\x00\xdb\xbb\xab\xcc\x3b\x17\x95\ \x66\x08\xe0\x5e\xcd\xb7\xcf\x9b\x64\xff\x53\xf6\x3d\xbe\x6c\xd2\ \x40\x0b\x53\xe9\x65\xba\xd6\xcb\x3f\x6c\xb7\xdc\xb7\x5a\xa5\x65\ \x30\x9d\xa5\xdd\x9a\xbb\x20\xbb\xe0\x09\xa3\x22\xd2\xe3\xb2\x86\ \x43\x86\x1d\x51\xa5\x12\x6c\x3d\x7f\x3a\x28\x20\x80\xab\xc9\x18\ \xc1\x16\x1b\xc2\xd8\xcf\xa0\xc4\x39\xad\x64\xb4\x68\xa9\x55\x3c\ \x5a\x9a\x6e\x7b\xe4\x94\x6c\xa7\x04\x2a\x1c\xe8\x95\xfe\xe7\x5e\ \xbc\x57\xab\x9d\x3b\x82\x94\x64\xf4\x55\x13\x94\x3c\xed\x00\x58\ \x24\xf3\x30\x3b\x5c\xee\x37\x83\x23\x54\xe6\x7c\x50\x9c\x2d\xdf\ \x86\x07\x84\x3e\xce\xe4\x36\x36\xef\x05\x50\x7f\xc5\xc1\xc5\x8d\ \x95\xc3\x2e\x4a\xa3\x31\x19\x09\xb9\x20\x8d\x90\x3e\x9a\xa1\xce\ \xf4\x92\x9c\x21\xd5\xfa\x25\xcb\x30\x85\x05\xf0\x17\xd8\x0e\x7d\ \x97\xa8\x6a\x1c\x9e\xc4\x99\x53\x1a\x24\x25\xa4\xc9\xf4\xca\x96\ \x36\x3c\x80\xf3\x37\x2a\x33\x99\x98\x5b\x93\x30\x6e\x77\xc0\xb0\ \xfc\x0f\x62\x53\xa0\x11\x3a\xd6\x79\x98\x0e\xdc\x02\x42\x68\xfb\ \xa9\xaa\xcd\x28\x9f\x00\xc1\x5d\x0e\xf8\xab\xa7\xda\xc4\x5d\x0e\ \x96\xc6\x61\x19\xc8\xd8\x18\x23\xa0\xb5\xcc\x48\x00\x8c\x93\x2e\ \xc7\x94\x56\xa6\xca\xd6\x80\xff\x19\xea\x55\x32\x85\xd7\xfa\xc3\ \x86\x19\x2b\xa3\x6c\x52\x53\xc1\x58\x13\x57\xb2\x2d\xf6\x4c\x07\ \xe4\x1b\x72\x4d\x0b\x2d\x6f\xb4\x4f\xd8\x6d\xc3\x51\x34\xd9\x87\ \xc3\x00\xc6\x6e\x63\x04\xa7\x5a\xd5\x2c\xb6\xf4\xdd\xb7\xf8\x84\ \x75\xf6\x39\xd9\x46\xb0\x37\xce\xb1\xb6\x03\x42\xf1\x03\x87\x0b\ \x34\x93\x89\xed\x26\x33\x5a\xbc\x27\x4e\xfa\xf3\x13\xdb\x31\x55\ \xae\x98\x03\xad\xd2\x4a\xb5\x8e\xa0\xfa\x31\xb3\xea\x87\x51\x4e\ \x1d\xe8\x57\xe0\x7d\x46\x46\x8e\x45\x55\xb3\x1b\xf1\x4f\x50\x66\ \xba\x85\x8b\xf8\xa9\x52\x5d\x80\x15\x70\xdb\xa3\x95\x0c\xc6\x8b\ \x2c\x76\x3d\x23\xee\x66\xcc\xa2\xed\x44\xc1\x8b\xfe\x32\x8a\xde\ \x8b\xa0\xa8\xc6\xa1\x8e\x54\x49\xd3\x74\xc1\xcf\x0d\x27\xaf\xa0\ \x24\x93\x00\x45\xf8\x44\x5f\x15\xab\xc9\x21\x23\xf2\x4d\xb5\x7d\ \xf6\x92\x80\xd2\x5c\xe8\x0d\x19\xde\xc5\x7d\x4f\x57\xf4\x22\x00\ \x1a\xb2\x6b\x43\x47\x25\xde\xc4\x36\x78\xaa\xca\xe4\x8c\xbe\xf4\ \x05\x2c\x38\x28\xfe\xcf\xdc\x56\x75\x7d\xba\x5a\x34\xd5\x80\xa7\ \x83\x42\xa6\x6d\xad\xe2\xbd\x8c\xc3\x0a\xe3\xbe\x27\x5b\x69\x26\ \xb6\xa1\x43\x5f\x71\xfe\xa5\x2b\x83\x03\xf2\x03\x9a\xa7\xb1\xdf\ \x2a\xd0\x1f\x55\xf6\xb7\x7c\xaf\xc7\x50\xa0\xa7\xb6\x85\xc8\x45\ \x9f\xb5\x7a\x96\x11\xb8\x42\x6a\x84\x23\x76\x69\x67\x9e\x7b\x7f\ \x3a\x8a\xbb\xca\xe5\x45\x5f\x3b\x83\x16\x1d\xc9\xfe\x64\x5b\x4c\ \xc4\xb6\xf2\x87\x0e\x65\xf1\x56\x47\xc0\x98\xfd\x41\xe2\x03\xb8\ \x59\x47\x11\x14\x1b\x82\xfa\x51\xdc\x8d\xfc\xb4\xca\x9f\xd4\xb6\ \xb5\x2f\xee\x0f\x7d\x36\x40\x3a\x3d\xea\xd0\xb2\x0f\x66\x5a\x0b\ \x8a\x5a\x10\x6a\x15\x94\x53\x51\x28\x48\xec\x79\xdd\xb3\xd8\x4f\ \xd3\x27\x02\x69\xa9\x34\x8b\xc6\x04\x22\xdf\xc5\xed\x6b\xcb\x56\ \xdc\x2d\xd5\x78\xeb\x98\x78\xd3\x21\xbe\xb1\xe2\x98\x35\x23\xc0\ \x72\xd9\x97\xae\x90\x5f\x81\x09\x2f\xcb\x20\x86\xb6\x31\x9c\x7d\ \x96\x93\x5d\x95\x3f\xde\x11\x7c\x16\xf1\xde\x2c\xa5\x3e\x54\x72\ \xd2\xcb\x27\xcd\x3c\x73\xc8\x82\xdd\x98\xd8\x75\xf7\x59\xc6\xe6\ \x1d\x32\x3f\x83\xc6\x82\x23\xe6\x5d\xac\x20\xac\xa5\x2a\x48\x87\ \x65\x24\x96\xd5\x0d\xc2\x7d\x38\x51\x59\xe3\x2f\x7a\x98\xaf\x94\ \xf8\xe9\x2b\x18\x27\xf5\x85\x94\xdc\xc1\x96\x2b\xfa\x3b\xca\x37\ \x2a\x33\x8d\x58\x77\x3e\xa9\xe4\x2a\xea\x54\xe0\x5a\xfd\x50\xee\ \x63\xb5\x66\x4f\x2f\x62\xaa\xa1\xde\x9d\x21\xd2\xc2\x30\x06\x98\ \xd7\xba\xc1\xca\x7c\x6b\x96\x3a\x94\x7a\x92\x02\x57\x90\xcc\x3f\ \x7c\x85\x60\x5b\x24\x1d\x13\x96\x17\x9d\xcd\x5d\x2a\xee\x79\x83\ \xa6\x6c\x5b\xff\x74\x72\x13\xba\x95\x0e\xf3\xdd\xb6\x2f\xda\x90\ \xfe\x5a\x82\x97\x03\x12\x6f\xd0\xac\xaf\x31\x1c\x3f\x69\x22\x30\ \xb0\xac\x7d\x5d\xf5\xcb\x0a\x67\xc0\xbe\xbb\x8e\x5f\x74\x76\x38\ \x99\xf0\x49\x03\x51\xca\x5f\xe2\x81\x67\x02\x98\x0f\xcf\xb0\xbc\ \x34\xc9\x4c\x30\x32\xa8\xea\x32\xee\xb3\xff\xc1\x6e\x1d\x3f\x2f\ \xf8\x1d\x88\xdb\xb6\x9b\x73\xde\xff\xe0\x5c\x83\xd3\x81\x73\x57\ \x57\x56\x9d\xd1\x4c\xc3\xb8\xc6\x95\x7a\x3f\x1e\xd6\x99\x52\xc3\ \x6b\xaf\x3f\x44\x78\x87\xb6\x11\x37\xf5\xb1\xf5\x48\x13\xb9\x4d\ \xad\x61\xe0\x21\x2f\xcd\xe4\x11\x6b\xb6\x15\xf3\x66\x62\x61\x4f\ \x9d\xe1\xfb\x95\x9a\x6e\x3e\xf0\x60\x98\xd0\x07\xc3\x7c\xcb\xb1\ \xae\x7d\xd2\x74\xf7\xf4\x5e\x52\xe9\x81\xf1\x38\x9c\x6e\x7d\x30\ \x15\x2c\xeb\xe6\x1b\xc7\xb1\xc4\xa7\x4f\x5a\xf2\xaf\xd2\x56\x2f\ \x04\x6f\x53\x02\x0e\x5b\xf6\x67\xb6\xe5\xcf\xa3\x55\x5d\x3a\xb2\ \x2f\x98\xf1\xdc\x4f\x33\x95\x63\xc4\x59\x5c\x5d\xb3\x8a\xbb\xf7\ \xcc\xd6\x7c\x91\x1d\x48\x0e\x5c\xbc\xf3\x69\x16\x57\xf2\x36\x46\ \x80\x10\xc9\x34\x1b\xe6\x45\x0c\xcf\x15\x73\x9a\xc9\x6d\x06\xe9\ \xc0\x77\x31\xa9\xa6\x00\xbe\xf8\x43\xc7\xdc\x95\x14\x20\x82\x82\ \xac\xea\x63\x2c\x6a\xe9\x36\xe9\xe5\xad\x36\x00\x83\xa7\xbf\x1a\ \xda\x1a\x74\x1f\xc1\x25\xe0\x40\x35\x9e\x45\x39\x25\x6f\xe6\x3d\ \x05\x20\xbc\xc3\xe7\x51\x47\xb9\xc4\x67\x54\x66\xe8\x97\xd2\x7f\ \x8d\xb8\xcc\xa9\x8d\x4c\x35\xfd\x20\x06\xa3\xf7\x2d\x50\x8c\xd5\ \x7f\x84\x6e\x8c\xc5\xa5\x5a\x84\x26\x7e\x28\xa8\xae\x94\xda\xc0\ \xcf\x61\x0b\xa6\xd3\xaa\x07\xfc\xf0\x20\x4e\x6f\x09\x83\x1f\xbc\ \x72\x90\xbe\xe5\x01\x1a\x64\xb5\x7f\x82\xf2\x76\x00\xa6\x07\x01\ \xc5\xad\xd8\x54\xf7\x8b\x9d\x44\x64\xfb\x84\x37\x4e\x43\x9e\x29\ \xdd\x68\x04\x86\x82\x24\x15\x2c\x11\xaa\x5b\x1c\x15\x5a\x25\x1d\ \x25\xa7\x8e\x99\x12\x2e\x1e\x16\x28\x48\xc1\x0d\x5e\x10\xd3\x41\ \x07\xbb\x91\x6d\xea\xf3\x06\x4d\x14\x32\x94\xbc\x11\xc1\x47\xd6\ \x55\x6d\x59\xbc\x08\x82\xbb\x92\x64\x8c\x73\x90\x46\x80\x27\x71\ \x4d\x57\x50\x7a\x41\xe3\xb6\x53\x72\xeb\x86\x2d\x00\x3d\x36\x88\ \x33\xf9\xc8\x8c\x27\x5f\x8f\x67\xd1\x93\x2a\x28\x4d\xb3\x23\xf2\ \xc8\xaa\x6e\x50\xc2\x1f\xbc\xa0\x6f\x6d\xfb\xe2\x90\x41\xfc\xea\ \x80\x90\x12\xa3\x6c\xbf\x7d\x56\xe0\xb1\x80\x20\x63\x5a\x6e\x20\ \xbb\x7b\xe4\x14\x99\x93\xb2\xdb\xb5\x81\x6c\x59\x2d\x53\xb1\xa8\ \x2f\x48\x37\xc3\xf4\x28\xe1\xec\x8e\x39\x0d\x0e\x59\x00\x7c\x85\ \xc8\x21\x99\x62\xb0\xc2\xfe\x39\x2b\x79\xfa\x9a\xa0\x9b\xf3\x2b\ \x69\x83\x80\x7f\xed\xe7\x15\x76\xda\x4a\x0a\x21\x5a\x87\xfc\xb1\ \x1e\x51\xe6\x47\xb6\x01\xa7\xce\x98\xe2\x92\x43\x06\x09\x50\x95\ \x27\x00\xe8\xc4\xae\xf3\x70\x54\x80\x23\xe8\xbc\x52\x32\x55\x96\ \xdd\xf9\x15\x94\xd7\x24\x81\x8b\x66\xfb\x6e\x1b\xc8\x98\x44\xc1\ \x6e\x11\x57\xcd\xbb\xc8\xe6\x47\x57\xff\xe5\x87\xa7\x77\xa9\xa4\ \x5c\x84\xcb\x57\xf0\x63\x6c\x82\x33\x96\x0a\x2a\xb2\xab\xc9\x37\ \x1f\x8e\x8a\xc9\x9b\x57\xbe\x9b\xe0\x33\xe2\x34\xfa\xa7\x07\xa6\ \x34\xcd\x24\x32\x7d\x97\x4a\x3e\x78\x1f\xa2\xd9\x92\x87\x91\xf2\ \xa6\x03\xa3\xc3\x4e\x1d\x48\x06\xf3\xb8\x01\x9a\xb1\x2b\xa4\x2f\ \x27\xe8\xe8\x92\x71\x6b\x58\xf8\xba\xd2\x42\xa9\xd3\x6f\x48\xd4\ \x43\xb2\x3b\x4c\x97\x4a\xd1\x14\xc9\x90\x38\xc4\x16\x45\xed\x8d\ \x5a\x9b\xf2\x4c\xb7\xb3\x57\x1a\x4b\x32\x66\x76\xac\x86\x95\x59\ \x7c\xde\x06\x24\x60\x5a\x0b\xde\x0f\x1b\x20\x1e\xc0\x0f\x0f\x73\ \x78\x10\xe2\xae\x65\x92\x99\x2b\x62\x10\xfb\x5f\xd8\x10\xc8\x7c\ \x30\x71\x3e\x1c\x96\x60\x9d\x50\x0e\xf8\x36\x57\x35\x43\xf8\x15\ \x3c\x70\x1a\x69\x66\x91\x85\x3f\x76\x23\xd9\x86\x45\xed\x76\x10\ \xdd\x9c\xdc\x92\x70\x3b\x9a\x37\x25\xb3\x5b\xba\x81\xd9\xcc\xda\ \x1a\xe0\x2e\x5c\x5b\xe3\xa2\x6d\x86\x12\x02\x6d\xb8\x5b\xb3\x82\ \x2f\xd2\xd9\x3a\x2e\x26\x66\x85\x8c\x04\xf5\x0e\x94\x8c\x78\x46\ \x7c\x50\x83\xd2\xcc\x22\xf3\x7f\x9d\xe8\x11\x0f\xe8\xd5\xc1\x6f\ \xe3\xbf\x38\x15\xba\x8f\x78\xae\x9b\x7c\x6b\xba\x47\xb7\xca\xe3\ \x64\x38\xfd\xe4\x89\xdb\xb4\x9a\xc7\x15\x93\xe6\x84\x85\x53\xf4\ \x15\x9d\x23\x62\x5e\x51\x81\x45\xe6\x4a\xaa\xbc\xfb\xdc\x8c\x32\ \xa0\x82\xff\x44\x65\x46\x24\x44\xa0\x11\x15\xd8\x08\x26\xbe\xf1\ \x07\xa0\x93\x53\xeb\xa0\xae\x17\x35\xa9\xe6\x2e\x39\xee\x81\xd7\ \x61\x65\x8b\x3a\x26\xf2\x28\xef\x69\x1c\xea\xb3\xf0\xbb\x71\x16\ \xc8\xac\xbb\x0f\xe7\xdb\x38\x24\xc9\x32\x0d\x9f\xce\x8d\x52\x9c\ \x7f\x02\x90\x53\x7c\x8f\x12\x98\x06\x25\x8e\xbe\x5e\x8b\x61\xef\ \xb9\xeb\x18\x0d\x94\x07\xa6\x47\xd2\xf5\xf5\x1f\x00\xa5\x6e\x13\ \x2a\x9d\x98\x6b\x81\xbd\x7b\xd7\xfc\x26\xb3\x1a\x6d\x78\x1c\x48\ \x6d\xe5\xec\x3e\x28\x25\xc7\xa4\x54\x7f\xb3\x9e\x03\x30\xd9\xd8\ \x3d\x8d\xaf\xec\x8e\xca\xc4\x22\x63\x7b\x84\x64\x5c\x43\xb3\xb1\ \x96\x4b\x01\x70\xaf\xb6\x75\xae\x51\xa6\x65\xb0\x16\x21\xa4\x7b\ \x18\xa7\x1f\x58\x1d\x33\x1e\x4e\x5f\x61\xd5\xe9\xe6\xb1\xf9\x07\ \x42\xc9\xf7\xa3\x66\xe8\x2c\x84\x3f\x25\x26\x09\xbe\xd9\x29\x0c\ \xe0\xc3\xfd\x60\x61\x7e\x73\x6d\x9a\x27\x09\x08\xf7\x7b\x00\xfc\ \x6a\x9d\x99\x82\xef\x4f\x28\x03\x25\x0f\x5a\x00\x20\x3f\x2e\xa7\ \x38\x03\xa6\x60\x6f\xd4\x1b\x5a\x12\x48\x8b\x2f\xab\x38\xae\x6e\ \x43\x29\xa7\xf8\x7c\x4e\x7c\xeb\x0a\x8a\x69\x92\x91\xe9\x13\x50\ \x94\xcc\x14\x69\x94\xd8\xdf\xa8\x4c\xb9\x96\xf1\x20\xea\xa5\x4c\ \x08\x71\x1b\xdd\x77\x17\xa7\x5e\xc9\x30\x2d\x11\x66\xcb\xfa\xc7\ \xdb\x40\x8e\x21\x2e\x55\x62\x63\xb0\xd4\x96\x83\x5b\xa5\xd7\x62\ \x9d\x75\x8e\x60\xe7\xcf\x4a\x85\xa6\x44\xae\x65\xe4\x84\xf8\x16\ \xa4\x48\x4a\x85\x47\xb9\x92\xe6\x5c\x5b\x11\x9b\x63\xf8\xae\xc3\ \x15\x07\x95\x75\x53\x25\x27\x99\x47\xb8\x7a\x87\xca\xae\xe3\x6b\ \xc1\x58\x10\xf2\xc5\xb8\x19\x50\x78\x5e\x3d\x40\xa6\xc3\xe4\xf0\ \xfa\x54\x55\x9c\xce\xf9\x03\x5c\x67\x05\xc6\x6e\xab\x68\xe1\x60\ \x5a\x0d\x13\x25\x3d\xb4\x83\x52\x7a\x41\x6d\xc1\x93\xe2\xc8\x81\ \xec\xaa\x4e\xca\x0f\x60\x75\x53\x64\x8a\xb8\x52\x32\x2d\xce\xf7\ \x0d\xc2\xa5\x13\x0f\x6d\x3c\x3c\x52\x5d\xe4\xda\x82\x16\x13\x3a\ \x87\xc5\x11\x93\x7c\xd8\xfc\x2a\x0d\x16\x59\xcc\xd6\xd7\xe8\x4b\ \xd3\x33\x39\x9c\x72\xbe\x61\x99\x58\x64\x18\xc1\xc6\xc8\x52\x0f\ \x58\x4f\xba\xa4\xd4\x36\x2b\x7e\x2c\x66\x0a\x9e\x44\xa8\xc8\x5e\ \x26\xe1\xb4\x87\x8c\xa1\x54\x63\x83\x49\x40\xaf\x73\xb9\x10\x0a\ \x26\x8f\x55\xcd\xc2\xde\x9d\x0e\x8b\x39\x53\x66\xec\x3b\x54\x8e\ \x25\xa6\x85\x43\x37\xfa\x9b\x6e\x5f\x34\xb2\x04\x20\x0e\xb3\x74\ \x95\xe9\xbe\xef\x97\x2b\xd9\x1a\x4d\x17\xa9\xd5\x20\x10\xf8\x9b\ \xb4\x0b\x48\x10\xbd\xcb\x40\xef\xd7\xda\xbb\x0f\x62\x3b\x90\x2b\ \x16\x29\x28\x04\x87\x7e\xba\x86\xcb\x46\xda\x45\x1b\x1a\xc2\x87\ \xc7\xbb\x60\x12\x96\x4d\x13\x8d\xac\xe1\xab\xc3\x4e\x8d\xc4\x02\ \x72\xeb\x07\xe3\x91\xee\x72\x30\x4c\xc1\x70\xbf\xba\xcf\x8a\x4e\ \x50\xc5\x7c\x43\x97\xca\x29\x77\x2d\x47\x09\x3c\x3e\xfa\x12\xbb\ \xaf\x06\x18\x39\x1c\x15\xd3\x47\x20\x22\xd0\x44\x75\xc9\x61\x34\ \x3f\x83\x32\xeb\x23\x44\xc4\xe3\xd0\xd7\x8e\x06\xe3\xff\x81\xf4\ \x8e\xea\x31\xee\xc3\x25\xb5\xd0\x2e\x62\x94\x39\xe6\x55\xb2\xad\ \x2a\x7e\x95\x0b\x6e\x21\x6d\x8e\x3c\x23\x22\xa3\x1d\xba\x07\x4f\ \xd1\xe1\x2d\x59\x6e\xff\xe1\xbb\xff\x06\x65\x56\x36\xb7\x7a\x56\ \x9f\x09\x65\xd9\x16\xfc\x0f\x85\x6d\xb5\x1d\x17\x5b\x4b\x5f\xef\ \x16\x10\xc0\x8e\x47\x49\x11\x82\x98\xb1\x20\x57\xa8\x52\x1d\x2b\ \x7d\x30\x5c\xf5\x3c\x83\xdd\xc3\x3b\xb2\xe2\x2e\x7f\xa2\x96\xe8\ \xd0\x48\x12\xf9\x29\x5c\x94\x66\x16\x99\xff\xc3\x9c\x9e\x38\xe2\ \x31\x1a\xc7\x46\x75\x73\x8e\x80\xac\xa6\x43\xdb\x06\x54\x53\xc9\ \xb7\x30\x33\x08\xdb\x8c\xc5\xaf\xc2\xa5\x4b\xb4\x74\xbe\x0a\xf0\ \x1d\x75\x9a\x92\x89\x85\x9e\x0e\x4b\xb0\xb7\x56\x2f\x1c\x22\xaf\ \xa0\xe2\xc0\x3b\x3d\xc3\xf2\x52\xa3\xd1\x87\x35\xe5\x08\x3f\x8c\ \x87\xb6\x4f\x0b\x70\xf5\xe4\x9c\x11\xec\x50\x9f\xf4\xf7\x30\xae\ \xb1\xcf\x50\x0f\x12\x95\xcc\xb1\x9c\x5f\x0d\xe3\xb2\x33\x99\x2b\ \xe5\xfb\xa3\xe2\x5f\x57\x58\x12\x24\x42\x44\x31\xb8\x43\xd1\xf6\ \xde\xe5\xd9\x32\x4f\x44\xb2\xaa\xc4\xc2\x97\xac\x4f\xe3\xb0\x28\ \xdb\x9f\x23\xf8\x3f\x83\xa0\x64\x24\x43\x0b\x00\xde\xfb\x0e\xb1\ \x31\xeb\xed\x5a\xbe\xaf\x9d\xb4\x29\x0e\x4c\xfa\x83\x67\xea\x78\ \x6d\x5b\xcc\xba\x07\xa1\x8e\x0e\xbd\x80\xd8\xf4\x36\x45\xa5\xbe\ \xf2\x41\x44\x77\xab\x55\x30\x7e\x03\x49\xb1\xfb\x06\x25\x48\x23\ \x1d\xf5\x69\xf3\x97\xbc\x67\x4e\xbc\xcc\x6e\x88\x6f\x32\x91\x5b\ \x4d\x57\x20\xb6\x56\x55\xe2\x48\x63\xb6\x70\xf8\x0d\x2a\x6d\x68\ \x46\x71\x56\x2b\x39\x14\x1e\xc7\xf3\x06\x2d\x04\x77\x55\x25\x80\ \x30\x44\x08\x7f\xdf\x95\x52\x09\x04\x02\xa6\x83\x88\x8a\x5c\xc8\ \x47\x06\x1f\xc6\x10\x32\x0c\xde\xb0\xbc\x0b\x76\x9d\xea\x3c\xd3\ \xaa\xe9\xb0\x41\x54\xeb\x9d\x0e\x4a\x75\xe8\x7f\x76\x0a\xda\xee\ \x4c\xeb\x8a\xc1\xd8\x7f\xff\x8b\xea\x99\x79\x64\x95\x5f\x8e\x0e\ \x13\x28\x46\x15\x13\xfe\x07\x21\x6f\x84\x0c\x8b\x1d\x3b\x88\x4f\ \x9f\x69\xb6\xf2\x16\x54\x07\xa5\x15\x70\xc8\xcb\x74\x5b\xcc\x1c\ \x8b\xdc\xa6\xeb\x93\x0f\xeb\x39\x25\xe3\x91\xa9\xe8\x80\x6a\x93\ \xa8\x9e\xd3\x7c\x81\x66\x9f\x34\x65\x5b\x4f\x76\x56\xba\x45\x5c\ \xb0\xee\xdb\x6b\xb0\x85\xf4\x88\x61\xa8\x27\x6d\x0d\xdd\xd4\xab\ \xb6\x35\xd3\x72\x0f\x64\x87\xdc\xb5\xb4\x33\xc2\x65\xa1\xa8\x5d\ \xc8\x95\xaa\xf3\xdc\x8c\xff\x8a\x0a\x44\xb2\x64\x12\xeb\x9d\xcf\ \x92\xeb\xd8\xa8\xfe\x13\x95\x97\xf6\x57\xc0\xda\x02\x3f\xe7\x08\ \x31\x30\x6f\xf7\x41\x95\x45\xbe\xfd\xd5\x98\x3a\xdd\x58\x2f\x12\ \x57\x67\x23\x02\xe9\xc7\x24\x75\x97\x79\xc5\xb4\xde\xc1\xbd\x20\ \x8c\xd2\x0e\x2f\x9a\x21\x92\x91\xde\xa2\x7a\x4f\xdc\x78\x1d\x94\ \xb2\x67\x62\xa9\x73\xb6\x65\x38\x85\xbf\x02\xda\x7f\x4a\x93\xfc\ \xea\x2d\x54\x0f\x80\x75\xdc\x69\x9c\x2a\x03\x88\xd1\xe5\xa3\xe8\ \x94\xc0\xf9\xe2\xf5\x55\xca\xad\x27\x31\xbf\xcc\x95\xf9\xbb\x52\ \x61\x31\x20\xd2\xe9\xa8\x00\x4a\x28\x31\xe1\x0a\x91\xc0\xf5\xa4\ \x34\xad\x83\x26\x1e\x19\x15\x54\x31\x9f\x07\xda\x05\x04\x84\x7e\ \x98\xda\xda\x01\x65\x6d\x61\xe9\xec\xc3\xae\x6b\x40\xbe\x95\x7d\ \xd9\xc6\xf8\xc5\x24\xc1\xff\x61\xb5\x8e\xc3\x35\x03\x6d\xd5\xa2\ \x87\xb7\x41\xcd\xc4\xbf\x54\x3f\x17\xac\xe3\x4a\x88\x26\x1e\xf2\ \x88\x4a\x9b\x0f\x2f\x05\x6d\x56\x65\x99\x91\x03\x74\x65\xfb\x0d\ \x0a\xd0\x6f\x06\x4b\x2e\xb2\x25\xf3\x1f\x2b\x16\x1c\xf5\x1a\x8b\ \xe6\x50\x6e\xfa\xf6\x54\xfe\x55\x68\xe6\x36\x64\x19\x8e\xd1\x67\ \xd3\x4a\x0b\xe6\xd9\x54\x59\xd2\x81\x76\x63\x32\x6c\x37\xe2\x1b\ \x94\xd7\x1c\x81\x67\x27\x9b\x63\x24\xd2\xa6\x3f\x1c\x15\xc4\xaa\ \x23\x6a\x59\xa0\x15\xef\xa0\x60\xdf\x64\x68\x37\x2c\xcf\x81\x9b\ \xae\xd6\xcc\x00\x5e\x3c\x8a\x11\x81\xdb\x97\x0e\x17\xfc\x2d\x61\ \x55\x06\x20\xbe\x9b\x1c\x76\xbb\xa0\x20\xff\x04\x65\xf6\xa4\x04\ \x66\x8b\xa2\x8f\xea\x9b\xa6\x6e\x64\x7b\xb8\x82\x7c\x38\xf8\x37\ \x57\x10\x39\xf0\xfd\xa3\xdf\x0a\xa9\x3e\x81\xa1\xcc\xbe\x2d\x05\ \x12\x22\x1a\x3d\xc3\xff\x37\x75\xb3\x24\x3b\x7c\x52\x40\x24\x34\ \x0f\x38\x07\x4e\x0a\x28\x9d\x09\x14\x37\xb1\xc8\xd0\x5d\xe9\x88\ \xe8\xa8\xbf\x6f\x8c\xdf\xe3\x0f\x78\x75\xeb\x2d\xb8\xb8\xba\x0b\ \x00\x5b\xaf\x54\x6b\x00\x76\x64\x21\xa0\xee\xae\xfc\xf4\x68\x82\ \xf4\xfc\xe0\x66\x94\x82\x5e\xa8\xd3\x3b\xe6\xc6\x86\x0c\x19\x82\ \xe1\xf1\x54\xcc\x0d\xf2\x19\x95\xd7\x86\x0c\x9e\x3e\x72\xd6\x6d\ \xd8\x1d\x6c\x37\x41\xca\xda\x8c\x7d\xbb\x6e\x61\xd2\xf3\x1b\x3e\ \x16\x69\x28\x41\x90\x52\x90\x39\xd4\x31\x7a\x9f\x95\x8a\xb4\x04\ \x5f\x23\x5b\x34\x30\x2e\x87\xb3\x4a\x37\x2b\x09\x7d\x0a\xf6\x70\ \x25\xe1\x30\xee\x9f\x9a\x82\xa9\xbf\xda\x32\xdd\xa0\x80\xb6\x08\ \x8e\xcd\xc3\x47\x68\x57\x53\x90\xe8\x52\xbe\x46\x33\x8b\xfa\x6c\ \x53\x49\xa0\x05\x50\x27\x46\x61\x6e\x75\x56\xe8\xd9\xc1\x19\x96\ \x12\x6d\x55\x77\x38\x2a\x63\x68\x8b\x98\x45\x67\xfb\x82\xc5\xca\ \x04\x16\x9c\x2d\xd2\xc0\x95\x22\x98\x09\xf3\x19\x09\xef\x5f\x90\ \xd9\x94\xc8\x90\x2d\xbb\x11\x08\xdb\x9d\x58\xa8\x44\xe0\x5d\x60\ \x7d\x85\x3f\xd0\x22\xb1\x30\x5d\xd1\x25\xa2\xd5\x37\x66\xc8\xd9\ \x2b\xd4\x0d\x00\x06\xa7\x0e\x96\x8e\x5e\xb8\x16\x07\xb6\xe6\x9b\ \x6e\x27\x2a\x99\xba\x26\x14\x08\xc7\x28\xbb\x61\x27\xb9\x5d\xda\ \xf2\x08\xb5\xc6\x20\x85\xfd\x82\x92\xdc\xad\xbd\xa2\xce\x27\x01\ \x30\xea\xb5\xa0\x2a\xb8\x5a\x92\x25\x40\x48\x0a\x25\xe8\x6d\x3d\ \x12\x87\xf7\x41\xdd\x06\x09\x4d\x09\x14\xc6\x8f\x09\x50\x16\xf7\ \xa0\x4d\xa5\x99\x4c\xd6\x41\x21\x47\x63\x40\xc2\x53\x6c\x79\x1b\ \x85\xcc\x30\x32\xa0\xf8\x03\xab\x85\xb5\x65\xbf\xa6\x4e\x54\x87\ \x91\x82\x24\x1a\x1a\x77\x45\x6f\x40\xf1\x4f\xbd\x58\x72\x6c\x40\ \xae\x57\xfd\xe0\x25\x42\x46\xbc\xb3\x8d\xb2\xea\x9d\xaf\xa8\x3c\ \xab\xb8\xfe\x5a\x93\xe9\xdb\x45\x42\x46\xdf\x97\x0e\x4c\x0e\xdb\ \xca\xb6\x7a\xe6\x4d\x1b\x5d\x7f\x98\xaa\x47\x85\xe1\x2e\xe3\x6a\ \xa6\xc7\x81\x73\x6e\x69\x7d\x2d\xa8\xc1\xe1\x3a\xaf\xcb\x69\x51\ \xc9\xce\xd9\x63\x88\x33\x9e\xd5\x98\xe9\xda\x4a\x7d\xa2\x92\x5f\ \x2f\x40\xd5\xb1\x75\x78\x7b\xe2\x7c\xe5\xfa\xb6\x0e\x7f\x52\x6f\ \x9c\xa0\x76\xea\x1b\x67\xac\xff\x71\xd8\x70\x55\xaf\x0f\x56\xf7\ \x18\x16\x95\xbc\x2c\xe3\x82\x99\x7c\xea\xfb\xc9\x76\x09\x97\x41\ \xd9\x71\xd8\xa8\xff\x53\x87\x0d\xdc\x57\x12\x15\x0a\xac\x49\x0c\ \x8c\xfe\x37\x1c\x36\x54\x65\xdb\x2c\x1f\x3c\x46\x40\x4a\x1c\xcd\ \xf7\x47\x33\x9f\xdd\x1b\x98\xa6\x36\x0e\xfd\x18\xfd\x9b\x0d\x19\ \x76\x0f\x71\x34\x74\x4c\x23\x7f\x7a\xe4\x00\xca\x6d\x55\xd6\x58\ \xae\x46\xc4\x9e\x30\xe3\x5d\xa0\x25\xd8\x12\x43\x73\x73\xb4\x4f\ \x05\xb2\xea\xd1\x8c\x97\x95\xd9\x4c\xc0\x10\x01\x9f\x8e\xe4\x55\ \x4d\x4f\xf6\x6c\x76\x73\xd9\xdd\x11\xae\x44\xd1\x88\x49\xfb\x35\ \x10\xd9\x3b\xc4\xb1\xfb\xaa\x83\x00\xaf\xc4\xc0\x24\xd7\x21\x2e\ \x46\xce\x31\x1f\x82\x72\xa9\x43\xbc\x76\x32\x08\x1c\x14\x93\x8c\ \x71\x6d\x78\x60\x9d\xbc\xd9\x63\x9e\xec\x10\x3e\x33\x3d\x06\xd4\ \xaf\x1e\x1d\x5a\x9e\x59\x6e\x2a\x48\x59\x39\xd7\xae\x2f\x91\x8f\ \x96\xb6\x59\x6e\x26\xc4\x8c\x04\x10\x0b\x32\x50\x57\x37\x94\x1e\ \xf3\x1c\xb3\xe7\x85\x9c\x9f\xd7\x77\xdb\x21\x94\x45\xe5\x10\xc2\ \xf1\x11\x87\xb2\xad\x49\x0f\x60\xfe\x81\x7c\x13\x7e\x1e\xa9\x3c\ \x13\xde\x6b\x7f\xd7\x51\xdf\xc0\x3c\x1a\x4b\x8e\xb2\x5d\x32\xe8\ \xac\x44\x4b\xf8\x0e\xb1\x8f\xdc\xc3\x0d\x4c\x0b\xf4\xcf\x58\xf5\ \x74\x14\x50\x16\x70\x3d\xfc\x68\xb1\x0f\xb3\xbe\x19\xdd\xc3\xb3\ \x4b\xcd\xec\x6d\x7f\xa7\xcb\x8b\x97\x9c\xb2\xbb\x8e\x41\xf4\x8f\ \xc6\x35\xfb\xf9\xf4\xba\x90\xa1\x97\xd1\xd4\xa9\x9c\xb1\x8e\x6e\ \x93\xe3\xa6\x67\xa0\x00\xe8\xaa\x68\x6d\x3a\xff\xd9\x6a\x22\xd6\ \xc7\x46\x01\x52\x6f\x58\x00\x6b\x10\x82\xd2\xcd\xc2\x80\x54\x0f\ \x45\xb8\x2c\x9d\x0f\x46\x85\x64\x0b\x47\x95\xcd\x86\x0e\xb2\xf1\ \x18\x1e\x47\xc5\xcf\x22\x90\xc6\x51\xf7\x1d\xe9\x13\xdd\xfe\xf4\ \xc3\xdc\x87\xe9\xbe\x33\xc8\x38\xdb\xc9\x8f\x64\x35\x5a\x97\xaa\ \xa4\x54\x38\x36\x10\x70\x6b\x50\x00\xc3\x21\xd8\x4e\xa5\x60\x44\ \x7a\xf6\xfe\x78\x7c\x89\x2b\xda\xeb\x15\xc0\x86\x82\x93\x7d\x7b\ \x06\x65\x26\x14\x07\xe3\x4d\x32\xa9\x61\xce\x5e\x7e\x50\x55\xd2\ \x17\x8d\x65\x9c\xa9\x11\x33\x89\xbd\xef\x0f\xb8\x94\x8c\xb2\x5d\ \x83\x86\xfd\x9e\x26\xeb\x6b\x34\x48\x0f\x0a\xce\xdd\xf2\xca\xe1\ \x93\x62\xd3\x64\xfc\xd8\x3a\x54\x6e\xc7\xdc\xb4\x3c\x3c\xac\xf3\ \xec\xdf\x06\xab\xc8\x19\xc5\x8c\xa9\x98\xfe\xef\x0f\xdd\xbc\x2e\ \x10\x26\xd5\xfa\xd2\x1d\x05\xc9\x3d\x4e\xf6\x8d\x3f\x5f\x5d\x7a\ \x61\x03\xbc\x08\x0b\xe6\x3e\xca\x69\x26\xa5\x86\x29\xed\x61\xc1\ \x50\x1d\x8c\xa1\x86\x9c\xd0\xab\xce\xa5\xba\x6b\x1d\xf7\xcf\x59\ \x99\xc7\xc9\xc5\x28\x11\x01\x3c\x19\x53\x80\x5f\xec\x8c\xd4\x6a\ \x60\x14\xa5\x1c\x8f\x5a\xe0\x9d\x55\xd4\xc7\x83\x17\x67\x62\xac\ \xbf\x67\x2d\x8d\xd9\x87\x4a\x88\xbe\x4c\x1c\x07\xcf\x42\x3b\x73\ \xb0\xe5\x1d\xc5\x02\xc5\x9b\xba\x21\x64\x17\x1f\x0c\x9d\x3c\x53\ \xdc\xd4\xcd\xb1\xc7\xa9\x83\xa3\x89\x14\xca\x6e\xb9\x52\xf4\x8d\ \xeb\x47\x6a\x40\xd0\xbc\x72\xea\xb5\x7a\x50\x91\xc8\x82\xd5\xb0\ \xc6\x4a\x5d\x6d\x41\x28\x46\xc4\x48\x4f\x10\xd2\x34\x29\x9b\xf5\ \xe0\xd9\xb3\x12\x98\x27\xdb\x5a\x15\x5a\x61\x6a\xf6\x24\x3e\x6e\ \xd0\x44\x71\x63\x7d\x13\x11\xb1\x0b\x70\x8f\x91\x45\xfa\xc1\x5a\ \x15\xfc\x61\x84\xcd\x85\x50\xc3\xc5\x22\x30\xf3\x63\x9d\x13\xc3\ \xa5\x75\x3d\x34\x4b\x36\x17\x68\x84\xc2\x6e\xa2\x19\xde\xf5\xec\ \x88\x23\x07\xc3\x01\x83\xac\xc4\xd9\xae\x42\xcc\x8f\xcf\xdd\x43\ \x0e\x6f\xce\x45\x35\xb9\x0f\x6c\x64\x80\xc4\xfc\x20\x4c\x16\x39\ \x6d\x59\x2f\x50\xe9\x50\xec\x6f\x26\x4a\x6b\x88\x1c\x83\xd2\x48\ \x39\xf9\xa5\xb4\x5f\x06\x47\x0f\x38\x5b\x77\x0d\x50\xd2\xe1\xc3\ \x02\x32\x2d\xd1\x92\xc7\x8e\xfd\x65\x48\xe9\x09\xd7\xcb\x61\x16\ \x26\xeb\xe8\xcb\x21\xfa\xe3\xa0\xe6\xd7\x1f\x34\xab\xb1\x83\xc1\ \xae\xc3\xd6\x41\xd5\xdf\x41\xa1\x16\x01\x3d\x4a\x43\xea\x57\xd9\ \x36\xaa\x27\x18\x5c\xef\x48\xf8\xea\x61\xe7\x91\x6c\x3e\x69\xf0\ \x0a\x9c\x9a\x66\xfd\xf1\x48\x19\x3e\x38\x17\x39\xcc\x6a\x39\x99\ \xe3\x01\xf8\x3d\x20\x4d\xbe\x2f\x18\x0a\x7c\xc6\xa1\xd2\xa0\xce\ \xdd\xc1\xd7\xce\x77\x17\x84\xcc\x3a\xe3\xe2\x06\x56\x7f\x51\xae\ \x20\x3f\x0b\xf4\x11\xb1\x36\x3d\xec\x07\xa1\x12\x23\x28\x97\x4d\ \x5a\x45\x44\x0e\x69\xcc\xc6\x76\xe8\x81\x8e\xce\x2f\x9b\x34\x0c\ \x2c\x91\xba\xcd\x1d\x75\x2a\xf7\x83\x6d\x82\x6e\x07\x23\x75\xe8\ \x7d\x9c\x8c\xbb\x88\xc3\x49\x0e\xf6\x8f\x0b\x2d\xe5\x35\x26\xa0\ \x05\x9b\x36\x33\x77\x32\xcd\x84\xb3\xf7\x27\x06\x7b\x09\x5a\xc9\ \x08\xb9\x53\x3e\x0d\x31\xd7\x6f\xb2\x9d\xf9\x6d\x8d\x45\x6f\x45\ \x3d\x01\x8d\x42\x5e\xa1\xfd\x79\x72\xaa\x36\x04\xc0\x06\x5e\xc7\ \xe3\xb2\xd4\xc3\x86\xcd\xa3\xd7\xc7\xce\xa7\x00\x73\x5c\xad\x64\ \x90\x92\x41\x11\x03\xf7\xab\xda\x0e\xd7\xfb\x31\x19\xb8\xa5\x31\ \xe5\xc6\xbf\x80\xe9\xd4\x74\x54\x66\x58\x5a\xc5\x49\x01\x31\x09\ \x9c\x41\xd2\x7e\x0d\x47\xe7\xed\xb0\x3e\x41\x1b\xe6\xd6\x22\xb2\ \xdd\x43\xe4\xd5\x55\xad\xc0\x48\xa3\x97\x77\x6b\x18\x10\x09\x86\ \x27\xd8\xb0\x7b\xae\xe5\x74\xbd\x1f\x8b\x95\x2b\x34\x86\x48\xdb\ \x63\x78\x5e\xc2\xb3\x5c\x89\x73\xae\x45\x90\x85\x46\xd2\x5c\x9e\ \xab\xdf\xde\xde\x65\x24\x2d\x3a\x5a\x1a\x0e\x47\x80\x5b\xe9\x03\ \x6d\x48\xe6\x1b\x6c\x08\x99\xe2\xb6\x15\x8c\x5e\xcd\xa4\xe9\x76\ \x29\xed\xe3\x54\x70\x78\x8a\x10\x87\xe2\x2e\xce\x1a\x68\xc2\x25\ \x9c\x92\xad\x6f\xff\xe7\xac\xcc\x36\x69\x85\xf5\x12\xde\xdb\xce\ \x20\x58\xdb\x9b\x5e\x53\x9b\xa7\x0f\x72\xac\xd2\x75\x6a\xc3\xe7\ \x05\xf2\xd6\x40\x77\xc4\x13\x2e\x31\xd0\xe9\xac\xa0\x3d\x1b\x30\ \x0b\x43\xc7\xe6\xb4\x1b\x4b\x4e\xb6\xbd\xd3\x07\xe2\x1f\x91\x9e\ \x61\x04\xf4\xec\x98\x27\x82\x1b\x36\x25\x7a\x81\x60\xf4\xe0\xf0\ \x06\x70\xeb\x87\xbc\xd2\x21\xc8\x72\x75\x3d\x96\x41\xf9\x1a\x4f\ \xba\x6c\xe2\x41\x19\x73\x6b\x37\x40\x0a\x2f\xfd\x13\x30\x69\x30\ \x32\x12\x5a\x50\xa7\x27\x71\xe9\xc2\xa5\x81\x74\x0e\x48\x8d\xe7\ \xfa\x84\x8c\xe7\x17\xc3\xcd\x23\xce\xeb\xa1\x63\x9b\x7f\xcb\xb6\ \xb6\x5f\x44\xe1\x12\x80\x60\x6b\x2d\xa9\x7b\xe8\x1f\x9d\x02\x55\ \x07\x45\x05\x11\x1e\x4f\xcc\xb1\x17\x37\xc8\x40\x23\x8a\x1b\x88\ \x73\x8c\x98\x0e\x9f\x95\x34\xec\xe0\xa2\x0a\x0f\x8a\x44\xef\x87\ \xda\xe5\x3f\x47\xe5\x65\x00\xdc\x1b\x9c\x22\xb8\xf2\x0c\x13\x7e\ \x68\x98\xf5\xde\x15\x2a\x64\x58\x2d\x25\xd5\x4f\xb2\x45\xa4\x80\ \x76\x8c\x2e\xcd\x2d\xe4\xcd\x55\x31\x79\x20\xee\x34\x0b\x7a\xbf\ \x7a\x3e\xdc\x1b\x26\x33\xee\x41\x23\x9a\xed\xbc\x7e\x5a\x54\x77\ \xeb\xf3\xa8\xcc\x94\x8b\xa0\x6f\x12\xcd\x05\x1c\x39\x10\x06\xdb\ \x3d\x2a\xfa\xc2\x6b\x55\xc9\xc3\x71\x00\x6c\x15\x3e\xea\x27\x4c\ \x27\xa2\x99\x75\x62\xe0\xb9\x3c\x2a\xb5\x60\x1f\xa0\xe7\xdc\x39\ \xd7\x0e\xcb\x40\xaa\x91\xe7\x09\x02\x71\x5a\xda\xd7\x07\xe7\x91\ \x6c\x67\x86\x1b\x6b\x61\x04\xa2\x40\x5f\xa1\xc2\xbd\xcf\x70\x0b\ \xc3\xe4\xca\xb7\x8a\x47\x1b\xe3\x92\x4f\x6f\xc8\x69\x81\xe9\xe0\ \xda\xb2\xde\x87\x1a\x88\x76\x90\xba\xa5\x6c\xd6\xab\x87\x6f\x10\ \x0c\x37\xc4\x5a\x8d\xd1\x5b\xe9\xd1\xe2\xe4\x1e\x97\x67\x86\x5b\ \x62\x57\x03\xc6\xd4\x94\x41\xd2\xa0\xfb\x6e\xf6\x86\x60\x51\xf0\ \x10\x47\xd2\x18\x2f\xc6\xeb\x11\xd2\x9b\x04\xad\x9d\x98\x15\xf5\ \xac\x2b\x3a\x24\xb0\x28\x75\xf9\x2a\x76\xcc\x91\xfd\xf0\x2c\xfb\ \x32\x4a\xab\xe0\xd1\x68\xde\xa9\x41\x9e\xfa\x98\x79\x62\xb8\x35\ \x1b\xc5\xe9\x36\x67\xec\x91\xfd\x20\xa0\xed\xda\x49\x20\xd8\x6d\ \x48\xf5\xf0\xf9\xd9\x98\x12\x98\x58\x82\x8d\x65\xa1\x75\x2d\xf7\ \xbc\xcc\x32\xd0\x8b\xd3\x49\xcb\x17\x01\xe1\xe0\x61\x19\x42\x90\ \x0c\x55\x1a\x7c\x4d\x14\x83\x9e\x3e\x4f\xf9\x65\x94\x66\x1e\x07\ \xa6\x55\x40\xf5\x57\x7f\xd8\x7e\xbb\x82\x2f\x5b\x47\x48\x1e\x93\ \xd0\xbb\x65\x26\xdc\x98\xa4\x65\x1c\xa0\x86\x4c\xcd\x4b\xb0\x8d\ \xd6\x89\xf1\xdd\x05\x3a\x3a\x1c\x15\x94\xc9\x18\xd4\x93\x26\x48\ \x6e\x40\x8e\x1f\x89\x25\xbf\x56\x64\xbe\x16\xfb\x22\xd1\x71\xb9\ \x14\xce\x37\x37\x87\xf0\x62\xf5\xb7\x62\x5f\xe4\x18\xef\x5c\xf5\ \x0a\x44\x78\xdc\x7b\x1c\x74\xfd\xbe\x3c\x2b\x7a\x03\xe1\xaa\xb0\ \x31\x31\x98\xf4\xe1\x1b\xd4\x10\x1e\x20\xcd\x16\x7c\xc7\x86\xc8\ \xd3\x33\x2a\xf3\x8a\xcc\x1c\xe8\x41\xd0\x37\x6c\xe2\xf7\x2f\x50\ \x40\x00\x3b\x8e\x8a\xda\x01\x48\xa9\x9f\xb1\x2d\xa8\xc6\x96\xe0\ \x0d\xb4\xd5\xd3\x8c\xc1\x5c\x81\xb5\x8e\x27\xae\x0a\xbe\xd3\x2b\ \xb2\x41\x71\x73\x76\x84\xcd\xa6\x1b\xf8\xd0\xc3\x22\x20\xcf\x14\ \xb7\xfa\x07\x40\x0e\x3d\x69\x06\x84\x2e\xef\x97\x71\xf0\x73\xd4\ \x08\x26\x4c\xe4\x2a\x76\x64\xfd\x13\x16\xcb\x1a\x59\xe9\xbc\xb4\ \x41\xb9\x9b\x6f\x10\xdb\x57\xa4\xe2\x0b\x59\x69\xb4\x1d\x27\xc3\ \x12\x8c\x0e\x99\x80\x8f\x98\xea\x86\x1b\x1d\xe8\x37\xad\x4c\x0c\ \xb7\xfc\x67\x2c\xde\xd0\x80\x1d\xa6\xfa\x43\xb2\x55\xf7\x9d\x21\ \xb0\x71\x24\x30\xe9\xfb\xa8\x9f\xe0\x6d\xa1\xca\x0e\x79\x3b\xab\ \x4a\x16\x65\x1c\x7f\xbd\x8e\x75\x35\xd8\xe0\x10\x7f\x3d\x98\x56\ \xca\x98\xda\x62\x8a\x82\xae\x92\x4a\x27\x56\xab\xcf\xb3\x32\x03\ \x12\x4c\xcd\xa0\xeb\x75\x28\xaa\x72\x42\xfa\xc5\xab\xd3\xa1\x43\ \xe3\x0a\x23\xc6\x92\xfe\x15\x9b\xd2\xe7\xe0\x72\x64\xb8\x0d\xef\ \x1b\x14\xff\xb2\x63\x7c\x89\x19\x60\x42\x40\xec\x70\xbd\x52\xcc\ \x02\xd8\x81\x52\x6e\xd5\xd4\x54\xf3\xc0\xdf\xfd\x73\x56\x66\xa7\ \x34\x35\x90\x15\xb1\x76\x76\x76\x6e\xf8\x9b\x6d\x72\xb9\xca\x90\ \x36\x4c\xc9\xfc\x32\xca\x7d\x56\x10\xd7\x50\x81\xf8\xd1\xf1\x58\ \x44\xc5\x05\x7b\x16\x40\xbc\xb6\x0b\x6e\x73\xf2\x02\x81\x47\xd0\ \xc3\xa3\xaf\xc4\x61\x23\xea\x90\x61\x79\x06\xe5\x55\xdb\xea\x73\ \x40\x5a\xd2\x35\x42\xed\xba\xfc\x40\x28\x66\x0c\x99\x9d\x45\x06\ \xa1\x84\xdb\x54\x4f\xe5\x4a\x25\xd3\xe8\xd5\x55\x61\xbf\x18\x50\ \x12\xb8\x88\xb8\x73\xc1\xce\x86\x7d\xd2\xd9\xa8\x54\x07\xb0\x17\ \xc2\x10\xf0\xd1\x98\xf1\xd3\x7d\x8e\x57\x66\x82\x1b\x51\xc9\xc8\ \x10\xd3\xbf\x28\xe9\x96\xed\x1b\x84\x68\x95\xc9\xa4\x47\x33\xba\ \x72\x1f\xce\x05\x2a\x08\x50\x10\x03\x78\xa2\x1a\x97\x52\x39\xf8\ \x38\x63\x12\x55\x43\x62\x28\x77\xf6\x06\x0d\xa3\xb4\x12\x2b\xb3\ \xf4\xc4\x63\x37\xca\x95\xef\x59\x79\x13\xdc\x98\xa5\x62\x0d\x82\ \x3c\x3f\xf2\x9e\xfb\xe5\x8a\x61\xa0\x19\xaf\x14\xc0\x88\xfe\xd3\ \x07\x21\x81\x88\x07\x01\x50\x5f\xbf\x18\xaf\x64\x73\xca\x89\xa6\ \xe0\x10\x98\xfc\x9e\x8e\x8a\x65\x5b\x04\x67\x8c\x62\xe6\xa1\x20\ \x3e\xbd\x06\xf3\xcc\x70\xf3\x6a\x6a\x61\x7d\x3b\xec\x47\x52\x8c\ \xfb\x3b\xb2\x4a\x42\x2b\x40\x00\xd1\x85\x49\xb7\x94\x2a\x84\x87\ \x88\x9c\x35\x2a\x90\x70\xb6\x96\xed\x21\x9a\x77\x99\x19\x0b\x0d\ \x5c\x38\x7d\x85\x2e\xc7\x75\xcc\xd3\x3b\x13\x64\x15\x55\xe5\x39\ \xe4\x9f\x18\x6e\x36\xe4\x57\xdf\xac\xac\x12\x75\xdd\x58\x0e\xec\ \x17\x2c\xf8\xf6\x28\xa9\xaa\xa5\x02\x0f\xff\x99\xdc\xa6\x6e\x43\ \x2d\x50\xc9\x6c\x6e\x57\x93\xdb\x88\x87\x83\xe7\xa4\xe8\x2e\x5f\ \xc6\x0b\x07\xc3\x82\x7e\x03\xcb\xaa\x6c\x2a\x9c\xd0\x29\xfa\xf3\ \x11\xaa\x73\x71\x4b\x6d\xce\xe0\x5b\x65\x2f\x16\xbd\xdb\x48\x27\ \xe6\x5d\x58\xef\xb0\x61\x48\x01\x9b\xc9\x3b\x28\x6a\x84\xf1\xbd\ \x4a\xc0\xcc\xca\x82\xa2\xc3\x30\x0e\xe1\x52\x13\x1d\x25\xff\x1c\ \xee\x0e\xa1\xb8\xa1\x35\xce\x14\x56\xe5\x37\x9a\x97\xc3\xeb\xfe\ \x7b\x56\x5e\x14\xb7\x08\xea\x84\x1d\x96\xbe\xa9\x6b\x0d\xba\x39\ \x77\x62\x3e\x89\x4c\x13\x93\x9d\x7b\x03\x68\xe3\xdc\x88\xb7\x2b\ \xfa\xea\x55\x97\x68\xa5\x8e\x99\xcd\x74\xd5\x1b\xbc\xf5\xc6\x9a\ \x1f\x8c\x4a\x60\xee\x14\x5b\x67\x95\xa1\xca\x29\x02\xef\x79\x4e\ \xe3\x66\xb3\x34\x84\x0a\x22\x78\x5b\x3d\xcf\xf6\x78\xa6\xdd\xc3\ \x02\xcd\x9c\x57\xae\x01\x13\x51\x6c\xca\xfd\x0a\x39\x9e\x39\x64\ \x95\x62\xd1\x19\x8e\xef\xea\x36\x0e\xb7\x8f\x06\xb6\x24\x55\x0a\ \xa7\xc3\x61\x49\x64\x0a\x3a\x3e\x65\xfc\xac\x77\x12\xfa\xc3\xf3\ \x19\x9a\xcd\xd2\xfc\x9f\x49\x08\x65\xb8\x9d\xe8\xf7\x8c\xb7\x7c\ \x13\x03\x56\xb1\x2a\x67\x63\xac\xaf\x63\xf0\xd8\xbd\x0d\x2b\x22\ \x89\x05\xda\xa1\xee\xc9\xc2\x84\x11\x42\x17\x76\xef\x98\x52\xd8\ \xca\xe1\xac\xe4\xa1\xde\x7d\xc6\x71\x9d\xd7\xb9\x3b\x40\x13\xca\ \xec\xe5\xd9\x20\x4e\x3c\x37\x8a\x7e\x64\x9e\x54\x90\xab\xc4\x0d\ \x83\x9c\xb6\x49\x73\xc3\x94\x99\xb1\xb8\x92\x54\x80\x7e\xf2\x29\ \x6f\x75\x9f\xf8\x1b\x2e\x38\xed\x2b\x2a\x88\x6d\x77\xa3\x1d\x73\ \x93\x5a\xaa\xa7\x0f\x0b\xb3\x84\x8e\x82\x10\x09\xd7\x16\xde\x6e\ \x3a\x2b\x6f\x21\x48\x15\xe5\x8c\x9d\x2a\x0e\xc5\x43\x8b\x62\xb7\ \x64\x61\xb0\x17\xec\x95\x57\xea\xfd\x6c\x84\x7a\x60\xfc\xef\xed\ \x91\x51\xd9\xbf\xca\xb7\xfc\xb6\x82\x9a\x1e\x13\x87\x7a\x4e\xcf\ \x7b\x3c\x42\xdd\xa1\x27\xa7\x22\xbe\x75\x8f\x96\x3b\x72\x9d\x4f\ \xb8\xe0\x8b\xe5\xc6\xca\x9d\x5e\xa8\x32\xac\x2a\x7e\x1b\xeb\xa4\ \xfe\x1b\xa8\x54\xc0\x29\xa0\x40\x61\x08\x9f\x3a\xae\x60\xb5\xae\ \x62\xbe\x45\x5d\xa2\x55\x1d\xc7\x1c\xd0\xa6\xdd\x8a\x9a\xfe\x8c\ \xc3\x20\xca\x1e\x88\xbb\x63\x18\xa8\x7b\x1d\x1d\x8c\xb1\xe7\x94\ \x7f\x26\xb9\xd5\x3f\x93\x8f\x41\x11\xa9\xd8\x08\x3c\xee\x96\x71\ \xea\xf2\x74\xde\x54\x27\xa3\xe7\x11\x6f\x8d\x77\x03\xa3\x37\x65\ \x2c\x28\x51\x68\xf8\xa5\x15\x02\x8c\x95\x47\xc5\x0a\x50\x95\x3f\ \x53\x98\xb3\x17\xa8\x5b\x75\x5b\xc0\xb8\x29\xe8\x11\x92\x61\x9c\ \xb0\x4e\x33\xc9\x4d\x37\x08\x38\x6c\xea\xe6\x78\xca\x9a\x6f\x3f\ \x2c\x98\x6e\xc6\x64\xb9\x0c\x25\x93\x1b\x18\x57\xba\xce\x80\x4e\ \x40\x85\x2e\xb4\xce\xb6\x48\x0e\xe9\xa2\xc1\xe9\x02\xb6\x7b\x3a\ \x2c\xb6\x29\x73\x01\xb5\x63\x06\xeb\x34\xcf\xb9\x3e\x4f\xcb\x2b\ \xdb\x32\xb9\x03\xb5\xac\x22\x50\x47\xeb\x07\x71\x32\xf8\xb7\x05\ \xa5\x45\xda\xc1\xde\xef\x21\xa5\x5e\x9e\x60\xf4\x6b\x9c\x7e\xd3\ \x62\x1a\x97\x80\x2c\x7a\xf3\x74\x71\xc9\x80\x96\x87\xa3\x62\xb0\ \x84\x66\xbc\xc3\x0e\x66\x1e\x8b\x8b\xe7\x4a\x68\x26\xb9\xe1\x0f\ \xa2\x5f\xab\x9f\xc6\x07\xc4\x47\xc2\xf6\x5a\x15\xd0\x12\x6c\xb9\ \xc0\x20\x5d\x15\x73\xbe\x5d\x25\xc8\xb1\xd4\x96\x15\x88\x58\x5a\ \xf8\x98\x02\xfb\xc5\x78\x0e\x2a\x76\xcb\x25\x1c\x7e\x9a\x8b\x1b\ \xb8\x04\xd6\x1e\x18\x4e\xe9\x09\x4a\x29\x3d\x44\x0f\xcb\xfb\x56\ \x03\xb0\xd7\x87\x0e\x3c\xd0\x65\x5f\x4c\x15\xb8\x53\x1e\x62\xe5\ \x1d\x02\xa4\xff\xf0\x44\x8d\x65\xcd\xe4\x47\x65\x6f\x5f\xb8\xeb\ \x19\xa5\x29\xf5\x61\x25\xa3\x7e\xe1\x70\xdf\x5c\x9c\xb1\x8a\x99\ \x4e\x3a\xa8\xf0\x01\x2a\x52\x2a\xcf\xa8\x4c\x09\x17\x20\x10\x88\ \x72\x98\x64\x18\x0b\x84\x1f\xe8\xb3\xaa\xd7\x2a\xf6\x75\x01\x3b\ \xb8\x1e\xef\x5e\xa8\xf3\xc2\xc0\x98\xa2\xd3\xba\x66\x90\x53\x4e\ \xf2\xa4\x1c\x95\xe2\x68\x9d\xba\x7c\xf8\x0e\x95\x61\x99\xa6\xe6\ \x03\x61\x2b\xdd\x9e\x16\x5b\x0a\x8f\x84\x5b\xdc\x2b\xe1\x66\xd0\ \xe4\x1c\xaf\x02\xd9\x3a\xfe\x20\x23\x84\x02\x24\x90\x18\x7d\x15\ \x31\xe4\x4b\x30\x47\x09\x17\xfe\x04\xb8\xe8\xd4\x99\x87\x2d\x91\ \xc8\x98\xb5\xc1\x15\xad\xd1\x28\x54\x87\xc3\x52\x4c\x18\x48\x07\ \x92\x17\x21\x67\x8a\x6c\x1f\x9f\x61\x99\xa1\x09\x3a\xb7\xfa\x66\ \x75\xcc\xd5\x23\x5e\x2e\xf2\xbb\x2e\x3e\x3c\x80\xa0\x77\x31\x79\ \xb9\xc6\x06\x36\x91\x03\x9e\x8c\x0f\xd4\xf7\xe9\x9d\x3f\x03\xfe\ \x64\x30\xb8\x14\x94\x70\xfd\xce\x63\x35\x8b\x2a\x38\x6b\xdf\x3b\ \x4c\x28\xc7\xea\x03\x41\x87\x67\x50\x66\x79\x32\x4c\x64\xb8\xfb\ \x39\x64\x44\x50\x7e\x38\x2a\x4c\x5f\xd5\x1f\x32\x5a\x33\xaf\xd7\ \xfb\x06\x61\x73\xa1\xa8\xd3\xcc\xff\x07\xdb\x68\x44\x17\x19\x1f\ \xb2\x28\xc8\x35\x9f\x1d\x69\xab\xb0\xb6\x0f\x17\xf1\xcc\x81\x8b\ \x04\x05\xf0\x79\x52\xfc\xdc\x84\x40\x82\x60\xaa\x1a\x2c\x47\xfe\ \xe2\x46\x8f\x62\x28\x3a\xa5\xd0\xe9\xda\xa5\x4a\x60\x92\xe1\x85\ \xd6\x83\xe7\x49\x4f\xe0\x42\x9c\xcc\x5e\xef\x84\x6e\x4f\xc0\x8f\ \xd8\x1f\xe6\xc2\x28\xe0\xc3\x7c\x37\x21\x39\x42\x87\xd3\x06\xb3\ \x24\x7c\x83\x32\x83\xc0\x4a\xa0\x84\x22\x15\x34\x54\x09\xb7\x65\ \xce\xa1\x00\x1b\x55\x18\x52\x3d\xab\xf4\x5b\xba\x3a\x55\xf5\x8c\ \xa0\x8d\x00\x6a\xc6\xbe\xf4\x1f\xf1\xce\xac\xa5\x93\xf1\x20\x0e\ \xfb\xae\x17\x3f\x74\x77\xd5\x55\xa8\xa5\xaf\x0d\x36\x79\x7e\xa2\ \xc0\xca\x6c\x98\x86\xd4\xf5\xe0\xee\xe0\xe2\x53\xd3\x3e\x9f\x19\ \x8b\x64\x47\xd1\x6e\x7b\x7f\x90\xcd\x57\x58\x6a\x40\x8c\xde\x84\ \x2f\xe1\x96\x2c\xfd\x29\x79\xb1\x51\xe1\x60\xfe\xe1\xdd\x59\x7a\ \x43\x81\x4e\xd6\x14\xfa\xf1\x36\x9b\x24\x49\x49\xee\x19\x96\x59\ \xe7\x5c\xcd\x11\xd8\xc2\xa2\xc7\xd4\x5c\x14\xf7\xa3\x02\x03\x14\ \x67\x4c\x04\xbc\x69\x24\xee\x7a\xa5\x02\x53\x08\xa8\xfb\xaa\xb2\ \x5c\x8c\x12\x22\x54\xaf\xa8\x1c\x8d\x96\x2a\x14\xe2\xc3\xb9\xd6\ \x37\xd3\x93\x83\x09\xc5\x0e\xde\x78\x37\x53\x5a\x79\xe6\xda\x86\ \x30\x2e\x7d\xb3\x3e\x90\x6a\x95\xcb\x0e\x76\x13\x46\x89\xfa\xa6\ \x1e\x3c\x30\xaa\xd0\x6b\xae\xa0\x64\xd3\x15\xc7\x94\xda\xac\x5f\ \x56\x4b\xd5\x9a\x73\x03\xde\x61\x87\xfc\x78\x50\x82\x89\x93\x15\ \x98\x30\xc1\x96\x79\xf8\xb2\x3c\x5f\xa0\xb7\x61\x5a\xb5\x5c\xeb\ \xb8\x44\xfa\x82\xe3\x0f\x37\x88\x5e\x0a\x89\x11\xe6\xe8\xad\x7e\ \x60\x09\xea\x96\x79\xf3\x13\x1f\x26\xfb\xc5\xa6\x0c\x08\x66\xcd\ \x15\x2f\xfa\x8e\xfe\xef\xe1\x59\x42\x31\x36\x99\x1e\x41\x46\x2d\ \xfa\x1c\x55\x15\x40\x7b\xd6\x70\x33\x9b\x0c\x16\x29\x2c\x4a\xd8\ \x5f\xf8\xfd\xec\xdb\xc8\x81\x81\x63\xb5\xd4\xf0\xf3\x0d\xed\x2e\ \x6d\x33\xdc\x46\xd5\x68\xce\x1c\xb2\x4a\x5a\x60\xf9\x23\xbf\x53\ \x05\x84\xf2\x52\x57\x40\xfb\x61\x79\x32\xfd\xc9\xf4\xae\x01\x56\ \x4b\xd7\xc7\x2b\xe0\x69\x9e\x37\x68\x26\x93\xe1\xda\x89\x70\x84\ \x53\x95\x60\x7e\xcf\x3f\x9c\x15\x14\x7a\xd8\x32\xc3\xfd\xd7\xdd\ \xbd\x0d\xe9\x9d\xab\xc9\x1b\x7d\xfb\xab\x35\x3c\xff\x4e\x93\xcb\ \xc7\x27\x2b\xe5\x16\xcf\x89\xbf\x5f\x51\x29\x36\xb7\xd7\x99\x01\ \xe0\x0a\x6e\xe2\xd2\x90\xfe\xf6\x41\x61\xae\x6c\xd1\x3f\x31\x01\ \xc6\x6a\x52\xc2\x6d\x77\xca\x6f\x93\x14\xe5\x07\x07\x7e\xca\x34\ \x37\xaf\x22\x2e\xb2\xce\x88\xa0\x02\x94\x35\xca\xb2\x88\xab\xec\ \x6d\x1a\x75\x8d\xc3\xf5\xf3\x70\xcf\x3c\x1c\xd3\x5a\x45\x84\x5e\ \x0f\xbf\xaf\x5c\xa5\xe9\x0a\xcd\x74\xb2\x30\x04\x59\x50\xe7\xf3\ \x97\xe2\xe0\x66\xba\xc5\x60\x9d\x11\x60\x67\x8e\xe0\xc3\xa7\x60\ \x89\x4d\xe5\x1b\x9e\x28\xfa\x4f\x2f\x14\xd4\x3c\x60\x31\x5d\x78\ \x2c\x84\xa9\x28\x0e\x4b\x02\xa8\x4a\x30\x5f\x23\xd4\xc1\xb0\x55\ \x05\xc0\x57\x9f\xf5\xca\xec\x97\xd6\xe8\xcb\xd0\x89\xd7\x1d\xea\ \x99\xd9\xe9\xfe\xd8\x29\x7b\x26\xc0\x6a\x30\x93\x32\x7d\xb8\x84\ \xb8\xbc\xfa\x0f\xec\x2d\x1c\xac\xc3\x7c\x8d\x2a\x5e\xe0\x52\xa5\ \xb4\x4e\x29\xd9\xa0\xb1\x1e\xe6\xee\xaa\x01\xf9\xaf\x4e\xb6\x25\ \x49\xe0\x2b\x45\x11\xf2\xe0\xee\x96\x99\x4e\x66\x96\x78\xfa\x0e\ \x01\x5a\xa0\x14\x52\x7f\x50\x1a\x41\x96\xcc\xb1\x10\x52\x79\x92\ \xdc\x27\xaf\xe8\x42\x31\x8c\xd3\x29\xd5\xe1\x4d\x7e\x59\xf1\x27\ \xc2\x56\x91\x2d\xee\xca\x2c\x87\xb3\x6d\x34\x79\x32\xb2\x96\xde\ \x5a\x10\x9d\x80\xfa\x1f\x62\x3d\x25\xce\x90\xdb\xc8\xb9\xf6\x2a\ \x58\x54\x09\x43\xb0\xdd\x8d\xca\x50\x72\xc1\x3b\xc8\x23\x1c\x9a\ \xdd\xfd\x32\x3b\xa6\xb1\xc6\x50\xf5\xee\x32\xef\x9b\xb1\x71\xac\ \xa3\x5c\xd2\x57\xe2\x31\x15\x38\x87\xec\xb9\xa2\x52\x4c\xcd\x3d\ \xa1\xed\xa7\x1c\xda\x20\x2e\xf4\xe7\x0d\x7a\x26\xdb\x86\x2e\x49\ \x8c\x98\x8c\xa6\x0f\x97\x78\x97\xa5\x8a\xe7\x73\x44\x1e\x83\xd9\ \x5e\xbe\xd1\xd9\x18\x6b\x93\x5a\xa0\x4e\xa1\xab\xf4\x0a\x4a\xa5\ \x6b\xc7\x5a\x1a\x08\xaa\x1a\x86\x73\x63\x84\x2b\x28\xa8\x9c\x63\ \x99\xcd\x2c\xa3\x83\xe8\x2f\x4f\x70\x76\x89\x2f\xdd\x5d\x76\x75\ \x11\xe9\x13\xb4\x0a\xd2\x0f\x64\x18\x90\x33\x6c\x71\x15\xe2\x0f\ \x80\x07\xda\x43\xd4\xbd\x20\x65\xd5\x54\x97\x5d\x10\x53\x19\x6c\ \x7e\x1a\x0b\x4f\x74\x3a\x0f\x97\xb6\x89\x31\x42\x1b\x24\x6f\x73\ \x70\x80\xba\xf0\xb8\x3e\x69\x4e\x73\x40\x0b\x79\x4c\x79\xc2\x91\ \x99\xdd\xef\x98\x61\x06\x85\x80\x4b\x00\x1e\xc9\x9f\xd9\x8a\x59\ \xa7\x41\x79\x47\xdd\xb7\xa4\xa5\x31\x18\xbc\x0a\xe0\xff\xc3\xd9\ \xe8\x74\x50\x18\x23\xe0\x31\x92\x78\x4b\xd8\x79\x5f\x16\x11\xdf\ \xa0\xcc\x78\x5b\xc4\x65\xd1\xf4\x09\x6c\x98\xe3\x3e\xe5\x23\xf2\ \x92\xa9\xf5\x66\x69\xa9\xbf\x3a\xb9\xe1\xfd\xa8\xa0\xb4\xea\xc9\ \x14\xec\x54\x5c\x58\xc8\xee\xaa\xe8\x8c\x8c\x83\x50\x38\x32\x39\ \xf0\xb3\xcb\xa0\x92\xd2\x10\x26\xc5\x8a\x25\x10\x93\x3e\xc4\xb3\ \xbf\xef\xcf\x6c\x96\x86\x7a\x23\x92\x5d\x34\xcd\x05\xb2\xea\x0f\ \x49\x25\x31\x96\xc5\xd1\x29\x04\x88\x7d\x77\x05\x67\xf5\x1c\x97\ \xa3\x56\x90\x2c\xab\xf7\x07\x92\x24\x62\x31\xd9\x68\xd0\x87\xa1\ \xd9\xea\x30\xa8\x0d\x58\xa6\x56\xf3\x10\x54\x4b\xf3\xa4\x07\x95\ \x34\x6f\xc8\x10\xf4\xc3\xa6\x04\x75\x21\x35\x43\xdb\xd3\x7d\x66\ \xf4\xd9\x94\xa1\xf4\xb8\xba\x7c\xad\xd8\x01\x6f\xa0\x07\xe0\x71\ \xdb\xe3\xdb\x5a\x7a\x1a\xf1\x0b\x50\x66\xcb\x0c\x9d\x9a\x3b\x5c\ \xc0\xa5\x66\x16\x8c\xe8\xc4\x3a\x5b\xc0\xfb\xf1\xfc\xfc\x73\x54\ \xfa\xf4\x81\x98\x34\x20\x1e\xe1\xe2\xd0\x00\xdb\xaf\xdf\x98\xfc\ \x16\x54\x39\x11\xb8\xc9\xe9\x33\xc5\xc6\xa7\x1b\x3a\x89\x2a\x95\ \xbc\xc2\xc4\x29\x6e\xea\x36\x20\x05\xea\xa8\x17\x6c\x50\xcf\xde\ \x9f\x0c\x1c\x01\x49\x8a\x46\x43\xd1\x98\xac\x3d\x45\x77\xcb\x44\ \x24\x0b\x34\xaa\x89\x15\x00\xd2\x65\xa9\xec\x17\x2a\xca\xd9\x10\ \xef\x11\xcd\x88\x7a\xf9\xd2\xa5\xd3\x53\xfe\x54\xb7\x29\x87\xd3\ \x9d\x99\xb2\xd7\x0a\xe6\xe4\xd4\x5c\x83\x3c\x55\x75\x50\xd1\xf9\ \x39\x7b\x52\x06\x8f\x8c\x7d\x47\x65\xcb\x8c\x4c\x5f\x29\xfe\x19\ \x95\x97\x22\x0d\xd8\x89\x84\x05\x13\xd8\xe1\xc1\x35\xde\xcd\x2a\ \x06\x7a\xaf\x46\x4c\xd6\xb9\xb8\x61\xa5\x3a\xae\x99\xdb\x81\x3c\ \x81\x52\xed\x5a\x24\x21\xb1\x10\xc0\x16\x99\xa7\xf3\xf0\x03\x94\ \x13\x7c\x39\x9c\x5d\x95\xda\x14\x75\x9b\xf7\x3d\x2e\x50\x7e\x6f\ \xc7\x10\x47\x64\x36\xa9\x24\x07\xd2\x71\x77\xe5\x11\xd1\x7a\x06\ \x59\xc7\x3d\x44\x08\xef\x36\x90\x43\xeb\x0c\xc6\x7b\x1a\x6d\xe1\ \x0a\x8e\x10\xa2\xa1\xac\x22\x24\x5b\xf4\x93\x0f\x47\x05\x8d\xf3\ \x60\xbe\xe2\x9e\x04\x0a\xb2\xe7\x41\xf8\x28\x33\x91\x4c\x07\x9f\ \x39\xaa\x72\xa1\xe7\x5e\x97\x7d\xad\xb8\xfc\x87\xc6\x4e\x2a\x15\ \x40\x26\xab\xe2\x5b\x82\x32\xd3\x85\xd7\xb1\x5e\x75\x65\x29\x33\ \xc2\x9d\x63\x69\x0f\x27\x31\x85\xc3\x30\x27\x75\x5f\x98\x33\x20\ \x5a\x85\x15\x0e\x26\x8f\xe9\xa9\xff\x55\xf2\x4b\x72\xd7\xa8\x3b\ \xa1\x99\x75\x2f\xc9\x72\x3f\xdb\x46\xc3\x8e\x06\x23\x8e\xdc\xb3\ \x59\x46\x0b\xf0\xe9\x79\xe6\x12\xe2\x60\x0b\xb0\x6d\x82\x57\xe4\ \x10\x70\xc6\x71\xd7\x85\x73\xae\x60\x23\x2a\xc5\xd6\x63\x2c\xa1\ \x54\xee\xab\xe6\x8f\x17\x9b\xf9\x1b\x95\x99\x48\x06\x98\x26\x21\ \xbd\xcd\x0e\x46\x85\xdc\x2f\x16\x8c\xad\x61\x2c\xa9\xd4\x42\x29\ \xe8\x3e\x36\xda\x2a\x99\xcd\xde\xea\x16\x65\x59\xcd\x10\x12\xcb\ \x70\x7d\x00\xe0\xa5\xf1\x30\xa0\xa7\x94\x41\xdb\x0d\xd1\xf8\x7f\ \xae\x00\x04\xab\x0f\x11\xd7\x52\x66\x43\x09\x18\x64\x50\xb0\x99\ \x4e\x41\x41\x1f\x9f\x68\xa7\x5b\xae\x50\xd7\xd5\xf3\x86\xce\xc8\ \x29\xdd\xf0\x49\x25\xad\x88\x6e\x50\x24\xd7\x0d\xc5\x81\x67\x54\ \x3a\xc5\xaf\x12\x5b\xf4\x6a\xd8\xa1\x78\x5f\xa6\x16\xc7\xce\x4a\ \x32\x29\x48\xdc\xd6\xa1\x2b\xe0\x08\xe7\x9f\x79\xa5\xbc\xf7\x63\ \x43\xa3\xa0\x23\xd2\x95\x73\xfb\x61\x8e\xdd\xe8\x19\x74\x03\x94\ \xd0\x2a\x10\xa1\x7b\x0a\x87\x3e\x40\x61\xd7\x53\x59\x79\xaf\xa7\ \xfb\x36\x48\x05\x09\x5c\x00\xb9\x1e\xbe\x41\x85\xc0\x2b\xd9\xf3\ \x1c\xd0\xa6\xe9\x2d\x7c\xe0\xb2\x4b\x79\x49\xd2\x30\x3d\x40\x37\ \x00\x4c\xd4\x30\x1c\xda\x1d\xd8\x56\x76\x1b\xa6\xb6\x83\x90\x6b\ \xbb\x07\xb6\xce\x00\x80\xd0\x9b\x59\xc5\x2d\x31\xfc\x00\x38\x21\ \x5b\x65\x1d\x5c\x1f\x0e\xef\x52\x8b\x61\xbf\x10\xee\x4d\x11\xf8\ \x4c\x40\xff\xdf\x3f\xcf\xca\x0b\xfb\xa5\xcf\x8c\x32\x56\x82\x71\ \x15\xda\xbe\xd9\x60\xf9\x03\xc8\x1a\xd0\x66\xea\x01\x9b\xa9\x91\ \x57\x2a\xfb\x63\xe3\x0c\x55\xea\xfd\x1e\x57\x6f\x90\x43\x5f\x24\ \xe1\x95\x9b\xf4\xcd\xd6\xc3\x79\xa5\x1a\x6f\x17\x89\x67\x4c\x5f\ \x18\xe0\xe8\xe8\x3e\x17\xef\x33\x95\x8c\xef\x38\xb0\xd1\xc2\x14\ \xdd\xda\x95\xdd\x2b\xd4\x90\x5f\xf1\xf4\xcb\x3d\x62\x71\x79\xc9\ \xaf\x30\xc9\x65\x59\xd7\xca\x2d\x93\xb0\xb8\x42\xd4\x29\x5f\xf9\ \xca\x73\x6e\x83\x57\x58\x82\xf1\x3d\x91\x2c\x44\x81\x14\x54\xd7\ \x93\x33\x55\x26\x2a\x99\xba\x97\x52\xcd\xcc\x28\xa2\x21\x34\x16\ \x99\xbb\x1b\xe6\x30\x46\xd1\x6a\x33\x10\xca\xbd\xf7\x63\xba\xc8\ \xd4\x95\x40\x8b\x29\x4a\x56\xfa\x45\xb4\xa6\x48\x42\xa9\xc6\xc2\ \x8e\xfe\x70\xc9\x5f\xcd\x98\xb2\xb2\x8d\x81\xc3\xe7\x8b\x29\x91\ \x3d\x12\xcb\x9b\x49\x46\x72\x34\xa5\x6b\x94\x70\xbd\xdb\x2e\x6e\ \x69\x34\x41\xf9\x06\x7c\x2e\x61\x59\xdc\x4b\x8f\x16\x2b\x80\x6d\ \x68\x0d\x78\x33\xae\x29\xaa\xc8\xae\x74\xa6\x97\x0d\x45\xac\xc3\ \x67\xc5\xe0\x08\x98\x70\x31\x19\x56\x41\x04\x74\xe8\x59\xb1\xd4\ \x79\x92\xd0\x19\x9b\x35\x73\xd9\xcc\x75\xb8\x42\x6e\xe6\x5b\xb6\ \x5c\x30\xc9\x1a\x76\x7e\xee\x23\x8c\x16\x99\x49\xaa\x2b\x23\x73\ \xa9\x43\x5c\x25\x96\x64\x86\x53\x56\xed\x44\xb8\x0d\x87\x0f\x8b\ \xd9\xae\x87\xc4\x10\x07\xaa\x82\xbf\x04\xe9\xfe\x39\x2b\x53\xba\ \x6d\x7f\x18\x2c\x78\xb5\x87\x1d\x4d\xa5\xd4\xb6\xe9\x75\x19\x6c\ \x50\xec\xe6\x80\x95\xfc\x3f\xd0\x95\xd0\xe0\xac\x02\xd4\x01\xa7\ \xb7\x20\x63\xe2\x72\x8d\xef\x91\x5a\xa8\x54\x2d\xfb\x9f\x8d\x4a\ \x63\x41\xd6\x90\xb5\x40\x5c\x1f\x50\x7e\x7a\xd2\xeb\xca\x44\x24\ \xc3\xc8\xb2\x33\xd9\xc7\x37\xb1\x30\x16\xf9\x61\x15\x04\x35\x42\ \x19\x44\x3f\x17\x3f\x7d\xf8\x90\x0e\xa9\xdd\x80\xe8\x9b\x64\x93\ \x5f\x82\x27\x5b\x86\x80\x0d\x8a\x90\x45\xc3\xe1\x01\x4b\x63\x4c\ \x9a\xed\x3b\x43\xe6\x85\x89\x85\x8d\x49\xf3\x37\x2a\x6f\x22\x99\ \xb7\xbe\x0c\x79\x73\xcc\x94\x7f\xf0\x76\xd5\x37\x90\xb9\x22\x3a\ \x7d\xba\x3f\x1f\x2f\x7a\x52\xbc\x07\x88\x08\x4d\xd5\x2d\x2c\xe4\ \xd0\x78\x37\xa7\x34\xfc\x49\x1a\xb2\x3e\x87\xa3\x32\x88\xbb\x9c\ \x57\x13\xdf\x81\xa9\xd0\x9f\x75\xdc\x4c\x24\xd3\x2f\x57\xb9\xd0\ \x13\xae\x92\x6c\x26\xec\x91\xd8\x94\x9d\x07\x4c\x1b\x80\x39\xe9\ \xe7\xd3\x77\x7f\x4f\xe3\xd0\xe5\xe7\xa9\xf6\x0c\x2b\xfc\xc2\xa1\ \xc0\x0c\x4a\x50\xcc\x66\x33\xaf\xb6\xe9\x9c\xdb\xd3\x15\x96\x41\ \x24\xab\x09\xe5\x50\x07\x51\x2d\x0e\xe1\x9b\x7f\xc2\xf2\x2a\x6f\ \x9b\x8e\x0b\xbf\x4c\x25\x06\x86\x5e\xbb\x87\x45\x5f\x39\xe3\xfd\ \x84\x81\xa9\xe9\x49\x7d\x12\x0b\xad\x5f\x46\xf8\x50\x4f\x62\x72\ \x2b\xee\x7b\x35\xff\x0d\x6c\x84\x4c\xc5\xff\x30\x7e\xb2\x35\xfb\ \xf6\xc7\xf2\x05\x1a\xad\xf7\x2d\x3f\x77\x64\x6d\x26\xee\x42\x94\ \x0f\x68\x1b\x44\x38\x2c\xf7\x7e\x6a\x8b\xcd\x0c\xd4\x37\x91\x55\ \xf4\x83\x5d\x9b\x62\x46\x6d\x0e\x46\x6e\x63\xc3\xaf\x4e\xc0\xad\ \xba\x66\xfc\x4b\x91\xba\x68\xa9\x67\x94\x7f\x4f\xf5\x87\xe3\xac\ \x74\x83\x7f\xe9\x6e\xda\xd0\x51\xcf\xa1\x01\x64\x1e\xd5\x6d\x9f\ \x57\x99\x0e\x2b\x33\x7c\x1b\x15\xc3\x1a\xf6\xa9\x98\xde\xe4\x58\ \x51\x22\xca\x63\xc2\x73\xd3\x60\xf4\x04\x39\xc0\xeb\xed\x5a\x32\ \xbf\xa2\x52\xff\x10\x6a\x4c\x58\x02\xe2\x1a\x93\x4e\xef\x98\xf1\ \x4b\x43\x9b\x15\xfd\x37\x66\x3c\x6a\xe9\x2f\x4d\xa2\x6f\x54\xe2\ \xf4\xb3\xa0\xf2\x86\x03\xb8\x3a\xe7\x94\x86\x24\xe0\x66\x54\x1a\ \x36\xae\x58\x99\x2a\x93\x94\x4b\xbf\x89\x35\x2b\xbe\x6d\x70\xd4\ \x0a\xea\x5e\x0b\x79\x5b\x33\xcb\x45\x4a\xae\x3b\xea\xf3\x58\x0e\ \x2f\x99\x7b\x32\xb1\x2b\x85\x45\xaf\x89\x5e\x20\xcc\xcf\x9f\x25\ \x7f\x9f\xe5\x6d\x4d\x2f\x86\x62\x94\x1c\x94\xf6\x05\xd6\x79\x82\ \x03\xb8\xba\x86\x5c\x48\xbe\xa0\xc6\x20\x86\x0a\xf0\x73\xfe\x0a\ \x55\x99\x6d\x31\xce\xc6\x3a\x28\x00\x60\xc0\xe4\xba\x97\xf2\x1f\ \x44\xb3\x77\xac\x9e\xdc\xff\xd4\xea\x89\x31\xad\x1e\x8a\x0a\x74\ \xc2\x87\xec\xfe\x5f\x5b\x3d\x8d\x84\x07\xc3\xad\xff\x31\xf2\xab\ \x91\xa1\x98\x4a\xc6\xd4\x9e\xb3\x9f\x3e\xcb\xe5\x04\xe8\xa1\x2c\ \x99\x1c\x6a\x1c\x65\x5b\x78\x37\xfe\x99\xeb\x59\x32\xeb\xcb\xe4\ \xeb\x47\xdd\x4f\x85\x25\x78\x03\x7d\x65\x8d\xaf\xec\x9d\xf0\x54\ \xe3\x62\x1a\x0d\xb4\x53\x67\x3c\xc7\xd3\x88\xf1\x6e\x72\x39\x88\ \x31\xe0\x57\xa0\x57\xbb\xc7\xa7\x6d\x66\x99\x09\x6e\xed\x0f\xee\ \x07\xd5\x39\xeb\x25\x24\xb0\x76\x4f\x71\xfc\xb3\x9f\x1b\x72\x4e\ \x47\x52\xe5\x83\x02\x66\x51\x13\xb8\xb7\x2a\xad\x61\x1d\x2c\x1e\ \x47\xa3\x4b\x21\x90\x16\xc9\x30\xe7\x46\xca\x16\x95\xea\x4c\x0a\ \x32\xe3\x84\x05\xaa\xb7\x56\xb4\xad\x1e\x1b\xf0\x3a\x7d\x22\x13\ \xb2\xc3\x46\x8c\xd4\x58\x01\x28\xfd\x60\xb5\x81\x46\x33\x6f\x11\ \x9c\xe9\x3e\x4c\xd4\xad\x45\x8b\x30\x3a\x9c\x39\x41\xb5\xb2\x10\ \x70\x40\x80\x1e\xc2\x8c\x37\xdf\xde\xe2\x0e\x37\x23\xd5\xd9\x3b\ \x90\x12\x9b\x21\x52\x2f\x8c\xc8\xe7\xb6\xb7\xbe\xed\xd2\x0a\x03\ \x19\xb6\x0f\x3e\x02\x3c\xf9\xc5\x96\x85\xc5\x31\x15\x11\x9a\x71\ \x2d\x7f\x60\xc0\x01\x5f\x7a\xef\xad\xdb\x59\xdd\xa1\x88\xf9\x0f\ \x32\xcd\x48\x11\xa3\xdf\x70\x96\xf8\x57\x9d\xb1\x2e\xf4\x32\x05\ \xc0\x1c\xd4\xff\xdd\xd7\xfa\x0c\xcb\xec\xe1\x83\xd2\x1a\xad\x1c\ \x2e\x67\xb8\x51\xfc\x70\x58\x72\xf1\x1c\x94\xd0\xf1\x48\x72\xf7\ \x50\xb9\xeb\x7a\xe8\x06\x51\x14\x30\x62\x5a\x95\xdd\x1c\x14\xf5\ \xae\x29\xf2\xc9\xfd\x39\xd1\xb6\xeb\xb0\x14\xda\x40\xb6\x88\x78\ \x6c\xe0\x8c\x18\x9e\xb2\xa1\x75\xe2\xb7\xf5\xbf\x12\x71\x4c\xd1\ \xbf\x74\xac\x74\xbd\xb7\x3d\x25\xca\x9f\x1d\x7e\x5c\xdd\x3b\x8e\ \x33\xe1\x1e\x2a\xab\x71\x35\x87\x51\xc4\xe1\x30\xdb\x58\x34\xae\ \x19\xb6\x2f\x10\x13\x87\x5c\xce\x61\x8b\x55\x35\x7e\xcc\xa5\x6c\ \xbd\xd8\x59\xbd\xaa\x49\xcf\xf9\x79\x52\xde\x32\xe7\x08\x42\xb9\ \x5c\x9a\xe9\xf0\x6d\xcf\x4e\x23\x08\x34\x2c\x9b\x12\x0c\x77\xfe\ \xe1\x5e\xe0\xb9\x6e\xb2\x2f\xcc\xbb\xba\x5b\x5a\xc8\x25\xc4\x1b\ \xaa\xed\x2c\x72\xbc\xb0\x6b\xe7\x82\xe2\xcd\xc1\x07\x8f\xa2\x84\ \xf8\x3b\x1a\xcd\xbe\x3d\x46\xca\xf5\xe5\x96\x96\x62\xab\x57\x43\ \x9f\x53\xdc\xa7\x42\x62\x64\x92\x90\x96\xe9\x60\xbe\x55\xc6\xdf\ \xdd\x3c\xfe\x7e\xba\xcf\x48\x3a\x30\x75\x5b\x22\x6b\xe0\x42\x78\ \xf0\x0c\x91\x59\xcb\xd9\xa5\x8c\xee\xa4\xb9\x99\x83\x68\xea\x9c\ \x80\x12\x26\xf7\x84\xea\x67\xd9\x5d\x3d\x3f\x34\x73\x78\xa5\x93\ \x85\xb6\xc7\x61\xc1\x1c\x4c\x1d\x1c\xb6\xce\xe8\xb6\x7d\x94\x20\ \x55\x31\xb1\xa1\x52\x63\x1a\xd0\xc4\x59\x8d\x38\x74\xb7\x32\x68\ \x86\x86\xb8\xe8\x61\x0c\x63\xf5\xec\xef\x22\xf4\x3b\x6f\xfa\x68\ \xe5\xf2\xb5\xfd\xde\x9f\x99\xdf\xe6\xa1\x2a\x2a\x0b\xb0\x86\x04\ \x4d\xbd\xff\x00\x59\xd2\x76\x68\x70\x05\x54\x51\x7d\xfc\xd8\xa5\ \x81\x12\x07\x95\x8c\xfa\x49\x5f\x44\x05\x66\x60\x49\xca\x2b\xc1\ \xf4\xf7\x86\x0d\xd7\xc9\x0b\x64\x9e\x12\x15\x8c\x26\xca\xd9\x15\ \x9e\x73\x7d\xf0\xdb\xaa\x9f\x27\x1c\x46\x83\xe3\x21\x55\x15\x75\ \x0d\x20\x36\x37\x55\xd9\xd9\xe0\x13\xe1\x4f\xe4\xab\xef\xb9\x0f\ \x30\x1b\x96\xb8\xae\x9b\x2b\xca\x6a\xcc\xae\x1b\xc6\x33\x68\x4b\ \x0b\xb4\xf1\x0f\x9f\x15\xf8\x6d\xa8\x72\x03\xd5\xc7\x72\x0a\xa1\ \xea\x67\x50\xa6\xd2\x36\xfd\x71\x95\x81\xf6\xe1\x33\xd3\xca\x7e\ \xb2\x0d\xac\xbc\x3a\x82\x8b\x9e\xae\xfd\xb6\xd6\x53\xb1\x82\xf4\ \x39\xc5\xae\xb2\x0d\x0c\xd2\xd5\xb3\xac\x9a\x58\x35\x16\x1e\x51\ \x38\x8c\x1e\x4e\x2b\xc1\xe9\xa1\x6d\x09\x0e\x52\x31\xbd\x9e\x34\ \x84\x35\xbe\x51\x99\xf8\x6d\xb4\xf2\x41\x65\xb8\x03\xfa\x58\x19\ \x74\xef\x8e\x08\x8d\x96\x8c\x2c\x45\x83\x62\x6d\x9d\xdf\x55\xd8\ \x62\xe1\xdc\xcc\x6a\x16\x6a\xee\xea\x05\x2a\xf0\x9e\xd1\x47\xc1\ \x6b\xc3\x85\xc3\x17\x28\x04\x6b\xd1\x1c\x60\x0e\x07\xfe\x4e\x3d\ \xd7\xf3\x01\x0a\x33\x0a\x38\x76\x17\x0b\xa6\xae\xcc\x9f\xf3\x3e\ \x60\x2f\x63\xea\xce\xca\xb2\x22\x8e\x5d\x7c\xbd\xb3\x8a\x09\x1e\ \x56\x15\xb5\x48\xa8\x97\x45\x50\xca\x1f\x96\x59\x2a\x66\x4c\xe1\ \xc7\x1d\xe4\xe2\x5f\x41\x19\x65\xed\xff\x6f\x54\xf2\xff\xa3\xa8\ \xe8\xd0\x51\x71\x98\xd5\x00\xa8\xc8\x7a\x03\xc6\x33\x8d\x91\xf9\ \xba\xb6\x9e\x63\x58\x0d\xd9\x83\x33\x2f\x6b\x44\x49\xd0\x75\x3d\ \xbb\xa6\x52\x92\xd5\x5f\x51\x81\x18\x51\x58\xab\x3b\x8e\xe1\xe9\ \x36\x58\xc3\xdb\x05\x58\xcf\x38\x17\x27\x40\x15\xfa\x61\x42\x18\ \x71\x4f\x05\x78\x17\xf8\x1c\xbd\xf5\x0f\xe7\x4f\xb7\x06\x04\x49\ \x42\xd9\x3d\x2c\x2f\x10\x00\x7a\x7d\x08\xca\xc8\xd4\xc3\x39\x17\ \xe0\x2b\x2a\xcd\xc6\x97\x60\x54\xc0\x27\x44\x10\x36\xcf\x62\x65\ \x22\xb7\x41\x53\x47\x32\xc1\xd8\x44\xaa\x55\xae\xd1\xd9\x9e\x58\ \x1b\x13\xb8\x88\x08\x99\x79\xc5\xa6\x8f\x5f\x67\x40\xcb\xd0\xf2\ \x0d\x18\xc2\xd5\xbb\xec\x10\xe7\x24\x68\xec\x7a\x0f\x1a\x60\x8d\ \x1b\x14\x9d\x51\x50\x19\xef\xa0\xa0\xde\x8c\x10\xf9\xa8\x56\xe2\ \x6b\x9b\x18\x0d\x42\xcd\xfc\xc3\xa7\x01\xec\xdf\xd4\x6a\xab\xcc\ \xae\x93\x29\x5c\xe2\xa6\x7d\xcf\x56\xe8\xf4\x30\x67\x64\x6c\xb8\ \xd4\x28\xd0\xb3\xac\x1e\xbb\x5a\x4e\x19\x76\x50\x87\x83\x62\x43\ \x84\x0c\x28\x00\xc7\x8f\x06\xbf\xc0\x3f\x46\xec\xff\x5f\x7b\xef\ \xba\xec\xea\xae\x5c\x87\xfd\xcf\x53\xf0\x05\xb2\x8c\xfb\xa5\x4a\ \x95\x57\x49\xa9\x94\xe3\xfc\x8b\x53\xb2\xec\xe7\x0f\x46\x37\xbe\ \x39\x49\x4e\xae\xd5\x2d\x62\x98\xda\x5b\x95\xd8\x4e\xe2\x73\xa6\ \x16\x09\x10\x68\xf4\x65\x5c\x7a\x7e\xb6\x01\x16\xd2\x31\x3c\xea\ \xe1\xff\xad\xef\xc6\x9b\xd9\xfe\x4a\x9a\xcb\x7a\x69\x90\x9b\xc4\ \x55\x7a\x7d\x19\x60\x25\xf4\x64\x31\x37\x85\xb6\xee\x4b\xaf\x34\ \xc1\xd3\x4c\x80\x09\xe0\xdf\xc8\x1b\xc7\xec\x5d\x11\x11\x48\xcc\ \x58\x13\x34\xec\xd0\x5c\xab\x8f\x83\xde\xfe\x93\xdc\x16\x57\xa6\ \x8d\x3c\x7c\xe5\x1a\x98\x25\xbd\x5f\x2e\x57\x44\x8d\x95\xad\xc3\ \x4c\x11\x96\xd8\xd7\x13\x04\x6f\x53\x74\x28\x32\x40\xc2\x2f\x6b\ \x20\x24\xd7\x51\x2d\xc8\x31\xf9\xe3\xd2\xce\x7b\x6e\xa2\x7c\xab\ \x1a\xba\xab\x14\x83\xa0\x5e\x7c\xdc\x94\x67\xa0\x44\x40\xb2\x02\ \x81\xc4\x55\xc2\xc4\xf2\x7e\xb6\x9f\x40\x2f\x07\xc3\x30\x8b\xaa\ \x54\xfe\x72\x5c\xc7\xf0\x18\x28\x49\x84\x51\x48\x19\xbe\xd8\x94\ \x88\xb6\xae\x90\xe2\x56\xde\xcf\x56\xb0\xeb\xea\x95\x06\x72\xea\ \xca\xdc\x20\x20\x08\xcd\x58\x7d\x1f\xbf\x76\xe5\x79\x72\xb7\x52\ \x8b\x75\xa9\x91\xa1\x03\x71\x74\xe2\x27\x01\x41\x31\x9c\x8a\x54\ \x12\x94\xed\xbf\x30\x8c\x88\x9f\xe0\x80\x8c\x21\xa8\x9a\x57\x79\ \x2d\xd0\xca\xeb\x1b\x03\xff\x0f\x72\x2d\x77\x57\x8a\xe0\xd2\x2a\ \x74\xc4\x21\x78\x93\xc5\x5d\xf1\x01\xae\xd7\x7f\x7a\xa5\x45\xd9\ \x43\x34\xbd\x93\xc8\x21\xbd\xbb\x2d\x0d\x51\x1e\xe1\xb2\x74\xa9\ \x9b\xc3\xb7\xcc\x14\xe4\x94\xd6\x96\xc3\x59\x24\x84\x9f\xe9\xfe\ \x7a\x82\xe6\xba\xf3\x2d\xf4\x01\xbf\xe8\xc1\xce\x6c\x0b\xba\x08\ \x13\x3a\xad\x02\x5a\x47\x1f\xfb\x11\x97\xd6\xcb\x33\x2e\x0d\x17\ \x6d\x9d\x5a\x50\xaf\x53\xe8\xef\xf3\xdb\xca\x2f\x48\x1a\xae\xb8\ \x90\x20\xb0\x1c\x6a\xb8\x82\x2d\x24\xe5\x51\x7e\xae\xa7\x1a\xc0\ \x9a\x9f\x0d\xdb\x8e\x5a\x36\x08\x38\x6e\xe6\x8c\x2b\x48\xde\x14\ \x91\x24\x43\xef\x13\x93\x1d\xfc\x38\x21\x3e\x52\x51\xfa\x13\xc1\ \xad\xa0\x74\x91\x7c\x65\x65\x0c\x15\xc0\xbd\xf7\x8f\x0a\xba\x8b\ \x92\x76\xc0\xa7\xae\x7e\x65\xb6\xd0\xc4\x4c\x20\x69\xc1\xd0\x28\ \xbc\xd0\xaf\x83\xce\x2a\xde\x6e\x68\xa8\x0d\x48\xe9\x90\x87\x1e\ \x05\x26\xc0\x30\x8e\x6b\xc0\x47\xc2\x92\x3a\x3f\x6a\x1d\xf6\xf2\ \x33\xb3\x05\x01\x0b\x82\xc5\x80\xf9\xa8\xec\xfb\xbb\x66\x83\x2b\ \xed\xc9\xa0\x08\xc0\xcd\x31\x6d\x49\xa5\x0c\xe8\x13\x84\x11\xe0\ \xa8\x30\xd7\xef\xf6\x2a\x87\x83\xf2\x37\x44\x12\x57\x60\x04\xa6\ \x82\x1d\x57\x04\x27\x51\xa0\x64\x81\x89\xe9\x44\x20\x2d\x8f\x6d\ \x84\xf2\x2c\x49\x86\xd6\x5c\x5e\x99\x2d\x5a\xcd\x23\xbf\x2f\x17\ \x9a\xd6\xf3\x9a\x0a\xd2\xb1\x08\x19\xba\xf0\x65\x03\x0c\x24\x32\ \x02\x56\x86\x14\x4e\x7f\xb1\x2b\xf9\x57\x82\xe7\x1e\xa0\xc3\x68\ \x0a\xb6\x48\xee\xc3\xd5\x20\xf2\x14\x28\xc6\x07\xb0\x32\x09\x97\ \xe2\x21\xb3\x7d\xb6\x4a\x9b\x62\x37\x28\x10\xc3\x04\x36\xe2\x7c\ \x7b\xe4\x01\x81\x73\x08\x27\x0d\xf8\x73\x02\xf3\xaa\x55\x50\x13\ \xc3\x22\x0c\x33\x30\x13\xcc\xf9\xc5\xd8\x10\x6a\x88\x68\x19\xaf\ \x38\x0d\x8f\xc6\x49\xb6\x08\xe8\x35\x81\xd9\x5e\x41\x7d\x1f\x22\ \xc3\x33\x35\x6d\xf8\x3e\x2a\xcf\x0c\x37\xf8\x49\xb4\xaa\x88\xee\ \x9a\xbb\x4a\x2a\xbd\x79\x83\xe0\x76\x32\x31\xad\x9e\xd0\x6b\x2b\ \x17\xa6\xa6\x14\xf4\x79\x86\x98\xef\xe6\xd7\x70\xd7\xf5\xdb\x89\ \x0e\x3e\xc8\xc8\x89\x6d\x19\xbd\xea\x10\x41\xd4\x16\x30\x50\x1b\ \x44\x3a\x93\x36\x09\xbf\x1f\xe6\x67\x86\x1b\xe4\xf9\x41\x2a\x83\ \xdd\x01\xb0\xc3\xef\x9b\x82\x61\x88\x3b\xa0\xe4\xb4\x6e\x11\xc6\ \x5d\x73\xee\xb3\x02\x3b\xf5\x2e\xa2\xae\x79\x5d\xac\xfc\x52\xb2\ \x1a\x18\xf3\x0e\x22\xcf\x58\xb1\x90\x47\x3c\xdf\xbb\x22\xa8\xb4\ \xb6\xd2\xa1\x15\x26\xa0\x00\x1d\x57\x12\xf2\x74\x58\x7e\xa8\xe4\ \x40\xf8\x15\xd4\x1a\xe4\x0a\x1a\x0c\xdf\xec\x23\x88\x53\x69\x13\ \x83\x49\x28\x2d\x7e\x63\x6a\x50\xf0\x45\x2d\x57\x53\xf9\x59\x06\ \x25\xd8\xb2\x0b\xb7\x07\xea\x47\xa1\xf1\xfa\x08\x7b\x57\x86\x7c\ \x84\x74\x3f\x91\x02\x94\x34\x73\x7b\xdc\x94\xe7\x60\x1b\x60\x58\ \x8f\x56\x4c\x87\x0d\x51\x78\x1b\x46\x8f\x8e\x1b\x9c\x9e\x02\x04\ \x02\x85\xdd\x7f\x55\xcc\x03\x62\xf0\x92\x0b\x61\xe8\xfd\x32\xd8\ \x56\xa8\xe8\x88\x31\x25\x48\xd0\xe4\x4d\x69\xaa\x49\x96\x04\xe7\ \xbc\x4e\x32\x10\xe3\xe3\xf1\xa8\xb4\xe7\x54\xa1\x42\x5f\x03\x42\ \xd1\x13\x14\xe7\xfc\x36\xf3\x1c\x90\x22\x48\xe0\x41\x1c\x0e\x86\ \x51\xdf\xb6\x09\x13\xe2\xe9\x6b\xc3\x6a\x29\x41\x1d\x75\x7f\xe8\ \xca\xaa\x29\x3b\x9c\xa0\x56\x00\x6a\xe4\x51\xaa\x38\xa5\x49\xaf\ \x04\x4d\xd3\x55\x05\x0d\x25\x0f\x7d\x3f\x41\xed\x67\xb0\xad\xe8\ \x1d\x8a\xca\x76\xca\x5b\xfd\xe2\xbd\xb3\x52\xcb\x84\x7f\xe9\x0a\ \x21\x98\x02\x6e\x51\x3f\xa9\x19\x03\x7c\xc5\x13\x80\xe9\xb3\xbd\ \x6a\xc4\x01\xf3\x89\xdb\xbe\xe2\xb4\xa8\x51\x91\x77\x45\x44\x72\ \x92\xa0\xcb\xe0\x0a\xb3\xf2\x39\x8d\xf9\x77\x67\xe5\x07\x06\x18\ \x72\xef\xb8\xf3\xc0\xc9\x85\x70\xd2\x48\x88\x50\xdf\x5a\xe5\xba\ \xa8\x34\xc4\xfe\xf5\x06\x35\x49\x5a\x13\x14\x47\x60\xdb\xf0\xaa\ \x3a\x84\x37\x55\x85\xba\x9b\xf8\x0e\x91\x33\x7e\x78\xa5\x81\x5a\ \xb2\x5e\x93\xba\x42\xee\x9d\x22\xdd\xf7\xb6\x3c\x47\x5b\xd8\x3c\ \x65\xa8\x04\x04\xd9\x9e\xb7\x77\x05\xc8\x68\xb8\x25\x04\xa4\xf6\ \x08\x9c\xd7\x84\x0c\xcd\x01\x34\xd7\x13\x90\xe4\xda\x5a\xff\xa1\ \x8b\x59\x2b\x08\xb3\x2b\xff\x4b\x22\x65\x47\xde\x95\x21\x9a\xff\ \x55\x54\x59\xf0\x14\xac\xfc\xb6\x3f\x05\x96\x1f\xe6\x3d\x1d\x8d\ \xb3\x20\xe6\xc5\x10\x9a\x3b\xe8\xda\x36\x18\x72\x26\x08\xd4\x16\ \x20\xe9\xaf\x70\x0b\x53\x77\xc8\x58\x0b\x9c\xe5\x65\xb8\x5d\xbf\ \xc6\x3a\xd4\x03\x43\xe8\x04\xef\x76\xee\xae\x74\x50\x2e\x22\x34\ \x0e\x31\xdb\x9f\x2b\x3b\x50\x2a\xec\x77\x60\xe9\xcf\x5f\x08\x92\ \x1c\x50\x5c\x5d\xa9\x38\x14\xce\xdf\x4e\x6d\xcb\xaf\x20\xf3\xc7\ \xb1\x2a\xe4\x54\x6a\x0e\xd7\x05\x82\x97\x04\x00\x1a\x10\xb0\x9b\ \xed\x65\xb4\xad\x10\x5e\x15\x1f\xa8\x0c\x84\x34\xf9\xa8\x74\x45\ \x23\xa0\x66\x5f\xe1\x13\x6c\xa4\x19\xf2\xe3\xa6\x3c\x45\xdb\xfc\ \x4b\x8c\xbc\xe0\x4a\xdc\xc5\xa1\xfd\xed\x06\x3f\xa8\x1e\xeb\x13\ \x81\x44\x58\xa9\xc7\xdc\xd6\x45\xd8\x76\x8c\x10\x00\xcd\x6c\x90\ \x8d\x9b\xaf\xba\xb6\x2b\xd4\xa6\x95\x58\x07\x54\xd7\x50\x59\xe7\ \x26\xfc\x5d\xba\xb6\x20\x09\x20\x4f\x59\xb1\xa2\x85\xfa\xa8\x09\ \xd3\xfb\xf3\x88\x6c\x65\x19\xbd\x80\x7a\x0e\x51\xa3\xf9\x3e\xf2\ \x6b\x65\x6b\x51\x78\xa6\x73\x6d\x02\xbc\x06\xbe\x8a\xc3\xa8\x03\ \x87\x0e\x77\x8b\xd7\x8d\x84\x04\x27\x18\x38\x04\x0c\x58\xa9\xb2\ \x47\x64\x1d\x92\x64\x15\x16\xc3\x15\x44\xd4\x15\x25\xc6\x7c\x1c\ \x7b\x3c\x1b\xa5\x25\x24\xa4\xf8\x05\x57\x14\x0c\x82\x07\x78\xbf\ \x38\x14\x6d\xb3\x06\x64\x6b\x84\x94\xe4\x97\xb2\x2c\xfc\x5e\x56\ \x46\x09\xb2\x72\x7e\x45\x3d\x87\x63\x0b\x70\x59\x80\x4e\x76\xfc\ \x34\xec\xb0\x82\xd4\xb6\x4f\x68\x24\xc1\x83\x4a\xac\x6a\x1e\x1f\ \xe6\x67\x7e\x5b\x04\x61\x7c\xfd\x42\x13\xde\x54\xd0\x50\x38\x92\ \x3f\x01\x0a\x66\x95\x14\x5d\xfc\x06\xf2\x3e\x2b\x19\x9f\x90\x65\ \x86\x0c\xbb\xf9\x57\x37\x68\x05\xa2\x90\xa5\xbd\x02\x35\xb3\x41\ \xde\x15\x38\xa5\xad\x27\x08\x20\x10\xec\xcc\x04\x93\xe2\x91\x5a\ \xd0\x7f\x12\xdc\x46\x2f\xe8\x92\xc1\x75\x08\x86\x44\x6f\x03\x90\ \x93\xe8\x38\xa6\x88\x0c\xae\x08\x74\x7e\x07\x96\x15\xfc\x21\xb5\ \x8b\x2e\x06\xda\x3b\xaf\x7a\xfc\xeb\x98\xa0\x23\x83\x03\x0b\x8f\ \x72\x72\x75\x38\x10\x6e\x2b\x3a\x95\x18\xac\x34\x8c\xb2\x1f\x05\ \xec\xfa\x33\xc1\x0d\x26\x35\x90\x06\x9e\xc8\xbb\xf0\x9b\xb6\xf7\ \x93\x5b\x48\xb6\x06\x98\xb7\x43\x0a\xe2\x52\x0b\x5d\xcf\x2e\x78\ \x1c\xd0\x1b\x1b\xdf\xdc\xeb\x1f\x3d\x08\x18\x00\x46\x54\xfb\x1d\ \x3e\xb0\xdc\xc0\x02\x82\xdb\xca\x89\x80\x4a\xc3\xd3\x5f\x80\xc3\ \x4a\x8f\x38\xa7\x67\x82\x1b\x24\xe6\xd6\x7f\x58\x01\x67\x50\x9c\ \xd1\x41\x3b\x1b\x8c\x81\x2a\x8a\x4e\x15\x1a\xfc\xfb\x0e\xa1\x1b\ \xd6\x22\x32\x4a\x98\x6c\xbf\xc0\x4f\x82\xcc\xdf\x20\xc1\x81\x62\ \x65\x6d\x29\xaf\x45\xb9\xb7\x05\x53\x32\xc0\xf7\x57\x72\x59\xb2\ \xea\x8c\x3f\xe8\x62\xf6\xf1\xa3\x71\xbb\xfe\x48\xb4\x39\x40\x6b\ \xcd\xfa\x02\xbc\xeb\x9a\x80\xa1\xc5\xda\x81\x55\x51\xa1\x21\xa0\ \xbb\xd2\x51\x80\xae\xf4\x49\xda\x09\x19\x2e\xcc\xaf\xae\x90\x58\ \xb6\x60\x3e\xb2\x2a\xa6\xc9\x86\x0a\x8e\x21\x28\xce\x06\xaf\x25\ \xe8\x29\xb6\x95\x7b\x8f\xc7\xb3\xf2\x9c\xdb\xae\xe7\xbb\x75\xd1\ \xc8\x5d\xc7\x3e\xa6\xb7\x5b\x09\xeb\xea\x42\x6f\x4d\x40\xcc\xe5\ \x32\x26\x88\x62\x24\xb8\x4a\x81\x55\x99\xa3\x4f\x0d\xc9\xb4\x57\ \x37\x28\x0e\xf0\x24\x57\x04\x80\x6c\x4f\xe5\x52\x44\x57\xb4\x84\ \x94\x29\x34\xe4\x50\xbf\x46\x99\x68\x3f\x02\xf8\xe7\x8f\x21\x19\ \x34\x5d\x21\x67\x80\xb9\xc0\xca\x6f\x0e\x00\xfc\x2d\x42\xa6\x14\ \x25\xf3\xba\x28\xe9\x0b\x6a\xdb\xc4\x50\x6f\x7b\xca\x95\xf9\x12\ \xbd\x02\x71\xce\x20\x14\x38\x80\x91\xc8\x1d\xca\x29\x5a\x39\x70\ \x96\x87\x2d\x50\xe9\xc0\xc5\x95\xc7\x29\xd9\xb3\x55\x5a\xfc\x05\ \xe6\x4b\x1c\x42\xbe\x5a\xf1\xe0\xfd\xb8\x02\x61\xa5\x55\xff\x88\ \xfe\xf5\x40\xd2\x74\xcd\x0e\x85\xa8\xda\x80\x91\x98\x22\x92\xff\ \xea\x06\xad\xfc\x1a\xda\x0d\x90\xe6\x5d\x7f\x4b\xce\x6e\xa7\xf4\ \x12\xe0\x68\x32\x92\xd8\x4c\x96\x0b\x28\xfa\xbd\x2d\x4f\xe1\x76\ \x25\xc3\x13\x36\x1b\x48\x27\xa0\xde\x92\x0e\xc2\x2d\x7a\xf5\x13\ \xe6\xcf\x50\x16\x8c\x1b\x57\x0a\xf5\x1e\x88\x14\x21\x92\xc6\x4b\ \x14\xfb\xa7\xbe\xf9\xda\xd0\x95\x86\x36\x58\xbc\x45\x9e\xfb\xd5\ \xde\x16\xe8\x40\xa2\xb7\xb5\x12\x16\xa8\xb3\xac\xe4\xbf\xce\xc7\ \x5d\x79\xe6\x91\x95\x02\xa5\x51\xd4\x88\x5a\xca\xbf\x5f\x34\x43\ \xcf\x76\x0a\xef\x69\x6d\x43\xec\x57\x76\x8b\x49\x29\xf4\xf1\xa5\ \x83\xf9\x0a\xd5\x83\x7d\x03\xa2\x48\xda\xbd\x90\xc3\x27\xd7\x87\ \x70\x4a\x1b\xbf\xd6\x4b\x0b\xb1\x0d\x38\xcf\x82\x0e\x99\x1e\x23\ \xcb\x0f\x6d\x32\xe8\xed\x76\xd8\x1e\x89\x6e\x4a\x3b\xf0\xd8\x58\ \x4b\x03\x8b\x05\x5c\x96\xb6\x62\xcb\x25\x6a\x01\x39\x64\x00\x58\ \x56\x24\x46\x59\xf2\xea\xac\xe4\x15\x8d\xd6\x6f\x82\x61\xdd\x80\ \x2f\x21\x75\x5b\x46\x50\x54\x42\x6a\xa9\xac\x90\x0f\xb5\xbe\xb6\ \x27\xea\xd7\xb6\x8c\x9f\x9d\x30\xa0\x16\x47\x80\x4a\x21\xaa\xea\ \x83\x49\x33\xa8\x83\x40\x51\x42\xf2\x1d\xe0\xf7\x2b\xe9\xc7\x9b\ \x0b\x7e\x6e\x5b\x4f\x76\x7f\xf1\x0a\x75\xa8\xe8\x27\xb4\x32\x60\ \x09\xc6\x24\x7c\xc8\x0d\x1a\x41\xc5\x72\xd6\x61\x45\x02\x00\x3f\ \xf5\x27\x64\xf6\x08\xcf\x74\x62\x78\xe9\xb5\x2e\xa6\x6a\xa9\xaa\ \x42\xe2\x9b\xa3\x0f\x91\x7c\x47\xc4\x04\xaf\x72\x33\x07\xe5\x85\ \x59\x35\x31\xc8\x5b\x2b\xa3\x5f\x11\xf7\x37\x7c\x29\x20\x0a\x21\ \x8d\x08\x6e\x2f\xf7\x69\x5e\x3f\xb8\x74\x58\x02\xa8\x47\x00\xde\ \xd5\xaa\x3a\x5f\xe5\x7b\x53\x9e\x31\x09\xe8\xc5\x09\x22\x1a\x04\ \x51\xb5\xbc\x7b\x53\xbb\x21\x89\x3a\xc6\x04\x9e\x29\x00\x76\xfc\ \x95\xda\x16\x6c\xd6\x3a\x02\xc8\xac\x5f\xc8\x2a\xd5\x95\xda\xae\ \x18\x9d\x65\x26\xd4\x76\x9d\xcf\xdc\x14\xb4\x12\x20\x96\x81\x72\ \x5e\xc8\xde\xfd\x51\x09\x7f\x84\x67\x75\x73\x1c\xed\x84\xfa\x65\ \xc0\x85\x28\xbf\x5d\x1c\x02\xb0\x04\xfb\xaa\x75\x11\xd1\x88\x4b\ \xf3\x4a\xe2\x14\x2d\x02\x19\x0f\x00\xb6\xfb\x6f\xc0\xb6\x48\x6a\ \x21\x49\xb5\xc2\x3d\xd9\x3a\x6e\x6d\x87\x08\x6a\xb7\x19\x30\x3e\ \x84\xa8\x52\x6a\xed\xf1\xfa\x3c\x67\xb6\xad\x8d\x81\xee\x2e\x52\ \x8a\x5d\x31\xbf\xed\xbe\x08\x94\xef\x80\x6e\xa2\x68\xe5\xec\x4d\ \x69\x2b\x6a\x75\xb4\x34\x56\x76\x37\x52\xfb\xd9\xe1\x5f\xd1\x08\ \x48\xb5\xff\x55\x7e\x7a\x2b\x4e\xc9\x80\x74\x25\x98\x6d\x85\x07\ \xd4\xbf\x73\x3c\x5e\x9f\xf8\xdc\xef\x29\xf0\xcc\x41\x6d\x8d\x66\ \xd9\x81\x25\xe5\xaa\x31\xd7\x4d\xec\x15\x5c\x4a\x3c\x3f\xed\xaa\ \x0c\x85\xe7\x3f\xc4\x78\x19\x65\xc5\xab\x0c\x0e\x1d\x38\x9c\x6c\ \xa8\x86\xcd\xc8\x93\xac\xde\x9b\x02\xdb\x9e\x81\x11\x76\x84\xdf\ \x4b\xab\xbd\xc7\x07\xc9\xf7\x11\x9f\x03\x2d\xfc\x90\x33\x70\x7c\ \xab\x4e\x5d\x79\xdc\x8e\xfc\xef\xe1\x11\xd6\x2b\xb6\x12\x13\xf0\ \xb3\x57\xb5\x79\xd1\x0d\x91\x37\xc3\xfd\x77\xc2\x37\x39\xbd\x40\ \x0a\x0e\x69\x56\xa1\x78\x5c\x07\x0c\x82\x8b\xdc\xfc\x6d\x08\x87\ \x2c\x80\x6e\x0e\x41\x25\x30\x96\xc2\x63\x2b\x7b\xc4\x67\xa4\x6d\ \x58\xf7\x0c\x15\x2e\xf2\xfc\x55\xc1\x1c\x40\x57\xd6\x96\x36\x04\ \xd3\x2e\xe0\xe7\x7a\x49\xcb\xae\xe8\xdd\x51\x7f\xac\x9f\x68\xa5\ \xbd\xf9\xe7\x49\x01\xda\x66\x25\xd6\x13\x3a\xb8\x2b\xd9\x6f\x64\ \x0a\xd9\x7a\xd0\x84\xe8\x03\xb5\xf2\x39\xd0\x3a\x85\xc5\xf9\xe3\ \xa6\x3c\xf5\x10\x32\x90\x25\xe8\x09\x22\x0a\x09\xf0\xf1\x60\xea\ \x51\xd5\xce\x25\x43\x32\x74\xf4\x4b\xcd\x02\x8f\x5b\xac\x6a\xa4\ \xba\x32\x84\x57\x46\xb7\x25\x16\xcc\x46\x60\xa6\x2c\x44\x4e\xf2\ \x51\x19\xeb\x34\x56\x8c\x0f\x61\x5d\x90\x80\x5a\x2c\x0f\xed\xfd\ \xf1\x4c\x21\x83\x33\x22\x34\x72\x20\x8f\x05\xf2\x4e\x7c\xdb\x83\ \x7e\xfd\x4b\x98\x9b\xac\x03\x0a\xf1\x87\x5e\xda\x25\xb8\x8b\x36\ \xdf\x2a\xa2\x1b\x12\x99\x12\x5e\x2a\xb5\x25\x54\x85\x49\x7c\x42\ \x23\x18\x76\xdc\xb3\x92\xc4\xfe\x77\xe5\x8f\x82\x03\xc6\xd0\x78\ \x68\x31\xff\x1d\x56\xd2\xf3\x95\xc6\xbc\x08\x32\x53\x43\x7c\x65\ \xea\x81\x75\x29\xc0\xd5\x29\x82\x05\xd4\xe3\xa5\x9c\x84\x0a\x68\ \x1d\x00\xc9\x83\x70\x47\x7a\x7f\xa5\x6f\x0e\x99\x55\xa8\xb5\x24\ \x8c\x61\x89\xbc\x06\x3d\x2b\x49\x9a\x08\x15\x02\x56\x2b\x21\x82\ \x56\xc3\x78\x52\x7d\x1f\xe9\x19\x6a\x8b\x92\x65\xe0\xaf\xa5\xf3\ \x21\xb3\xce\x37\x73\x95\x19\x8b\x98\x12\xac\x20\x32\xa1\x36\x75\ \xbd\x40\x2b\x37\x88\xd0\x98\x1c\x30\x27\x7b\x49\x4d\x85\xc7\x07\ \xec\x7f\xd1\xc2\xcc\x9b\x13\x4f\x3c\x2b\xa2\x49\x06\xf3\xf0\x95\ \x41\xb5\x95\x40\xf7\x6d\xef\x75\x77\x56\x7e\xe0\x11\x56\xe9\x03\ \x66\x50\x07\xc6\xb5\xc5\xf7\x51\xa5\xf1\xd7\x84\xcb\x2f\xca\x9d\ \xf5\x0c\x43\xbd\x70\x07\x96\x89\x83\xd3\x61\x02\x90\x41\x10\x7d\ \x35\x79\x07\x4e\x1d\x86\xcd\x03\x68\xdc\xc1\xc3\x4f\xee\x6d\x69\ \x22\x6c\xb4\x02\xba\x3c\xfd\xb5\xae\xe5\x86\xc7\xb3\xf2\xdc\x43\ \xc8\xea\x9d\x0d\x80\x7d\x01\xc4\xef\x24\x5b\x91\x72\x77\x1d\x08\ \xf4\x6d\xe7\x85\xe8\x41\x29\xba\x6e\x32\x14\xcf\x6b\x50\x5f\x86\ \x1f\x3d\x84\x84\x4d\x5c\x6f\xd0\xba\x61\xeb\xa0\xb1\x37\x65\x00\ \x26\xba\xc2\x8a\x92\xde\x31\x05\x8f\x79\x3c\xee\xca\x0b\xa8\x6d\ \x85\xd8\xc3\xfa\x43\x30\x96\x0e\x48\x64\x0d\x4e\xf3\x01\xad\x68\ \xd4\xe8\x5f\x92\x64\xa8\x4d\x05\xfa\xbd\xce\xd1\x4a\x8a\x5e\xcd\ \x0d\xf3\xca\xab\x30\x43\x12\xda\x5b\xe3\x4d\xc8\x34\xae\x88\x45\ \x5a\xca\x80\x57\x4f\xd4\xab\x30\x01\x7e\x0c\x2b\xcf\x16\x69\x10\ \xd4\x1b\x15\x39\x76\x2b\x03\xe0\xc6\xb7\xe3\x0a\x26\xc5\xd0\x63\ \x45\x3f\x1a\x13\xba\xfe\x95\xd9\x22\xbe\xc1\x63\x6f\xc5\x96\xf6\ \xba\x30\x5c\x21\x07\x7e\x06\xa8\x53\x30\xd7\x25\x67\xb6\x39\x89\ \x1c\x01\x62\xed\xc4\xf0\xbb\xad\x1c\xee\x41\x48\x63\xfc\xb4\x48\ \x83\x71\xbd\x9a\xcf\xa7\xbe\xf5\x2f\xde\x05\xf4\x40\xff\xae\xc1\ \x72\x6d\xd5\x0d\xbb\x94\x11\x65\x59\x80\xd7\x57\x8a\x80\x04\xb7\ \xbf\x30\xee\x81\xac\xf5\x4a\x22\x2a\xdc\x3e\x56\x91\x96\x1a\x39\ \xda\xaa\x45\x9a\x3e\x72\x28\xda\xa1\x90\x37\x1e\x13\xfe\x27\x16\ \xd9\x7a\x99\xcb\xaa\xfd\x07\xda\xac\xe0\x9b\xcb\xe0\xe8\xad\x26\ \xc2\xba\x8b\xd0\xa8\x4b\xe8\xff\x82\x29\x1e\xbe\x58\x64\x1d\x68\ \x68\xe0\x00\x31\x82\x4f\x2f\x95\x65\xd7\x11\x42\xa2\x27\x84\xe6\ \xc6\x33\x93\xd8\xbb\x22\x56\xeb\x52\x5e\xad\x53\x0c\x73\xad\xa8\ \x92\x30\x77\x87\xe5\xc7\x80\x6c\xa0\xa5\xbe\x5e\x89\x2a\xca\xd5\ \xe5\x6d\x5b\x71\x08\x03\x95\x0c\x5b\x15\xd0\x92\x2e\x8a\x1c\x06\ \x64\xc0\xbb\x05\x30\xcc\x02\x9a\x6d\xaf\x46\xef\xa1\x40\xdb\x07\ \x43\x81\x06\xd6\x07\x97\x5c\xb7\x9e\x44\x95\x19\x47\x93\x02\xee\ \x6d\x20\x40\xc5\xc7\xc0\xf2\x03\x90\x80\xff\x0c\xec\x97\xf5\x6b\ \xc1\x73\xe7\xc0\xd0\x08\x08\xae\x29\xb2\xa0\xfd\x8b\xde\xae\x63\ \x4c\x28\x6e\xad\x93\x3c\xf1\x64\xbf\xd4\xd2\x10\xd6\x03\x58\x66\ \x90\xa3\x21\x8b\xa8\x0e\xf0\xc8\xd6\xb7\x43\x5f\x14\x8c\x94\x00\ \x4e\x49\x7a\xec\xae\x94\xe7\xd2\x4c\x0c\x09\xe3\x84\xc1\x06\xba\ \x87\xf9\xdd\x2b\xd4\xc4\x3f\xa4\x42\xa0\x7c\x42\x4a\xec\xcb\x4d\ \x22\xa1\xdd\xb8\x12\x12\x99\x13\x8d\x17\x7d\xec\xfc\x6b\x88\xdb\ \xeb\xca\x6b\xe1\x08\xd3\xc9\xce\x23\xa3\xc0\x91\x12\x8e\x26\x08\ \xb9\x35\x61\xe4\xf1\x54\x08\x95\x67\x33\x89\x98\x61\x7c\x21\x02\ \xc0\xc8\x41\xdf\x36\x2f\x05\x08\x72\x85\x59\xe8\x61\x56\x68\x6a\ \xf4\xab\x91\xb0\xe2\xc5\x7a\x86\x02\x4c\xf3\x84\xde\xf8\xea\x0d\ \x82\xe0\x57\x59\x85\x10\xf4\xfb\x27\x4f\x85\x78\x6f\x8a\xe4\xb6\ \x01\xb0\xd5\x2a\x34\x25\xc4\xbf\x07\xa0\xd3\x28\x2f\x38\xbb\x61\ \x93\x60\x40\xc3\x3f\x18\x8f\x95\xf5\xb4\x42\xe1\x1d\x6f\x51\x9b\ \x1b\xfd\xb5\xce\x22\xc6\xba\xf2\x22\xce\x2f\x04\xc6\xf3\xff\x24\ \xc6\x66\xeb\x3b\xa0\x38\x5c\xe9\x1f\x57\xf7\x6b\xa5\x8f\x32\x34\ \x86\x1d\x4a\x83\x40\x53\x93\xd9\xc7\xe3\x59\xf9\xa1\x6e\x0e\xae\ \x2d\xc4\x4e\x50\x0f\x8d\x71\xd0\x49\x18\x40\x04\x56\x20\xdb\x86\ \x8c\xbb\xae\x37\x08\xcd\x4f\x29\x73\x20\xe9\xf8\xa2\xe9\xb4\x36\ \x0e\xb2\xe3\x50\xe7\x44\x38\x8a\x3c\x31\x8d\xbd\x2b\x10\x48\xe8\ \x90\xe6\x81\xc7\x31\x54\xe9\x47\x7f\x9c\x03\x3d\xb1\xc8\x44\x70\ \x15\x3a\x1a\x13\xa6\x87\xa1\xa8\xe7\xdb\xdb\x94\x43\x14\x14\x02\ \xca\x81\x4a\x9e\xee\x4a\xfa\xb5\xae\x35\xc8\x50\x40\x46\x74\xec\ \xff\x8b\x1b\x14\xe5\xfe\xa0\x11\x2f\x8e\xae\xe4\x56\x5c\x0d\x32\ \xbb\x04\x33\x78\xe0\xb2\x40\x45\x29\x3e\x5c\xa0\x27\x1a\x59\x84\ \x4d\xc9\xaa\x20\xf1\x22\x17\x68\xde\x1e\x50\x76\x01\x52\x4a\x70\ \xa9\x06\x35\x2a\x7f\x7b\xd4\x54\x11\xb1\x40\xba\x1b\x66\x79\x29\ \x05\x80\xfe\xc3\xda\x16\xd4\x1b\xa0\x45\x70\xc7\xee\x2b\x34\x08\ \xef\xb1\xc9\x38\x32\xcc\x95\x74\x87\xfc\x98\xad\xd4\xe7\x58\x0b\ \x14\x1f\x64\x6e\x91\xa1\xaf\xa0\x7b\xe0\x1e\x27\xa8\x6b\x08\xe6\ \x16\x94\x55\xe5\x8a\xb5\x39\x0a\xa0\x12\xa2\x6b\x79\xe4\x97\xed\ \xfd\x04\x87\xed\x11\xa1\xc9\xfc\x25\x63\x43\xdc\x94\x02\xba\x54\ \xc6\x04\x01\x82\x55\x19\x6a\x5e\xe3\x01\x3e\x39\xea\x8f\xf1\xd8\ \x44\x22\x0a\x51\xe4\xf5\xa5\x52\x79\xdb\x33\x01\xb6\x2e\xeb\x9a\ \xac\xe7\x7d\xc4\x0a\x44\xfe\x35\xf4\x10\x43\xb8\x38\xc5\xa6\xe6\ \xf2\x51\x7f\x7e\x81\x56\x7e\x03\xdc\xe5\x04\xbc\x65\xb2\xdb\x08\ \x6a\x93\xb6\x1e\x64\x24\xd0\x70\x10\x6c\xf1\x11\xb7\x32\x9e\x6d\ \xd2\xd6\x59\x81\x2b\x7d\x9f\x48\xb1\x56\x62\x7e\x82\x3f\x86\x0d\ \xc0\x5a\x3d\xd4\x10\x0a\xc4\xaf\xaf\x5d\x09\xf0\x35\x81\x59\xf8\ \x58\x77\x29\xfe\xbc\x40\xed\x57\xeb\x00\x13\x0d\xb0\x2a\x2a\x14\ \x6d\xc8\xbb\x32\xc4\xa8\x73\x25\x44\x1d\x6f\x20\x3c\xac\xcb\xd3\ \x51\x79\x8c\xb5\xe3\x17\xc0\x33\x41\x58\xe9\x10\xa4\x39\x99\x8f\ \x65\x71\x2f\x59\xaf\x6a\xc5\x38\xec\x0b\x94\xad\x3a\x68\x90\xb2\ \x9e\x78\x95\x5f\x85\xda\x2a\x46\x29\x2b\xed\xc3\x05\xcb\x64\x49\ \xdb\x21\x2e\x69\x09\x86\x9d\x79\xe2\xcc\xae\xa0\xf7\xf4\x00\x3d\ \xbb\xa4\x81\x0e\xd8\x06\x4c\x29\x81\xcd\x40\x8b\xfe\x20\xac\x00\ \x54\x55\xc0\xeb\x86\x1d\x5d\xfe\xa2\xd6\x15\x31\xbd\x4a\xa0\xbf\ \x82\x83\xf2\xa2\xe5\x54\x61\xd7\x80\x62\x1b\xed\xe6\xd1\xc9\x0f\ \x10\x5c\xd2\x32\xd8\xa6\xc0\xf0\xc2\x32\x21\xaf\x87\xe0\x69\x5b\ \x7e\x02\x6d\xd1\xe2\x87\x4a\x5b\x5e\xc5\xd0\xcc\x6f\x77\xf8\x05\ \xf9\x56\xc5\xc3\x02\x0f\x4a\xec\x97\x9b\x51\x0e\x50\xaf\x9b\xe8\ \x53\xc4\xf5\xda\xbd\x24\x32\x63\x50\x0f\x1b\xa8\x02\x1a\x1e\xaf\ \x6b\xbb\xb7\x05\x06\xc0\xa2\x68\x3e\x61\xe5\x1d\xa0\x80\xf2\xd8\ \x88\x7b\x26\x91\x41\xe7\x08\x28\x9a\x00\x5b\xe9\x89\xb7\xe2\xdd\ \x7c\x7f\x45\x28\xb8\x11\x05\x98\xb3\xc1\xc0\x22\x5e\xe4\x54\x48\ \xe3\x00\x95\x9c\x81\x2a\x8d\x2f\xe7\x1e\x55\x00\xa7\x18\xbc\xa4\ \x0c\x02\x2b\xf9\x0a\x35\xf5\x9c\x59\xd9\x02\x5c\x49\x11\x46\x14\ \x54\x73\xb7\x2d\xcf\x99\x2d\xda\x3c\x90\x91\x86\xb4\xea\x54\xed\ \xfe\x77\x21\x4e\x68\x56\xc3\xd7\xb5\xad\x22\xac\x7f\x97\x86\x60\ \x0c\x15\x31\x1b\x5b\xe1\xe5\x85\x28\x34\x02\x32\x9c\x9c\x81\xb1\ \x15\xc5\x09\xf2\xdc\xa3\x61\x46\x06\xeb\x10\xb5\x9c\x59\x15\xb3\ \x1a\xc5\x7c\xa7\x2b\xcf\x36\x69\xeb\xa7\x44\x75\x0b\xd7\x60\x88\ \xbc\x95\x72\xe0\xdb\xb3\x12\x37\x78\x87\xc0\x17\x00\x3d\xfd\x2b\ \xb0\x64\x34\x0f\x0a\xdc\xfc\xda\x97\xdb\xeb\xf3\xae\xac\x1a\x09\ \x32\x71\x30\xf8\xa4\xf3\x30\x47\x17\x5e\xc3\x04\x3d\x41\xa4\x1a\ \x90\x36\xc4\x07\x6a\xdd\xe8\xcf\xa9\x2d\xfa\xfa\xa8\x73\xc1\xa1\ \x9c\xf9\x84\x45\x16\x4b\x81\x66\x30\x48\xb2\x98\x62\x5c\x37\xa8\ \x03\x76\x81\xc0\x05\x3f\xbb\x9e\x5e\xe9\x39\x89\x2e\xff\x4a\x10\ \xc0\xcc\x0b\x9d\xe7\x92\xa6\x67\xa5\x27\x61\x06\xad\xd4\x39\x87\ \x2a\xbd\xb5\xfe\x94\xc4\xf5\x67\x3c\x42\x10\x99\x64\xb0\x98\x05\ \x68\x74\x82\xc9\x86\xe1\x16\x46\x05\xa0\x3e\x6d\x7b\x63\xb1\x73\ \xaf\xab\x50\x4c\x28\x3b\xc1\x8d\x7d\xad\xc8\x09\xe1\x3c\x88\xa1\ \x29\x12\x88\xbc\x29\xd2\xb4\xed\xa0\xed\x01\xe0\x86\x02\x54\xed\ \x89\xee\x76\xe5\x99\x44\x86\x3a\x0e\x03\x4f\x04\x42\xb0\x59\xff\ \xf1\x26\x4a\x03\x95\x31\xf0\xcb\x98\x98\xb6\x15\xd8\xe2\x75\x81\ \xe0\xbc\x86\x09\x32\xd4\x1f\xd7\xb1\xfc\xf9\x32\x8f\x5f\x41\x79\ \x6f\x13\xb6\x36\x65\xa4\x0d\xc9\x7b\xda\x95\x37\x8c\x24\x56\xf6\ \xe4\x73\x92\x58\xd7\xbc\xd7\x5a\xb5\x32\x5d\x95\xcf\xfa\xf2\xff\ \x8b\x9d\x24\xf6\xdd\x6e\xa2\x30\x0e\xdb\x3e\x70\x51\x00\xc1\x0a\ \x8f\x0d\x8e\xfe\x0c\x4a\x43\x15\x02\x5d\x1f\x28\x49\xcf\xf0\xfe\ \x98\x0a\x24\xb5\xb1\x6e\x66\x84\xe6\x30\x5a\x49\x17\x52\x6f\xc0\ \xe3\x6f\x82\xf3\xbf\xfe\xdb\xfa\x02\x6a\x24\xc2\x24\xc0\x2b\x43\ \x76\x1e\x40\x64\x72\xdb\xa7\x0f\x81\xe1\xae\xbb\x0d\x99\x00\x08\ \x25\xcf\xe7\xab\xfd\x0c\x4a\xc3\x54\x6d\xae\xbb\xb5\xca\x7f\x58\ \xfd\x1d\x94\xf2\xeb\xf2\xac\x2a\x02\x6f\x7f\x86\xc5\xf0\x97\xdc\ \x3b\x9a\x86\xab\x88\x46\x47\x28\xa9\x73\xeb\x8f\xae\x0f\xbc\xaa\ \x3a\x80\x7e\x15\xca\x47\xe4\xd9\x1d\xd8\x6d\xf3\x97\x5a\xd0\x60\ \x4e\x05\x10\x74\x79\x44\xa5\x3d\xb3\xdb\x56\xc4\x83\x9a\x51\x05\ \x7f\x13\x2d\xf6\x7e\xa0\x57\x0d\x8e\xda\x2a\xce\x12\x94\x5b\xd7\ \xdb\xf8\x45\x85\x9c\xd2\xc6\x1d\xa0\x0a\xc3\xcc\xe9\xc5\xe3\x08\ \x3d\xeb\x04\x84\xfd\x7a\x29\x3a\x51\xc5\x5b\x2f\xd0\x10\xfc\xef\ \x0a\xa6\xf8\xf5\x0b\x58\xe0\x4a\x26\xae\xdf\xbb\xf2\xdc\xe1\x40\ \x73\x03\x72\xb0\xf8\x35\xd7\x75\x3b\x20\xe3\xa3\xc9\xd7\xc6\xb7\ \xcc\xc7\x3f\x2e\xac\x1e\xc0\x0f\x2b\xb8\x03\x34\xda\x5e\x4c\xbf\ \xf1\x36\x42\xe6\x2a\x42\xc1\x06\xd8\x04\xf2\x33\x30\x60\x27\xd4\ \x02\xf4\x1a\x10\x7a\x45\xa6\xf2\x31\x8f\x7a\xe6\xb6\x01\x62\x07\ \x0d\x6f\xf4\xee\x12\x80\x63\x6f\xe7\xdc\x19\xe2\x4c\x71\xa6\x95\ \x81\x94\xb5\x29\xa5\x5d\x0c\x6b\xa8\xe8\xe6\x0e\x1d\x43\x4c\x4e\ \x5f\x7a\x03\x4c\x3c\x20\x03\xdb\x89\xac\x9d\xec\x95\x39\x06\x44\ \xc9\x1a\x40\xdf\x90\x0a\x58\x6f\xf0\xb6\xe3\xbc\xdb\x95\x1f\xa3\ \xbb\x0c\x83\x3e\x4c\x1e\x6a\x46\xea\xf5\x36\xd6\x68\xe5\x51\x20\ \x61\x41\x2b\x74\xe5\xef\x2b\x5f\xba\xe6\xbc\xa0\x79\x03\x2d\x1d\ \x06\x00\xa4\x2f\x84\x65\x01\xa8\xee\x6d\x3d\x4b\x0d\x1a\xc4\x6d\ \x92\xc5\x83\xc6\x10\x09\x48\x78\x08\x62\x18\x07\x7f\xe4\x5c\xe7\ \x03\x33\x67\xfc\x20\xb7\x21\x9d\xc3\x64\x0d\x1c\xfa\xa6\x04\xe8\ \x77\x07\x9a\x09\x7a\xea\x10\xce\x5b\x19\x42\xff\x92\x80\x84\x5f\ \x1d\xda\x61\xe8\x2f\xac\xc0\xfe\x0a\x3f\xd2\x91\x95\x43\xc8\x15\ \x2d\xdc\xc8\x26\x5b\x4c\x6d\x71\x00\x1b\x07\x16\x0c\xda\x61\xf3\ \x71\xa0\xf9\x4c\x6e\x13\x6a\x46\x8b\x22\x9e\x8d\xd6\xe2\xfb\xbb\ \x22\x32\xa5\x18\xe7\xa6\xa6\x5e\x63\x5a\xcb\xf7\x5f\x05\xc6\x8a\ \x90\x62\x41\xef\x30\x49\xa1\x9e\x9e\x6e\x50\xac\x79\x3d\x53\x98\ \x4c\x74\xb8\x23\x93\x3b\xa7\x33\xe1\x81\x5c\xbf\x19\x30\x1b\x25\ \x83\x0c\x22\xc3\xe6\xef\x60\xfb\xc3\xbb\x0d\x03\x0a\x40\x07\xe0\ \x6b\xb1\x8d\x76\xde\x2c\xcf\x20\x91\xb3\x5e\x1a\x8c\xd2\x3b\xde\ \xf8\x6b\x74\xa7\x54\x25\xb0\xe1\x61\xb5\xfb\x52\x58\x56\x24\xa8\ \xd0\x4d\x4e\xe2\x06\x4b\xde\x94\x02\xbb\x8c\x0c\xd8\x50\x84\x45\ \x6a\x84\x81\xc7\x43\x58\x99\xcf\x8e\x3d\x60\xd8\x81\x24\x8f\x1e\ \x16\xee\xf5\x41\x8b\x50\xe6\xd6\xa8\x7e\x50\x05\x7d\x63\x80\x81\ \x17\x5c\x51\x0e\x0e\x13\x00\x5f\xbf\xd8\x94\xb2\x36\x0e\x84\x43\ \x0c\x9b\x6b\x60\xe3\x3a\xa7\xe0\x24\x40\xf7\x84\xc7\x76\xc3\x1c\ \xa0\x3c\x15\x22\xf3\x07\x08\x18\xe3\xa9\xb5\x21\x30\x4a\x81\x87\ \xca\xdb\x0f\x73\xfa\x05\x3a\x25\xac\x0e\x35\xd6\x7e\x09\x4d\xc1\ \x1d\x2d\x42\xb1\x7a\xfd\x77\x50\x89\x78\x11\x6c\x63\x05\x7f\x18\ \xce\x84\x70\x5f\xe7\x8d\x1e\xf6\xb6\xa8\xde\x6e\xc9\xc0\x8d\xe2\ \xc4\x8c\xaa\x8c\xde\xef\x60\xfb\x44\x6d\x43\xff\x21\x43\xde\x21\ \xc2\xd2\xb4\x28\xf2\xff\x6d\x39\x0b\xa0\xac\xd6\x76\x0c\x88\x57\ \xc4\x2f\x1d\x7c\xf4\xd8\x0a\x8a\x33\x20\x48\x5f\x74\x4e\xf1\x30\ \x83\xcf\xba\x9e\x64\x71\x6b\x9b\xdc\x16\xe1\x0c\x01\x6d\x73\x88\ \xd6\xd5\x2e\xda\x11\x2b\x89\x7f\xe8\x6f\xcc\x67\x87\x34\x10\xa8\ \x56\xfe\x8b\x88\x14\x54\xd4\xf2\xfd\x74\x25\x49\xc3\x1e\x4e\x86\ \xdf\xe5\xa9\x64\x31\xc0\x26\x88\xac\xb8\xe0\x3d\x5f\x5d\xa1\x00\ \x97\x78\x58\x9e\x42\xcf\xed\x37\xf6\x87\xef\x9e\x95\x19\x94\x49\ \x8c\x00\x93\xc5\xe8\x37\x96\xed\x40\xf0\xbd\x2d\x3f\x9c\x89\x57\ \x0d\xbb\x62\x24\x8c\x5e\x51\x4a\xa7\xb7\xeb\x20\x50\x98\x93\xf8\ \xff\x20\x6e\xc2\xd4\xf5\xea\x27\xc3\xd5\x2f\x04\xd0\xf9\x32\x4e\ \xf1\x8b\x2b\x34\x32\x5a\x00\x2b\xaa\x40\x95\x7d\x90\x2d\x78\x67\ \x10\xc1\x5d\x74\x2a\x91\x60\x03\xce\xbe\x33\xef\xbb\xd3\xf2\xc3\ \xb7\xa7\x0c\x78\xc1\x06\x68\x90\x63\x70\xf2\x36\xe5\x0f\x6a\x92\ \x35\x55\x58\x8f\x4c\x8c\x5f\xea\x45\x2f\x00\x63\x07\x21\x07\x3a\ \x1e\xab\x26\x7e\xd5\xf9\x89\x00\xd8\x57\x88\x0b\x15\xa8\x56\x72\ \x5b\xa7\x2b\x81\x5a\x77\x08\xea\x11\x10\xa7\x48\x98\x00\x68\x1f\ \xf2\x6e\x57\x9e\x6d\x7b\x1a\xc0\xb9\x11\x4e\x55\xeb\x16\xe5\x78\ \xe0\xed\x5d\x05\x25\x22\x88\x0b\xd8\x3a\x5d\x59\x1c\xa6\x82\xeb\ \x96\xae\xeb\xd5\xd1\x13\x7b\x25\x17\xda\xa4\xd7\x0b\x87\x29\xbc\ \x0f\x8d\xdb\x23\x5c\x29\xc1\x6d\x42\x4e\x3c\x80\x74\x1e\x8a\x98\ \x99\xe6\xc7\x4d\xf9\xd1\x48\x88\x30\x84\x0a\x79\x95\x70\xc0\x57\ \xbc\x0d\x8d\x4e\x30\x4d\x68\xa2\x43\x50\x40\x4d\x2e\xd7\xd3\x9c\ \x70\x2f\x12\x7a\x2c\x80\x25\xbf\x68\xb2\xc3\x85\x50\xc8\x6f\xd0\ \x54\x10\x59\x32\xee\x05\x8a\x41\x36\x05\x78\xc4\x75\x90\x71\xbf\ \x37\x5d\xfa\x6b\x53\xe2\xcf\xd4\x36\x03\x63\x07\x0b\xcd\x09\xc9\ \xc8\x13\x26\xfe\xca\xf4\x41\xc2\x81\x77\x1e\x58\x25\x7b\x57\x30\ \xa2\x11\x43\x9f\x95\x72\xaf\x0f\x78\x6d\x03\x0f\x46\x11\xcc\xcc\ \x14\x2a\xc1\x3d\x2a\x42\x6f\xcb\xeb\xdd\x99\x22\x91\x10\xd0\xd7\ \xed\x0f\xc1\xf6\x89\xde\xf6\xbf\xbf\xde\xc4\x37\x3d\xd2\xd6\xce\ \x76\x20\xa8\x0a\x46\x42\xfd\x4a\xf8\xf3\xaa\x3a\x71\x35\x80\x7d\ \x5a\x25\xc5\xab\x31\x15\xf0\x82\x39\x03\x31\x26\x3c\x3b\xf6\xae\ \x28\xbf\x0d\x60\xa7\x00\xe2\x9a\x70\x0c\xee\xd3\x95\xf9\xd3\x23\ \x6d\x55\xd1\x80\xbb\x0c\x08\x64\xa6\xf4\xbe\xc6\x47\xfe\x85\xc8\ \x04\xbd\x69\x68\x17\xa1\x7a\xd8\x2f\x33\xe0\xbd\xe0\xd2\x42\x48\ \x3b\xbe\x32\x26\xc6\xcb\x0c\x10\x14\x30\xd5\x00\xb5\x91\xbd\x4b\ \x67\x6c\x62\x14\xb3\x12\xa2\xb1\x5e\xfd\x09\xf5\xe8\xc7\xfe\xe4\ \xfc\x61\x91\xb6\x72\xca\x26\x89\x65\x92\xdc\xff\xed\xb0\xb2\x3e\ \xb7\x8b\x76\x50\xbb\x44\xc9\xae\x24\x0e\x7e\xd6\x78\xf8\x63\x00\ \x23\xe3\x95\x72\x10\x9e\x9e\x08\x19\x57\x90\x5a\x0b\xef\x5d\xde\ \x9b\x02\x8d\x9c\x89\xfd\x80\x3d\x51\x5e\x5f\xa7\xb4\xc7\x58\x1b\ \x7f\xc4\x5a\x48\x6a\xcc\x09\x4d\xbd\xb9\x5b\xad\x6f\x0a\x07\x89\ \x77\xf0\xca\xdd\x60\xea\xd1\xcb\x57\x54\x81\xe8\x07\x02\x4d\x94\ \x6e\xc5\x7c\x55\x06\x4d\x31\x39\x82\x44\xcf\x3a\x2b\x83\xa7\x32\ \xa5\xb1\x36\x49\xd3\x76\x65\x43\x19\xde\xe5\x69\x68\xe5\xfe\xb0\ \x2b\xe9\xb9\xb1\x81\x15\xac\x0b\x8f\x6e\x51\x42\x27\xe1\xfd\xfb\ \x03\x62\x02\x52\xd8\x55\x37\x23\x29\xb8\x5e\xa0\x8a\xef\x80\x46\ \x52\x85\xfa\xd4\x4b\x61\x59\x18\x15\xaf\x42\x29\xc1\x28\xbd\x37\ \x32\xe1\x62\x26\x20\x80\x57\x8c\x5d\x29\x13\xd2\x8f\x26\xde\xaa\ \x8f\x9b\xf2\xd3\xfa\x37\xf4\xb1\x0e\x16\xc0\x30\xc0\xba\x1e\x08\ \x40\x0a\xe4\x0b\xd4\x00\xa0\xf3\x46\xbe\x00\x58\x05\xf0\x3d\xb0\ \x43\xc3\xb7\xa3\xe9\xd3\xae\x40\xe9\x7a\xbd\x0d\x40\x1a\xc1\xe5\ \x83\x5b\x1b\xce\x24\xb0\x34\x30\x0a\x21\xe3\x0d\xb9\x99\x2d\xa8\ \x74\xb7\x2d\x3f\x24\x72\x80\x13\x6e\x98\xff\x22\xb9\x8c\xed\x60\ \xee\x81\x6c\x1d\x36\x4e\x03\xfb\x5c\xa2\x06\x5b\xc0\x01\xa3\x58\ \xab\x8b\xd7\xb9\x9a\x9c\xff\xb4\xa8\x01\xb1\x01\x06\x05\x02\x5b\ \x67\x5f\x21\x24\xb6\xa0\x34\x03\xec\xb4\xfe\x3f\xeb\x73\xfa\x03\ \x30\x7a\xfe\x34\x49\x83\xd0\x2d\xb4\x0e\xe1\xf4\x97\xd5\x24\xed\ \xcd\xae\x2d\xd8\x7e\xa8\x32\x0b\xaa\xdf\xed\x11\x27\xd0\x60\x14\ \x9f\x70\xd5\x02\xc8\x27\xbd\xa4\x16\xa4\x21\x9e\x02\x6d\x2b\x74\ \x91\x77\x05\xd1\x76\x3d\x89\xb3\xc9\x1d\xcf\x29\xe4\xe7\x5d\x79\ \x42\x4a\x4c\x20\x84\x12\x0c\x02\xd6\x3b\x54\xa7\x1a\xf7\xbc\xd9\ \x9f\x84\xe5\x01\xa8\xdd\xb0\x32\x8a\x17\x8a\x3e\x41\xfd\xb7\x65\ \x88\xb7\x55\x88\xe9\xbd\x60\x9e\x8b\xf3\x15\xcc\xa1\x04\xde\x01\ \x4f\x57\xee\xae\x64\x91\xc8\x89\xa1\xae\x67\x10\xc5\x19\x64\x03\ \xea\x63\xb8\x7d\x26\xb8\x01\x15\x20\xde\xec\x69\x3d\x15\xf0\xb0\ \xde\x5f\xe9\x9d\x6d\x01\x2a\x20\x09\xc3\x07\xce\x78\x1a\x1f\x04\ \x1a\x8d\xb4\x32\x96\x15\x6e\xd7\xef\xf6\x12\x2a\x01\x98\x54\x85\ \x06\x65\x5b\xf9\xdc\xa8\xdc\x71\xd0\x8a\x55\x18\xe0\xad\xa5\x0d\ \xed\x83\x0a\x87\xf7\x71\x57\x1e\xe3\x2d\x0c\x6d\xb2\xe0\xfb\x20\ \x38\xb7\xde\xf1\x13\x4f\x71\x64\xaf\x48\xe3\x60\x53\xd3\xbf\xe7\ \x1e\xc0\xf2\x80\xae\x04\x5d\x95\x16\x5f\x6a\xe4\x40\xfd\x4b\xce\ \xc9\x7a\xa3\x3b\x4f\x16\x73\x6f\x4a\x11\x95\x02\x7c\x81\xb0\xc2\ \x16\x52\x84\x47\xfd\xc7\x99\x7f\xb6\x11\x22\x26\xcc\xeb\xfe\x4c\ \xe4\xeb\xe5\xc0\xa2\x06\xc4\x6a\xe1\x4d\xac\xac\xb0\xe6\x9d\xb0\ \xf4\x5f\x5d\x6b\x4f\xd1\x92\xe8\xaf\x04\x2d\x90\xd3\xac\x07\x39\ \x63\x58\x37\x44\x45\x8f\x7c\x83\x44\xdc\x1c\x31\x4f\xec\x2a\x10\ \x6d\xd5\xc3\xed\x3b\xe3\x7f\xe6\xb7\x41\xbf\x14\x2a\x5d\xf8\x4b\ \xbc\xab\xed\x6d\x32\x64\xfb\xd5\xd0\x42\x19\xe2\x0b\x01\xaf\xb4\ \x2f\xc8\x38\x10\xcf\x03\xa0\xda\x2f\xdb\xb6\xe7\x6d\x81\x5c\x36\ \xe4\x8e\x5a\x29\x05\x18\x4f\xf2\xb6\x08\x9d\x58\xe4\x9c\x32\x04\ \xfc\x20\xe7\x9a\x1e\xb3\xdb\x67\x82\xdb\xca\x70\x3a\xbc\x4e\x21\ \xff\x8b\x13\xd3\xdf\x2e\x9a\x57\x04\x69\x01\xf0\x18\xe8\x4e\xd6\ \x98\xb7\x01\x70\xfb\x85\xe1\x1d\x3a\xdd\x75\xeb\xb1\xbc\xea\xc5\ \x95\x04\x1e\x44\x01\xb4\x8d\x8e\xa4\x5f\xe5\xaf\x94\x36\x29\x8b\ \xef\x4c\xe8\x50\x5f\x7b\x0c\x2c\xe5\x47\x66\x89\xfe\x19\xf4\xeb\ \x40\xef\x0c\xf9\x80\x4e\x8c\x01\x19\x08\x98\x01\xca\xbd\xdf\x16\ \xf4\x98\x10\x0d\x28\x14\x17\x34\x71\x5e\xb8\x22\xd7\x5f\x19\x9e\ \x09\x0d\x0e\x76\x4d\x84\x9c\xb9\x67\xa5\x24\xe4\xab\x6b\x79\xe8\ \x98\xc0\x16\x0c\xea\x00\x8f\x0d\x96\xf2\x23\xbd\xed\x60\x3a\x00\ \xe6\x22\x86\xcd\x27\xf1\x16\xbc\x5b\x08\xaf\x40\xdd\xfd\xcb\x12\ \x0c\xd3\xf7\x1e\x63\x11\x14\x06\x4c\x9c\x7e\x9e\x15\xf0\x0b\x00\ \x65\x80\x4a\x7d\xcf\x40\x75\x90\xcf\x0a\x5a\x09\xc8\x54\xeb\xaa\ \xc9\x41\x63\x88\x29\x3f\xb6\x12\xca\x4f\xbb\xf5\x00\x6d\xb5\xf5\ \x43\xc1\x28\xb0\x4b\xac\x7b\x93\x4f\x9c\x21\x64\x8b\x36\x4a\xc1\ \xe4\xf2\x8b\x91\x8f\xfe\x9c\x88\x51\x82\x2b\xac\x1d\x9c\x9f\x2c\ \xeb\x08\x2c\x3f\x2e\x78\xef\x44\xee\xf9\xde\x95\x26\x38\xff\x81\ \x9e\x7a\x82\x45\xf1\x85\x4b\xfc\xde\x95\xfe\xf4\x33\xad\x0c\xa1\ \xaf\x08\x07\x00\x43\x3c\x31\x08\x68\xbf\x7a\x03\x88\x0c\x0e\x08\ \xdf\xb0\x55\x95\xbc\x9c\x01\xb3\x20\x50\xe3\xc7\x8b\x94\x3f\xc3\ \x42\x1b\x51\x07\x32\x20\x60\xfd\x71\x01\xaf\xb3\xc8\x94\x0c\xf3\ \x5a\x00\xb7\x01\x33\x80\x81\xfa\xe3\xae\xfc\x60\xb8\x81\xbe\xdb\ \xe0\x7b\x84\xff\x81\xf2\xbe\x86\x2a\x06\x42\xc0\x33\xc1\xa0\x06\ \x16\x94\xca\xaf\x10\x99\x4e\xcc\xaf\xe7\x3a\xa6\xeb\x86\xb6\xd7\ \x42\x1f\x18\xd4\x65\xa0\xed\xbf\xd9\xa5\xbc\xb3\x52\x45\x2b\x07\ \x3e\x39\x6d\x5d\x51\x20\x9e\xf1\xcb\x3d\x6c\xcb\x0f\x8a\x5b\x11\ \x6f\x8d\x89\xfa\x10\x70\xd3\x13\x36\xa4\x32\x27\x0a\xf0\xdf\xf1\ \xf2\x4d\x10\x46\xbe\x0c\x8a\xa0\xdc\x90\xc2\xcb\x4a\x08\x98\xf1\ \x0e\xb8\x06\xb4\x5c\x89\x5a\xf8\x7b\x57\xd0\x4c\xc0\xe2\x40\x9e\ \x2a\x45\xf0\xbd\x8f\x67\xe5\xd9\x28\x0d\xf6\x71\xe8\x7b\x44\x71\ \x10\x6b\xaa\xbe\xfd\xae\xdb\xad\x20\xe9\x7b\x6c\x18\x59\x6e\x0b\ \x2b\xbc\x72\x30\x74\xcd\x68\xc9\x22\x7d\x7e\xd1\x62\x29\x02\x5d\ \xc6\x73\x89\x36\x7f\xee\x64\x1d\xef\x59\x91\xdd\xae\x9b\x80\x0d\ \x81\x4c\x32\x2a\xe7\xc7\x42\xa8\x3e\x8b\x37\xe4\xdc\x13\xfc\x24\ \xa0\xd3\x88\xff\xff\xf7\x8b\x66\x88\xd3\x8a\xe9\x26\xa4\x06\xf2\ \xf8\x02\xd2\xcf\x09\xd0\xc8\xda\x26\x70\xe9\x5e\xc8\x9f\x60\xfa\ \x9e\xc6\x7a\xbc\x3a\xd2\xac\x15\xa9\xb9\x48\x8d\x55\x7b\x02\x04\ \x0e\x66\x28\x10\xaf\x03\xa9\x59\x7b\x10\x37\x9f\xf5\x87\x02\x24\ \xd8\x19\x01\x2a\xd7\x2b\x54\x36\x81\xc8\xbe\xf5\x02\xc5\x5f\xb8\ \xb0\x6b\x6d\xf2\x83\xa3\x67\x73\x8d\x83\x20\x6e\x8c\x09\xf4\xca\ \xb9\x21\xd1\xff\xaa\x93\x80\x71\x2e\x54\xef\xa0\x7f\x12\x0b\x7b\ \x53\x86\x08\xe1\x87\x84\xd3\x18\x11\x58\x6a\x29\xf1\x71\x57\x1e\ \x83\x2d\x1c\xb7\x57\xa5\x2a\x22\x72\x05\x3e\xa3\x6f\xc7\x5a\xa8\ \x5b\xae\xdd\xc0\xf3\x0e\x31\xa2\xfa\xdd\x5f\x59\x99\x76\xc1\x54\ \xa3\x43\x8b\xfe\x35\xda\x76\x55\x70\xa5\xe0\x7f\xbe\x03\x59\x47\ \xce\x6c\x5b\xb8\x19\x9b\xf2\x4c\x71\xc3\xf9\x86\x60\x17\xfc\x53\ \xa4\x2f\xf2\xf6\x05\x82\x83\x49\x0d\xb0\xc4\xcb\xa0\xe1\x28\x87\ \x5d\xe8\x05\x53\x0a\xd5\x0c\x26\x2f\x9a\xb8\x2f\x2e\x10\x18\x4b\ \x55\x4e\x49\x16\x23\x7b\xee\xc3\x0c\x8a\x5b\x5b\x29\x3c\xd8\x13\ \xeb\xad\x05\x9c\x46\xc1\xdf\x77\xdb\xf2\x83\xe2\x86\xb2\x1f\x64\ \x2e\x60\xb7\xd6\xfb\xf1\xf6\x61\xd1\x29\x3e\x1e\xb2\x8e\x17\x67\ \xee\x24\xae\xfd\x4a\x2b\x0d\x82\x28\x57\x82\xd4\x63\x79\x21\xde\ \x00\x05\x2e\x15\x76\x5a\xbf\x4b\x83\xd2\x2a\x79\x5b\x0a\xb6\x25\ \x60\x72\x88\xae\x41\x5d\xbf\x4f\x1b\x8f\x9d\xdb\x67\x8e\x9b\x9a\ \x94\x81\x9c\x07\x23\xa2\x5a\xe7\x81\xb9\x38\x0a\x43\xdc\x13\x78\ \x3f\x03\xfb\xb7\xb7\xa5\x04\x55\x73\x8f\xeb\x2e\xad\xd7\xf7\xd5\ \x1b\xd4\x71\xf3\x12\x5c\xc3\x56\x60\x4a\xbc\x5e\xc2\xbe\x43\x0d\ \x79\x19\xec\x6b\xd1\xb8\xaf\x5d\xae\xc5\x03\x32\x6e\xb6\xe7\x39\ \x19\x40\xb0\x1d\x02\xa7\x68\xc4\x8f\x7e\x20\x19\x0a\x8a\x42\x16\ \xbb\xd2\x29\xad\xd8\x2b\xb9\x85\xf4\x15\x30\x94\x10\x2a\xe8\x2f\ \xf2\x15\xbc\x10\x13\x32\x89\x23\x8a\x09\x6a\xd9\x36\xaa\xb4\xc3\ \x32\x04\x4f\x05\x29\x04\x68\xc5\xc2\xc8\x4e\x06\x53\xf5\x7b\x53\ \x9e\x72\x5b\xa8\xfa\x77\x84\x7e\x80\x8c\x52\x52\x6e\xe7\x9b\xb9\ \xed\x2a\x02\x21\x01\x80\x06\x29\xaa\xbd\xbc\x73\x5b\xb1\xa4\xc4\ \x92\x01\xbc\xcd\x2f\x75\x95\x02\x14\x6e\xe1\x1f\x53\x51\x76\x54\ \x32\x04\x4c\x8c\xd2\x84\x5e\x07\xcb\x0c\xc0\xf4\xe6\xa3\x0c\xe4\ \x7c\xa2\xb8\x41\x2d\xa5\x0f\xf1\xe0\x15\x57\xa8\xdd\xe7\x7d\x97\ \xf3\x01\xdd\xf6\x81\xde\x6d\x85\xac\xe0\x7e\x85\x0a\x14\x67\x91\ \x2a\x74\xf4\x85\xcb\xab\xd9\x07\x4c\x75\x60\x33\xb4\xe2\x5a\xdb\ \xbc\x13\x62\x60\xe9\x49\xb0\x4e\xe2\xa8\x3b\xc1\x72\x5f\xbf\x7f\ \x7c\xd0\x6f\x98\x3f\xad\xd2\x20\x6a\x19\xd1\x46\xec\xeb\x7f\xd5\ \x72\x80\x17\x5c\x3f\xc4\x04\x45\x01\x36\xc8\xe5\xc2\x0b\xae\x93\ \xb0\x72\x15\x3c\x45\xf0\xdc\xeb\xf5\xc5\x15\x02\x20\x08\x22\xac\ \x51\x64\x3a\xa1\x79\x4a\x3e\x2c\x02\x01\x83\x26\x76\x86\x4b\xc0\ \xba\xe7\x5d\x05\x1c\xee\xb6\xe5\x87\xec\x2e\x0c\x26\x86\xb4\x28\ \x47\x57\xd7\xbb\x77\xdd\xc5\x57\x84\x5a\x0f\x0d\x34\xd5\x11\xc2\ \x2f\x6c\x69\x15\x97\x16\x50\x2e\x30\xea\x7f\xb1\x2b\xe5\x57\x5b\ \xe9\x04\x4c\x88\x41\x0f\x5f\x2f\x28\xb9\x3c\xec\x22\x96\x23\x06\ \x42\xe8\x16\x82\x8c\x34\x1e\xb5\xbc\x67\x7f\x0e\xb7\x30\x12\xca\ \x60\x7e\xac\xec\x72\x45\xca\xb7\x95\xc9\xc0\xca\x07\xe2\x18\x7d\ \xda\x12\xfb\x65\x26\x01\x35\x9e\x08\xe4\x37\xea\xbe\x55\x08\xbc\ \x44\x51\xa2\x5e\x03\x62\x70\x62\x44\xce\x76\x8c\x9e\xc2\x25\x8b\ \x05\x96\xbe\x60\xaa\x42\xe8\x7c\x3c\x36\xe3\xfa\x73\x76\xdb\x40\ \xa1\x5f\x75\xdd\x00\x7a\x25\xbf\x8f\xe3\x87\x53\xda\x4a\xdc\x61\ \x36\x90\x57\xf1\x1e\xe7\x97\xc3\x06\xfe\xef\x90\x90\x83\x36\x7f\ \x7c\xe1\xc0\xb8\xf6\x6d\x85\x15\x18\x03\x0c\x64\xfe\x93\x3d\x3d\ \x1c\x61\x4f\x49\x21\xab\x04\xca\x2a\x4c\x08\x1e\x27\xf0\xe3\xf9\ \x55\x04\x8c\xba\x75\xb8\xea\xf5\x18\x94\xdb\xfa\xae\x6b\x42\x68\ \x42\xf5\x84\x2a\xea\x16\x03\x10\xeb\x1e\xd8\x48\x84\x55\x81\xe6\ \x15\x71\xd2\x0b\x58\xcf\xca\x3c\xa1\x4a\x02\x62\xf8\x8a\x8c\xb1\ \x0d\xf2\x05\x1a\x22\xe0\x00\xce\x2c\xb8\x84\xd0\x18\x0c\xaa\x8f\ \xf6\xfd\x08\xfd\xe0\x92\x0d\x90\x31\x07\xc8\x92\xf8\xea\xf5\x20\ \xac\x24\xa8\x46\x60\x62\x0c\x0b\xac\xed\xa9\x22\x93\x41\xf8\x73\ \x63\xd6\x03\x7e\x6c\x7d\xc9\x84\x09\x48\x26\x64\xec\xb8\x32\xe4\ \x48\x7e\x99\x47\x11\x21\x23\x28\xad\x23\x31\x2a\x2b\xfc\xe5\xfc\ \xb8\x29\xcf\xf4\x06\x98\xae\x22\xfb\x42\x4f\x04\xa9\xef\xbb\x9b\ \x82\x51\x2e\x7a\x05\x80\x1b\xaf\xd7\x26\xb6\x2f\x5c\x4f\x46\xed\ \x19\x84\xee\x89\x64\xee\x45\x12\x07\x5b\x71\xc4\x41\x90\xec\xda\ \x0e\x3c\xc4\x4d\x91\x58\x1b\xe5\xe5\x87\xfe\xf3\x84\xe0\xed\x83\ \xda\xd4\x7c\xe2\x92\xe1\xbd\x6a\x53\xe8\xe2\x65\x82\x4e\xf6\xb6\ \x4d\x5a\x59\x85\x66\x12\x33\x96\x04\xb5\xb8\x99\x2f\xb8\xed\xba\ \x12\x15\xb4\x82\x09\x76\x43\x4b\x3f\x5b\xfc\x52\x2a\xac\x2a\x08\ \xea\xe6\x30\xda\x66\x4f\xc9\x36\x95\x0c\x54\x5c\x78\x70\x25\x98\ \x78\x3c\x0d\x0f\x7f\x52\xc9\xa4\xc9\x3a\xe1\x51\x22\xac\xbc\xf7\ \x93\x38\x91\x96\x49\x13\x94\x4a\x4c\xff\x2f\x67\xe4\xb4\x92\xa7\ \x04\x5a\x30\x2c\x04\x72\x7f\xa5\x77\x98\x93\xe2\x28\x12\xdc\xeb\ \x26\x2f\x89\xd3\xb3\x32\x45\x05\x32\xa3\xa7\x8e\xb2\xb9\x89\xce\ \xed\x63\x6e\xfb\xcc\x25\x5b\x8f\xa2\x98\x9a\xf5\x22\x98\x65\x6d\ \x7e\xbf\x8b\x60\x59\x21\x13\x02\x7e\xeb\x95\x45\x90\xb8\xf0\x82\ \x11\xc3\x63\xc8\xa2\x00\x34\x18\x5f\x28\x2b\x89\x9a\x77\x83\x71\ \x58\x19\x11\x56\x73\x5c\xc5\xc3\xf5\x8b\x23\x52\x64\x58\x9f\x20\ \xe4\xaf\xa4\xa5\xca\x47\x7c\xd7\x41\xcf\x3e\x69\x90\xeb\x5c\x67\ \x76\x85\x21\xe8\x4d\x41\xea\xe7\xdd\x5d\xa9\xbf\x1a\xde\x99\xf5\ \x53\x40\xed\x6a\x84\x78\x1d\x96\x95\x67\xc3\xd0\x07\x39\xd4\x3a\ \xc2\x2f\xfa\xb6\xe2\xf4\x91\x80\x92\x42\xdb\x77\xc5\x7c\xf6\x61\ \x29\xf6\x61\xf9\x41\xdd\x25\x1e\x16\x28\x10\xa0\x14\x44\x7c\x08\ \x5f\x8a\x53\x90\xdf\x84\x4c\x6a\x83\x74\x46\x2e\xaf\x70\x94\xd0\ \xb7\x85\x4b\x21\x04\xcc\x00\x78\xe7\x46\x96\x09\xea\x6e\x80\xaf\ \x2b\xdc\x42\xd7\x31\x68\xe9\x69\xf2\xf1\xcc\x26\x03\x48\x09\x5c\ \x48\x64\xb6\xd0\x08\x89\x27\x46\x1b\xb0\x75\x59\x0f\x60\x1f\xbd\ \xe2\xa3\x77\x83\x05\x75\x34\xb6\xe9\x32\x31\x7d\x71\x58\x56\xd1\ \x28\xb6\x6e\xe0\x3e\xb7\x4c\x96\xf3\x9e\x6a\x94\xb6\xf2\xed\xb5\ \xc2\x0c\x5b\x57\x58\xa6\xd5\xc7\xc3\xf2\x18\x6f\x57\xa9\x5b\xc0\ \x2c\x02\x58\x0f\xda\x3f\xf3\xed\x81\x10\xe6\x90\x00\x04\x86\x26\ \xce\xea\x31\x7c\xe9\x70\xad\x90\x3f\xa1\x70\x7e\xa7\x2d\xf4\xdc\ \x76\x8a\xd2\xa7\x43\xcb\x69\xbd\x5e\x5c\x4f\x16\x48\x46\x88\xd4\ \x4b\x07\x3c\x1a\xea\xf6\xd0\x6f\xba\x7f\x84\x90\x4e\x3c\x2d\x05\ \x9a\xd5\x50\xea\x84\xf3\x4e\xdd\xa3\xc6\x77\x35\xce\x51\x8c\x06\ \xe8\x2c\xaf\xf0\x31\xbe\x32\xfe\x5a\x00\x12\xcf\x59\x49\xde\xaf\ \x98\x30\x2b\x0c\x63\x6c\x09\x74\x44\xdb\xc0\x4f\xe6\xa6\x48\xe7\ \x76\x8a\xf6\x33\x46\x52\xe2\xda\x89\x75\xb6\xef\x5d\x79\x0c\xb7\ \x03\x8a\x6a\x13\x60\x54\x34\x7e\x92\xea\xe1\xbf\x19\x56\xd0\x24\ \xc1\x60\x6e\x15\x3d\x15\xf6\x45\x57\xc6\x0f\xc3\xd8\x22\x16\x04\ \x90\x1e\x7b\x05\xd5\x28\x10\xb6\x2e\xd0\x2c\x9e\x02\xba\x62\x86\ \x15\x50\x2a\x10\x3e\x57\xa2\x02\x14\x0d\xb2\x2a\x1c\xda\xfb\xc6\ \xed\xfa\x93\xc7\x68\x3b\x65\xf4\x0d\xfb\xc3\x8c\x5e\x51\x4e\x27\ \x7a\x53\x51\x26\xcc\x7d\x42\x85\xac\x7f\x59\x23\xe3\xb9\x16\x94\ \x93\xf0\x61\x5e\xc8\xe5\x40\x1c\x7e\xa0\x0b\xb1\xa2\x52\x04\xc1\ \x88\x1a\x56\x40\xa8\x17\xb1\x31\x3c\xc8\x01\x92\xa6\x18\x29\xe4\ \xc7\x4d\xf9\x81\xb8\xc5\xa4\xb3\x4a\x86\x1b\x90\xad\xbf\x0d\x5a\ \x87\xb4\x52\x16\x3b\xee\x95\x99\x94\xb8\xed\x02\x25\x5f\x59\x3b\ \x84\x86\x1f\x4a\x8b\x3e\x5f\xe2\x57\x10\x69\x01\xe8\x00\xcf\x41\ \x3d\xb8\x98\x67\x65\xe0\x06\x09\x7f\x22\x74\xd8\x9b\xa4\xa2\x8c\ \x82\xbb\x6d\xf9\x41\x70\x68\xe8\x79\xc0\xd5\x13\xa0\xd7\xf7\x35\ \x35\xd0\xa1\x94\xfa\x2f\x01\x2c\x0f\x92\xdd\xd5\x8a\x2b\xc8\xf5\ \x3b\x86\x08\xe5\x3a\x42\x4f\x71\xa5\xc1\x9d\x64\x7d\xe5\xae\x34\ \x62\x2a\x54\x63\x15\x1b\x2a\x71\x0e\x43\x1e\x71\xee\x41\x7a\xf6\ \x60\x18\x0d\x9a\xf3\xd3\xae\xa0\x68\x29\x75\xca\xb5\x43\x15\xf3\ \xfe\x40\xa8\xaa\x01\x5c\x86\xe7\xe3\xfa\xd7\x2e\x82\x03\x3a\x83\ \xeb\x31\x04\xa6\x76\xe6\xfa\x52\x7f\x05\xa4\xc3\x82\x1e\x78\x85\ \x3f\x2f\x8f\x36\xb5\x77\x45\x20\x60\xc0\xcc\x8b\xf0\x4d\x87\x73\ \x46\x8e\x8f\xbb\xf2\xdc\x49\x08\x72\x97\xd1\xd3\x86\x34\x4d\x39\ \xb8\x41\x72\x63\xd1\xe7\x82\xaa\xd3\x37\xed\x03\x7e\x6d\xeb\xff\ \xa0\xcf\xb1\xae\x48\xf8\x79\x56\x30\xc2\x82\xea\x46\x2a\x30\xba\ \x41\xd2\x43\xde\x15\xd1\x38\x2f\x10\x76\x42\xd3\x40\x20\x7a\xbd\ \x3f\xee\xca\x0f\x08\x18\x3a\x08\xa2\x3b\x24\x26\x7c\xf3\xed\x5e\ \x02\x12\x77\x3c\x41\x13\xcd\xae\x88\x5b\x74\x85\x5b\xd8\xfb\xad\ \xd7\x0d\x48\xca\x3e\x5e\xd4\x87\x62\x81\x85\x79\xef\xba\x68\x2b\ \xfb\x9d\xf4\xc3\xd2\x64\x7a\xd8\x00\x43\x4b\x51\x92\xb2\x47\xa9\ \x04\x28\x15\x3c\x6e\x0b\x4e\x4b\x8a\x00\xbd\x40\x4e\x7b\xd4\x76\ \x60\xec\xba\xca\x8b\xbc\x32\x1f\x34\x76\x2a\x8c\xc4\xf7\xb6\x08\ \x58\xa3\x83\x35\xdb\x52\x79\x05\xd6\x80\xe7\x7a\x15\xce\x59\x1f\ \xa0\x2a\xf1\xb4\x46\xf6\xb6\xc0\x99\x72\xe3\x34\x40\x67\x4e\x5b\ \xcf\xfb\xee\xb0\xfc\xf0\x5c\x5f\xc5\xff\xca\x9d\x6a\xc1\x0f\x96\ \xf2\xdb\xb0\x1e\x2c\x0d\xb6\x94\xc0\x40\x47\x91\x7d\xdc\xe1\xb6\ \x00\x6b\x0b\xdc\x69\x15\xdb\xe3\x57\x62\xaa\x50\x2e\xed\xf0\x55\ \xce\x90\x7f\xe2\x72\x77\x57\x99\x27\xe1\x16\x52\x10\xab\xa2\x00\ \x38\x41\x28\x96\x0f\x67\xe5\x89\x4f\x26\x66\xe4\xa2\x1a\x0d\x93\ \x8c\x12\xc3\xfb\x3e\x01\xfd\xd7\xca\x06\x20\xca\x9a\x86\xa0\xe3\ \x76\x21\x84\xfe\x89\xd8\x8e\x00\xcd\x08\xb3\xfb\x97\xee\xe2\xa0\ \xbc\x63\x70\x0f\xba\x79\xe7\x11\x1c\xf6\xb6\x24\x14\x7c\xf0\xba\ \x10\x35\x75\xd4\xce\x75\x3c\x46\x96\x27\x46\x19\xa0\x46\xeb\xd9\ \x44\xe7\x09\x96\x28\xad\xbf\x9d\xdd\x46\x74\x23\x61\xf9\x59\xd0\ \xec\x02\x3b\xf9\x7a\x85\x40\x94\x86\xf1\x54\x12\xa7\xa5\x97\xaf\ \x50\x16\xf5\xcc\x29\x6e\xb4\x39\x51\x99\x53\x30\x55\x95\x32\x58\ \xfc\xee\x57\x6c\xe9\xf0\x34\xec\xf7\x8a\x71\xeb\x4f\x9e\xc7\x64\ \xc0\x6a\xac\x27\x13\xf0\xec\xf5\x0e\xb4\xb7\x51\x09\xca\xde\x80\ \x4d\xeb\x58\xef\x48\xad\xe5\xca\x58\x3a\xc8\xb1\x2b\x00\xaf\x93\ \x02\x8d\x97\x57\x63\xb2\xb0\xfe\xbb\x9a\xd1\x77\x5a\x27\xad\xf0\ \x26\xcd\x7b\x57\xc4\x9d\xb2\xaf\x5f\x04\x01\x25\xc1\xeb\x2e\x3e\ \xc6\x95\xf4\x2c\xbc\xdb\x61\x92\x0e\x8c\xe3\xfa\xea\x2b\x2a\x1c\ \x88\x80\x01\x06\x21\x1d\x4f\x90\x63\xc7\x97\x6e\x28\x74\x18\xd1\ \xa3\x83\x8b\x75\x4a\x2f\x5c\xb4\xa1\x29\x17\x21\xa2\xd0\x91\xf2\ \x84\xca\xb3\x1f\xd9\x9b\x32\xc4\x68\x03\x23\x0c\xe8\x8d\x43\x18\ \x42\x89\xde\x77\x71\xe5\xd9\x2e\x2d\x80\xd7\x06\x24\xee\x4a\xc1\ \x56\x35\xf2\x36\xdc\x69\xbd\x7d\xf8\x19\x46\x42\x4f\x2e\xe0\xd0\ \x5c\xc9\x6d\x5d\xf7\x62\x65\x75\x42\x5b\x53\xab\xf3\x9f\x36\x8c\ \x13\x9a\xbd\xeb\x7f\x10\xce\x16\xdc\x81\xd0\x0a\x55\x01\xe5\x61\ \x54\xa1\xd6\x86\x7b\x04\xbd\xb3\x87\xb3\x92\x9f\x93\xdb\xbe\x6a\ \x96\x22\x20\x06\x70\x92\xd3\x81\x55\x0d\xc0\xc4\x90\x67\x0a\x50\ \xde\x1d\xed\xab\x68\x86\xae\x04\xb4\xdd\x91\xa0\xbd\xba\x40\x90\ \x32\xc5\x6d\x8f\xa0\x5b\x51\x2d\x3b\xf7\xae\x24\xe0\xe9\x5b\x2c\ \xd0\xf6\x00\x35\x2b\xab\x5e\xc3\xdd\xa6\xfc\x68\xdc\x36\x70\xfd\ \x40\xca\x58\xd1\xb6\xd7\xf7\x6f\x50\xfb\x05\x1d\xbc\x95\x23\x17\ \x0c\x3e\xd6\xc3\xf6\x2d\x2e\x88\x31\xf6\x2a\x87\x0a\xd2\xfe\xfe\ \xaa\x43\x09\x50\x1f\xc0\x1a\xa9\x03\xe2\xd1\xa9\x63\x32\x08\xfe\ \x23\x97\x02\xa3\xa5\xc2\x9e\xab\xaf\x9f\x27\xf4\x87\x0b\xf4\x4c\ \x27\x03\x76\x7a\xc0\x0f\x1c\xbb\x18\x10\x76\xdf\x4f\xe2\x50\xfe\ \xe5\x0a\xfc\x68\x6f\x2b\x03\xb9\x92\x38\x98\x2b\xad\xb3\x03\xce\ \xd0\xba\xad\x2f\xc9\xbb\x20\x86\x67\x9c\xa9\x02\x83\xf6\x49\x8e\ \x2b\x59\x72\x5b\xa0\x39\x61\x53\x13\xe1\x72\x5e\xd3\x63\x5c\x79\ \xa2\x93\x4d\xd8\xbb\xe6\x01\x19\x6e\xe8\x3e\xb4\x70\x20\xfe\x8e\ \x56\x9b\x10\xa3\xa5\x37\x3a\x2f\xc8\x7a\x5b\x29\xc2\xca\xe2\x01\ \x1a\x5c\xb5\xdf\x4b\x05\x16\x24\x77\x19\xaf\x4f\x86\xba\x07\xd7\ \x4a\x1b\xd3\x03\xa9\x6c\x32\x12\x6c\xf0\x3d\x57\xa0\x68\xf5\xde\ \x21\x79\xfd\xc9\x73\x6e\x0b\x09\x4a\x60\x47\x56\x44\x8c\xf5\x40\ \x81\x05\x2d\xb5\x0e\xbc\x0c\xde\xe4\x3a\x36\xf3\x12\x0f\x4c\x87\ \xb1\x11\xae\x46\x29\xad\xbf\x20\x93\x81\xd2\x0c\xd8\x0f\xac\xd4\ \x0a\xec\x98\xa8\x03\x21\x50\xa5\xe0\x0b\x96\xa2\xc2\x02\x56\x00\ \x9b\x9a\x78\x7f\x6f\x4a\x79\x0e\xb6\x01\x9a\x7f\xd2\x49\x58\xf7\ \x5e\x25\x95\xde\xc4\xc5\xad\x0a\xa7\x34\xa8\x40\x20\xab\x9e\x5f\ \x1d\x4a\x30\x95\x86\x08\x2e\x8b\x84\xea\xab\x4d\xa9\x90\xe6\x42\ \x07\xaf\x02\x43\xc3\x9d\xbe\x63\x74\x21\x47\x25\x0a\xd5\x0d\x82\ \xee\xb9\xaa\x89\xed\xdd\xae\xe4\x1f\xdf\x08\x52\x9a\x2b\xbb\x82\ \x93\x65\x7b\x1f\x87\x8c\x00\x35\x25\x45\xee\x22\x0f\x17\xaf\xd9\ \x21\x52\xba\xb5\xdb\xc0\x0f\x82\x12\xf3\xaa\x64\x86\x8e\x0f\x44\ \xf1\xa1\x60\x19\xb6\x5c\x32\x71\x57\xd4\x9b\x32\xae\xd8\x09\xe9\ \x3a\x14\x9f\xe3\xf9\xac\xfc\x24\x93\x41\xaa\x6d\x40\x7e\x7d\x94\ \xa1\x6e\x2a\x6f\x41\xf9\x57\x8d\x07\xa5\x54\x78\xc2\x00\x70\xd1\ \xbe\x9c\x80\x0b\x8e\x62\x4d\x42\x3c\xef\xe5\x65\x16\xb7\xf6\x6c\ \xc8\x88\x00\x10\x82\x3c\xc8\x2f\x33\xec\xd2\x0a\xb2\x29\x70\x2b\ \xc1\x43\x9f\xe0\x5a\x3c\x6e\xcb\x53\x27\x61\x3d\xa8\xbd\x35\xfc\ \x88\x03\x63\xf8\xd6\xdf\x7e\x9a\x91\x76\x80\x78\x98\x20\xb3\x86\ \xd9\xea\x05\x4b\x18\x59\x0c\xd7\xd7\xfb\x92\xa4\xcc\x79\xb5\x2d\ \x4d\xac\xa9\x20\x42\x0f\x3a\x36\x15\x2e\x08\x12\x8e\x58\x4a\xe9\ \x1c\x10\xfc\x8b\xa4\xf8\xbf\xbb\x5d\x79\x8e\xb6\xeb\xdc\x42\xb6\ \x14\xae\xa7\x50\x52\x7b\xbb\xbd\x02\x8d\x75\x08\x89\x03\x89\xbc\ \x6a\xaf\x7d\x28\xb0\x62\x94\x37\x20\x82\x8c\x10\xaf\x7e\xee\xd3\ \x9b\xbe\x0a\x76\x08\x95\x20\x05\x84\xf3\x13\xb9\xeb\x04\x32\xd9\ \xca\x31\x2b\x06\xe9\x2b\x80\xae\x2f\x89\x62\xed\x21\x8d\xfb\x41\ \x26\x03\x5c\xbd\x8a\x70\x0c\x6c\xc9\xdf\x57\x13\x97\x56\xfd\x2a\ \x99\x11\xa2\xc4\x7a\x50\x3f\x17\x52\x97\x2b\x6f\xaa\x68\x5f\xa2\ \xdb\x33\x5e\x1d\x15\x34\x49\xcb\x10\x03\xa0\x15\xf5\xb9\x08\x96\ \xb5\x64\x69\x24\x88\x58\x43\x86\x9b\x2a\x5c\x1c\x1e\xa4\x9d\xd6\ \x9f\x3c\x2b\xdc\x62\x9e\x07\x5c\x42\x41\xf7\xbb\x9d\xcc\x99\xc1\ \x60\xcf\x5d\xd0\xb5\x39\xe5\x7e\x29\xd3\x20\x63\x45\x0e\x07\xbb\ \x09\xfc\xe7\xaf\x72\xdb\xb8\xea\xc2\x82\x22\xad\xf6\x55\xaf\x50\ \x25\xa2\xd7\x92\x91\xdb\x22\x94\x00\x2c\x01\xb3\xd6\xaa\xc2\xd9\ \x77\x9b\xf2\xec\x97\x06\x63\x90\x84\xd8\x0c\x9e\xaf\x4a\x15\xbf\ \xcb\x10\xaa\x48\x9d\x57\xd1\x8c\x59\x5c\x08\x57\x71\x98\x6a\x83\ \x93\x74\xd8\x18\xe3\x57\x13\x55\x10\x84\x42\x03\x93\x75\x8a\x04\ \x05\x79\x53\x44\xe1\x76\x40\x66\x77\xc8\x91\x5c\x47\xa5\xd7\xc7\ \x0b\xf4\xd3\x30\x2d\x61\xfe\x0b\xa8\x3d\xf4\xbb\x2e\xdf\x84\x77\ \x72\x5b\x20\x54\xd0\x98\x5d\xef\x70\x4f\xa1\x5f\x5c\x18\xc8\xdd\ \xc3\x21\x35\xa3\x4e\x52\x66\x63\x7a\xfe\x69\x56\xb5\x01\x95\x5d\ \x88\x6f\xad\xfd\x24\xb7\xe2\xaa\x28\x25\x04\x48\x72\xa3\x79\x03\ \x7c\xe4\xa3\xae\x06\x2c\x25\x9e\x0b\x21\xe8\x17\x20\xb7\x84\xa8\ \xdb\x3a\xff\x07\x4d\x7e\x80\x72\x66\x58\x2b\x03\xa1\xae\x6c\xb4\ \x53\x82\x5c\x68\x03\xfb\x68\x5d\x23\xa1\x23\xbd\xba\x42\x72\x81\ \xd1\xf2\x15\x47\x28\xf2\x15\x6a\x12\x6e\xc5\xcf\x0d\x53\xef\x9e\ \xa1\x8f\xf3\x38\x69\x7e\x26\x94\x25\xb8\x66\xad\xef\x12\x80\x60\ \xc9\xbd\xbf\xaf\x2f\xb8\x0a\x53\xa0\x5a\x73\x82\x08\x40\x8e\x5b\ \x7b\x1f\xe8\x55\x60\xc4\xa7\xa0\xa2\x57\xa8\xeb\xaf\x99\x53\x00\ \x30\x83\x02\x2f\xff\xa3\xe4\x78\xdb\x24\xea\x8b\x19\x4f\x5c\x81\ \xab\x95\xac\x8a\x26\x77\xbb\xf2\x53\x09\x4c\x04\x77\x57\x20\xc2\ \xa2\x0e\x76\x45\x60\xe1\x90\xbb\x5a\xe5\x20\x7a\x2a\x3a\xe3\x40\ \xaa\xb0\x8e\x08\x34\xb0\x56\xaa\x8d\x47\xfa\x15\x71\x6a\xe5\x78\ \x15\xbd\xdd\x8e\x09\xe8\xe0\x49\xd3\xec\x5d\x29\x1a\x5a\xa0\xe1\ \xbe\x5e\xc8\x02\x4d\xd7\x12\x1f\xb7\xe5\x87\x19\xf0\x44\x43\x11\ \x7d\xe6\x22\xee\x9d\xef\xee\x0a\x58\x76\x90\xb6\x81\x7f\x20\x06\ \x99\xe1\xcb\xcb\x34\xc0\x11\x26\xc2\x77\x0f\xc2\x87\xaf\x6c\x6f\ \x65\x0e\x00\xd7\xde\x95\xd5\x5c\x62\xe4\xbc\x34\x4e\x2d\xd3\xd0\ \x43\x82\x0a\x69\x49\x90\x89\x99\x8f\x2d\x96\x27\x3a\x19\xb8\x33\ \x2b\xae\x40\xc3\x60\xbd\x58\x97\x82\xe6\x9b\xd9\x6d\x5a\x69\x89\ \x48\x7e\xf5\x20\xf9\xfd\xd5\x4c\x28\xd0\x6e\xc0\x7f\x5c\x41\x4d\ \x7c\x25\xa6\x97\xd1\xfb\xc0\x24\x78\x15\xde\xeb\x8d\x20\xcf\xc9\ \xda\x90\x66\xfb\x0a\xb5\x11\x56\x7f\xe0\x72\x8c\xf2\xb8\x2b\xcf\ \x18\x30\x28\xfb\x45\xd1\xf3\x8c\x62\xb7\xf1\x6e\xb8\xad\xb0\x8d\ \x00\x85\x6d\xed\x32\xf2\xa5\x78\x29\x74\x36\xb4\x4b\xa1\x88\xdc\ \x70\x81\x5f\xf8\xde\x42\xaa\x18\xf7\x1d\xda\x13\x42\xf0\xa5\xc2\ \x28\xf1\x1e\x4a\xb8\x5d\xe7\x15\xaf\x2c\x60\x18\xbd\x8e\x47\x0c\ \xcb\x33\x9f\x6c\x15\x4e\x03\xd1\x70\xc2\x5e\x0d\xff\xf5\x81\x67\ \xda\x8a\x4d\x0d\xcc\x97\x01\x5f\x9c\x58\xbe\x5a\x2c\xa3\xc4\x88\ \x26\x65\x03\xfb\xe7\x45\x60\x41\x8b\x05\xc4\x5f\xc0\xed\xcb\x4a\ \xb7\xb8\xce\xd1\x6b\x51\xf0\x6f\x28\x50\x1d\x80\x90\x03\x40\x69\ \xf5\x09\xc2\xd2\x9f\x85\xc0\x56\x21\x5d\x85\x99\xb0\x33\x9c\x77\ \x37\x05\x34\x85\x9e\x21\xe4\x81\x71\xdb\x7a\xd6\xee\xba\xfc\x90\ \x8c\x06\xbb\x71\xdd\xd2\x17\x40\xe4\xf5\x1d\xd2\xfa\x6f\x64\x84\ \x25\xcf\x3b\x7b\x53\x04\x96\xb0\x0a\x54\xe0\x40\x04\x85\x0c\x25\ \x96\xc7\x5d\xa9\x4f\x37\x08\x78\x5b\xa0\x87\x57\xc9\xbc\x6e\x77\ \x78\x5b\x16\x00\x4a\x82\x1d\xde\xcc\xc8\xa8\xc1\xc6\xb9\x7a\x94\ \x69\xe5\x41\xe8\xf8\xac\x93\x0b\x87\xa1\x97\x06\x95\xeb\xbc\xae\ \xaa\x6d\x16\xf5\x6e\x21\x37\x9e\x3a\xc6\x64\x2b\x36\xac\x9f\x7f\ \x02\xd8\xb5\x5e\xa0\xf0\x98\xdd\xfe\x30\x26\x43\x58\x46\xb2\x8e\ \x2e\x4b\x6a\xf9\xed\x89\xea\xf8\x15\x01\x27\x5b\x8f\x7b\x47\xb7\ \x66\x8f\x4e\x15\x45\x89\xac\x37\x82\x6e\x31\xcb\x0b\x05\x96\xfc\ \x6b\xfd\x7a\x19\x7a\xe2\x90\x50\x5b\x09\x30\xb9\xef\xd4\x65\x4c\ \x86\xce\x74\x80\x43\x05\x7a\xa0\x55\xe6\xe9\x77\xbb\xf2\xd3\xa0\ \x12\x0a\x20\x25\x0a\x08\x79\xe8\xab\xf8\x6e\x58\x41\xf3\x62\xfd\ \xbf\x80\x49\x80\x45\xcd\xf5\x04\x25\x70\xeb\x83\x48\x67\xcf\xfe\ \x62\x5b\xa0\x9d\x0d\x8b\xf3\xf5\x67\xb1\xa2\x47\x43\x6e\xb0\x0c\ \x98\xe5\x34\xa8\x28\x41\x7c\x78\x25\x4d\x9b\xd4\xf6\xbd\x2b\xe3\ \x39\x81\x5a\x77\x0d\x8d\x18\x29\x57\x82\x4a\x70\xbd\x99\xda\xae\ \x68\x52\x27\xb4\x5b\xe1\x76\x92\xc6\xc5\xf3\x86\xc6\x38\x5c\x47\ \xe4\x6e\x94\x17\x6c\xb2\x55\x57\x8b\x1c\xcd\xa8\x25\x4f\x80\x39\ \xc9\xa3\x8f\xa1\x88\xdb\x95\xc4\x81\xb3\x06\x68\x3e\xb0\x00\x0f\ \x61\x65\x3c\x23\x6e\x3b\x44\x53\xe2\xaa\xcf\xd0\xc3\x8b\xfd\x6d\ \x7e\x83\x1e\xba\xd1\x2f\xe1\xf0\xfc\x3d\x3c\x84\xac\x04\x72\x7d\ \x50\xe0\xcb\x4b\xd6\x07\x78\x0f\xe8\xcf\x80\xce\x19\x03\x19\x5b\ \xaa\xce\x64\x11\x4d\x9f\x29\x2e\x69\x5b\xb9\xed\x6e\x53\x7e\x34\ \x6e\x13\x8c\x83\xe6\x7a\x04\x40\x96\x8f\xef\x3b\xd2\x03\x6f\xb1\ \x62\x6c\x82\x4a\x36\x40\x60\xf5\x82\xac\xe3\x69\x83\x34\xd8\x4a\ \xf6\x03\x24\xb1\x5e\x9d\x15\xc8\x99\xc3\xb4\xa7\x7f\xbb\x2b\x13\ \xcf\x8a\x08\xd3\x24\x30\x16\xa4\xa1\x9d\x20\xcf\xf3\x78\x81\x9e\ \x31\x09\x0d\x4f\x4f\x01\xb2\x04\x53\x8b\xf9\x36\xe7\x03\x51\xb5\ \xc2\x25\x07\x38\x95\x54\xbf\xdf\x65\x68\xcf\x4b\x14\x1d\x21\xa1\ \x78\x7e\x51\x05\x81\xee\x2c\x96\xd3\x11\x80\xfe\x49\xee\x24\x8c\ \x21\x2e\x2c\x21\xa3\x51\xb8\x8a\x53\xc4\x8a\xa7\xfb\xf3\x14\x6b\ \xd3\xaf\xa9\x04\x21\x38\x8a\xc1\x1f\x26\x1c\x64\xb6\x19\xa0\x79\ \xcc\xb7\xc1\x45\xfd\x92\x2d\x5d\x57\x18\xba\x67\x38\x02\x00\x27\ \xfc\xec\xf1\x43\xcb\x1f\x93\x35\x64\x79\x6a\x18\xcc\xbd\x40\x33\ \x88\xf4\x21\x92\x38\xec\xc7\xaa\x29\x7a\x7c\xdc\x95\x9f\xc6\x64\ \xa9\x4b\x13\x61\x05\xb9\xd6\xb7\xf3\xc8\xbb\x84\x66\x00\x60\x56\ \xc8\x5c\x97\xa4\x96\x6f\x05\x96\x55\x11\xd5\x08\x3c\x8f\xa4\x88\ \x2f\x90\x1a\x68\x08\xae\xf2\x00\xac\xc8\x84\xc2\x9d\x8d\xa1\x9c\ \x49\x78\x50\x45\x40\x11\x40\xf6\xc8\x07\x3d\x6e\xcb\x8f\x46\xc2\ \x98\xa2\xb4\xbd\xc2\x64\x03\x23\xfb\x40\x68\x1d\x69\x4f\xc3\x4b\ \xa2\x30\xae\x6b\x20\x34\xd7\xf9\x81\x68\x83\x18\xac\xd4\x17\xe4\ \x77\x80\x72\x21\x3b\x2b\x39\x30\xfe\xf7\x6b\x04\xd8\x6b\xe3\xdb\ \x6d\x4e\x2b\x5f\xe6\x9f\xfe\xeb\x3f\xfe\xf9\xdf\xfe\xc7\xbf\x5e\ \xdf\xec\xce\x0e\xf7\x5f\xff\xf1\x2f\xff\xf6\xdf\x7f\xb7\xb1\xe9\ \xd6\x6f\xb1\xdd\x64\x9a\xf6\x87\xfd\x4f\xb7\x89\x3f\x03\xee\x43\ \x3f\x58\xff\xd1\x57\xee\xbb\x7f\xfc\xb8\x55\xa9\xde\xf2\x2d\x5a\ \x1f\x37\x6e\x71\x15\x91\xeb\xab\x1d\x7e\x5c\xcc\xb7\x15\x57\x6f\ \xcd\xf8\xb8\xf5\x67\x6b\x79\xeb\x03\x0f\x3f\xae\xac\x0d\x8a\xe9\ \x36\xcc\xd5\xa5\xf5\xa7\x88\x6d\x47\x9f\xd6\xb0\x93\xeb\x8b\xff\ \xf9\xc3\x9a\xec\x40\x3e\xfd\x30\xfc\x18\xeb\x67\xb3\x3e\x6d\x7d\ \xa3\x80\xbf\x3b\xfe\xbc\xb2\x3e\xaf\x98\xc7\x12\x5f\xa8\x9c\x9f\ \x4a\xfd\x47\xa2\x75\x4c\x26\x7e\x5c\xfc\xbc\xa7\xa7\x52\x8c\xe0\ \x6e\xd5\xf8\xb8\x2e\x27\xb7\x9e\xef\x64\xc5\x01\xb7\x0e\x25\xb6\ \x72\xfd\x59\x39\x5f\x9c\x04\x14\xeb\xa0\x44\x39\x28\xed\xfc\xa0\ \x24\xc4\xff\xea\x08\x60\x09\x7f\x76\x7c\x54\xfa\xda\x4d\x3b\x5c\ \xce\x5b\x95\x3b\x4e\xb8\xe1\xc3\x75\xc3\xc7\xf9\x46\x0e\x9c\x6e\ \xfb\x9c\x0c\xfd\xd5\x8e\xcf\x49\xde\xef\x89\x1d\x50\x3a\x7e\xba\ \xe3\x63\x59\xe4\x36\x45\xeb\xf3\xe4\xef\xb2\x5c\xf4\xd3\x6b\x57\ \xf0\xaf\x58\x31\x65\xc8\x1f\xb6\xd3\x1f\x6f\xe5\x85\x58\x9d\x15\ \x52\xd6\x0b\x87\xc5\xd5\xd3\xc5\x55\x09\x17\xd6\xda\x70\x53\x26\ \x3e\xf1\xf8\x11\x8f\x51\xee\x82\xf9\x8a\xcb\x86\xc7\xe3\x0f\x4c\ \xfa\x0f\x59\xb7\x1c\x7f\x87\xdf\xee\xf8\xac\x44\xe7\x02\x49\xeb\ \x4b\xeb\x97\xa9\xe6\x45\x4f\x12\xc5\x8e\xef\x39\xfe\x89\x15\xea\ \xad\xbd\xc4\x59\x89\xe1\x7c\x2b\x11\x75\xa3\xe3\x9e\x27\x0d\x64\ \xc7\x21\x5a\x5e\x57\xcf\x35\xaf\x8c\x6b\x1e\x25\x27\xb6\x1f\xd7\ \xac\x7b\x79\xfc\x26\x54\xd7\xc7\x55\xd2\xa7\x69\xc2\x63\x9d\x4b\ \x64\xea\xe9\x3c\x7b\x8e\x48\x1c\x8a\xeb\x41\xd0\xe0\x9a\x8c\x50\ \xd0\xee\xfe\xea\x60\xc3\x87\x6e\xa6\xb5\xe3\x53\xf2\xa7\xf3\x8f\ \x8b\x8e\x38\xd7\x65\xc7\x8f\xaf\x4a\xb8\x65\x4d\xa1\xad\x37\x2a\ \xeb\x03\x7c\xf8\x71\x53\x92\x22\xf3\xe3\xa6\xa6\x3d\x84\xd5\xad\ \x57\x35\xd8\x4f\x70\x90\xdf\x37\x9c\xe7\xf5\x49\xce\x9b\x1d\xc5\ \xd3\x5d\xb6\xf6\x87\xe0\x4b\x48\xe9\x92\x9c\x26\x3b\xf2\xea\x23\ \x76\xfa\x66\xca\x5e\x3b\x1e\x69\xc9\x77\xf2\xd7\xcb\xf2\x87\x7f\ \xae\xdf\xfd\xd9\x51\xf2\x50\x6e\xf6\x8b\x10\xd3\x95\x00\x1f\xc7\ \x68\x29\x7f\xec\x07\x56\xcb\x9f\x3f\x6f\x43\xd7\x74\x9b\x50\x26\ \xad\x02\x37\x9a\x67\x61\xfd\xd9\x94\x72\xf8\x38\xd9\x96\x57\x38\ \x06\x6b\xd3\x83\x9c\xf5\xfa\xe7\x4d\x90\x84\xe5\xfb\xaf\x0e\x36\ \xa1\x68\x55\x65\x7c\xa9\xb8\x6b\x00\xeb\x97\x09\x77\x7f\x75\x10\ \x16\x63\x94\x98\xe0\xea\x75\x1c\xe7\x9a\x3b\x96\xbb\xa2\x7e\xb3\ \xf6\x60\x4a\xd1\x71\xbc\x05\xeb\x22\xac\x3d\xa8\x76\xbe\x2d\x87\ \xaa\x12\x0a\x8a\x80\xeb\x90\xcd\xeb\x10\xe3\x75\x6d\x8e\x1f\x23\ \xd7\x02\x03\x69\x7d\xdd\xb7\xbc\x41\x5a\xdd\xce\xdd\xed\x87\x46\ \x7a\xd6\xc7\xc1\x65\x4a\x2c\xf0\x25\x12\xf5\xfc\x74\x6a\xd3\xc7\ \x7a\x3e\xae\xa6\xcf\x71\xe0\xec\x7a\xd1\xad\x5f\xae\x4b\x8b\xf4\ \xfc\x1e\x4c\x47\xce\x82\xeb\x92\xe5\x69\x3f\x7f\x8b\xab\xb6\xa4\ \xed\xb7\x18\xd9\xe9\x71\xc4\x97\x12\xcf\xac\x97\xd0\x3b\xc9\x8c\ \x72\xa9\xb8\x5a\x91\x85\x91\xbc\xef\xde\xa0\x19\x32\x77\x2e\x4d\ \x08\xd1\x41\x5e\x04\x33\x42\x6b\xb9\x70\x9e\xb9\xca\x11\xb0\xb3\ \x69\x39\x52\x46\x3a\x2d\x0d\x70\x4a\xeb\xa4\x3a\x6e\x4b\x95\x3b\ \xc5\xb8\x2b\xff\x89\x7f\xe0\xe0\x5a\x5c\xe1\xac\x0d\x69\x93\x9d\ \x90\xef\xba\x8c\x50\x07\x25\x5f\x6a\x91\x18\x6f\xaf\xc4\x49\xcc\ \x1d\xcd\x8f\xcb\x92\xd8\x9f\x67\x16\x55\xf6\xc9\xac\x23\x28\xc5\ \x5b\xc1\xc3\x63\x9f\xca\x72\x95\x94\xe7\x9b\x89\xec\xcb\x1c\x87\ \x47\x49\xd4\xe2\xf9\x3c\xbc\x5e\xb5\x8d\xb3\x19\x7b\x5c\x9a\x06\ \x47\x5b\xbb\xdf\x28\xdd\xc3\x76\xd3\x27\xdc\xfe\xb0\x78\xde\x7c\ \xe9\xda\x7c\xb0\x3e\x6d\x6a\xd1\x7d\xfc\x71\x53\x7f\x0e\xe7\x80\ \xfa\xf8\x77\x1b\xd7\x75\x32\x3f\xae\x53\x62\x0a\xbe\x76\xb7\xdf\ \x02\x5c\x94\x7e\xfe\x71\x53\xce\x64\xb7\xef\x5c\x93\x2b\x77\xba\ \x38\x6d\xad\x99\x2d\xfb\x26\x8f\x38\x61\x8a\xeb\x59\xdc\xe4\xac\ \x4d\xc2\xd7\x30\x33\x94\x20\x39\x8a\x91\x34\x4d\xf9\x5f\xe7\x69\ \x8c\x64\xf1\x8e\x94\x7f\x8f\x48\x8e\x53\x7e\x4d\x1c\x7d\xfd\x3e\ \x1d\xbf\x1e\x77\x95\x3c\x71\x6e\x70\xe2\x5c\x93\x89\x84\x5d\x8c\ \x76\x01\x35\x31\x72\x8b\xe6\x78\x0e\x35\x25\xec\x76\x47\x37\x90\ \x40\x64\x78\xa5\xcd\xaa\x55\x41\x64\xc7\x27\xb8\xf8\x36\xa1\x78\ \xf6\xa0\x93\xb6\xa0\xb9\x76\xa0\x71\x36\x60\x48\xe2\x68\x4f\x54\ \x33\xa7\x97\x14\xf4\x8d\x36\x0b\x3f\x69\x07\x9e\xd7\x21\x1d\xc3\ \x1f\x6b\x71\xe8\x93\x24\x42\x02\xa6\x77\xc0\xd7\x71\x29\x8c\x2a\ \xb2\x2b\x8c\xd2\x6e\x04\x32\x7e\x3b\x6d\x26\x3a\xb2\x14\xfd\xbb\ \xf3\x6b\x19\xed\x59\x78\x51\x90\x11\x21\x9b\xad\x82\xbf\xb0\x71\ \x66\xf9\x3c\xca\x57\xd7\x87\x0d\xce\x87\x15\x85\xa4\x5a\x3f\xdb\ \x2e\x54\xce\x1b\x57\x59\x8a\x90\xe8\x08\xdf\x08\x95\xf1\x1c\xdd\ \x19\xf4\x7c\x9b\x15\xf9\x2e\xea\x8e\x57\x98\x75\xa0\x6a\x65\x3c\ \x9a\x7c\x18\xa3\x2f\xbc\xe4\x84\x3e\xa8\xe2\x05\xac\x28\x97\xf7\ \x2c\xf8\x7c\xa2\xe5\x1a\xae\x04\xd2\xf8\xe1\xe3\xd3\x1c\x81\x1c\ \x9b\xbb\xb9\xf3\xd0\xe3\x4f\x53\x84\xab\xf5\x69\x5d\x0a\x36\xc2\ \x87\x45\xad\x45\xcc\x18\x3e\x19\xd3\xc8\x8f\xff\x74\xc3\xd5\x2d\ \x9b\x9c\x66\x59\xba\x25\xdf\x5c\x2c\xe9\xd3\x69\xdc\x96\x7c\xf7\ \x57\x27\x6f\xb4\x67\x12\x39\x78\x93\xc8\xec\x6a\x39\x49\xba\x73\ \xfc\x71\x41\x41\xc5\xd6\xcb\xa9\x9d\xd7\x48\x80\xfc\xc4\xe4\x98\ \xdd\xef\x4a\xf3\xfc\xb6\x34\x29\x93\xed\x99\x40\x53\xd8\xf4\xf9\ \x07\x66\x89\x2a\x66\xfd\xa7\xaf\x94\x85\xe8\xc9\x72\xaf\x18\x50\ \x16\x4f\x4f\xb8\x6f\x36\x03\x83\x60\xe0\x68\x09\x77\x52\x47\x58\ \x31\x0e\xf6\x99\x8a\x95\x75\xa8\x82\xce\x64\x7d\x3d\x6f\x4a\xed\ \xea\xea\xcf\x34\x52\x7b\xe6\xa3\xa5\xb2\x42\xe3\x93\x3d\x8e\x91\ \xbf\x23\x00\xad\xa2\x62\xfc\xec\xf6\x9a\xc4\x72\x2b\xdb\x14\xd4\ \x2c\x21\xdd\xcc\xbe\x33\x9c\x49\x47\x58\x12\x4e\xc7\xa6\xef\x84\ \xf3\x7c\xd3\x6f\x02\x4e\xb4\x29\x55\x59\xfb\xf6\xc7\xed\x78\xe4\ \x07\x66\xbd\x24\x29\xbe\x03\x58\x5a\xce\x8f\xf9\x74\x93\xae\x18\ \x04\x36\x34\x5f\xba\x0b\x4b\x28\xf3\x08\x02\x99\xc6\xb3\xba\xc1\ \x59\xdd\x87\x1b\x50\xed\x82\xaa\x9b\xc1\x37\x28\x69\xee\x34\xdb\ \x2c\x1e\x4c\xff\x20\x61\x29\x2f\x10\x96\xa7\x3b\x4e\x40\x52\xea\ \xcc\xc2\xae\xaa\xa5\x61\x9d\xff\x7c\x33\x87\x62\x54\x18\x38\x0e\ \xbc\x63\xd1\x0c\x86\x55\x73\x60\x02\x65\xa1\xef\xb6\xa6\x79\x3d\ \xbb\x5c\x2d\x23\x40\xc5\x74\xf7\x57\x27\x23\x4c\xcf\x2e\x64\xd2\ \x26\x44\x25\x8a\x98\x65\x2c\x3e\x6a\x10\x00\xb3\x7f\xc5\xbc\x3c\ \x46\xfd\x8d\xcd\x6f\xb5\xc7\xcb\xc7\x1f\x88\x90\x91\x82\xbd\xeb\ \xe1\xea\x5d\x3a\xc6\x53\x77\x7f\x77\x74\x18\x1c\x45\x68\xbc\x50\ \xed\xa7\xe9\x41\xbc\x9a\x03\xf6\xbe\x17\xca\x83\xec\xc5\x07\xf0\ \x00\x02\x1f\x85\xc8\x0f\xe5\xdd\x3b\x5a\x24\xf2\xb8\x11\xde\x91\ \xa2\xff\x94\x2f\xbf\x31\xae\x73\xd6\x6b\x7f\x7e\x9d\x87\xfc\x2b\ \xe6\xb7\x1a\x42\x29\x3e\xfe\xb8\xcd\x15\x76\x3c\xa6\x85\xd1\xe7\ \x0c\x7b\xac\x6b\x45\x8e\xc6\x80\x95\xcd\xad\xc0\xe1\x01\x27\x65\ \x4a\x45\xdf\x3d\x14\xdf\x58\x35\x5b\x36\xe3\xe2\xbc\x51\x84\x1a\ \x3c\xf4\xb8\x7e\x6b\x8c\xb1\x67\x93\x1f\xd7\x4e\x3b\x33\xa3\x41\ \x1f\xc3\xae\x9a\xcd\x70\xd8\x18\x10\x90\xa9\xf3\x33\xb3\xfa\x14\ \x71\x2a\xfc\xdd\x79\x7c\x4a\x0e\xea\x98\xa6\xc3\xe7\xc5\xb5\xb4\ \x82\xed\x06\xb5\x00\xfe\x08\x0d\xea\xa4\xda\x2f\x9e\xa4\x45\x03\ \xdd\x9f\x1b\xbd\xf9\xee\x8f\x4e\x5b\x72\x8e\x07\x5d\x5b\x5b\x84\ \xa6\xb9\x63\x0b\x82\x67\x07\x26\x67\x07\xba\x6b\x03\x06\x67\xfd\ \x1a\xde\x6c\x2c\x67\x27\x05\x8b\x71\xb3\xf1\x2d\x3b\xea\x1e\xdf\ \xa6\xb4\x79\xb9\x56\x21\xd4\x2f\xec\xf3\xf1\x75\xea\xae\xd1\xe8\ \x64\xec\xe5\x87\xdf\xd5\x29\xc5\x8d\x59\xe8\x4a\x1a\x5a\xce\x4b\ \xd8\x20\x4d\x3f\xbb\xb8\x19\x92\x84\x1a\x04\xda\x79\xf7\x47\x07\ \xa5\xfe\xf4\x90\x72\xea\x83\x50\xc9\xef\x0f\xb8\xb4\x45\x08\xbd\ \x48\x4f\x9a\x2a\x1d\x44\xc6\x87\x35\x07\xfb\x61\x43\x95\x8f\x81\ \x24\x9a\x9f\x78\x87\xd5\xc7\xad\x3a\xcf\xd2\x26\x67\x65\x97\xd8\ \x87\xb9\x93\x2a\xf6\x61\x21\x4b\x35\xea\x9c\xcf\xde\xd2\x96\x48\ \x32\x91\xc3\x55\x9f\xb9\xd3\x0b\x2e\x38\x21\x0f\x2a\x47\xc5\xb9\ \x8e\x5b\x62\x49\x08\x4e\x66\x5b\x22\x33\x82\x85\x02\x52\xec\xc3\ \xdb\x39\x25\xbb\x07\xd3\x3f\x38\x90\x7e\x45\x98\xdb\x70\x2a\x45\ \x98\x13\xf8\x6b\x43\xb2\x1c\xf3\xa0\x6c\xf4\xda\xf8\xf3\x65\x19\ \xf2\x16\x1c\xa3\xea\xca\xae\xb1\x2c\xd0\xe0\x64\xcc\xe0\xa3\xab\ \x9c\xd3\x5c\x80\x20\x3e\xf9\x51\x9d\x9a\x8f\x8f\xb7\xb2\xef\xf3\ \x32\xe9\xe3\x3e\x8d\x9f\xc8\x97\xb4\xa0\x3d\x81\x6f\x14\xf4\x61\ \xd1\x83\x60\x7e\x60\xd1\x6c\x95\x30\xc2\x73\x2d\xb0\x91\xd6\x97\ \x7d\xcb\xcb\xa4\xd5\x8d\x6b\x5a\xe6\x68\xbe\x12\xea\x95\xa9\xe2\ \x40\xae\x12\x82\xf0\x4e\x55\xed\xfa\xdb\x19\x74\x74\x65\xd0\x95\ \x91\x40\x37\x29\x56\xac\xfb\xd9\x54\x80\x87\x90\x84\x6c\x14\x86\ \xa3\x1e\x65\x48\x47\x46\x7d\xab\x4d\x38\x55\xfc\x22\x6e\x1f\xff\ \xc2\xd1\x91\xf7\xf4\x0b\x27\xc4\x18\x42\xbb\x90\x36\x85\x02\x16\ \x4b\xd7\xab\x67\xa7\x22\x85\x37\x54\xac\xae\x59\x93\x90\x07\xcf\ \x9b\x61\x2e\x2d\x9b\x40\xd2\xb2\x91\xdf\xc4\x25\x4d\x40\xc9\x6c\ \xba\xa3\x5d\xa2\xe3\x83\xf3\x34\xb9\x2a\xab\xc4\xee\xab\x35\x86\ \x12\xe7\x70\xad\x6d\x72\x96\x96\x7d\x4b\xeb\x9c\xa5\x7d\x89\xa4\ \x39\xca\x52\x02\xb7\x7d\x03\x3a\x6c\xc9\xcb\xce\x78\x10\x8a\x6b\ \x6d\x8d\xb3\x34\xc5\x39\x38\x3a\x78\x83\xc1\x44\x96\xb6\x8c\x1d\ \x4a\x64\xb4\x60\xe2\xff\xf3\x03\x49\xe0\x60\x07\xa6\x83\x6e\x31\ \x15\x51\x40\x80\xc5\xf8\x76\xc0\xb3\x01\x93\xb3\x01\xe3\x52\x14\ \x37\xf3\xcb\xca\x40\xd0\xff\x55\x85\x10\x63\x76\x0c\xdb\xb5\x47\ \xfb\x5d\xbf\xff\xfe\x5f\xa3\x20\xed\x87\xeb\x6c\x0e\xd2\xd9\xd4\ \x39\x85\xdd\xef\x4c\x37\x8a\x71\x40\x93\xc5\xd9\xc0\xc4\x49\x9a\ \xff\xdb\x29\xe8\xee\x9a\x12\x38\x37\x92\xd1\xdb\xf5\x68\x90\x6d\ \x38\xaf\x7e\x3f\xc9\x1e\xd0\xbc\xd2\x51\xdd\xc7\x4b\x1a\xeb\xf8\ \x3d\x2c\x2e\x7d\xce\xdd\x81\x34\x40\x6d\x3b\x60\x10\x7a\xc7\x9e\ \x4d\x50\xf4\xd5\x79\xbe\x23\xf5\xbf\x25\x99\xa2\xf4\xb4\x63\xc9\ \x94\xb2\x6d\x0a\x3c\xe8\x2b\x6d\x42\x5a\x1b\x5e\x6f\x04\x07\x82\ \xac\xdc\x01\x87\x4c\xab\x88\xfe\x1c\xff\xc0\x79\xc3\xd0\x3c\xb2\ \xb0\xdd\x3a\x75\xbb\xa5\x79\xfc\xa5\x04\x99\xeb\xf0\xae\x91\x62\ \x93\xe1\x5d\xb3\x07\xca\x0e\x59\xa7\xce\x79\xf0\x62\xf1\xcc\x11\ \xc2\xd5\xa4\xb2\x10\xe4\x9d\x43\x98\x4a\x8e\xd7\x63\xdc\x28\x58\ \xcb\xb9\x13\x7b\x47\x76\x14\xcf\xf3\x1e\x6d\xed\x3b\x3e\x6d\x70\ \x80\x5a\xd1\xb3\x93\x7b\x90\x40\xc8\x6c\x3d\x8b\x9b\x9c\xb5\x35\ \x5f\x5b\x6d\x90\xba\x6a\x1b\xea\xed\xc1\x6b\x52\x64\x5a\x6e\x1e\ \xc9\x5f\xed\xdc\x18\xb7\xb2\xee\x99\xe3\x79\xc6\xee\x21\x25\xf5\ \xfd\x18\x10\x4a\x57\x09\x3a\x9e\x29\x51\xd5\x56\x3c\xa1\x0b\x6d\ \x63\xa0\xc7\x16\xcf\x25\x31\x07\xac\xd5\x6d\xd6\x15\x21\xee\x14\ \x7d\xa4\xcc\x48\x10\x19\x38\x06\xd1\x50\xf2\x78\x48\x5e\x96\x07\ \xc7\x29\x94\x07\xda\x5b\xae\xd6\xb1\xa7\x98\x24\xfc\xc4\x55\xea\ \x29\xeb\xf8\x6a\xaa\x79\x0e\xd8\xfc\x0b\x22\xae\x37\x25\xc9\x7e\ \x7f\x06\x83\xc6\x30\x77\xad\xec\xe8\x2c\x11\xec\xe3\x2e\x15\x6d\ \xbb\xb7\x4c\xe0\x26\x4c\x17\xd6\x61\x0f\xac\xce\xcb\x9f\xe4\x23\ \x77\x55\x17\xb9\x2b\x71\xc8\x5d\xc3\xb5\x05\x93\xb4\x03\xb7\xe6\ \xe9\x28\xc4\xdd\x54\xb1\x2f\xd3\x3c\x7f\x80\xd5\x8f\xd6\x31\x3b\ \x89\x8c\x01\xc3\x87\x51\xc2\xc3\xb5\xb8\xc9\x59\x5b\x75\x2d\xad\ \xb2\x56\xd6\x3c\xdc\xf9\xf4\xc0\x8b\xff\xfd\x2e\x05\x06\x7b\xfe\ \xf3\x03\x16\x4f\x07\xba\x78\x1a\xd0\x17\x43\x92\xc2\xb1\xb7\xc7\ \xd6\xda\x4a\x61\x88\x10\x29\x5c\xcd\x41\x29\x21\x60\x0e\x3e\x0c\ \x4b\x1f\xbe\x8f\x1b\x2c\x76\x99\x06\x27\x87\x9f\x70\x66\xb8\xe0\ \x2a\x40\xd4\xde\xcb\x41\x82\x37\x64\x4f\x94\x57\x0d\x31\x42\x24\ \xf4\x7c\x5a\x63\x7d\x98\xdc\x25\x3b\xea\x48\x68\x3a\x87\x35\x6e\ \xcd\x36\x4f\x5f\xd5\xc1\x2b\x8a\x4a\x53\x67\x88\x47\x25\x07\x94\ \xb4\x5f\x4e\xf5\xc7\x55\xad\xc7\x54\xa3\x6f\xdd\x32\x86\xc9\x94\ \x8f\xc8\xe5\x62\x72\xfd\x2d\x77\x7c\x5e\x97\xd8\x0c\xbe\x99\xc3\ \x09\x72\x29\x1d\x4d\x92\xd2\xd1\x50\x73\x3a\x97\x7a\x1f\xa1\xa6\ \x93\x3d\x72\x50\x06\xb2\x8e\xad\xce\x53\x95\xe0\x31\xbf\x2a\x4a\ \x65\x20\x5c\xce\xe9\xc8\x0d\x9b\xd4\x9a\x2e\x36\x13\x21\x37\xdc\ \xce\xd3\x0e\xc4\x04\xc5\xb4\x53\x86\x68\x8e\xfc\x38\xde\x1c\x8e\ \x01\x89\xe3\x18\xa0\xae\xc3\x66\xbe\xda\x2f\x48\xea\x69\xd0\xf4\ \x88\x09\x2a\x21\xf7\xb8\xaf\xac\x40\x5b\xdb\xf5\xa8\x51\x2e\xaf\ \x12\xc3\xcc\x2a\x7a\xd7\x59\x84\x89\x40\x75\xf0\x15\x05\x96\x4e\ \xc0\xf1\x04\xd7\xe2\x02\x67\x6d\x75\xa7\x6a\x76\xb5\x42\xc9\xe7\ \x87\x2b\xc4\x4f\xca\x21\xd9\xa0\x0c\x4f\x81\x4c\x50\x51\x1f\xfa\ \x0e\xda\x5e\x02\xb1\x31\xc6\x46\xbb\xa1\xee\x70\x30\xaf\x8c\xb1\ \xc2\x87\x37\x53\x1c\x84\x45\x05\xc1\x4e\xb1\xab\x9e\xe1\xd3\xd7\ \x42\xe6\xd0\x0e\x6f\x86\xca\xe8\xf1\x96\x2d\x69\x6d\x83\xa6\x28\ \x16\x4b\xd9\x83\x99\x0a\x37\x8e\xe8\xaa\x62\xa6\xcc\x6a\xac\xab\ \xd6\x07\xc3\x7f\xb6\x38\x26\x9a\xe5\x02\x24\x1c\x07\x67\xdf\xc9\ \xac\xa4\x83\xf9\xe1\x1f\x2f\xaa\x9d\x9e\x4f\xff\x8a\x80\x13\x69\ \xae\xe5\x0d\xce\xea\x9a\x6f\x71\x8d\xb4\xb6\xcf\x32\xea\x2f\xea\ \xae\x69\x36\xb6\xc5\xfb\x8f\x27\x83\x1f\x65\xd5\x6b\xe2\x68\xad\ \x4d\xe0\x80\x94\x99\x67\xf6\x68\x7b\x5e\xb7\x8e\xa1\x8a\x33\x3c\ \x47\x45\xb1\xe4\x84\x06\x96\x86\x68\x1b\x72\x11\xf6\x65\x38\x7d\ \x5c\x87\xde\x3d\x2b\x64\x0a\x3b\x99\x00\xcd\x17\xa8\xa2\xb9\x9b\ \x9a\xd7\x13\x66\xd1\xd5\x2b\x1d\x22\x17\xf4\x74\x75\xe5\xe6\x81\ \x24\x6c\x58\xdd\xb9\xc5\x4c\x94\x5b\xe5\x91\xb3\x68\x37\xdb\x28\ \x2d\x6a\xe3\xe5\xf8\x8a\x2a\x8a\xc0\xc3\x64\x8f\x37\x82\xef\x4b\ \xbe\x75\x07\x9a\x31\xef\xd9\xfd\x39\xed\xda\x45\x61\x28\xbb\xbe\ \x3f\xfd\x85\xb5\x40\x70\x0c\xe5\xa5\x09\xc4\x91\x06\xb1\xd1\x2b\ \x14\x41\xfe\xec\x3b\xbc\xd9\x73\x76\x1b\xe9\xe8\x96\xab\x51\x60\ \x26\xac\x1b\xea\x74\xfe\xb8\xc4\xe4\x28\x15\xf5\xe3\x08\xb5\x62\ \xbf\xc0\x8a\xd6\xdd\x14\x0f\xa1\x70\xfe\x9a\x09\xb0\xca\xa1\x50\ \xdc\xef\x04\x8a\x7f\x1f\x30\x32\x43\xc6\x78\x6a\xaa\xe9\xd2\x75\ \x65\x4c\x2e\xa3\x84\x1e\x87\x4e\xe3\xe4\xd0\xff\x54\x5d\xda\xba\ \x55\x85\xa1\xde\x24\xc0\x4f\x97\x6a\xe2\x60\xc8\x26\xec\x01\x83\ \xe7\xb6\xa4\xbb\xdb\xf2\xfb\x7f\x8d\x74\xa7\xca\xfe\x48\x33\xbb\ \x57\xb4\x83\x85\x44\x0c\x77\x7f\x75\x8a\xf2\x77\xcd\xe7\x09\x1d\ \xbd\xea\x3a\xe4\x9d\x73\xc6\xe7\x9e\xbc\x5b\x17\x78\x32\x1e\xc5\ \x58\xb4\x5d\x60\xfe\xbc\x45\xb5\xf4\x19\xb3\xc4\x4f\x8a\x83\x68\ \xec\xb5\x33\xf2\x7e\xb7\x99\x7f\x3c\x04\xe7\x3b\x3e\x5d\x31\x2c\ \x4e\x4e\x10\xfb\xf0\x30\xd5\x2b\xbc\x9d\x5d\xba\xdb\x9a\x19\x10\ \x84\xb7\xeb\x2d\xf8\xe0\x61\xaa\xa5\xc2\x60\x38\xba\x58\x48\x71\ \x27\x5a\x7f\x33\x34\x96\x93\xeb\xdc\x5d\x54\x67\xfd\x91\x09\x6d\ \xaf\xb0\xa9\x92\xd6\xf8\xaa\x70\x46\x73\xdd\x35\x99\x1b\x1c\x85\ \x01\xaf\xee\x1f\x85\xc4\xfd\xd9\x59\xb1\x07\xc9\xb2\x4d\xd3\x09\ \xf7\xd2\x03\x71\x97\x3f\x63\x38\x97\x6d\x17\x09\x4f\x18\xc8\x8c\ \x1b\x90\x5d\xa9\x43\xe7\x3c\x64\xe1\xe6\x11\x6c\x4c\xd7\x2f\x4c\ \x29\xed\x7c\x95\x1d\x01\x80\xe4\x41\xd2\x4e\x4d\xb1\x19\x6f\xe6\ \x27\xc5\xe0\x8b\xea\x69\x79\x10\x13\x91\xe1\x77\xf9\xd9\x3b\x37\ \x6e\x1e\x6f\xd4\xdd\x40\x3f\x1e\x17\x77\xd7\xda\x06\x67\x69\xcd\ \xb5\xb4\xc1\x59\x99\xfc\x1e\x2e\x8d\x37\x4a\x85\x25\x13\x06\x47\ \xab\x28\x3e\x16\xbf\x07\xc7\x44\x3d\xc0\xed\x17\x95\x42\x5a\xee\ \x3e\x42\x76\x67\x10\xb2\x63\xd1\x7b\xeb\x11\xcf\xcc\x8c\x54\xe8\ \xa3\xe0\x1a\xbd\xb8\x1e\x7b\x2a\x0a\x5a\x22\x16\x87\x50\xde\xae\ \x8d\xcf\xfb\xef\x1f\xbe\x73\x02\x49\xf7\x40\x6b\x28\x24\x87\xea\ \x5a\x5c\xe5\xac\xad\x6a\xe7\xc7\x81\x90\xae\x0c\x36\x63\x54\x29\ \x05\x93\xc0\x51\x6f\xea\xc3\x72\x9e\xa0\x04\x5f\x93\x37\x72\xe8\ \x29\xcd\x01\x30\x8b\x5b\xbf\xe2\x78\x66\x5b\xb4\x6f\x67\xe5\x95\ \x53\xed\x42\x09\xed\x11\x97\x78\x5b\x66\xd4\x56\x1f\x46\xd2\xf7\ \x9b\xc7\x44\x49\x66\xe4\x0c\x8d\x43\x8f\xa0\xf8\xe6\xd7\x12\x10\ \x35\xca\x1d\xb4\x9b\xe5\xb7\x6f\x25\x85\xdf\xfe\x63\xed\x46\x31\ \x17\x09\x2e\x05\x84\x18\xb4\x1b\x65\x7c\xab\xa0\xe3\x7d\x82\x0a\ \x84\x9e\x25\xfb\x77\x21\x64\xfb\xc1\x85\x11\x90\x88\x7b\x6e\x32\ \x74\xd5\xd7\x3e\x77\x4c\x86\x72\xae\x7a\x79\x3b\xa8\xaf\xfb\x7b\ \x1d\xff\x74\xae\xf5\x35\xd2\xf2\xaa\x6b\x75\x95\xb4\xb8\xe4\x64\ \xa4\xbb\x28\xe9\x89\xc3\x48\xef\xda\x96\x76\xf5\x51\x3b\xe3\xb6\ \x04\x0f\x98\x24\xaa\x9d\x18\x41\x28\x3c\x09\xfc\xca\x7e\xc9\x55\ \x50\xfc\x18\xc3\x33\x7d\xc2\xf3\x93\x24\x3c\xff\x61\x93\xd1\xe0\ \x3b\xc0\xc1\x73\x7e\x27\xed\xfc\x7a\x7a\x04\x7b\x5c\x70\x9e\x18\ \xf6\x9b\x47\xf8\x35\x6e\xbf\x0a\x06\xd2\x54\x3d\x03\xed\xf8\x5b\ \x18\xfc\xde\xe4\x5a\x5e\xe2\xac\x4e\xeb\x15\x4f\x7d\x44\x99\x8b\ \x4a\x28\xb0\x0f\x8a\xbe\x78\x04\x37\x44\x97\xd4\x58\xa6\x48\x8d\ \xf5\xfd\x92\x59\x51\xa7\x52\x1a\x65\x7f\x45\xdf\xf0\xac\x58\x54\ \x87\xd2\xd8\x1d\x62\xe1\x0f\x59\x01\x01\xd6\x20\x73\xb7\xe9\xd3\ \x07\x13\xfe\x1c\x45\x97\xf0\x73\x96\x43\x51\x61\x40\x1e\x65\x72\ \x8a\x0a\x4b\xc5\x91\xb2\xcf\x5d\xd5\xe1\xaa\x71\xee\x86\x06\x03\ \x42\x06\xb9\xff\x1d\xf3\x4b\x4d\x46\x39\x1d\xb3\x76\x38\x1c\x64\ \x6a\x96\x1e\x64\x75\xc0\x49\xc6\xee\x75\x71\xd2\x35\x3b\x5b\x4b\ \x2e\xc9\xa6\xca\x48\x30\x90\xce\x45\x0f\x20\xb9\x6f\x9c\xcf\xe1\ \x16\xc8\xf0\xdc\xde\x02\x92\xeb\xf4\xf4\x19\xcd\x28\x59\x89\x22\ \xf3\x9d\x3c\xfc\x84\xed\x56\xc8\x68\x67\x7b\xb0\x40\x85\x84\x05\ \x6a\xaa\x94\xe6\x8c\xc0\x84\x1f\xaf\x28\xb1\xc2\xfa\x38\x54\x08\ \x91\xa0\xb6\xf4\x51\x53\xa2\xea\x5b\xdd\x20\xad\x2e\x6e\x01\x4a\ \x93\xd4\xb5\x15\x28\xcf\xa9\x4f\x7a\x85\xcd\xd4\x7e\xd0\x48\xd3\ \x8e\xa6\x98\xaa\xb3\x11\xae\xb9\x6b\x2f\x33\x6b\x2b\xff\x8a\x19\ \xe9\xf0\x21\xf0\x06\x0b\x81\xe7\xdb\x02\xcf\x0e\x14\xce\x06\xa8\ \xdc\xbf\x59\x2a\xdf\x58\x12\x3a\x9e\x4e\xc8\x24\x75\x42\xd4\x95\ \xb5\xdb\x79\x58\xd2\xfe\x1a\x23\xf9\xf5\x3c\x2d\x83\xf4\xb4\x6c\ \x65\x6e\x5b\xd6\x26\x16\x4e\xe2\x17\x3c\x9a\x53\x8a\x89\xe2\xf8\ \x46\x3b\x0a\x97\x24\x43\x22\x8a\x87\x71\xf4\xb0\xf4\xa3\x8a\x91\ \x1c\xb7\xd0\x3d\xde\x7a\x6a\xda\x72\xbc\x95\xa2\x58\xe4\x6a\x74\ \xe0\x85\x26\x74\x3a\x86\xde\x04\x07\x7a\xbf\xde\xe1\x27\x7f\xfb\ \x8f\x35\x06\xc8\x72\xf8\x10\xfe\x83\x84\xf0\xff\x30\x15\xe4\x0a\ \x75\x1e\xe3\xe8\xaa\x3a\x8b\xa7\x07\x38\xdc\x1c\xaa\x16\xf1\x82\ \x63\x3a\x26\x9d\x1c\x2d\x8a\x69\xde\xaa\x80\xce\x2f\x41\xee\x4e\ \x61\x9d\x0e\xfc\x54\x60\xe0\xa7\xb4\x2f\x68\xcb\x32\x57\x46\x78\ \xda\xf6\x22\xe6\x69\xea\x37\x8a\x13\xb0\x56\x91\xe6\x65\xc9\x1a\ \x54\x38\x3c\x01\x3b\xe9\xe9\x4a\x29\x3e\xbf\x9b\xe5\x02\x2b\x79\ \x90\x6f\x84\x81\x53\xb9\x84\x62\xad\x82\x7a\xee\x81\xc4\x69\x5e\ \xe0\x5b\x1e\x69\x75\x62\xbf\xe5\x79\x5d\x2e\x56\x89\x45\xfd\xa3\ \x3c\x2f\x3a\x04\x72\x08\x28\xa6\x4b\xb0\x91\xd2\x48\xfe\x9c\xc1\ \x8d\x27\xfa\x6c\xf3\x1e\x42\x20\xf7\x44\x9f\xc0\x09\x3e\xff\x01\ \xbf\x9c\x07\xe4\xfb\x85\xbb\x3d\x77\x3d\xf3\xac\xae\x90\x16\xf7\ \x51\x6b\xa2\xe9\xc2\x10\x6d\x13\xc9\xf3\xc0\xd3\x24\xca\x99\x30\ \x1b\x1d\x2b\x1f\xc3\x88\x86\x6b\x71\x93\xb4\x36\xd7\xd2\x12\x67\ \x65\xd2\x49\x71\x34\x1d\x76\x97\x8b\x00\x07\xa8\x1e\xaa\x87\xfe\ \x6e\x04\x00\x91\xeb\xf5\x4d\xa4\xd7\xf7\xf2\xb9\xf6\x5c\x38\x46\ \xef\xdc\x83\x6f\x6c\x02\xb6\x3b\xef\xf6\x66\x69\x25\x98\x17\x4e\ \xa5\xb7\x2d\xdd\x5e\xed\x3c\x11\xba\x20\x9e\xc3\x94\x38\x67\xa9\ \x28\x0e\xcb\x0e\xde\x17\x59\xeb\x3c\x78\x7b\x9c\xb9\x54\xb7\x89\ \x81\xeb\x73\xd8\x71\xaa\x6b\x3c\x41\xe4\x4b\x4d\xa5\xad\x11\x30\ \xe5\x15\x54\xa2\x8b\x13\xe8\x10\x8f\x25\x5f\xd4\xfa\xc4\x6e\x3b\ \x36\x8a\x52\x40\xd8\x24\x5b\x33\x5d\xda\x30\x9d\xd3\x2b\xf0\xc1\ \xb5\x15\xd7\xd2\x1a\x67\x65\x79\xcb\x57\x38\x44\x09\x1a\xc5\xbd\ \x6d\x4b\xb9\x38\xda\xd3\x99\x93\x0a\xba\x58\x05\x83\xc4\x2a\xa8\ \x3e\x0f\xce\x41\xc2\x5c\xc4\x2f\xc3\x4b\x73\x34\xc8\x19\xb5\x8a\ \x46\x96\x43\xbc\xa1\x5d\xe1\x99\x90\x7f\x7a\x2c\xe5\x28\xec\x5f\ \xcd\x61\xac\x31\xab\xe6\x30\x93\x70\x52\xb6\xf8\xbe\x89\x07\x2a\ \x1b\xc9\x73\x5c\x62\x26\xbd\xee\x66\xcc\x9c\x8c\x51\xab\xd2\x48\ \xed\x9c\xb0\x33\xd2\xeb\xac\x37\xcf\x96\x21\xda\x2c\xb3\xf3\x67\ \xdc\x06\x51\x96\x3d\xd5\x24\x48\x59\x3a\x9e\x71\xd5\x8c\x37\xf0\ \x8a\x43\xeb\xd0\xf3\xa4\x58\xd0\xdd\x8e\xf6\x57\xbb\x60\x4a\x7f\ \xb7\x0f\x54\xe7\x57\x0f\x60\x86\xd0\x56\xbf\x48\xf0\x1e\x2e\x1a\ \xc3\x20\xa7\xba\x1c\xe8\xf3\xa3\xb7\xfc\xef\xff\x39\x8a\x05\xb0\ \x82\x44\x1d\x56\x24\x02\x12\x25\x34\x4b\xfb\xa5\xdf\x66\x36\xe0\ \x13\x83\x01\xb7\x2f\xb1\x8b\x41\x44\x91\xa4\xdd\xe9\xbf\x47\xbd\ \xec\xf6\xad\x58\xfa\xfb\x7f\xad\xdf\x08\xba\xa6\x9f\xf5\x88\x2d\ \xfb\x4b\xdb\x23\x08\x8a\xd9\x4a\x8c\x8e\x71\x7a\xd1\x4c\x93\xa2\ \x4e\xd7\x3c\x11\xb1\xe8\x20\xed\x3c\xd7\xac\x17\x21\xdc\xf8\xc0\ \x7a\x69\xbf\x9c\x07\xaa\x4f\x3a\x79\xed\x8a\xc3\x51\x98\x50\xcc\ \xa7\xfe\x9a\xf7\xf3\x52\x10\xb1\x73\x44\x4a\x75\x96\xb7\x7e\xa6\ \x8d\x99\x16\x45\x7e\x93\x28\xb6\x19\x5e\x04\x86\x88\xe3\x97\xc9\ \x9e\x1f\xa6\x91\x7e\x17\x45\x27\xd8\xc9\xbb\x3e\xa1\x96\xe2\x77\ \x53\x18\xf3\x71\x8e\xbf\x45\x01\x3d\xba\xac\xca\xe1\xb2\x32\xd8\ \x7a\xfe\xf0\x05\xdf\x4e\x05\xcf\x46\x25\xd2\x3e\x45\x6f\xce\xf5\ \xd9\x94\x4b\x40\x28\xbe\x19\x08\xa5\x4a\x93\x1e\x84\x63\x82\xbb\ \x01\x16\x66\xc8\xab\x37\x42\x5d\xdc\x7d\x9b\x30\x48\x7b\xb0\xc1\ \x56\x8e\x8f\xe3\xb8\xb2\x05\x9f\xda\x4b\x7c\x72\x51\xfa\xc3\x3f\ \x47\x79\xdc\x63\xf6\xc1\x70\x63\x26\xe1\x70\x9d\x9f\xc7\xfa\xb8\ \xee\x3a\xe9\xdd\x73\xd0\x07\xe7\x9c\xe3\x93\xa2\xdd\xb5\x90\xbb\ \xc7\xe0\x3f\xff\x45\x0f\x5e\xf3\x7d\xad\xe6\xfa\x56\x83\xf4\xa5\ \xb2\xc2\x63\x1d\x87\x53\xa1\xbf\xc7\x58\xdc\x29\x1a\xff\x36\x46\ \x51\x55\x5b\x18\x82\xb0\x36\x22\xbd\x89\x0e\x1a\x07\x63\x6b\x57\ \x7d\x7b\xf0\x7d\x3c\x40\x99\xda\x81\x77\x9a\x9e\x50\x70\x3b\x9e\ \xbe\x14\x45\x2e\xaf\x5e\x2a\x2b\x56\xcf\x42\x41\x29\x1f\x59\x1a\ \x4b\x0a\xd0\xb9\x36\xa9\x3b\x08\x8b\xbb\xcc\xad\xed\xe7\x6e\x32\ \x9a\x7c\xd7\x30\xde\x63\xe2\xa6\x8d\x8b\xf3\xd1\x49\x32\x59\x5c\ \x3a\x3a\x39\xce\xa6\x15\xf0\x6b\x15\x1d\xda\x41\x3a\xc7\x09\x7d\ \xf6\x87\xdb\x76\xcc\x8e\x57\xb3\xdd\x8d\xbc\x7e\xff\x8f\x75\xc6\ \x60\xec\xa3\xf2\x1b\x6d\xa7\x3b\x36\xba\x87\x01\x39\xfb\xf0\xaf\ \xfb\x65\x63\x68\x8f\x31\x48\xc2\x92\x9e\xe5\x35\xd2\xea\x9c\x8b\ \x23\xad\x6d\x4b\x3e\x9b\xd5\xe4\x65\x8c\xc3\x30\xa7\x77\xf0\xf8\ \xf2\x8d\x42\xe3\xdb\x76\x4d\x8e\x3e\x86\xf2\xaa\x8e\xa3\xaa\x22\ \x99\x3d\x8a\x4d\x0c\xbc\x73\x90\x19\xba\x03\xcb\xad\x17\xf4\xb8\ \xe8\x0e\x9e\xf1\xf0\xb8\xe9\x6b\x4f\x10\x3b\x14\xc1\x13\xeb\xd6\ \xed\xdc\xe2\xf8\xd6\x79\x76\x92\xb3\x91\x1f\x1f\x02\xc4\xac\x45\ \xab\x67\x5a\x49\x91\x69\xc9\xbe\x05\x66\xd2\xfa\x8a\x6f\x79\x85\ \xb4\x3a\x75\x5f\x71\xc8\x92\x69\xc7\x92\x81\x0c\xfe\xa8\xcc\x5d\ \xb8\x79\x4c\x25\x14\x32\xc5\x98\xf8\x39\x60\x20\x3a\xb4\x67\xe8\ \x1a\x7f\x92\xb6\x3e\xd4\xfb\xca\xd5\xa6\xa4\xc8\x13\xea\x50\xd4\ \x83\xf3\x3a\x0f\x62\xaa\xe9\x64\x73\xb7\xe6\x06\x93\xfc\xcd\xee\ \xdc\xf0\x29\x1d\x0e\x92\xd2\xe1\xf0\x2d\x6f\x90\x56\x57\xb6\x64\ \x95\x6b\xd0\x6e\xce\x52\xb4\x4d\xc9\x19\xa6\x74\xcf\xc3\x18\x76\ \xad\x7c\xfe\x2e\x96\x9b\xc3\x14\xa2\xdc\xee\xfd\x35\x7e\xff\x8f\ \x0d\x06\x53\x20\x6c\x29\x1e\x2b\xfa\x76\x0e\x34\xd4\xb3\xdf\x93\ \xb6\xdd\x41\xd2\x7f\x73\xbb\x83\x74\x38\x38\x83\x32\x7b\xdc\xab\ \x3d\xc5\x48\xe0\x78\x78\x96\x57\x39\xab\xab\x17\x0c\xc8\xee\x27\ \x98\xac\xfd\xa9\xcc\xc2\xf3\x01\xbb\xfe\x2b\x2e\x7f\x09\xc6\x74\ \x64\x0b\x2b\xda\x6d\x1e\xca\x6b\xbe\xed\xd0\x5d\x5b\x6e\x1a\x95\ \xe2\x1f\x8a\x37\x82\x53\x69\xbe\x6d\x75\x6e\x9b\x7b\x43\x40\x75\ \xcc\x3d\xf0\xb7\x3f\x8c\xd0\xa2\x9c\x2e\x82\xd6\xe4\x10\xb4\x3e\ \x8a\xb4\x56\x6e\xb5\x2d\x1a\x13\x65\xfd\x84\x16\x4f\x73\x88\x8e\ \xe3\xef\x3a\x43\x75\xfc\xc3\xbe\x2f\xc1\xb7\xbc\x40\x5a\x5d\x75\ \x2d\xae\x72\xd6\x16\xd5\x86\xc4\xb6\x7c\x48\x0a\xa3\x0e\x84\xc1\ \x9f\xab\xcb\xa3\x16\x04\x04\x1a\x40\xf0\x2d\xb0\x90\xd6\x17\x9c\ \xeb\x2b\xa4\xe5\xa9\xfc\x81\xfd\x64\x50\xe0\xac\xe1\x52\xc4\xb1\ \x6e\x42\xde\x70\x9d\xd3\x7c\xa7\x7b\x38\xad\x83\x93\xaa\x46\x95\ \x1f\x72\x30\x6f\x0a\x23\x6a\x5e\x73\x7b\x47\xeb\x38\xa9\xd4\x16\ \x61\xda\xd8\x1c\xfd\xce\x2c\xf3\x5d\x42\xbf\xd3\xa5\x00\x17\x29\ \x0a\x70\xbb\x6d\xea\x1b\x10\x1d\x27\x29\x4d\x95\xb1\x1c\xae\x26\ \x9d\xe1\xfd\x9c\x55\x3d\xc9\xd1\xec\x1c\x1c\xd1\x91\xe2\x09\x98\ \x73\xfb\x57\x1d\x7f\x5a\xec\x8e\xa6\x92\xa2\x20\x29\x5e\x7f\xea\ \xcf\x65\xb3\x78\x08\x3a\x88\x59\x31\xae\x0e\x90\xb2\xd2\x89\xcd\ \x8c\x3e\xdc\xfd\xd9\x11\xa7\xc6\x8e\x73\x0a\xf4\x38\xbe\x9a\x6d\ \xbb\xf5\xda\xb3\x4d\x82\xce\x5a\xf2\xd9\xca\x25\x92\xad\x9c\x54\ \xb4\xe6\x6b\x58\x76\x6c\x62\x48\x7b\xbb\x9c\xd7\x12\x63\x6d\x59\ \x27\xc0\xf6\xc9\x4d\xda\x31\x24\x68\x54\x79\x8a\xcc\xc9\x00\x2f\ \x68\x91\xe9\xc0\x30\x35\x06\x86\x49\x2f\x92\x47\x76\x85\xb0\xb4\ \xb2\xd3\x4f\x47\xbe\x1b\x37\x19\x97\x91\xf0\xda\xaf\x53\xb8\x0c\ \x92\xcf\xc9\x0c\xd5\x01\x53\x94\xc9\x26\x0b\xa7\xe8\xea\xd2\x53\ \x3a\x4e\x1b\x50\xee\x82\xb9\x53\xe6\x47\xd3\x47\xa6\x0a\x1c\x1e\ \x51\x56\x65\x55\xfb\x31\x8c\x24\xee\x96\xc7\x96\x3c\x46\x9a\x2f\ \xb9\x0a\xbf\xb9\x74\x25\x28\xf6\x5d\x9e\xe5\x5d\x92\x66\x04\x38\ \x9f\x3d\x35\xd0\xe3\x44\x51\xf5\xf3\xc0\x6a\x04\xd4\x1b\xbf\x61\ \x35\xbf\xfd\xe7\xe6\xfd\x5f\x9d\xb0\x39\x9b\x67\x44\x58\x36\xa0\ \xef\xf8\xf7\x2d\xb2\x0b\x1e\xaf\x68\x79\xac\x1c\xe9\xe3\xdd\xdf\ \x9d\x04\x29\xcf\xc1\x1b\xa4\x6b\x35\x7d\x96\x3c\xea\xf8\x47\xa8\ \x10\xe6\x45\xdc\xf2\xf0\xad\x08\x9e\x2d\x3a\xd8\xb4\xfb\x7d\x9d\ \x91\x1f\x7c\xb6\xb9\x58\x14\x44\xe8\x61\xcf\xb6\x1b\x43\x69\x47\ \x33\x64\x47\x0b\x47\xfd\xc5\xce\x73\x64\xcf\xf2\x32\x69\x75\xd3\ \xe7\x7e\x33\x49\xee\x37\xf3\x02\x53\xda\xf7\x2e\x53\xc6\xa9\xc9\ \xa9\x0e\x9c\x48\xf2\xc0\xc3\x17\x58\x26\x29\xae\x94\x4b\xa5\xc2\ \x4a\xcc\xef\x69\xa3\xbf\xdf\xf4\xc9\xc0\x43\x34\x71\xb4\x2b\x66\ \xca\x22\x7f\x47\xc0\xcb\x5e\xd0\x6a\x8f\x42\x4c\xa5\x44\x04\x35\ \x39\x35\xc7\x1b\xb7\x7b\xc5\x9d\xdf\xfe\x32\xf7\xe2\x3d\x47\x5f\ \xc9\x21\x69\x12\xb7\x66\xfc\x1f\xbf\x92\x7c\x1d\xc2\x57\xd2\x85\ \x99\xf0\xd4\xba\xe9\x03\x14\x89\x68\x87\xd1\x55\x0c\x8c\x5e\x74\ \x70\x2d\x2e\x70\xd6\xa6\x0a\xa3\xb6\x1c\x46\xa0\x60\xe4\x92\x08\ \x71\x3a\x6e\xd3\x7d\x67\xf8\xf7\xff\xd8\xe4\x54\xe8\x9f\x54\x8f\ \xc9\x3e\x85\xfe\x4c\x52\xe8\xaf\x97\x30\x8c\xd9\x7e\x28\xa4\x27\ \xbf\xfa\x9a\x7e\x8d\xb1\xba\x6d\x0b\xee\xb0\x3b\x68\x8c\x49\x77\ \xde\xaa\x79\x0e\x61\x91\xb6\x7d\x1f\x8e\x7b\x55\xae\xe7\xae\x93\ \x9e\xbb\x4f\x97\x12\x4a\x26\x74\x7c\x60\xb9\xc0\x6b\xe7\xd7\xc1\ \xb3\xc0\x4e\x5a\x9f\xf2\x51\x5c\x62\xb9\x99\x20\x96\xfb\x61\xf5\ \xf1\x29\xaf\x94\x07\x8e\x44\x10\xa7\xee\xae\xa5\x0d\xce\xca\x82\ \x02\xe4\xac\x6b\xa7\x93\xf5\x73\x9b\xd0\x8f\x6e\xe4\xb6\x37\x32\ \xd3\x39\xb5\x37\x32\xf2\xb9\xb6\xa5\x2f\x8f\xbf\x53\xd3\x27\xc8\ \xcc\xea\xb3\x36\x16\x4e\x0b\xa9\xea\x11\xf3\xd9\x7d\x4f\x02\xb3\ \xb8\x3b\x80\x0c\x17\x51\x9d\x62\x1c\x61\xcd\xf8\xa6\xcc\x08\x48\ \xa6\x9e\x8e\xd7\x9e\x13\x6e\x9a\x03\xfd\xb8\xa7\x60\xe7\x4a\x87\ \x41\x86\xea\xa6\x3d\x6a\x10\x96\xc9\x24\x14\x9a\x1e\xfa\xf9\x1e\ \xa3\x1c\xf3\xcf\xab\x3e\x4b\xb6\x4c\xf0\xbc\x93\x29\xf8\xc3\xab\ \x93\x18\x6a\x06\xd5\x15\x06\x07\x27\x0c\xce\x2d\xc6\x6a\x0f\x70\ \x39\xa3\x1d\x17\x8d\x23\x72\x78\x05\x3b\x70\xd9\xa0\x91\x4b\x98\ \xcf\xfa\x79\xdb\xdd\x9f\x1d\x25\x43\xc5\x81\xc5\x53\x73\x41\x86\ \x80\x8a\x2b\x34\x51\x90\x15\xc3\x67\x45\xf4\x35\x49\x3b\x7e\x51\ \x3c\x87\xb7\x73\x0e\x6f\xdf\x1a\xc1\x1f\xc1\x03\x88\xe3\x89\x7d\ \x4a\xe4\xcf\x12\x25\xec\x7a\xa8\x9d\x71\xbf\x96\x0c\x3c\xaa\xbd\ \xb8\x44\x5a\x9b\x6f\x69\x9c\x95\x4d\xc9\x71\xcc\x9f\x4d\xe3\xe0\ \xb1\xcc\xfd\xd6\xed\x34\xd7\xa6\x7e\xf1\xc7\x6a\x4c\xc2\x87\xf2\ \x50\x3b\xd3\x1d\x84\xe3\xf7\x5f\x3d\x33\x80\x1e\x75\x5b\xa3\x58\ \x21\x60\x08\x9f\xef\x38\x9a\x4a\x56\xe5\xd8\x6f\x19\x70\x9f\x6f\ \xb8\x92\xa0\xa3\x23\x1d\x8a\x77\xd9\xd7\x1f\xfe\xb5\xc0\x48\xd2\ \x92\x0b\xb5\x9b\xf6\x98\x9f\xd1\x3c\x70\xec\x41\xf0\x6c\x41\x26\ \xed\x40\x8c\xda\x05\x75\x64\x32\xf2\x1c\x30\x10\x92\x32\xce\xb2\ \xfd\xdb\x74\x9e\x7e\xbc\x42\x8d\xf4\x76\xc3\x8d\xe2\x4d\x57\x34\ \x03\x73\x38\x18\xea\x84\xf4\x3c\x2f\xf4\xc8\x26\x0c\x92\x6c\xc2\ \x87\x8d\xa2\xb3\x6f\x1c\x9b\x49\xd3\xd8\xe6\x1a\xdd\x77\xce\xe4\ \x3e\x46\x9f\x20\xa0\x22\x29\x3d\x12\x5e\xbb\x09\xf8\xb7\x9a\x9d\ \xa8\x85\x9b\x43\x17\x5a\x49\xec\x84\xa6\x94\xad\xb7\x13\x55\x19\ \xfa\x7c\xa4\xf9\x59\x36\xcf\xf6\x30\x73\xe8\x4e\x75\xc7\x71\x4a\ \xbb\xf1\x7a\x0c\xb8\xac\x1e\xe1\xef\xac\xd5\x1d\xa5\xa5\x9c\xec\ \xb7\xac\x6f\x4f\xb4\xd3\x1f\xf8\xaf\xb8\xe3\x17\x96\xd4\x91\xd9\ \xa9\x7c\x2f\x01\x0e\xad\x74\x24\x9b\x67\x25\x13\x77\x02\x9b\xc3\ \xa3\x54\xe7\xd8\xf2\x4e\xda\x71\xb5\x6c\x35\x8f\x81\x8e\xa9\xce\ \x3f\x4e\xfd\x43\x3d\x7c\xd9\x6c\xc3\x37\xe4\x72\x32\xf0\x1b\xbe\ \x3d\xe0\x6c\x41\xf7\x3d\x9d\xdd\xf5\x72\x0e\xd2\xc3\xa9\x42\xaa\ \xb6\x23\xa9\x36\x57\xbf\x49\x79\xbf\xff\xe7\x0a\x83\xba\x37\x7d\ \x08\xc1\xc9\xc2\x3f\xfa\xc0\x10\x91\x04\x86\x50\x68\xb9\x0b\x9e\ \xcc\x38\x76\xdd\xd5\x36\xa3\xc0\x64\xe5\x3b\xdb\xf6\x9e\xbb\x8a\ \x27\x00\xa2\xa4\x1e\xb1\x27\x96\x72\xf3\xce\x71\xec\x69\xeb\x48\ \x9a\x31\x6c\x6b\xb0\x1d\x57\x65\xc3\xc7\xe3\x8e\x83\x41\xe4\xbe\ \x38\x50\x4e\x77\xe2\xe3\xdc\x6f\xba\xe4\x5b\xe7\xd5\xc6\x38\x27\ \x21\xa8\x41\xb1\x89\xd5\x8b\x37\x5b\x53\xaa\x70\xc4\x4d\xb2\xb4\ \x61\x6d\x14\x29\x25\xec\x68\x9d\xe8\xa1\x11\x91\x58\x44\x2e\x4f\ \xf8\x2f\x0c\x0f\xe1\xf7\xcd\x37\x87\xff\x4a\xb9\x34\x30\x8f\x73\ \xba\xe6\xc8\x58\x1b\x8d\x3a\x1f\x04\xb3\x68\x22\x13\x8a\xce\x64\ \x08\x1d\x1a\x57\xcb\x84\xa2\xe0\x14\x37\xcb\xd1\x63\xb5\x54\x19\ \x04\xf3\x7a\xf5\xe4\xcd\x5c\x8c\x62\x2c\xac\x52\x5f\x66\xf2\x3b\ \xf4\x9e\x1f\x6b\xa9\x44\x25\x93\x39\xf8\x56\x99\x41\xbe\x9c\x57\ \xd6\xee\xe0\x57\x10\x92\x35\x15\xf3\xb3\xee\xdd\xd8\xc1\x8e\x61\ \xbd\x6b\xe3\x21\xf2\xa5\x60\x7a\x9e\x61\x78\x84\x49\x45\x20\x9f\ \xd0\x3b\xac\x3b\x1a\x3a\x6c\x9a\xb7\x65\x0c\x61\x3b\x3d\xad\x51\ \xca\xea\xe6\x75\x11\xcc\x73\x59\xee\x42\xf4\x1f\x42\x4f\x67\x44\ \xf2\x0f\xdf\x96\xe9\x03\x5e\x4f\x12\xf0\x3a\xb8\x22\x4f\xe0\x04\ \x9e\x0d\x6b\xb5\xa2\xf8\x86\xb5\x72\x94\x67\x1d\xf6\xf0\x2a\x5a\ \x6f\x1d\xa8\xed\xae\xc4\x70\x78\xf3\xe8\xe1\x76\x92\x1e\xae\xb7\ \x61\x90\x5d\xfd\x82\x18\x48\x0d\x83\xae\x97\xd8\xa1\x9b\x44\xb1\ \x99\xfe\x6b\x1e\x05\xdd\x4d\x07\xd1\x3a\x30\xb5\x98\x3d\x6f\xb1\ \x67\x17\x2e\x80\x17\x23\xc2\x7a\x76\x61\x92\x36\x41\x77\xd3\xa1\ \xa2\xf5\x65\xf2\x46\x18\xc2\x35\x47\x03\xe9\x72\xb6\x24\xbc\x21\ \x4e\x13\x30\x46\x9d\xae\x6e\xaa\x36\xda\x80\x62\xa7\xaa\x37\xc6\ \xf7\xdb\x51\xfc\x7f\xbe\x23\x82\xfd\x81\x85\xd3\x91\xcb\xff\x8e\ \x8e\x1c\xa3\x67\xe5\x38\x2a\x7a\xef\x08\x5d\xe2\x0f\x2a\x04\xed\ \x99\x83\x0d\x39\x09\x17\x9c\xf5\x38\x7d\xfd\xa4\xe4\x7a\x95\x23\ \x60\xe3\xb8\x02\x07\xc7\xe5\xb1\xae\xdf\x4b\x3b\x46\x71\x8d\x0d\ \x47\x70\xe0\x90\x1b\x65\xa0\x3b\x5c\xcb\x9b\x9c\xd5\x39\xc5\x3e\ \x2f\x09\xbc\xf3\xb5\x35\xa9\xad\xad\xad\xd4\x9e\x25\x81\xf6\xee\ \xe1\x71\xc6\x46\x22\x72\x16\x9f\x68\xb7\x80\x2d\x08\xd1\xb2\xcb\ \x56\xda\xc6\x4d\x43\xde\x44\x92\x70\xaa\x27\x80\xe9\xff\xb6\xd4\ \x81\x14\x0d\x44\x69\x15\x37\x87\xd8\xe1\x25\x77\x42\x90\x90\xad\ \x0e\xc8\x54\xdc\x2d\x7e\x86\xd7\x8c\x0b\x92\xff\x51\x87\x6a\x7c\ \xe0\x74\x4c\x3c\xa7\x50\x7f\x19\xce\x5a\xcd\x73\x91\xab\xca\x9a\ \xd2\x34\xa0\xac\x96\xeb\x96\x94\xb0\xf1\x06\xf3\xfe\xcf\x4e\x60\ \xa4\xaa\x53\x62\xa2\x48\x15\x31\x72\x7c\xf6\xda\xcd\xce\xfd\x54\ \xdb\x8a\x00\x4f\x6f\x2e\xad\x33\xc9\x46\x09\xad\xd9\x0f\x37\x3e\ \xba\x6f\x24\xd2\x59\x23\x91\x7c\x39\xfc\x98\x38\xad\xbd\x3e\xc2\ \xfc\xcc\x23\x93\x14\xbf\x50\xc0\xe7\x52\xd7\xae\x05\x92\xd6\xe7\ \x5c\x1e\x6d\x75\xea\xe3\x6b\xc2\x36\x15\x90\x7a\xfc\xb8\x57\xed\ \xe5\x9b\x03\xb4\x74\x53\x05\xee\x3f\x86\xbb\x2a\xb9\x29\x81\xe1\ \x3d\x1c\x7c\xe3\xb1\xa1\x5c\x14\xaa\xbc\xa7\xcc\x25\x84\x1e\x1d\ \xe9\x7a\xba\x7f\x8c\x0c\x7f\x43\x72\x1d\x49\x29\x4b\x4b\xd5\x55\ \xbd\x50\xd6\x56\x5c\x4b\x2b\x34\x5f\xa2\x4f\xfa\x9f\xa8\xaa\x88\ \x9d\xfa\xa9\x80\x1b\x01\x73\xb1\xe5\x3f\x3d\x06\x91\x82\xc7\xb4\ \x72\x9e\x7a\xff\x67\x47\xc3\xef\x8f\x49\x27\xa6\x9d\x22\x7b\xf0\ \x8c\xda\xd0\xf9\xe3\x26\x24\x45\x38\x33\xac\x08\x82\xa7\x0d\xa7\ \x15\xd5\xb0\x7e\x9b\xac\x33\xe9\xf3\xfa\xda\xfb\xb5\x5c\xdf\x6a\ \x92\xbe\x55\xd9\x0a\xfa\xd6\x81\xe9\x0c\x04\xd6\xc7\x8b\xcf\xbc\ \xc5\xfc\x3c\x27\xb4\xb9\x10\xb7\x83\x31\x40\x0b\xbe\x6d\xc8\xa4\ \x5d\xd8\x59\x9d\xe3\xe0\x95\x3b\x5a\xf0\x6f\x0f\x8c\xba\xe6\x70\ \xe6\x1c\x36\x54\xf6\x1e\x9f\x7d\x44\x09\xf0\xe9\xdf\x74\x8f\xfe\ \x8d\xbc\x20\x8c\xfa\xb4\x3a\x26\x4b\x49\x07\x50\x8c\x59\x8f\xa7\ \x1c\x0e\xa4\x72\x58\x15\x04\x3c\x72\x05\x84\x7a\x43\xb1\xad\x0e\ \xb1\x46\x8a\xdc\xce\x76\x79\x75\xc4\x4c\x42\xf3\xa8\xb9\x7a\xc0\ \xfb\x80\x33\xb2\x28\x97\xc8\x66\x52\x9d\x4d\x82\x58\x9a\xb4\x49\ \x1d\x84\xe7\x89\xbf\x3b\x66\xfa\x2a\x15\xc9\x5a\x9e\x0e\x79\x8e\ \xf3\x6d\x6d\x69\x5a\xfa\x08\xfa\x61\x04\xe5\x87\xb8\x45\x80\xcd\ \x8f\x9b\x94\xfc\xbe\xa8\x61\xb7\x47\xc6\xaf\xdf\x08\xee\x2b\x41\ \x6d\x35\x1c\x5d\x46\x1d\x20\x1f\xc7\xe7\xee\x6b\x26\x77\x57\x33\ \x79\xb2\x7a\xc9\x5f\xaa\x88\xf6\xb6\x27\xc6\x07\xce\xdb\x70\x54\ \x14\xf3\x36\x39\x23\x21\xd7\xe2\x58\x6b\x1b\xae\xb5\x0d\xce\xda\ \x36\xb7\xc2\xa5\x4e\x44\xe8\x89\x8d\x8d\x70\xb6\xd7\xc6\x68\xa0\ \xde\xa6\x8b\x70\x28\x0f\xb5\x29\x17\x2d\x60\x0c\x86\xe7\x4f\x72\ \x4c\xd9\x55\xb0\x82\x31\x66\x77\xb5\x1f\xe2\x03\x70\xe7\xcf\xe9\ \x0c\x01\xe0\x2c\xcc\x62\xdf\x6b\x4e\xc9\xf9\x3c\x27\x7c\xf3\x7c\ \x09\x33\x02\x4f\x3b\x6b\x5e\xa0\x23\x82\x12\xa1\xa3\xd5\x11\xb7\ \x60\xe1\x79\x5f\x30\xb8\x46\xff\x31\x30\x66\xff\xed\xfa\x77\x1c\ \x1f\x47\x00\x0d\x36\xd7\x28\xbe\xb3\x46\xf1\x62\x15\x69\x3e\x29\ \x14\x26\x96\xb4\xaf\x1c\x18\xcd\x64\x83\xe0\xd5\xd2\x9b\x20\x3f\ \xd6\x7d\x7d\xca\xa9\x78\x05\x42\x05\xe1\x92\x20\x4b\x17\x0d\xf8\ \x1c\x1d\x5c\x1d\x60\xe4\x71\x59\x73\x9e\x17\x10\x1e\x45\xd2\xaa\ \xda\x61\x04\xef\x8b\xa4\x90\x2a\xab\xfc\x53\xf5\xfc\xbf\x95\x97\ \x71\x57\x20\xa4\xa3\x03\x44\x49\x87\x5c\xce\x94\x83\xe4\x4c\x19\ \xb7\x7d\xa7\xe7\x1a\x14\xc6\x35\x88\x5a\xb1\xda\x29\x98\x3e\x86\ \x16\x06\x43\xac\x72\xce\x73\xb0\xba\x15\x16\x3c\xbd\x92\x7a\x73\ \x98\x83\xe5\xbb\x3f\x3b\x9a\x83\xb9\xdc\x27\x27\x23\x0f\xf5\x02\ \x67\x29\x84\xa7\x18\xb7\x64\xb2\x99\xa6\x28\x9d\x9f\x32\x3d\xf0\ \xfc\xba\x84\xd0\x1b\x24\xee\xda\x0f\x59\x61\x04\x27\x69\x05\x3b\ \x70\x6b\x71\x4f\x46\x28\x20\x5d\x87\xee\x54\x67\xa4\x44\x97\x38\ \xb7\x75\x24\x13\x83\xb2\xb1\xd1\xee\x1e\xb4\x80\x39\xf5\x1a\xbb\ \x1d\x41\x60\x22\xb8\xa0\xae\x81\x04\x75\x9d\x3e\x55\xbc\x49\x53\ \xc5\x73\xbd\x05\xd9\xf3\x14\x34\xce\x4b\x90\x6f\xc1\xe7\xab\x1a\ \x29\xbe\xaa\xf3\x7a\x56\x1d\x1b\xce\x78\xee\xff\x03\x0e\x94\x47\ \x7f\x61\xfe\x3d\x79\x8f\x1f\xcf\x9e\xc6\x76\x99\xf6\x70\xeb\x08\ \xad\xec\xea\x5b\x5e\x65\xae\xce\xa6\x25\x0f\x12\x0b\x5a\xf5\xe5\ \x1c\x6d\xa7\x48\x6b\x3b\xb9\x3a\x41\x9d\xe4\x7f\x9d\x37\x0e\xd4\ \x31\xbe\xcf\x3e\x56\x6e\x65\x80\x0a\xb6\x3e\x88\x83\x1f\x5a\x7c\ \xfc\xd0\xce\x88\x1c\x1b\x91\xef\xa8\xbb\x1a\xe3\xe5\xeb\x9a\x6a\ \xb8\xb4\xcc\x08\xb2\x34\xfd\xe6\x73\x96\x1a\x8c\x21\x77\xbe\xf4\ \x05\xcc\x63\xb7\xdd\x4e\x8f\xdf\x98\xe1\xc8\x80\xb7\xe9\x02\xe3\ \xf8\x3a\x5b\x90\x91\x73\x50\x3c\xe9\xfd\xe0\x64\xf7\xc3\x95\xdd\ \x4f\x4e\x72\x2f\xb1\xde\x51\xb9\x68\xac\x27\x31\x27\x3f\x54\xde\ \x56\xd7\xd2\x1a\x67\x65\x59\xbb\x61\xf6\x40\xbd\x53\x46\x68\xe9\ \xe6\xca\x20\xd3\x8d\x92\x40\xee\x7e\x91\xa3\x51\x90\x39\xb1\x2b\ \xf9\xd2\xff\x74\x67\x69\xf8\xfb\xb7\x29\x33\x8c\x0f\xb1\xac\xee\ \x31\x20\x1b\x2a\x07\x7c\x1a\x03\xb6\x65\x92\x15\x71\x82\xe0\xf8\ \x8f\xd1\x20\x4e\x30\x08\x05\x0b\x12\x14\x74\x61\xad\xad\x5e\xfe\ \xb5\x67\x9f\x96\x54\x81\xdc\xfa\xb4\x4d\x43\x66\xc4\xd3\x8f\x5e\ \xcc\x2d\xa5\x65\x87\x6f\x8a\x46\x42\xf2\xe5\x67\x89\x94\x9f\x55\ \xed\x4b\xb8\x38\xbf\x04\x77\xb1\x3d\x8e\x75\x90\x02\xee\x21\x96\ \xbf\xff\xc7\x28\x0a\x1f\x82\x1e\x75\x29\x9b\x52\x9a\x41\xdd\xb5\ \x05\xdd\xb3\x03\x83\xb3\x01\xc5\xb5\xfe\xc2\x59\xbe\xa4\x8b\xae\ \xeb\xab\x3a\x36\x1c\x95\x5c\x33\x1d\xca\x9c\x8d\xf4\x28\xbc\x15\ \x8e\xc2\x5b\xd9\x32\x03\xd6\x87\x71\xb2\xa1\xcf\xfe\x6a\x1f\x05\ \x4b\x35\xd7\xd2\x3a\x67\x65\xc5\xa7\xcf\x54\x48\xfa\x4c\x9f\x1d\ \x76\x75\x97\x8f\xfd\x96\x12\x64\x68\x61\xaa\x47\x9b\xa3\x8d\x46\ \x00\x1c\x05\xd5\x9a\xb6\x95\xcb\x77\xa6\x77\xde\x31\xf7\x08\x6b\ \x7d\xe1\x58\x09\x25\xb1\xe7\xc6\x51\x3c\x64\xfe\x92\x04\x18\x41\ \xbd\xdb\x15\x58\xb8\xf0\xda\xe7\x59\xc7\xf4\x65\x1d\x93\xd1\xf7\ \xd3\xe6\x91\x43\x63\x18\x47\xf7\x18\x7c\x59\x5c\x6b\x6b\x9c\xa5\ \x15\xfd\xe1\x6c\x21\xf1\x48\xd1\xc2\xd2\xd1\xb0\x5b\x9a\x8a\x60\ \x9e\xe2\x00\x1c\x6d\xa6\x94\x81\xd8\x68\x97\x64\x21\x45\xe3\xc9\ \x6e\xea\x52\x76\xe0\xa3\x82\x52\x7f\x51\x82\xa2\x0e\x61\x87\xeb\ \x6b\x29\x4c\xe6\xcf\x95\x93\xf2\x1d\x09\x3d\xe2\xee\xc2\x70\x0d\ \x46\x21\x7e\xa9\xda\xb8\xac\x43\x82\x07\xbc\x14\xee\xff\xee\xa0\ \x84\xae\x2e\x4c\x55\x0c\xdb\x5c\xdb\x90\x9f\x88\x91\x81\xa9\x8a\ \x8a\xce\xe9\xf6\x97\x4a\x37\x82\x3b\xc8\xb8\x2a\x04\x07\x9c\x8f\ \x62\x42\xb7\xbb\xea\xce\x09\x2a\x45\x8f\xc6\x41\xc3\xcb\x24\x1a\ \x9e\x42\x31\xed\x98\x17\x18\xb4\x38\x27\xc7\x90\x47\x31\x2c\x37\ \x87\x94\xa4\x3a\x00\x59\xb7\x58\x75\x46\x8e\x6f\xcb\x54\x3d\x30\ \x2b\x85\x88\x41\x05\xc1\xce\x0f\xd4\xd8\x3f\x9d\xf1\x79\x1b\xb3\ \xcc\xf1\x5c\xb2\x11\x5f\x95\xf1\x5e\x07\x97\xe5\xf5\xe6\x2d\x10\ \x94\x86\x92\x4c\x1f\x1c\x1b\x29\x18\xda\xe3\xa8\x9a\x7d\x51\x35\ \x33\xa2\x6a\xf0\x2d\x8e\xb3\x36\x85\xd1\xdb\x3a\xa1\xca\xce\x3a\ \x7d\x9e\x04\x7f\xe6\x19\x8a\x26\x12\x4b\xc0\x33\xec\x51\xce\x18\ \xc1\xf0\xd0\xb3\xb6\xc6\x59\x5a\xf6\x2d\xad\x73\x96\xb6\x0d\x1c\ \x3c\x5e\x35\x89\x51\x48\x6e\xa0\x9b\xdd\xbf\xe5\x08\x97\x7d\x18\ \xb9\x54\xb5\x88\xb0\xe5\x81\x62\xd7\x0e\xdd\x71\x87\xc3\xa9\x91\ \x14\x0b\x85\x7c\xa4\x26\x6e\xf6\x98\xb9\xc8\xb3\x4a\xa1\x7b\xb9\ \x8e\xe7\x64\x9e\x4e\x4f\xeb\x98\x63\x9d\x28\x95\x86\x83\x28\xb1\ \x2b\x08\x03\x48\x5c\xaf\xa9\xde\xf9\x9e\xdf\x1c\x32\x00\x2a\x87\ \x47\x60\xb0\x14\xfd\xf9\xcc\x2b\x13\x94\x79\x41\x89\x3f\x0e\x81\ \x0a\x15\x21\x39\xae\x6b\x8a\x06\x05\x47\x19\x55\xcf\x5f\xe1\x5d\ \x8e\x39\x3e\xae\x32\x58\xad\x5d\xa3\xb4\x43\xc0\xe1\x7e\x1a\xf7\ \xfb\x2f\x45\xb2\x08\x8d\xc9\xf7\xa5\x92\xeb\x4b\x51\x06\x89\xbb\ \x3e\x30\xb1\x30\xf2\x77\xd2\x1c\x22\x50\xd3\xa3\x74\xaa\x6c\x84\ \xf7\x3d\x24\xe8\xa4\xa3\x25\x43\x12\x7b\x04\x30\x19\x1b\x9a\x7c\ \x1f\x97\x48\x1f\x77\x39\xca\x7a\x7a\x96\x84\x0f\x6b\xae\x41\x11\ \xc5\x3b\x5c\xcd\x7b\x1d\x0f\x3a\x27\xb7\xf5\xcc\x13\x33\x67\x9c\ \x78\x31\xa5\xcd\x3b\x97\x2e\xf8\xfe\x71\xe4\xe9\x37\x7b\x9e\xd8\ \xb7\x04\x3e\x45\x5a\xc5\xe5\x6e\x4b\x59\x5a\xf4\x58\xa1\x7d\x65\ \xf7\xc7\x89\x6d\xf2\xa0\x98\xea\x2d\x31\x40\x4c\xa2\xfa\xef\xc9\ \xa2\x33\x25\x89\xee\xb7\xe6\x92\xd5\x68\x8c\x21\x77\xbe\x34\xbc\ \xad\x2b\xb7\x65\x3c\x08\x7c\x64\x0f\xef\x66\x32\x7a\x45\x7b\x0e\ \xe1\xa0\xdd\xa4\x1b\x41\xe5\x71\xa2\x6a\x73\x20\x7a\xd3\xa5\xfa\ \x6f\xe9\x55\x0d\x4a\x94\x0b\x97\x3a\xb7\x5d\xc1\x53\x66\xfd\x45\ \xda\x4a\xf6\x83\x91\x19\x72\x1f\x7a\x9a\x1c\x9e\xe8\x1b\xff\x4c\ \x70\x76\xf0\x74\x56\xd5\x01\x82\x81\xb0\xc9\x3e\x5b\xcf\x98\x49\ \x84\x9a\x72\x15\x93\xe6\x7b\x5f\x18\xa1\xb5\xe8\xe1\xb4\xe5\x35\ \x38\xb6\xd9\x32\xfd\xb3\x4d\x61\x82\x82\x64\x09\xe2\x21\xce\x49\ \x61\xf4\x4c\x0a\x1b\x69\x52\x58\xf4\xf9\xb4\x6f\xe8\xfd\xa4\xe5\ \xb7\x91\xba\x31\xc6\x31\x7b\xf2\x63\x9f\x02\xc6\x11\xdf\xa4\x40\ \x73\xf6\x93\x39\xd9\x7a\x55\xd9\x44\xfb\xcd\xeb\x14\xd3\xe1\xb8\ \x23\xb9\xa3\xd0\x0a\xea\x62\x68\xbd\x0a\xf1\xee\xcf\x0e\xbe\x56\ \x53\x9a\xa5\xf5\x13\x37\xcd\x11\x8e\xfb\x1c\x1e\x84\xf3\x20\xd1\ \xfd\x3f\x4c\x76\xff\xf0\xea\x86\xcf\x54\x79\x90\x4c\x95\x63\xbd\ \xde\x16\xfb\x8d\xad\x0c\x5c\xf5\xd5\xfd\xb6\x02\x82\xfa\xcd\x12\ \x2c\xc0\x82\x6f\xe8\x10\x68\x43\x87\xec\x78\x62\x2b\x47\x7f\x6d\ \xbf\xb0\xf6\x5e\x36\xca\x56\x0a\xe3\x27\x38\xfa\x66\x51\xf8\x9f\ \xdd\x7c\x61\xc3\xdd\x5f\x9d\xb6\x59\x5d\x7c\x7f\xc2\x9e\x37\x99\ \x80\x58\x0f\xcc\x56\xb2\x37\xe3\x3d\xc7\xcb\xf0\xb3\x6f\xec\x5f\ \xf3\x18\x54\xd7\x1e\x34\x16\xa7\xc7\xb7\x05\xc5\xb3\x03\x93\xb4\ \x03\x3e\x57\xd7\x0b\x37\x7a\x1c\x7a\xb2\x2f\xf4\x64\x4a\xe8\x49\ \x9a\x42\xd9\xc4\x3d\x75\x69\xe1\x10\x3b\x3e\x65\x90\x3b\xb5\x47\ \xe1\x71\xcf\xa4\x60\x7e\x3f\xee\x91\xeb\xc3\x33\x73\x16\xf7\x51\ \x40\xf3\x76\x2c\x71\xf8\x12\x56\x8a\x4c\x9b\x8e\x41\xed\x12\xb7\ \x3d\x54\x8a\xbf\xff\xd7\x64\xea\x76\x8e\x86\xdd\x50\x04\x5b\x10\ \xbb\x88\xce\xab\xf5\x28\xce\xbb\xbf\x3a\x38\xe4\xda\x1b\xf3\x34\ \x76\xcf\x11\xe4\xbb\xf5\x6d\x77\x23\x1b\x23\x6b\xbf\x80\x0a\x0e\ \x5d\xd6\x42\xe9\xad\x54\xd7\xf2\x2a\x67\x75\xdb\x29\xd9\x9e\x9b\ \x37\xf9\xd3\x73\x67\x07\x17\x5b\x4a\xff\xe8\xfc\x0a\xb7\x5b\xf0\ \x44\x8c\x71\xbb\xd7\x9e\xfe\x53\xf8\x21\x70\x7c\x82\x6b\x0b\x02\ \x67\x07\x82\x6b\x03\x82\x67\xfd\x89\xb3\xfc\x75\xd8\x54\x3b\xc1\ \xbc\xbd\xe1\x46\x70\x42\xda\x47\x20\x9a\xc8\xd3\xa6\xbd\xc3\xe3\ \xc4\x30\x2a\xfb\x2e\x59\xf1\xb9\x5f\x05\x25\x01\xa1\xe9\xc1\x4c\ \x06\xc1\x36\xfd\xbd\x6a\xe0\x21\x13\x43\x07\x53\x48\x8d\xe6\xce\ \xfb\x8b\x2e\xcb\x41\x81\xdb\x19\xb4\xa4\x29\x85\x2b\x61\xf8\xec\ \xa9\xb6\x35\x7d\x36\xa7\x6e\xf9\xee\x8f\x0e\xbe\x51\xb9\xd9\x7e\ \xe3\x5d\x06\x9d\x0c\xed\xcb\xa2\xef\xaf\x9d\xac\x07\xc6\x00\x21\ \xfb\xcc\x85\x33\x09\xa3\x3b\x5c\x66\x05\x93\x63\x56\x10\xf3\xe6\ \xa8\x9a\x8d\x8b\x49\x99\xef\x55\xa7\x9b\x50\x25\x39\xee\x54\x17\ \x76\xe8\xea\x5c\x9c\x13\x8d\x3c\x73\x9d\x74\xe9\xbf\x50\x36\xd3\ \x31\xea\xae\x24\x56\xda\x7f\xc0\xb3\xe9\x5b\x20\x69\x7d\x53\xed\ \x72\x1c\x73\x0d\x8a\x50\xf5\x46\xf0\x3a\xc8\x36\x53\x70\x2b\x1c\ \x65\x4c\x47\x97\xb6\x31\xba\xb4\xc5\xb5\xb8\xce\x59\xdb\x97\xe9\ \x8e\x63\x22\x45\xb8\xe8\xdb\x8b\xd9\xf1\x02\xa5\xfb\x94\xe7\xb7\ \xff\x1a\xa7\x43\xd7\x5c\x78\xbb\xc6\xc1\xdb\x39\xb7\xc0\xb7\x03\ \x91\xb5\x05\x8a\xde\x74\x08\x91\xc7\xbb\xc4\xf7\xb7\x07\xb8\x31\ \xb2\xe3\x3d\xf3\xb0\x5b\x33\xfa\xc4\x12\xba\x2e\x1e\x69\xa1\xc9\ \x91\x16\x4a\xdb\x62\xd9\x4a\x8f\xe5\xef\xcc\xfc\x58\x75\x64\x09\ \x19\xb2\x1a\x19\x59\x29\x54\xdb\xa7\xe0\xef\xe5\xb3\x37\x7d\x19\ \xd4\x24\x25\x50\x92\x44\xbb\x2e\x7a\x8c\x5a\x05\x1e\xbf\xf9\xae\ \xf2\x6e\x2b\x74\x18\x37\x98\x62\x3a\xb2\x9b\x13\x26\x27\xb0\x5d\ \x5e\x20\x46\x0b\xa3\xdc\xfd\xd5\x49\xd3\x2c\x7a\xf6\x49\x41\x44\ \xc7\x65\x70\xbb\x10\x85\xe6\x95\xc2\x51\x39\x7e\xcf\xb7\x54\xaa\ \xfd\x96\x6d\x41\xec\xd3\x70\xb1\x0d\x5c\xcd\xe7\x5c\x25\x2e\xce\ \x67\x08\x5b\xc3\xc3\xcc\xdb\xf7\xf3\xc9\xe9\x3e\xd9\xf5\x79\x90\ \xdf\x99\x21\xce\x6a\x33\x6d\x84\xd7\xc3\x20\xda\x28\x1f\xdf\xac\ \x11\x64\x13\xce\x57\xb7\x3f\xce\x83\x71\x0c\x5a\x98\x1c\x37\xa0\ \x24\x81\xb0\xb5\xc4\x70\x41\xc7\x9f\x83\x4f\xd6\xb7\xe3\x98\x57\ \xd7\x5d\x5b\x3e\x38\x3b\xfe\x61\xeb\x91\xa9\x8d\x4a\xd7\x79\x52\ \x4f\xc1\xd3\xbd\xf4\xcc\x66\x07\x4b\x6b\x2a\xe9\xa1\xb4\x07\x3b\ \x04\x41\xf3\xb2\xd1\xc0\x8e\x39\x77\xd4\xd0\x63\x3c\xe7\xdb\x14\ \xe6\x3c\x23\xf7\x28\x0f\xca\x87\x11\x12\x36\xef\x2e\x14\xd7\x26\ \x68\x8e\x4c\xd8\x85\xea\xda\x84\xca\xd9\x83\x21\x83\x2b\x47\xa7\ \xa3\x49\xf6\x40\xb0\xce\xf5\x0d\x9e\xe3\x79\x22\xd6\x5c\x4b\x1b\ \x9f\x5c\x59\x0c\x9c\xa5\x7d\x69\x33\x9a\x53\x39\x4a\x73\xf8\xc3\ \x73\xa4\xed\x15\xe9\x82\x18\x55\x42\x15\xa1\x75\xb2\xa3\x97\xc9\ \xb2\x77\x70\x0a\x1a\xb3\x0c\xc9\xb2\x07\xc4\xbc\x67\x37\xe7\x34\ \x3e\xe9\xf8\x59\x25\x59\x16\x94\x91\x55\x91\x05\xc5\x65\x12\x22\ \xc1\xb8\x39\x30\x38\x6d\xab\x20\x38\xbe\x14\x63\xd4\xfd\x9f\xfa\ \x1c\x54\xd7\xe2\x2a\x67\x6d\xd5\xb5\xb4\xca\x59\xd9\xc5\x70\x73\ \x64\x29\x91\x32\xbc\x42\x69\xeb\x62\xfd\x76\x0a\xeb\x37\xfb\x38\ \x24\x99\xc4\x21\xe9\x5a\xe0\x3b\x08\xdb\x14\xed\xfa\x0f\xbf\x9c\ \xca\xd3\x74\x24\xda\x5f\x7c\xce\xe3\x50\xe7\x59\x5e\xe7\xac\x2e\ \xfb\x16\x57\x48\x6b\x93\x91\xa3\x23\xc9\x52\x5b\xb0\xf3\x24\x4b\ \xd9\x2a\x66\xf3\x49\xc7\x08\xc7\xef\x41\x77\x2d\x6e\x70\xd6\x56\ \x5d\x4b\x6b\x9c\x95\x5d\xb2\xe5\xd6\x46\x92\x54\x49\x44\x26\x66\ \x38\x1a\x05\x49\xad\x15\x28\xe9\xb1\xbd\xbc\xc0\x62\x98\xb8\x6c\ \x7a\x1a\xc9\xa6\xe7\x9a\x0e\xd9\x77\x6e\x32\x86\x1a\x5b\x0a\xc8\ \x6d\xb6\x7d\x4e\xf7\xcd\x8e\x70\x59\x74\x88\xcd\x20\xf8\x75\x4f\ \xbf\xb7\xa9\x80\xc3\x79\x4b\x54\xdb\xcb\x1e\xb4\x61\x3b\xef\x9e\ \xab\xa4\x86\x8d\xbb\xe6\x8c\x7e\xc2\xcd\xe5\xe7\x74\xdd\xcd\xe3\ \x5b\x57\x5c\xe2\xec\xaa\xd1\x6a\x4c\xbf\xb4\x2d\xc1\x98\xa5\x36\ \xc7\xa0\xa9\x5e\x50\x68\x4b\x3f\x6c\x30\x7e\x97\xcd\x1d\xb7\xbe\ \x54\x27\xe9\x28\x0c\x65\xb5\x3b\xd4\x85\x12\x87\x46\x36\x7d\x13\ \xde\xc0\x01\x6f\xd6\x9b\x2d\xc2\x3b\x24\x2d\x3e\x6e\x60\xe9\xf4\ \xc4\xb2\xb4\xd1\xe9\x02\xc1\x65\xa9\x79\xe6\xb6\x49\x8e\xb7\xd1\ \x25\xd8\x76\xb1\x84\xb7\x60\xfb\xf5\x58\x6f\xc1\xd4\x74\x96\x40\ \x93\xf4\x58\x87\x50\x90\xab\xa2\x9b\xe0\x18\xd4\xa8\x48\xe2\x79\ \xa7\xa1\x7a\x06\xe0\xea\xb3\x4e\x50\x3b\xaa\x1e\xde\x97\x5e\x5d\ \x82\x81\xef\xa7\x25\x0f\x92\xef\xe3\x32\x25\xdb\x53\x01\x75\x73\ \x1c\xa0\xe4\x92\xe3\x98\x93\xb7\x9b\x89\x75\x30\x65\xaa\x1b\x09\ \xfc\x9a\xdd\x6f\xb2\x1a\x81\xf5\xea\x96\x9d\xe7\xea\x1e\x45\xfa\ \x76\x89\xf9\x9e\xe6\x44\x9b\x59\xe0\xb0\x41\xdb\xc3\xc6\x73\xb6\ \x4e\xf3\x80\x4f\x62\xd3\xc8\x7a\xfc\xfe\xca\x98\x3c\xda\xce\x6b\ \xd2\xc3\x8a\x14\xeb\x35\xc1\x2f\xdb\xc0\xf1\xbd\xf1\xa7\x1b\xba\ \xd5\x57\xcd\x97\x71\xab\xaf\x9e\xab\xe1\xb7\xeb\x32\x7b\x7e\x41\ \xc2\xb3\xa7\xae\x2f\xa6\x65\xaf\x02\xf2\x22\xc1\xfd\x78\xdb\xd1\ \x38\x70\xea\x0c\xae\xab\x8a\x8f\xda\xbf\x5f\x54\xfa\xd2\xf1\xef\ \xe7\x74\xd3\xde\xd8\x2f\x03\xec\x9b\x6f\x14\x37\xed\xee\xdb\x83\ \x41\xda\x82\x26\x04\x2f\x17\x22\x6d\x9c\xf7\x20\x3f\xfc\xfe\x7f\ \xd8\x16\x20\x5c\x10\x0c\x13\x21\xa6\xa3\x14\x02\xa2\xc7\x93\x96\ \x86\xbb\x66\xf5\x9f\x32\x17\x42\x4b\xdb\xf7\x95\x04\x6b\x66\x7e\ \xa7\xc9\xfa\x4a\x9f\x94\xa4\xf8\x0b\xfe\x26\x1f\x95\xad\x50\x20\ \x87\xfd\x61\x14\xb9\xc1\x79\xf3\x04\x13\x95\x6b\xa0\x30\xd9\xed\ \x0f\x0b\x37\x52\xe1\xe2\x91\xd3\xbc\x5c\x5d\x19\xcd\x40\x3b\x4a\ \x4a\x3f\x81\x90\x14\x4e\xd5\x72\x70\xb5\x81\x08\x72\xbe\x5b\x1e\ \xc5\x31\x4a\x27\x74\x0a\xf6\x33\xe2\xa0\x65\x52\x3c\xa2\x3f\x2b\ \xee\xf3\x35\x22\xb7\xae\xc0\xa0\x10\x26\x8a\xab\x98\x6e\x9c\x5a\ \x7a\x9b\xaa\xfc\x7b\x6b\xdb\x3f\xe5\x2f\x84\x0a\xf8\xf3\xf2\x4d\ \xdb\x57\xd2\x49\xf9\x39\xcf\x06\x3f\xa9\xdf\xf4\xd1\xcb\xb9\xc5\ \xe6\x3d\x3f\x9d\x8b\x4a\xf9\x40\x37\x3c\x61\xd7\x24\x01\x39\x18\ \xdf\xaa\x6c\xc5\x1d\x02\xb2\xc8\x23\xee\x43\x11\x1c\x55\xe5\x4b\ \x5b\x3e\xa2\x50\x4a\xd5\xcf\x6e\xe4\xc7\x1d\xc0\xa4\xcd\xe0\xe1\ \x3f\x26\x17\xfd\xb1\x70\xf4\x41\x36\x9a\xcf\xac\xe6\x32\x05\xeb\ \xa4\x4c\x6f\x9b\xce\xa4\x74\x3c\x02\x9d\xa9\xed\xd7\xcc\x6c\x26\ \x75\xc6\x7d\x09\xbe\xe5\x65\xd2\xea\x82\x42\xd0\x1c\xc5\x71\xe7\ \x14\xc7\x2e\x71\x13\x96\x01\xe1\x36\x0e\x72\xbe\x9c\xc7\x49\xad\ \xe2\xc6\xec\xc0\x4a\x71\xa1\xbd\x4c\x81\xac\xc9\xde\xbd\xcf\xd6\ \x51\x0f\xb0\x7a\xe0\x4e\x51\x39\xa0\x14\x6a\x7d\x74\xd8\x7d\xa8\ \x12\x92\xd9\x03\x4c\x0c\x11\x82\xec\x42\x67\xe4\xdb\xfd\x06\xfc\ \xf6\x67\x21\xa9\xdf\xc7\xa8\x29\xb2\x99\x1f\xc7\x3b\x43\x89\x3f\ \x64\x3d\x14\xdf\x09\xd5\xb5\x77\x88\xde\x85\xab\xf1\x78\xfe\xee\ \x4b\xd4\x34\x15\x91\x15\x49\x1a\x09\x79\xa4\xeb\xf3\x12\xe9\xe3\ \x2e\xe1\x03\x87\xa9\xb8\xf8\x70\x7a\x7e\xe7\x41\xd8\x76\xa5\xaa\ \xdb\x6f\x71\x7b\x10\xd2\xfb\xfd\xbf\x56\x29\x1c\x04\x4d\x02\x1d\ \xf3\xbb\xc4\x08\xfa\xc1\xb7\x07\xc1\xb3\x05\x85\xb3\x03\xc1\xb5\ \x01\x89\xb3\xfe\x72\xe9\xdc\xd8\x50\x05\x86\x01\x87\x9a\x49\x99\ \xb3\x28\x09\x2a\x0e\x75\x84\x7e\xf7\x57\x07\x69\x46\xba\xd9\xf3\ \xdb\x8d\x9f\x9a\x24\x2d\x1c\x33\xd6\xd1\xaa\x53\x65\xf7\x99\xd3\ \x4d\xc5\x24\xb2\xd4\x32\x1d\x12\xcb\x99\xf1\x74\x68\x3f\xcb\x56\ \x9a\xc8\xac\x58\xe1\xc0\xae\x36\x0e\x76\x75\x4b\x47\xdb\x48\x86\ \x24\xf1\xc2\xd4\xed\x9f\x77\x7f\x74\x86\xbd\xb6\xd5\x72\x62\xe2\ \x28\x0e\x56\x9f\x1f\x6d\xbd\x0a\x8e\xf3\x84\x2c\x38\xe6\x11\xfd\ \x12\xf1\x21\xa8\x9e\x7d\x30\xf6\x86\x9b\xd3\x82\xaf\x53\x20\x77\ \xbe\xc5\x35\xce\xe2\xbe\xd4\x4f\xac\x83\x72\x2f\x62\xfb\xdb\xaf\ \x54\x19\x14\x13\x91\x44\x76\x98\x4e\xec\x09\xc0\xf9\xd5\x54\x8e\ \x89\x23\x5c\x74\x06\x36\x35\xb8\x3e\xad\x70\x3e\x6c\xa8\x36\x88\ \xdd\x08\xb8\x51\x34\x44\x3c\xa4\x81\x3d\xdc\x26\x60\x45\x75\x26\ \x6f\x7e\xda\x64\x74\xd0\xc7\x46\xd4\x9a\x50\x91\xc0\xe8\x86\x0d\ \x69\x60\xd8\xa8\x9b\x7b\xfe\xd8\x6f\xb7\x69\x70\x48\x66\xdb\xd1\ \xd4\x66\x84\x44\x42\x07\x2b\x46\xd5\xde\x72\x08\xc4\x48\x83\xe6\ \xf8\x03\xfd\xf0\xce\x2d\xc6\x7e\xdc\xc5\xea\x37\x9b\x3c\x24\x7e\ \x13\x83\xb0\x9d\xfd\xe6\xa2\x39\x77\x8e\x44\xef\xf4\x65\x1f\xaa\ \xd8\x62\x36\x8d\x36\x46\x9f\xd1\x84\xcd\x0e\xfc\xe0\x45\x09\xb0\ \x9b\x09\x95\xc1\x46\xda\x4d\x58\x97\x1c\x2e\x05\x13\x70\x99\x6a\ \x98\x17\xab\xca\x83\xfe\xc7\x5d\xd8\x83\x6a\x02\xb8\x3a\x6f\x47\ \x74\x07\x58\xbd\x7d\x61\x75\xfe\x90\x1a\x7d\xff\xd1\x11\x07\xce\ \x93\x42\x77\xfb\x08\xb7\x8d\x90\x24\x14\x6d\x9e\x09\x66\x66\x0c\ \xa8\xff\x92\x65\xd4\xa6\x87\xd8\xb7\x65\x0b\x72\x9c\xa6\xe2\x02\ \x6a\x35\xa5\xb8\x15\xac\x16\x09\xbc\xad\xa9\xad\x0b\xfb\x91\x25\ \x0c\xa5\x62\x73\x89\xd8\x4a\xf3\x98\x03\x7f\xd5\xbb\x6b\xee\x65\ \x63\x28\x6f\xb5\x4b\xbc\xd3\x7c\xd0\x1b\xe7\xb6\x78\x3d\xa7\x59\ \x28\xb9\x38\x3c\x45\x69\x7e\x74\x7c\xff\xc3\x3f\x37\x19\x89\x6b\ \x6c\xbb\xe4\x70\x9c\x29\x4a\x56\x1e\xb3\x0f\xc1\x5d\x18\x47\x78\ \xfa\xa6\x81\x93\x34\x0c\x5c\x6b\xf3\xa9\x60\x16\x96\x0a\x66\xf5\ \x69\xf3\x5f\x8e\x6a\x8c\xdf\xaf\x3a\xea\xd3\xa1\x6d\x4f\x82\x48\ \xa0\x6b\x3f\x2b\x69\x3b\xb5\x1e\x76\xa8\x34\x75\x4e\xf5\xfd\xc9\ \x7a\x38\x39\xb3\x03\x57\x72\x30\x38\xc9\x41\xf1\x25\x07\x83\x94\ \x1c\x0c\x75\x44\x37\x6f\xa7\xfc\x1d\xa1\x52\x10\xaa\x5f\xb6\x67\ \x40\x2a\x3f\x3a\x08\x28\x2f\xd7\xf2\x48\xab\x6b\x5a\x07\x39\xde\ \x6b\x0a\x80\x3e\xe6\x8b\xdb\x6c\x3f\xa0\x89\xd3\x68\xdd\xc1\xce\ \xd1\x40\x21\xe0\xc5\x92\x6f\x79\x89\xb4\xba\xe0\x5b\x5d\x20\xad\ \x6e\x8b\xb6\x99\xc1\x6e\x93\x63\x09\xed\x93\xe2\xc1\xc2\xed\xd4\ \x8e\xb1\x99\x0e\x16\x5c\x90\xf4\xdd\xa8\x85\xcb\x65\xfc\x78\x4c\ \xbe\xec\x0e\x3b\xf0\x78\xeb\x77\xc3\xc9\xdf\x1e\xf1\x3d\x2c\x3a\ \x07\x3c\x78\x8c\xa0\x76\x7e\xcf\x48\x8e\x94\x75\x63\x9e\xb9\x70\ \x87\xe9\xfd\xfd\x3f\xc6\x21\xa9\x4a\x6f\xd7\x04\xe4\x6c\xc7\x16\ \xc2\x9c\xaf\xca\xd3\xe2\x88\x61\xe7\x2d\x67\x75\x1d\xb0\x96\x36\ \x39\x2d\xcb\xa2\x80\x5e\x8f\x42\x38\xc1\xe0\x78\xdc\x8a\xe3\x28\ \xa9\xf3\xeb\xf1\x19\x49\x3a\x2f\x75\xe2\xde\x39\xad\x5f\xeb\x88\ \x6c\x1d\xf9\xe3\x33\x92\xb5\xb6\x33\x63\xa5\x8a\x08\x10\xe2\x60\ \x53\x19\x5b\x87\xea\x97\x62\x1d\x8f\xb3\x86\xe9\xa2\x0c\xab\x50\ \xe4\x39\xc8\x28\xfa\xa8\x77\x89\x41\x50\x1e\x17\x89\xcf\x2c\xfe\ \x14\x5b\x4a\xc0\x0f\x45\xdb\xb9\x2b\xdc\x54\x2e\xd4\x64\x03\xcf\ \xf3\xaf\xf4\x69\x4d\x91\xb2\xbd\x8d\x1d\xed\x84\x4c\x48\x19\xaa\ \x10\x50\xcd\x7a\xa5\x6e\xfc\xdf\x39\x21\xc3\x23\xa1\xf6\x15\x79\ \x28\xd8\x54\x3b\x88\xa7\x4b\x07\xd1\x9e\x71\x11\x74\xe4\x62\x71\ \x52\x07\xf5\x0f\x19\x54\x8a\xa9\x53\x6f\x4f\x97\x6a\xdc\xaa\x95\ \xaf\xce\x8b\xa5\x74\x4e\xf0\x70\xed\x43\x66\x6d\x43\xf4\x6e\x83\ \x67\x17\x1a\x69\x17\xe6\xcd\x23\x4c\x16\xd5\xd6\x86\xd0\xe1\xf7\ \xe8\x5b\x5c\x0c\x78\x02\x9b\xcf\x5e\x5a\xe7\xac\xec\x22\xce\x59\ \x71\xba\x32\x56\x36\xb5\xdb\xe9\x98\x08\x77\x46\xc6\x36\x7c\xb2\ \x24\x83\x24\x4b\xd2\xb4\x57\x60\x0f\x4a\x82\x5d\xdc\xca\x15\x27\ \x24\x75\xc5\x47\xcf\x2a\x24\x7a\x96\x0a\xa0\xb9\x12\xad\xd8\x19\ \x7b\xde\x2f\x70\xa2\x83\xab\x48\x10\x0d\x72\x2e\x8f\xb5\xba\x70\ \x3d\xfd\x26\x97\x2f\x6c\xf9\xd4\xbf\x57\x5b\xbf\x7b\x70\xc3\xfa\ \x69\xc7\xb8\xe1\xed\x4f\xe0\xa0\x75\x54\x6d\x30\x9a\x63\xc5\x70\ \xff\x77\x47\xbc\x38\x7b\xba\xba\x01\x39\xe7\x99\x64\x73\xd1\x7b\ \xd4\x1a\xd2\xd8\x83\xae\x9c\xb0\x73\x7e\x40\xf7\xf1\x71\x3b\x87\ \x8f\x5b\x7d\x7b\x50\x3d\x5b\x30\x49\x5b\x70\x21\x97\x1c\xb4\xbf\ \xb2\x91\xe6\x7f\xa7\x9b\x2e\x89\xa8\x43\xaf\x2a\xde\xee\x95\x98\ \xfe\xf4\x34\x52\xec\xa2\x3c\x06\x22\xe1\x46\xf1\x0f\xc9\x17\x26\ \xc5\xcc\xd9\xef\x1b\x63\xbf\xbf\x78\x83\xd1\x3e\x1b\x3e\x1d\xb5\ \x41\xd2\x51\xd3\x0e\xa3\xc3\x3c\x50\xee\x14\x41\x90\xc8\xa3\x82\ \xdd\xb6\xea\xf0\x39\xd6\xd1\x63\x87\xb7\x4b\x74\x86\xbb\x8f\xcb\ \x1f\x26\x93\xfc\x61\xb4\xbd\x62\xa2\xc5\x84\xe9\x95\x08\x70\xb1\ \xea\x13\xc8\xb9\x8c\xdc\xce\xd3\xba\xe9\xea\x23\x4f\x52\x1f\xf9\ \x93\xb0\xd8\xae\xaf\xb9\x83\xc0\x44\x69\x7d\x06\xd7\x5b\x1e\x38\ \x4f\x79\xdf\xa6\x26\xd6\x4e\x06\x12\xf4\xfb\x93\xc5\x6b\xda\xd6\ \x5c\x8e\x39\x77\xdb\xfa\x4e\xa7\x6d\x1e\x55\x56\xb5\x3e\x2e\xdf\ \x08\x3a\xfe\xf1\xe6\x71\x1f\xd7\xe1\xde\xf1\x4b\xb0\xc7\xa9\x66\ \xa5\xa1\xb4\x8c\xf3\x7c\x56\xcd\x5a\x1c\x00\x46\x92\x56\xb1\x67\ \x71\x99\xb3\xb6\xe4\x4a\xe4\xd2\x96\x44\x61\xc8\xa4\xb9\x74\xcb\ \x22\x87\x9a\xf4\x51\xc8\x65\xdb\x3f\xbf\xdd\xe6\xa3\xc0\x11\x93\ \x07\x1f\x38\x6e\x9b\x84\x7d\x78\x03\xa2\x4e\xdc\x3c\x62\x2f\x14\ \x02\x4c\xfc\x92\xc6\xb6\xfb\x4e\x0e\x5e\x0e\xed\x7b\xd5\x7d\x11\ \xec\x52\x93\x42\x55\xf6\xf0\xca\x14\xe8\xc0\x28\x68\xa2\x47\xb9\ \x0c\x7f\x15\x6d\xed\x32\xf1\xe8\x23\x68\x97\x49\x4f\x26\x05\x47\ \x59\x17\xa3\x6a\x2e\x9c\x3f\x64\xbe\x7d\x70\x6d\xc3\x24\x6d\x83\ \x7a\xf4\xd9\x52\x52\x99\x82\xd8\x4f\x2e\x19\xa5\xe8\xd2\x51\x8a\ \x89\x66\xaf\x27\x79\xaf\xd9\x73\x48\x97\x51\xfb\x71\x38\xf7\x6c\ \x42\xf3\xec\x41\x67\x79\xf0\xc9\x3b\x65\xed\x80\xb6\x12\x22\xc3\ \xf7\x72\x9b\x73\xd9\x11\x81\xc2\xc8\x98\x17\xf9\xd3\x33\x6b\x30\ \x89\x22\xf3\x91\x4e\x72\x96\xb7\xdb\x4d\x95\x44\x6a\xaa\xe4\x0b\ \x70\xe7\x68\x2c\x11\xde\x98\x4f\x4f\x08\x3e\xa8\x72\x1e\x15\xd8\ \x64\x03\x41\xa3\xfa\xe2\x9d\x0f\x27\x15\x41\x61\x26\xb7\xfa\x76\ \x10\x7e\x38\x0f\x43\x98\x62\x58\x19\xe3\xa5\x8d\x64\x87\x82\xc0\ \x08\x75\x6a\xf8\x66\xea\x35\xc9\xfd\x9e\xe7\x2d\x8e\xec\x80\x36\ \x69\xe3\xf8\x1c\x9b\x1b\x7d\x17\x3c\xa6\x4b\x2e\xc0\xcc\x6c\x39\ \x0c\xae\xa8\x74\x05\xcf\xf7\x2a\xbe\xef\x55\x19\xdf\xab\xfb\xb6\ \xab\xbb\x76\x6b\x90\x36\xab\xfb\xf6\xaa\xbb\xb6\x6a\x90\x76\x6a\ \x97\xbb\x1e\x49\xc7\x7c\xc7\x4b\xf9\xd3\x56\x11\xd8\x2b\x7a\x5c\ \x1c\xf9\xf4\x96\x3c\x34\x12\xea\xa4\x73\x17\x42\x7f\xdf\xc3\x18\ \x52\xf7\x3e\xc2\x71\xe9\x2e\xfd\xe5\xc1\x90\x5f\xee\xbb\xfc\xb4\ \x56\xc6\xea\xe8\x28\x51\xd8\x7e\x17\x14\xd3\x4a\x70\xf0\xb4\x75\ \x7b\x34\x81\x20\x98\x2e\x7a\x3c\x65\xc7\xed\x5e\x5c\xe3\x8f\xef\ \x30\x63\x2a\xe5\x9a\xbb\x06\x6d\x77\x98\x46\x41\x91\x32\x78\x8d\ \x51\xc9\xaa\x0e\x63\xd5\x6d\x1f\x47\x00\x66\x39\x3e\xaf\x93\x3e\ \xae\x2a\xf0\xd7\xf5\x04\x51\x88\x32\x53\x89\x8a\x36\x92\x9e\x32\ \xdf\xf1\xf6\x57\x28\xed\x15\xad\x00\x1c\x8f\x41\x63\xe4\xad\xed\ \x32\xec\x36\x3b\xc0\x81\x11\x0d\xb7\xcc\x9b\xf5\xcb\x05\x55\x17\ \x64\xa4\x6c\x59\x9a\x84\x66\xf0\xdd\x6d\xcb\xd3\x6b\xd0\x3d\x92\ \x1f\x52\x2b\x52\xd0\x05\x31\x38\x4a\xd3\xf1\x85\x32\x39\xcd\x53\ \x82\xa6\x16\xe6\xea\x94\xcc\x68\x64\x29\xe5\xee\x8f\xce\x02\xeb\ \x74\x2a\x20\x4d\x8e\x2a\xf1\xb0\xe3\xaa\x36\x23\xcf\x2d\x14\x83\ \xcb\xf3\x6d\x53\x14\x19\x6f\xc6\xf4\x00\x10\x18\x6c\x19\xc9\xfa\ \xed\xf4\x72\xab\x00\x30\x5a\x54\xf2\x94\xdb\x04\x8f\xb1\x9b\x1d\ \xc7\x0f\xa2\x07\x18\x5d\x39\xde\x97\x1b\x5f\xe1\x98\x1a\x26\x4e\ \x47\xcc\x45\x47\x9f\x24\x3a\x7a\x56\xf7\x4b\xeb\xce\x65\x85\x74\ \x13\x5e\xc4\xee\x20\x3a\x35\x0d\x29\x04\xd9\x6d\x1f\x88\x8a\x82\ \xa1\x6a\xc2\x45\xb7\x99\x0f\x93\x21\x53\x88\xa3\xe6\xc1\x72\xd4\ \x1b\x01\xc9\x91\x6e\x5e\xfe\x96\x87\xbe\xc5\x61\x6f\xfd\x07\xa8\ \x5e\xd6\x9b\xcd\x89\x6c\x97\xae\xd3\x79\xf6\xe1\x59\xde\x20\xad\ \x6e\x68\x8c\x73\x98\x17\x6b\x49\x7a\x9e\x17\x7f\x72\x33\xbb\xfe\ \x3b\x0e\xc8\x5a\x67\xdc\xcd\x70\x39\x47\x98\x25\x4d\x67\x3c\x18\ \xd1\x07\x05\x8e\x2e\x28\x70\x25\x41\x81\xd3\x05\x6f\x33\x43\x46\ \xd8\x5d\x80\xc3\x4d\xc8\x97\x43\x93\x39\x34\x8e\x91\x51\xda\x69\ \x8b\xc3\xc5\xa5\xa9\xbb\x95\x79\x9c\xf4\x78\x16\xd8\x48\xeb\xdb\ \x8a\x46\x76\x53\x45\x3b\x94\xf3\xcf\xc7\x2a\x0e\xfd\x5a\xc7\xd6\ \x16\x51\x3b\x59\xe6\x64\x66\xab\x43\x12\x0c\xfc\x5c\xbb\x10\x5c\ \x9b\x40\xda\x83\xe0\xda\x82\x40\xda\x81\x58\x9c\x50\xa8\x2f\xce\ \x1f\x69\x12\xe4\x7b\xda\x29\x88\x66\x8f\x3e\xe4\xd5\xef\x3a\x7f\ \x8b\x92\x63\x4a\xd2\x2f\x9e\xa5\xd5\x41\xad\x8c\x21\xc9\x26\x6e\ \xb8\x90\x8a\x0c\x4d\xaa\xe4\x9c\xf5\x65\xdf\xac\x2f\xf1\x66\x7d\ \xd9\x07\x6d\x2f\x24\xae\xa9\x07\xd9\xd1\x49\xc8\x8e\xeb\xad\xf5\ \x4c\xc2\x82\x6b\x12\x76\xef\x21\x7a\x88\xb9\xb7\xcb\x5d\xed\xd5\ \x9c\x6f\xb9\xeb\x07\x26\x51\x17\x5c\xaa\x2d\x81\xa4\xda\xd2\x6e\ \x3b\x07\xb2\x12\x84\xb2\xe7\x61\xc7\x97\x38\x78\x74\xce\xda\xed\ \x5e\xc2\xec\xf7\xff\x18\xc5\xab\x69\xf8\x70\xc2\x83\x04\xc7\x55\ \xc7\x01\x0f\x03\x2d\x31\x06\x82\x8a\x7d\xf5\x61\x24\xa2\x0f\x23\ \xc1\xf1\xfe\x4c\x0a\x2b\x77\xd0\xc7\x04\x88\x78\x9c\x93\x74\xdf\ \x3e\x74\xd7\x36\x0c\xd2\x2e\xe4\x6b\xe8\x69\x22\xe7\x0a\xa3\x64\ \x57\x5d\x6b\x1f\x3c\x52\xb1\x61\xa4\xd3\xe7\x01\x61\x45\xca\xb1\ \xd2\x4e\xa8\x8d\xc2\xda\xc9\xcb\xb1\x72\xc9\x70\x50\x88\xda\x25\ \x8a\x7b\x5e\xaf\x6a\x4c\xf0\xa5\x40\x8c\x86\x59\x56\x89\x4b\x07\ \x8b\x28\x59\x32\xc4\x17\x20\xef\xb8\x95\xdf\x7c\xdb\xd0\x48\xbb\ \x50\x7d\x9b\x50\x3d\x7b\xd0\x49\x5b\xf0\xf1\x8b\x3c\xf5\xb9\x75\ \x59\x6c\x53\x26\x9b\x49\x13\x21\xab\x15\x94\x6e\xcd\xca\x13\xc6\ \x56\x17\x3a\x3e\x75\xcd\x85\x51\x52\xea\xe9\x71\x18\x93\x1f\xd8\ \xcc\x12\x36\xf9\x94\xd0\x28\xea\x8e\x38\xb6\x07\x03\xd6\x76\x4f\ \xc6\x0e\xec\xc9\xbd\xfd\x95\xe6\x06\x42\x9c\x66\x07\x9e\x0d\xb8\ \x00\xcc\xc7\x97\xc9\x03\x0f\xbd\x46\x4c\xc7\xf3\x2c\x8f\x04\xc1\ \xbc\xc0\xd2\xe7\xb1\xd9\xe3\xbc\xd5\x48\xce\x5b\x7f\x4d\xfa\x85\ \xb3\xfb\xc5\x6a\x7e\x49\x5a\x60\xe3\x04\xf2\x25\xc5\x70\x5c\xc0\ \xb8\x54\xef\x94\x35\x4b\xf8\x85\x5d\x00\x61\xd5\xd8\x33\x5b\x5f\ \x14\x78\xb0\xca\x77\xda\x64\xe7\xcc\x21\x3b\x07\x4f\x33\x39\x6d\ \x96\xca\x79\xe3\x56\xf5\x8c\xcd\xbe\x6d\xa5\x98\x3c\x7c\x3a\x8d\ \x49\xae\xe5\x25\xce\xea\xba\x6f\x71\x83\x55\x6b\x05\x35\x28\x77\ \x10\xa3\x22\x45\x4f\x48\xf5\x38\x7d\xd0\x5e\x4a\xcb\xb9\x6f\x59\ \x4a\x2b\x27\xea\x0c\xd2\x8b\xf2\x6b\xec\xa0\x5a\x18\x7d\xb8\x21\ \x0a\xe9\x76\x2f\xbd\x32\x54\xaf\x2f\xae\xa9\xa7\xf3\x42\x88\xe0\ \x43\xaa\x5f\x5f\xc3\x8b\x90\x5c\x55\x29\xca\x1d\xe5\x5a\x91\x3d\ \xb7\x12\x82\x78\xf7\x57\x27\x5d\x5d\x80\x6c\x1d\x40\xcd\xa8\x49\ \xef\x1f\xbf\x55\xb8\x3c\x1e\x8e\xd3\x94\xe0\x43\xfc\x5d\x4a\x0a\ \x1f\xd9\x04\xdf\x1e\xc4\xbf\xe9\x26\x4c\x97\xd4\xed\xd4\xde\x14\ \x65\x44\xe7\x50\xf4\x53\x44\x10\x41\xd1\xaf\xba\x56\x37\x38\xab\ \x6b\xae\x3c\x74\x70\xd2\x50\xcd\x40\xec\x24\x3b\x96\xeb\xd1\xa7\ \x80\x53\x9a\xa9\x85\xa4\x7f\x97\x19\xf6\x5e\xcd\x65\x5d\x5b\xa4\ \x0f\xe2\x90\x26\x8d\x37\x82\x75\xed\xd0\xc2\xcd\x25\x78\xc5\x00\ \x2e\xfc\x47\xfd\xcc\xe6\xd3\xb0\x7f\xe6\x63\x00\x7b\xf1\x01\xcd\ \x0a\x09\x68\xd6\x95\x87\x64\xbd\xc6\xfd\xf2\xf7\x3c\x9f\x2a\xb9\ \x52\xe0\xc4\x51\xd4\xfc\x70\x26\x55\xf5\xac\xd8\x2c\xab\x3d\x73\ \x39\xaf\x5f\x82\x43\x1d\x6a\x5c\xfc\x79\xc6\xe8\x3b\xd9\x2d\x3f\ \x29\x73\x12\xa1\xe7\xa7\x2f\x9e\x7d\xd7\x95\xd2\x43\x91\x46\xb2\ \x8f\x66\xe5\x9c\xcc\xba\x3f\xce\xfa\xb0\xc6\x50\x11\x1b\x2e\xa7\ \xe3\xc1\x31\x3a\xd6\xa4\xcf\xe1\x04\x11\x38\x53\xb7\x70\xf3\x08\ \xb2\xa9\x77\x19\x41\xc9\x29\x7b\xe2\x89\xee\x00\xc1\xe6\xcf\x65\ \x6f\xb6\x2d\xde\xce\xf5\x3f\x2e\x7c\xa8\xd9\x30\x50\x7c\xe8\x30\ \x72\x8c\x1d\x78\x8e\x9f\xc4\x28\x43\x5c\x87\xc9\xd5\xae\x63\x8f\ \xc3\xaa\x07\xe1\xa3\x6e\xa4\xb6\xb1\x34\x25\x34\x45\x25\xff\x39\ \xbc\xfe\xca\x9d\x58\xd7\x9f\x1e\x57\x8e\x09\xb7\x67\xe2\xf6\xa5\ \xfc\x75\x7c\xcf\x3d\x5b\x10\x3c\x3b\x50\x48\x1b\xb0\x3b\xc8\x56\ \xb3\x12\x07\xe0\xd8\x9a\x20\x36\x5f\xa3\xbd\x29\xc7\x8a\x21\x8a\ \xe0\x79\x32\x3a\xe7\x7d\xfa\x28\x31\xe6\xc2\xca\xd9\x29\x36\x05\ \x43\xf4\x61\x87\x19\xc9\xe8\xed\x5e\x65\x57\xd6\xe6\xdf\xcd\xf1\ \xb0\xb8\x62\x4e\xe3\x84\x1c\xc1\xc0\xd9\x22\x0d\x82\x99\x25\xc4\ \x93\xba\xe1\x66\xb6\xeb\xc4\x25\xca\x7f\xba\x97\x9e\xd5\x15\xce\ \xe2\xc2\xa5\xfe\x63\xc5\xef\x71\xc7\x0e\xfb\xed\x55\x99\x0c\x0a\ \xd9\x16\xdb\x34\x25\x9f\x85\x98\x4c\x90\x7c\x0e\x0a\x06\x71\xcc\ \x7f\x82\x9e\x84\xe3\xf7\xa9\x79\x4e\xef\x8e\xe1\xc7\x87\x29\x3b\ \x70\x84\x5a\x3b\xfd\xed\x7e\xb9\xa4\x55\x8d\x43\x8c\x26\xaa\xde\ \xc1\x71\x57\xc6\xb3\xbc\xc1\x59\x5d\xf1\x2d\xae\x91\xd6\xd6\x84\ \x75\x63\x66\xf3\x2a\x22\x79\x9e\xcd\xab\x4c\xb3\x8f\x79\x74\xaf\ \x6f\x74\xd6\x95\xf1\x58\x50\x06\x96\xf7\xe2\x36\x43\x71\x10\x7d\ \xe3\xdd\x13\xfc\x87\xaf\x45\xe1\x03\xff\x47\x55\xaf\x26\x18\x56\ \xaa\xc4\xf3\xf5\x55\x57\x26\xa2\xf3\x16\xf3\x3d\x23\x99\x56\x7d\ \x50\xdb\x7b\x33\x52\x6d\xec\xf1\x96\x69\x23\x64\x7e\x5a\xdc\x9b\ \xa7\x3c\x31\xb0\x21\xd5\xb7\xba\x4e\x5a\x5c\x77\x81\x19\x36\x70\ \x93\x22\x4b\x64\x93\xcb\xc7\x4d\xfd\x25\x29\x60\x4a\x33\x1c\x6e\ \x80\x23\x61\x20\xf5\x41\x35\xbf\xaa\xf8\x56\xbb\x03\x5f\x95\xc7\ \x75\xde\x5a\x6d\x8e\x8e\xc3\x1e\x42\x1c\xb7\x1c\x86\x6c\x93\x9d\ \x85\x4c\x06\x8e\xae\xbb\x96\x36\x38\x2b\x6b\xd7\x56\x3a\xce\x24\ \xc3\x79\x5c\x33\x7a\x73\x54\x2c\xa8\xf2\x73\xdf\x1c\x41\x76\x3a\ \xbc\x98\x45\xbc\x2a\x30\xc4\x94\xba\x63\x62\xb9\xf5\xbe\x09\xc0\ \x73\x1d\x53\x58\x81\x99\xa2\xb2\x1a\xf3\x45\x9e\xf1\x50\x7a\x18\ \x9d\xde\x26\xcb\x73\xb4\xf9\xa6\xb6\xa9\x09\xcd\x22\x17\x3b\xba\ \x31\x7a\x53\x4d\x9b\x4e\x0e\xf4\x79\xa7\x00\xe9\x44\x75\x60\x7a\ \xd0\xc9\x7b\x43\x4f\x3f\x70\x3a\x15\x8c\x26\xa9\x95\x19\x64\x75\ \xd6\xfa\xf2\x76\x42\x3f\x07\x88\x79\x2c\xf0\xf2\x65\xdd\xf0\xb7\ \xfb\xf5\x36\xa7\xc9\x63\x07\x52\x6e\x04\xf9\x97\xa8\xf2\xd4\x2e\ \x37\x81\xc1\xe8\xe9\x47\x47\x28\x53\x33\x81\xf3\xb5\x7d\xb6\x1a\ \xdb\xee\x93\xe6\xc5\x53\xf3\x49\x92\x84\x8c\x2d\xcf\x44\x59\x5b\ \x70\x2d\x2d\x71\x56\x36\x6f\x1e\x3b\x35\xc9\x68\x18\xa7\x44\x99\ \xfd\x1e\x7e\x10\x23\x77\x18\xae\xc5\x4d\xce\xda\x9a\x6b\x69\x9d\ \xb3\xb2\x8d\xa6\x70\xf4\x96\x27\x05\x9a\x90\x35\x71\xf0\xe4\x45\ \x8d\x03\xc0\x77\x51\xb6\x9e\x78\xff\xbf\x0f\x71\x24\xa9\x08\x21\ \x6a\x58\x45\xcb\x7e\xec\x09\xf5\x58\xbb\xf9\xbc\x91\x55\x8d\x88\ \x50\x91\x75\xb3\xab\xd8\x35\xb1\x67\x68\xaf\x45\xd7\x7c\x5f\xa6\ \x6d\x8c\x9f\xce\x73\x3b\x87\x4b\x6d\x62\x92\x26\xc5\x5d\x25\xa2\ \x1c\x62\x0c\x94\xb1\xbb\xc4\x0c\x17\xb9\x8b\xc3\x7f\xf2\xad\xae\ \x72\x16\xd7\x6e\x3e\x35\xca\x7b\x24\xc8\xef\xf7\xa9\x31\x46\x64\ \xf3\xab\xe1\xef\x99\x0c\x08\xcb\xe2\x1c\x34\x12\x3c\x79\x4a\x93\ \x17\xef\xf8\x0e\x0f\xe7\x02\x27\x6b\x7d\xf3\xc2\x88\x9a\x9f\x47\ \x01\xdc\x2a\x42\xd2\x91\x1b\xdd\xf7\x1e\xfe\xb4\x57\x8c\x0e\x45\ \x72\x5a\x92\x25\x92\x27\x99\xda\x7b\x38\x30\xce\x8c\xfa\x36\xb9\ \xce\x6f\xe6\x1c\xdf\xbf\xb0\x14\xd3\xa7\xeb\x52\xdf\x04\x53\xb2\ \x69\x83\x69\x52\x6e\x95\xd1\x1e\xce\x72\x10\x2c\x62\x70\xde\xf0\ \x5c\x82\x3c\xa6\xab\xeb\x57\x58\x5d\xbf\xea\x43\xba\x57\x0e\x9c\ \xf4\xe3\xf6\x93\xc5\xc5\x5c\x52\x7c\xa3\x71\x9e\xe6\x1e\x4a\x1c\ \x77\x91\xa3\x5e\x16\x07\x5e\x85\x00\xa7\xdc\xbf\x9c\xe3\x07\xa6\ \x9c\xa7\xbf\xa4\x96\xda\x8e\x4e\xb6\x66\x50\x6c\x8c\x20\xd6\xd4\ \x02\xc1\xd1\x6b\x2e\x0c\xa5\x13\x31\xac\x75\x59\x2c\x45\x8a\xc7\ \xd2\xfe\x55\x7c\xd4\xd1\xf3\x11\x56\x50\x5a\x4f\xb4\x6a\x5d\xa1\ \xfd\x96\xf3\x5a\x37\xfb\xac\x73\xf2\x6d\x1b\x01\x9e\xcb\xe2\xdc\ \x1c\x72\x4e\x8d\xe3\x3e\xa2\xc1\xc0\x3e\x99\x8a\x47\x22\x20\x19\ \xec\x81\xb8\x5a\x58\x9e\x4b\xe0\x55\x35\x95\x30\x53\x95\x7e\xe9\ \x41\xff\x39\x85\xaa\x4a\x73\x3c\x9f\xc0\x26\x27\x8d\xb3\x5e\xa2\ \x7a\x16\x85\x22\xd6\x1b\xc1\x3a\x65\x7c\xd2\x71\xb7\x5d\xb6\x56\ \xce\x57\xe1\xbc\xb7\x9b\x35\xe8\x9b\x69\x6b\xd6\xd7\x98\xf4\x23\ \x3b\x5e\xd9\xbd\x11\xe6\x8f\x9c\x18\xaf\xf1\xc6\xb5\x98\x91\x33\ \x33\x92\xad\xb0\xdd\x09\xcc\xc4\x26\xb0\x54\xbf\xff\x8a\x5b\x2e\ \xf2\x13\x2e\x4c\xc2\xbd\xd1\xe6\xdf\x04\x01\xa1\xba\xd9\x8e\x2e\ \x4b\xb8\x83\x07\xff\x79\x07\xce\x21\xd2\xc3\x29\xff\x3e\x2e\x81\ \x7f\x02\x32\x23\x7a\xa4\xb0\xb2\xbe\x48\xc7\xef\xe8\x50\x1c\xf1\ \xbf\x53\x86\xfa\xb7\xbf\xcd\x83\x08\xfe\x11\x50\xdc\xa6\x69\x75\ \x0e\xb3\xd7\xd7\xfe\x1a\x0a\x27\xa7\xfc\xc0\xc9\xd3\x6e\xcb\x6a\ \x62\xc6\x90\x46\xf4\x9c\xe0\xe6\xf2\x2f\xe8\x24\xfb\x82\xe0\xfb\ \x52\x81\x74\xab\x3e\xee\x96\x30\x3d\xfa\x37\xfd\x4b\x9b\xf8\xb8\ \x9d\x38\xf5\x50\x59\x3f\xf1\x14\x1a\x29\x61\x75\xcd\x01\x80\x0f\ \x02\xcf\x39\x07\xc0\xcf\x4d\x4a\xb6\x9e\x85\xc1\xe8\x85\xcf\x2b\ \xac\x3a\x66\x9f\x84\xd8\xa3\xe2\xc6\xd1\x82\x50\x6a\x7b\x2c\x12\ \x20\x94\xd1\x63\x2a\xb1\xdd\x20\x08\x8c\x54\xf9\xfd\xad\xb7\xac\ \x5c\x29\x3c\x01\xbd\xe2\x38\x98\xda\x4b\x25\x10\x33\xb2\xd0\xb2\ \x4d\xd8\x72\xbe\x51\x10\xe0\xd3\x25\x15\xbc\xfd\x0d\x4c\x67\x43\ \x9a\x58\xb2\x3d\x8c\x9c\x37\x8e\xc6\xce\xd5\xf4\xb1\x82\xdc\x60\ \x54\x00\x65\x27\xed\x4e\x54\x02\x43\x90\x29\x28\x65\xcd\xac\x38\ \xee\x4f\xd3\xef\xff\xb5\xca\x39\x73\x9f\x14\x71\xce\x5b\x29\xd7\ \x7e\xc5\x08\x67\x77\xa8\xf4\x93\x83\xbe\x3e\x38\x49\x66\xf6\xe8\ \x7b\xc5\x6b\xd6\x73\xba\x93\x9e\x4f\x6b\x9c\x0f\xab\xea\xbc\xed\ \xe1\xdd\x28\x9c\xfc\x34\xfd\xc8\x8a\xce\xb1\x92\xab\x21\xc2\xad\ \xc7\xf4\xac\xa1\x43\x33\xeb\x09\xdb\xe0\xab\xe3\x1f\x4e\xa7\x9d\ \xf6\x68\x58\x02\xbd\x11\xe6\x55\x9a\x97\x60\x61\x3b\x7c\x35\xcb\ \xe0\x95\x2c\x41\x12\x3a\x47\xc9\x32\xcf\x1b\x88\x1f\xd6\x7a\x18\ \x3e\x4f\x8b\x41\xf2\xb4\x50\x49\x2e\xc7\x7d\xd9\x7c\xb6\x73\xc4\ \xf2\x9e\x0a\xda\x43\xe6\xc6\x58\x5f\xd1\x91\x98\x7d\x43\x3b\xeb\ \x86\x7a\x96\x97\x49\xab\xcb\xae\xe6\x44\xf6\x40\x73\x2a\xe9\x99\ \x96\x22\xc2\x21\x98\xa7\x62\x9c\x77\x2e\x19\xbf\xff\xf7\x32\xc5\ \x4c\x63\x5c\x83\x66\xf3\x62\x51\xe4\xe7\xbc\xfb\xe0\xdc\x86\xf8\ \x77\xdd\x87\xfd\xc5\x5d\x7a\xec\x8d\x31\xb4\x95\xb1\xbd\x43\x36\ \x4c\x1d\x6c\x8d\x5b\x91\xb4\x7b\x42\x51\x43\x72\x05\x75\x8a\xce\ \x62\xb9\x79\x14\x39\xb7\x04\x01\x47\x6b\xc2\x67\x60\xcf\xf1\x8b\ \xd3\xf2\xc5\xd6\x5a\xdc\x2e\x92\xc7\x93\xeb\xb8\x95\x75\x5d\x94\ \xa5\xc8\xe1\x2c\x79\x76\x74\x90\x36\xf4\xc3\xfd\xcf\x79\xd9\xb0\ \x38\xf0\xab\x14\x81\x88\xe8\xc2\x1d\x44\x0e\xee\xa0\xba\xd8\xe3\ \x14\x78\x60\x97\x0f\xf3\xc8\x35\x24\x01\x71\x9c\xb7\xc9\x7d\x66\ \x63\x91\x24\x7d\x98\x5c\xb7\x5c\x03\x3e\xc5\xdc\xcc\x36\x8e\x8e\ \x32\x36\x64\x4c\x90\x3f\xaa\x08\x9d\x76\x35\xef\xea\x0e\x12\x6a\ \x8a\x8f\x6a\x0a\x7b\x96\x56\x39\x2b\x1b\x97\x28\xa9\x9d\xcb\xa4\ \x9b\xa9\x3a\x34\x48\x25\xa3\xf8\x88\x39\x53\x9e\xee\xc9\x79\x44\ \x6d\x9e\x30\x99\xf1\x8c\x8e\xe7\x96\x0d\x3e\xce\xb0\xaa\x03\x81\ \x35\x76\xb3\x99\x40\x17\xb5\xd3\x81\x79\x4b\x0c\x02\x73\xf4\x09\ \xd7\x74\x8e\x70\x4d\xb8\x79\x64\xd1\x94\xa1\x70\xac\x8a\x16\xe4\ \x27\xb3\x8d\xaf\x8a\x64\xe1\xc7\xfb\x58\x3c\x97\xa4\xdf\x28\x6c\ \x02\xb9\xdb\x8e\xa9\xab\x36\x3a\x9a\x55\xfe\x0d\xcd\x3f\x8f\x5f\ \xb9\xa0\x87\xc9\x9e\xac\x07\x3b\x4e\xcc\x87\x02\xea\x08\xf4\x9a\ \x6d\x2f\xb9\xa2\x1e\x3c\x83\x40\x73\x98\xd2\xee\x31\x7f\x17\xdc\ \xdf\x73\x4f\xdc\xea\x84\x08\x55\x12\x98\x21\xb9\x96\x47\x5a\x5d\ \xf6\x2d\x2e\xb3\xe0\x4f\xca\xd1\x71\x68\x63\x24\x0a\x23\xa8\xec\ \xa1\xb1\x63\xe8\xf6\xdd\xb8\xf8\xfd\x3f\xc6\x52\x5a\xfc\xeb\xb1\ \x1c\xb6\x83\xb4\x0b\x25\x45\xc1\x02\xca\xb1\xb3\x1f\x60\x1e\x8e\ \x7a\xf8\x24\x91\xe3\x64\x4c\x38\x3e\x3c\x7d\x4c\xea\x7b\xeb\x60\ \x46\x51\x14\x88\x93\x96\x88\xb6\xb4\xc7\x57\x4b\xf0\xf4\xb4\x7c\ \x72\x4c\x5d\x2f\xbb\x52\xab\x20\x79\xf0\x81\xff\xcd\x5f\xb5\x4b\ \x28\xf4\xf8\x40\xf9\x40\x8c\x8e\x39\x81\xf2\xb4\x49\xa6\x73\xb6\ \xdc\xef\xe4\x20\x75\x2f\x48\x8b\x03\x94\x46\x20\xfd\x0f\xd7\xa7\ \x4d\xd6\x87\xa9\xf7\xb1\x0d\x80\x13\x70\xd7\x7f\xde\x02\xd8\x01\ \xc8\x0f\x6a\x04\xee\x29\x80\x39\x72\x1b\x78\x7d\x1c\x93\x63\x35\ \x96\x39\x9f\x3d\x06\x47\xd7\x38\x93\x98\x2e\x8a\xe6\xb6\x71\xac\ \xca\x17\xae\x56\x7e\x24\x8f\x75\x25\x3c\xd6\x9b\xc6\xec\xf9\x5a\ \x95\x01\x70\xf9\x34\x07\x32\x7d\xa9\x55\x9b\x9f\xa7\x7c\x90\xf3\ \x61\x52\xf7\xbc\xd7\x52\x5d\x33\xde\x6b\x55\xfc\xb1\xba\x02\xfa\ \xa4\x11\x94\xbf\x76\x08\x72\x34\xb5\xcd\xe7\x5a\x9d\xc3\x29\x72\ \x9f\x55\x85\x6a\xac\x24\x62\x52\xec\x66\x65\xda\xe4\x23\x1d\x48\ \x26\xc5\x90\xad\x73\xdd\xd0\xc4\xb8\xa0\xcd\xc5\x53\x6a\x97\x28\ \xd9\x9f\xef\xd4\x20\x95\x4b\x8e\xf9\xec\xe4\xcc\x67\xe7\x85\x1b\ \x74\xbc\x42\x9c\x59\xc3\xf4\xcc\x1a\xb2\xac\x8f\x41\x50\xf2\xac\ \x6e\x90\x56\x57\x5d\x8b\x6b\x9c\xb5\x6d\x88\x8c\xbd\x97\xe1\x2a\ \xe3\x29\xdc\x0d\x07\x72\xe7\x1e\x63\xfb\xfb\x33\x1e\x19\x48\xdc\ \xe2\xba\xbd\xc5\x73\x7b\x2b\xe7\xf6\x5e\xb3\x24\x5f\x3c\x39\x57\ \x14\x75\x19\x79\x8c\x1b\xc7\x7d\xf1\xb3\x2f\x81\xef\xd3\x2a\xeb\ \xc3\x82\x83\x91\x9c\xf7\x84\xf7\xfc\x8d\x73\x11\x32\xba\x87\x90\ \x21\xcd\x68\xca\x5d\x72\xd9\x51\x95\xaf\x74\xe7\x38\x53\x8d\x32\ \x9f\x35\x1b\x3d\x99\x91\xa8\x56\x5f\x2a\x57\x5d\xa9\x5c\x23\x65\ \x72\x5b\x30\xd4\x86\x31\xa8\x60\x68\x33\x0e\x42\xbd\x04\x50\xce\ \x33\xbe\xac\xdd\x25\xb3\xb7\x2d\x72\x06\xc7\x8d\x03\xd1\x54\x72\ \xec\x43\xb9\x2c\x66\xac\x07\x2f\xde\xfd\xd9\x11\x36\x48\x01\x8a\ \xf6\x0b\x8b\x3f\x3e\xaf\x4e\xa3\x8f\xa2\x9f\x6e\xd5\x7e\xcf\xb6\ \xe5\x05\x83\xaa\x56\x3d\x69\x46\xbe\x50\x52\xa7\x59\x86\xa7\x41\ \xba\xfd\xd9\xac\x06\x12\xa5\x3d\xda\xb7\xe7\xb4\x79\x08\x28\xf2\ \x27\xd2\x41\x73\xa8\xc5\x94\x9b\x47\x2c\x26\xdd\x88\x5a\x31\x3e\ \x45\xc5\xcc\x50\x54\xd4\x6b\x6e\x93\xa0\x9b\x0c\x7a\x8e\x6b\xa0\ \xe1\x1a\x01\x70\xec\x33\x34\xe4\x3b\x23\xbe\x75\xc7\xeb\x43\x66\ \x7b\x96\x8f\xd8\xcc\xa1\x78\x15\xcb\x76\x3e\x42\xc8\xc8\x14\x2d\ \x69\x37\xb2\x2a\x03\x4f\xf8\xe9\x3e\xdd\xa6\xf1\x38\x40\x77\x85\ \x52\x77\x5f\x22\xff\xe6\x0f\x4c\xe9\x2a\xf8\xd4\xbc\x2a\x67\x6d\ \xc9\xb5\xb4\x44\xc2\xb3\xff\x25\xaf\xef\xa7\x59\x14\xe1\x9a\xe9\ \x5b\x40\xa1\x7e\x57\x2d\xfd\xf6\x14\x0c\x8e\xa2\xa6\x4c\x1b\x1c\ \x05\x5c\x64\x88\xef\x7f\x7c\xea\xaf\x1f\xe8\x38\x79\x59\xc3\x98\ \x43\x56\x6a\x32\xce\x5e\xc3\xbf\x63\x4b\x98\x77\xd2\xc7\x05\xed\ \x64\x58\x27\x5d\xe5\x76\x86\xb1\x07\xd7\x68\xed\xf4\xa7\x51\xe3\ \x3c\x53\x76\xa9\xdd\x28\xaa\x4b\xd7\x80\xdd\xbe\xec\x14\x47\x87\ \xe2\x93\x2f\x2c\x2e\xf5\xc2\x46\x02\xdd\x14\x95\x73\xb0\x12\x16\ \x9d\x4e\x31\x80\x91\xc9\xc9\x5a\x4c\x2e\xd2\x62\xa1\x70\xf5\x64\ \x70\x6a\x73\x8f\x77\x3e\x46\x70\x77\x95\x6c\xc4\xc2\x64\x74\x1d\ \xee\x1f\x83\x32\x82\x4e\x01\xec\x9b\x1e\x2b\xc3\xe9\x4a\x07\xd6\ \x76\x9d\x3b\xb7\x70\x1f\x83\x57\x55\x1c\xc6\x6f\xfd\xca\x12\x8e\ \xe7\xff\x9e\xbc\x25\x7b\xd2\x96\xc2\xc9\x5a\xb4\x98\xb0\xb0\xa8\ \xea\x7a\x77\x8e\xb4\x2d\xbe\x2e\x46\xe1\x74\x31\x44\xcb\xc0\xc6\ \xe8\x49\x6f\x85\x82\xd1\xf3\x94\x6f\xc9\x53\xbd\x91\x8a\xb7\xa4\ \xa2\x16\x8e\xee\x6e\xda\xc2\xf2\xe7\x29\xf0\xcd\xd6\xf4\xdd\xe0\ \x16\x82\x83\xef\x70\x4c\x0b\xe6\x06\xa8\x31\x04\xef\x1c\xa1\x29\ \xb0\x42\xd3\x76\x02\x72\xb8\xa7\x53\x6c\xd1\xeb\x26\xb9\xdb\xca\ \xf3\x8a\x29\x3a\x3e\x2c\x75\x9b\x75\x99\xf2\x5b\x41\x6f\x28\xc1\ \xa6\xea\x72\x77\x71\xec\x28\x01\xd0\x58\x2e\xd7\x0b\x93\xd6\x5a\ \x18\xcd\x93\x0f\x3f\x65\x5d\xcd\x2d\x1d\x1f\xa7\x7c\xb6\xe3\x1f\ \xaf\xbb\x30\x04\x83\xa3\xd9\x51\x1d\x85\x7c\xbe\x8c\x2b\x4f\x5f\ \xe0\xaa\x37\xdd\x3a\x26\x6d\x7b\xd6\x9f\x06\xcd\x4f\xfa\x28\x56\ \xd7\x83\x5f\x39\xef\xfd\xd8\x83\x5a\xeb\x3d\xe8\x9c\x95\x25\x17\ \xb4\x52\xc5\xde\x8c\x8a\xac\x6e\xaa\xed\x31\x9a\xb5\x38\x86\x24\ \xaa\xcc\xcb\x50\x41\xf2\x39\xda\x47\x8a\xa5\xfd\x54\x99\x63\x07\ \xa1\xe4\x9e\xc3\xf3\x87\x37\x85\xd2\x83\x9b\x3b\xe0\x98\x87\x60\ \x30\x0e\xb8\x8c\x1c\x87\x6d\x76\x91\x36\xcc\xf1\xf8\xc9\x8c\xbb\ \x62\xb1\x0a\xfc\xcc\x80\x3e\xf4\x9b\x4f\xbb\x80\x22\x5d\xf0\x61\ \xfe\x8e\x26\x31\x2e\x1f\xd4\x48\x41\x09\x29\x05\xc4\xa5\x6d\x24\ \x5d\x15\x8a\x94\xa8\x1d\x7b\xaa\x07\x4b\x33\x38\x50\x9a\xcb\xe7\ \xcc\xc3\xb9\xa7\x34\xe9\x2e\xde\x8d\xe7\x47\x26\xe1\x46\x3d\x48\ \x05\xbd\x31\x84\x16\x64\xf1\x64\xcf\x82\x4c\x22\xe8\xf6\x47\x67\ \x6b\x3f\x5e\x1d\x79\x4a\x6b\xdf\x91\x19\xa5\xcb\x46\xfe\xb8\xa0\ \x6c\x3a\xa1\xb2\x2e\x68\x53\x37\x54\xeb\xc6\x8c\xf3\xd7\x4c\x6f\ \xb0\x09\x00\xea\x24\x23\xdf\xff\xfc\xbf\xf1\xf0\x45\xa0\x41\x0a\ \x40\x1f\x16\xa5\xfa\xfc\xef\x57\xae\x93\x67\x13\x87\xd2\x8d\x20\ \x2b\xd6\xa4\x58\xf2\xe8\x7a\x10\x32\xdc\xb2\x15\x3b\xac\xf8\x7a\ \xef\x29\xfa\xdb\x67\xb6\xdc\x48\xc6\xa3\xdd\x51\xe4\x47\x19\xf1\ \x64\xc2\x54\x4d\xd1\xa1\x66\x4b\x48\x53\x40\xc2\x74\x23\x09\x5d\ \xc0\x8a\xc0\x5a\x9c\x1d\x37\x4c\x3c\x56\x9a\x63\x8f\x15\x09\x57\ \xf3\x3f\xf7\x2f\xe7\x5a\x5e\x26\xad\x2e\xb8\x16\x97\x38\x6b\xbb\ \x3a\xb1\xd6\xb9\xfc\xee\xc4\x1e\xa7\x91\x1e\x7d\xae\xc9\xd1\xe7\ \xca\x17\x89\xd4\xfc\xe5\x28\x36\x00\x5d\x62\xa1\x35\xdf\xd2\x44\ \xfa\x78\xbe\xa5\x18\x46\x9b\x2f\x3f\x18\x19\xb2\x48\xef\x79\x24\ \x21\x36\x16\xe5\xf8\xe3\x86\xe2\xae\xac\xb7\x70\xa8\xde\xdb\x27\ \x76\x72\xf7\x55\xce\x8b\x8d\xa4\x1c\x4d\x0f\xb2\x96\x63\x16\x51\ \x5c\x8d\x95\x8d\xf9\x20\xd0\xa1\xaa\xa3\x2c\xdd\x34\x08\x86\x9c\ \xb7\x4f\xcd\x9b\x01\xa9\x2c\x3e\x2d\xf6\x8b\x72\x7e\xfc\x81\x6d\ \xc3\xb0\x1d\x62\xa5\x99\x32\x06\x94\x64\xc0\xa1\x6b\x5b\x38\x44\ \xf9\xe0\x88\x96\xea\x87\x43\x89\x96\x8e\x61\xb1\xde\xf1\x73\x07\ \xd8\xe0\xd2\x98\xa1\x69\xa7\x0c\xd7\xea\x26\x67\x71\x45\xc1\x4c\ \xbe\xe6\x4c\x60\x68\xb5\xb8\xf4\x81\xf5\x2b\x11\xd2\xd9\x0f\xeb\ \x11\x0f\xf7\xc7\x51\x56\x97\x74\x54\x6c\xf6\x5d\xd2\x4d\x19\x8b\ \x96\x48\x47\xb8\xfb\xab\xa3\x66\xa6\xc7\xc8\x3b\x06\x92\x93\x77\ \xd7\x81\xaa\x43\x39\x2e\x0b\x4b\xd2\xa6\x36\x7f\xff\xd5\x11\x05\ \x66\xd8\xf7\x4a\xb9\x49\x86\xa7\xd3\xd4\xef\x74\x7c\xf9\x9a\xe4\ \x62\xb6\xb7\x8a\x72\x98\xac\x39\x58\xbb\xfb\xab\x93\xc3\x52\x7d\ \x38\xec\x7b\x91\xc1\x3f\x7d\x29\x06\xc9\xe7\xb3\x0a\xce\x45\xc0\ \xd5\x36\x08\x7b\x5c\x58\xf4\xe3\x09\x56\x72\x8c\x1e\x15\x16\x4e\ \x21\x9d\x7b\xe6\x65\x0a\x7c\x27\xac\x6e\x2b\xd9\xbb\xd0\x2c\x1c\ \xc1\xfb\xe2\x48\x91\xe7\xa5\x92\x79\xbe\xba\xea\x5b\x5d\xa3\xf0\ \x9c\x82\xb3\xef\x1d\x2f\x4a\x35\x25\x2d\x77\x4c\xc2\x8a\x8e\x45\ \x19\x97\xcf\x53\xc0\x15\x52\xfd\xb6\xab\x09\x7b\x30\xbe\x25\x45\ \xcf\xd3\xad\xe6\x3b\x9d\x9d\xb1\x99\x1f\x3f\x2e\xdd\xf7\x79\x83\ \x75\x3a\xb7\x22\x93\x59\x53\xc9\x7b\xcd\x79\x87\xec\xcb\x2e\xef\ \x10\xe3\xb2\xeb\xa0\xd6\x71\xf5\x2a\x07\x93\xe2\x59\x1c\x69\x6d\ \xd5\xb5\xb4\xca\x59\xd9\xc7\x7b\x0b\x2a\x1d\xe1\x88\x9a\x95\x14\ \x35\xb3\xd2\xa1\x5c\x5d\x74\x4a\xc6\xe2\xb9\x76\x5a\x10\x13\xc6\ \xeb\x82\x7f\xb1\xf2\xa3\x70\xbb\x6a\xd4\xd3\x10\xdd\x7d\xcd\x8c\ \xce\xa8\xf7\x9d\x8b\x8b\xac\xd5\x0d\xd7\xea\x26\x67\x71\x51\xe9\ \x8c\xb6\xcf\xcb\xa6\x33\x9e\x93\xc0\xbb\xaf\x76\x19\x8c\x73\xd9\ \xa5\x2f\x64\x67\x7e\x93\x11\x51\xba\x13\x35\x2d\x78\xf0\xf3\x97\ \xe0\xd3\xa2\xd1\xe5\xe6\x90\xab\xd1\x51\x02\xc5\xb5\xd6\x9e\x48\ \x28\x1a\x94\x62\x15\xee\xc9\xf7\x06\x07\x45\x16\x3d\x34\xa9\xa9\ \xa6\x84\x84\x33\x39\x7c\x4a\x2e\xc3\x46\x0a\xf6\xab\x51\x47\xd9\ \x6f\x47\x3b\x93\x42\x64\xad\x5b\x59\xc5\x0a\x01\xf5\x46\xd1\x55\ \x89\x9e\xf9\x81\x30\x63\xce\x3f\x6d\x6b\x48\xd9\x6f\x7c\xe5\x94\ \x61\xc9\x71\x94\x14\x72\x40\xe8\xb1\x77\x87\x02\x7f\xb9\x51\x74\ \xa9\xb3\xd2\x82\x1c\x3f\x5b\xd3\xc8\xf4\xe7\xfc\x6d\xde\xfd\xd1\ \xe9\x77\xb2\xb3\xc5\xc6\xf8\xb4\xe0\xc2\xb6\x92\x5a\x85\xdb\xf7\ \xda\x05\x9c\x63\xa0\xc1\xd5\x50\x27\x59\x6d\xe5\xa8\x60\xaf\xf5\ \x77\xe7\x15\xfd\x9e\x69\x98\xe7\x69\x0f\x35\x08\x58\x36\xc7\x02\ \x2b\x69\x7d\xce\xe5\xb1\x56\xb7\x5b\xc6\xe6\x1b\xa6\x3c\xb2\xe3\ \xc8\xd3\x2e\xc4\xad\xe3\x79\x2a\x8c\xfc\x5b\x22\x8f\xc3\x4a\x75\ \x13\x3f\x8c\x16\x58\xbf\x31\xa8\xc5\xf8\x77\x1c\x88\x09\x35\xe1\ \x62\x68\x71\x0d\x9d\xf5\x1b\x9f\xd7\xb7\xb5\x83\x25\xc6\x75\x21\ \x3e\x0e\xbf\xd6\xf0\x69\x13\x0e\x4e\x58\xdc\xfd\x01\x87\x9c\xcf\ \xfd\xc7\xfd\xf6\xae\xef\xee\xe4\xb9\x64\xa9\x87\x27\x54\x48\x1e\ \xa7\xff\xff\x49\xc0\xff\x53\x95\xed\xeb\xe8\xdd\x34\x06\x0e\x25\ \xfb\x42\x50\x76\x85\xa0\xc6\x0a\x41\x7f\xd1\x93\x20\xc2\x1c\x8e\ \xaf\x15\x95\x75\x44\x68\x3e\xb9\xb6\x21\x78\x76\x21\x93\x36\xa1\ \xfb\xf6\xa0\x93\xb6\x40\x5b\xc3\x0e\x6a\x59\x61\x51\xcb\x44\xa0\ \xc3\x56\x46\xd4\xbf\xa3\xb4\x4f\xb3\x97\x9d\xa4\x57\xfe\xf4\x79\ \x2f\x8e\xe2\x2a\x6e\x12\x9a\xc9\xa5\x66\x4c\x6d\x3e\xfe\x13\x7f\ \xba\xfb\xbf\x83\xb5\xa3\xe8\x21\x59\x4e\xbb\xf6\xb3\xb2\xb6\x53\ \x0b\x3a\x93\x2b\xbd\x2b\xba\x78\xce\x95\xd6\x0e\xa1\x99\x36\x6f\ \x85\x0a\xe3\x75\xe8\x37\x0a\x3f\xbd\xf8\x36\xa1\xb2\xf6\xc0\xb7\ \x05\x9e\x1d\x48\x9c\x0d\xe8\xfb\x5e\xd9\x1c\xae\xb8\x35\xd3\x8e\ \x23\x59\xf0\x4d\x2f\x22\x65\x7a\x21\xb3\x39\x87\x0a\xe8\xa6\x5d\ \xd8\x66\xa3\x14\x1d\xd0\xa4\xe6\x48\x4e\xa1\x82\x40\x10\x2a\xc8\ \x3e\x30\x71\x26\x35\x8c\xe3\xbc\x0c\x36\x8c\x0f\x9c\x17\xd7\xf2\ \xf8\x22\x7b\xd6\x57\x48\xcb\x0b\xbe\xd5\x05\xd2\xe2\xb6\x42\xba\ \x9d\xc2\xa6\x4b\x04\xe4\xfc\x71\x77\x35\xfc\x1f\xa5\x81\x7f\xff\ \x8f\x91\x4c\x6b\xb2\x23\x07\xaa\xb7\xc2\x68\x30\xab\x17\xb0\x47\ \xc1\x95\x51\x43\x2b\xfb\xd7\xfe\x7d\x15\xad\x68\x55\x4e\x63\x1b\ \x65\x9e\x97\xd0\xd1\x73\x85\xc7\x8d\x62\xc0\x1c\x7c\x7b\x10\x5c\ \x5b\x40\xda\x01\xdf\x06\x70\xd6\xbf\x95\x77\xa3\x19\xa3\x95\x52\ \xde\x8d\x1d\x68\x5a\xca\x9d\x6b\x52\xee\x20\xe6\x99\x90\x75\x46\ \x46\x12\x7c\xdb\x10\x3c\xbb\x90\x48\x9b\x30\x7d\x7b\x30\x49\x5b\ \xf0\xe1\x89\x73\xb9\xe4\x70\x6d\x18\x04\x61\x28\x19\xb6\xc0\x96\ \x3d\x8a\x20\x2d\xed\xaf\x65\xbd\xb6\xad\x47\xcc\x46\x45\x26\xa9\ \xee\x6b\x4f\xc0\xac\xf2\xd4\xc4\x8c\xa0\xe9\xe8\x41\xef\xd4\xad\ \x0c\x78\x7c\x92\x3c\x2d\x1f\x15\x73\xfb\xdb\xfd\x6e\xc5\x25\xd6\ \xb7\x33\x30\x82\x5a\x9f\x67\x71\x8d\xb3\xb6\xec\x5a\x5a\xe1\xac\ \xec\xc3\x83\x00\xa4\xe0\xc5\xf3\x79\xf9\xb1\x36\xf8\xc3\x3f\x57\ \x19\x7b\xfe\x51\xb8\x40\xf3\xed\x41\x73\x6d\x41\x27\xed\x80\xbc\ \x71\xcd\xa1\x3e\xb0\x95\xe1\xcf\x67\xe0\xb1\x3b\xe4\x97\x55\x73\ \x89\x61\xd7\xa8\xa6\x21\x0e\x8f\xeb\xc8\x19\x38\x4f\xd7\xa7\x4d\ \xca\x87\x7d\xba\x00\x1e\x37\x8f\x08\xc7\xb8\x51\x34\x38\x9a\x6f\ \x71\x8d\x55\xdc\x2b\x12\xd5\x16\x52\xda\xd2\x18\x7f\xb7\x8b\xe0\ \x4c\x67\x37\x57\xf8\x3c\xd6\x69\x2b\xda\xce\x9d\x29\xbc\x38\x0f\ \xad\x4a\x3b\xe8\x04\x52\x79\x71\x10\x28\xa3\xba\xd8\x50\xc4\xd2\ \xa2\xe7\xf3\xd2\xa5\x8f\x7f\x3c\xde\xf1\x2c\x6f\x72\x56\xd7\x7c\ \x8b\xeb\xa4\xb5\x69\x1c\x74\x60\x94\xd2\xe5\x15\x46\x18\xf8\xba\ \xcc\xbd\xb6\x27\x0e\x41\x13\xc0\xb5\x40\xda\xfa\xb6\xb2\xb0\x03\ \x93\x4c\x40\xee\x3b\x23\xd8\x16\x32\x30\x8d\x50\x28\x88\xaf\xa6\ \x4d\x35\x13\x92\xa9\xea\x7b\x06\xd5\xbf\x3d\xe8\x01\x9c\x0c\x77\ \x3c\xb0\xd4\x4c\x82\xa5\x36\xdf\xc7\x35\xd2\xc7\x7d\xb8\x0b\x14\ \x93\x3a\x14\x39\x42\x46\xe0\xbc\x65\xae\xe5\x75\xd2\xf2\xe6\xee\ \x1c\x7b\x18\x61\x8c\x59\xc5\x9e\xdb\xd9\xf8\xde\xca\x50\xbc\x68\ \x92\x61\x58\xe7\xb2\x69\x3f\xec\x23\x4b\x93\x9d\xfc\xd8\xda\xb6\ \x50\x07\x61\x71\x53\xc1\xe0\x0e\x1c\x78\xb5\xd4\x43\xea\x65\x9d\ \x74\xde\x82\xdf\x6e\x6c\xe6\xd5\x0c\x77\x4d\xbc\xdf\xff\x6b\x95\ \xd1\xea\x8b\xbb\xd9\x67\x0d\x47\x76\xb3\xef\xf4\x45\xf4\x7c\x58\ \xe1\x7c\xd8\xbc\x79\xa4\x3c\xe6\x8d\xa3\x7c\x9f\x34\x5f\xf7\x94\ \x47\x34\x28\xa0\x27\xec\x52\x56\x57\x7d\x8b\xab\x2c\xac\x67\xb8\ \x69\x4e\x64\x5e\xdf\xed\x39\x7e\x9c\x84\x7a\xb2\x42\x9d\x45\x12\ \xf6\x52\x1b\xde\x56\x94\x0f\x92\xa9\x11\x52\x50\x1b\xd9\x5e\x7e\ \xcb\xf9\xfd\xa7\xff\xf2\x5f\xff\xf1\xcf\xff\xf6\x3f\xfe\xf5\x1f\ \xf8\xbf\xfe\xcb\x3f\xff\xf7\x7f\xf9\xe7\xff\xeb\x1f\xff\xc7\xff\ \xf6\x4f\xff\xe5\xbf\xfd\xbf\xff\xf8\x7f\xfe\xe5\x7f\xfe\x9f\xff\ \xfd\xdf\xfe\xdb\xbf\xfe\xf3\xff\xbd\xfe\x93\xff\x0f\xfc\xe3\xd1\ \xd6\ " qt_resource_name = b"\ \x00\x04\ \x00\x06\xe8\x92\ \x00\x68\ \x00\x61\x00\x72\x00\x72\ \x00\x03\ \x00\x00\x70\x37\ \x00\x69\ \x00\x6d\x00\x67\ \x00\x09\ \x08\x97\xa4\x27\ \x00\x73\ \x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x6a\x00\x70\x00\x67\ \x00\x1f\ \x00\xd4\xcf\x1c\ \x00\x68\ \x00\x61\x00\x61\x00\x72\x00\x63\x00\x61\x00\x73\x00\x63\x00\x61\x00\x64\x00\x65\x00\x5f\x00\x66\x00\x72\x00\x6f\x00\x6e\x00\x74\ \x00\x61\x00\x6c\x00\x66\x00\x61\x00\x63\x00\x65\x00\x5f\x00\x61\x00\x6c\x00\x74\x00\x2e\x00\x78\x00\x6d\x00\x6c\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\ \x00\x00\x00\x0e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\ \x00\x00\x00\x32\x00\x01\x00\x00\x00\x01\x00\x01\x5b\x55\ \x00\x00\x00\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ " 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\x0e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\ \x00\x00\x00\x00\x00\x00\x00\x00\ \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\x32\x00\x01\x00\x00\x00\x01\x00\x01\x5b\x55\ \x00\x00\x01\x7d\x88\x3e\xb1\x3e\ \x00\x00\x00\x1a\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x7d\x8e\xab\x77\xa1\ " qt_version = [int(v) for v in QtCore.qVersion().split('.')] if qt_version < [5, 8, 0]: rcc_version = 1 qt_resource_struct = qt_resource_struct_v1 else: rcc_version = 2 qt_resource_struct = qt_resource_struct_v2 def qInitResources(): QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) def qCleanupResources(): QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data) qInitResources()
66.73866
130
0.716357
bddb1013f49a89c0d62c0f9f5af54cb609725fcd
463
py
Python
data/scripts/templates/object/mobile/shared_dressed_rebel_corporal_bothan_male_01.py
obi-two/GameServer
7d37024e2291a97d49522610cd8f1dbe5666afc2
[ "MIT" ]
20
2015-02-23T15:11:56.000Z
2022-03-18T20:56:48.000Z
data/scripts/templates/object/mobile/shared_dressed_rebel_corporal_bothan_male_01.py
apathyboy/swganh
665128efe9154611dec4cb5efc61d246dd095984
[ "MIT" ]
null
null
null
data/scripts/templates/object/mobile/shared_dressed_rebel_corporal_bothan_male_01.py
apathyboy/swganh
665128efe9154611dec4cb5efc61d246dd095984
[ "MIT" ]
20
2015-04-04T16:35:59.000Z
2022-03-24T14:54:37.000Z
#### NOTICE: THIS FILE IS AUTOGENERATED #### MODIFICATIONS MAY BE LOST IF DONE IMPROPERLY #### PLEASE SEE THE ONLINE DOCUMENTATION FOR EXAMPLES from swgpy.object import * def create(kernel): result = Creature() result.template = "object/mobile/shared_dressed_rebel_corporal_bothan_male_01.iff" result.attribute_template_id = 9 result.stfName("npc_name","bothan_base_male") #### BEGIN MODIFICATIONS #### #### END MODIFICATIONS #### return result
27.235294
83
0.740821
4be7b74974234e2aa19099b4602f8e83c3d7bd1b
148
py
Python
metaci/plan/apps.py
sfdc-qbranch/MetaCI
78ac0d2bccd2db381998321ebd71029dd5d9ab39
[ "BSD-3-Clause" ]
48
2018-10-24T14:52:06.000Z
2022-03-25T21:14:50.000Z
metaci/plan/apps.py
sfdc-qbranch/MetaCI
78ac0d2bccd2db381998321ebd71029dd5d9ab39
[ "BSD-3-Clause" ]
2,034
2018-10-31T20:59:16.000Z
2022-03-22T21:38:03.000Z
metaci/plan/apps.py
sfdc-qbranch/MetaCI
78ac0d2bccd2db381998321ebd71029dd5d9ab39
[ "BSD-3-Clause" ]
27
2018-12-24T18:16:23.000Z
2021-12-15T17:57:27.000Z
from django.apps import AppConfig class PlanConfig(AppConfig): name = "metaci.plan" def ready(self): import metaci.plan.handlers
16.444444
35
0.695946
a077c5bbafc42837839088c4e006809dd0c7ef5c
1,547
py
Python
examples/Grafana-Demo-FOREX-master/backgroundForex.py
ambitus/containers
72b8eee2de8e484739cc45be0c2c50d7cabd6d0c
[ "Apache-2.0" ]
4
2019-10-17T20:51:32.000Z
2021-03-05T17:45:44.000Z
examples/Grafana-Demo-FOREX-master/backgroundForex.py
ambitus/containers
72b8eee2de8e484739cc45be0c2c50d7cabd6d0c
[ "Apache-2.0" ]
6
2020-07-14T14:25:13.000Z
2021-02-20T10:19:32.000Z
examples/Grafana-Demo-FOREX-master/backgroundForex.py
ambitus/containers
72b8eee2de8e484739cc45be0c2c50d7cabd6d0c
[ "Apache-2.0" ]
6
2020-03-12T08:39:48.000Z
2020-10-09T18:08:44.000Z
#Copyright Contributors to the Ambitus Project. # #SPDX-License-Identifier: Apache-2.0 import requests, json, os, logging, time from elasticsearch import Elasticsearch es = Elasticsearch([{'host': '### YOUR APPLIANCE URL HERE ###', 'port': '9200'}]) es.indices.create(index='forex') mapping={ "properties":{ "From_Currency Code":{"type": "text"}, "From_Currency Name":{"type": "text"}, "To_Currency Code":{"type": "text"}, "To_Currency Name":{"type": "text"}, "Exchange Rate":{"type": "float"}, "Last Refreshed":{"type": "date"}, "Time Zone":{"type": "text"}, "Bid Price":{"type": "float"}, "Ask Price":{"type": "float"}, } } es.indices.put_mapping(index='forex', body=mapping) API_URL = "https://www.alphavantage.co/query" data = { "function": "CURRENCY_EXCHANGE_RATE", "from_currency": "USD", "to_currency": "EUR", "apikey": "### YOUR API KEY HERE ###", "datatype":"csv", } idNum = 1 while True: response = requests.get(API_URL, params=data) info = str(json.dumps(response.json())) info = info[36:339] for i in range(1,10): Numeral = str(i) + ". " info = info.replace(Numeral, "") info = info[:200]+"Z"+info[200:] info = info[:191]+"T"+info[192:] es.index(index='forex', ignore=400, id=idNum, body=info) idNum += 1 time.sleep(200)
34.377778
82
0.529412
61087215ab6a3283110e64b32c880db99b1143cd
3,191
py
Python
examples/three_link_arm_block_pushing/run_3link_arm_pushing_2d.py
pangtao22/quasistatic_simulator
7c6f99cc7237dd922f6eb0b54c580303e86b5223
[ "MIT" ]
5
2021-07-15T03:58:55.000Z
2021-12-23T17:26:16.000Z
examples/three_link_arm_block_pushing/run_3link_arm_pushing_2d.py
pangtao22/quasistatic_simulator
7c6f99cc7237dd922f6eb0b54c580303e86b5223
[ "MIT" ]
5
2021-08-16T22:27:54.000Z
2022-02-07T18:06:07.000Z
examples/three_link_arm_block_pushing/run_3link_arm_pushing_2d.py
pangtao22/quasistatic_simulator
7c6f99cc7237dd922f6eb0b54c580303e86b5223
[ "MIT" ]
null
null
null
import matplotlib.pyplot as plt from examples.log_comparison import * from examples.setup_simulations import shift_q_traj_to_start_at_minus_h from examples.three_link_arm_block_pushing.utils import * # box initial state. q_u0 = np.array([1.7, 0.5, 0]) q0_dict_str = {robot_name: qa_knots[0], box_name: q_u0} def calc_integral_errors(q_robot_log_mbp, q_box_log_mbp, t_mbp, q_robot_log_quasistatic, q_box_log_quasistatic, t_quasistatic): shift_q_traj_to_start_at_minus_h(q_robot_traj, 0) qa_mbp_traj = PiecewisePolynomial.ZeroOrderHold(t_mbp, q_robot_log_mbp.T) # Quasistatic vs MBP, robot. e_robot, e_vec_robot, t_e_robot = calc_error_integral( q_knots=q_robot_log_quasistatic, t=t_quasistatic, q_gt_traj=qa_mbp_traj) # Quasistatic vs MBP, object angle. angle_mbp = q_box_log_mbp[:, 2].T angle_mbp = angle_mbp.reshape((1, angle_mbp.size)) angle_box_mbp_traj = PiecewisePolynomial.FirstOrderHold( t_mbp, angle_mbp) e_angle_box, e_vec_angle_box, t_angle_box = calc_error_integral( q_knots=q_box_log_quasistatic[:, 2], t=t_quasistatic, q_gt_traj=angle_box_mbp_traj) # Quasistatic vs MBP, object position. xyz_box_mbp_traj = PiecewisePolynomial.FirstOrderHold( t_mbp, q_box_log_mbp[:, :2].T) e_xyz_box, e_vec_xyz_box, t_xyz_box = calc_error_integral( q_knots=q_box_log_quasistatic[:, :2], t=t_quasistatic, q_gt_traj=xyz_box_mbp_traj) return (e_robot, e_vec_robot, t_e_robot, e_angle_box, e_vec_angle_box, t_angle_box, e_xyz_box, e_vec_xyz_box, t_xyz_box) if __name__ == "__main__": (q_robot_log_mbp, q_box_log_mbp, t_mbp, q_robot_log_quasistatic, q_box_log_quasistatic, t_quasistatic, q_sys) = \ run_mbp_quasistatic_comparison(q_model_path_2d, q0_dict_str, is_visualizing=True, real_time_rate=0.0) #%% figure, axes = plt.subplots(nq_a, 1, figsize=(4, 10), dpi=200) axes[0].set_title("Joint angles") for i, ax in enumerate(axes): ax.plot(t_mbp, q_robot_log_mbp[:, i], label="mbp") ax.plot(t_quasistatic, q_robot_log_quasistatic[:, i], label="quasistatic") ax.set_ylabel("[rad]") ax.legend() plt.xlabel("t [s]") plt.show() (e_robot, e_vec_robot, t_e_robot, e_angle_box, e_vec_angle_box, t_angle_box, e_xyz_box, e_vec_xyz_box, t_xyz_box) = calc_integral_errors( q_robot_log_mbp, q_box_log_mbp, t_mbp, q_robot_log_quasistatic, q_box_log_quasistatic, t_quasistatic) # %% print("Quasistatic vs MBP, robot", e_robot) # %% Orientation (angle). print("Quasistatic vs MBP, object angle", e_angle_box) plt.plot(t_angle_box, e_vec_angle_box) plt.title("Box angle difference, mbp vs. quasistatic [rad]") plt.xlabel("t [s]") plt.show() # %% Position. print("Quasistatic vs MBP, object position", e_xyz_box) plt.plot(t_xyz_box, e_vec_xyz_box) plt.title("Box position difference, mbp vs. quasistatic [m]") plt.xlabel("t [s]") plt.show()
37.541176
78
0.678784
ceb88de38c7114e4ca531c211fc0289fa522bc58
412
py
Python
coding/learn_re/demo_datetime.py
yatao91/learning_road
e88dc43de98e35922bfc71c222ec71766851e618
[ "MIT" ]
3
2021-05-25T16:58:52.000Z
2022-02-05T09:37:17.000Z
coding/learn_re/demo_datetime.py
yataosu/learning_road
e88dc43de98e35922bfc71c222ec71766851e618
[ "MIT" ]
null
null
null
coding/learn_re/demo_datetime.py
yataosu/learning_road
e88dc43de98e35922bfc71c222ec71766851e618
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- import re def time_re(start_time, stop_time): if not re.match('^\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}$', start_time) \ or not re.match('^\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}$', stop_time): print('error') if __name__ == '__main__': start_time = '2019-05-15 15:38:38' stop_time = '2019-08-13 15:38:38' time_re(start_time, stop_time)
27.466667
90
0.546117
a0130ae029719485e9d06466f2ea9412543a3d7b
1,035
py
Python
wagtail/tests/snippets/migrations/0005_multisectionrichtextsnippet_richtextsection.py
brownaa/wagtail
c97bc56c6822eb1b6589d5c33e07f71acfc48845
[ "BSD-3-Clause" ]
8,851
2016-12-09T19:01:45.000Z
2022-03-31T04:45:06.000Z
wagtail/tests/snippets/migrations/0005_multisectionrichtextsnippet_richtextsection.py
brownaa/wagtail
c97bc56c6822eb1b6589d5c33e07f71acfc48845
[ "BSD-3-Clause" ]
5,197
2016-12-09T19:24:37.000Z
2022-03-31T22:17:55.000Z
wagtail/tests/snippets/migrations/0005_multisectionrichtextsnippet_richtextsection.py
brownaa/wagtail
c97bc56c6822eb1b6589d5c33e07f71acfc48845
[ "BSD-3-Clause" ]
2,548
2016-12-09T18:16:55.000Z
2022-03-31T21:34:38.000Z
# -*- coding: utf-8 -*- from django.db import migrations, models import wagtail.core.fields import modelcluster.fields class Migration(migrations.Migration): dependencies = [ ('snippetstests', '0004_fileuploadsnippet'), ] operations = [ migrations.CreateModel( name='MultiSectionRichTextSnippet', fields=[ ('id', models.AutoField(primary_key=True, serialize=False, verbose_name='ID', auto_created=True)), ], options={ 'abstract': False, }, ), migrations.CreateModel( name='RichTextSection', fields=[ ('id', models.AutoField(primary_key=True, serialize=False, verbose_name='ID', auto_created=True)), ('body', wagtail.core.fields.RichTextField()), ('snippet', modelcluster.fields.ParentalKey(to='snippetstests.MultiSectionRichTextSnippet', related_name='sections', on_delete=models.CASCADE)), ], ), ]
32.34375
160
0.590338
7e6e76b66630962810c81ee341a64f3a07e56c33
11,870
py
Python
tests/unit/test_simulator_interface.py
nordicneurolab/vunit
c69c99512d7cebe915f77653b473853b495886d2
[ "Artistic-2.0" ]
3
2021-03-09T15:01:40.000Z
2022-02-05T12:11:55.000Z
tests/unit/test_simulator_interface.py
noasic/vunit
4d65f1283ede458f8941910cd40787edb7a9271c
[ "Artistic-2.0", "Apache-2.0" ]
4
2022-02-04T08:24:33.000Z
2022-03-14T17:06:48.000Z
tests/unit/test_simulator_interface.py
noasic/vunit
4d65f1283ede458f8941910cd40787edb7a9271c
[ "Artistic-2.0", "Apache-2.0" ]
4
2020-03-25T16:49:30.000Z
2022-02-01T11:18:12.000Z
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. # # Copyright (c) 2014-2020, Lars Asplund lars.anders.asplund@gmail.com """ Test the SimulatorInterface class """ import unittest from pathlib import Path from os import chdir, getcwd import subprocess from shutil import rmtree from unittest import mock from vunit.project import Project from vunit.sim_if import ( SimulatorInterface, BooleanOption, ListOfStringOption, StringOption, VHDLAssertLevelOption, ) from vunit.exceptions import CompileError from vunit.ostools import renew_path, write_file class TestSimulatorInterface(unittest.TestCase): """ Test the SimulatorInterface class """ def test_compile_source_files(self): simif = create_simulator_interface() simif.compile_source_file_command.side_effect = iter( [["command1"], ["command2"]] ) project = Project() project.add_library("lib", "lib_path") write_file("file1.vhd", "") file1 = project.add_source_file("file1.vhd", "lib", file_type="vhdl") write_file("file2.vhd", "") file2 = project.add_source_file("file2.vhd", "lib", file_type="vhdl") project.add_manual_dependency(file2, depends_on=file1) with mock.patch("vunit.sim_if.check_output", autospec=True) as check_output: check_output.side_effect = iter(["", ""]) printer = MockPrinter() simif.compile_source_files(project, printer=printer) check_output.assert_has_calls( [ mock.call(["command1"], env=simif.get_env()), mock.call(["command2"], env=simif.get_env()), ] ) self.assertEqual( printer.output, """\ Compiling into lib: file1.vhd passed Compiling into lib: file2.vhd passed Compile passed """, ) self.assertEqual(project.get_files_in_compile_order(incremental=True), []) def test_compile_source_files_minimal_subset(self): simif = create_simulator_interface() project = Project() project.add_library("lib", "lib_path") write_file("file1.vhd", "") file1 = project.add_source_file("file1.vhd", "lib", file_type="vhdl") with mock.patch( "vunit.project.Project.get_minimal_file_set_in_compile_order", autospec=True ) as target_function: target_function.return_value = [] printer = MockPrinter() simif.compile_source_files(project, printer=printer, target_files=[file1]) simif.compile_source_files(project, printer=printer, target_files=[file1]) self.assertTrue(target_function.called) def test_compile_source_files_continue_on_error(self): simif = create_simulator_interface() project = Project() project.add_library("lib", "lib_path") write_file("file1.vhd", "") file1 = project.add_source_file("file1.vhd", "lib", file_type="vhdl") write_file("file2.vhd", "") file2 = project.add_source_file("file2.vhd", "lib", file_type="vhdl") write_file("file3.vhd", "") file3 = project.add_source_file("file3.vhd", "lib", file_type="vhdl") project.add_manual_dependency(file2, depends_on=file1) def compile_source_file_command(source_file): """ Dummy compile command """ if source_file == file1: return ["command1"] if source_file == file2: return ["command2"] if source_file == file3: return ["command3"] raise AssertionError def check_output_side_effect( command, env=None ): # pylint: disable=missing-docstring, unused-argument if command == ["command1"]: raise subprocess.CalledProcessError( returncode=-1, cmd=command, output="bad stuff" ) return "" simif.compile_source_file_command.side_effect = compile_source_file_command with mock.patch("vunit.sim_if.check_output", autospec=True) as check_output: check_output.side_effect = check_output_side_effect printer = MockPrinter() self.assertRaises( CompileError, simif.compile_source_files, project, printer=printer, continue_on_error=True, ) self.assertEqual( printer.output, """\ Compiling into lib: file3.vhd passed Compiling into lib: file1.vhd failed === Command used: === command1 === Command output: === bad stuff Compiling into lib: file2.vhd skipped Compile failed """, ) self.assertEqual(len(check_output.mock_calls), 2) check_output.assert_has_calls( [ mock.call(["command1"], env=simif.get_env()), mock.call(["command3"], env=simif.get_env()), ], any_order=True, ) self.assertEqual( project.get_files_in_compile_order(incremental=True), [file1, file2] ) def test_compile_source_files_check_output_error(self): simif = create_simulator_interface() simif.compile_source_file_command.return_value = ["command"] project = Project() project.add_library("lib", "lib_path") write_file("file.vhd", "") source_file = project.add_source_file("file.vhd", "lib", file_type="vhdl") with mock.patch("vunit.sim_if.check_output", autospec=True) as check_output: def check_output_side_effect( command, env=None ): # pylint: disable=missing-docstring, unused-argument raise subprocess.CalledProcessError( returncode=-1, cmd=command, output="bad stuff" ) check_output.side_effect = check_output_side_effect printer = MockPrinter() self.assertRaises( CompileError, simif.compile_source_files, project, printer=printer ) self.assertEqual( printer.output, """\ Compiling into lib: file.vhd failed === Command used: === command === Command output: === bad stuff Compile failed """, ) check_output.assert_called_once_with(["command"], env=simif.get_env()) self.assertEqual( project.get_files_in_compile_order(incremental=True), [source_file] ) def test_compile_source_files_create_command_error(self): simif = create_simulator_interface() project = Project() project.add_library("lib", "lib_path") write_file("file.vhd", "") source_file = project.add_source_file("file.vhd", "lib", file_type="vhdl") with mock.patch("vunit.sim_if.check_output", autospec=True) as check_output: check_output.return_value = "" def raise_compile_error(source_file): # pylint: disable=unused-argument raise CompileError simif.compile_source_file_command.side_effect = raise_compile_error self.assertRaises(CompileError, simif.compile_source_files, project) self.assertEqual( project.get_files_in_compile_order(incremental=True), [source_file] ) @mock.patch("os.environ", autospec=True) def test_find_prefix(self, environ): class MySimulatorInterface( SimulatorInterface ): # pylint: disable=abstract-method """ Dummy simulator interface for testing """ name = "simname" prefix_from_path = None @classmethod def find_prefix_from_path(cls): return cls.prefix_from_path simif = MySimulatorInterface(output_path="output_path", gui=False) simif.name = "simname" environ.get.return_value = None self.assertEqual(simif.find_prefix(), None) environ.get.assert_called_once_with("VUNIT_SIMNAME_PATH", None) environ.reset_mock() environ.get.return_value = "simname/bin" self.assertEqual(simif.find_prefix(), "simname/bin") environ.get.assert_called_once_with("VUNIT_SIMNAME_PATH", None) environ.reset_mock() environ.get.return_value = None MySimulatorInterface.prefix_from_path = "prefix_from_path" self.assertEqual(simif.find_prefix(), "prefix_from_path") environ.get.assert_called_once_with("VUNIT_SIMNAME_PATH", None) def setUp(self): self.output_path = str(Path(__file__).parent / "test_simulator_interface__out") renew_path(self.output_path) self.project = Project() self.cwd = getcwd() chdir(self.output_path) def tearDown(self): chdir(self.cwd) if Path(self.output_path).exists(): rmtree(self.output_path) class TestOptions(unittest.TestCase): """ The the compile and simulation options validators """ def test_boolean_option(self): option = BooleanOption("optname") self._test_ok(option, True) self._test_ok(option, False) self._test_not_ok(option, None, "Option 'optname' must be a boolean. Got None") def test_string_option(self): option = StringOption("optname") self._test_ok(option, "hello") self._test_ok(option, u"hello") self._test_not_ok(option, False, "Option 'optname' must be a string. Got False") self._test_not_ok( option, ["foo"], "Option 'optname' must be a string. Got ['foo']" ) def test_list_of_string_option(self): option = ListOfStringOption("optname") self._test_ok(option, ["hello", "foo"]) self._test_ok(option, [u"hello"]) self._test_not_ok( option, [True], "Option 'optname' must be a list of strings. " "Got [True]" ) self._test_not_ok( option, [["foo"]], "Option 'optname' must be a list of strings. " "Got [['foo']]", ) self._test_not_ok( option, "foo", "Option 'optname' must be a list of strings. " "Got 'foo'" ) def test_vhdl_assert_level(self): option = VHDLAssertLevelOption() self._test_ok(option, "warning") self._test_ok(option, "error") self._test_ok(option, "failure") self._test_not_ok( option, "foo", "Option 'vhdl_assert_stop_level' must be one of " "('warning', 'error', 'failure'). Got 'foo'", ) @staticmethod def _test_ok(option, value): option.validate(value) def _test_not_ok(self, option, value, message): """ Test taht setting option to value is not OK with message """ try: option.validate(value) except ValueError as err: self.assertEqual(str(err), message) else: assert False def create_simulator_interface(): """ Create a simulator interface with fake method """ simif = SimulatorInterface(output_path="output_path", gui=False) simif.compile_source_file_command = mock.create_autospec( simif.compile_source_file_command ) return simif class MockPrinter(object): """ Mock printer that accumulates the calls as a string """ def __init__(self): self.output = "" def write( self, text, output_file=None, fg=None, bg=None ): # pylint: disable=unused-argument self.output += text
33.817664
88
0.614659
dcd031dfc281dd4f019c626bd991843f8dd077b5
6,579
py
Python
tests/python/pants_test/backend/jvm/tasks/test_consolidate_classpath.py
mcguigan/pants
e085d45669b72d0c51ab8a54602306fc76e07256
[ "Apache-2.0" ]
null
null
null
tests/python/pants_test/backend/jvm/tasks/test_consolidate_classpath.py
mcguigan/pants
e085d45669b72d0c51ab8a54602306fc76e07256
[ "Apache-2.0" ]
null
null
null
tests/python/pants_test/backend/jvm/tasks/test_consolidate_classpath.py
mcguigan/pants
e085d45669b72d0c51ab8a54602306fc76e07256
[ "Apache-2.0" ]
null
null
null
# Copyright 2016 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). import os import re from typing import List from pants.backend.jvm.targets.jar_library import JarLibrary from pants.backend.jvm.targets.java_library import JavaLibrary from pants.backend.jvm.targets.jvm_app import JvmApp from pants.backend.jvm.targets.jvm_binary import JvmBinary from pants.backend.jvm.tasks.consolidate_classpath import ConsolidateClasspath from pants.build_graph.resources import Resources from pants.java.jar.jar_dependency import JarDependency from pants.util.dirutil import safe_file_dump from pants_test.backend.jvm.tasks.jvm_binary_task_test_base import JvmBinaryTaskTestBase class TestConsolidateClasspath(JvmBinaryTaskTestBase): @classmethod def task_type(cls): return ConsolidateClasspath def setUp(self): """Prepare targets, context, runtime classpath. """ super().setUp() self.task = self.prepare_execute(self.context()) self.jar_artifact = self.create_artifact(org='org.example', name='foo', rev='1.0.0') self.zip_artifact = self.create_artifact(org='org.pantsbuild', name='bar', rev='2.0.0', ext='zip') self.bundle_artifact = self.create_artifact(org='org.apache', name='baz', rev='3.0.0', classifier='tests') self.tar_gz_artifact = self.create_artifact(org='org.gnu', name='gary', rev='4.0.0', ext='tar.gz') self.jar_lib = self.make_target(spec='3rdparty/jvm/org/example:foo', target_type=JarLibrary, jars=[JarDependency(org='org.example', name='foo', rev='1.0.0'), JarDependency(org='org.pantsbuild', name='bar', rev='2.0.0', ext='zip'), JarDependency(org='org.apache', name='baz', rev='3.0.0', classifier='tests'), JarDependency(org='org.gnu', name='gary', rev='4.0.0', ext='tar.gz')]) safe_file_dump(os.path.join(self.build_root, 'resources/foo/file'), '// dummy content') self.resources_target = self.make_target('//resources:foo-resources', Resources, sources=['foo/file']) # This is so that payload fingerprint can be computed. safe_file_dump(os.path.join(self.build_root, 'foo/Foo.java'), '// dummy content') self.java_lib_target = self.make_target('//foo:foo-library', JavaLibrary, sources=['Foo.java']) self.binary_target = self.make_target(spec='//foo:foo-binary', target_type=JvmBinary, dependencies=[ self.java_lib_target, self.jar_lib, self.resources_target ]) self.dist_root = os.path.join(self.build_root, 'dist') def _setup_classpath(self, task_context): """As a separate prep step because to test different option settings, this needs to rerun after context is re-created. """ self.ensure_classpath_products(task_context) self.add_to_runtime_classpath(task_context, self.binary_target, {'Foo.class': '', 'foo.txt': '', 'foo/file': ''}) def test_remove_raw_deps(self): """Test default setting outputs bundle products using `target.id`.""" self.app_target = self.make_target(spec='//foo:foo-app', target_type=JvmApp, basename='FooApp', dependencies=[self.binary_target]) self.task_context = self.context(target_roots=[self.app_target]) self._setup_classpath(self.task_context) self.execute(self.task_context) task_dir = os.path.join( self.pants_workdir, 'pants_backend_jvm_tasks_consolidate_classpath_ConsolidateClasspath' ) found_files = [os.path.basename(f) for f in self.iter_files(task_dir)] consolidate_classpath_jar = self.find_consolidate_classpath_jar(found_files) self.assertEqual( sorted([consolidate_classpath_jar, 'Foo.class', 'foo.txt', 'file']), sorted(found_files) ) # Confirm that we haven't destroyed deps. expected_non_deps = {consolidate_classpath_jar, 'Foo.class', 'foo.txt', 'file'} found = set(os.listdir(self.pants_workdir)) print(expected_non_deps - found) self.assertTrue(expected_non_deps - found == expected_non_deps) def test_consolidate_classpath(self): """Test default setting outputs bundle products using `target.id`.""" self.app_target = self.make_target(spec='//foo:foo-app', target_type=JvmApp, basename='FooApp', dependencies=[self.binary_target]) self.task_context = self.context(target_roots=[self.app_target]) self._setup_classpath(self.task_context) self.execute(self.task_context) task_dir = os.path.join( self.pants_workdir, 'pants_backend_jvm_tasks_consolidate_classpath_ConsolidateClasspath' ) found_files = [os.path.basename(f) for f in self.iter_files(task_dir)] consolidate_classpath_jar = self.find_consolidate_classpath_jar(found_files) self.assertEqual( sorted([consolidate_classpath_jar, 'Foo.class', 'foo.txt', 'file']), sorted(found_files) ) # Confirm that we haven't destroyed deps. expected_deps = {'org.apache-baz-3.0.0-tests.jar', 'org.example-foo-1.0.0.jar', 'org.gnu-gary-4.0.0.tar.gz', 'org.pantsbuild-bar-2.0.0.zip'} found = set(os.listdir(self.pants_workdir)) self.assertTrue(expected_deps - found == set()) @staticmethod def find_consolidate_classpath_jar(files: List[str]) -> str: matching = [f for f in files if re.match("output-[0-9a-f]{6}\.jar", f)] if len(matching) == 1: return matching[0] raise ValueError(f"Could not find single consolidate classpath jar in {files}.")
48.375
100
0.595379
22f466e60dba83cc00b9204221d9b903bef636c8
2,307
py
Python
__main__.py
christopherkopic/PictureToBytes
95b93876bffdc4337056c5dcba6fc0c9322f6826
[ "MIT" ]
null
null
null
__main__.py
christopherkopic/PictureToBytes
95b93876bffdc4337056c5dcba6fc0c9322f6826
[ "MIT" ]
null
null
null
__main__.py
christopherkopic/PictureToBytes
95b93876bffdc4337056c5dcba6fc0c9322f6826
[ "MIT" ]
null
null
null
from PIL import Image from pathlib import Path from itertools import zip_longest import os file_txt = "Icons.h" def writeImg(file, pixels, sizeX, sizeY, name): file.write("const unsigned int {0}_X = {1};\n".format(name, sizeX)) file.write("const unsigned int {0}_Y = {1};\n".format(name, sizeY)) file.write("const unsigned char {0}[] PROGMEM =\n".format(name)) file.write("{\n") file.write("\t0X{:02X}".format(pixels.pop(0))) for pixel in pixels: file.write(", 0X{:02X}".format(pixel)) file.write("\n") file.write("};\n") file.write("\n") def writeFileHead(file, filename): name = Path(filename).stem file.write("#ifndef _{0}_H_\n".format(name)) file.write("#define _{0}_H_\n".format(name)) file.write("\n") file.write("#if defined(ESP8266) || defined(ESP32)\n") file.write("#include <pgmspace.h>\n") file.write("#else\n") file.write("#include <avr/pgmspace.h>\n") file.write("#endif\n") file.write("\n") def writeFileFoot(file): file.write("#endif\n") def grouper(n, iterable, padvalue=None): "grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ('d','e','f'), ('g','x','x')" return list(zip_longest(*[iter(iterable)]*n, fillvalue=padvalue)) def encodePixels(pixels, sizeX): rows = grouper(sizeX, pixels, 0); data = [] for row in rows: data.append(grouper(8, row, 0)) data_encoded = [] for row in data: for byte in row: binary = "" for value in byte: if value > 125: binary += "1" else: binary += "0" data_encoded.append(int(binary, 2)) return data_encoded def main(): #Load Textfile txt = open(file_txt, "w+") writeFileHead(txt, file_txt) #All bmp files as list files = os.listdir() files_bmp = [i for i in files if i.endswith('.bmp')] for bmp in files_bmp: #Load Image img = Image.open(bmp) pixels = list(img.getdata()) sizeX = img.size[0]; sizeY = img.size[1]; name = Path(bmp).stem pixels_encoded = encodePixels(pixels, sizeX) writeImg(txt, pixels_encoded, sizeX, sizeY, name) writeFileFoot(txt) txt.close() if __name__ == '__main__': main()
26.517241
80
0.577807
ed831c5f5160a0095dff4fd636c4e000f7349572
1,450
py
Python
app/core/tests/test_models.py
datilp/recipe-app-api
c62e3c3429b10b354b741d491d90b8297b393a95
[ "MIT" ]
null
null
null
app/core/tests/test_models.py
datilp/recipe-app-api
c62e3c3429b10b354b741d491d90b8297b393a95
[ "MIT" ]
null
null
null
app/core/tests/test_models.py
datilp/recipe-app-api
c62e3c3429b10b354b741d491d90b8297b393a95
[ "MIT" ]
null
null
null
from django.test import TestCase from django.contrib.auth import get_user_model ''' we use get_user_model instead of importing the user model directly later on if we change the user model by using get_user_model we only have to change the configuration ''' class ModelTest(TestCase): def test_create_user_with_email_sucessful(self): """Test creating a new user with an email is successful""" email = 'isuarezsola@gmail.com' password = 'Testpass123' user = get_user_model().objects.create_user( email=email, password=password ) self.assertEqual(user.email, email) self.assertTrue(user.check_password(password)) def test_new_user_email_normalized(self): """Test email is normalized""" email = 'isuarezsola@GMAIL.COM' user = get_user_model().objects.create_user(email, "test123") self.assertEqual(user.email, email.lower()) def test_new_user_invalid_email(self): """Test created user without email raises error""" with self.assertRaises(ValueError): get_user_model().objects.create_user(None, "test123") def test_create_new_super_user(self): """Test create super user""" user = get_user_model().objects.create_superuser( 'test@gmail.com', 'test123' ) self.assertTrue(user.is_superuser) self.assertTrue(user.is_staff)
33.72093
72
0.668966
6c459df916356d23b053d07735ab3e0d79116975
6,843
py
Python
exstracs/exstracs_prediction.py
bnanita/trafficapi
ba22faa609ce0f79b3791dca2c403591a26ee2e2
[ "MIT" ]
null
null
null
exstracs/exstracs_prediction.py
bnanita/trafficapi
ba22faa609ce0f79b3791dca2c403591a26ee2e2
[ "MIT" ]
null
null
null
exstracs/exstracs_prediction.py
bnanita/trafficapi
ba22faa609ce0f79b3791dca2c403591a26ee2e2
[ "MIT" ]
null
null
null
""" Name: ExSTraCS_Prediction.py Authors: Ryan Urbanowicz - Written at Dartmouth College, Hanover, NH, USA Contact: ryan.j.urbanowicz@darmouth.edu Created: April 25, 2014 Modified: August 25,2014 Description: Based on a given match set, this module uses a voting scheme to select the phenotype prediction for ExSTraCS. --------------------------------------------------------------------------------------------------------------------------------------------------------- ExSTraCS V2.0: Extended Supervised Tracking and Classifying System - An advanced LCS designed specifically for complex, noisy classification/data mining tasks, such as biomedical/bioinformatics/epidemiological problem domains. This algorithm should be well suited to any supervised learning problem involving classification, prediction, data mining, and knowledge discovery. This algorithm would NOT be suited to function approximation, behavioral modeling, or other multi-step problems. This LCS algorithm is most closely based on the "UCS" algorithm, an LCS introduced by Ester Bernado-Mansilla and Josep Garrell-Guiu (2003) which in turn is based heavily on "XCS", an LCS introduced by Stewart Wilson (1995). Copyright (C) 2014 Ryan Urbanowicz This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA --------------------------------------------------------------------------------------------------------------------------------------------------------- """ #Import Required Modules------------------------------- from exstracs.exstracs_constants import * import random #------------------------------------------------------ class Prediction: def __init__(self, population): #now takes in population ( have to reference the match set to do prediction) pop.matchSet """ Constructs the voting array and determines the prediction decision. """ self.decision = None #------------------------------------------------------- # DISCRETE PHENOTYPE #------------------------------------------------------- if cons.env.formatData.discretePhenotype: self.vote = {} self.tieBreak_Numerosity = {} self.tieBreak_TimeStamp = {} for eachClass in cons.env.formatData.phenotypeList: self.vote[eachClass] = 0.0 self.tieBreak_Numerosity[eachClass] = 0.0 self.tieBreak_TimeStamp[eachClass] = 0.0 for ref in population.matchSet: cl = population.popSet[ref] self.vote[cl.phenotype] += cl.fitness * cl.numerosity * cons.env.formatData.classPredictionWeights[cl.phenotype] self.tieBreak_Numerosity[cl.phenotype] += cl.numerosity self.tieBreak_TimeStamp[cl.phenotype] += cl.initTimeStamp highVal = 0.0 bestClass = [] #Prediction is set up to handle best class ties for problems with more than 2 classes for thisClass in cons.env.formatData.phenotypeList: if self.vote[thisClass] >= highVal: highVal = self.vote[thisClass] for thisClass in cons.env.formatData.phenotypeList: if self.vote[thisClass] == highVal: #Tie for best class bestClass.append(thisClass) #--------------------------- if highVal == 0.0: self.decision = None #----------------------------------------------------------------------- elif len(bestClass) > 1: #Randomly choose between the best tied classes bestNum = 0 newBestClass = [] for thisClass in bestClass: if self.tieBreak_Numerosity[thisClass] >= bestNum: bestNum = self.tieBreak_Numerosity[thisClass] for thisClass in bestClass: if self.tieBreak_Numerosity[thisClass] == bestNum: newBestClass.append(thisClass) #----------------------------------------------------------------------- if len(newBestClass) > 1: #still a tie bestStamp = 0 newestBestClass = [] for thisClass in newBestClass: if self.tieBreak_TimeStamp[thisClass] >= bestStamp: bestStamp = self.tieBreak_TimeStamp[thisClass] for thisClass in newBestClass: if self.tieBreak_TimeStamp[thisClass] == bestStamp: newestBestClass.append(thisClass) #----------------------------------------------------------------------- if len(newestBestClass) > 1: # Prediction is completely tied - ExSTraCS has no useful information for making a prediction self.decision = 'Tie' else: self.decision = newBestClass[0] #---------------------------------------------------------------------- else: #One best class determined by fitness vote self.decision = bestClass[0] #------------------------------------------------------- # CONTINUOUS PHENOTYPE #------------------------------------------------------- else: print("Prediction - Error: ExSTraCS 2.0 can not handle continuous endpoints.") def getFitnessSum(self,population,low,high): """ Get the fitness Sum of rules in the rule-set. For continuous phenotype prediction. """ fitSum = 0 for ref in population.matchSet: cl = population.popSet[ref] if cl.phenotype[0] <= low and cl.phenotype[1] >= high: #if classifier range subsumes segment range. fitSum += cl.fitness return fitSum def getDecision(self): """ Returns prediction decision. """ return self.decision def getSet(self): """ Returns prediction decision. """ return self.vote
56.090164
160
0.531346
807b0dc333f181bc98a2221cd5970c74e0c71fef
46,938
py
Python
droidlet/tools/hitl/vision_retrain/vision_annotation_jobs.py
colesbury/fairo
9e50a3aa7369c68c80e84d80abd5fcdee8a9277a
[ "MIT" ]
73
2021-09-14T19:24:45.000Z
2022-03-27T06:43:26.000Z
droidlet/tools/hitl/vision_retrain/vision_annotation_jobs.py
colesbury/fairo
9e50a3aa7369c68c80e84d80abd5fcdee8a9277a
[ "MIT" ]
268
2021-09-14T22:40:23.000Z
2022-03-31T23:01:54.000Z
droidlet/tools/hitl/vision_retrain/vision_annotation_jobs.py
colesbury/fairo
9e50a3aa7369c68c80e84d80abd5fcdee8a9277a
[ "MIT" ]
20
2021-09-14T19:24:47.000Z
2022-03-30T19:03:44.000Z
""" Copyright (c) Facebook, Inc. and its affiliates. """ import logging import os import signal import subprocess import time import csv import yaml import json import copy import boto3 from droidlet.tools.hitl.data_generator import DataGenerator from mephisto.abstractions.databases.local_database import LocalMephistoDB from mephisto.tools.data_browser import DataBrowser as MephistoDataBrowser db = LocalMephistoDB() mephisto_data_browser = MephistoDataBrowser(db=db) HITL_TMP_DIR = ( os.environ["HITL_TMP_DIR"] if os.getenv("HITL_TMP_DIR") else f"{os.path.expanduser('~')}/.hitl" ) ANNOTATION_JOB_POLL_TIME = 30 ANNOTATION_PROCESS_TIMEOUT_DEFAULT = 300 S3_BUCKET_NAME = "droidlet-hitl" S3_ROOT = "s3://droidlet-hitl" AWS_ACCESS_KEY_ID = os.environ["AWS_ACCESS_KEY_ID"] AWS_SECRET_ACCESS_KEY = os.environ["AWS_SECRET_ACCESS_KEY"] AWS_DEFAULT_REGION = os.environ["AWS_DEFAULT_REGION"] MEPHISTO_REQUESTER = os.environ["MEPHISTO_REQUESTER"] s3 = boto3.client( "s3", aws_access_key_id=AWS_ACCESS_KEY_ID, aws_secret_access_key=AWS_SECRET_ACCESS_KEY, region_name=AWS_DEFAULT_REGION, ) logging.basicConfig(level="INFO") class VisionAnnotationJob(DataGenerator): """ This Data Generator is responsible for spinning up Vision Annotation Jobs. Each Vision Annotation Job is a single HIT where turkers are asked to annotate the visual scene captured at the time a command was issued and labeled as containing a perception error. On a high level: - The inputs of this data generator are a list of scenes and corresponding timestamps at which they were captured (used as the unique scene identifier) - The output of this data generator is the same visual scene and label, with a new field representing the instance segmentation mask. """ def __init__( self, batch_id: int, timestamp: str, scenes: list, timeout: float = ANNOTATION_PROCESS_TIMEOUT_DEFAULT, ) -> None: super(VisionAnnotationJob, self).__init__(timeout) self._batch_id = batch_id self._timestamp = timestamp self._scenes = scenes def run(self) -> None: try: # Put the scene in extra_refs logging.info("Saving scene list to extra_refs") scene_ref_filepath = os.path.join( os.getcwd(), "../../crowdsourcing/vision_annotation_task/server_files/extra_refs/scene_list.json", ) with open(scene_ref_filepath, "w") as f: json.dump(self._scenes, f) # Write scene indeces and labels to a new data.csv for Mephisto to read logging.info(f"Writing HIT data to {self._timestamp}data.csv") data_csv_path = os.path.join( os.getcwd(), f"../../crowdsourcing/vision_annotation_task/{self._timestamp}data.csv", ) with open(data_csv_path, "w") as f: csv_writer = csv.writer(f, delimiter=",") csv_writer.writerow(["batch_id", "scene_idx", "label"]) for i in range(len(self._scenes)): csv_writer.writerow([str(self._batch_id), str(i), self._scenes[i]["obj_ref"]]) # Edit Mephisto config file to have the right task name and data csv file with open( "../../crowdsourcing/vision_annotation_task/conf/annotation.yaml", "r" ) as stream: config = yaml.safe_load(stream) task_name = "ca-vis-anno" + str(self._batch_id) config["mephisto"]["blueprint"][ "data_csv" ] = f"${{task_dir}}/{self._timestamp}data.csv" config["mephisto"]["task"]["task_name"] = task_name logging.info(f"Updating Mephisto config file to have task_name: {task_name}") with open( "../../crowdsourcing/vision_annotation_task/conf/annotation.yaml", "w" ) as stream: stream.write("#@package _global_\n") yaml.dump(config, stream) # Launch the batch of HITs anno_job_path = os.path.join( os.getcwd(), "../../crowdsourcing/vision_annotation_task/run_annotation_with_qual.py", ) anno_cmd = ( "echo -ne '\n' | python3 " + anno_job_path + " mephisto.provider.requester_name=" + MEPHISTO_REQUESTER + " mephisto.architect.profile_name=mephisto-router-iam" ) p = subprocess.Popen(anno_cmd, shell=True, preexec_fn=os.setsid) # Keep running Mephisto until timeout or job finished while not self.check_is_timeout() and p.poll() is None: logging.info( f"Vision Annotation Job [{self._batch_id}] still running...Remaining time: {self.get_remaining_time()}" ) time.sleep(ANNOTATION_JOB_POLL_TIME) if p.poll() is None: # If mturk job is still running after timeout, terminate it logging.info(f"Manually terminate turk job after timeout...") os.killpg(os.getpgid(p.pid), signal.SIGINT) time.sleep(300) os.killpg(os.getpgid(p.pid), signal.SIGINT) time.sleep(300) os.killpg(os.getpgid(p.pid), signal.SIGKILL) # Load annotated scene data into output format logging.info(f"Retrieving data from Mephisto") units = mephisto_data_browser.get_units_for_task_name(task_name) output_scene = copy.deepcopy(self._scenes) for i in range(len(units)): data = mephisto_data_browser.get_data_from_unit(units[i]) output_scene[i]["inst_seg_tags"] = json.loads( data["data"]["outputs"]["inst_seg_tags"] ) # Upload vision annotation results to S3 and save locally logging.info( f"Uploading scene to S3 {self._batch_id}/annotated_scenes/{self._timestamp}.json" ) os.makedirs( os.path.join(HITL_TMP_DIR, f"{self._batch_id}/annotated_scenes"), exist_ok=True ) results_json = os.path.join( HITL_TMP_DIR, f"{self._batch_id}/annotated_scenes/{self._timestamp}.json" ) with open(results_json, "w") as f: json.dump(output_scene, f) with open(results_json, "rb") as f: s3.upload_fileobj( f, f"{S3_BUCKET_NAME}", f"{self._batch_id}/annotated_scenes/{self._timestamp}.json", ) logging.info(f"Uploading completed") # Delete the scene file from extra_refs and the bespoke data csv os.remove(scene_ref_filepath) os.remove(data_csv_path) except: logging.info(f"Annotation Job [{self._batch_id}] terminated unexpectedly...") self.set_finished() if __name__ == "__main__": example_scene = [ { "obj_ref": "floating blue hollow sqaure", "avatarInfo": {"pos": [1, 3, 1], "look": [0.0, 0.0]}, "agentInfo": {"pos": [3, 3, 0], "look": [0.0, 0.0]}, "inst_seg_tags": [ { "tags": ["HOLLOW_RECTANGLE"], "locs": [ [-6, 7, -2], [-6, 7, -1], [-6, 7, 0], [-6, 7, 1], [-5, 7, -2], [-5, 7, 1], [-4, 7, -2], [-4, 7, 1], [-3, 7, -2], [-3, 7, -1], [-3, 7, 0], [-3, 7, 1], ], } ], "blocks": [ [-9, 0, -9, 46], [-9, 0, -8, 46], [-9, 0, -7, 46], [-9, 0, -6, 46], [-9, 0, -5, 46], [-9, 0, -4, 46], [-9, 0, -3, 46], [-9, 0, -2, 46], [-9, 0, -1, 46], [-9, 0, 0, 46], [-9, 0, 1, 46], [-9, 0, 2, 46], [-9, 0, 3, 46], [-9, 0, 4, 46], [-9, 0, 5, 46], [-9, 0, 6, 46], [-9, 0, 7, 46], [-9, 0, 8, 46], [-9, 0, 9, 46], [-9, 0, 10, 46], [-9, 1, -9, 46], [-9, 1, -8, 46], [-9, 1, -7, 46], [-9, 1, -6, 46], [-9, 1, -5, 46], [-9, 1, -4, 46], [-9, 1, -3, 46], [-9, 1, -2, 46], [-9, 1, -1, 46], [-9, 1, 0, 46], [-9, 1, 1, 46], [-9, 1, 2, 46], [-9, 1, 3, 46], [-9, 1, 4, 46], [-9, 1, 5, 46], [-9, 1, 6, 46], [-9, 1, 7, 46], [-9, 1, 8, 46], [-9, 1, 9, 46], [-9, 1, 10, 46], [-9, 2, -9, 46], [-9, 2, -8, 46], [-9, 2, -7, 46], [-9, 2, -6, 46], [-9, 2, -5, 46], [-9, 2, -4, 46], [-9, 2, -3, 46], [-9, 2, -2, 46], [-9, 2, -1, 46], [-9, 2, 0, 46], [-9, 2, 1, 46], [-9, 2, 2, 46], [-9, 2, 3, 46], [-9, 2, 4, 46], [-9, 2, 5, 46], [-9, 2, 6, 46], [-9, 2, 7, 46], [-9, 2, 8, 46], [-9, 2, 9, 46], [-9, 2, 10, 46], [-8, 0, -9, 46], [-8, 0, -8, 46], [-8, 0, -7, 46], [-8, 0, -6, 46], [-8, 0, -5, 46], [-8, 0, -4, 46], [-8, 0, -3, 46], [-8, 0, -2, 46], [-8, 0, -1, 46], [-8, 0, 0, 46], [-8, 0, 1, 46], [-8, 0, 2, 46], [-8, 0, 3, 46], [-8, 0, 4, 46], [-8, 0, 5, 46], [-8, 0, 6, 46], [-8, 0, 7, 46], [-8, 0, 8, 46], [-8, 0, 9, 46], [-8, 0, 10, 46], [-8, 1, -9, 46], [-8, 1, -8, 46], [-8, 1, -7, 46], [-8, 1, -6, 46], [-8, 1, -5, 46], [-8, 1, -4, 46], [-8, 1, -3, 46], [-8, 1, -2, 46], [-8, 1, -1, 46], [-8, 1, 0, 46], [-8, 1, 1, 46], [-8, 1, 2, 46], [-8, 1, 3, 46], [-8, 1, 4, 46], [-8, 1, 5, 46], [-8, 1, 6, 46], [-8, 1, 7, 46], [-8, 1, 8, 46], [-8, 1, 9, 46], [-8, 1, 10, 46], [-8, 2, -9, 46], [-8, 2, -8, 46], [-8, 2, -7, 46], [-8, 2, -6, 46], [-8, 2, -5, 46], [-8, 2, -4, 46], [-8, 2, -3, 46], [-8, 2, -2, 46], [-8, 2, -1, 46], [-8, 2, 0, 46], [-8, 2, 1, 46], [-8, 2, 2, 46], [-8, 2, 3, 46], [-8, 2, 4, 46], [-8, 2, 5, 46], [-8, 2, 6, 46], [-8, 2, 7, 46], [-8, 2, 8, 46], [-8, 2, 9, 46], [-8, 2, 10, 46], [-7, 0, -9, 46], [-7, 0, -8, 46], [-7, 0, -7, 46], [-7, 0, -6, 46], [-7, 0, -5, 46], [-7, 0, -4, 46], [-7, 0, -3, 46], [-7, 0, -2, 46], [-7, 0, -1, 46], [-7, 0, 0, 46], [-7, 0, 1, 46], [-7, 0, 2, 46], [-7, 0, 3, 46], [-7, 0, 4, 46], [-7, 0, 5, 46], [-7, 0, 6, 46], [-7, 0, 7, 46], [-7, 0, 8, 46], [-7, 0, 9, 46], [-7, 0, 10, 46], [-7, 1, -9, 46], [-7, 1, -8, 46], [-7, 1, -7, 46], [-7, 1, -6, 46], [-7, 1, -5, 46], [-7, 1, -4, 46], [-7, 1, -3, 46], [-7, 1, -2, 46], [-7, 1, -1, 46], [-7, 1, 0, 46], [-7, 1, 1, 46], [-7, 1, 2, 46], [-7, 1, 3, 46], [-7, 1, 4, 46], [-7, 1, 5, 46], [-7, 1, 6, 46], [-7, 1, 7, 46], [-7, 1, 8, 46], [-7, 1, 9, 46], [-7, 1, 10, 46], [-7, 2, -9, 46], [-7, 2, -8, 46], [-7, 2, -7, 46], [-7, 2, -6, 46], [-7, 2, -5, 46], [-7, 2, -4, 46], [-7, 2, -3, 46], [-7, 2, -2, 46], [-7, 2, -1, 46], [-7, 2, 0, 46], [-7, 2, 1, 46], [-7, 2, 2, 46], [-7, 2, 3, 46], [-7, 2, 4, 46], [-7, 2, 5, 46], [-7, 2, 6, 46], [-7, 2, 7, 46], [-7, 2, 8, 46], [-7, 2, 9, 46], [-7, 2, 10, 46], [-6, 0, -9, 46], [-6, 0, -8, 46], [-6, 0, -7, 46], [-6, 0, -6, 46], [-6, 0, -5, 46], [-6, 0, -4, 46], [-6, 0, -3, 46], [-6, 0, -2, 46], [-6, 0, -1, 46], [-6, 0, 0, 46], [-6, 0, 1, 46], [-6, 0, 2, 46], [-6, 0, 3, 46], [-6, 0, 4, 46], [-6, 0, 5, 46], [-6, 0, 6, 46], [-6, 0, 7, 46], [-6, 0, 8, 46], [-6, 0, 9, 46], [-6, 0, 10, 46], [-6, 1, -9, 46], [-6, 1, -8, 46], [-6, 1, -7, 46], [-6, 1, -6, 46], [-6, 1, -5, 46], [-6, 1, -4, 46], [-6, 1, -3, 46], [-6, 1, -2, 46], [-6, 1, -1, 46], [-6, 1, 0, 46], [-6, 1, 1, 46], [-6, 1, 2, 46], [-6, 1, 3, 46], [-6, 1, 4, 46], [-6, 1, 5, 46], [-6, 1, 6, 46], [-6, 1, 7, 46], [-6, 1, 8, 46], [-6, 1, 9, 46], [-6, 1, 10, 46], [-6, 2, -9, 46], [-6, 2, -8, 46], [-6, 2, -7, 46], [-6, 2, -6, 46], [-6, 2, -5, 46], [-6, 2, -4, 46], [-6, 2, -3, 46], [-6, 2, -2, 46], [-6, 2, -1, 46], [-6, 2, 0, 46], [-6, 2, 1, 46], [-6, 2, 2, 46], [-6, 2, 3, 46], [-6, 2, 4, 46], [-6, 2, 5, 46], [-6, 2, 6, 46], [-6, 2, 7, 46], [-6, 2, 8, 46], [-6, 2, 9, 46], [-6, 2, 10, 46], [-5, 0, -9, 46], [-5, 0, -8, 46], [-5, 0, -7, 46], [-5, 0, -6, 46], [-5, 0, -5, 46], [-5, 0, -4, 46], [-5, 0, -3, 46], [-5, 0, -2, 46], [-5, 0, -1, 46], [-5, 0, 0, 46], [-5, 0, 1, 46], [-5, 0, 2, 46], [-5, 0, 3, 46], [-5, 0, 4, 46], [-5, 0, 5, 46], [-5, 0, 6, 46], [-5, 0, 7, 46], [-5, 0, 8, 46], [-5, 0, 9, 46], [-5, 0, 10, 46], [-5, 1, -9, 46], [-5, 1, -8, 46], [-5, 1, -7, 46], [-5, 1, -6, 46], [-5, 1, -5, 46], [-5, 1, -4, 46], [-5, 1, -3, 46], [-5, 1, -2, 46], [-5, 1, -1, 46], [-5, 1, 0, 46], [-5, 1, 1, 46], [-5, 1, 2, 46], [-5, 1, 3, 46], [-5, 1, 4, 46], [-5, 1, 5, 46], [-5, 1, 6, 46], [-5, 1, 7, 46], [-5, 1, 8, 46], [-5, 1, 9, 46], [-5, 1, 10, 46], [-5, 2, -9, 46], [-5, 2, -8, 46], [-5, 2, -7, 46], [-5, 2, -6, 46], [-5, 2, -5, 46], [-5, 2, -4, 46], [-5, 2, -3, 46], [-5, 2, -2, 46], [-5, 2, -1, 46], [-5, 2, 0, 46], [-5, 2, 1, 46], [-5, 2, 2, 46], [-5, 2, 3, 46], [-5, 2, 4, 46], [-5, 2, 5, 46], [-5, 2, 6, 46], [-5, 2, 7, 46], [-5, 2, 8, 46], [-5, 2, 9, 46], [-5, 2, 10, 46], [-4, 0, -9, 46], [-4, 0, -8, 46], [-4, 0, -7, 46], [-4, 0, -6, 46], [-4, 0, -5, 46], [-4, 0, -4, 46], [-4, 0, -3, 46], [-4, 0, -2, 46], [-4, 0, -1, 46], [-4, 0, 0, 46], [-4, 0, 1, 46], [-4, 0, 2, 46], [-4, 0, 3, 46], [-4, 0, 4, 46], [-4, 0, 5, 46], [-4, 0, 6, 46], [-4, 0, 7, 46], [-4, 0, 8, 46], [-4, 0, 9, 46], [-4, 0, 10, 46], [-4, 1, -9, 46], [-4, 1, -8, 46], [-4, 1, -7, 46], [-4, 1, -6, 46], [-4, 1, -5, 46], [-4, 1, -4, 46], [-4, 1, -3, 46], [-4, 1, -2, 46], [-4, 1, -1, 46], [-4, 1, 0, 46], [-4, 1, 1, 46], [-4, 1, 2, 46], [-4, 1, 3, 46], [-4, 1, 4, 46], [-4, 1, 5, 46], [-4, 1, 6, 46], [-4, 1, 7, 46], [-4, 1, 8, 46], [-4, 1, 9, 46], [-4, 1, 10, 46], [-4, 2, -9, 46], [-4, 2, -8, 46], [-4, 2, -7, 46], [-4, 2, -6, 46], [-4, 2, -5, 46], [-4, 2, -4, 46], [-4, 2, -3, 46], [-4, 2, -2, 46], [-4, 2, -1, 46], [-4, 2, 0, 46], [-4, 2, 1, 46], [-4, 2, 2, 46], [-4, 2, 3, 46], [-4, 2, 4, 46], [-4, 2, 5, 46], [-4, 2, 6, 46], [-4, 2, 7, 46], [-4, 2, 8, 46], [-4, 2, 9, 46], [-4, 2, 10, 46], [-3, 0, -9, 46], [-3, 0, -8, 46], [-3, 0, -7, 46], [-3, 0, -6, 46], [-3, 0, -5, 46], [-3, 0, -4, 46], [-3, 0, -3, 46], [-3, 0, -2, 46], [-3, 0, -1, 46], [-3, 0, 0, 46], [-3, 0, 1, 46], [-3, 0, 2, 46], [-3, 0, 3, 46], [-3, 0, 4, 46], [-3, 0, 5, 46], [-3, 0, 6, 46], [-3, 0, 7, 46], [-3, 0, 8, 46], [-3, 0, 9, 46], [-3, 0, 10, 46], [-3, 1, -9, 46], [-3, 1, -8, 46], [-3, 1, -7, 46], [-3, 1, -6, 46], [-3, 1, -5, 46], [-3, 1, -4, 46], [-3, 1, -3, 46], [-3, 1, -2, 46], [-3, 1, -1, 46], [-3, 1, 0, 46], [-3, 1, 1, 46], [-3, 1, 2, 46], [-3, 1, 3, 46], [-3, 1, 4, 46], [-3, 1, 5, 46], [-3, 1, 6, 46], [-3, 1, 7, 46], [-3, 1, 8, 46], [-3, 1, 9, 46], [-3, 1, 10, 46], [-3, 2, -9, 46], [-3, 2, -8, 46], [-3, 2, -7, 46], [-3, 2, -6, 46], [-3, 2, -5, 46], [-3, 2, -4, 46], [-3, 2, -3, 46], [-3, 2, -2, 46], [-3, 2, -1, 46], [-3, 2, 0, 46], [-3, 2, 1, 46], [-3, 2, 2, 46], [-3, 2, 3, 46], [-3, 2, 4, 46], [-3, 2, 5, 46], [-3, 2, 6, 46], [-3, 2, 7, 46], [-3, 2, 8, 46], [-3, 2, 9, 46], [-3, 2, 10, 46], [-2, 0, -9, 46], [-2, 0, -8, 46], [-2, 0, -7, 46], [-2, 0, -6, 46], [-2, 0, -5, 46], [-2, 0, -4, 46], [-2, 0, -3, 46], [-2, 0, -2, 46], [-2, 0, -1, 46], [-2, 0, 0, 46], [-2, 0, 1, 46], [-2, 0, 2, 46], [-2, 0, 3, 46], [-2, 0, 4, 46], [-2, 0, 5, 46], [-2, 0, 6, 46], [-2, 0, 7, 46], [-2, 0, 8, 46], [-2, 0, 9, 46], [-2, 0, 10, 46], [-2, 1, -9, 46], [-2, 1, -8, 46], [-2, 1, -7, 46], [-2, 1, -6, 46], [-2, 1, -5, 46], [-2, 1, -4, 46], [-2, 1, -3, 46], [-2, 1, -2, 46], [-2, 1, -1, 46], [-2, 1, 0, 46], [-2, 1, 1, 46], [-2, 1, 2, 46], [-2, 1, 3, 46], [-2, 1, 4, 46], [-2, 1, 5, 46], [-2, 1, 6, 46], [-2, 1, 7, 46], [-2, 1, 8, 46], [-2, 1, 9, 46], [-2, 1, 10, 46], [-2, 2, -9, 46], [-2, 2, -8, 46], [-2, 2, -7, 46], [-2, 2, -6, 46], [-2, 2, -5, 46], [-2, 2, -4, 46], [-2, 2, -3, 46], [-2, 2, -2, 46], [-2, 2, -1, 46], [-2, 2, 0, 46], [-2, 2, 1, 46], [-2, 2, 2, 46], [-2, 2, 3, 46], [-2, 2, 4, 46], [-2, 2, 5, 46], [-2, 2, 6, 46], [-2, 2, 7, 46], [-2, 2, 8, 46], [-2, 2, 9, 46], [-2, 2, 10, 46], [-1, 0, -9, 46], [-1, 0, -8, 46], [-1, 0, -7, 46], [-1, 0, -6, 46], [-1, 0, -5, 46], [-1, 0, -4, 46], [-1, 0, -3, 46], [-1, 0, -2, 46], [-1, 0, -1, 46], [-1, 0, 0, 46], [-1, 0, 1, 46], [-1, 0, 2, 46], [-1, 0, 3, 46], [-1, 0, 4, 46], [-1, 0, 5, 46], [-1, 0, 6, 46], [-1, 0, 7, 46], [-1, 0, 8, 46], [-1, 0, 9, 46], [-1, 0, 10, 46], [-1, 1, -9, 46], [-1, 1, -8, 46], [-1, 1, -7, 46], [-1, 1, -6, 46], [-1, 1, -5, 46], [-1, 1, -4, 46], [-1, 1, -3, 46], [-1, 1, -2, 46], [-1, 1, -1, 46], [-1, 1, 0, 46], [-1, 1, 1, 46], [-1, 1, 2, 46], [-1, 1, 3, 46], [-1, 1, 4, 46], [-1, 1, 5, 46], [-1, 1, 6, 46], [-1, 1, 7, 46], [-1, 1, 8, 46], [-1, 1, 9, 46], [-1, 1, 10, 46], [-1, 2, -9, 46], [-1, 2, -8, 46], [-1, 2, -7, 46], [-1, 2, -6, 46], [-1, 2, -5, 46], [-1, 2, -4, 46], [-1, 2, -3, 46], [-1, 2, -2, 46], [-1, 2, -1, 46], [-1, 2, 0, 46], [-1, 2, 1, 46], [-1, 2, 2, 46], [-1, 2, 3, 46], [-1, 2, 4, 46], [-1, 2, 5, 46], [-1, 2, 6, 46], [-1, 2, 7, 46], [-1, 2, 8, 46], [-1, 2, 9, 46], [-1, 2, 10, 46], [0, 0, -9, 46], [0, 0, -8, 46], [0, 0, -7, 46], [0, 0, -6, 46], [0, 0, -5, 46], [0, 0, -4, 46], [0, 0, -3, 46], [0, 0, -2, 46], [0, 0, -1, 46], [0, 0, 0, 46], [0, 0, 1, 46], [0, 0, 2, 46], [0, 0, 3, 46], [0, 0, 4, 46], [0, 0, 5, 46], [0, 0, 6, 46], [0, 0, 7, 46], [0, 0, 8, 46], [0, 0, 9, 46], [0, 0, 10, 46], [0, 1, -9, 46], [0, 1, -8, 46], [0, 1, -7, 46], [0, 1, -6, 46], [0, 1, -5, 46], [0, 1, -4, 46], [0, 1, -3, 46], [0, 1, -2, 46], [0, 1, -1, 46], [0, 1, 0, 46], [0, 1, 1, 46], [0, 1, 2, 46], [0, 1, 3, 46], [0, 1, 4, 46], [0, 1, 5, 46], [0, 1, 6, 46], [0, 1, 7, 46], [0, 1, 8, 46], [0, 1, 9, 46], [0, 1, 10, 46], [0, 2, -9, 46], [0, 2, -8, 46], [0, 2, -7, 46], [0, 2, -6, 46], [0, 2, -5, 46], [0, 2, -4, 46], [0, 2, -3, 46], [0, 2, -2, 46], [0, 2, -1, 46], [0, 2, 0, 46], [0, 2, 1, 46], [0, 2, 2, 46], [0, 2, 3, 46], [0, 2, 4, 46], [0, 2, 5, 46], [0, 2, 6, 46], [0, 2, 7, 46], [0, 2, 8, 46], [0, 2, 9, 46], [0, 2, 10, 46], [1, 0, -9, 46], [1, 0, -8, 46], [1, 0, -7, 46], [1, 0, -6, 46], [1, 0, -5, 46], [1, 0, -4, 46], [1, 0, -3, 46], [1, 0, -2, 46], [1, 0, -1, 46], [1, 0, 0, 46], [1, 0, 1, 46], [1, 0, 2, 46], [1, 0, 3, 46], [1, 0, 4, 46], [1, 0, 5, 46], [1, 0, 6, 46], [1, 0, 7, 46], [1, 0, 8, 46], [1, 0, 9, 46], [1, 0, 10, 46], [1, 1, -9, 46], [1, 1, -8, 46], [1, 1, -7, 46], [1, 1, -6, 46], [1, 1, -5, 46], [1, 1, -4, 46], [1, 1, -3, 46], [1, 1, -2, 46], [1, 1, -1, 46], [1, 1, 0, 46], [1, 1, 1, 46], [1, 1, 2, 46], [1, 1, 3, 46], [1, 1, 4, 46], [1, 1, 5, 46], [1, 1, 6, 46], [1, 1, 7, 46], [1, 1, 8, 46], [1, 1, 9, 46], [1, 1, 10, 46], [1, 2, -9, 46], [1, 2, -8, 46], [1, 2, -7, 46], [1, 2, -6, 46], [1, 2, -5, 46], [1, 2, -4, 46], [1, 2, -3, 46], [1, 2, -2, 46], [1, 2, -1, 46], [1, 2, 0, 46], [1, 2, 1, 46], [1, 2, 2, 46], [1, 2, 3, 46], [1, 2, 4, 46], [1, 2, 5, 46], [1, 2, 6, 46], [1, 2, 7, 46], [1, 2, 8, 46], [1, 2, 9, 46], [1, 2, 10, 46], [2, 0, -9, 46], [2, 0, -8, 46], [2, 0, -7, 46], [2, 0, -6, 46], [2, 0, -5, 46], [2, 0, -4, 46], [2, 0, -3, 46], [2, 0, -2, 46], [2, 0, -1, 46], [2, 0, 0, 46], [2, 0, 1, 46], [2, 0, 2, 46], [2, 0, 3, 46], [2, 0, 4, 46], [2, 0, 5, 46], [2, 0, 6, 46], [2, 0, 7, 46], [2, 0, 8, 46], [2, 0, 9, 46], [2, 0, 10, 46], [2, 1, -9, 46], [2, 1, -8, 46], [2, 1, -7, 46], [2, 1, -6, 46], [2, 1, -5, 46], [2, 1, -4, 46], [2, 1, -3, 46], [2, 1, -2, 46], [2, 1, -1, 46], [2, 1, 0, 46], [2, 1, 1, 46], [2, 1, 2, 46], [2, 1, 3, 46], [2, 1, 4, 46], [2, 1, 5, 46], [2, 1, 6, 46], [2, 1, 7, 46], [2, 1, 8, 46], [2, 1, 9, 46], [2, 1, 10, 46], [2, 2, -9, 46], [2, 2, -8, 46], [2, 2, -7, 46], [2, 2, -6, 46], [2, 2, -5, 46], [2, 2, -4, 46], [2, 2, -3, 46], [2, 2, -2, 46], [2, 2, -1, 46], [2, 2, 0, 46], [2, 2, 1, 46], [2, 2, 2, 46], [2, 2, 3, 46], [2, 2, 4, 46], [2, 2, 5, 46], [2, 2, 6, 46], [2, 2, 7, 46], [2, 2, 8, 46], [2, 2, 9, 46], [2, 2, 10, 46], [3, 0, -9, 46], [3, 0, -8, 46], [3, 0, -7, 46], [3, 0, -6, 46], [3, 0, -5, 46], [3, 0, -4, 46], [3, 0, -3, 46], [3, 0, -2, 46], [3, 0, -1, 46], [3, 0, 0, 46], [3, 0, 1, 46], [3, 0, 2, 46], [3, 0, 3, 46], [3, 0, 4, 46], [3, 0, 5, 46], [3, 0, 6, 46], [3, 0, 7, 46], [3, 0, 8, 46], [3, 0, 9, 46], [3, 0, 10, 46], [3, 1, -9, 46], [3, 1, -8, 46], [3, 1, -7, 46], [3, 1, -6, 46], [3, 1, -5, 46], [3, 1, -4, 46], [3, 1, -3, 46], [3, 1, -2, 46], [3, 1, -1, 46], [3, 1, 0, 46], [3, 1, 1, 46], [3, 1, 2, 46], [3, 1, 3, 46], [3, 1, 4, 46], [3, 1, 5, 46], [3, 1, 6, 46], [3, 1, 7, 46], [3, 1, 8, 46], [3, 1, 9, 46], [3, 1, 10, 46], [3, 2, -9, 46], [3, 2, -8, 46], [3, 2, -7, 46], [3, 2, -6, 46], [3, 2, -5, 46], [3, 2, -4, 46], [3, 2, -3, 46], [3, 2, -2, 46], [3, 2, -1, 46], [3, 2, 0, 46], [3, 2, 1, 46], [3, 2, 2, 46], [3, 2, 3, 46], [3, 2, 4, 46], [3, 2, 5, 46], [3, 2, 6, 46], [3, 2, 7, 46], [3, 2, 8, 46], [3, 2, 9, 46], [3, 2, 10, 46], [4, 0, -9, 46], [4, 0, -8, 46], [4, 0, -7, 46], [4, 0, -6, 46], [4, 0, -5, 46], [4, 0, -4, 46], [4, 0, -3, 46], [4, 0, -2, 46], [4, 0, -1, 46], [4, 0, 0, 46], [4, 0, 1, 46], [4, 0, 2, 46], [4, 0, 3, 46], [4, 0, 4, 46], [4, 0, 5, 46], [4, 0, 6, 46], [4, 0, 7, 46], [4, 0, 8, 46], [4, 0, 9, 46], [4, 0, 10, 46], [4, 1, -9, 46], [4, 1, -8, 46], [4, 1, -7, 46], [4, 1, -6, 46], [4, 1, -5, 46], [4, 1, -4, 46], [4, 1, -3, 46], [4, 1, -2, 46], [4, 1, -1, 46], [4, 1, 0, 46], [4, 1, 1, 46], [4, 1, 2, 46], [4, 1, 3, 46], [4, 1, 4, 46], [4, 1, 5, 46], [4, 1, 6, 46], [4, 1, 7, 46], [4, 1, 8, 46], [4, 1, 9, 46], [4, 1, 10, 46], [4, 2, -9, 46], [4, 2, -8, 46], [4, 2, -7, 46], [4, 2, -6, 46], [4, 2, -5, 46], [4, 2, -4, 46], [4, 2, -3, 46], [4, 2, -2, 46], [4, 2, -1, 46], [4, 2, 0, 46], [4, 2, 1, 46], [4, 2, 2, 46], [4, 2, 3, 46], [4, 2, 4, 46], [4, 2, 5, 46], [4, 2, 6, 46], [4, 2, 7, 46], [4, 2, 8, 46], [4, 2, 9, 46], [4, 2, 10, 46], [5, 0, -9, 46], [5, 0, -8, 46], [5, 0, -7, 46], [5, 0, -6, 46], [5, 0, -5, 46], [5, 0, -4, 46], [5, 0, -3, 46], [5, 0, -2, 46], [5, 0, -1, 46], [5, 0, 0, 46], [5, 0, 1, 46], [5, 0, 2, 46], [5, 0, 3, 46], [5, 0, 4, 46], [5, 0, 5, 46], [5, 0, 6, 46], [5, 0, 7, 46], [5, 0, 8, 46], [5, 0, 9, 46], [5, 0, 10, 46], [5, 1, -9, 46], [5, 1, -8, 46], [5, 1, -7, 46], [5, 1, -6, 46], [5, 1, -5, 46], [5, 1, -4, 46], [5, 1, -3, 46], [5, 1, -2, 46], [5, 1, -1, 46], [5, 1, 0, 46], [5, 1, 1, 46], [5, 1, 2, 46], [5, 1, 3, 46], [5, 1, 4, 46], [5, 1, 5, 46], [5, 1, 6, 46], [5, 1, 7, 46], [5, 1, 8, 46], [5, 1, 9, 46], [5, 1, 10, 46], [5, 2, -9, 46], [5, 2, -8, 46], [5, 2, -7, 46], [5, 2, -6, 46], [5, 2, -5, 46], [5, 2, -4, 46], [5, 2, -3, 46], [5, 2, -2, 46], [5, 2, -1, 46], [5, 2, 0, 46], [5, 2, 1, 46], [5, 2, 2, 46], [5, 2, 3, 46], [5, 2, 4, 46], [5, 2, 5, 46], [5, 2, 6, 46], [5, 2, 7, 46], [5, 2, 8, 46], [5, 2, 9, 46], [5, 2, 10, 46], [6, 0, -9, 46], [6, 0, -8, 46], [6, 0, -7, 46], [6, 0, -6, 46], [6, 0, -5, 46], [6, 0, -4, 46], [6, 0, -3, 46], [6, 0, -2, 46], [6, 0, -1, 46], [6, 0, 0, 46], [6, 0, 1, 46], [6, 0, 2, 46], [6, 0, 3, 46], [6, 0, 4, 46], [6, 0, 5, 46], [6, 0, 6, 46], [6, 0, 7, 46], [6, 0, 8, 46], [6, 0, 9, 46], [6, 0, 10, 46], [6, 1, -9, 46], [6, 1, -8, 46], [6, 1, -7, 46], [6, 1, -6, 46], [6, 1, -5, 46], [6, 1, -4, 46], [6, 1, -3, 46], [6, 1, -2, 46], [6, 1, -1, 46], [6, 1, 0, 46], [6, 1, 1, 46], [6, 1, 2, 46], [6, 1, 3, 46], [6, 1, 4, 46], [6, 1, 5, 46], [6, 1, 6, 46], [6, 1, 7, 46], [6, 1, 8, 46], [6, 1, 9, 46], [6, 1, 10, 46], [6, 2, -9, 46], [6, 2, -8, 46], [6, 2, -7, 46], [6, 2, -6, 46], [6, 2, -5, 46], [6, 2, -4, 46], [6, 2, -3, 46], [6, 2, -2, 46], [6, 2, -1, 46], [6, 2, 0, 46], [6, 2, 1, 46], [6, 2, 2, 46], [6, 2, 3, 46], [6, 2, 4, 46], [6, 2, 5, 46], [6, 2, 6, 46], [6, 2, 7, 46], [6, 2, 8, 46], [6, 2, 9, 46], [6, 2, 10, 46], [7, 0, -9, 46], [7, 0, -8, 46], [7, 0, -7, 46], [7, 0, -6, 46], [7, 0, -5, 46], [7, 0, -4, 46], [7, 0, -3, 46], [7, 0, -2, 46], [7, 0, -1, 46], [7, 0, 0, 46], [7, 0, 1, 46], [7, 0, 2, 46], [7, 0, 3, 46], [7, 0, 4, 46], [7, 0, 5, 46], [7, 0, 6, 46], [7, 0, 7, 46], [7, 0, 8, 46], [7, 0, 9, 46], [7, 0, 10, 46], [7, 1, -9, 46], [7, 1, -8, 46], [7, 1, -7, 46], [7, 1, -6, 46], [7, 1, -5, 46], [7, 1, -4, 46], [7, 1, -3, 46], [7, 1, -2, 46], [7, 1, -1, 46], [7, 1, 0, 46], [7, 1, 1, 46], [7, 1, 2, 46], [7, 1, 3, 46], [7, 1, 4, 46], [7, 1, 5, 46], [7, 1, 6, 46], [7, 1, 7, 46], [7, 1, 8, 46], [7, 1, 9, 46], [7, 1, 10, 46], [7, 2, -9, 46], [7, 2, -8, 46], [7, 2, -7, 46], [7, 2, -6, 46], [7, 2, -5, 46], [7, 2, -4, 46], [7, 2, -3, 46], [7, 2, -2, 46], [7, 2, -1, 46], [7, 2, 0, 46], [7, 2, 1, 46], [7, 2, 2, 46], [7, 2, 3, 46], [7, 2, 4, 46], [7, 2, 5, 46], [7, 2, 6, 46], [7, 2, 7, 46], [7, 2, 8, 46], [7, 2, 9, 46], [7, 2, 10, 46], [8, 0, -9, 46], [8, 0, -8, 46], [8, 0, -7, 46], [8, 0, -6, 46], [8, 0, -5, 46], [8, 0, -4, 46], [8, 0, -3, 46], [8, 0, -2, 46], [8, 0, -1, 46], [8, 0, 0, 46], [8, 0, 1, 46], [8, 0, 2, 46], [8, 0, 3, 46], [8, 0, 4, 46], [8, 0, 5, 46], [8, 0, 6, 46], [8, 0, 7, 46], [8, 0, 8, 46], [8, 0, 9, 46], [8, 0, 10, 46], [8, 1, -9, 46], [8, 1, -8, 46], [8, 1, -7, 46], [8, 1, -6, 46], [8, 1, -5, 46], [8, 1, -4, 46], [8, 1, -3, 46], [8, 1, -2, 46], [8, 1, -1, 46], [8, 1, 0, 46], [8, 1, 1, 46], [8, 1, 2, 46], [8, 1, 3, 46], [8, 1, 4, 46], [8, 1, 5, 46], [8, 1, 6, 46], [8, 1, 7, 46], [8, 1, 8, 46], [8, 1, 9, 46], [8, 1, 10, 46], [8, 2, -9, 46], [8, 2, -8, 46], [8, 2, -7, 46], [8, 2, -6, 46], [8, 2, -5, 46], [8, 2, -4, 46], [8, 2, -3, 46], [8, 2, -2, 46], [8, 2, -1, 46], [8, 2, 0, 46], [8, 2, 1, 46], [8, 2, 2, 46], [8, 2, 3, 46], [8, 2, 4, 46], [8, 2, 5, 46], [8, 2, 6, 46], [8, 2, 7, 46], [8, 2, 8, 46], [8, 2, 9, 46], [8, 2, 10, 46], [9, 0, -9, 46], [9, 0, -8, 46], [9, 0, -7, 46], [9, 0, -6, 46], [9, 0, -5, 46], [9, 0, -4, 46], [9, 0, -3, 46], [9, 0, -2, 46], [9, 0, -1, 46], [9, 0, 0, 46], [9, 0, 1, 46], [9, 0, 2, 46], [9, 0, 3, 46], [9, 0, 4, 46], [9, 0, 5, 46], [9, 0, 6, 46], [9, 0, 7, 46], [9, 0, 8, 46], [9, 0, 9, 46], [9, 0, 10, 46], [9, 1, -9, 46], [9, 1, -8, 46], [9, 1, -7, 46], [9, 1, -6, 46], [9, 1, -5, 46], [9, 1, -4, 46], [9, 1, -3, 46], [9, 1, -2, 46], [9, 1, -1, 46], [9, 1, 0, 46], [9, 1, 1, 46], [9, 1, 2, 46], [9, 1, 3, 46], [9, 1, 4, 46], [9, 1, 5, 46], [9, 1, 6, 46], [9, 1, 7, 46], [9, 1, 8, 46], [9, 1, 9, 46], [9, 1, 10, 46], [9, 2, -9, 46], [9, 2, -8, 46], [9, 2, -7, 46], [9, 2, -6, 46], [9, 2, -5, 46], [9, 2, -4, 46], [9, 2, -3, 46], [9, 2, -2, 46], [9, 2, -1, 46], [9, 2, 0, 46], [9, 2, 1, 46], [9, 2, 2, 46], [9, 2, 3, 46], [9, 2, 4, 46], [9, 2, 5, 46], [9, 2, 6, 46], [9, 2, 7, 46], [9, 2, 8, 46], [9, 2, 9, 46], [9, 2, 10, 46], [10, 0, -9, 46], [10, 0, -8, 46], [10, 0, -7, 46], [10, 0, -6, 46], [10, 0, -5, 46], [10, 0, -4, 46], [10, 0, -3, 46], [10, 0, -2, 46], [10, 0, -1, 46], [10, 0, 0, 46], [10, 0, 1, 46], [10, 0, 2, 46], [10, 0, 3, 46], [10, 0, 4, 46], [10, 0, 5, 46], [10, 0, 6, 46], [10, 0, 7, 46], [10, 0, 8, 46], [10, 0, 9, 46], [10, 0, 10, 46], [10, 1, -9, 46], [10, 1, -8, 46], [10, 1, -7, 46], [10, 1, -6, 46], [10, 1, -5, 46], [10, 1, -4, 46], [10, 1, -3, 46], [10, 1, -2, 46], [10, 1, -1, 46], [10, 1, 0, 46], [10, 1, 1, 46], [10, 1, 2, 46], [10, 1, 3, 46], [10, 1, 4, 46], [10, 1, 5, 46], [10, 1, 6, 46], [10, 1, 7, 46], [10, 1, 8, 46], [10, 1, 9, 46], [10, 1, 10, 46], [10, 2, -9, 46], [10, 2, -8, 46], [10, 2, -7, 46], [10, 2, -6, 46], [10, 2, -5, 46], [10, 2, -4, 46], [10, 2, -3, 46], [10, 2, -2, 46], [10, 2, -1, 46], [10, 2, 0, 46], [10, 2, 1, 46], [10, 2, 2, 46], [10, 2, 3, 46], [10, 2, 4, 46], [10, 2, 5, 46], [10, 2, 6, 46], [10, 2, 7, 46], [10, 2, 8, 46], [10, 2, 9, 46], [10, 2, 10, 46], [-6, 7, -2, 57], [-6, 7, -1, 57], [-6, 7, 0, 57], [-6, 7, 1, 57], [-5, 7, -2, 57], [-5, 7, 1, 57], [-4, 7, -2, 57], [-4, 7, 1, 57], [-3, 7, -2, 57], [-3, 7, -1, 57], [-3, 7, 0, 57], [-3, 7, 1, 57], ], } ] aj = VisionAnnotationJob(202201242254123, "000", example_scene, 300) aj.run()
32.892782
123
0.229729
7ed0b6e3a765c75a6f2595e28e43b8f25bbf87ee
9,141
py
Python
lib/models/dran_att.py
hongrui16/naic2020_B
9321bdd19e7d2d47ac9c711eb8437cd364e25f44
[ "MIT" ]
null
null
null
lib/models/dran_att.py
hongrui16/naic2020_B
9321bdd19e7d2d47ac9c711eb8437cd364e25f44
[ "MIT" ]
null
null
null
lib/models/dran_att.py
hongrui16/naic2020_B
9321bdd19e7d2d47ac9c711eb8437cd364e25f44
[ "MIT" ]
null
null
null
from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np import torch import torch.nn as nn import math # from network.utils import BNReLU from torch.nn.functional import upsample from torch.nn import Module, Sequential, Conv2d, ReLU,AdaptiveMaxPool2d, AdaptiveAvgPool2d, \ AvgPool2d, MaxPool2d, Parameter, Linear, Sigmoid, Softmax from torch.nn import functional as F from torch.autograd import Variable up_kwargs = {'mode': 'bilinear', 'align_corners': True} __all__ = ['CPAMEnc', 'CPAMDec','CCAMDec', 'CLGD'] class CPAMEnc(Module): """ CPAM encoding module """ def __init__(self, in_channels, norm_layer): super(CPAMEnc, self).__init__() self.pool1 = AdaptiveAvgPool2d(1) self.pool2 = AdaptiveAvgPool2d(2) self.pool3 = AdaptiveAvgPool2d(3) self.pool4 = AdaptiveAvgPool2d(6) self.conv1 = Sequential(Conv2d(in_channels, in_channels, 1, bias=False), norm_layer(in_channels), ReLU(True)) self.conv2 = Sequential(Conv2d(in_channels, in_channels, 1, bias=False), norm_layer(in_channels), ReLU(True)) self.conv3 = Sequential(Conv2d(in_channels, in_channels, 1, bias=False), norm_layer(in_channels), ReLU(True)) self.conv4 = Sequential(Conv2d(in_channels, in_channels, 1, bias=False), norm_layer(in_channels), ReLU(True)) def forward(self, x): b, c, h, w = x.size() feat1 = self.conv1(self.pool1(x)).view(b,c,-1) feat2 = self.conv2(self.pool2(x)).view(b,c,-1) feat3 = self.conv3(self.pool3(x)).view(b,c,-1) feat4 = self.conv4(self.pool4(x)).view(b,c,-1) return torch.cat((feat1, feat2, feat3, feat4), 2) class CPAMDec(Module): """ CPAM decoding module """ def __init__(self,in_channels): super(CPAMDec,self).__init__() self.softmax = Softmax(dim=-1) self.scale = Parameter(torch.zeros(1)) self.conv_query = Conv2d(in_channels = in_channels , out_channels = in_channels//4, kernel_size= 1) # query_conv2 self.conv_key = Linear(in_channels, in_channels//4) # key_conv2 self.conv_value = Linear(in_channels, in_channels) # value2 def forward(self, x,y): """ inputs : x : input feature(N,C,H,W) y:gathering centers(N,K,M) returns : out : compact position attention feature attention map: (H*W)*M """ m_batchsize,C,width ,height = x.size() m_batchsize,K,M = y.size() proj_query = self.conv_query(x).view(m_batchsize,-1,width*height).permute(0,2,1)#BxNxd proj_key = self.conv_key(y).view(m_batchsize,K,-1).permute(0,2,1)#BxdxK energy = torch.bmm(proj_query,proj_key)#BxNxK attention = self.softmax(energy) #BxNxk proj_value = self.conv_value(y).permute(0,2,1) #BxCxK out = torch.bmm(proj_value,attention.permute(0,2,1))#BxCxN out = out.view(m_batchsize,C,width,height) out = self.scale*out + x return out class CCAMDec(Module): """ CCAM decoding module """ def __init__(self): super(CCAMDec,self).__init__() self.softmax = Softmax(dim=-1) self.scale = Parameter(torch.zeros(1)) def forward(self, x,y): """ inputs : x : input feature(N,C,H,W) y:gathering centers(N,K,H,W) returns : out : compact channel attention feature attention map: K*C """ m_batchsize,C,width ,height = x.size() x_reshape =x.view(m_batchsize,C,-1) B,K,W,H = y.size() y_reshape =y.view(B,K,-1) proj_query = x_reshape #BXC1XN proj_key = y_reshape.permute(0,2,1) #BX(N)XC energy = torch.bmm(proj_query,proj_key) #BXC1XC energy_new = torch.max(energy,-1,keepdim=True)[0].expand_as(energy)-energy attention = self.softmax(energy_new) proj_value = y.view(B,K,-1) #BCN out = torch.bmm(attention,proj_value) #BC1N out = out.view(m_batchsize,C,width ,height) out = x + self.scale*out return out class CLGD(Module): """ Cross-level Gating Decoder """ def __init__(self, in_channels, out_channels, norm_layer): super(CLGD, self).__init__() inter_channels= 32 self.conv_low = nn.Sequential(nn.Conv2d(48, inter_channels, 3, padding=1, bias=False), norm_layer(inter_channels), nn.ReLU()) #skipconv self.conv_cat = nn.Sequential(nn.Conv2d(in_channels+inter_channels, in_channels, 3, padding=1, bias=False), norm_layer(in_channels), nn.ReLU()) # fusion1 self.conv_att = nn.Sequential(nn.Conv2d(in_channels+inter_channels, 1, 1), nn.Sigmoid()) # att self.conv_out = nn.Sequential(nn.Conv2d(in_channels, out_channels, 3, padding=1, bias=False), norm_layer(out_channels), nn.ReLU()) # fusion2 self.gamma = nn.Parameter(torch.ones(1)) def forward(self, x,y): """ inputs : x : low level feature(N,C,H,W) y:high level feature(N,C,H,W) returns : out : cross-level gating decoder feature """ low_lvl_feat = self.conv_low(x) high_lvl_feat = y feat_cat = torch.cat([low_lvl_feat,high_lvl_feat],1) low_lvl_feat_refine = self.gamma*self.conv_att(feat_cat)*low_lvl_feat low_high_feat = torch.cat([low_lvl_feat_refine,high_lvl_feat],1) low_high_feat = self.conv_cat(low_high_feat) low_high_feat = self.conv_out(low_high_feat) return low_high_feat class DranHead(nn.Module): def __init__(self, in_channels, norm_layer): super(DranHead, self).__init__() inter_channels = in_channels // 4 ## Convs or modules for CPAM self.conv_cpam_b = nn.Sequential(nn.Conv2d(in_channels, inter_channels, 3, padding=1, bias=False), norm_layer(inter_channels), nn.ReLU()) # conv5_s self.cpam_enc = CPAMEnc(inter_channels, norm_layer) # en_s self.cpam_dec = CPAMDec(inter_channels) # de_s self.conv_cpam_e = nn.Sequential(nn.Conv2d(inter_channels, inter_channels, 3, padding=1, bias=False), norm_layer(inter_channels), nn.ReLU()) # conv52 ## Convs or modules for CCAM self.conv_ccam_b = nn.Sequential(nn.Conv2d(in_channels, inter_channels, 3, padding=1, bias=False), norm_layer(inter_channels), nn.ReLU()) # conv5_c self.ccam_enc = nn.Sequential(nn.Conv2d(inter_channels, inter_channels//16, 1, bias=False), norm_layer(inter_channels//16), nn.ReLU()) # conv51_c self.ccam_dec = CCAMDec() # de_c self.conv_ccam_e = nn.Sequential(nn.Conv2d(inter_channels, inter_channels, 3, padding=1, bias=False), norm_layer(inter_channels), nn.ReLU()) # conv51 ## Fusion conv self.conv_cat = nn.Sequential(nn.Conv2d(inter_channels*2, inter_channels//2, 3, padding=1, bias=False), norm_layer(inter_channels//2), nn.ReLU()) # conv_f ## Cross-level Gating Decoder(CLGD) self.clgd = CLGD(inter_channels//2,inter_channels//2,norm_layer) self.output_channels = inter_channels//2 def forward(self, feature,high_resolution_feature): ## Compact Channel Attention Module(CCAM) ccam_b = self.conv_ccam_b(feature) ccam_f = self.ccam_enc(ccam_b) ccam_feat = self.ccam_dec(ccam_b,ccam_f) ## Compact Spatial Attention Module(CPAM) cpam_b = self.conv_cpam_b(feature) cpam_f = self.cpam_enc(cpam_b).permute(0,2,1)#BKD cpam_feat = self.cpam_dec(cpam_b,cpam_f) ## Fuse two modules ccam_feat = self.conv_ccam_e(ccam_feat) cpam_feat = self.conv_cpam_e(cpam_feat) feat_sum = self.conv_cat(torch.cat([cpam_feat,ccam_feat],1)) ## Cross-level Gating Decoder(CLGD) final_feat = self.clgd(high_resolution_feature, feat_sum) return final_feat
40.991031
122
0.565146
95e7ca09954789b9c13b23e600b2407359792321
18,340
py
Python
nbgrader/apps/dbapp.py
aliniknejad/nbgrader
124095e48a840ac2af6e3178eab7ed32089f3cd2
[ "BSD-3-Clause" ]
1
2019-10-02T11:06:32.000Z
2019-10-02T11:06:32.000Z
nbgrader/apps/dbapp.py
aliniknejad/nbgrader
124095e48a840ac2af6e3178eab7ed32089f3cd2
[ "BSD-3-Clause" ]
4
2019-03-02T11:49:46.000Z
2020-09-07T10:17:52.000Z
nbgrader/apps/dbapp.py
aliniknejad/nbgrader
124095e48a840ac2af6e3178eab7ed32089f3cd2
[ "BSD-3-Clause" ]
2
2019-05-31T08:53:48.000Z
2019-05-31T09:42:26.000Z
#!/usr/bin/env python # coding: utf-8 import csv import os import sys import shutil from textwrap import dedent from traitlets import default, Unicode, Bool, List from datetime import datetime from . import NbGrader from ..api import Gradebook, MissingEntry, Student, Assignment from ..exchange import ExchangeList from .. import dbutil aliases = { 'log-level': 'Application.log_level', 'course-dir': 'CourseDirectory.root', 'db': 'CourseDirectory.db_url' } flags = {} student_add_aliases = {} student_add_aliases.update(aliases) student_add_aliases.update({ 'last-name': 'DbStudentAddApp.last_name', 'first-name': 'DbStudentAddApp.first_name', 'email': 'DbStudentAddApp.email', 'lms-user-id': 'DbStudentAddApp.lms_user_id', }) class DbBaseApp(NbGrader): def start(self): if sys.platform != 'win32': lister = ExchangeList(coursedir=self.coursedir, parent=self) self.course_id = self.coursedir.course_id else: self.course_id = '' super(DbBaseApp, self).start() class DbStudentAddApp(DbBaseApp): name = u'nbgrader-db-student-add' description = u'Add a student to the nbgrader database' aliases = student_add_aliases flags = flags last_name = Unicode( None, allow_none=True, help="The last name of the student" ).tag(config=True) first_name = Unicode( None, allow_none=True, help="The first name of the student" ).tag(config=True) email = Unicode( None, allow_none=True, help="The email of the student" ).tag(config=True) lms_user_id = Unicode( None, allow_none=True, help="The LMS user id of the student" ).tag(config=True) def start(self): super(DbStudentAddApp, self).start() if len(self.extra_args) != 1: self.fail("No student id provided.") student_id = self.extra_args[0] student = { "last_name": self.last_name, "first_name": self.first_name, "email": self.email, "lms_user_id": self.lms_user_id } self.log.info("Creating/updating student with ID '%s': %s", student_id, student) with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: gb.update_or_create_student(student_id, **student) student_remove_flags = {} student_remove_flags.update(flags) student_remove_flags.update({ 'force': ( {'DbStudentRemoveApp': {'force': True}}, "Complete the operation, even if it means grades will be deleted." ), 'f': ( {'DbStudentRemoveApp': {'force': True}}, "Complete the operation, even if it means grades will be deleted." ), }) class DbStudentRemoveApp(DbBaseApp): name = u'nbgrader-db-student-remove' description = u'Remove a student from the nbgrader database' aliases = aliases flags = student_remove_flags force = Bool(False, help="Confirm operation if it means grades will be deleted.").tag(config=True) def start(self): super(DbStudentRemoveApp, self).start() if len(self.extra_args) != 1: self.fail("No student id provided.") student_id = self.extra_args[0] with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: try: student = gb.find_student(student_id) except MissingEntry: self.fail("No such student: '%s'", student_id) if len(student.submissions) > 0: if self.force: self.log.warning("Removing associated grades") else: self.log.warning("!!! There are grades in the database for student '%s'.", student_id) self.log.warning("!!! Removing this student will also remove these grades.") self.fail("!!! If you are SURE this is what you want to do, rerun with --force.") self.log.info("Removing student with ID '%s'", student_id) gb.remove_student(student_id) class DbGenericImportApp(DbBaseApp): aliases = aliases flags = flags expected_keys = List(help="These are the keys expected by the database") excluded_keys = List([], help=dedent( """ These are the column names in database table that should not be imported via a csv file. """).strip()) def db_update_method_name(self): """ Name of the update method used on the Gradebook for this import app. Arguments --------- instance_id: string Identifies which instance you are updating based on self.primary_key instance: dictionary Contents for the update from the parsed csv rows; unpacked as kwargs """ raise NotImplementedError name = u"" description = u"" @default('examples') def examples_default(self): keys = [x for x in self.expected_keys if not(x == self.primary_key or x in self.excluded_keys)] example_string = dedent( """ This command imports a CSV file into the database. The columns of the CSV file must match the names of the columns in the database. All columns are optional, except the columns corresponding to the unique identifier of the {}. The keys/column names that are expected are the following: - {} (required) """.format(self.table_class.__name__, self.primary_key)).strip() for key in keys: example_string += "\n - {}".format(key) return example_string @property def table_class(self): raise NotImplementedError @property def primary_key_default(self): """ The key for the instance_id passed to the get_db_update_method. """ raise NotImplementedError @default("expected_keys") def expected_keys_default(self): return self.table_class.__table__.c.keys() def start(self): super(DbGenericImportApp, self).start() if len(self.extra_args) != 1: self.fail("Path to CSV file not provided.") path = self.extra_args[0] if not os.path.exists(path): self.fail("No such file: '%s'", path) self.log.info("Importing from: '%s'", path) with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: with open(path, 'r') as fh: reader = csv.DictReader(fh) reader.fieldnames = self._preprocess_keys(reader.fieldnames) for row in reader: if self.primary_key not in row: self.fail("Malformatted CSV file: must contain a column for '%s'" % self.primary_key) # make sure all the keys are actually allowed in the database, # and that any empty strings are parsed as None instance = {} for key, val in row.items(): if key not in self.expected_keys: continue if val == '': instance[key] = None else: instance[key] = val instance_primary_key = instance.pop(self.primary_key) self.log.info("Creating/updating %s with %s '%s': %s", self.table_class.__name__, self.primary_key, instance_primary_key, instance) db_update_method = getattr(gb, self.db_update_method_name) db_update_method(instance_primary_key, **instance) def _preprocess_keys(self, keys): """ Helper function for preprocessing keys """ proposed_keys = [key.strip() for key in keys] unknown_keys = [k for k in proposed_keys if k not in self.expected_keys] if unknown_keys: self.log.info("Unknown keys in csv: '%s'", (', '.join(unknown_keys[:-1]) + 'and ' + unknown_keys[-1])) return proposed_keys class DbStudentImportApp(DbGenericImportApp): name = u'nbgrader-db-student-import' description = u'Import students into the nbgrader database from a CSV file' @property def table_class(self): return Student @property def primary_key(self): return "id" @property def db_update_method_name(self): return "update_or_create_student" class DbStudentListApp(DbBaseApp): name = u'nbgrader-db-student-list' description = u'List students in the nbgrader database' aliases = aliases flags = flags def start(self): super(DbStudentListApp, self).start() with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: print("There are %d students in the database:" % len(gb.students)) for student in gb.students: print("%s (%s, %s) -- %s, %s" % (student.id, student.last_name, student.first_name, student.email, student.lms_user_id)) assignment_add_aliases = {} assignment_add_aliases.update(aliases) assignment_add_aliases.update({ 'duedate': 'DbAssignmentAddApp.duedate', }) class DbAssignmentAddApp(DbBaseApp): name = u'nbgrader-db-assignment-add' description = u'Add an assignment to the nbgrader database' aliases = assignment_add_aliases flags = flags duedate = Unicode( None, allow_none=True, help="The due date of the assignment" ).tag(config=True) def start(self): super(DbAssignmentAddApp, self).start() if len(self.extra_args) != 1: self.fail("No assignment id provided.") assignment_id = self.extra_args[0] assignment = { "duedate": self.duedate } self.log.info("Creating/updating assignment with ID '%s': %s", assignment_id, assignment) with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: gb.update_or_create_assignment(assignment_id, **assignment) assignment_remove_flags = {} assignment_remove_flags.update(flags) assignment_remove_flags.update({ 'force': ( {'DbAssignmentRemoveApp': {'force': True}}, "Complete the operation, even if it means grades will be deleted." ), 'f': ( {'DbAssignmentRemoveApp': {'force': True}}, "Complete the operation, even if it means grades will be deleted." ), }) class DbAssignmentRemoveApp(DbBaseApp): name = u'nbgrader-db-assignment-remove' description = u'Remove an assignment from the nbgrader database' aliases = aliases flags = assignment_remove_flags force = Bool(False, help="Confirm operation if it means grades will be deleted.").tag(config=True) def start(self): super(DbAssignmentRemoveApp, self).start() if len(self.extra_args) != 1: self.fail("No assignment id provided.") assignment_id = self.extra_args[0] with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: try: assignment = gb.find_assignment(assignment_id) except MissingEntry: self.fail("No such assignment: '%s'", assignment_id) if len(assignment.submissions) > 0: if self.force: self.log.warning("Removing associated grades") else: self.log.warning("!!! There are grades in the database for assignment '%s'.", assignment_id) self.log.warning("!!! Removing this assignment will also remove these grades.") self.fail("!!! If you are SURE this is what you want to do, rerun with --force.") self.log.info("Removing assignment with ID '%s'", assignment_id) gb.remove_assignment(assignment_id) class DbAssignmentImportApp(DbGenericImportApp): name = u'nbgrader-db-assignment-import' description = u'Import assignments into the nbgrader database from a CSV file' def __init__(self, *args, **kwargs): super(DbAssignmentImportApp, self).__init__(*args, **kwargs) self.excluded_keys = ["id"] @property def table_class(self): return Assignment @property def primary_key(self): return "name" @property def db_update_method_name(self): return "update_or_create_assignment" class DbAssignmentListApp(DbBaseApp): name = u'nbgrader-db-assignment-list' description = u'List assignments int the nbgrader database' aliases = aliases flags = flags def start(self): super(DbAssignmentListApp, self).start() with Gradebook(self.coursedir.db_url, self.course_id, self.authenticator) as gb: print("There are %d assignments in the database:" % len(gb.assignments)) for assignment in gb.assignments: print("%s (due: %s)" % (assignment.name, assignment.duedate)) for notebook in assignment.notebooks: print(" - %s" % notebook.name) class DbStudentApp(DbBaseApp): name = u'nbgrader-db-student' description = u'Modify or list students in the nbgrader database' subcommands = { "add": (DbStudentAddApp, "Add a student to the database"), "remove": (DbStudentRemoveApp, "Remove a student from the database"), "list": (DbStudentListApp, "List students in the database"), "import": (DbStudentImportApp, "Import students into the database from a file") } @default("classes") def _classes_default(self): classes = super(DbStudentApp, self)._classes_default() # include all the apps that have configurable options for _, (app, _) in self.subcommands.items(): if len(app.class_traits(config=True)) > 0: classes.append(app) return classes def start(self): # check: is there a subapp given? if self.subapp is None: print("No db command given (run with --help for options). List of subcommands:\n") self.print_subcommands() # This starts subapps super(DbStudentApp, self).start() class DbAssignmentApp(DbBaseApp): name = u'nbgrader-db-assignment' description = u'Modify or list assignments in the nbgrader database' subcommands = { "add": (DbAssignmentAddApp, "Add an assignment to the database"), "remove": (DbAssignmentRemoveApp, "Remove an assignment from the database"), "list": (DbAssignmentListApp, "List assignments in the database"), "import": (DbAssignmentImportApp, "Import assignments into the database from a file") } @default("classes") def _classes_default(self): classes = super(DbAssignmentApp, self)._classes_default() # include all the apps that have configurable options for _, (app, _) in self.subcommands.items(): if len(app.class_traits(config=True)) > 0: classes.append(app) return classes def start(self): # check: is there a subapp given? if self.subapp is None: print("No assignment command given. List of subcommands:\n") for key, (app, desc) in self.subcommands.items(): print(" {}\n{}\n".format(key, desc)) # This starts subapps super(DbAssignmentApp, self).start() class DbUpgradeApp(DbBaseApp): """Based on the `jupyterhub upgrade-db` command found in jupyterhub.app.UpgradeDB""" name = u'nbgrader-db-upgrade' description = u'Upgrade the database schema to the latest version' def _backup_db_file(self, db_file): """Backup a database file""" if not os.path.exists(db_file): with Gradebook("sqlite:///{}".format(db_file), self.course_id, self.authenticator): pass timestamp = datetime.now().strftime('.%Y-%m-%d-%H%M%S.%f') backup_db_file = db_file + timestamp if os.path.exists(backup_db_file): self.fail("backup db file already exists: %s" % backup_db_file) self.log.info("Backing up %s => %s", db_file, backup_db_file) shutil.copy(db_file, backup_db_file) def start(self): super(DbUpgradeApp, self).start() if (self.coursedir.db_url.startswith('sqlite:///')): db_file = self.coursedir.db_url.split(':///', 1)[1] self._backup_db_file(db_file) self.log.info("Upgrading %s", self.coursedir.db_url) dbutil.upgrade(self.coursedir.db_url) class DbApp(DbBaseApp): name = u'nbgrader-db' description = u'Perform operations on the nbgrader database' subcommands = dict( student=( DbStudentApp, dedent( """ Add, remove, or list students in the nbgrader database. """ ).strip() ), assignment=( DbAssignmentApp, dedent( """ Add, remove, or list assignments in the nbgrader database. """ ).strip() ), upgrade=( DbUpgradeApp, dedent( """ Upgrade database schema to latest version. """ ).strip() ), ) @default("classes") def _classes_default(self): classes = super(DbApp, self)._classes_default() # include all the apps that have configurable options for _, (app, _) in self.subcommands.items(): if len(app.class_traits(config=True)) > 0: classes.append(app) return classes def start(self): # check: is there a subapp given? if self.subapp is None: print("No db command given (run with --help for options). List of subcommands:\n") self.print_subcommands() # This starts subapps super(DbApp, self).start()
32.006981
136
0.604198
80040f2f694d2daa705c586a68289f3df217d4b4
5,055
py
Python
fsdet/utils/video_visualizer.py
gist-ailab/FSCE
94ba3f4737d5e40af795db49b8c6914526c912b6
[ "Apache-2.0" ]
189
2021-03-13T11:42:42.000Z
2022-03-31T13:11:52.000Z
fsdet/utils/video_visualizer.py
gist-ailab/FSCE
94ba3f4737d5e40af795db49b8c6914526c912b6
[ "Apache-2.0" ]
56
2021-03-18T12:02:28.000Z
2022-03-24T15:12:57.000Z
fsdet/utils/video_visualizer.py
gist-ailab/FSCE
94ba3f4737d5e40af795db49b8c6914526c912b6
[ "Apache-2.0" ]
35
2021-03-15T08:40:19.000Z
2022-03-17T07:56:45.000Z
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved import numpy as np import pycocotools.mask as mask_util from fsdet.utils.visualizer import ( ColorMode, Visualizer, _create_text_labels, ) from .colormap import random_color class _DetectedInstance: """ Used to store data about detected objects in video frame, in order to transfer color to objects in the future frames. Attributes: label (int): bbox (tuple[float]): color (tuple[float]): RGB colors in range (0, 1) ttl (int): time-to-live for the instance. For example, if ttl=2, the instance color can be transferred to objects in the next two frames. """ __slots__ = ["label", "bbox", "color", "ttl"] def __init__(self, label, bbox, color, ttl): self.label = label self.bbox = bbox self.color = color self.ttl = ttl class VideoVisualizer: def __init__(self, metadata, instance_mode=ColorMode.IMAGE): """ Args: metadata (MetadataCatalog): image metadata. """ self.metadata = metadata self._old_instances = [] assert instance_mode in [ ColorMode.IMAGE, ColorMode.IMAGE_BW, ], "Other mode not supported yet." self._instance_mode = instance_mode def draw_instance_predictions(self, frame, predictions): """ Draw instance-level prediction results on an image. Args: frame (ndarray): an RGB image of shape (H, W, C), in the range [0, 255]. predictions (Instances): the output of an instance detection model. Following fields will be used to draw: "pred_boxes", "pred_classes", "scores". Returns: output (VisImage): image object with visualizations. """ frame_visualizer = Visualizer(frame, self.metadata) num_instances = len(predictions) if num_instances == 0: return frame_visualizer.output boxes = predictions.pred_boxes.tensor.numpy() if predictions.has("pred_boxes") else None scores = predictions.scores if predictions.has("scores") else None classes = predictions.pred_classes.numpy() if predictions.has("pred_classes") else None detected = [ _DetectedInstance(classes[i], boxes[i], color=None, ttl=8) for i in range(num_instances) ] colors = self._assign_colors(detected) labels = _create_text_labels(classes, scores, self.metadata.get("thing_classes", None)) if self._instance_mode == ColorMode.IMAGE_BW: # any() returns uint8 tensor frame_visualizer.output.img = frame_visualizer._create_grayscale_image() alpha = 0.3 else: alpha = 0.5 frame_visualizer.overlay_instances( boxes=boxes, # boxes are a bit distracting labels=labels, assigned_colors=colors, alpha=alpha, ) return frame_visualizer.output def _assign_colors(self, instances): """ Naive tracking heuristics to assign same color to the same instance, will update the internal state of tracked instances. Returns: list[tuple[float]]: list of colors. """ # Compute iou with boxes: is_crowd = np.zeros((len(instances),), dtype=np.bool) boxes_old = [x.bbox for x in self._old_instances] boxes_new = [x.bbox for x in instances] ious = mask_util.iou(boxes_old, boxes_new, is_crowd) threshold = 0.6 if len(ious) == 0: ious = np.zeros((len(self._old_instances), len(instances)), dtype="float32") # Only allow matching instances of the same label: for old_idx, old in enumerate(self._old_instances): for new_idx, new in enumerate(instances): if old.label != new.label: ious[old_idx, new_idx] = 0 matched_new_per_old = np.asarray(ious).argmax(axis=1) max_iou_per_old = np.asarray(ious).max(axis=1) # Try to find match for each old instance: extra_instances = [] for idx, inst in enumerate(self._old_instances): if max_iou_per_old[idx] > threshold: newidx = matched_new_per_old[idx] if instances[newidx].color is None: instances[newidx].color = inst.color continue # If an old instance does not match any new instances, # keep it for the next frame in case it is just missed by the detector inst.ttl -= 1 if inst.ttl > 0: extra_instances.append(inst) # Assign random color to newly-detected instances: for inst in instances: if inst.color is None: inst.color = random_color(rgb=True, maximum=1) self._old_instances = instances[:] + extra_instances return [d.color for d in instances]
35.34965
96
0.610089
7fad70f14ffd581db93dce8c488d7dc965890fdf
4,242
py
Python
tests/plugins/test_check_and_set_platforms.py
sosiouxme/atomic-reactor
91414bb8ffd988321cfa7120167636757e265a39
[ "BSD-3-Clause" ]
null
null
null
tests/plugins/test_check_and_set_platforms.py
sosiouxme/atomic-reactor
91414bb8ffd988321cfa7120167636757e265a39
[ "BSD-3-Clause" ]
1
2018-04-25T12:42:14.000Z
2018-04-29T20:31:00.000Z
tests/plugins/test_check_and_set_platforms.py
sosiouxme/atomic-reactor
91414bb8ffd988321cfa7120167636757e265a39
[ "BSD-3-Clause" ]
null
null
null
""" Copyright (c) 2017 Red Hat, Inc All rights reserved. This software may be modified and distributed under the terms of the BSD license. See the LICENSE file for details. """ from __future__ import unicode_literals import os import yaml from atomic_reactor.constants import PLUGIN_CHECK_AND_SET_PLATFORMS_KEY, REPO_CONTAINER_CONFIG import atomic_reactor.plugins.pre_reactor_config as reactor_config import atomic_reactor.koji_util as koji_util from atomic_reactor.core import DockerTasker from atomic_reactor.inner import DockerBuildWorkflow from atomic_reactor.plugin import PreBuildPluginsRunner from atomic_reactor.util import ImageName from flexmock import flexmock import pytest from tests.constants import SOURCE, MOCK if MOCK: from tests.docker_mock import mock_docker class X(object): pass KOJI_TARGET = "target" # ClientSession is xmlrpc instance, we need to mock it explicitly def mock_session(platforms): last_event_id = 456 build_target = { 'build_tag': 'build-tag', 'name': 'target-name', 'dest_tag_name': 'dest-tag' } session = flexmock() (session .should_receive('getLastEvent') .and_return({'id': last_event_id})) (session .should_receive('getBuildTarget') .with_args('target', event=last_event_id) .and_return(build_target)) (session .should_receive('getBuildConfig') .with_args('build-tag', event=last_event_id) .and_return({'arches': platforms})) return session class MockSource(object): def __init__(self, tmpdir): self.path = str(tmpdir) self.dockerfile_path = str(tmpdir) def get_build_file_path(self): return self.path, self.path def prepare(tmpdir): if MOCK: mock_docker() tasker = DockerTasker() workflow = DockerBuildWorkflow(SOURCE, "test-image") setattr(workflow, 'builder', X()) source = MockSource(tmpdir) setattr(workflow.builder, 'image_id', "asd123") setattr(workflow.builder, 'base_image', ImageName(repo='Fedora', tag='21')) setattr(workflow.builder, 'source', source) setattr(workflow, 'source', source) return tasker, workflow @pytest.mark.parametrize(('platforms', 'platform_exclude', 'platform_only', 'result'), [ (None, '', 'ppc64le', None), ('x86_64 ppc64le', '', 'ppc64le', ['ppc64le']), ('x86_64 spam bacon toast ppc64le', ['spam', 'bacon', 'eggs', 'toast'], '', ['x86_64', 'ppc64le']), ('ppc64le spam bacon toast', ['spam', 'bacon', 'eggs', 'toast'], 'ppc64le', ['ppc64le']), ('x86_64 bacon toast', 'toast', ['x86_64', 'ppc64le'], ['x86_64']), ('x86_64 toast', 'toast', 'x86_64', ['x86_64']), ('x86_64 spam bacon toast', ['spam', 'bacon', 'eggs', 'toast'], ['x86_64', 'ppc64le'], ['x86_64']), ('x86_64 ppc64le', '', '', ['x86_64', 'ppc64le']) ]) def test_check_and_set_platforms(tmpdir, platforms, platform_exclude, platform_only, result): platforms_dict = {} if platform_exclude != '': platforms_dict['platforms'] = {} platforms_dict['platforms']['not'] = platform_exclude if platform_only != '': if 'platforms' not in platforms_dict: platforms_dict['platforms'] = {} platforms_dict['platforms']['only'] = platform_only container_path = os.path.join(str(tmpdir), REPO_CONTAINER_CONFIG) with open(container_path, 'w') as f: f.write(yaml.safe_dump(platforms_dict)) f.flush() tasker, workflow = prepare(tmpdir) session = mock_session(platforms) mock_koji_config = { 'auth': {}, 'hub_url': 'test', } flexmock(reactor_config).should_receive('get_koji').and_return(mock_koji_config) flexmock(koji_util).should_receive('create_koji_session').and_return(session) runner = PreBuildPluginsRunner(tasker, workflow, [{ 'name': PLUGIN_CHECK_AND_SET_PLATFORMS_KEY, 'args': {'koji_target': KOJI_TARGET}, }]) plugin_result = runner.run() if platforms: assert plugin_result[PLUGIN_CHECK_AND_SET_PLATFORMS_KEY] assert plugin_result[PLUGIN_CHECK_AND_SET_PLATFORMS_KEY] == set(result) else: assert plugin_result[PLUGIN_CHECK_AND_SET_PLATFORMS_KEY] is None
32.136364
94
0.680575
891191b0261f777adf969c477a11318a4085ef21
9,278
py
Python
plugins/_Post_Process/_XAI/lime_batch.py
sony/nnc-plugin
579cc51ec2c85fcae058f1aaf1f6036f71734dbb
[ "Apache-2.0" ]
7
2021-09-04T13:10:07.000Z
2022-03-21T08:51:45.000Z
plugins/_Post_Process/_XAI/lime_batch.py
sony/nnc-plugin
579cc51ec2c85fcae058f1aaf1f6036f71734dbb
[ "Apache-2.0" ]
1
2021-11-15T04:39:34.000Z
2021-11-19T08:09:42.000Z
plugins/_Post_Process/_XAI/lime_batch.py
sony/nnc-plugin
579cc51ec2c85fcae058f1aaf1f6036f71734dbb
[ "Apache-2.0" ]
1
2022-03-25T16:52:05.000Z
2022-03-25T16:52:05.000Z
# Copyright 2021 Sony Group Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import os import argparse import csv import math import numpy as np import tqdm import skimage.segmentation from nnabla import logger import nnabla.utils.load as load from nnabla.utils.image_utils import imsave from nnabla.utils.data_iterator import data_iterator_csv_dataset from nnabla.utils.cli.utility import let_data_to_variable import nnabla as nn import nnabla.functions as F import nnabla.parametric_functions as PF import nnabla.solvers as S from utils.file import save_info_to_csv def ridge(dataset): import nnabla_ext.cpu ctx = nnabla_ext.cpu.context() with nn.context_scope(ctx): dataset = np.array(dataset) nn.clear_parameters() x = nn.Variable((int(math.sqrt(dataset.shape[0])), dataset[0][0].size)) t = nn.Variable((x.shape[0], 1)) y = PF.affine(x, 1, name='affine') loss = F.squared_error(y, t) mean_loss = F.mean(loss) solver = S.Momentum() solver.set_parameters(nn.get_parameters()) for iter in range(100 * int(math.sqrt(dataset.shape[0]))): # 100 epoch np.random.shuffle(dataset) x.d = np.stack(dataset[:x.shape[0], 0]).reshape(x.shape) t.d = np.stack(dataset[:x.shape[0], 1]).reshape(t.shape) solver.zero_grad() mean_loss.forward() mean_loss.backward() solver.weight_decay(0.01) solver.update() return nn.get_parameters()['affine/affine/W'].d.flatten() def func(args): class ForwardConfig: pass # Load model info = load.load([args.model], prepare_data_iterator=False, batch_size=1) config = ForwardConfig config.global_config = info.global_config config.executors = info.executors.values() config.networks = [] if len(config.executors) < 1: logger.critical('Executor is not found in {}.'.format(args.model)) return executor = list(config.executors)[0] if len(config.executors) > 1: logger.log(99, 'Only the first executor {} is used in the LIME calculation.'.format( executor.name)) if executor.network.name in info.networks.keys(): config.networks.append(info.networks[executor.network.name]) else: logger.critical('Network {} is not found in {}.'.format( executor.network.name, args.model)) return # Prepare variable input_variable, data_name = list(executor.dataset_assign.items())[0] output_variable = list(executor.output_assign.keys())[0] # check csv_file = np.loadtxt(args.input, delimiter=",", dtype=str) header = [item.split(":")[0] for item in csv_file[0]] classes = csv_file[1:, header.index(args.label_variable)] num_classes = np.unique(classes).size output_size = output_variable.variable_instance.d.shape[1] is_binary_classification = num_classes != output_size # Load dataset data_iterator = (lambda: data_iterator_csv_dataset( uri=args.input, batch_size=1, shuffle=False, normalize=not executor.no_image_normalization, with_memory_cache=False, with_file_cache=False)) # Prepare output data_output_dir = os.path.splitext(args.output)[0] # Data loop with data_iterator() as di: index = 0 file_names = [] while index < di.size: # Load data data = di.next() im = data[di.variables.index(args.input_variable)] im = im.reshape((im.shape[1], im.shape[2], im.shape[3])) slic = skimage.segmentation.slic( im[0], n_segments=args.num_segments) if is_binary_classification: label = 0 else: label = data[di.variables.index(args.label_variable)] label = label.reshape((label.size,)) if label.size > 1: label = np.argmax(label) else: label = label[0] mask_and_result = [] # Sampling np.random.seed(0) while len(mask_and_result) < args.num_samples: x = input_variable.variable_instance mask = np.random.uniform( size=(x.shape[0], args.num_segments)) >= 0.5 im_mask = np.array([mask1[slic] for mask1 in mask]).astype(np.uint8) data = im_mask.reshape( x.shape[0], 1, x.shape[2], x.shape[3]) * im.reshape(1, x.shape[1], x.shape[2], x.shape[3]) # input data let_data_to_variable(input_variable.variable_instance, data, data_name=data_name, variable_name=input_variable.name) # Generate data for v, generator in executor.generator_assign.items(): v.variable_instance.d = generator(v.shape) # Forward executor.forward_target.forward(clear_buffer=True) for m, probability in zip(mask, output_variable.variable_instance.d): try: mask_and_result.append([m, probability[int(label)]]) except IndexError as e: if index != 0: pbar.close() logger.critical(e) return weight = ridge(mask_and_result) max_indices = np.argpartition(-weight, args.num_segments_2)[:args.num_segments_2] result = np.zeros(weight.shape) result[max_indices] = 1 # Generate output image result_mask = result[slic].astype( np.uint8).reshape(1, im.shape[1], im.shape[2]) if not executor.no_image_normalization: im = im * 255.0 im = im * result_mask + \ np.ones(im.shape, np.uint8) * 192 * np.logical_not(result_mask) result = im.transpose(1, 2, 0).astype(np.uint8) if result.shape[-1] == 1 and len(result.shape) == 3: result = result.reshape(result.shape[0:2]) # Output result image file_name = os.path.join(data_output_dir, '{:04d}'.format( index // 1000), '{}.png'.format(index)) directory = os.path.dirname(file_name) try: os.makedirs(directory) except OSError: pass # python2 does not support exists_ok arg imsave(file_name, result) file_names.append(file_name) if index == 0: pbar = tqdm.tqdm(total=di.size) index += 1 pbar.update(1) pbar.close() save_info_to_csv(args.input, args.output, file_names, column_name='lime') logger.log(99, 'LIME (image batch) completed successfully.') def main(): parser = argparse.ArgumentParser( description='LIME (image batch)\n' '\n' '"Why Should I Trust You?": Explaining the Predictions of Any Classifier' 'Marco Tulio Ribeiro, Sameer Singh, Carlos Guestrin' 'https://arxiv.org/abs/1602.04938\n' '', formatter_class=argparse.RawTextHelpFormatter) parser.add_argument( '-i', '--input', help='path to input csv file (csv) default=output_result.csv', required=True, default='output_result.csv') parser.add_argument( '-m', '--model', help='path to model nnp file (model) default=results.nnp', required=True, default='results.nnp') parser.add_argument( '-v1', '--input_variable', help='Variable to be processed (variable), default=x', required=True, default='x') parser.add_argument( '-v2', '--label_variable', help='Variable representing class index to visualize (variable) default=y', required=True, default='y') parser.add_argument( '-n', '--num_samples', help='number of samples N (int), default=1000', required=True, type=int, default=1000) parser.add_argument( '-s', '--num_segments', help='number of segments (int), default=10', required=True, type=int, default=10) parser.add_argument( '-s2', '--num_segments_2', help='number of segments to highlight (int), default=3', required=True, type=int, default=3) parser.add_argument( '-o', '--output', help='path to output image file (image) default=lime.csv', required=True, default='lime.csv') parser.set_defaults(func=func) args = parser.parse_args() args.func(args) if __name__ == '__main__': main()
38.338843
138
0.599698
0c3b314c8b04b8723984900fd30ff605ddb9cfd3
11,489
py
Python
torch/optim/swa_utils.py
wenhaopeter/read_pytorch_code
491f989cd918cf08874dd4f671fb7f0142a0bc4f
[ "Intel", "X11" ]
null
null
null
torch/optim/swa_utils.py
wenhaopeter/read_pytorch_code
491f989cd918cf08874dd4f671fb7f0142a0bc4f
[ "Intel", "X11" ]
null
null
null
torch/optim/swa_utils.py
wenhaopeter/read_pytorch_code
491f989cd918cf08874dd4f671fb7f0142a0bc4f
[ "Intel", "X11" ]
null
null
null
import torch import math from torch.nn import Module from copy import deepcopy from torch.optim.lr_scheduler import _LRScheduler class AveragedModel(Module): r"""Implements averaged model for Stochastic Weight Averaging (SWA). Stochastic Weight Averaging was proposed in `Averaging Weights Leads to Wider Optima and Better Generalization`_ by Pavel Izmailov, Dmitrii Podoprikhin, Timur Garipov, Dmitry Vetrov and Andrew Gordon Wilson (UAI 2018). AveragedModel class creates a copy of the provided module :attr:`model` on the device :attr:`device` and allows to compute running averages of the parameters of the :attr:`model`. Arguments: model (torch.nn.Module): model to use with SWA device (torch.device, optional): if provided, the averaged model will be stored on the :attr:`device` avg_fn (function, optional): the averaging function used to update parameters; the function must take in the current value of the :class:`AveragedModel` parameter, the current value of :attr:`model` parameter and the number of models already averaged; if None, equally weighted average is used (default: None) Example: >>> loader, optimizer, model, loss_fn = ... >>> swa_model = torch.optim.swa_utils.AveragedModel(model) >>> scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, >>> T_max=300) >>> swa_start = 160 >>> swa_scheduler = SWALR(optimizer, swa_lr=0.05) >>> for i in range(300): >>> for input, target in loader: >>> optimizer.zero_grad() >>> loss_fn(model(input), target).backward() >>> optimizer.step() >>> if i > swa_start: >>> swa_model.update_parameters(model) >>> swa_scheduler.step() >>> else: >>> scheduler.step() >>> >>> # Update bn statistics for the swa_model at the end >>> torch.optim.swa_utils.update_bn(loader, swa_model) You can also use custom averaging functions with `avg_fn` parameter. If no averaging function is provided, the default is to compute equally-weighted average of the weights. Example: >>> # Compute exponential moving averages of the weights >>> ema_avg = lambda averaged_model_parameter, model_parameter, num_averaged:\ 0.1 * averaged_model_parameter + 0.9 * model_parameter >>> swa_model = torch.optim.swa_utils.AveragedModel(model, avg_fn=ema_avg) .. note:: When using SWA with models containing Batch Normalization you may need to update the activation statistics for Batch Normalization. You can do so by using :meth:`torch.optim.swa_utils.update_bn` utility. .. note:: :attr:`avg_fn` is not saved in the :meth:`state_dict` of the model. .. note:: When :meth:`update_parameters` is called for the first time (i.e. :attr:`n_averaged` is `0`) the parameters of `model` are copied to the parameters of :class:`AveragedModel`. For every subsequent call of :meth:`update_parameters` the function `avg_fn` is used to update the parameters. .. _Averaging Weights Leads to Wider Optima and Better Generalization: https://arxiv.org/abs/1803.05407 .. _There Are Many Consistent Explanations of Unlabeled Data: Why You Should Average: https://arxiv.org/abs/1806.05594 .. _SWALP: Stochastic Weight Averaging in Low-Precision Training: https://arxiv.org/abs/1904.11943 .. _Stochastic Weight Averaging in Parallel: Large-Batch Training That Generalizes Well: https://arxiv.org/abs/2001.02312 """ def __init__(self, model, device=None, avg_fn=None): super(AveragedModel, self).__init__() self.module = deepcopy(model) if device is not None: self.module = self.module.to(device) self.register_buffer('n_averaged', torch.tensor(0, dtype=torch.long, device=device)) if avg_fn is None: def avg_fn(averaged_model_parameter, model_parameter, num_averaged): return averaged_model_parameter + \ (model_parameter - averaged_model_parameter) / (num_averaged + 1) self.avg_fn = avg_fn def forward(self, *args, **kwargs): return self.module(*args, **kwargs) def update_parameters(self, model): for p_swa, p_model in zip(self.parameters(), model.parameters()): device = p_swa.device p_model_ = p_model.detach().to(device) if self.n_averaged == 0: p_swa.detach().copy_(p_model_) else: p_swa.detach().copy_(self.avg_fn(p_swa.detach(), p_model_, self.n_averaged.to(device))) self.n_averaged += 1 def update_bn(loader, model, device=None): r"""Updates BatchNorm running_mean, running_var buffers in the model. It performs one pass over data in `loader` to estimate the activation statistics for BatchNorm layers in the model. Arguments: loader (torch.utils.data.DataLoader): dataset loader to compute the activation statistics on. Each data batch should be either a tensor, or a list/tuple whose first element is a tensor containing data. model (torch.nn.Module): model for which we seek to update BatchNorm statistics. device (torch.device, optional): If set, data will be trasferred to :attr:`device` before being passed into :attr:`model`. Example: >>> loader, model = ... >>> torch.optim.swa_utils.update_bn(loader, model) .. note:: The `update_bn` utility assumes that each data batch in :attr:`loader` is either a tensor or a list or tuple of tensors; in the latter case it is assumed that :meth:`model.forward()` should be called on the first element of the list or tuple corresponding to the data batch. """ momenta = {} for module in model.modules(): if isinstance(module, torch.nn.modules.batchnorm._BatchNorm): module.running_mean = torch.zeros_like(module.running_mean) module.running_var = torch.ones_like(module.running_var) momenta[module] = module.momentum if not momenta: return was_training = model.training model.train() for module in momenta.keys(): module.momentum = None module.num_batches_tracked *= 0 for input in loader: if isinstance(input, (list, tuple)): input = input[0] if device is not None: input = input.to(device) model(input) for bn_module in momenta.keys(): bn_module.momentum = momenta[bn_module] model.train(was_training) class SWALR(_LRScheduler): r"""Anneals the learning rate in each parameter group to a fixed value. This learning rate scheduler is meant to be used with Stochastic Weight Averaging (SWA) method (see `torch.optim.swa_utils.AveragedModel`). Arguments: optimizer (torch.optim.Optimizer): wrapped optimizer swa_lrs (float or list): the learning rate value for all param groups together or separately for each group. annealing_epochs (int): number of epochs in the annealing phase (default: 10) annealing_strategy (str): "cos" or "linear"; specifies the annealing strategy: "cos" for cosine annealing, "linear" for linear annealing (default: "cos") last_epoch (int): the index of the last epoch (default: 'cos') The :class:`SWALR` scheduler is can be used together with other schedulers to switch to a constant learning rate late in the training as in the example below. Example: >>> loader, optimizer, model = ... >>> lr_lambda = lambda epoch: 0.9 >>> scheduler = torch.optim.lr_scheduler.MultiplicativeLR(optimizer, >>> lr_lambda=lr_lambda) >>> swa_scheduler = torch.optim.swa_utils.SWALR(optimizer, >>> anneal_strategy="linear", anneal_epochs=20, swa_lr=0.05) >>> swa_start = 160 >>> for i in range(300): >>> for input, target in loader: >>> optimizer.zero_grad() >>> loss_fn(model(input), target).backward() >>> optimizer.step() >>> if i > swa_start: >>> swa_scheduler.step() >>> else: >>> scheduler.step() .. _Averaging Weights Leads to Wider Optima and Better Generalization: https://arxiv.org/abs/1803.05407 """ def __init__(self, optimizer, swa_lr, anneal_epochs=10, anneal_strategy='cos', last_epoch=-1): swa_lrs = self._format_param(optimizer, swa_lr) for swa_lr, group in zip(swa_lrs, optimizer.param_groups): group['swa_lr'] = swa_lr if anneal_strategy not in ['cos', 'linear']: raise ValueError("anneal_strategy must by one of 'cos' or 'linear', " "instead got {}".format(anneal_strategy)) elif anneal_strategy == 'cos': self.anneal_func = self._cosine_anneal elif anneal_strategy == 'linear': self.anneal_func = self._linear_anneal if not isinstance(anneal_epochs, int) or anneal_epochs < 1: raise ValueError("anneal_epochs must be a positive integer, got {}".format( anneal_epochs)) self.anneal_epochs = anneal_epochs super(SWALR, self).__init__(optimizer, last_epoch) @staticmethod def _format_param(optimizer, swa_lrs): if isinstance(swa_lrs, (list, tuple)): if len(swa_lrs) != len(optimizer.param_groups): raise ValueError("swa_lr must have the same length as " "optimizer.param_groups: swa_lr has {}, " "optimizer.param_groups has {}".format( len(swa_lrs), len(optimizer.param_groups))) return swa_lrs else: return [swa_lrs] * len(optimizer.param_groups) @staticmethod def _linear_anneal(t): return t @staticmethod def _cosine_anneal(t): return (1 - math.cos(math.pi * t)) / 2 @staticmethod def _get_initial_lr(lr, swa_lr, alpha): if alpha == 1: return swa_lr return (lr - alpha * swa_lr) / (1 - alpha) def get_lr(self): if not self._get_lr_called_within_step: warnings.warn("To get the last learning rate computed by the scheduler, " "please use `get_last_lr()`.", UserWarning) step = self._step_count - 1 prev_t = max(0, min(1, (step - 1) / self.anneal_epochs)) prev_alpha = self.anneal_func(prev_t) prev_lrs = [self._get_initial_lr(group['lr'], group['swa_lr'], prev_alpha) for group in self.optimizer.param_groups] t = max(0, min(1, step / self.anneal_epochs)) alpha = self.anneal_func(t) return [group['swa_lr'] * alpha + lr * (1 - alpha) for group, lr in zip(self.optimizer.param_groups, prev_lrs)]
42.869403
98
0.618679
ed3372dfa30a1ee787d7ab1752a449c5ca00f91d
1,444
py
Python
tcfcli/common/tcsam/glob.py
alfredhuang211/scfcli
f5e086ff4fcee8d645682e85cd1486b28a224d08
[ "Apache-2.0" ]
14
2019-03-01T09:47:36.000Z
2019-11-28T01:58:54.000Z
tcfcli/common/tcsam/glob.py
alfredhuang211/scfcli
f5e086ff4fcee8d645682e85cd1486b28a224d08
[ "Apache-2.0" ]
8
2019-03-12T10:22:53.000Z
2020-08-20T08:15:51.000Z
tcfcli/common/tcsam/glob.py
alfredhuang211/scfcli
f5e086ff4fcee8d645682e85cd1486b28a224d08
[ "Apache-2.0" ]
7
2019-03-01T09:47:52.000Z
2020-06-13T12:14:48.000Z
from .tcsam_macro import TcSamMacro as macro glob_schema = { "$schema": "http://json-schema.org/draft-07/schema/global#", "$id": "tcsam.global", "type": "object", "properties": { macro.Function: { "type": "object", "properties": { macro.CodeUri: {"type": "string"}, macro.Desc: {"type": "string"}, macro.Envi: { "type": "object", "properties": { macro.Vari: { "type": "object", "properties": {}, "additionalProperties": { "type": "string" } } }, "additionalProperties": False }, macro.Handler: {"type": "string"}, macro.MemSize: {"type": "integer", "exclusiveMinimum": 0}, macro.Runtime: { "type": "string", "enum": ["Python2.7", "Python3.6", "Nodejs6.10", "Nodejs8.9", "Php5", "Php7", "Go1", "Java8", "python2.7", "python3.6", "nodejs6.10", "nodejs8.9", "php5", "php7", "go1", "java8"] }, macro.Timeout: {"type": "integer", "exclusiveMinimum": 0}, }, "additionalProperties": False } }, "additionalProperties": False }
38
81
0.40651
10b579dbf103e2daf42142c2b9771cf9d4e45861
3,040
py
Python
python/pyspark/sql/tests/test_utils.py
neilagupta/spark
1c61d90777204077fcd475fa6e0eb035122d532f
[ "BSD-2-Clause", "Apache-2.0", "CC0-1.0", "MIT", "MIT-0", "ECL-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
1
2021-10-14T06:18:00.000Z
2021-10-14T06:18:00.000Z
python/pyspark/sql/tests/test_utils.py
Talador12/spark
838a9d9398d2faf8885c9a84fd8f1d589f3c5539
[ "Apache-2.0" ]
null
null
null
python/pyspark/sql/tests/test_utils.py
Talador12/spark
838a9d9398d2faf8885c9a84fd8f1d589f3c5539
[ "Apache-2.0" ]
null
null
null
# -*- encoding: utf-8 -*- # # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # from pyspark.sql.functions import sha2 from pyspark.sql.utils import AnalysisException, ParseException, IllegalArgumentException from pyspark.testing.sqlutils import ReusedSQLTestCase class UtilsTests(ReusedSQLTestCase): def test_capture_analysis_exception(self): self.assertRaises(AnalysisException, lambda: self.spark.sql("select abc")) self.assertRaises(AnalysisException, lambda: self.df.selectExpr("a + b")) def test_capture_user_friendly_exception(self): try: self.spark.sql("select `中文字段`") except AnalysisException as e: self.assertRegex(str(e), "Column '`中文字段`' does not exist") def test_capture_parse_exception(self): self.assertRaises(ParseException, lambda: self.spark.sql("abc")) def test_capture_illegalargument_exception(self): self.assertRaisesRegex(IllegalArgumentException, "Setting negative mapred.reduce.tasks", lambda: self.spark.sql("SET mapred.reduce.tasks=-1")) df = self.spark.createDataFrame([(1, 2)], ["a", "b"]) self.assertRaisesRegex(IllegalArgumentException, "1024 is not in the permitted values", lambda: df.select(sha2(df.a, 1024)).collect()) try: df.select(sha2(df.a, 1024)).collect() except IllegalArgumentException as e: self.assertRegex(e.desc, "1024 is not in the permitted values") self.assertRegex(e.stackTrace, "org.apache.spark.sql.functions") def test_get_error_class_state(self): # SPARK-36953: test CapturedException.getErrorClass and getSqlState (from SparkThrowable) try: self.spark.sql("""SELECT a""") except AnalysisException as e: self.assertEquals(e.getErrorClass(), "MISSING_COLUMN") self.assertEquals(e.getSqlState(), "42000") if __name__ == "__main__": import unittest from pyspark.sql.tests.test_utils import * # noqa: F401 try: import xmlrunner # type: ignore[import] testRunner = xmlrunner.XMLTestRunner(output='target/test-reports', verbosity=2) except ImportError: testRunner = None unittest.main(testRunner=testRunner, verbosity=2)
43.428571
97
0.700658
c3ee03475f1f518cd523c5e34a2560d3ba093344
24,825
py
Python
usr/lib/python2.7/dist-packages/rosdep2/sources_list.py
Roboy/roboy_controlled_node_fpga
dbba4eff19ed04469a6196ba368cea231cad539d
[ "BSD-3-Clause" ]
2
2018-12-11T16:35:20.000Z
2019-01-23T16:42:17.000Z
usr/lib/python2.7/dist-packages/rosdep2/sources_list.py
Roboy/roboy_managing_node_fpga
64ffe5aec2f2c98a051bb1a881849c195b8d052c
[ "BSD-3-Clause" ]
1
2018-12-28T21:11:50.000Z
2018-12-28T21:11:50.000Z
usr/lib/python2.7/dist-packages/rosdep2/sources_list.py
Roboy/roboy_managing_node_fpga
64ffe5aec2f2c98a051bb1a881849c195b8d052c
[ "BSD-3-Clause" ]
3
2018-01-21T17:53:17.000Z
2021-09-08T10:22:05.000Z
# Copyright (c) 2012, Willow Garage, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of the Willow Garage, Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # Author Ken Conley/kwc@willowgarage.com from __future__ import print_function import os import sys import tempfile import yaml import hashlib try: from urllib.request import urlopen from urllib.error import URLError except ImportError: from urllib2 import urlopen from urllib2 import URLError try: import cPickle as pickle except ImportError: import pickle from .core import InvalidData, DownloadFailure, CachePermissionError from .gbpdistro_support import get_gbprepo_as_rosdep_data, download_gbpdistro_as_rosdep_data try: import urlparse except ImportError: import urllib.parse as urlparse #py3k try: import httplib except ImportError: import http.client as httplib # py3k import rospkg import rospkg.distro from .loader import RosdepLoader from .rosdistrohelper import get_index, get_index_url # default file to download with 'init' command in order to bootstrap # rosdep DEFAULT_SOURCES_LIST_URL = 'https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list' #seconds to wait before aborting download of rosdep data DOWNLOAD_TIMEOUT = 15.0 SOURCES_LIST_DIR = 'sources.list.d' SOURCES_CACHE_DIR = 'sources.cache' # name of index file for sources cache CACHE_INDEX = 'index' # extension for binary cache PICKLE_CACHE_EXT = '.pickle' SOURCE_PATH_ENV = 'ROSDEP_SOURCE_PATH' def get_sources_list_dirs(source_list_dir): if SOURCE_PATH_ENV in os.environ: sdirs = os.environ[SOURCE_PATH_ENV].split(os.pathsep) else: sdirs = [source_list_dir] for p in list(sdirs): if not os.path.exists(p): sdirs.remove(p) return sdirs def get_sources_list_dir(): # base of where we read config files from # TODO: windows if 0: # we can't use etc/ros because environment config does not carry over under sudo etc_ros = rospkg.get_etc_ros_dir() else: etc_ros = '/etc/ros' # compute default system wide sources directory sys_sources_list_dir = os.path.join(etc_ros, 'rosdep', SOURCES_LIST_DIR) sources_list_dirs = get_sources_list_dirs(sys_sources_list_dir) if sources_list_dirs: return sources_list_dirs[0] else: return sys_sources_list_dir def get_default_sources_list_file(): return os.path.join(get_sources_list_dir(), '20-default.list') def get_sources_cache_dir(): ros_home = rospkg.get_ros_home() return os.path.join(ros_home, 'rosdep', SOURCES_CACHE_DIR) # Default rosdep.yaml format. For now this is the only valid type and # is specified for future compatibility. TYPE_YAML = 'yaml' # git-buildpackage repo list TYPE_GBPDISTRO = 'gbpdistro' VALID_TYPES = [TYPE_YAML, TYPE_GBPDISTRO] class DataSource(object): def __init__(self, type_, url, tags, origin=None): """ :param type_: data source type, e.g. TYPE_YAML, TYPE_GBPDISTRO :param url: URL of data location. For file resources, must start with the file:// scheme. For remote resources, URL must include a path. :param tags: tags for matching data source to configurations :param origin: filename or other indicator of where data came from for debugging. :raises: :exc:`ValueError` if parameters do not validate """ # validate inputs if not type_ in VALID_TYPES: raise ValueError("type must be one of [%s]"%(','.join(VALID_TYPES))) parsed = urlparse.urlparse(url) if not parsed.scheme or (parsed.scheme != 'file' and not parsed.netloc) or parsed.path in ('', '/'): raise ValueError("url must be a fully-specified URL with scheme, hostname, and path: %s"%(str(url))) if not type(tags) == list: raise ValueError("tags must be a list: %s"%(str(tags))) self.type = type_ self.tags = tags self.url = url self.origin = origin def __eq__(self, other): return isinstance(other, DataSource) and \ self.type == other.type and \ self.tags == other.tags and \ self.url == other.url and \ self.origin == other.origin def __str__(self): if self.origin: return "[%s]:\n%s %s %s"%(self.origin, self.type, self.url, ' '.join(self.tags)) else: return "%s %s %s"%(self.type, self.url, ' '.join(self.tags)) def __repr__(self): return repr((self.type, self.url, self.tags, self.origin)) class RosDistroSource(DataSource): def __init__(self, distro): self.type = TYPE_GBPDISTRO self.tags = [distro] # In this case self.url is a list if REP-143 is being used self.url = get_index().distributions[distro]['distribution'] self.origin = None # create function we can pass in as model to parse_source_data. The # function emulates the CachedDataSource constructor but does the # necessary full filepath calculation and loading of data. def cache_data_source_loader(sources_cache_dir, verbose=False): def create_model(type_, uri, tags, origin=None): # compute the filename has from the URL filename = compute_filename_hash(uri) filepath = os.path.join(sources_cache_dir, filename) pickle_filepath = filepath + PICKLE_CACHE_EXT if os.path.exists(pickle_filepath): if verbose: print("loading cached data source:\n\t%s\n\t%s"%(uri, pickle_filepath), file=sys.stderr) with open(pickle_filepath, 'rb') as f: rosdep_data = pickle.loads(f.read()) elif os.path.exists(filepath): if verbose: print("loading cached data source:\n\t%s\n\t%s"%(uri, filepath), file=sys.stderr) with open(filepath) as f: rosdep_data = yaml.load(f.read()) else: rosdep_data = {} return CachedDataSource(type_, uri, tags, rosdep_data, origin=filepath) return create_model class CachedDataSource(object): def __init__(self, type_, url, tags, rosdep_data, origin=None): """ Stores data source and loaded rosdep data for that source. NOTE: this is not a subclass of DataSource, though it's API is duck-type compatible with the DataSource API. """ self.source = DataSource(type_, url, tags, origin=origin) self.rosdep_data = rosdep_data def __eq__(self, other): try: return self.source == other.source and \ self.rosdep_data == other.rosdep_data except AttributeError: return False def __str__(self): return "%s\n%s"%(self.source, self.rosdep_data) def __repr__(self): return repr((self.type, self.url, self.tags, self.rosdep_data, self.origin)) @property def type(self): """ :returns: data source type """ return self.source.type @property def url(self): """ :returns: data source URL """ return self.source.url @property def tags(self): """ :returns: data source tags """ return self.source.tags @property def origin(self): """ :returns: data source origin, if set, or ``None`` """ return self.source.origin class DataSourceMatcher(object): def __init__(self, tags): self.tags = tags def matches(self, rosdep_data_source): """ Check if the datasource matches this configuration. :param rosdep_data_source: :class:`DataSource` """ # all of the rosdep_data_source tags must be in our matcher tags return not any(set(rosdep_data_source.tags)-set(self.tags)) @staticmethod def create_default(os_override=None): """ Create a :class:`DataSourceMatcher` to match the current configuration. :param os_override: (os_name, os_codename) tuple to override OS detection :returns: :class:`DataSourceMatcher` """ distro_name = rospkg.distro.current_distro_codename() if os_override is None: os_detect = rospkg.os_detect.OsDetect() os_name, os_version, os_codename = os_detect.detect_os() else: os_name, os_codename = os_override tags = [t for t in (distro_name, os_name, os_codename) if t] return DataSourceMatcher(tags) def download_rosdep_data(url): """ :raises: :exc:`DownloadFailure` If data cannot be retrieved (e.g. 404, bad YAML format, server down). """ try: f = urlopen(url, timeout=DOWNLOAD_TIMEOUT) text = f.read() f.close() data = yaml.safe_load(text) if type(data) != dict: raise DownloadFailure('rosdep data from [%s] is not a YAML dictionary'%(url)) return data except (URLError, httplib.HTTPException) as e: raise DownloadFailure(str(e) + ' (%s)' % url) except yaml.YAMLError as e: raise DownloadFailure(str(e)) def download_default_sources_list(url=DEFAULT_SOURCES_LIST_URL): """ Download (and validate) contents of default sources list. :param url: override URL of default sources list file :return: raw sources list data, ``str`` :raises: :exc:`InvalidData` :raises: :exc:`urllib2.URLError` If data cannot be retrieved (e.g. 404, server down). """ try: f = urlopen(url, timeout=DOWNLOAD_TIMEOUT) except (URLError, httplib.HTTPException) as e: raise URLError(str(e) + ' (%s)' % url) data = f.read().decode() f.close() if not data: raise RuntimeError("cannot download defaults file: empty contents") # parse just for validation parse_sources_data(data) return data def parse_sources_data(data, origin='<string>', model=None): """ Parse sources file format (tags optional):: # comments and empty lines allowed <type> <uri> [tags] e.g.:: yaml http://foo/rosdep.yaml fuerte lucid ubuntu If tags are specified, *all* tags must match the current configuration for the sources data to be used. :param data: data in sources file format :param model: model to load data into. Defaults to :class:`DataSource` :returns: List of data sources, [:class:`DataSource`] :raises: :exc:`InvalidData` """ if model is None: model = DataSource sources = [] for line in data.split('\n'): line = line.strip() # ignore empty lines or comments if not line or line.startswith('#'): continue splits = line.split(' ') if len(splits) < 2: raise InvalidData("invalid line:\n%s"%(line), origin=origin) type_ = splits[0] url = splits[1] tags = splits[2:] try: sources.append(model(type_, url, tags, origin=origin)) except ValueError as e: raise InvalidData("line:\n\t%s\n%s"%(line, e), origin=origin) return sources def parse_sources_file(filepath): """ Parse file on disk :returns: List of data sources, [:class:`DataSource`] :raises: :exc:`InvalidData` If any error occurs reading file, so an I/O error, non-existent file, or invalid format. """ try: with open(filepath, 'r') as f: return parse_sources_data(f.read(), origin=filepath) except IOError as e: raise InvalidData("I/O error reading sources file: %s"%(str(e)), origin=filepath) def parse_sources_list(sources_list_dir=None): """ Parse data stored in on-disk sources list directory into a list of :class:`DataSource` for processing. :returns: List of data sources, [:class:`DataSource`]. If there is no sources list dir, this returns an empty list. :raises: :exc:`InvalidData` :raises: :exc:`OSError` if *sources_list_dir* cannot be read. :raises: :exc:`IOError` if *sources_list_dir* cannot be read. """ if sources_list_dir is None: sources_list_dir = get_sources_list_dir() sources_list_dirs = get_sources_list_dirs(sources_list_dir) filelist = [] for sdir in sources_list_dirs: filelist += sorted([os.path.join(sdir, f) for f in os.listdir(sdir) if f.endswith('.list')]) sources_list = [] for f in filelist: sources_list.extend(parse_sources_file(f)) return sources_list def _generate_key_from_urls(urls): # urls may be a list of urls or a single string try: assert isinstance(urls, (list, basestring)) except NameError: assert isinstance(urls, (list, str)) # We join the urls by the '^' character because it is not allowed in urls return '^'.join(urls if isinstance(urls, list) else [urls]) def update_sources_list(sources_list_dir=None, sources_cache_dir=None, success_handler=None, error_handler=None): """ Re-downloaded data from remote sources and store in cache. Also update the cache index based on current sources. :param sources_list_dir: override source list directory :param sources_cache_dir: override sources cache directory :param success_handler: fn(DataSource) to call if a particular source loads successfully. This hook is mainly for printing errors to console. :param error_handler: fn(DataSource, DownloadFailure) to call if a particular source fails. This hook is mainly for printing errors to console. :returns: list of (`DataSource`, cache_file_path) pairs for cache files that were updated, ``[str]`` :raises: :exc:`InvalidData` If any of the sources list files is invalid :raises: :exc:`OSError` if *sources_list_dir* cannot be read. :raises: :exc:`IOError` If *sources_list_dir* cannot be read or cache data cannot be written """ if sources_cache_dir is None: sources_cache_dir = get_sources_cache_dir() sources = parse_sources_list(sources_list_dir=sources_list_dir) retval = [] for source in list(sources): try: if source.type == TYPE_YAML: rosdep_data = download_rosdep_data(source.url) elif source.type == TYPE_GBPDISTRO: # DEPRECATED, do not use this file. See REP137 if not source.tags[0] in ['electric', 'fuerte']: print('Ignore legacy gbpdistro "%s"' % source.tags[0]) sources.remove(source) continue # do not store this entry in the cache rosdep_data = download_gbpdistro_as_rosdep_data(source.url) retval.append((source, write_cache_file(sources_cache_dir, source.url, rosdep_data))) if success_handler is not None: success_handler(source) except DownloadFailure as e: if error_handler is not None: error_handler(source, e) # Additional sources for ros distros # In compliance with REP137 and REP143 print('Query rosdistro index %s' % get_index_url()) for dist_name in sorted(get_index().distributions.keys()): print('Add distro "%s"' % dist_name) rds = RosDistroSource(dist_name) rosdep_data = get_gbprepo_as_rosdep_data(dist_name) # dist_files can either be a string (single filename) or a list (list of filenames) dist_files = get_index().distributions[dist_name]['distribution'] key = _generate_key_from_urls(dist_files) retval.append((rds, write_cache_file(sources_cache_dir, key, rosdep_data))) sources.append(rds) # Create a combined index of *all* the sources. We do all the # sources regardless of failures because a cache from a previous # attempt may still exist. We have to do this cache index so that # loads() see consistent data. if not os.path.exists(sources_cache_dir): os.makedirs(sources_cache_dir) cache_index = os.path.join(sources_cache_dir, CACHE_INDEX) data = "#autogenerated by rosdep, do not edit. use 'rosdep update' instead\n" for source in sources: url = _generate_key_from_urls(source.url) data += "yaml %s %s\n" % (url, ' '.join(source.tags)) write_atomic(cache_index, data) # mainly for debugging and testing return retval def load_cached_sources_list(sources_cache_dir=None, verbose=False): """ Load cached data based on the sources list. :returns: list of :class:`CachedDataSource` instance with raw rosdep data loaded. :raises: :exc:`OSError` if cache cannot be read :raises: :exc:`IOError` if cache cannot be read """ if sources_cache_dir is None: sources_cache_dir = get_sources_cache_dir() cache_index = os.path.join(sources_cache_dir, 'index') if not os.path.exists(cache_index): if verbose: print("no cache index present, not loading cached sources", file=sys.stderr) return [] with open(cache_index, 'r') as f: cache_data = f.read() # the loader does all the work model = cache_data_source_loader(sources_cache_dir, verbose=verbose) return parse_sources_data(cache_data, origin=cache_index, model=model) def compute_filename_hash(key_filenames): sha_hash = hashlib.sha1() if isinstance(key_filenames, list): for key in key_filenames: sha_hash.update(key.encode()) else: sha_hash.update(key_filenames.encode()) return sha_hash.hexdigest() def write_cache_file(source_cache_d, key_filenames, rosdep_data): """ :param source_cache_d: directory to write cache file to :param key_filenames: filename (or list of filenames) to be used in hashing :param rosdep_data: dictionary of data to serialize as YAML :returns: name of file where cache is stored :raises: :exc:`OSError` if cannot write to cache file/directory :raises: :exc:`IOError` if cannot write to cache file/directory """ if not os.path.exists(source_cache_d): os.makedirs(source_cache_d) key_hash = compute_filename_hash(key_filenames) filepath = os.path.join(source_cache_d, key_hash) try: write_atomic(filepath + PICKLE_CACHE_EXT, pickle.dumps(rosdep_data, -1), True) except OSError as e: raise CachePermissionError("Failed to write cache file: " + str(e)) try: os.unlink(filepath) except OSError: pass return filepath def write_atomic(filepath, data, binary=False): # write data to new file fd, filepath_tmp = tempfile.mkstemp(prefix=os.path.basename(filepath) + '.tmp.', dir=os.path.dirname(filepath)) if (binary): fmode = 'wb' else: fmode = 'w' with os.fdopen(fd, fmode) as f: f.write(data) f.close() try: # switch file atomically (if supported) os.rename(filepath_tmp, filepath) except OSError: # fall back to non-atomic operation try: os.unlink(filepath) except OSError: pass try: os.rename(filepath_tmp, filepath) except OSError: os.unlink(filepath_tmp) class SourcesListLoader(RosdepLoader): """ SourcesList loader implements the general RosdepLoader API. This implementation is fairly simple as there is only one view the source list loader can create. It is also a bit degenerate as it is not capable of mapping resource names to views, thus any resource-name-based API fails or returns nothing interesting. This loader should not be used directly; instead, it is more useful composed with other higher-level implementations, like the :class:`rosdep2.rospkg_loader.RospkgLoader`. The general intent is to compose it with another loader by making all of the other loader's views depends on all the views in this loader. """ ALL_VIEW_KEY = 'sources.list' def __init__(self, sources): """ :param sources: cached sources list entries, [:class:`CachedDataSource`] """ self.sources = sources @staticmethod def create_default(matcher=None, sources_cache_dir=None, os_override=None, verbose=False): """ :param matcher: override DataSourceMatcher. Defaults to DataSourceMatcher.create_default(). :param sources_cache_dir: override location of sources cache """ if matcher is None: matcher = DataSourceMatcher.create_default(os_override=os_override) if verbose: print("using matcher with tags [%s]"%(', '.join(matcher.tags)), file=sys.stderr) sources = load_cached_sources_list(sources_cache_dir=sources_cache_dir, verbose=verbose) if verbose: print("loaded %s sources"%(len(sources)), file=sys.stderr) sources = [x for x in sources if matcher.matches(x)] if verbose: print("%s sources match current tags"%(len(sources)), file=sys.stderr) return SourcesListLoader(sources) def load_view(self, view_name, rosdep_db, verbose=False): """ Load view data into rosdep_db. If the view has already been loaded into rosdep_db, this method does nothing. :param view_name: name of ROS stack to load, ``str`` :param rosdep_db: database to load stack data into, :class:`RosdepDatabase` :raises: :exc:`InvalidData` """ if rosdep_db.is_loaded(view_name): return source = self.get_source(view_name) if verbose: print("loading view [%s] with sources.list loader"%(view_name), file=sys.stderr) view_dependencies = self.get_view_dependencies(view_name) rosdep_db.set_view_data(view_name, source.rosdep_data, view_dependencies, view_name) def get_loadable_resources(self): return [] def get_loadable_views(self): return [x.url for x in self.sources] def get_view_dependencies(self, view_name): # use dependencies to implement precedence if view_name != SourcesListLoader.ALL_VIEW_KEY: # if the view_name matches one of our sources, return # empty list as none of our sources has deps. if any([x for x in self.sources if view_name == x.url]): return [] # not one of our views, so it depends on everything we provide return [x.url for x in self.sources] def get_source(self, view_name): matches = [x for x in self.sources if x.url == view_name] if matches: return matches[0] else: raise rospkg.ResourceNotFound(view_name) def get_rosdeps(self, resource_name, implicit=True): """ Always raises as SourceListLoader defines no concrete resources with rosdeps. :raises: :exc:`rospkg.ResourceNotFound` """ raise rospkg.ResourceNotFound(resource_name) def get_view_key(self, resource_name): """ Always raises as SourceListLoader defines no concrete resources with rosdeps. :returns: Name of view that *resource_name* is in, ``None`` if no associated view. :raises: :exc:`rospkg.ResourceNotFound` if *resource_name* cannot be found. """ raise rospkg.ResourceNotFound(resource_name)
36.887073
121
0.664491
1b8a3f63d514903ea341d282532c429c06620e1e
3,395
py
Python
dmb/modeling/stereo/cost_processors/utils/cost_norm.py
jiaw-z/DenseMatchingBenchmark
177c56ca1952f54d28e6073afa2c16981113a2af
[ "MIT" ]
160
2019-11-16T13:59:21.000Z
2022-03-28T07:52:59.000Z
dmb/modeling/stereo/cost_processors/utils/cost_norm.py
jiaw-z/DenseMatchingBenchmark
177c56ca1952f54d28e6073afa2c16981113a2af
[ "MIT" ]
22
2019-11-22T02:14:18.000Z
2022-01-24T10:16:14.000Z
dmb/modeling/stereo/cost_processors/utils/cost_norm.py
jiaw-z/DenseMatchingBenchmark
177c56ca1952f54d28e6073afa2c16981113a2af
[ "MIT" ]
38
2019-12-27T14:01:01.000Z
2022-03-12T11:40:11.000Z
import torch import torch.nn as nn eps = 1e-5 class _CostVolumeNorm(nn.Module): """ Normalize Cost Volume Args: dim (int): which dim to apply normalization operation, default dim is for the cost dim. affine (bool): whether the parameters are learnable, default is True weight (float): weight for cost re-range bias (float): bias for cost Shape: - Input: :math:`(N, *)` - Output: :math:`(N, *)` (same shape as input) """ def __init__(self, dim=1, affine=True, weight=1, bias=0): super(_CostVolumeNorm, self).__init__() self.dim = dim self.affine = affine if self.affine: self.weight = nn.Parameter(data=torch.Tensor(1), requires_grad=True) self.bias = nn.Parameter(data=torch.Tensor(1), requires_grad=True) else: self.weight = nn.Parameter(data=torch.Tensor(1), requires_grad=False) self.bias = nn.Parameter(data=torch.Tensor(1), requires_grad=False) # init weight and bias self.weight.data.fill_(weight) self.bias.data.fill_(bias) def forward(self, input): raise NotImplementedError class RangeNorm(_CostVolumeNorm): def __init__(self, dim=1, affine=True, weight=1, bias=0): super(RangeNorm, self).__init__(dim=dim, affine=affine, weight=weight, bias=bias) def forward(self, input): # compute mean value mean = input.min(dim=self.dim, keepdim=True)[0] # compute margin var = input.max(dim=self.dim, keepdim=True)[0] - input.min(dim=self.dim, keepdim=True)[0] # normalize normalized_input = (input - mean) / (var + eps) # apply weight and bias output = normalized_input * self.weight + self.bias return output class VarNorm(_CostVolumeNorm): def __init__(self, dim=1, affine=True, weight=1, bias=0): super(VarNorm, self).__init__(dim=dim, affine=affine, weight=weight, bias=bias) def forward(self, input): # compute mean value mean = input.mean(dim=self.dim, keepdim=True) # compute var value var = input.var(dim=self.dim, keepdim=True) # normalize normalized_input = (input - mean).abs() / (var + eps) # apply weight and bias output = normalized_input * self.weight + self.bias return output class StdNorm(_CostVolumeNorm): def __init__(self, dim=1, affine=True, weight=1, bias=0): super(StdNorm, self).__init__(dim=dim, affine=affine, weight=weight, bias=bias) def forward(self, input): # compute mean value mean = input.mean(dim=self.dim, keepdim=True) # compute var value var = input.std(dim=self.dim, keepdim=True) # normalize normalized_input = (input - mean).abs() / (var + eps) # apply weight and bias output = normalized_input * self.weight + self.bias return output class SigmoidNorm(_CostVolumeNorm): def __init__(self, dim=1, affine=True, weight=1, bias=0): super(SigmoidNorm, self).__init__(dim=dim, affine=affine, weight=weight, bias=bias) def forward(self, input): # normalize normalized_input = torch.sigmoid(input) # apply weight and bias output = normalized_input * self.weight + self.bias return output
33.613861
99
0.622091
a5c8eb063f0c1ee701686daf770c8e676474c6e9
368
py
Python
app/app/tests.py
ppleventis/recipe-app-api
6ba3004540a136f22429adb42283f154a1b447c3
[ "MIT" ]
null
null
null
app/app/tests.py
ppleventis/recipe-app-api
6ba3004540a136f22429adb42283f154a1b447c3
[ "MIT" ]
null
null
null
app/app/tests.py
ppleventis/recipe-app-api
6ba3004540a136f22429adb42283f154a1b447c3
[ "MIT" ]
null
null
null
from django.test import TestCase from app.calc import add, subtract class calcTests(TestCase): def test_add_numbers(self): """Test that two numbers are added together""" self.assertEqual(add(3, 8), 11) def test_subtract_numbers(self): """Test that values are subtracted and returned""" self.assertEqual(subtract(5, 11), 6)
24.533333
58
0.679348
f377b6fcda8590183f8bbbb2f56c90398b47b627
8,535
py
Python
var/spack/repos/builtin/packages/py-horovod/package.py
genric/spack
e35a99e5d6da729f197954802d697d75e02aefe0
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
9
2018-04-18T07:51:40.000Z
2021-09-10T03:56:57.000Z
var/spack/repos/builtin/packages/py-horovod/package.py
BlueBrain/spack
047fa4b21b90abfd227dd70a77689bb473cd1a57
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
907
2018-04-18T11:17:57.000Z
2022-03-31T13:20:25.000Z
var/spack/repos/builtin/packages/py-horovod/package.py
genric/spack
e35a99e5d6da729f197954802d697d75e02aefe0
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
29
2018-11-05T16:14:23.000Z
2022-02-03T16:07:09.000Z
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) class PyHorovod(PythonPackage, CudaPackage): """Horovod is a distributed deep learning training framework for TensorFlow, Keras, PyTorch, and Apache MXNet.""" homepage = "https://github.com/horovod" git = "https://github.com/horovod/horovod.git" maintainers = ['adamjstewart', 'aweits', 'tgaddair'] version('master', branch='master', submodules=True) version('0.20.3', tag='v0.20.3', submodules=True) version('0.20.2', tag='v0.20.2', submodules=True) version('0.20.1', tag='v0.20.1', submodules=True) version('0.20.0', tag='v0.20.0', submodules=True) version('0.19.5', tag='v0.19.5', submodules=True) version('0.19.4', tag='v0.19.4', submodules=True) version('0.19.3', tag='v0.19.3', submodules=True) version('0.19.2', tag='v0.19.2', submodules=True) version('0.19.1', tag='v0.19.1', submodules=True) version('0.19.0', tag='v0.19.0', submodules=True) version('0.18.2', tag='v0.18.2', submodules=True) version('0.18.1', tag='v0.18.1', submodules=True) version('0.18.0', tag='v0.18.0', submodules=True) version('0.17.1', tag='v0.17.1', submodules=True) version('0.17.0', tag='v0.17.0', submodules=True) version('0.16.4', tag='v0.16.4', submodules=True) version('0.16.3', tag='v0.16.3', submodules=True) version('0.16.2', tag='v0.16.2', submodules=True) # https://github.com/horovod/horovod/blob/master/docs/install.rst variant('frameworks', default='pytorch', description='Deep learning frameworks to build support for', values=('tensorflow', 'pytorch', 'mxnet', 'keras', 'spark', 'ray'), multi=True) variant('controllers', default='mpi', description='Controllers to coordinate work between processes', values=('mpi', 'gloo'), multi=True) variant('tensor_ops', default='nccl', description='Framework to use for GPU/CPU operations', values=('nccl', 'mpi', 'gloo', 'ccl'), multi=False) variant('cuda', default=True, description='Build with CUDA') variant('rocm', default=False, description='Build with ROCm') # Required dependencies depends_on('python@3.6:', type=('build', 'run'), when='@0.20:') depends_on('py-setuptools', type='build') depends_on('py-cloudpickle', type=('build', 'run')) depends_on('py-psutil', type=('build', 'run')) depends_on('py-pyyaml', type=('build', 'run')) depends_on('py-six', type=('build', 'run'), when='@:0.19') depends_on('py-dataclasses', type=('build', 'run'), when='@0.20: ^python@:3.6') # Framework dependencies depends_on('py-tensorflow@1.1.0:', type=('build', 'link', 'run'), when='frameworks=tensorflow') depends_on('py-tensorflow@1.15:', type=('build', 'link', 'run'), when='frameworks=tensorflow @0.20:') depends_on('py-torch@0.4.0:', type=('build', 'link', 'run'), when='frameworks=pytorch') depends_on('py-torch@1.2:', type=('build', 'link', 'run'), when='frameworks=pytorch @0.20:') depends_on('py-torchvision', type=('build', 'run'), when='frameworks=pytorch @:0.19.1') depends_on('py-cffi@1.4.0:', type=('build', 'run'), when='frameworks=pytorch') depends_on('mxnet@1.4.1:+python', type=('build', 'link', 'run'), when='frameworks=mxnet') depends_on('py-keras@2.0.8,2.1.2:', type=('build', 'run'), when='frameworks=keras') depends_on('py-h5py@2.9:', type=('build', 'run'), when='frameworks=spark') depends_on('py-numpy', type=('build', 'run'), when='frameworks=spark') depends_on('py-petastorm@0.8.2', type=('build', 'run'), when='frameworks=spark @:0.19.1') depends_on('py-petastorm@0.9.0:', type=('build', 'run'), when='frameworks=spark @0.19.2:') depends_on('py-pyarrow@0.15.0:', type=('build', 'run'), when='frameworks=spark') depends_on('py-pyspark@2.3.2:', type=('build', 'run'), when='frameworks=spark') depends_on('py-ray', type=('build', 'run'), when='frameworks=ray') # Build dependencies depends_on('cmake@2.8.12:', type='build', when='@0.20:') depends_on('pkgconfig', type='build') # Controller dependencies depends_on('mpi', when='controllers=mpi') # There does not appear to be a way to use an external Gloo installation depends_on('cmake', type='build', when='controllers=gloo') depends_on('libuv@1.26:', when='controllers=gloo platform=darwin') # Tensor Operations dependencies depends_on('nccl@2:', when='tensor_ops=nccl') depends_on('mpi', when='tensor_ops=mpi') # There does not appear to be a way to use an external Gloo installation depends_on('cmake', type='build', when='tensor_ops=gloo') # Test dependencies depends_on('py-mock', type='test') depends_on('py-pytest', type='test') depends_on('py-pytest-forked', type='test') depends_on('py-parameterized', type='test', when='@0.20:') conflicts('cuda_arch=none', when='+cuda', msg='Must specify CUDA compute capabilities of your GPU, see ' 'https://developer.nvidia.com/cuda-gpus') conflicts('tensor_ops=nccl', when='~cuda~rocm', msg='NCCL requires either CUDA or ROCm support') conflicts('frameworks=ray', when='@:0.19', msg='Ray integration was added in 0.20.X') conflicts('controllers=gloo', when='@:0.20.0 platform=darwin', msg='Gloo cannot be compiled on MacOS') # https://github.com/horovod/horovod/pull/1835 patch('fma.patch', when='@0.19.0:0.19.1') def setup_build_environment(self, env): # https://github.com/horovod/horovod/blob/master/docs/install.rst#environment-variables # Build system env.set('PKG_CONFIG_EXECUTABLE', self.spec['pkgconfig'].prefix.bin.join('pkg-config')) if '^cmake' in self.spec: env.set('HOROVOD_CMAKE', self.spec['cmake'].command.path) env.set('MAKEFLAGS', '-j{0}'.format(make_jobs)) # Frameworks if 'frameworks=tensorflow' in self.spec: env.set('HOROVOD_WITH_TENSORFLOW', 1) else: env.set('HOROVOD_WITHOUT_TENSORFLOW', 1) if 'frameworks=pytorch' in self.spec: env.set('HOROVOD_WITH_PYTORCH', 1) else: env.set('HOROVOD_WITHOUT_PYTORCH', 1) if 'frameworks=mxnet' in self.spec: env.set('HOROVOD_WITH_MXNET', 1) else: env.set('HOROVOD_WITHOUT_MXNET', 1) # Controllers if 'controllers=mpi' in self.spec: env.set('HOROVOD_WITH_MPI', 1) else: env.set('HOROVOD_WITHOUT_MPI', 1) if 'controllers=gloo' in self.spec: env.set('HOROVOD_WITH_GLOO', 1) else: env.set('HOROVOD_WITHOUT_GLOO', 1) # Tensor Operations if 'tensor_ops=nccl' in self.spec: env.set('HOROVOD_GPU_ALLREDUCE', 'NCCL') env.set('HOROVOD_GPU_ALLGATHER', 'NCCL') env.set('HOROVOD_GPU_BROADCAST', 'NCCL') env.set('HOROVOD_NCCL_HOME', self.spec['nccl'].prefix) env.set('HOROVOD_NCCL_INCLUDE', self.spec['nccl'].headers.directories[0]) env.set('HOROVOD_NCCL_LIB', self.spec['nccl'].libs.directories[0]) if '+cuda' in self.spec: env.set('HOROVOD_GPU', 'CUDA') env.set('HOROVOD_CUDA_HOME', self.spec['cuda'].prefix) cuda_cc_list = ','.join(self.spec.variants['cuda_arch'].value) env.set('HOROVOD_BUILD_CUDA_CC_LIST', cuda_cc_list) env.set('HOROVOD_CUDA_INCLUDE', self.spec['cuda'].headers.directories[0]) env.set('HOROVOD_CUDA_LIB', self.spec['cuda'].libs.directories[0]) elif '+rocm' in self.spec: env.set('HOROVOD_GPU', 'ROCM') # env.set('HOROVOD_ROCM_HOME', self.spec['rocm'].prefix) else: env.set('HOROVOD_CPU_OPERATIONS', self.spec.variants['tensor_ops'].value.upper()) @run_after('install') @on_package_attributes(run_tests=True) def install_test(self): horovodrun = Executable(self.prefix.bin.horovodrun) horovodrun('--check-build')
48.771429
107
0.607264
8afd6bc097e9f19cf40204df2731a62a61475884
3,504
py
Python
airflow/contrib/sensors/bash_sensor.py
shrutimantri/airflow
61eaaacd20ab0f743786df895cf8f232b3b2a48c
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
15
2017-04-06T09:01:50.000Z
2021-10-02T13:54:31.000Z
airflow/contrib/sensors/bash_sensor.py
shrutimantri/airflow
61eaaacd20ab0f743786df895cf8f232b3b2a48c
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
26
2019-08-05T13:44:11.000Z
2022-03-30T10:06:18.000Z
airflow/contrib/sensors/bash_sensor.py
shrutimantri/airflow
61eaaacd20ab0f743786df895cf8f232b3b2a48c
[ "Apache-2.0", "BSD-2-Clause", "MIT", "ECL-2.0", "BSD-3-Clause" ]
21
2017-08-20T03:01:05.000Z
2021-09-07T06:47:51.000Z
# -*- coding: utf-8 -*- # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. from builtins import bytes import os from subprocess import Popen, STDOUT, PIPE from tempfile import gettempdir, NamedTemporaryFile from airflow.utils.decorators import apply_defaults from airflow.sensors.base_sensor_operator import BaseSensorOperator from airflow.utils.file import TemporaryDirectory class BashSensor(BaseSensorOperator): """ Executes a bash command/script and returns True if and only if the return code is 0. :param bash_command: The command, set of commands or reference to a bash script (must be '.sh') to be executed. :type bash_command: str :param env: If env is not None, it must be a mapping that defines the environment variables for the new process; these are used instead of inheriting the current process environment, which is the default behavior. (templated) :type env: dict :param output_encoding: output encoding of bash command. :type output_encoding: str """ template_fields = ('bash_command', 'env') @apply_defaults def __init__(self, bash_command, env=None, output_encoding='utf-8', *args, **kwargs): super(BashSensor, self).__init__(*args, **kwargs) self.bash_command = bash_command self.env = env self.output_encoding = output_encoding def poke(self, context): """ Execute the bash command in a temporary directory which will be cleaned afterwards """ bash_command = self.bash_command self.log.info("Tmp dir root location: \n %s", gettempdir()) with TemporaryDirectory(prefix='airflowtmp') as tmp_dir: with NamedTemporaryFile(dir=tmp_dir, prefix=self.task_id) as f: f.write(bytes(bash_command, 'utf_8')) f.flush() fname = f.name script_location = tmp_dir + "/" + fname self.log.info("Temporary script location: %s", script_location) self.log.info("Running command: %s", bash_command) sp = Popen( ['bash', fname], stdout=PIPE, stderr=STDOUT, close_fds=True, cwd=tmp_dir, env=self.env, preexec_fn=os.setsid) self.sp = sp self.log.info("Output:") for line in iter(sp.stdout.readline, b''): line = line.decode(self.output_encoding).strip() self.log.info(line) sp.wait() self.log.info("Command exited with return code %s", sp.returncode) return not sp.returncode
38.505495
82
0.642409
0c0f7ac9a8193aa57d2942234da43ed0cb651bce
948
py
Python
statssite/home/www-data/stats/stats.py
tigran-a/ACDCStats
45daaba3149535face316e6c6e117409ae2f9cbf
[ "Apache-2.0" ]
null
null
null
statssite/home/www-data/stats/stats.py
tigran-a/ACDCStats
45daaba3149535face316e6c6e117409ae2f9cbf
[ "Apache-2.0" ]
null
null
null
statssite/home/www-data/stats/stats.py
tigran-a/ACDCStats
45daaba3149535face316e6c6e117409ae2f9cbf
[ "Apache-2.0" ]
null
null
null
#!/usr/bin/env python3 """ (c) Copyright 2015 Tigran Avanesov, SnT, University of Luxembourg Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ from flask import Flask, Blueprint import flask import ddata import frontpage app = Flask(__name__) app.register_blueprint(ddata.databp, url_prefix='/data') app.register_blueprint(frontpage.fpbp, url_prefix='/stats') if __name__ =='__main__': print(app.url_map) app.run(debug=True)
30.580645
75
0.748945
dd21a974c05172c9ba3cce52ff49f8ea3d160c6d
2,393
py
Python
app/storage/dynamodb_api.py
ONSdigital/census-survey-runner
9f8cd3d664db5c5b49d348bdf48c58d1a3492aab
[ "MIT" ]
null
null
null
app/storage/dynamodb_api.py
ONSdigital/census-survey-runner
9f8cd3d664db5c5b49d348bdf48c58d1a3492aab
[ "MIT" ]
3
2018-10-10T08:19:07.000Z
2018-10-29T11:43:08.000Z
app/storage/dynamodb_api.py
ONSdigital/census-survey-runner
9f8cd3d664db5c5b49d348bdf48c58d1a3492aab
[ "MIT" ]
1
2021-04-11T08:04:22.000Z
2021-04-11T08:04:22.000Z
from botocore.exceptions import ClientError from flask import current_app from app.data_model import app_models from app.storage.errors import ItemAlreadyExistsError TABLE_CONFIG = { app_models.SubmittedResponse: { 'key_field': 'tx_id', 'table_name_key': 'EQ_SUBMITTED_RESPONSES_TABLE_NAME', 'schema': app_models.SubmittedResponseSchema, }, app_models.QuestionnaireState: { 'key_field': 'user_id', 'table_name_key': 'EQ_QUESTIONNAIRE_STATE_TABLE_NAME', 'schema': app_models.QuestionnaireStateSchema, }, app_models.EQSession: { 'key_field': 'eq_session_id', 'table_name_key': 'EQ_SESSION_TABLE_NAME', 'schema': app_models.EQSessionSchema, }, app_models.UsedJtiClaim: { 'key_field': 'jti_claim', 'table_name_key': 'EQ_USED_JTI_CLAIM_TABLE_NAME', 'schema': app_models.UsedJtiClaimSchema, }, } def put(model, overwrite): config = TABLE_CONFIG[type(model)] schema = config['schema'](strict=True) table = get_table(config) key_field = config['key_field'] item, _ = schema.dump(model) put_kwargs = {'Item': item} if not overwrite: put_kwargs['ConditionExpression'] = 'attribute_not_exists({key_field})'.format(key_field=key_field) try: response = table.put_item(**put_kwargs)['ResponseMetadata']['HTTPStatusCode'] return response == 200 except ClientError as e: if e.response['Error']['Code'] == 'ConditionalCheckFailedException': raise ItemAlreadyExistsError() from e raise # pragma: no cover def get_by_key(model_type, key_value): config = TABLE_CONFIG[model_type] schema = config['schema'](strict=True) table = get_table(config) key = {config['key_field']: key_value} response = table.get_item(Key=key, ConsistentRead=True) item = response.get('Item', None) if item: model, _ = schema.load(item) return model def delete(model): config = TABLE_CONFIG[type(model)] table = get_table(config) key_field = config['key_field'] key = {key_field: getattr(model, key_field)} response = table.delete_item(Key=key) item = response.get('Item', None) return item def get_table(config): table_name = current_app.config[config['table_name_key']] return current_app.eq['dynamodb'].Table(table_name)
29.54321
107
0.67781
f9d355acd71860e07be80e51cd42d1446caf66da
2,304
py
Python
setup.py
rfk/playitagainsam
75833222438638b7d7860032a928a6575c48e0b5
[ "MIT" ]
113
2015-01-09T05:41:43.000Z
2021-07-18T19:34:26.000Z
setup.py
rfk/playitagainsam
75833222438638b7d7860032a928a6575c48e0b5
[ "MIT" ]
14
2015-02-11T20:24:34.000Z
2022-01-03T10:34:59.000Z
setup.py
rfk/playitagainsam
75833222438638b7d7860032a928a6575c48e0b5
[ "MIT" ]
8
2015-02-11T19:26:32.000Z
2019-08-29T06:55:40.000Z
# # This is the setuptools script for "playitagainsam". # Originally developed by Ryan Kelly, 2012. # # This script is placed in the public domain. # import os import sys setup_kwds = {} # Use setuptools is available, so we have `python setup.py test`. # We also need it for 2to3 integration on python3. # Otherwise, fall back to plain old distutils. try: from setuptools import setup except ImportError: if sys.version_info > (3,): raise RuntimeError("python3 support requires setuptools") from distutils.core import setup else: setup_kwds["test_suite"] = "playitagainsam.tests" HERE = os.path.abspath(os.path.dirname(__file__)) # Extract the docstring and version declaration from the module. # To avoid errors due to missing dependencies or bad python versions, # we explicitly read the file contents up to the end of the version # delcaration, then exec it ourselves. src = open(os.path.join(HERE, "playitagainsam", "__init__.py")) info = {} lines = [] for ln in src: lines.append(ln) if "__version__" in ln: for ln in src: if "__version__" not in ln: break lines.append(ln) break exec("".join(lines),info) NAME = "playitagainsam" VERSION = info["__version__"] DESCRIPTION = "record and replay interactive terminal sessions" LONG_DESC = info["__doc__"] AUTHOR = "Ryan Kelly" AUTHOR_EMAIL = "ryan@rfk.id.au" URL="https://github.com/rfk/playitagainsam" LICENSE = "MIT" KEYWORDS = "shell record presentation tutorial" CLASSIFIERS = [ "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "License :: OSI Approved", "License :: OSI Approved :: MIT License", "Development Status :: 4 - Beta", "Intended Audience :: Developers", ] setup(name=NAME, version=VERSION, author=AUTHOR, author_email=AUTHOR_EMAIL, url=URL, description=DESCRIPTION, long_description=LONG_DESC, license=LICENSE, keywords=KEYWORDS, packages=["playitagainsam"], scripts=["scripts/pias"], install_requires=["psutil>=2.0", "six"], classifiers=CLASSIFIERS, **setup_kwds )
28.444444
70
0.674479