blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
69
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
63
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.91k
686M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
220 values
src_encoding
stringclasses
30 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
2
10.3M
extension
stringclasses
257 values
content
stringlengths
2
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
212
2e9cb640caa292cf1e0dba0d93469495560e9db4
3144e03878ae363e4e13b9301e660eb037ac1194
/classes.py
032bb9d596ff7479a022e20fb20a94427f91a50d
[]
no_license
ManuelBerrueta/Python_Samples
5360568672bb5c72d15c0d8ded6946f8cfbf5565
30a3d062d2b9739fc9144ea52392af393b4d1499
refs/heads/master
2021-05-10T10:06:10.366956
2018-01-25T17:57:12
2018-01-25T17:57:12
118,947,764
0
0
null
null
null
null
UTF-8
Python
false
false
565
py
class Person: def __init__(self, name, hair_color, height): self.name = name self.hair_color = hair_color self.height = height def print_name(self): print(self.name) def print_height(self): print(self.height) def print_hair_color(self): print(self.hair_color) Manuel = Person("Manuel Berrueta", "brown", "6 ft") Pompis = Person("El Papi", "negro", "7 ft") Manuel.print_hair_color() Manuel.print_height() Manuel.print_name() Pompis.print_hair_color() Pompis.print_height() Pompis.print_name()
[ "manuelberrueta@gmail.com" ]
manuelberrueta@gmail.com
16e7159ce168a3a5cfb1bcc18a569e443c8d1831
cc5becbedc6cdf9d2f49ffa40855af44d01398ff
/tvae/data/imagenet.py
7526676d918ab938c071934d78e6f3314892daad
[ "MIT" ]
permissive
akandykeller/CategorySelectiveTVAE
ad7f16beeed3a77886629fe74a393b0e32385522
30eb0a20ba1f0fbca6d58d642b84d4c025cf99ae
refs/heads/master
2023-09-04T06:59:29.816738
2021-10-25T10:52:44
2021-10-25T10:52:44
420,985,525
4
1
null
null
null
null
UTF-8
Python
false
false
4,451
py
import os import torch from torch.utils.data import DataLoader import torchvision.datasets as sets import torchvision.transforms as transforms import numpy as np def get_mean_std(dir, ratio=0.01): mean = [0.48300076, 0.45126104, 0.3998704] std = [0.26990137, 0.26078254, 0.27288908] return mean, std class Imagenet_Preprocessor: def __init__(self, config, resize=256, crop=224): self.train_datadir = config['train_datadir'] self.test_obj_datadir= config['test_obj_datadir'] self.test_other_datadir = config['test_other_datadir'] self.batch_size = config['batch_size'] self.seed = config['seed'] self.resize = resize self.crop = crop print("Computing Training Mean") self.mean, self.std = get_mean_std(self.train_datadir, ratio=0.01) self.transform = transforms.Compose([ transforms.Resize(resize), transforms.RandomResizedCrop(crop), transforms.ToTensor(), transforms.Normalize(mean=self.mean, std=self.std), ]) def get_dataloaders(self): print("Loading datasets") train_set = sets.ImageFolder(self.train_datadir, self.transform) test_obj_set = sets.ImageFolder(self.test_obj_datadir, self.transform) test_other_set = sets.ImageFolder(self.test_other_datadir, self.transform) kwargs = {'num_workers': 50, 'pin_memory': True} if torch.cuda.is_available() else {} train_loader = DataLoader(train_set, batch_size=self.batch_size, shuffle=True, drop_last=True, **kwargs) test_obj_loader = DataLoader(test_obj_set, batch_size=self.batch_size, shuffle=False, drop_last=False, **kwargs) test_other_loader = DataLoader(test_other_set, batch_size=self.batch_size, shuffle=False, drop_last=False, **kwargs) return train_loader, test_obj_loader, test_other_loader class Multiset_Preprocessor: def __init__(self, config, resize=256, crop=224): self.train_datadir = config['train_datadir'] self.test_datadirs = config['test_datadirs'] self.batch_size = config['batch_size'] self.seed = config['seed'] self.resize = resize self.crop = crop print("Computing Training Mean") self.mean, self.std = get_mean_std(self.train_datadir, ratio=0.01) self.transform = transforms.Compose([ transforms.Resize(resize), transforms.RandomResizedCrop(crop), transforms.ToTensor(), transforms.Normalize(mean=self.mean, std=self.std), ]) self.test_transform = transforms.Compose([ transforms.Resize(crop), transforms.RandomResizedCrop(crop), transforms.ToTensor(), transforms.Normalize(mean=self.mean, std=self.std), ]) def get_dataloaders(self): print("Loading datasets") kwargs = {'num_workers': 50, 'pin_memory': True} if torch.cuda.is_available() else {} print(f"Train set: {self.train_datadir}") train_set = sets.ImageFolder(self.train_datadir, self.transform) train_loader = DataLoader(train_set, batch_size=self.batch_size, shuffle=True, drop_last=True, **kwargs) test_loaders = [] for name, dd in self.test_datadirs: print(f"Test Set {name}: {dd}") test_set = sets.ImageFolder(dd, self.test_transform) test_loaders.append(DataLoader(test_set, batch_size=self.batch_size, shuffle=False, drop_last=False, **kwargs)) return train_loader, test_loaders
[ "akandykeller@gmail.com" ]
akandykeller@gmail.com
94d1d05fb8d57d78464d457f6f5b3b559ec2ea52
93dc746360d718d25335a842c41835718314f15b
/Events/models.py
42f076e48c63f1c903ff7e2071d64bf24e43cebf
[]
no_license
lindajoy/Django-admin
9a56c102e0103fb71700f1718e57d6d43548c3fe
4cc69c364ed4e9ee8235c113971791dc3095c833
refs/heads/master
2020-07-23T11:34:20.672332
2019-09-10T11:46:15
2019-09-10T11:46:15
207,544,732
1
0
null
null
null
null
UTF-8
Python
false
false
854
py
from django.db import models # Create your models here. from entities.models import Hero, Villain class Epic(models.Model): name = models.CharField(max_length=255) participating_heroes = models.ManyToManyField(Hero) participating_villains = models.ManyToManyField(Villain) class Event(models.Model): epic = models.ForeignKey(Epic, on_delete=models.CASCADE) details = models.TextField() years_ago = models.PositiveIntegerField() class EventHero(models.Model): event = models.ForeignKey(Event, on_delete=models.CASCADE) hero = models.ForeignKey(Hero, on_delete=models.CASCADE) is_primary = models.BooleanField() class EventVillain(models.Model): event = models.ForeignKey(Event, on_delete=models.CASCADE) hero = models.ForeignKey(Villain, on_delete=models.CASCADE) is_primary = models.BooleanField()
[ "wawirajoy98@gmail.com" ]
wawirajoy98@gmail.com
de342328c767ebf5a39dcc39077019c9f9bffd9e
c61eb1a59f66d36ad0c2a3dffc172614d9259623
/week6/github_crowler.py
b854b6a448bfb82d3dbfe299708f4802df929cab
[ "BSD-3-Clause" ]
permissive
sevgo/Programming101
d8361a057f78bc91110082584c7d4cbc05746f10
ac25c4d9695563b449a629c60ec77a739c9f5be3
refs/heads/master
2021-09-28T16:52:22.290888
2021-09-16T07:12:53
2021-09-16T07:12:53
30,528,205
0
0
BSD-3-Clause
2021-09-16T07:12:54
2015-02-09T09:28:31
Python
UTF-8
Python
false
false
638
py
#!/usr/bin/env python3 from graf import Graph import requests as _req import json def github_auth(path): with open(path, 'r') as fd: cred = json.load(fd) return dict(cred) def github_request(credentials, user): _url = credentials['url'] _id = credentials['client_id'] _secret = credentials['client_secret'] github_user = _url + user github_token = '?client_id=' + _id + '&client_secret=' + _secret github_request = github_user + github_token print(github_request) return _req.get(github_request) if __name__ == "__main__": print(github_request(github_auth('cred.json'), 'sevgo'))
[ "sevgin.mustafov@outlook.com" ]
sevgin.mustafov@outlook.com
e9f3f9f51a547f3f2aa65e33127282f566ad08a5
39b8aa964883b2bde4349e0c9c38e3233c310548
/src/Implement Queue using Stacks.py
421724c0e798d0e25106167e09fd34fd1f92ff3e
[]
no_license
orifake/leetcode-python
053b82491e0b8d6197dd12d92eec5883211285db
8e375ebebe0a0285efefc33ed61afb22f41d0c75
refs/heads/master
2023-03-09T14:32:17.833456
2021-02-26T16:09:31
2021-02-26T16:09:31
264,466,829
0
0
null
null
null
null
UTF-8
Python
false
false
846
py
class MyQueue: def __init__(self): """ Initialize your data structure here. """ self.queue = [] def push(self, x: int) -> None: """ Push element x to the back of queue. """ return self.queue.append(x) def pop(self) -> int: """ Removes the element from in front of queue and returns that element. """ return self.queue.pop(0) def peek(self) -> int: """ Get the front element. """ return self.queue[0] def empty(self) -> bool: """ Returns whether the queue is empty. """ return len(self.queue) == 0 # Your MyQueue object will be instantiated and called as such: # obj = MyQueue() # obj.push(x) # param_2 = obj.pop() # param_3 = obj.peek() # param_4 = obj.empty()
[ "349758699@qq.com" ]
349758699@qq.com
a19c420591b67c5d8f0e3fdc69c2685ed23c4316
dda21525f82e7f1fa877aba4ce4cffc5d861851e
/demos/demo_hermite_gaussian_modes.py
0500e18d07277655cfca8e91e9d970bb996660bf
[]
no_license
Tektronica/laser_mode_locking
8063a216ea3483b36eeaaca7e1fb7644465f3208
d005278bc792c727211308090abdb1d0858df991
refs/heads/master
2023-05-28T23:32:43.278488
2021-06-11T18:22:15
2021-06-11T18:22:15
357,057,735
5
0
null
null
null
null
UTF-8
Python
false
false
1,106
py
import numpy as np import matplotlib.pyplot as plt # https://teaching.smp.uq.edu.au/scims/index.html#course=optics&lecture=hgbeam n = 0 # Beam order m = 3 # Beam order w0 = 2.0 # Beam waist k = 2 * np.pi / 532.0e-9 # Wavenumber of light zR = k * w0 ** 2.0 / 2 # Calculate the Rayleigh range # Setup the cartesian grid for the plot at plane z z = 0.0 [xx, yy] = np.meshgrid(np.linspace(-5, 5, num=250), np.linspace(-5, 5, num=250)) # default num is 50 def hermiteH(n, x): if n == 0: return 1 elif n == 1: return 2 * x else: return 2 * x * hermiteH(n - 1, x) - 2 * (n - 1) * hermiteH(n - 2, x) # Gaussian Distribution for TEM00 U00 = 1.0 / (1 + 1j * z / zR) * np.exp(-(xx ** 2 + yy ** 2) / w0 ** 2 / (1 + 1j * z / zR)) Hn = hermiteH(n, xx) Hm = hermiteH(m, yy) U = U00 * Hn * Hm * np.exp(-1j * (n + m) * np.arctan(z / zR)) plt.figure() plt.title('Intensity') plt.pcolor(abs(U) ** 2, cmap='plasma') # 'jet' or 'plasma' or 'nipy_spectral' plt.axis('equal') # plt.figure() # plt.title('Phase') # plt.pcolor(np.angle(U)**2); # plt.axis('equal') plt.show()
[ "ryalho@gmail.com" ]
ryalho@gmail.com
6c3687ed1872a7666f251b57fb8272135f864c3d
9ee08b2cd530fa2386a0e46d802b96a67d89a2c4
/assignment-2/edit-distance.py
a115357d3f5371889dd5cea765762853edfbbf1b
[ "Apache-2.0" ]
permissive
snamburi3/bioinformatics-course-CSE5800
25bd78f026c70d790f4f87f57e30ebfd85f3afd8
ff0257ed083c94b3b84e8a6c57801237c70b92bf
refs/heads/master
2021-02-03T21:29:29.378425
2020-02-27T15:04:48
2020-02-27T15:04:48
243,544,280
1
0
null
null
null
null
UTF-8
Python
false
false
1,417
py
#!/usr/bin/python import random from Bio import SeqIO import sys def create_matrix(i,j): d = [] for row in range(0,i): temp = [] for col in range(0,j): temp.append(None) d.append(temp) return(d) def levenshtein_formula(d,i, j, v,w): gap1 = d[i-1][j] + 1 gap2 = d[i][j-1] + 1 if str(v) == str(w): match_mismatch = d[i-1][j-1] else: match_mismatch = d[i-1][j-1] + 1 d[i][j] = min([gap1, gap2, match_mismatch]) #print([gap1, gap2, match_mismatch]) #print([d[i-1][j], d[i-1][j-1], d[i][j-1]]) return d def editDistance(x,y): ilen = len(x) jlen = len(y) d = create_matrix(ilen+1,jlen+1) ## initialize for i in range(0, len(d)): for j in range(0, len(d[i])): d[i][0] = i d[0][j] = j x= '#'+x y= '#'+y d[0][0]=0 # print(d) # print(d) # for i in range(0, len(d)): # for j in range(0, len(d[i])): # print(i, j, d[i][j],x[i],y[j]) # # print('%'*5) for i in range(1, len(d)): for j in range(1, len(d[i])): # print(d,i, j, x[i],y[j]) d = levenshtein_formula(d,i, j, x[i],y[j]) # print(d) print(d) return(d[i][j]) records = list(SeqIO.parse(sys.argv[1], "fasta")) x= (records[0].seq) # first record y = (records[-1].seq) # last record print(editDistance(x,y))
[ "sandeep.namburi@jax.org" ]
sandeep.namburi@jax.org
800bfc292b541e358ca68c9e6c326a8a80714489
6581a1c0b04af75ab7d386597ec436bd4937b6df
/pystache/tests/main.py
7342c91712b8528bdc016eb6c3da6dde4a999216
[ "MIT" ]
permissive
trenchmortar/pystache
f3ab3263ca0e990176306d3a0de9a4fba441c78f
cc262abf19cd90e34390d5ddb5db30d6f04620fa
refs/heads/master
2020-04-23T00:33:47.600879
2012-04-26T05:49:19
2012-04-26T05:49:19
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,685
py
# coding: utf-8 """ Exposes a run_tests() function that runs all tests in the project. This module is for our test console script. """ import os import sys import unittest from unittest import TestProgram import pystache from pystache.tests.common import PACKAGE_DIR, PROJECT_DIR, SPEC_TEST_DIR, UNITTEST_FILE_PREFIX from pystache.tests.common import get_module_names from pystache.tests.doctesting import get_doctests from pystache.tests.spectesting import get_spec_tests # If this command option is present, then the spec test and doctest directories # will be inserted if not provided. FROM_SOURCE_OPTION = "--from-source" def run_tests(sys_argv): """ Run all tests in the project. Arguments: sys_argv: a reference to sys.argv. """ should_source_exist = False spec_test_dir = None project_dir = None if len(sys_argv) > 1 and sys_argv[1] == FROM_SOURCE_OPTION: should_source_exist = True sys_argv.pop(1) # TODO: use logging module print "pystache: running tests: expecting source: %s" % should_source_exist try: # TODO: use optparse command options instead. spec_test_dir = sys_argv[1] sys_argv.pop(1) except IndexError: if should_source_exist: spec_test_dir = SPEC_TEST_DIR try: # TODO: use optparse command options instead. project_dir = sys_argv[1] sys_argv.pop(1) except IndexError: if should_source_exist: project_dir = PROJECT_DIR if len(sys_argv) <= 1 or sys_argv[-1].startswith("-"): # Then no explicit module or test names were provided, so # auto-detect all unit tests. module_names = _discover_test_modules(PACKAGE_DIR) sys_argv.extend(module_names) if project_dir is not None: # Add the current module for unit tests contained here. sys_argv.append(__name__) _PystacheTestProgram._text_doctest_dir = project_dir _PystacheTestProgram._spec_test_dir = spec_test_dir SetupTests.project_dir = project_dir # We pass None for the module because we do not want the unittest # module to resolve module names relative to a given module. # (This would require importing all of the unittest modules from # this module.) See the loadTestsFromName() method of the # unittest.TestLoader class for more details on this parameter. _PystacheTestProgram(argv=sys_argv, module=None) # No need to return since unitttest.main() exits. def _discover_test_modules(package_dir): """ Discover and return a sorted list of the names of unit-test modules. """ def is_unittest_module(path): file_name = os.path.basename(path) return file_name.startswith(UNITTEST_FILE_PREFIX) names = get_module_names(package_dir=package_dir, should_include=is_unittest_module) # This is a sanity check to ensure that the unit-test discovery # methods are working. if len(names) < 1: raise Exception("No unit-test modules found--\n in %s" % package_dir) return names class SetupTests(unittest.TestCase): """Tests about setup.py.""" project_dir = None def test_version(self): """ Test that setup.py's version matches the package's version. """ original_path = list(sys.path) sys.path.insert(0, self.project_dir) try: from setup import VERSION self.assertEqual(VERSION, pystache.__version__) finally: sys.path = original_path # The function unittest.main() is an alias for unittest.TestProgram's # constructor. TestProgram's constructor calls self.runTests() as its # final step, which expects self.test to be set. The constructor sets # the self.test attribute by calling one of self.testLoader's "loadTests" # methods prior to callint self.runTests(). Each loadTest method returns # a unittest.TestSuite instance. Thus, self.test is set to a TestSuite # instance prior to calling runTests(). class _PystacheTestProgram(TestProgram): """ Instantiating an instance of this class runs all tests. """ def runTests(self): # self.test is a unittest.TestSuite instance: # http://docs.python.org/library/unittest.html#unittest.TestSuite tests = self.test if self._text_doctest_dir is not None: doctest_suites = get_doctests(self._text_doctest_dir) tests.addTests(doctest_suites) if self._spec_test_dir is not None: spec_testcases = get_spec_tests(self._spec_test_dir) tests.addTests(spec_testcases) TestProgram.runTests(self)
[ "chris.jerdonek@gmail.com" ]
chris.jerdonek@gmail.com
214794ac9668f54a24bb2111beec268967f44235
133ba85d1325a31d6644b0f4c6974f4263f76355
/main.py
118f4b491a6e38ef57073d321c534cd1ab5c1992
[]
no_license
bedvision/Stones-and-dragon
3cef512b107b70cc56fd8e92fbd6021a04e6ab3b
7d069c3fd2ffc1889d28a2fc63192ddd4282df2e
refs/heads/main
2023-08-12T02:47:09.339530
2021-10-08T08:08:13
2021-10-08T08:08:13
414,899,680
1
0
null
null
null
null
UTF-8
Python
false
false
803
py
import pygame import random from config import * from Stone import * from Hero import * from Dragon import * from res_sprit import * random.seed(version = 2) pygame.init() pygame.mixer.init() screen = pygame.display.set_mode((WIDTH, HEIGHT)) pygame.display.set_caption("My Game") all_sprites = pygame.sprite.Group() clock = pygame.time.Clock() background = get_img('b.png') background_rect = background.get_rect() hero = Hero() dragon = Dragon() all_sprites.add(hero) all_sprites.add(dragon) while running: clock.tick(FPS) for event in pygame.event.get(): if event.type == pygame.QUIT: running = False all_sprites.update() screen.fill(BLACK) screen.blit(background, background_rect) all_sprites.draw(screen) pygame.display.flip() pygame.quit()
[ "noreply@github.com" ]
bedvision.noreply@github.com
ba9d6a124953eeb29b7d71eda11e4a3f6f323d8f
16e2cdd8ed03c08db86dc45d123031ccb73d667c
/room/admin.py
9299567e64516639c68f35d0ca060367a6f40d12
[]
no_license
morrismuturi/rentals
743f1b42cd9b1ee8425f7c0d350847018d83a3ca
01d40113a7896d9c407a4a901fe6394631511da4
refs/heads/master
2022-04-11T11:29:45.927682
2020-03-14T09:16:00
2020-03-14T09:16:00
241,281,074
0
0
null
null
null
null
UTF-8
Python
false
false
228
py
from django.contrib import admin from .models import RoomType,Purpose,Location,Room # Register your models here. admin.site.register(RoomType) admin.site.register(Purpose) admin.site.register(Location) admin.site.register(Room)
[ "morrismuturi54@gmail.com" ]
morrismuturi54@gmail.com
56182e2ae37363049e066c6eb3d9b63ce9e57d1f
22adce2d215077d6fbd68bfba6eb97c3ff01b154
/TipPooling/djangoproject/tips/migrations/0007_auto_20180502_0603.py
f46ce555ccc631941ec92609a397281518c92c5f
[]
no_license
amaxama/TipPoolingPythonDjango
d46690efa8e98990beef4e99edaf6663cb7d3eb6
504ca37698e4a2271e9000baf98efc486d081fb1
refs/heads/master
2020-03-14T05:49:19.862886
2018-05-22T04:08:44
2018-05-22T04:08:44
131,471,903
0
0
null
null
null
null
UTF-8
Python
false
false
14,198
py
# Generated by Django 2.0.4 on 2018-05-02 06:03 from decimal import Decimal from django.db import migrations, models import django.db.models.deletion import djmoney.models.fields class Migration(migrations.Migration): dependencies = [ ('tips', '0006_auto_20180501_0223'), ] operations = [ migrations.CreateModel( name='Day', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('date', models.DateField()), ('week_day', models.CharField(max_length=20)), ('cash_tips_currency', djmoney.models.fields.CurrencyField(choices=[('XUA', 'ADB Unit of Account'), ('AFN', 'Afghani'), ('DZD', 'Algerian Dinar'), ('ARS', 'Argentine Peso'), ('AMD', 'Armenian Dram'), ('AWG', 'Aruban Guilder'), ('AUD', 'Australian Dollar'), ('AZN', 'Azerbaijanian Manat'), ('BSD', 'Bahamian Dollar'), ('BHD', 'Bahraini Dinar'), ('THB', 'Baht'), ('PAB', 'Balboa'), ('BBD', 'Barbados Dollar'), ('BYN', 'Belarussian Ruble'), ('BYR', 'Belarussian Ruble'), ('BZD', 'Belize Dollar'), ('BMD', 'Bermudian Dollar (customarily known as Bermuda Dollar)'), ('BTN', 'Bhutanese ngultrum'), ('VEF', 'Bolivar Fuerte'), ('BOB', 'Boliviano'), ('XBA', 'Bond Markets Units European Composite Unit (EURCO)'), ('BRL', 'Brazilian Real'), ('BND', 'Brunei Dollar'), ('BGN', 'Bulgarian Lev'), ('BIF', 'Burundi Franc'), ('XOF', 'CFA Franc BCEAO'), ('XAF', 'CFA franc BEAC'), ('XPF', 'CFP Franc'), ('CAD', 'Canadian Dollar'), ('CVE', 'Cape Verde Escudo'), ('KYD', 'Cayman Islands Dollar'), ('CLP', 'Chilean peso'), ('XTS', 'Codes specifically reserved for testing purposes'), ('COP', 'Colombian peso'), ('KMF', 'Comoro Franc'), ('CDF', 'Congolese franc'), ('BAM', 'Convertible Marks'), ('NIO', 'Cordoba Oro'), ('CRC', 'Costa Rican Colon'), ('HRK', 'Croatian Kuna'), ('CUP', 'Cuban Peso'), ('CUC', 'Cuban convertible peso'), ('CZK', 'Czech Koruna'), ('GMD', 'Dalasi'), ('DKK', 'Danish Krone'), ('MKD', 'Denar'), ('DJF', 'Djibouti Franc'), ('STD', 'Dobra'), ('DOP', 'Dominican Peso'), ('VND', 'Dong'), ('XCD', 'East Caribbean Dollar'), ('EGP', 'Egyptian Pound'), ('SVC', 'El Salvador Colon'), ('ETB', 'Ethiopian Birr'), ('EUR', 'Euro'), ('XBB', 'European Monetary Unit (E.M.U.-6)'), ('XBD', 'European Unit of Account 17(E.U.A.-17)'), ('XBC', 'European Unit of Account 9(E.U.A.-9)'), ('FKP', 'Falkland Islands Pound'), ('FJD', 'Fiji Dollar'), ('HUF', 'Forint'), ('GHS', 'Ghana Cedi'), ('GIP', 'Gibraltar Pound'), ('XAU', 'Gold'), ('XFO', 'Gold-Franc'), ('PYG', 'Guarani'), ('GNF', 'Guinea Franc'), ('GYD', 'Guyana Dollar'), ('HTG', 'Haitian gourde'), ('HKD', 'Hong Kong Dollar'), ('UAH', 'Hryvnia'), ('ISK', 'Iceland Krona'), ('INR', 'Indian Rupee'), ('IRR', 'Iranian Rial'), ('IQD', 'Iraqi Dinar'), ('IMP', 'Isle of Man Pound'), ('JMD', 'Jamaican Dollar'), ('JOD', 'Jordanian Dinar'), ('KES', 'Kenyan Shilling'), ('PGK', 'Kina'), ('LAK', 'Kip'), ('KWD', 'Kuwaiti Dinar'), ('AOA', 'Kwanza'), ('MMK', 'Kyat'), ('GEL', 'Lari'), ('LVL', 'Latvian Lats'), ('LBP', 'Lebanese Pound'), ('ALL', 'Lek'), ('HNL', 'Lempira'), ('SLL', 'Leone'), ('LSL', 'Lesotho loti'), ('LRD', 'Liberian Dollar'), ('LYD', 'Libyan Dinar'), ('SZL', 'Lilangeni'), ('LTL', 'Lithuanian Litas'), ('MGA', 'Malagasy Ariary'), ('MWK', 'Malawian Kwacha'), ('MYR', 'Malaysian Ringgit'), ('TMM', 'Manat'), ('MUR', 'Mauritius Rupee'), ('MZN', 'Metical'), ('MXV', 'Mexican Unidad de Inversion (UDI)'), ('MXN', 'Mexican peso'), ('MDL', 'Moldovan Leu'), ('MAD', 'Moroccan Dirham'), ('BOV', 'Mvdol'), ('NGN', 'Naira'), ('ERN', 'Nakfa'), ('NAD', 'Namibian Dollar'), ('NPR', 'Nepalese Rupee'), ('ANG', 'Netherlands Antillian Guilder'), ('ILS', 'New Israeli Sheqel'), ('RON', 'New Leu'), ('TWD', 'New Taiwan Dollar'), ('NZD', 'New Zealand Dollar'), ('KPW', 'North Korean Won'), ('NOK', 'Norwegian Krone'), ('PEN', 'Nuevo Sol'), ('MRO', 'Ouguiya'), ('TOP', 'Paanga'), ('PKR', 'Pakistan Rupee'), ('XPD', 'Palladium'), ('MOP', 'Pataca'), ('PHP', 'Philippine Peso'), ('XPT', 'Platinum'), ('GBP', 'Pound Sterling'), ('BWP', 'Pula'), ('QAR', 'Qatari Rial'), ('GTQ', 'Quetzal'), ('ZAR', 'Rand'), ('OMR', 'Rial Omani'), ('KHR', 'Riel'), ('MVR', 'Rufiyaa'), ('IDR', 'Rupiah'), ('RUB', 'Russian Ruble'), ('RWF', 'Rwanda Franc'), ('XDR', 'SDR'), ('SHP', 'Saint Helena Pound'), ('SAR', 'Saudi Riyal'), ('RSD', 'Serbian Dinar'), ('SCR', 'Seychelles Rupee'), ('XAG', 'Silver'), ('SGD', 'Singapore Dollar'), ('SBD', 'Solomon Islands Dollar'), ('KGS', 'Som'), ('SOS', 'Somali Shilling'), ('TJS', 'Somoni'), ('SSP', 'South Sudanese Pound'), ('LKR', 'Sri Lanka Rupee'), ('XSU', 'Sucre'), ('SDG', 'Sudanese Pound'), ('SRD', 'Surinam Dollar'), ('SEK', 'Swedish Krona'), ('CHF', 'Swiss Franc'), ('SYP', 'Syrian Pound'), ('BDT', 'Taka'), ('WST', 'Tala'), ('TZS', 'Tanzanian Shilling'), ('KZT', 'Tenge'), ('XXX', 'The codes assigned for transactions where no currency is involved'), ('TTD', 'Trinidad and Tobago Dollar'), ('MNT', 'Tugrik'), ('TND', 'Tunisian Dinar'), ('TRY', 'Turkish Lira'), ('TMT', 'Turkmenistan New Manat'), ('TVD', 'Tuvalu dollar'), ('AED', 'UAE Dirham'), ('XFU', 'UIC-Franc'), ('USD', 'US Dollar'), ('USN', 'US Dollar (Next day)'), ('UGX', 'Uganda Shilling'), ('CLF', 'Unidad de Fomento'), ('COU', 'Unidad de Valor Real'), ('UYI', 'Uruguay Peso en Unidades Indexadas (URUIURUI)'), ('UYU', 'Uruguayan peso'), ('UZS', 'Uzbekistan Sum'), ('VUV', 'Vatu'), ('CHE', 'WIR Euro'), ('CHW', 'WIR Franc'), ('KRW', 'Won'), ('YER', 'Yemeni Rial'), ('JPY', 'Yen'), ('CNY', 'Yuan Renminbi'), ('ZMK', 'Zambian Kwacha'), ('ZMW', 'Zambian Kwacha'), ('ZWD', 'Zimbabwe Dollar A/06'), ('ZWN', 'Zimbabwe dollar A/08'), ('ZWL', 'Zimbabwe dollar A/09'), ('PLN', 'Zloty')], default='USD', editable=False, max_length=3)), ('cash_tips', djmoney.models.fields.MoneyField(decimal_places=2, default=Decimal('0.00'), default_currency='USD', max_digits=6)), ('cred_tips_currency', djmoney.models.fields.CurrencyField(choices=[('XUA', 'ADB Unit of Account'), ('AFN', 'Afghani'), ('DZD', 'Algerian Dinar'), ('ARS', 'Argentine Peso'), ('AMD', 'Armenian Dram'), ('AWG', 'Aruban Guilder'), ('AUD', 'Australian Dollar'), ('AZN', 'Azerbaijanian Manat'), ('BSD', 'Bahamian Dollar'), ('BHD', 'Bahraini Dinar'), ('THB', 'Baht'), ('PAB', 'Balboa'), ('BBD', 'Barbados Dollar'), ('BYN', 'Belarussian Ruble'), ('BYR', 'Belarussian Ruble'), ('BZD', 'Belize Dollar'), ('BMD', 'Bermudian Dollar (customarily known as Bermuda Dollar)'), ('BTN', 'Bhutanese ngultrum'), ('VEF', 'Bolivar Fuerte'), ('BOB', 'Boliviano'), ('XBA', 'Bond Markets Units European Composite Unit (EURCO)'), ('BRL', 'Brazilian Real'), ('BND', 'Brunei Dollar'), ('BGN', 'Bulgarian Lev'), ('BIF', 'Burundi Franc'), ('XOF', 'CFA Franc BCEAO'), ('XAF', 'CFA franc BEAC'), ('XPF', 'CFP Franc'), ('CAD', 'Canadian Dollar'), ('CVE', 'Cape Verde Escudo'), ('KYD', 'Cayman Islands Dollar'), ('CLP', 'Chilean peso'), ('XTS', 'Codes specifically reserved for testing purposes'), ('COP', 'Colombian peso'), ('KMF', 'Comoro Franc'), ('CDF', 'Congolese franc'), ('BAM', 'Convertible Marks'), ('NIO', 'Cordoba Oro'), ('CRC', 'Costa Rican Colon'), ('HRK', 'Croatian Kuna'), ('CUP', 'Cuban Peso'), ('CUC', 'Cuban convertible peso'), ('CZK', 'Czech Koruna'), ('GMD', 'Dalasi'), ('DKK', 'Danish Krone'), ('MKD', 'Denar'), ('DJF', 'Djibouti Franc'), ('STD', 'Dobra'), ('DOP', 'Dominican Peso'), ('VND', 'Dong'), ('XCD', 'East Caribbean Dollar'), ('EGP', 'Egyptian Pound'), ('SVC', 'El Salvador Colon'), ('ETB', 'Ethiopian Birr'), ('EUR', 'Euro'), ('XBB', 'European Monetary Unit (E.M.U.-6)'), ('XBD', 'European Unit of Account 17(E.U.A.-17)'), ('XBC', 'European Unit of Account 9(E.U.A.-9)'), ('FKP', 'Falkland Islands Pound'), ('FJD', 'Fiji Dollar'), ('HUF', 'Forint'), ('GHS', 'Ghana Cedi'), ('GIP', 'Gibraltar Pound'), ('XAU', 'Gold'), ('XFO', 'Gold-Franc'), ('PYG', 'Guarani'), ('GNF', 'Guinea Franc'), ('GYD', 'Guyana Dollar'), ('HTG', 'Haitian gourde'), ('HKD', 'Hong Kong Dollar'), ('UAH', 'Hryvnia'), ('ISK', 'Iceland Krona'), ('INR', 'Indian Rupee'), ('IRR', 'Iranian Rial'), ('IQD', 'Iraqi Dinar'), ('IMP', 'Isle of Man Pound'), ('JMD', 'Jamaican Dollar'), ('JOD', 'Jordanian Dinar'), ('KES', 'Kenyan Shilling'), ('PGK', 'Kina'), ('LAK', 'Kip'), ('KWD', 'Kuwaiti Dinar'), ('AOA', 'Kwanza'), ('MMK', 'Kyat'), ('GEL', 'Lari'), ('LVL', 'Latvian Lats'), ('LBP', 'Lebanese Pound'), ('ALL', 'Lek'), ('HNL', 'Lempira'), ('SLL', 'Leone'), ('LSL', 'Lesotho loti'), ('LRD', 'Liberian Dollar'), ('LYD', 'Libyan Dinar'), ('SZL', 'Lilangeni'), ('LTL', 'Lithuanian Litas'), ('MGA', 'Malagasy Ariary'), ('MWK', 'Malawian Kwacha'), ('MYR', 'Malaysian Ringgit'), ('TMM', 'Manat'), ('MUR', 'Mauritius Rupee'), ('MZN', 'Metical'), ('MXV', 'Mexican Unidad de Inversion (UDI)'), ('MXN', 'Mexican peso'), ('MDL', 'Moldovan Leu'), ('MAD', 'Moroccan Dirham'), ('BOV', 'Mvdol'), ('NGN', 'Naira'), ('ERN', 'Nakfa'), ('NAD', 'Namibian Dollar'), ('NPR', 'Nepalese Rupee'), ('ANG', 'Netherlands Antillian Guilder'), ('ILS', 'New Israeli Sheqel'), ('RON', 'New Leu'), ('TWD', 'New Taiwan Dollar'), ('NZD', 'New Zealand Dollar'), ('KPW', 'North Korean Won'), ('NOK', 'Norwegian Krone'), ('PEN', 'Nuevo Sol'), ('MRO', 'Ouguiya'), ('TOP', 'Paanga'), ('PKR', 'Pakistan Rupee'), ('XPD', 'Palladium'), ('MOP', 'Pataca'), ('PHP', 'Philippine Peso'), ('XPT', 'Platinum'), ('GBP', 'Pound Sterling'), ('BWP', 'Pula'), ('QAR', 'Qatari Rial'), ('GTQ', 'Quetzal'), ('ZAR', 'Rand'), ('OMR', 'Rial Omani'), ('KHR', 'Riel'), ('MVR', 'Rufiyaa'), ('IDR', 'Rupiah'), ('RUB', 'Russian Ruble'), ('RWF', 'Rwanda Franc'), ('XDR', 'SDR'), ('SHP', 'Saint Helena Pound'), ('SAR', 'Saudi Riyal'), ('RSD', 'Serbian Dinar'), ('SCR', 'Seychelles Rupee'), ('XAG', 'Silver'), ('SGD', 'Singapore Dollar'), ('SBD', 'Solomon Islands Dollar'), ('KGS', 'Som'), ('SOS', 'Somali Shilling'), ('TJS', 'Somoni'), ('SSP', 'South Sudanese Pound'), ('LKR', 'Sri Lanka Rupee'), ('XSU', 'Sucre'), ('SDG', 'Sudanese Pound'), ('SRD', 'Surinam Dollar'), ('SEK', 'Swedish Krona'), ('CHF', 'Swiss Franc'), ('SYP', 'Syrian Pound'), ('BDT', 'Taka'), ('WST', 'Tala'), ('TZS', 'Tanzanian Shilling'), ('KZT', 'Tenge'), ('XXX', 'The codes assigned for transactions where no currency is involved'), ('TTD', 'Trinidad and Tobago Dollar'), ('MNT', 'Tugrik'), ('TND', 'Tunisian Dinar'), ('TRY', 'Turkish Lira'), ('TMT', 'Turkmenistan New Manat'), ('TVD', 'Tuvalu dollar'), ('AED', 'UAE Dirham'), ('XFU', 'UIC-Franc'), ('USD', 'US Dollar'), ('USN', 'US Dollar (Next day)'), ('UGX', 'Uganda Shilling'), ('CLF', 'Unidad de Fomento'), ('COU', 'Unidad de Valor Real'), ('UYI', 'Uruguay Peso en Unidades Indexadas (URUIURUI)'), ('UYU', 'Uruguayan peso'), ('UZS', 'Uzbekistan Sum'), ('VUV', 'Vatu'), ('CHE', 'WIR Euro'), ('CHW', 'WIR Franc'), ('KRW', 'Won'), ('YER', 'Yemeni Rial'), ('JPY', 'Yen'), ('CNY', 'Yuan Renminbi'), ('ZMK', 'Zambian Kwacha'), ('ZMW', 'Zambian Kwacha'), ('ZWD', 'Zimbabwe Dollar A/06'), ('ZWN', 'Zimbabwe dollar A/08'), ('ZWL', 'Zimbabwe dollar A/09'), ('PLN', 'Zloty')], default='USD', editable=False, max_length=3)), ('cred_tips', djmoney.models.fields.MoneyField(decimal_places=2, default=Decimal('0.00'), default_currency='USD', max_digits=6)), ], ), migrations.CreateModel( name='Employee', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('first_name', models.CharField(max_length=45)), ('last_name', models.CharField(max_length=45)), ('total_hours', models.DecimalField(decimal_places=3, default=Decimal('0.000'), max_digits=6)), ], ), migrations.CreateModel( name='Location', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('location', models.CharField(max_length=30)), ], ), migrations.CreateModel( name='Shift', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('times', models.CharField(max_length=50)), ('role', models.CharField(max_length=40)), ('hours', models.DecimalField(decimal_places=3, default=Decimal('0.000'), max_digits=6)), ('day_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tips.Day')), ('employee_id', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tips.Employee')), ], ), migrations.RemoveField( model_name='tips', name='tuesCashTips', ), migrations.RemoveField( model_name='tips', name='tuesCredTips', ), migrations.RemoveField( model_name='tips', name='w7_Mon_Cash_Tips', ), migrations.RemoveField( model_name='tips', name='w7_Mon_Cash_Tips_currency', ), migrations.RemoveField( model_name='tips', name='w7_Mon_Cred_Tips', ), migrations.RemoveField( model_name='tips', name='w7_Mon_Cred_Tips_currency', ), migrations.RemoveField( model_name='tips', name='wee_Mon_Cash_Tips', ), migrations.RemoveField( model_name='tips', name='wee_Mon_Cash_Tips_currency', ), migrations.RemoveField( model_name='tips', name='wee_Mon_Cred_Tips', ), migrations.RemoveField( model_name='tips', name='wee_Mon_Cred_Tips_currency', ), migrations.AddField( model_name='location', name='tip_id', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tips.Tips'), ), migrations.AddField( model_name='day', name='location_id', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tips.Location'), ), ]
[ "maxam.anna@gmail.com" ]
maxam.anna@gmail.com
0455036ef8de11237b43f7dab845673f6387f1e3
2d66996672c75aa3edc4a66c298f29d78d475108
/data/Eirik/NTG-plot.py
d79af9504c055b769ed70b18a1897029f1c1c228
[ "MIT", "LicenseRef-scancode-public-domain", "CC-BY-4.0" ]
permissive
NordicESMhub/deep_python
388c626e6eec7554faaf1c964ca4ba396b8590e8
17bceda486dbbb94a8fc4773bbfa716a6d7e6cae
refs/heads/gh-pages
2020-04-21T12:11:57.897958
2019-04-13T16:11:16
2019-04-13T16:11:16
169,555,185
4
8
NOASSERTION
2019-04-04T09:15:55
2019-02-07T10:36:08
Jupyter Notebook
UTF-8
Python
false
false
4,683
py
import pandas as pd import matplotlib.pyplot as plt # import numpy as np import matplotlib.gridspec as gridspec from matplotlib.widgets import RectangleSelector import csv #=============================================================== #Files to read data from MCD = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-age-model-220219.xlsx", index_col=None, na_values=['NA'], parse_cols = "A")) Ti = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-mastercore-XRF.xlsx", index_col=None, na_values=['NA'], parse_cols = "N")) xrfdep = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-mastercore-XRF.xlsx", index_col=None, na_values=['NA'], parse_cols = "C")) Age = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-age-model-220219.xlsx", index_col=None, na_values=['NA'], parse_cols = "F")) # MSdepth = np.array(pd.read_csv(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-118-1av2-0-38-scan2.csv", index_col=None, na_values=['NA'], usecols = "Core Pos. (cm)")) # MSdata = np.array(pd.read_csv(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG-118-1av2-0-38-scan2.csv", index_col=None, na_values=['NA'], usecols = "Raw Data")) #=============================================================== #Figure details def cm2inch(*tupl): # Makes it possible to size figure in cm inch = 2.54 if isinstance(tupl[0], tuple): return tuple(i/inch for i in tupl[0]) else: return tuple(i/inch for i in tupl) fig, (ax1, ax2, ax3) = plt.subplots(ncols=3, sharey=True, sharex=False, figsize=cm2inch(30, 9.6)) #sharey makes all subplots dependent on same y-axis. This removes the scale numbers on all but the first one #=============================================================== # Subplots #Image # Subplot 1 - Age model ax1.plot(Age, MCD) ax1.set_title("Age model") ax1.set_ylabel("Depth (mm)") ax1.set_xlabel("Years cal. AD") ax1.invert_yaxis() #inverts y axis ax1.invert_xaxis() #inverts x axis #Subplot 2 - XRF ax2.plot(Ti, xrfdep) ax2.set_title("Titanium") ax2.set_ylabel("Depth (mm)") ax2.set_xlabel("Ti (cps)") ax2.invert_yaxis() #inverts y axis # # Subplot 3 - MS # ax3.plot(MSdata, MSdepth) # ax3.set_title("Magnetic Susceptibility") # ax3.set_ylabel("Depth (mm)") # ax3.set_xlabel("MS") # ax3.invert_yaxis() #inverts y axis # Subplot 4 - Age scale ax4 = ax1.twinx() # ax4 shares the x-axis with ax1 ymn = Age[0] # first element in Age array ymx = Age[-1] # last element in Age array ax4.set_ylim(ymin=ymx, ymax=ymn) # sets the limits of the secondary y-axis ax4.spines['left'].set_position(('axes', -0.3)) # Moves the secondary axis # ax4.yaxis.set_label_position('left') ax4.yaxis.set_ticks_position('left') ax4.set_ylabel("Years AD") # Subplot 5 - LOI # LOI = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG118-2of2-W-LOI.xls", index_col=None, na_values=['NA'], parse_cols = "N")) # LOIdepth = np.array(pd.read_excel(r"C:\Users\emballo\Google Drive\VIKINGS\Lakes\Nordbytjernet\1 Main data plotting\NTG118-2of2-W-LOI.xls", index_col=None, na_values=['NA'], parse_cols = "A")) # ax5.plot(LOI, LOIdepth) # ax5.set_title("LOI") # ax5.set_ylabel("Depth (mm)") # ax5.set_xlabel("LOI") # ax5.invert_yaxis() #inverts y axis # Figure attributes #ax1.patches.Rectangle((50,100),40,30,linewidth=1,edgecolor='r',facecolor='none') # ax2.patches.extend([plt.Rectangle((0.2,0.5),0.5,0.25, # fill=True, color='g', alpha=0.5, zorder=1000, # transform=fig.transFigure, figure=fig)]) #=============================================================== #Figure attributes ax1.margins(x=0,y=0) #removes the margin between bounding box and plot plt.subplots_adjust(wspace=0.5 ) # Tweak spacing between subplots to prevent labels from overlapping plt.show(block=True) # Print plot # par2.spines["right"].set_position(("axes", 1.2)) #moves the spine of the axis away from the actual plot # plt.savefig("NTG-compiled.svg", bbox_inches='tight')
[ "annefou@geo.uio.no" ]
annefou@geo.uio.no
15f633e272b1b92e4d97a869ad3ba15c12d17163
b1b86d8528df27d99ed56ed16f1ba15b5ae78661
/build_isolated/velodyne_pcl/catkin_generated/generate_cached_setup.py
4f904fedba7e034ad97a16d679350a13b75ec8ee
[]
no_license
gychen-n/match
8754ac128b43f81e00faf3ab2af160af70a1d4a3
ec91f19d104aa4a827c9f66d362f94fe44739cad
refs/heads/main
2023-04-09T19:56:55.507118
2021-04-15T13:39:02
2021-04-15T13:39:02
358,268,746
0
0
null
null
null
null
UTF-8
Python
false
false
2,688
py
# -*- coding: utf-8 -*- from __future__ import print_function import os import stat import sys # find the import for catkin's python package - either from source space or from an installed underlay if os.path.exists(os.path.join('/opt/ros/melodic/share/catkin/cmake', 'catkinConfig.cmake.in')): sys.path.insert(0, os.path.join('/opt/ros/melodic/share/catkin/cmake', '..', 'python')) try: from catkin.environment_cache import generate_environment_script except ImportError: # search for catkin package in all workspaces and prepend to path for workspace in '/home/gyc/match_ws/devel_isolated/velodyne_driver;/home/gyc/match_ws/devel_isolated/velodyne_msgs;/home/gyc/match_ws/devel_isolated/velodyne_laserscan;/home/gyc/match_ws/devel_isolated/velodyne;/home/gyc/match_ws/devel_isolated/slam_gmapping;/home/gyc/match_ws/devel_isolated/simulation_launch;/home/gyc/match_ws/devel_isolated/pointcloud_to_laserscan;/home/gyc/match_ws/devel_isolated/path_rviz_plugin;/home/gyc/match_ws/devel_isolated/path_server;/home/gyc/match_ws/devel_isolated/gmapping;/home/gyc/match_ws/devel_isolated/openslam_gmapping;/home/gyc/match_ws/devel_isolated/navigation;/home/gyc/match_ws/devel_isolated/move_base_flex;/home/gyc/match_ws/devel_isolated/mbf_simple_nav;/home/gyc/match_ws/devel_isolated/mbf_abstract_nav;/home/gyc/match_ws/devel_isolated/mbf_utility;/home/gyc/match_ws/devel_isolated/mbf_msgs;/home/gyc/match_ws/devel_isolated/mbf_abstract_core;/home/gyc/match_ws/devel_isolated/map_server;/home/gyc/match_ws/devel_isolated/location_fusion;/home/gyc/match_ws/devel_isolated/fake_localization;/home/gyc/match_ws/devel_isolated/dashgo_driver;/home/gyc/match_ws/devel_isolated/cartographer_rviz;/home/gyc/match_ws/devel_isolated/cartographer_ros;/home/gyc/match_ws/devel_isolated/cartographer_ros_msgs;/home/gyc/match_ws/devel_isolated/autolabor_test_launch;/home/gyc/match_ws/devel_isolated/autolabor_navigation_launch;/home/gyc/match_ws/devel_isolated/ah100b;/opt/ros/melodic'.split(';'): python_path = os.path.join(workspace, 'lib/python2.7/dist-packages') if os.path.isdir(os.path.join(python_path, 'catkin')): sys.path.insert(0, python_path) break from catkin.environment_cache import generate_environment_script code = generate_environment_script('/home/gyc/match_ws/devel_isolated/velodyne_pcl/env.sh') output_filename = '/home/gyc/match_ws/build_isolated/velodyne_pcl/catkin_generated/setup_cached.sh' with open(output_filename, 'w') as f: # print('Generate script for cached setup "%s"' % output_filename) f.write('\n'.join(code)) mode = os.stat(output_filename).st_mode os.chmod(output_filename, mode | stat.S_IXUSR)
[ "gyc@autolabor-host.autolabor-domain" ]
gyc@autolabor-host.autolabor-domain
74d53c2b672e5561fd977488a351b868c16f479d
e1202f950be0aa6f8531781bf23839eb1c2b54a8
/DAY_10/20419_지정_헿.py
1e81043df09e9189c6afd2a6d86733a37c4f6778
[]
no_license
KingSpongebob/Python-Study
2ea6f5b0782283a22be7be86b5dc2df361d1bf10
5ebed25efe7a471032b6b17e21352ea47d6077f8
refs/heads/master
2020-03-06T18:10:55.241874
2018-11-15T00:23:03
2018-11-15T00:23:03
127,002,077
0
0
null
null
null
null
UTF-8
Python
false
false
610
py
from selenium import webdriver #from selenium.webdriver.common.keys import Keys from openpyxl import Workbook driver = webdriver.Chrome('chromedriver') try: driver.get('https://www.wemakeprice.com') print(driver.title) wmp = driver.find_element_by_id('wrap_main_best_area') wmp_list = wmp.find_elements_by_tag_name('li') ex = Workbook() es = ex.active for wmp in wmp_list: wmp_title = wmp.find_element_by_class_name('tit_desc') print(wmp_title.text) print('-'*40) es.append([wmp_title.text]) ex.save('20419_지정_헿.xlsx') except Exception as e: print(e) finally: driver.close()
[ "kkingspongebob@gmail.com" ]
kkingspongebob@gmail.com
b3e302c5006276acceef94c292f99ec6b3392d90
b91461eade853a8e83d8d1148c416897391f50e9
/0x07-python-classes/mains/4main.py
b654295f9d454cfcbcd706734faf1b0eb43ece63
[]
no_license
rdsim8589/holbertonschool-higher_level_programming
3234a5638d7810743ec8ba976303d03512bc3340
772837801f80dcb5e11cf16d3118501050b5f15b
refs/heads/master
2021-04-29T10:01:19.097360
2017-05-04T23:01:39
2017-05-04T23:01:39
77,849,461
0
2
null
null
null
null
UTF-8
Python
false
false
779
py
#!/usr/bin/python3 Square = __import__('4-square').Square my_square = Square(89) print("Area: {} for size: {}".format(my_square.area(), my_square.size)) my_square.size = 3 print("Area: {} for size: {}".format(my_square.area(), my_square.size)) try: my_square.size = "5 feet" print("Area: {} for size: {}".format(my_square.area(), my_square.size)) except Exception as e: print(e) try: my_square = Square(-9) print("Area: {} for size: {}".format(my_square.area(), my_square.size)) except Exception as e: print(e) my_square.size = 3 print("Area: {} for size: {}".format(my_square.area(), my_square.size)) try: my_square.size = "5 feet" print("Area: {} for size: {}".format(my_square.area(), my_square.size)) except Exception as e: print(e)
[ "rdsim8589@gmail.com" ]
rdsim8589@gmail.com
668e81327764138e17dd182377c6261ac9586b50
a8b7abd626c70cc5048be2247eba844639a0dd89
/day11/bin/start.py
551d1fc91b61a48511910b5edfafe9446ef5fa2d
[]
no_license
binhy/homework
cfc2309cd436ca59669175f52018c05c72d560f7
f28c43d2dcc1346407a605509ce4c6f5d77fca12
refs/heads/master
2020-05-21T12:20:04.595993
2017-02-08T06:42:34
2017-02-08T06:42:34
49,244,524
0
0
null
null
null
null
UTF-8
Python
false
false
237
py
#!/usr/bin/python #coding=utf-8 __author__ = 'yaobin' import os,sys BASE_DIR=os.path.dirname(os.path.dirname(os.path.abspath(__file__))) sys.path.append(BASE_DIR) from modules.main import main if __name__ == '__main__': main()
[ "qwerty0113250159@126.com" ]
qwerty0113250159@126.com
d1b0a95e1fa3ea60aaa8fc930aa7961eb07c5aa2
242f7087b85ba57f203356e4594c37a590d7e6e1
/post_multiple.py
38caa145682fc7b446ff95ce5443cf3687c4f809
[]
no_license
leoTlr/ctf_logserver
0e2a8d5e9d8eaa9a105e76cdb392c9d835f70ecf
e9344c4e2254b8c267c84c92d1fdce4257aa3815
refs/heads/master
2020-04-24T03:58:59.946736
2019-06-09T18:38:21
2019-06-09T18:38:21
171,687,939
2
0
null
null
null
null
UTF-8
Python
false
false
2,407
py
#!/usr/bin/python # test script for ctf logserver # sends POST with log entries, grabs JWT from response and sends another POST with JWT import http.client from sys import argv, exit from itertools import count def usage(): print("usage: {} user [times=2]".format(argv[0])) print("make sure that there are no logfiles for user to test POSTing more logentries with recieved JWT") exit() if len(argv) != 2 and len(argv) != 3: usage() user = "" times = 2 try: user = str(argv[1]) if len(argv) == 3: times = int(argv[2]) if times < 2: usage() except: usage() entry_ctr = count(1,1) enext = entry_ctr.__next__ # first get a JWT by posting some logentries print("sending POST /"+user) conn = http.client.HTTPConnection("localhost", port=65333) body = "post_multiple.py: entry{}\npost_multiple.py: entry{}\n".format(enext(), enext()) headers={"Content-Length": len(body)} try: conn.request("POST", "/"+user, body=body, headers=headers) with conn.getresponse() as res1: if (res1.status == 200): jwt1 = res1.read() print("got 200 OK and a JWT") else: print("unexpected response:", res1.status, res1.reason, "cant continue") print("are you sure that no logs exist for given user?") exit() except Exception as e: print("error:", e) exit() # send another POST request with recieved JWT (or multiple other if times set) for _ in range(times-1): print("sending second POST /"+user+" with recieved JWT") conn = http.client.HTTPConnection("localhost", port=65333) body = "post_multiple.py: entry{}\npost_multiple.py: entry{}\n".format(enext(), enext()) headers["Authorization"] = "Bearer " + str(jwt1, "ascii") headers["Content-Length"] = len(body) try: conn.request("POST", "/"+user, body=body, headers=headers) with conn.getresponse() as res2: if (res2.status == 200): jwt2 = res2.read() print("got 200 OK and another JWT, same: ", True if jwt1 == jwt2 else False) else: print("unexpected response:", res2.status, res2.reason, "cant continue") exit() except Exception as e: print("error:", e) exit() print('--------token---------') print(str(jwt2, 'ascii')) print('----------------------') print("test succeeded")
[ "leo.teuchtler@hotmail.de" ]
leo.teuchtler@hotmail.de
984ba6efbb718940964814e10c43ede110431199
505870b83e9d3abb2488d45ae04fd1a2d521e830
/utils/apply_flipping.py
0af1a6eafab4815c3eca1abba5e62e82db97b0ae
[]
no_license
tanakatsu/padock_photo_classifier
8f2ebe792a4d2096640b674dd97e192aff551732
fbe6b6ebd44769a21482d229925e3d3549c507a6
refs/heads/master
2021-01-19T22:01:47.296532
2017-06-25T10:34:34
2017-06-25T10:34:34
88,742,083
0
0
null
null
null
null
UTF-8
Python
false
false
877
py
import os import argparse import re from PIL import Image, ImageOps parser = argparse.ArgumentParser() parser.add_argument('directory', type=str, action='store', help='target directory') parser.add_argument('--dryrun', action='store_true', default=False, help='dry-run flag') args = parser.parse_args() print('target directory=', args.directory) if args.dryrun: print('dryrun!') files = os.listdir(args.directory) files = [file for file in files if not re.match('^\.', file)] files = [file for file in files if ".flip." not in file] for file in files: filepath = os.path.join(args.directory, file) filename, ext = os.path.splitext(filepath) output_filename = "%s.flip%s" % (filename, ext) img = Image.open(filepath) mirror_img = ImageOps.mirror(img) if not args.dryrun: mirror_img.save(output_filename, 'JPEG') print(output_filename)
[ "tanakatsu1080@gmail.com" ]
tanakatsu1080@gmail.com
413503c12f4dc6734628644e7c8b0fb1e3e15539
aeec646a9a2feb6fbaac31d4548d9aa09ad125e3
/peer_module.py
879a6662404995a3a8da03457bae8f7f63f7be5e
[ "MIT" ]
permissive
hslee1539/p2p
c0a9798e6da54029373ddf3d2b74ff30dc27e567
c472271eff409ef345f29ef32f562a5f5e00d3ba
refs/heads/master
2020-07-18T14:45:33.260168
2019-09-10T07:45:45
2019-09-10T07:45:45
206,264,727
0
0
null
null
null
null
UTF-8
Python
false
false
3,674
py
import socket import threading import random import p2p class Peer: """""" ip : str controlPort : int connectionPorts : list service : str peerList : list maxConnection : int serverThreads : list clientThreads : list serverState : list running : bool controlSocket : socket.socket controlThread : threading.Thread def __init__(self, service : str, controlPort : int, connectionPorts : list, peerList = []): self.peerList = peerList self.service = service self.controlPort = controlPort self.connectionPorts = connectionPorts self.maxConnection = len(connectionPorts) self.ip = socket.gethostbyname(socket.getfqdn()) self.serverState = [False] * self.maxConnection def start(self): """""" self.running = True self.controlThread = threading.Thread(target=self._controlServer) self.controlThread.start() self.serverThreads = list(self._socketThreadGenerator(self._client)) self.clientThreads = list(self._socketThreadGenerator(self._client)) for serverThread in self.serverThreads: serverThread.start() for clientThread in self.clientThreads: clientThread.start() def _socketThreadGenerator(self, target : function): for index in range(self.maxConnection): yield threading.Thread(target=target, args=(index,)) def _findSleepServerIndex(self): for i in range(self.maxConnection): if(self.serverState[i] == False): return i return self.maxConnection def _controlServer(self): """컨트롤 서버가 연결 유지가 가능한 포트를 클라이언트에 알려주도록 운영합니다.""" with socket.socket() as sock: sock.bind((self.ip, self.controlPort)) sock.settimeout(1) sock.listen() while(self.running): try: clientSocket, address = sock.accept() except socket.timeout: continue clientSocket : socket.socket try: clientSocket.sendall(self.service.encode()) retval = clientSocket.recv(1024) if (self.service == retval.decode()): clientSocket.sendall(str(self.connectionPorts[self._findSleepServerIndex()]).encode()) except socket.timeout: pass finally: clientSocket.close() def _server(self, index : int): """""" with socket.socket() as sock: sock.bind((self.ip, self.connectionPorts[index])) sock.settimeout(1) sock.listen() while(self.running): try: self.serverState[index] = False clientSocket, address = sock.accept() except socket.timeout: continue clientSocket : socket.socket self.serverState[index] = True try: clientSocket.sendall(self.service.encode()) retval = clientSocket.recv() if (self.service == retval.decode()): except socket.timeout: pass finally: clientSocket.close() def _serverConnect(self): while (self.running): def _client(self, index : int): """"""
[ "qq1539@naver.com" ]
qq1539@naver.com
20052d2c038c157c669de8aa585fdb6a35e0f7b4
8d369c853cea867976d2564511340e9992fa5a88
/OpenImage.py
8aca5c2418a55dceb7a322b4a419e82c9359cd34
[]
no_license
danrustia11/rpi405x
b3d3b36aa5e1c45c48ba7fa9492a456d3c812507
c1b321027b7839af9d022fc162e414fd4ee2d80d
refs/heads/master
2020-06-11T14:10:09.097004
2017-12-17T09:18:34
2017-12-17T09:18:34
75,648,589
2
1
null
null
null
null
UTF-8
Python
false
false
122
py
import numpy as np import cv2 cv2.__version__ img = cv2.imread('image.jpg',0) cv2.imshow('display',img) cv2.waitKey(0)
[ "noreply@github.com" ]
danrustia11.noreply@github.com
3798c53a543f4d4a473795e6dedf9fbb1e0ac10f
0e9e948997a2d7c988ef72a3cece2eb926b5851c
/AS01.py
0f7de663bd0fdd53a254574ee98e4c7cbbbdadff
[]
no_license
chloe-wong/pythonchallenges
c41ac6b2d3956a9d935b5023762a7c12000987bd
9a4e7cbcc7de773c02f24be11f29b95918ad9dc7
refs/heads/master
2023-09-05T16:12:17.539434
2021-11-24T05:59:23
2021-11-24T05:59:23
287,415,153
0
0
null
null
null
null
UTF-8
Python
false
false
318
py
numbers = input("Input your numbers with spaces inbetween") nums = numbers.split() digits = len(nums) print(nums) for x in range(len(nums)): if x in range(len(nums)-1): if int(nums[x])> int(nums[x+1]): temp = nums[x] nums[x] = nums[x+1] nums[x+1] = temp print(nums)
[ "noreply@github.com" ]
chloe-wong.noreply@github.com
f9ece790eacbf46e95f1d3d07829381b2eea5b8c
83fd29fba65cd87e0162217a28b2298aad959a63
/venv/bin/easy_install-3.7
7d28bedd2ab1c7fb4902243f9f7ac3c2b2713d43
[]
no_license
ckim42/django-docs-tutorial
403feb792c29ff50d2c8d462511cdc6516b505a8
e79c2210d87748fa977120a13b1163c7fb467818
refs/heads/master
2022-04-06T23:17:53.344576
2020-02-18T05:26:51
2020-02-18T05:26:51
null
0
0
null
null
null
null
UTF-8
Python
false
false
273
7
#!/Users/cherishkim/Code/bew12/r-and-r/venv/bin/python3.7 # -*- coding: utf-8 -*- import re import sys from setuptools.command.easy_install import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main())
[ "cherish.kim@students.makeschool.com" ]
cherish.kim@students.makeschool.com
5b3279dba995f3daa5e8f35938604fee1efaaadd
6c9b3bce8889ff99c497c0904fb8f92fb3c1ab30
/api/user/resources.py
25f612f0b367d4ca3f6d9ba8910aafd1d1ad3336
[]
no_license
longdt19/base-backend
975f81ce00bbf6527aae8264505b60dbbaae3470
e666cb099de4ef69258f297beb1d5b85b0c15dbc
refs/heads/master
2022-12-22T02:12:14.437982
2018-11-08T10:16:11
2018-11-08T10:16:11
155,371,524
0
0
null
2022-12-08T01:15:52
2018-10-30T11:10:05
Python
UTF-8
Python
false
false
547
py
from api.common.base_resources import BaseResource from .forms import ( CreateUserForm, UserListForm ) from .business_logics import user_bl class UserResouce(BaseResource): POST_INPUT_SCHEMA = CreateUserForm() GET_INPUT_SCHEMA = UserListForm() def get(self): params = self.parse_request_params() return user_bl.get(**params) def post(self): params = self.parse_request_params() return user_bl.post(**params) RESOURCES = { '/user': { 'resource': UserResouce } }
[ "longdt@vccloud.vn" ]
longdt@vccloud.vn
d191b94824cb1322f4cb003a411743be6680c404
80eef13ae9bcf5116c0b40ff2c6eef5655b8ebd5
/多线程/协程.py
dd78b97d34cd34152cb63d04f62fd671f378c343
[]
no_license
shmily-xiao/python_study
8c53ff4c8f4bf7cd4990a7dc08a65adb300e7683
5bd1f7cf0e11345e18938b8c4439cca578e7d7d6
refs/heads/master
2021-01-24T07:55:03.872890
2019-03-20T13:04:38
2019-03-20T13:04:38
93,362,951
1
0
null
null
null
null
UTF-8
Python
false
false
443
py
# from bs4 import Beautifulsoup import requests import gevent from gevent import monkey, pool monkey.patch_all() jobs = [] links = [] p = pool.Pool(10) urls = [ 'http://www.google.com' ] def get_links(url): r = requests.get(url) if r.status_code == 200: print r.text # soup = Beautifulsoup(r.text) # links + soup.find_all('a') for url in urls: jobs.append(p.spawn(get_links, url)) gevent.joinall(jobs)
[ "wangzaijun1234@126.com" ]
wangzaijun1234@126.com
7f53a02ffe54ce6ac59ddf141ab26147d828a8de
c79779a1233e95858499143d717a41205932c53d
/pypi_practices/check_readme.py
87c4304a51e43f77a2ba84c739eb4ed25c7ac8d5
[ "MIT" ]
permissive
asottile-archive/pypi_practices
a8915fca09619f741f385c000bc98d84f9fd515f
a4da562c471198dd35806c52016fac44bb46c08d
refs/heads/master
2021-09-15T02:01:34.023997
2018-05-24T00:46:27
2018-05-24T00:46:27
null
0
0
null
null
null
null
UTF-8
Python
false
false
668
py
from __future__ import print_function import os.path from pypi_practices.errors import FileValidationError from pypi_practices.make_entry import make_entry def check_readme(cwd): readme_path = os.path.join(cwd, 'README.md') if not os.path.exists(readme_path): raise FileValidationError( 'README.md', 'File does not exist.', is_auto_fixable=True, ) # TODO: attempt to get project name from config # TODO: attempt to get project name from tox.ini # TODO: attempt to get project name from setup.py return 0 entry = make_entry(check_readme) if __name__ == '__main__': exit(entry())
[ "asottile@umich.edu" ]
asottile@umich.edu
a3f87fb4f1745c2bec79c37e553133ec433b77d5
ecdc0460da3eb8597909dd07a19e47f98f07e530
/backend/backend_managing_system/calendar_app/migrations/0012_auto_20201202_0105.py
b9d124413ffd3b962b4d7246a0d2e336a2845ccd
[]
no_license
AdouniH/management_system
43c0e536012b648885d34fd0ece1fd054c36b753
12a50f574a90887aca9bdafe08492880041d9a1b
refs/heads/main
2023-03-07T09:07:50.927291
2021-02-18T20:28:40
2021-02-18T20:28:40
310,494,502
0
0
null
null
null
null
UTF-8
Python
false
false
1,112
py
# Generated by Django 3.1.3 on 2020-12-02 01:05 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('calendar_app', '0011_auto_20201127_0446'), ] operations = [ migrations.AlterField( model_name='rdv', name='duree', field=models.CharField(blank=True, max_length=5000, null=True), ), migrations.AlterField( model_name='rdv', name='email', field=models.EmailField(blank=True, max_length=5000, null=True), ), migrations.AlterField( model_name='rdv', name='name', field=models.CharField(blank=True, max_length=5000, null=True), ), migrations.AlterField( model_name='rdv', name='teams_link', field=models.CharField(blank=True, max_length=5000, null=True), ), migrations.AlterField( model_name='rdv', name='tool', field=models.CharField(blank=True, max_length=5000, null=True), ), ]
[ "houssemadouni11@gmail.com" ]
houssemadouni11@gmail.com
8db867bdfebd058d6e7f1849e56ad1266a5f6e43
4ed184a588440d39cff1db54970cece84232d406
/lotteplayer_rc.py
f54fed661647e2c9dfa87bffb932c63c8f533b85
[]
no_license
jkjh8/lotteplayer
56f9c5687eb1be608c2df2946e82ad027982ec47
b0e3a2823efd091b266fbc8b6b1544a44033ca57
refs/heads/main
2023-02-17T11:30:25.595463
2021-01-19T11:14:07
2021-01-19T11:14:07
330,953,612
0
0
null
null
null
null
UTF-8
Python
false
false
789,643
py
# -*- coding: utf-8 -*- # Resource object code # # Created by: The Resource Compiler for PyQt5 (Qt v5.14.0) # # WARNING! All changes made in this file will be lost! from PyQt5 import QtCore qt_resource_data = b"\ \x00\x00\x01\xcf\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x00\x50\x00\x00\x00\x50\x08\x06\x00\x00\x00\x8e\x11\xf2\xad\ \x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ \xa7\x93\x00\x00\x01\x84\x49\x44\x41\x54\x78\x9c\xed\xda\x41\x4e\ \xc3\x30\x10\x85\xe1\x27\x16\xbd\x13\xf4\x7c\xd0\x72\x2d\x2a\x6e\ \x42\x7b\x0c\xe8\x22\xa9\x90\xaa\xd0\x10\x8d\xc7\x33\xb6\xff\x4f\ \x8a\xb2\xb1\x5c\xf7\x29\x9e\x8c\xe4\x48\x00\x00\x00\x00\x80\xc1\ \x7c\x4a\x3a\x8d\x3c\xff\x93\x71\x01\xdf\x92\x7e\x8c\x73\xf4\x3c\ \x3f\x90\x5c\xfa\x1a\xe5\x3d\x3f\x35\x90\x1a\x88\xa1\xa5\xaf\x51\ \xde\xf3\x53\x03\xa9\x81\x18\x5a\xc9\x1a\xb5\x93\xf4\x2e\xe9\xa2\ \x69\x5b\x2d\x5d\x67\x49\x87\x79\x6c\x09\xde\x35\x76\xd5\x49\xd2\ \x47\xa1\xb9\x8e\xfa\x3b\xb8\xfb\xeb\xad\xd0\x6f\x96\x5c\x7f\xb8\ \xb3\xa6\x70\x9e\x1f\x8c\xd9\xeb\xf7\x49\xc4\x9d\xdb\xd3\x55\x6a\ \x5c\x15\xd6\x36\x26\xbc\x86\x18\x75\xd5\x07\x5e\xe6\xfb\xcb\x83\ \x31\xfb\xf9\x5e\x6a\x0b\x77\xd5\x07\x1e\xf4\xff\x97\xc8\x6b\xd0\ \x1a\x53\xdb\x69\x0a\xf1\xf6\x32\x59\xba\xbe\x34\x85\x57\xaa\x8d\ \x09\xe7\x5d\x03\xbd\x5f\x18\x5d\xd5\xc0\x08\xad\xaf\x7f\x55\xaa\ \x96\x65\x89\xf5\x09\x1c\x1e\x7d\x20\x35\xd0\xa4\xf5\xf5\xaf\xa2\ \x06\xf6\x8e\x1a\x48\x0d\x34\x69\x7d\xfd\xab\xa8\x81\xbd\xdb\x12\ \x60\xc4\x99\x85\xb7\xaa\x35\x3c\xe2\xcc\xc2\x7b\x0b\x57\x3d\x13\ \x89\x38\xb3\x48\x5f\x03\xb7\x88\x38\xb3\x48\x1f\xe0\xe8\x2f\x91\ \xaa\x7d\x60\xc4\x99\x85\xb7\xaa\x7d\x60\xc4\x99\x45\xfa\x2d\xbc\ \x45\xc4\x99\x45\x57\x01\x2e\xf1\xfe\x83\x25\xe7\x4f\xd9\xc7\xb6\ \x14\x60\x44\x1f\xbb\xaa\xa5\x00\x53\x7e\x7b\xd3\x52\x80\x2e\x7d\ \xec\xe8\x7d\xa0\xd9\x48\x01\xa6\xec\x63\x5b\xda\xc2\x29\xbf\xbd\ \x69\x29\xc0\x94\xdf\xde\xb4\x14\xa0\xcb\xfc\x23\xd5\x40\x17\x04\ \x68\x44\x80\x46\x04\x68\x44\x80\x46\x04\x68\x44\x80\x46\x04\x68\ \x44\x80\x00\x00\x00\x00\x80\xd1\x5c\x01\x48\x31\x0f\x45\x3c\x05\ \x82\x72\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0f\x1a\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0c\x05\x08\xf9\xcb\ \x42\x22\x00\x00\x0d\xe8\x49\x44\x41\x54\x78\xda\xed\xd9\x2d\x8f\ \xa5\x49\x19\xc7\xe1\x82\xf0\x22\x48\x16\x01\x16\x87\x43\x92\x20\ \xd0\xe0\x40\xae\x27\x41\xe0\x66\x15\x38\x02\x0e\x83\x60\x15\x5f\ \x00\xb5\x5f\x01\x24\x41\x10\x08\x86\x40\xc2\x06\xcd\x26\x38\x12\ \x04\x20\x1a\xb1\x33\x3b\xd3\xd3\x5d\xe7\x3c\xe7\x3c\xf5\x72\xdf\ \x55\xd7\x35\xbe\xb7\xa7\xe7\xf4\x7f\xab\xea\x57\x4a\x2b\xdf\x2f\ \x3f\x2d\x9f\x6f\xf6\xd5\x80\x54\x5e\x94\x87\xf2\x61\x79\x77\xf6\ \xb7\x01\xcc\xf0\xa2\x3c\x94\x87\xf2\x50\x7e\x5d\xbe\x36\xfb\x5b\ \x01\x8e\xf9\x74\xf3\xaf\xf8\xad\xf2\xa7\xf2\x7e\x79\x67\xf6\x5f\ \x0c\x18\xe9\xd5\x09\xe0\xe3\x3f\xff\x2c\xef\x75\x18\x17\x20\xa8\ \xc7\x03\xf0\x50\x1e\xca\x1f\xca\x37\x67\x7f\x53\xc0\x25\x3d\xff\ \x2f\xfd\xf5\xf2\xdb\xf2\x41\xf9\xca\xec\xbf\x22\x50\xd3\xf7\x98\ \xfe\xa9\xf2\x6e\xf9\xab\x3c\x08\xeb\x7b\x7a\x05\x78\xfd\x47\x1e\ \x84\x90\xc6\x3c\xd4\x7d\xb5\x7c\x20\x0f\x42\x3c\xe3\x5e\xea\xe5\ \x41\x58\xd8\xa5\x2b\x80\x3c\x08\x8b\x3b\x36\x00\xf2\x20\x04\x32\ \xe3\xff\xc6\xf2\x20\x04\x31\xe7\x38\x2e\x0f\xc2\x62\x8e\x5f\x01\ \xe4\x41\x08\x62\xee\x83\x9c\x3c\x08\x53\xcd\x7f\x91\x97\x07\x61\ \x9a\xf9\x03\x50\xca\x67\xcb\x8b\xf2\x77\x79\x10\xc6\x8b\xf2\x4b\ \xf7\xe5\xf2\x8b\xf2\x7b\x79\x10\xc6\x8a\x32\x00\xa5\xc8\x83\x30\ \x5c\xa4\x01\x90\x07\x61\xb0\x58\x03\x50\x4a\x29\x5f\x28\x3f\x29\ \x7f\x96\x07\x61\x84\x78\x03\x50\x8a\x3c\x08\x83\xc4\x1c\x80\x52\ \xe4\x41\x18\x20\xee\x00\xc8\x83\xd0\x5d\xf4\x5f\x2e\x79\x10\x3a\ \x8a\x3e\x00\xa5\xc8\x83\xd0\x4d\x86\x01\x90\x07\xa1\x93\x1c\x03\ \x50\x8a\x3c\x08\x1d\xe4\x19\x80\x52\xe4\x41\x68\x2c\xd7\x00\x94\ \xf2\x2a\x0f\x7e\x71\xf6\xb7\x01\x2b\xc8\x37\x00\xf2\x20\x34\x93\ \xf5\x97\xe8\x4b\xf2\x20\x9c\x97\x75\x00\x4a\x91\x07\xe1\xb4\xcc\ \x03\x20\x0f\xc2\x49\xb9\x07\xa0\x14\x79\x10\x4e\xc8\x3f\x00\xa5\ \xc8\x83\x70\xa7\x35\x06\xa0\x14\x79\x10\xee\xb0\xce\x00\xc8\x83\ \x70\xb3\xd5\x7e\x59\xe4\x41\xb8\xc1\x6a\x03\x50\x8a\x3c\x08\x87\ \xad\x38\x00\xf2\x20\x1c\xb4\xe6\x00\x94\x22\x0f\xc2\x01\xeb\x0e\ \x40\x29\xf2\x20\x5c\xb1\xf6\x00\x94\x22\x0f\xc2\x05\xeb\x0f\x80\ \x3c\x08\x55\xbb\xfc\x52\xc8\x83\xf0\x8c\x5d\x06\xa0\x14\x79\x10\ \x9e\xd8\x69\x00\xe4\x41\x78\xcb\x5e\x03\x50\x8a\x3c\x08\x6f\xd8\ \x6f\x00\x4a\x91\x07\xe1\xa5\x3d\x07\xa0\x14\x79\x10\xca\xce\x03\ \x20\x0f\xc2\xf6\x1f\x7e\x79\x90\xad\xed\x3e\x00\xa5\xc8\x83\x6c\ \xcc\x00\x94\x22\x0f\xb2\x2d\x03\xf0\x8a\x3c\xc8\x86\x0c\xc0\x9b\ \xe4\x41\x36\x63\x00\xde\x26\x0f\xb2\x11\x03\xf0\x94\x3c\xc8\x36\ \x7c\xc8\x9f\x27\x0f\xb2\x05\x03\x50\x27\x0f\xb2\x3c\x03\x70\x89\ \x3c\xc8\xe2\x0c\xc0\x35\xf2\x20\x0b\x33\x00\x47\xc8\x83\x2c\xca\ \x00\x1c\x25\x0f\xb2\x20\x03\x70\x9c\x3c\xc8\x72\x7c\x98\x6f\x23\ \x0f\xb2\x14\x03\x70\x3b\x79\x90\x65\x18\x80\x7b\xc8\x83\x2c\xc2\ \x00\xdc\x4b\x1e\x64\x01\x06\xe0\x0c\x79\x90\xe4\x0c\xc0\x59\xf2\ \x20\x89\x19\x80\xf3\xe4\x41\xd2\xf2\xa1\x6d\x43\x1e\x24\x25\x03\ \xd0\x8e\x3c\x48\x3a\x06\xa0\x25\x79\x90\x64\x0c\x40\x6b\xf2\x20\ \x89\x18\x80\x1e\xe4\x41\x92\x30\x00\xbd\xc8\x83\x24\x60\x00\xfa\ \x91\x07\x09\xcf\x87\xb3\x2f\x79\x90\xd0\x0c\x40\x7f\xf2\x20\x61\ \x19\x80\x11\xe4\x41\x82\x32\x00\xa3\xc8\x83\x04\x64\x00\x46\x92\ \x07\x09\xc6\x00\x8c\x26\x0f\x12\x88\x01\x18\x4f\x1e\x24\x0c\x1f\ \xc2\x39\xe4\x41\x42\x30\x00\xf3\xc8\x83\x4c\x67\x00\x66\x92\x07\ \x99\xcc\x00\xcc\x26\x0f\x32\x91\x01\x88\x40\x1e\x64\x12\x03\x10\ \x85\x3c\xc8\x04\x06\x20\x0e\x79\x90\xe1\x7c\xd8\x62\x91\x07\x19\ \xca\x00\xc4\x23\x0f\x32\x8c\x01\x88\x48\x1e\x64\x10\x03\x10\x95\ \x3c\xc8\x00\x06\x20\x32\x79\x90\xce\x0c\x40\x74\xf2\x20\x1d\x19\ \x80\xf8\xe4\x41\xba\xf1\xa1\xca\x41\x1e\xa4\x0b\x03\x90\x87\x3c\ \x48\x73\x06\x20\x13\x79\x90\xc6\x0c\x40\x36\xf2\x20\x0d\x19\x80\ \x8c\xe4\x41\x1a\x31\x00\x59\xc9\x83\x34\x60\x00\xf2\x92\x07\x39\ \xcd\x87\x27\x37\x79\x90\x53\x0c\x40\x7e\xf2\x20\x77\x33\x00\x2b\ \x90\x07\xb9\x93\x01\x58\x85\x3c\xc8\x1d\x0c\xc0\x4a\xe4\x41\x6e\ \x64\x00\x56\x23\x0f\x72\x03\x03\xb0\x1e\x79\x90\xc3\x7c\x48\xd6\ \x24\x0f\x72\x88\x01\x58\x97\x3c\xc8\x55\x06\x60\x65\xf2\x20\x57\ \x18\x80\xd5\xc9\x83\x5c\x60\x00\x76\x20\x0f\x52\x61\x00\x76\x21\ \x0f\xf2\x0c\x03\xb0\x0f\x79\x90\x27\x7c\x18\xf6\x22\x0f\xf2\x88\ \x01\xd8\x8f\x3c\xc8\x27\x0c\xc0\x8e\xe4\x41\x5e\x32\x00\xbb\x92\ \x07\x29\x06\x60\x6f\xf2\xe0\xf6\x0c\xc0\xee\xe4\xc1\xad\x19\x00\ \xe4\xc1\x8d\xf9\x47\xa7\x14\x79\x70\x5b\x06\x80\x57\xe4\xc1\x0d\ \x19\x00\x5e\x93\x07\xb7\x63\x00\x78\x4c\x1e\xdc\x8a\x01\xe0\x29\ \x79\x70\x1b\x06\x80\xe7\xc9\x83\x5b\x30\x00\xd4\xc8\x83\x1b\xf0\ \x8f\xcb\x25\xf2\xe0\xe2\x0c\x00\xd7\xc8\x83\x0b\x33\x00\x5c\x27\ \x0f\x2e\xcb\x00\x70\x8c\x3c\xb8\x24\x03\xc0\x71\xf2\xe0\x72\x0c\ \x00\xb7\x91\x07\x97\x62\x00\xb8\x95\x3c\xb8\x10\xff\x88\xdc\x43\ \x1e\x5c\x84\x01\xe0\x5e\xf2\xe0\x02\x0c\x00\xf7\x93\x07\xd3\x33\ \x00\x9c\x23\x0f\xa6\x66\x00\x38\x4f\x1e\x4c\xcb\x00\xd0\x86\x3c\ \x98\x92\x01\xa0\x15\x79\x30\x21\xff\x58\xb4\x24\x0f\x26\x63\x00\ \x68\x4d\x1e\x4c\xc4\x00\xd0\x9e\x3c\x98\x86\x01\xa0\x0f\x79\x30\ \x05\x03\x40\x3f\xf2\x60\x78\x06\x80\xbe\xe4\xc1\xd0\x0c\x00\xbd\ \xc9\x83\x81\xf9\x47\x61\x04\x79\x30\x28\x03\xc0\x28\xf2\x60\x40\ \x06\x80\x71\xe4\xc1\x70\x0c\x00\x63\xc9\x83\xa1\x18\x00\xc6\x93\ \x07\xc3\x30\x00\xcc\x21\x0f\x86\x60\x00\x98\x45\x1e\x0c\xc0\x0f\ \x9f\x99\xe4\xc1\xc9\x0c\x00\xb3\xc9\x83\x13\x19\x00\xe6\x93\x07\ \xa7\x31\x00\xc4\x20\x0f\x4e\x61\x00\x88\x43\x1e\x1c\xce\x00\x10\ \x8b\x3c\x38\x94\x01\x20\x1a\x79\x70\x20\x3f\x64\x22\x92\x07\x07\ \x31\x00\x44\x25\x0f\x0e\x60\x00\x88\x4b\x1e\xec\xce\x00\x10\x9b\ \x3c\xd8\x95\x01\x20\x3e\x79\xb0\x1b\x03\x40\x0e\xf2\x60\x17\x06\ \x80\x2c\xe4\xc1\x0e\xfc\x30\xc9\x44\x1e\x6c\xcc\x00\x90\x8d\x3c\ \xd8\x90\x01\x20\x1f\x79\xb0\x19\x03\x40\x4e\xf2\x60\x13\x06\x80\ \xbc\xe4\xc1\xd3\x0c\x00\xb9\xc9\x83\xa7\x18\x00\xb2\x93\x07\x4f\ \xf0\x43\x63\x05\xf2\xe0\x9d\x0c\x00\xab\x90\x07\xef\x60\x00\x58\ \x87\x3c\x78\x33\x03\xc0\x5a\xe4\xc1\x9b\x18\x00\xd6\x23\x0f\x1e\ \x66\x00\x58\x93\x3c\x78\x88\x01\x60\x55\xf2\xe0\x01\x7e\x38\xac\ \x4c\x1e\xbc\xc2\x00\xb0\x3a\x79\xf0\x02\x03\xc0\xfa\xe4\xc1\x2a\ \x03\xc0\x1e\xe4\xc1\x67\x19\x00\xf6\x21\x0f\x3e\x61\x00\xd8\x8b\ \x3c\xf8\x88\x01\x60\x37\xf2\xe0\x1b\xfc\x10\xd8\x91\x3c\xf8\x92\ \x01\x60\x57\xf2\x60\x31\x00\xec\x4c\x1e\x34\x00\x6c\x6e\xf3\x3c\ \x68\x00\x60\xe3\x3c\x68\x00\xa0\x94\x6d\xf3\xa0\x01\x80\x8f\x6d\ \x99\x07\xb7\xfa\xcb\xc2\x15\xdb\xe5\x41\x03\x00\x8f\x6d\x95\x07\ \x0d\x00\xbc\x6d\xa3\x3c\x68\x00\xe0\x39\x9b\xe4\x41\x03\x00\x35\ \x1b\xe4\x41\x03\x00\x97\x2c\x9e\x07\x0d\x00\x5c\xb6\x74\x1e\x5c\ \xf2\x2f\x05\x8d\x2d\x9b\x07\x0d\x00\x1c\xb3\x64\x1e\x34\x00\x70\ \xd4\x82\x79\xd0\x00\xc0\x2d\x16\xcb\x83\x06\x00\x6e\xb5\x50\x1e\ \x34\x00\x70\x8f\x45\xf2\xa0\x01\x80\xfb\x2c\x91\x07\x53\x7f\xf3\ \x30\x59\xfa\x3c\x68\x00\xe0\x9c\xd4\x79\xd0\x00\xc0\x59\x89\xf3\ \xa0\x01\x80\x16\x92\xe6\x41\x03\x00\xad\x24\xcc\x83\x06\x00\x5a\ \x4a\x96\x07\x0d\x00\xb4\x95\x2a\x0f\xa6\xf8\x26\x21\x99\x34\x79\ \xd0\x00\x40\x1f\x29\xf2\xa0\x01\x80\x5e\x12\xe4\x41\x03\x00\x3d\ \x05\xcf\x83\x06\x00\x7a\x0b\x9c\x07\x0d\x00\x8c\x10\x34\x0f\x1a\ \x00\x18\x23\x64\x1e\x0c\xf5\xcd\xc0\xe2\xc2\xe5\x41\x03\x00\x63\ \x85\xca\x83\x06\x00\x46\x0b\x94\x07\x0d\x00\xcc\x10\x24\x0f\x1a\ \x00\x98\x25\x40\x1e\x34\x00\x30\xd3\xe4\x3c\x68\x00\x60\xae\xa9\ \x79\xd0\x00\xc0\x7c\xd3\xf2\xa0\x01\x80\x18\xa6\xe4\x41\x03\x00\ \x51\x4c\xc8\x83\x06\x00\x22\x19\x9c\x07\x0d\x00\x44\x33\x30\x0f\ \x1a\x00\x88\x68\x50\x1e\x34\x00\x10\xd3\x90\x3c\x68\x00\x20\xae\ \xee\x79\xd0\x00\x40\x6c\x5d\xf3\xa0\x01\x80\xe8\x3a\xe6\x41\x03\ \x00\x19\x74\xca\x83\x06\x00\xb2\xe8\x90\x07\x0d\x00\x64\xd2\x38\ \x0f\x1a\x00\xc8\xe7\xa1\xd5\x17\xfa\xcc\xec\xbf\x09\x70\x83\xdf\ \x94\xf7\xca\x5f\xda\x7d\x39\x27\x00\xc8\xe2\xc3\xf2\xdd\xf2\xed\ \x96\xbf\xfe\x4e\x00\x90\xc3\xbf\xcb\xcf\xcb\xcf\xca\x7f\x5a\x7f\ \x59\x03\x00\xd1\x3d\x94\x5f\x95\x1f\x95\x8f\x7a\x7c\x69\x03\x00\ \xb1\xfd\xb1\xbc\x28\xbf\xeb\xf5\xc5\xbd\x01\x40\x5c\x1f\x95\x1f\ \x94\x6f\xf4\xfb\xf5\x77\x02\x80\xa8\xfe\x57\x7e\x59\x7e\x5c\xfe\ \xd5\xf7\x3f\x62\x00\x20\xa2\xc6\xb9\xaf\xc6\x15\x00\xa2\xe9\x90\ \xfb\x6a\x9c\x00\x20\x92\x4e\xb9\xaf\xc6\x00\x40\x14\x1d\x73\x5f\ \x8d\x01\x80\x18\xba\xe6\xbe\x1a\x6f\x00\x30\x5f\xf7\xdc\x57\xe3\ \x04\x00\x73\x0d\xc9\x7d\x35\x06\x00\x66\x1a\x94\xfb\x6a\x5c\x01\ \x60\x96\x81\xb9\xaf\xc6\x09\x00\x66\x18\x9c\xfb\x6a\x0c\x00\x8c\ \x36\x21\xf7\xd5\x18\x00\x18\x6b\x4a\xee\xab\xf1\x06\x00\xe3\x4c\ \xcb\x7d\x35\x4e\x00\x30\xc6\xd4\xdc\x57\x63\x00\x60\x84\xc9\xb9\ \xaf\xc6\x15\x00\x7a\x0b\x90\xfb\x6a\x9c\x00\xa0\xa7\x20\xb9\xaf\ \xc6\x00\x40\x2f\x81\x72\x5f\x8d\x01\x80\x3e\x42\xe5\xbe\x1a\x6f\ \x00\xd0\x5e\xb8\xdc\x57\xe3\x04\x00\x6d\x85\xcc\x7d\x35\x06\x00\ \x5a\x0a\x9a\xfb\x6a\x5c\x01\xa0\x95\xc0\xb9\xaf\xc6\x09\x00\x5a\ \x08\x9e\xfb\x6a\x0c\x00\x9c\x95\x20\xf7\xd5\x18\x00\x38\x27\x45\ \xee\xab\xf1\x06\x00\xf7\x4b\x93\xfb\x6a\x9c\x00\xe0\x3e\xa9\x72\ \x5f\x8d\x01\x80\x7b\x24\xcb\x7d\x35\xae\x00\x70\xab\x84\xb9\xaf\ \xc6\x09\x00\x6e\x91\x34\xf7\xd5\x18\x00\x38\x2a\x71\xee\xab\x31\ \x00\x70\x4c\xea\xdc\x57\xe3\x0d\x00\xae\x4b\x9f\xfb\x6a\x9c\x00\ \xe0\xb2\x25\x72\x5f\x8d\x01\x80\x4b\x16\xc9\x7d\x35\xae\x00\x50\ \xb3\x50\xee\xab\x71\x02\x80\xe7\x2c\x96\xfb\x6a\x0c\x00\xbc\x6d\ \xc1\xdc\x57\x63\x00\xe0\xb1\x25\x73\x5f\x8d\x37\x00\x78\x6d\xd9\ \xdc\x57\xe3\x04\x00\x1f\x5b\x3a\xf7\xd5\x18\x00\x28\x65\xf9\xdc\ \x57\xe3\x0a\x00\x1b\xe4\xbe\x1a\x27\x00\xf6\xb6\x49\xee\xab\x31\ \x00\xec\x6b\xa3\xdc\x57\x63\x00\xd8\xd5\x56\xb9\xaf\xc6\x1b\x00\ \x3b\xda\x2e\xf7\xd5\x38\x01\xb0\x9b\x2d\x73\x5f\x8d\x01\x60\x2f\ \x9b\xe6\xbe\x1a\x57\x00\xf6\xb1\x71\xee\xab\x71\x02\x60\x0f\x9b\ \xe7\xbe\x1a\x03\xc0\xfa\xe4\xbe\x2a\x03\xc0\xea\xe4\xbe\x0b\xbc\ \x01\xb0\x32\xb9\xef\x0a\x27\x00\x56\x25\xf7\x1d\x60\x00\x58\x93\ \xdc\x77\x88\x2b\x00\xeb\x91\xfb\x0e\x73\x02\x60\x2d\x72\xdf\x4d\ \x0c\x00\xeb\x90\xfb\x6e\x66\x00\x58\x85\xdc\x77\x07\x6f\x00\xac\ \x40\xee\xbb\x93\x13\x00\xd9\xc9\x7d\x27\x18\x00\x72\x93\xfb\x4e\ \x71\x05\x20\x2f\xb9\xef\x34\x27\x00\x72\x92\xfb\x9a\x30\x00\xe4\ \x23\xf7\x35\x63\x00\xc8\x46\xee\x6b\xc8\x1b\x00\x99\xc8\x7d\x8d\ \x39\x01\x90\x85\xdc\xd7\x81\x01\x20\x07\xb9\xaf\x0b\x57\x00\xe2\ \x93\xfb\xba\x71\x02\x20\x36\xb9\xaf\x2b\x03\x40\x5c\x72\x5f\x77\ \x06\x80\xa8\xe4\xbe\x01\xbc\x01\x10\x91\xdc\x37\x88\x13\x00\xd1\ \xc8\x7d\x03\x19\x00\x62\x91\xfb\x86\x72\x05\x20\x0e\xb9\x6f\x38\ \x27\x00\x62\x90\xfb\xa6\x30\x00\xcc\x27\xf7\x4d\x63\x00\x98\x4d\ \xee\x9b\xc8\x1b\x00\x33\xc9\x7d\x93\x39\x01\x30\x8b\xdc\x17\x80\ \x01\x60\x0e\xb9\x2f\x04\x57\x00\xc6\x93\xfb\xc2\x70\x02\x60\x2c\ \xb9\x2f\x14\x03\xc0\x38\x72\x5f\x38\x06\x80\x51\xe4\xbe\x80\xbc\ \x01\x30\x82\xdc\x17\x94\x13\x00\xbd\xc9\x7d\x81\x19\x00\xfa\x92\ \xfb\x42\x73\x05\xa0\x1f\xb9\x2f\x3c\x27\x00\xfa\x90\xfb\x52\x30\ \x00\xb4\x27\xf7\xa5\x61\x00\x68\x4d\xee\x4b\xc4\x1b\x00\x2d\xc9\ \x7d\xc9\x38\x01\xd0\x8a\xdc\x97\x90\x01\xa0\x0d\xb9\x2f\x25\x57\ \x00\xce\x93\xfb\xd2\x72\x02\xe0\x1c\xb9\x2f\x35\x03\xc0\xfd\xe4\ \xbe\xf4\x0c\x00\xf7\x92\xfb\x16\xe0\x0d\x80\x7b\xc8\x7d\x8b\x70\ \x02\xe0\x56\x72\xdf\x42\x0c\x00\xb7\x91\xfb\x96\xe2\x0a\xc0\x71\ \x72\xdf\x72\x9c\x00\x38\x46\xee\x5b\x92\x01\xe0\x3a\xb9\x6f\x59\ \x06\x80\x6b\xe4\xbe\x85\x79\x03\xe0\x12\xb9\x6f\x71\x4e\x00\xd4\ \xc8\x7d\x1b\x30\x00\x3c\x4f\xee\xdb\x82\x2b\x00\x4f\xc9\x7d\xdb\ \x70\x02\xe0\x31\xb9\x6f\x2b\x06\x80\xd7\xe4\xbe\xed\x18\x00\x5e\ \x91\xfb\x36\xe4\x0d\x80\x52\xe4\xbe\x6d\x39\x01\x20\xf7\x6d\xcc\ \x00\xec\x4e\xee\xdb\x9a\x2b\xc0\xce\xe4\xbe\xed\x39\x01\xec\x4a\ \xee\xa3\x18\x80\x3d\xc9\x7d\xbc\x64\x00\xf6\x23\xf7\xf1\x09\x6f\ \x00\x7b\x91\xfb\x78\xc4\x09\x60\x1f\x72\x1f\x4f\x18\x80\x5d\xc8\ \x7d\x3c\xc3\x15\x60\x07\x72\x1f\x15\x4e\x00\xab\x93\xfb\xb8\xc0\ \x00\xac\x4c\xee\xe3\x0a\x03\xb0\x2e\xb9\x8f\xab\xbc\x01\xac\x49\ \xee\xe3\x10\x27\x80\xf5\xc8\x7d\x1c\x66\x00\x56\x23\xf7\x71\x03\ \x57\x80\x95\xc8\x7d\xdc\xc8\x09\x60\x15\x72\x1f\x77\x30\x00\x2b\ \x90\xfb\xb8\x93\x01\xc8\x4f\xee\xe3\x6e\xde\x00\x72\x93\xfb\x38\ \xc5\x09\x20\x2f\xb9\x8f\xd3\x0c\x40\x56\x72\x1f\x0d\xb8\x02\x64\ \x24\xf7\xd1\x88\x13\x40\x36\x72\x1f\x0d\x19\x80\x4c\xe4\x3e\x1a\ \x33\x00\x79\xc8\x7d\x34\xe7\x0d\x20\x07\xb9\x8f\x2e\x9c\x00\xe2\ \x93\xfb\xe8\xc6\x00\x44\x27\xf7\xd1\x91\x2b\x40\x64\x72\x1f\x9d\ \x39\x01\x44\x25\xf7\x31\x80\x01\x88\x48\xee\x63\x10\x03\x10\x8f\ \xdc\xc7\x30\xde\x00\x62\x91\xfb\x18\xca\x09\x20\x0e\xb9\x8f\xe1\ \x0c\x40\x14\x72\x1f\x13\xb8\x02\x44\x20\xf7\x31\x89\x13\xc0\x6c\ \x72\x1f\x13\x19\x80\x99\xe4\x3e\x26\x33\x00\xf3\xc8\x7d\x4c\xe7\ \x0d\x60\x0e\xb9\x8f\x10\x9c\x00\xc6\x93\xfb\x08\xc3\x00\x8c\x26\ \xf7\x11\x88\x2b\xc0\x48\x72\x1f\xc1\x38\x01\x8c\x22\xf7\x11\x90\ \x01\x18\x41\xee\x23\x28\x03\xd0\x9f\xdc\x47\x58\xde\x00\xfa\x92\ \xfb\x08\xcd\x09\xa0\x1f\xb9\x8f\xf0\x0c\x40\x2f\x72\x1f\x09\xb8\ \x02\xf4\x20\xf7\x91\x84\x13\x40\x6b\x72\x1f\x89\x18\x80\x96\xe4\ \x3e\x92\x31\x00\xed\xc8\x7d\xa4\xe3\x0d\xa0\x0d\xb9\x8f\x94\x9c\ \x00\xce\x93\xfb\x48\xcb\x00\x9c\x25\xf7\x91\x98\x2b\xc0\x19\x72\ \x1f\xc9\x39\x01\xdc\x4b\xee\x63\x01\x06\xe0\x1e\x72\x1f\x8b\x30\ \x00\xb7\x93\xfb\x58\x86\x37\x80\xdb\xc8\x7d\x2c\xc5\x09\xe0\x38\ \xb9\x8f\xe5\x18\x80\xa3\xe4\x3e\x16\xe4\x0a\x70\x84\xdc\xc7\xa2\ \x9c\x00\xae\x91\xfb\x58\x98\x01\xb8\x44\xee\x63\x71\x06\xa0\x4e\ \xee\x63\x79\xde\x00\x9e\x27\xf7\xb1\x05\x27\x80\xa7\xe4\x3e\xb6\ \x61\x00\xde\x26\xf7\xb1\x11\x57\x80\x37\xc9\x7d\x6c\xc6\x09\xe0\ \x15\xb9\x8f\x0d\x19\x80\x52\xe4\x3e\xb6\x65\x00\xe4\x3e\x36\xb6\ \xfb\x1b\x80\xdc\xc7\xd6\x76\x3e\x01\xc8\x7d\x6c\x6f\xdf\x01\x90\ \xfb\x60\xd3\x2b\x80\xdc\x07\xa5\x94\x1d\x4f\x00\x72\x1f\x7c\x62\ \xaf\x01\x90\xfb\xe0\x91\x9d\x06\x40\xee\x83\xb7\xec\xf2\x06\x20\ \xf7\xc1\x33\x76\x38\x01\xc8\x7d\x50\xb1\xfe\x00\xc8\x7d\x50\xb5\ \xf6\x15\x40\xee\x83\x8b\xd6\x3d\x01\xc8\x7d\x70\xd5\x9a\x03\x20\ \xf7\xc1\x21\x2b\x0e\x80\xdc\x07\x07\xad\xf6\x06\x20\xf7\xc1\x0d\ \x56\x3a\x01\xc8\x7d\x70\xa3\x75\x06\x40\xee\x83\x9b\xad\x71\x05\ \x90\xfb\xe0\x2e\xf9\x4f\x00\x72\x1f\xdc\x2d\xf7\x00\xc8\x7d\x70\ \x4a\xe6\x01\x90\xfb\xe0\xa4\xac\x6f\x00\x72\x1f\x34\x90\xf1\x04\ \x20\xf7\x41\x23\xf9\x06\x40\xee\x83\x66\x72\x5d\x01\xe4\x3e\x68\ \x2a\xcf\x09\x40\xee\x83\xe6\x72\x0c\x80\xdc\x07\x5d\x64\x18\x00\ \xb9\x0f\x3a\x89\xfe\x06\xf0\x0f\xb9\x0f\xfa\x89\x7c\x02\x90\xfb\ \xa0\xb3\xb8\x03\x20\xf7\x41\x77\x31\xaf\x00\x72\x1f\x0c\x11\xef\ \x04\x20\xf7\xc1\x30\xb1\x06\x40\xee\x83\xa1\x22\x0d\x80\xdc\x07\ \x83\x45\x79\x03\x90\xfb\x60\x82\x08\x27\x00\xb9\x0f\x26\x99\x3f\ \x00\x72\x1f\x4c\x33\xf7\x0a\x20\xf7\xc1\x54\xf3\x4e\x00\x72\x1f\ \x4c\x37\x67\x00\xe4\x3e\x08\x61\xc6\x00\xc8\x7d\x10\xc4\xe8\x37\ \x00\xb9\x0f\x02\x19\x79\x02\x90\xfb\x20\x98\x71\x03\x20\xf7\x41\ \x38\x63\xae\x00\x72\x1f\x84\xd4\xff\x04\x20\xf7\x41\x58\x7d\x07\ \x40\xee\x83\xd0\x7a\x0e\x80\xdc\x07\xc1\xf5\x7a\x03\x90\xfb\x60\ \x2b\x2f\xca\xc3\xcb\x3f\xff\x2d\xef\x97\x77\x66\x7f\x3b\xc0\x75\ \xed\xaf\x00\x72\x1f\x6c\xe8\x45\x79\x28\x7f\x2b\xdf\x99\xfd\x6d\ \x00\x33\x7c\xaf\xfc\xb0\x7c\x6e\xf6\x37\x01\xdc\xe2\xff\x87\x9f\ \x98\xa6\xfc\x45\x76\x0c\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\ \x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x32\x30\x2d\x30\ \x32\x2d\x30\x31\x54\x31\x32\x3a\x30\x35\x3a\x30\x38\x2b\x30\x30\ \x3a\x30\x30\xfe\xd5\x20\x8c\x00\x00\x00\x25\x74\x45\x58\x74\x64\ \x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x32\x30\x2d\ \x30\x32\x2d\x30\x31\x54\x31\x32\x3a\x30\x35\x3a\x30\x38\x2b\x30\ \x30\x3a\x30\x30\x8f\x88\x98\x30\x00\x00\x00\x19\x74\x45\x58\x74\ \x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\ \x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\ \x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0a\x47\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x0d\x11\x2e\x20\xe4\x26\ \x98\x2a\x00\x00\x09\x15\x49\x44\x41\x54\x78\xda\xed\xdc\x3b\xab\ \x5d\x69\x01\xc6\xf1\x27\x97\x2a\x89\x08\x36\x8e\x96\x62\x61\x63\ \x13\x61\x2a\x65\x84\xf1\x13\x58\xd8\x5b\x8a\xf8\x09\x04\x51\x51\ \x9c\x2f\xa0\x85\x20\xd8\x38\xca\xd8\x08\x82\x88\xa2\x61\x38\x0a\ \x1a\x14\x1b\x0b\xbf\x80\x8e\x04\x64\x04\x19\x21\x19\x66\xb6\xc5\ \xf1\xcc\xe4\x24\xe7\xb2\xf6\xba\xbd\xb7\xdf\x6f\x55\x81\xb5\x77\ \xf6\x2e\xfe\xcf\x7a\x13\x38\x27\x01\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\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\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x68\xcd\x8d\xe7\xfe\xfc\xa9\xdc\xcf\x0b\xb9\x9d\x47\xf9\x5b\ \x4e\xf2\xb8\xf4\x07\x04\x16\xb9\x93\x97\xf3\xf1\xbc\x90\xc7\x79\ \x94\x3f\xe7\x61\xde\xb9\xec\xc6\x0f\xe6\x9b\xf9\x47\x0e\x4f\x5d\ \xff\xc9\x0f\xf3\xb1\xd2\x9f\x1f\x98\xe9\x13\xf9\x71\xfe\x7b\xae\ \xe9\x47\x79\x25\x1f\xba\xe8\xd6\xcf\xe7\x5f\xe7\x6e\x3c\xbb\x9e\ \xe4\x1b\xb9\x59\xfa\x7b\x00\x47\xba\x95\x57\xf2\xf6\x85\x4d\xbf\ \x99\x2f\x3c\x7b\xf3\x57\xf3\xee\x85\xb7\x9e\x5e\x3f\xcb\x9d\xd2\ \xdf\x06\x38\xc2\xbd\xfc\xe2\x8a\xa2\xdf\xcd\xd7\x9f\xbe\xf9\x8b\ \x57\xdc\x7a\x7a\x9d\xe4\x5e\xe9\x6f\x04\x4c\x74\x37\x0f\xae\x6d\ \xfa\x4b\x67\x37\xdf\xcf\xe3\x6b\x6f\x3e\xe4\x41\xee\x96\xfe\x56\ \xc0\x04\xf7\x72\x32\xa1\xe8\x27\xb9\x7f\x7a\xfb\xaf\x27\xdc\xec\ \x14\x00\x6d\x98\xf2\xf4\x3f\xbd\x7e\x95\x24\x2f\x4e\xbc\xd9\x29\ \x00\xea\x37\xed\xe9\x7f\x76\xbd\x98\x7c\xe7\x88\xdb\x9d\x02\xa0\ \x66\xd3\x9f\xfe\xa7\xd7\xb7\x93\x87\x47\xbd\xc0\x29\x00\x6a\x75\ \xdc\xd3\xff\x90\x43\xfe\x90\xbc\x71\xe4\x4b\x9c\x02\xa0\x46\xc7\ \x3e\xfd\x0f\x39\xe4\xef\xc9\x93\xa3\x5f\xe4\x14\x00\xb5\x39\xfe\ \xe9\x7f\xc8\x21\x8f\x93\x47\x33\x5e\xe6\x14\x00\x35\x99\xf3\xf4\ \x3f\xe4\x90\x37\x92\xbf\xcc\x7a\xa1\x53\x00\xd4\x62\xde\xd3\xff\ \x90\x43\xfe\x74\x33\xaf\xcf\xfc\x4b\x3f\x9b\x5f\x3a\x05\x40\x71\ \x77\xf3\xf3\x7c\x7a\xe6\x6b\x1f\x24\x2f\xcf\xdc\x0e\xa7\x00\x28\ \x6f\xfe\xd3\xff\x90\x43\x5e\x4a\x6e\xe4\x8f\x0b\xde\xc0\xff\x05\ \x40\x39\x73\xff\xed\x7f\x7a\x3d\x3c\xfd\x7d\x20\x9f\xbb\xf2\x27\ \x01\x9d\x02\xa0\x4e\xcb\x9e\xfe\xef\xe4\xa5\xb3\x37\xfa\xd6\x82\ \xb7\x71\x0a\x80\x12\x96\x3d\xfd\x0f\xf9\xda\xfb\x6f\x75\x33\xaf\ \x2d\x7a\x2b\xa7\x00\xd8\xd7\xb2\xa7\xff\x21\xaf\x9e\xff\x75\x80\ \xb7\xf2\xaa\x53\x00\x34\x62\xe9\xd3\xff\xb5\xdc\x7e\xf6\x2d\x4d\ \x00\xb4\x61\x83\xfc\x13\x13\x00\x2d\xd8\x28\xff\xc4\x04\x40\xed\ \x36\xcc\x3f\x31\x01\x50\xb3\x8d\xf3\x4f\x4c\x00\xd4\x6a\x87\xfc\ \x13\x13\x00\x35\xda\x29\xff\xc4\x04\x40\x6d\x76\xcc\x3f\x31\x01\ \x50\x93\x9d\xf3\x4f\x4c\x00\xd4\xa2\x40\xfe\x89\x09\x80\x1a\x14\ \xca\x3f\x31\x01\x50\x5a\xc1\xfc\x13\x13\x00\x25\x15\xce\x3f\x31\ \x01\x50\x4a\x05\xf9\x27\x26\x00\x4a\xa8\x24\xff\xc4\x04\xc0\xde\ \x2a\xca\x3f\x31\x01\xb0\xa7\xca\xf2\x4f\x4c\x00\xec\xa5\xc2\xfc\ \x13\x13\x00\x7b\xa8\x34\xff\xc4\x04\xc0\xd6\x2a\xce\x3f\x31\x01\ \xb0\xa5\xca\xf3\x4f\x4c\x00\x6c\xa5\x81\xfc\x13\x13\x00\x5b\x68\ \x24\xff\xc4\x04\xc0\xda\x1a\xca\x3f\x31\x01\xb0\xa6\xc6\xf2\x4f\ \x4c\x00\xac\xa5\xc1\xfc\x13\x13\x00\x6b\x68\x34\xff\xc4\x04\xc0\ \x52\x0d\xe7\x9f\x98\x00\x58\xa2\xf1\xfc\x13\x13\x00\x73\x75\x90\ \x7f\x62\x02\x60\x8e\x4e\xf2\x4f\x4c\x00\x1c\xab\xa3\xfc\x13\x13\ \x00\xc7\xe8\x2c\xff\xc4\x04\xc0\x54\x1d\xe6\x9f\x98\x00\x98\xa2\ \xd3\xfc\x13\x13\x00\xd7\xe9\x38\xff\xc4\x04\xc0\x55\x3a\xcf\x3f\ \x31\x01\x70\x99\x01\xf2\x4f\x4c\x00\x5c\x64\x90\xfc\x13\x13\x00\ \xcf\x1a\x28\xff\xc4\x04\xc0\xd3\x06\xcb\x3f\x31\x01\x70\x66\xc0\ \xfc\x93\x35\x26\xe0\x03\xa5\xbf\x02\x2c\x76\x67\xcc\xfc\x13\x13\ \x00\x77\xf2\xdb\x51\xf3\x4f\x4c\x00\x63\x1b\x3c\xff\xc4\x04\x30\ \x2e\xf9\x27\x31\x01\x8c\x49\xfe\xef\x31\x01\x8c\x46\xfe\xe7\x98\ \x00\x46\x22\xff\xe7\x98\x00\x46\x21\xff\x0b\x99\x00\x46\x20\xff\ \x4b\x99\x00\x7a\x27\xff\x2b\x99\x00\x7a\x26\xff\x6b\x99\x00\x7a\ \x25\xff\x49\x4c\x00\x3d\x92\xff\x64\x26\x80\xde\xc8\xff\x28\x26\ \x80\x9e\xc8\xff\x68\x26\x80\x5e\xc8\x7f\x16\x13\x40\x0f\xe4\x3f\ \x9b\x09\xa0\x75\xf2\x5f\xc4\x04\xd0\x32\xf9\x2f\x66\x02\x68\x95\ \xfc\x57\x61\x02\x68\x91\xfc\x57\x63\x02\x68\x8d\xfc\x57\x65\x02\ \x68\x89\xfc\x57\x67\x02\x68\x85\xfc\x37\x61\x02\x68\x81\xfc\x37\ \x63\x02\xa8\x9d\xfc\x37\x65\x02\xa8\x99\xfc\x37\x67\x02\xa8\x95\ \xfc\x77\x61\x02\xa8\x91\xfc\x77\x63\x02\xa8\x8d\xfc\x77\x65\x02\ \xa8\x89\xfc\x77\x67\x02\xa8\x85\xfc\x8b\x30\x01\xd4\x40\xfe\xc5\ \x98\x00\x4a\x93\x7f\x51\x26\x80\x92\xe4\x5f\x9c\x09\xa0\x14\xf9\ \x57\xc1\x04\x50\x82\xfc\xab\x61\x02\xd8\x9b\xfc\xab\x62\x02\xd8\ \x93\xfc\xab\x63\x02\xd8\x8b\xfc\xab\x64\x02\xd8\x83\xfc\xab\xb5\ \x74\x02\x7e\x67\x02\xb8\x86\xfc\xab\x66\x02\xd8\x92\xfc\xab\x67\ \x02\xd8\x8a\xfc\x9b\x60\x02\xd8\x82\xfc\x9b\x61\x02\x58\x9b\xfc\ \x9b\x62\x02\x58\x93\xfc\x9b\x63\x02\x58\x8b\xfc\x9b\x64\x02\x58\ \x83\xfc\x9b\x65\x02\x58\x4a\xfe\x4d\x33\x01\x2c\x21\xff\xe6\x99\ \x00\xe6\x92\x7f\x17\x4c\x00\x73\xc8\xbf\x1b\x26\x80\x63\xc9\xbf\ \x2b\x26\x80\x63\xc8\xbf\x3b\x26\x80\xa9\xe4\xdf\x25\x13\xc0\x14\ \xf2\xef\x96\x09\xe0\x3a\xf2\xef\x9a\x09\xe0\x2a\xf2\xef\x9e\x09\ \xe0\x32\xf2\x1f\x82\x09\xe0\x22\xf2\x1f\x86\x09\xe0\x59\xf2\x1f\ \x8a\x09\xe0\x69\xf2\x1f\x8e\x09\xe0\x8c\xfc\x87\x64\x02\x48\xe4\ \x3f\x30\x13\x80\xfc\x87\x66\x02\xc6\x26\xff\xe1\x99\x80\x71\xc9\ \x9f\x98\x80\x51\xc9\x9f\xff\x33\x01\xe3\x91\x3f\x4f\x31\x01\x63\ \x91\x3f\xcf\x30\x01\xe3\x90\x3f\x17\x30\x01\x63\x90\x3f\x97\x30\ \x01\xfd\x93\x3f\x57\x30\x01\x7d\x93\x3f\xd7\x30\x01\xfd\x92\x3f\ \x13\x98\x80\x3e\xc9\x9f\x89\x4c\x40\x7f\xe4\xcf\x11\x4c\x40\x5f\ \xe4\xcf\x91\x6e\xe5\x47\x26\xa0\x13\xf2\x67\x06\x13\xd0\x07\xf9\ \x33\x93\x09\x68\x9f\xfc\x59\xc0\x04\xb4\x4d\xfe\x2c\x64\x02\xda\ \x25\x7f\x56\x60\x02\xda\x24\x7f\x56\x62\x02\xda\x23\x7f\x56\x64\ \x02\xda\x22\x7f\x56\x66\x02\xda\x21\x7f\x36\x60\x02\xda\x20\x7f\ \x36\x62\x02\xea\x27\x7f\x36\x64\x02\xea\x26\x7f\x36\x66\x02\xea\ \x25\x7f\x76\x60\x02\xea\x24\x7f\x76\x62\x02\xea\x23\x7f\x76\x64\ \x02\xea\x22\x7f\x76\x66\x02\xea\x21\x7f\x0a\x30\x01\x75\x90\x3f\ \x85\x98\x80\xf2\xe4\x4f\x41\x26\xa0\x2c\xf9\x53\x98\x09\x28\x47\ \xfe\x54\xc0\x04\x94\x21\x7f\x2a\x61\x02\xf6\x27\x7f\x2a\x62\x02\ \xf6\x25\x7f\x2a\x63\x02\xf6\x23\x7f\x2a\x64\x02\xf6\x21\x7f\x2a\ \x65\x02\xb6\x27\x7f\x2a\x66\x02\xb6\x25\x7f\x2a\x67\x02\xb6\x23\ \x7f\x1a\x60\x02\xb6\x21\x7f\x1a\x61\x02\xd6\x27\x7f\x1a\x62\x02\ \xd6\x25\x7f\x1a\x63\x02\xd6\x23\x7f\x1a\x64\x02\xd6\x21\x7f\x1a\ \x65\x02\x96\x93\x3f\x0d\x33\x01\xcb\xc8\x9f\xc6\x99\x80\xf9\xe4\ \x4f\x07\x4c\xc0\x3c\xf2\xa7\x13\x26\xe0\x78\xf2\xa7\x23\x26\xe0\ \x38\xf2\xa7\x33\x26\x60\x3a\xf9\xd3\x21\x13\x30\xcd\x9d\xfc\x46\ \xfe\xf4\xc8\x04\x5c\x4f\xfe\x74\xcc\x04\x5c\x4d\xfe\x74\xce\x04\ \x5c\x4e\xfe\x0c\xc0\x04\x5c\x4c\xfe\x0c\xc2\x04\x3c\x4f\xfe\x0c\ \xc4\x04\x9c\x27\x7f\x06\x63\x02\xde\x27\x7f\x06\x64\x02\x4e\xc9\ \x9f\x41\x99\x00\xf9\x33\xb4\xd1\x27\x40\xfe\x0c\x6e\xe4\x09\x90\ \x3f\x0c\x3b\x01\xf2\x87\x24\x63\x4e\x80\xfc\xe1\x3d\xa3\x4d\x80\ \xfc\xe1\x9c\x91\x26\x40\xfe\xf0\x9c\x51\x26\x40\xfe\x70\xa1\x11\ \x26\x40\xfe\x70\xa9\xde\x27\x40\xfe\x70\xa5\x9e\x27\x40\xfe\x70\ \xad\x5e\x27\x40\xfe\x30\x49\x8f\x13\x20\x7f\x98\xac\xb7\x09\x90\ \x3f\x1c\xa5\xa7\x09\x90\x3f\x1c\xad\x97\x09\x90\x3f\xcc\xd2\xc3\ \x04\xc8\x1f\x66\x6b\x7d\x02\xe4\x0f\x8b\xb4\x3c\x01\xf2\x87\xc5\ \x5a\x9d\x00\xf9\xc3\x2a\x5a\x9c\x00\xf9\xc3\x6a\x5a\x9b\x00\xf9\ \xc3\xaa\x5a\x9a\x00\xf9\xc3\xea\x5a\x99\x00\xf9\xc3\x26\x5a\x98\ \x00\xf9\xc3\x66\x6a\x9f\x00\xf9\xc3\xa6\x6a\x9e\x00\xf9\xc3\xe6\ \x6a\x9d\x00\xf9\xc3\x2e\x6a\x9c\x00\xf9\xc3\x6e\x6a\x9b\x00\xf9\ \xc3\xae\x96\x4e\xc0\xef\x57\x9c\x00\xf9\xc3\xee\x6a\x99\x00\xf9\ \x43\x11\x35\x4c\x80\xfc\xa1\x98\xd2\x13\x20\x7f\x28\xaa\xe4\x04\ \xc8\x1f\x8a\x2b\x35\x01\xf2\x87\x2a\x94\x98\x00\xf9\x43\x35\xf6\ \x9e\x00\xf9\x43\x55\xf6\x9c\x00\xf9\x43\x75\xf6\x9a\x00\xf9\x43\ \x95\xf6\x98\x00\xf9\x43\xb5\xb6\x9e\x00\xf9\x43\xd5\xb6\x9c\x00\ \xf9\x43\xf5\xb6\x9a\x00\xf9\x43\x13\xb6\x98\x00\xf9\x43\x33\xd6\ \x9e\x00\xf9\x43\x53\xd6\x9c\x00\xf9\x43\x73\xd6\x9a\x00\xf9\x43\ \x93\xd6\x98\x00\xf9\x43\xb3\x6e\xe7\xa7\x8b\xf2\x3d\xc9\x83\x45\ \xaf\xff\x89\xfc\xa1\xa4\xa5\xa7\x00\x4f\x7f\x68\x5a\xa9\x09\x90\ \x3f\x54\xa1\xc4\x04\xc8\x1f\xaa\xb1\xf7\x04\xc8\x1f\xaa\xb2\xe7\ \x04\xc8\x1f\xaa\xb3\xd7\x04\xc8\x1f\xaa\xb4\xc7\x04\xc8\x1f\xaa\ \xb5\xf5\x04\xc8\x1f\xaa\xb6\xe5\x04\xc8\x1f\xaa\xb7\xd5\x04\xc8\ \x1f\x9a\xb0\xc5\x04\xc8\x1f\x9a\xb1\xf6\x04\xc8\x1f\x9a\xb2\xe6\ \x04\xc8\x1f\x9a\xb3\xd6\x04\xc8\x1f\x9a\xb4\xc6\x04\xc8\x1f\x9a\ \xb5\x74\x02\xe4\x0f\x4d\x5b\x32\x01\xf2\x87\xe6\xcd\x9d\x00\xf9\ \x43\x17\xe6\x4c\x80\xfc\xa1\x1b\xc7\x4e\x80\xfc\xa1\x2b\xc7\x4c\ \x80\xfc\xa1\x3b\x53\x27\x40\xfe\xd0\xa5\x29\x13\x20\x7f\xe8\xd6\ \xed\xfc\xe0\xca\xfc\xbf\x2f\x7f\xe8\xdb\x57\xf2\xd6\x85\xf1\xbf\ \x95\x2f\x97\xfe\x68\xc0\xf6\x3e\x9a\xef\xe6\xcd\x73\xf1\xff\x3b\ \xdf\xcb\x47\x4a\x7f\x2c\xf6\x77\xa3\xf4\x07\xa0\x90\xdb\xf9\x4c\ \x3e\x99\x0f\xe7\x46\xfe\x99\xbf\xe6\x24\x6f\x97\xfe\x40\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\ \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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x30\xc5\xff\x00\xf7\x47\x32\x28\xa8\ \xb9\xb3\xcd\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\ \x63\x72\x65\x61\x74\x65\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x31\ \x33\x54\x31\x37\x3a\x34\x36\x3a\x33\x32\x2b\x30\x30\x3a\x30\x30\ \x92\xed\xed\x93\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\ \x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\ \x31\x33\x54\x31\x37\x3a\x34\x36\x3a\x33\x32\x2b\x30\x30\x3a\x30\ \x30\xe3\xb0\x55\x2f\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x12\x12\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0c\x07\x16\x31\xf2\ \x1d\xc3\x00\x00\x10\xe0\x49\x44\x41\x54\x78\xda\xed\xdd\xcd\x8b\ \x67\x67\x5a\x06\xe0\xa7\xda\xce\xa2\x11\x12\x10\x3a\xe0\x26\x01\ \x05\x4d\x16\x8d\xd3\x63\x07\x0d\xe2\x47\x44\x4d\x2b\xa2\xab\x9e\ \x95\xc6\xdd\xb8\x92\x76\x3f\x0a\xed\xce\x6d\x8b\x88\x08\xa2\xd3\ \xe9\xd9\x18\x18\x68\x47\x70\x74\x63\xa2\xc8\x2c\xec\xa8\x4c\x16\ \x1a\x21\x82\x11\x22\x28\x13\x51\x46\x42\x9c\x24\xed\xa2\xca\xbc\ \x6f\x55\xd7\xaf\xce\xef\xe3\x9c\xf3\x7e\x5d\x57\xfe\x80\x39\x99\ \xaa\xba\xf3\x9c\xaa\xfb\xae\x8a\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\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\x5a\x77\x14\x2f\x94\x7e\x04\x2a\ \xe2\xb3\x61\x28\x57\xe3\x41\x7c\xb9\xf4\x43\x50\x89\x4b\x71\x3b\ \x3e\x2c\xfd\x10\xac\xe7\xe5\x78\x2f\x1e\x09\x00\x22\x22\xe2\xd9\ \x78\x23\x1e\xc5\xa3\xd2\x8f\xc1\x3a\xae\xc4\xdd\xf8\x24\x1e\x09\ \x00\x22\x22\xe2\x56\xbc\x1f\x8f\x04\xc0\x28\xae\xc5\xd7\x4f\x3e\ \xdc\x02\x80\xa7\xe2\xd5\x4f\x3f\x1b\x04\x40\xf7\x8e\xe2\x76\x7c\ \x98\x7d\xc0\x05\xc0\xd8\x5e\x8a\x77\xb3\xcf\x06\x01\xd0\xb9\x67\ \xe2\xf5\x53\x1f\x6e\x01\x30\xb2\x27\xe2\x4e\x7c\x7c\xe6\xf3\x81\ \x8e\xdd\x8a\x6f\x9c\xf9\x70\x0b\x80\x71\x3d\x1f\x6f\x3e\xf6\xd9\ \x20\x00\xba\xf5\x64\xdc\x3b\xe7\xc3\x2d\x00\xc6\x74\x14\x9f\x8f\ \x6f\x9e\xfb\xf9\x40\x97\x5e\x8c\x77\xce\xfd\x70\x0b\x80\x11\x3d\ \x1d\x5f\xd9\xf0\xd9\x20\x00\x3a\x74\x39\xee\xc4\x47\x1b\x3f\xe0\ \x02\x60\x34\x37\xe3\xbd\x8d\x9f\x0d\x02\xa0\x3b\xcf\xc5\xc3\x0b\ \x3e\xdc\x02\x60\x2c\xa9\xff\x21\x00\x86\xf0\xca\x86\x37\x3d\x01\ \x30\xa2\x1b\xf1\xf6\xc4\x67\x83\x00\xe8\xc8\xd5\x78\x30\xf9\xe1\ \x16\x00\xa3\xb8\x74\xa6\xff\x21\x00\x3a\xf7\xf2\x85\x6f\x7a\x02\ \x60\x2c\xff\xdf\xf4\x17\x00\x43\x98\x7e\xd3\x13\x00\x23\x49\x4d\ \x7f\x01\x30\x80\xbc\xe9\x2f\x00\x46\x77\xba\xe9\x2f\x00\x3a\x77\ \xb4\xe5\x9b\x9e\x00\x18\xc3\xd9\xa6\xbf\x00\xe8\xda\xe3\x4d\x7f\ \x01\x30\xae\xf3\x9a\xfe\x02\xa0\x63\xe7\x35\xfd\x05\xc0\xa8\xce\ \x6f\xfa\x0b\x80\x4e\x6d\x6a\xfa\x0b\x80\x11\x6d\x6e\xfa\x0b\x80\ \x2e\x6d\x6e\xfa\x0b\x80\xf1\x5c\xd4\xf4\x17\x00\xdd\xb9\xb8\xe9\ \x2f\x00\x46\x73\x73\xcb\xfe\x87\x00\xe8\xc2\x54\xd3\x5f\x00\x8c\ \x64\x97\xfe\x87\x00\xe8\xc0\x74\xd3\x5f\x00\x8c\x63\x9b\xa6\xbf\ \x00\xe8\xc6\x76\x4d\x7f\x01\x30\x86\x6d\x9b\xfe\x02\xa0\x13\xdb\ \x36\xfd\x05\xc0\x08\xb6\x6f\xfa\x0b\x80\x0e\xcc\xf1\xa6\x27\x00\ \xfa\xb1\x4b\xd3\x5f\x00\x34\x6f\xb7\xa6\xbf\x00\xe8\xdb\xae\x4d\ \x7f\x01\xd0\xb4\xdd\x9b\xfe\x02\xa0\x67\xbb\x37\xfd\x05\x40\xc3\ \xf6\x69\xfa\x0b\x80\x5e\xed\xd7\xf4\x17\x00\xcd\xda\xaf\xe9\x2f\ \x00\xfa\xb4\x6f\xd3\x5f\x00\x34\x69\xff\xa6\xbf\x00\xe8\xcf\x21\ \x4d\x7f\x01\xd0\xa0\x43\x9a\xfe\x02\xa0\x37\x87\x35\xfd\x05\x40\ \x63\x0e\x6d\xfa\x0b\x80\xbe\x1c\xda\xf4\x17\x00\x4d\x39\xbc\xe9\ \x2f\x00\xfa\x31\x6f\xff\x43\x00\x54\x6f\x8e\xa6\xbf\x00\xe8\xc5\ \x3c\x4d\x7f\x01\xd0\x88\xb9\x9a\xfe\x02\xa0\x07\xf3\x35\xfd\x05\ \x40\x13\xe6\x6b\xfa\x0b\x80\xf6\xcd\xd9\xf4\x17\x00\xd5\x5b\xe7\ \x4d\x4f\x00\xb4\x62\xde\xa6\xbf\x00\xa8\xdc\xdc\x4d\x7f\x01\xd0\ \xb2\xf9\x9b\xfe\x02\xa0\x62\x4b\x34\xfd\x05\x40\xbb\x96\x68\xfa\ \x0b\x80\x6a\x2d\xd3\xf4\x17\x00\x6d\x5a\xaa\xe9\x3f\xf9\xcf\xe5\ \xd2\xff\xe6\x83\xba\x15\xbf\x1b\xdf\x51\xfa\x21\xa8\xc4\xf3\x71\ \x3f\x3e\x5b\xe6\x7f\xfa\x52\xe9\x7f\xf7\x01\x3d\x19\xf7\xe2\x8f\ \x7c\xf9\x13\x11\xc7\x4d\xff\xbf\x29\xf5\xe5\x1f\xe1\x02\x58\xdb\ \x8b\x71\x3f\xbe\xab\xf4\x43\x50\x89\xa7\xe3\xf7\xe3\x67\x4b\x3e\ \x80\x0b\x60\x4d\x97\xe3\x4e\xfc\x95\x2f\x7f\x4e\xdc\x8c\xbf\x2f\ \xfb\xe5\xef\x02\x58\xd3\x73\x71\x3f\xbe\xbf\xf4\x43\x50\x89\x2b\ \xf1\x9b\xf1\x2b\x71\x54\xfa\x31\x04\xc0\x5a\x5e\x89\xdf\x89\x6f\ \x2f\xfd\x10\x54\xe2\x46\x7c\x29\xbe\xa7\xf4\x43\x44\x78\x05\x58\ \xc7\xd5\x78\x10\x5f\xf4\xe5\x4f\x44\x1c\x37\xfd\xff\xba\x8e\x2f\ \x7f\x17\xc0\x1a\x5e\x8e\x3f\x88\xef\x2c\xfd\x10\x54\xe2\xd9\xb8\ \x17\x3f\x52\xfa\x21\x12\x17\xc0\xb2\xae\xc4\xdd\xf8\x53\x5f\xfe\ \x9c\xb8\x15\x7f\x57\xd3\x97\xbf\x0b\x60\x59\xd7\xe2\x4b\x71\xad\ \xf4\x43\x50\x89\xa7\xe2\xb7\xe3\x17\x4a\x3f\xc4\x59\x2e\x80\xa5\ \x1c\xc5\xed\x78\xe8\xcb\x9f\x13\x2f\xc5\x5b\xf5\x7d\xf9\xbb\x00\ \x96\xf2\x4c\xdc\x8b\x1f\x2d\xfd\x10\x54\xe2\x89\xf8\x42\xfc\x7a\ \x9d\xff\xb1\x15\x00\x4b\xd0\xf4\x27\x29\xd8\xf4\x9f\x56\x65\x2a\ \x35\x4d\xd3\x9f\xa4\x70\xd3\x7f\x9a\x0b\x60\x5e\x9a\xfe\x24\xc5\ \x9b\xfe\xd3\x5c\x00\xf3\xd1\xf4\x27\x57\x41\xd3\x7f\x9a\x0b\x60\ \x2e\x9a\xfe\x24\x95\x34\xfd\xa7\x09\x80\x79\x68\xfa\x93\x54\xd3\ \xf4\x9f\xe6\x15\xe0\x70\x9a\xfe\x24\x55\x35\xfd\xa7\xb9\x00\x0e\ \xa5\xe9\x4f\x52\x59\xd3\x7f\x9a\x0b\xe0\x10\x9a\xfe\xe4\xaa\x6b\ \xfa\x4f\x73\x01\xec\x4f\xd3\x9f\xa4\xca\xa6\xff\x34\x17\xc0\x7e\ \x34\xfd\xc9\x55\xda\xf4\x9f\xe6\x02\xd8\x87\xa6\x3f\x49\xc5\x4d\ \xff\x69\x02\x60\x77\x9a\xfe\x24\x55\x37\xfd\xa7\x35\x9a\x5b\xc5\ \x68\xfa\x93\x54\xdf\xf4\x9f\xe6\x02\xd8\x85\xa6\x3f\x49\x03\x4d\ \xff\x69\x2e\x80\x6d\x69\xfa\x93\x6b\xa2\xe9\x3f\xcd\x05\xb0\x1d\ \x4d\x7f\x92\x66\x9a\xfe\xd3\x04\xc0\x36\x34\xfd\x49\x1a\x6a\xfa\ \x4f\xf3\x0a\x30\x45\xd3\x9f\xa4\xb1\xa6\xff\x34\x17\xc0\xc5\x34\ \xfd\x49\x9a\x6b\xfa\x4f\x73\x01\x6c\xa6\xe9\x4f\xae\xc1\xa6\xff\ \x34\x17\xc0\x26\x9a\xfe\x24\x8d\x36\xfd\xa7\xb9\x00\xce\xa3\xe9\ \x4f\xae\xd9\xa6\xff\x34\x17\xc0\xe3\x9e\x89\x2f\xc6\x8f\x95\x7e\ \x08\x2a\xf1\x44\x7c\x21\x7e\x2d\xbe\xad\xf4\x63\x2c\x45\x00\x9c\ \xa5\xe9\x4f\xd2\x78\xd3\x7f\x9a\x57\x80\x9c\xa6\x3f\x49\x07\x4d\ \xff\x69\x2e\x80\xe4\xc5\x78\x35\xbe\xbb\xf4\x43\x50\x89\x2e\x9a\ \xfe\xd3\x5c\x00\xc7\x8e\x9b\xfe\xbe\xfc\x39\xd6\x49\xd3\x7f\x9a\ \x0b\x20\x42\xd3\x9f\x5c\x47\x4d\xff\x69\x02\x40\xd3\x9f\xdc\x8d\ \xb8\x1f\xdf\x5b\xfa\x21\xd6\x33\xfa\x2b\x80\xa6\x3f\xc9\x71\xd3\ \x7f\xa0\x2f\xff\xd1\x2f\x80\x9f\x8a\x3f\x54\xf5\xe5\x44\x87\x4d\ \xff\x69\xe3\x5e\x00\x57\xe2\x6e\x7c\xd5\x97\x3f\x27\xba\x6c\xfa\ \x4f\x1b\xf5\x02\xd0\xf4\x27\xe9\xb6\xe9\x3f\x6d\xc4\x0b\x40\xd3\ \x9f\x5c\xc7\x4d\xff\x69\xe3\x5d\x00\x9a\xfe\x24\x9d\x37\xfd\xa7\ \x8d\x16\x00\x9a\xfe\x24\xdd\x37\xfd\xa7\x8d\xf4\x0a\xa0\xe9\x4f\ \x32\x44\xd3\x7f\xda\x38\x17\x80\xa6\x3f\xc9\x20\x4d\xff\x69\x63\ \x5c\x00\x9a\xfe\xe4\x86\x69\xfa\x4f\x1b\xe1\x02\xd0\xf4\x27\x19\ \xaa\xe9\x3f\xad\xff\x00\xd0\xf4\x27\x19\xac\xe9\x3f\xad\xef\x57\ \x00\x4d\x7f\x92\x01\x9b\xfe\xd3\x7a\xbe\x00\x34\xfd\x49\x86\x6c\ \xfa\x4f\xeb\xf5\x02\xd0\xf4\x27\x37\x68\xd3\x7f\x5a\x9f\x17\x80\ \xa6\x3f\xc9\xc0\x4d\xff\x69\xfd\x5d\x00\x9a\xfe\xe4\x86\x6e\xfa\ \x4f\xeb\xed\x02\xd0\xf4\x27\x19\xbe\xe9\x3f\xad\xaf\x00\xd0\xf4\ \x27\xd1\xf4\xdf\x42\x3f\xaf\x00\x9a\xfe\x24\x9a\xfe\x5b\xea\xe5\ \x02\xd0\xf4\x27\xd1\xf4\xdf\x5a\x0f\x17\x80\xa6\x3f\x39\x4d\xff\ \x1d\xb4\x7f\x01\x68\xfa\x93\x68\xfa\xef\xa8\xf5\x00\xd0\xf4\x27\ \xd1\xf4\xdf\x59\xcb\xaf\x00\x9a\xfe\x24\x9a\xfe\x7b\x69\xf7\x02\ \xd0\xf4\x27\xd1\xf4\xdf\x53\x9b\x17\x80\xa6\x3f\x39\x4d\xff\xbd\ \xb5\x78\x01\x68\xfa\x93\x68\xfa\x1f\xa4\xb5\x0b\x40\xd3\x9f\x9c\ \xa6\xff\x81\xda\xba\x00\x34\xfd\x49\x34\xfd\x67\xd0\x52\x00\x68\ \xfa\x93\x68\xfa\xcf\xa2\x95\x57\x00\x4d\x7f\x12\x4d\xff\xd9\xb4\ \x71\x01\x68\xfa\x93\x68\xfa\xcf\xa8\xfe\x0b\x40\xd3\x9f\x9c\xa6\ \xff\xac\x6a\xbf\x00\x34\xfd\x49\x34\xfd\x67\x57\x77\x00\x68\xfa\ \x93\x68\xfa\x2f\xa0\xde\x57\x00\x4d\x7f\x12\x4d\xff\x85\xd4\x7a\ \x01\x68\xfa\x93\x68\xfa\x2f\xa6\xc6\x0b\x40\xd3\x9f\x9c\xa6\xff\ \x82\xea\xbb\x00\x34\xfd\x49\x34\xfd\x17\x56\xd7\x05\xa0\xe9\x4f\ \x4e\xd3\x7f\x71\x35\x5d\x00\x9a\xfe\x24\x9a\xfe\xab\xa8\x27\x00\ \x34\xfd\x49\x34\xfd\x57\x52\xc7\x2b\x80\xa6\x3f\x89\xa6\xff\x8a\ \x6a\xb8\x00\x34\xfd\x49\x34\xfd\x57\x55\xfa\x02\xd0\xf4\x27\xa7\ \xe9\xbf\xb2\xb2\x17\x80\xa6\x3f\x89\xa6\x7f\x01\x25\x03\x40\xd3\ \x9f\x44\xd3\xbf\x88\x52\xaf\x00\x9a\xfe\x24\x9a\xfe\xc5\x94\xb9\ \x00\x34\xfd\x49\x34\xfd\x0b\x5a\xff\x02\xd0\xf4\x27\xa7\xe9\x5f\ \xd4\xda\x17\x80\xa6\x3f\x89\xa6\x7f\x71\x6b\x5e\x00\x9a\xfe\xe4\ \x34\xfd\x2b\xb0\xde\x05\xa0\xe9\x4f\xa2\xe9\x5f\x89\xb5\x02\x40\ \xd3\x9f\x44\xd3\xbf\x1a\x6b\xbc\x02\x68\xfa\x93\x68\xfa\x57\x65\ \xf9\x0b\x40\xd3\x9f\x44\xd3\xbf\x32\xcb\x5e\x00\x9a\xfe\xe4\x34\ \xfd\xab\xb3\xe4\x05\xa0\xe9\x4f\xa2\xe9\x5f\xa5\xe5\x02\x40\xd3\ \x9f\x44\xd3\xbf\x52\xcb\xbc\x02\x68\xfa\x93\x68\xfa\x57\x6c\x89\ \x0b\x40\xd3\x9f\x44\xd3\xbf\x6a\x73\x5f\x00\x9a\xfe\xe4\x34\xfd\ \x2b\x37\xef\x05\xa0\xe9\x4f\xa2\xe9\xdf\x80\xf9\x2e\x00\x4d\x7f\ \x72\x9a\xfe\x4d\x98\xeb\x02\xd0\xf4\x27\xd1\xf4\x6f\xc6\x3c\x01\ \xa0\xe9\x4f\xa2\xe9\xdf\x90\xc3\x5f\x01\x34\xfd\x49\x34\xfd\x1b\ \x73\xe8\x05\xa0\xe9\x4f\xa2\xe9\xdf\x9c\x43\x2e\x00\x4d\x7f\x72\ \x9a\xfe\x0d\xda\xff\x02\xd0\xf4\x27\xd1\xf4\x6f\xd4\xbe\x01\xa0\ \xe9\x4f\xa2\xe9\xdf\xac\x7d\x5e\x01\x34\xfd\x49\x34\xfd\x9b\xb6\ \xfb\x05\xa0\xe9\x4f\xa2\xe9\xdf\xb8\xdd\x2e\x00\x4d\x7f\x72\x9a\ \xfe\xcd\xdb\xe5\x02\xd0\xf4\x27\xd1\xf4\xef\xc2\xb6\x17\x80\xa6\ \x3f\x39\x4d\xff\x4e\x6c\x77\x01\x68\xfa\x93\x68\xfa\x77\x64\x9b\ \x00\xd0\xf4\x27\xd1\xf4\xef\xca\xd4\x2b\x80\xa6\x3f\x89\xa6\x7f\ \x77\x2e\xbe\x00\x34\xfd\x49\x34\xfd\x3b\xb4\xf9\x02\xd0\xf4\x27\ \xa7\xe9\xdf\xa5\x4d\x17\x80\xa6\x3f\x89\xa6\x7f\xb7\xce\x0f\x00\ \x4d\x7f\x12\x4d\xff\x8e\x3d\xfe\x0a\xa0\xe9\x4f\xa2\xe9\xdf\xb9\ \xb3\x17\x80\xa6\x3f\x89\xa6\x7f\xf7\xf2\x0b\x40\xd3\x9f\x9c\xa6\ \xff\x00\xd2\x05\xa0\xe9\x4f\xa2\xe9\x3f\x88\xe3\x0b\x40\xd3\x9f\ \x9c\xa6\xff\x30\x2e\x87\xa6\x3f\x39\x4d\xff\xa1\x5c\xd6\xf4\x27\ \xa3\xe9\x3f\x98\x65\xfe\x3c\x38\xd0\x84\x4b\xf1\x5a\x5c\x8f\xd7\ \x4b\x3f\x06\x95\xf8\x87\xf8\xc1\xf8\x8d\xf8\xb8\xf4\x63\xb0\x96\ \x4b\x11\xf1\x6e\xfc\x78\xfc\x6a\xfc\x6f\xe9\x47\xa1\x0a\xdf\x8a\ \x3b\xf1\x93\xf1\xaf\xa5\x1f\x83\x75\x1c\xbf\x02\x3c\x8a\xbb\x71\ \x23\xde\x2a\xfd\x30\x54\xe2\x2f\xe2\x5a\xdc\x2f\xfd\x10\xac\x21\ \x7d\x0f\xe0\xad\xf8\x81\xf8\xad\x78\x54\xfa\x81\xa8\xc2\x7f\xc5\ \x2f\xc6\xe7\xe2\x3f\x4b\x3f\x06\x4b\xcb\xbf\x09\xf8\x41\xdc\x8e\ \x9b\xf1\x6f\xa5\x1f\x89\x4a\xbc\x16\xd7\xe3\x2f\x4b\x3f\x04\xcb\ \x3a\xfb\x53\x80\x3f\x8f\xef\x8b\x3f\x2e\xfd\x50\x54\xe2\x5f\xe2\ \x25\xdf\x1d\xea\xdb\xe3\x3f\x06\xfc\x8f\xf8\xf9\xf8\xa5\xf8\x9f\ \xd2\x0f\x46\x15\x3e\x89\xbb\xf1\x43\xf1\x76\xe9\xc7\x60\x29\xe7\ \xf7\x00\xee\xc5\x8d\x78\xb3\xf4\xa3\x51\x89\x87\x71\xdd\x77\x87\ \x7a\xb5\xa9\x08\xf4\x8f\x7e\x1e\xcc\xa7\x3e\x88\xdb\xf1\x33\xbe\ \x3b\xd4\xa3\xcd\x4d\xc0\x8f\xe2\x4e\xfc\x70\xbc\x53\xfa\x01\xa9\ \xc4\x57\xe3\x33\xf1\x27\xa5\x1f\x82\xb9\x5d\x5c\x05\xfe\x5a\x7c\ \x36\x5e\x2d\xfd\x88\x54\xe2\xdf\xe3\xe7\xe2\x97\x7d\x77\xa8\x2f\ \x53\x5b\x80\xff\x8e\x57\xe2\x73\xf1\x7e\xe9\xc7\xa4\x0a\x8f\xe2\ \xf7\xe2\x85\xf8\xdb\xd2\x8f\xc1\x7c\xb6\x19\x03\x59\x0b\x90\x58\ \x0b\x74\x65\xbb\x35\xa0\xb5\x00\x89\xb5\x40\x47\xb6\x9d\x03\x5b\ \x0b\x90\xb3\x16\xe8\xc4\x2e\xbf\x0f\xc0\x5a\x80\xc4\x5a\xa0\x0b\ \xbb\xfd\x42\x10\x6b\x01\x72\xd6\x02\xcd\xdb\xfd\x37\x02\x59\x0b\ \x90\x58\x0b\x34\x6e\x9f\x5f\x09\x66\x2d\x40\x62\x2d\xd0\xb4\x7d\ \x7f\x27\xa0\xb5\x00\x89\xb5\x40\xb3\xf6\xff\xa5\xa0\xd6\x02\x24\ \xd6\x02\x8d\x3a\xe4\xb7\x02\x5b\x0b\x90\xb3\x16\x68\xd0\xa1\xbf\ \x16\xdc\x5a\x80\xc4\x5a\xa0\x39\x87\xff\x5d\x00\x6b\x01\x12\x6b\ \x81\xc6\xcc\xf3\x87\x41\xac\x05\x48\xac\x05\x1a\x32\xd7\x5f\x06\ \xb2\x16\x20\xb1\x16\x68\xc6\x7c\x7f\x1a\xcc\x5a\x80\x9c\xb5\x40\ \x13\xe6\xfd\xdb\x80\xd6\x02\x24\xd6\x02\x0d\x98\xfb\x8f\x83\x5a\ \x0b\x90\xb3\x16\xa8\xdc\x12\x7f\x1d\xd8\x5a\x80\xc4\x5a\xa0\x6a\ \xcb\xfc\x79\x70\x6b\x01\x12\x6b\x81\x8a\x2d\x13\x00\x11\xd6\x02\ \xe4\xac\x05\x2a\xb5\x5c\x00\x58\x0b\x90\xb3\x16\xa8\xd2\x92\x01\ \x60\x2d\xc0\x69\xd6\x02\xd5\x59\x36\x00\x22\xac\x05\xc8\x59\x0b\ \x54\x66\xf9\x00\xb0\x16\x20\x67\x2d\x50\x95\x35\x02\x20\xc2\x5a\ \x80\x9c\xb5\x40\x35\xd6\x0a\x00\x6b\x01\x72\xd6\x02\x95\x58\x2f\ \x00\xac\x05\x38\xcd\x5a\xa0\x02\x6b\x06\x40\x84\xb5\x00\x39\x6b\ \x81\xe2\xd6\x0e\x00\x6b\x01\x4e\xb3\x16\x28\x6a\xfd\x00\x88\xb0\ \x16\x20\x67\x2d\x50\x50\x99\x00\xb0\x16\x20\x67\x2d\x50\x4c\xa9\ \x00\x88\xb0\x16\x20\x67\x2d\x50\x44\xc9\x00\xb0\x16\x20\x67\x2d\ \x50\x40\xd9\x00\xb0\x16\xe0\x34\x6b\x81\x95\x95\x0e\x80\x08\x6b\ \x01\x72\xd6\x02\xab\xaa\x21\x00\xac\x05\xc8\x59\x0b\xac\xa8\x8e\ \x00\x88\xb0\x16\x20\x67\x2d\xb0\x92\x7a\x02\xc0\x5a\x80\x9c\xb5\ \xc0\x2a\x6a\x0a\x00\x6b\x01\x4e\xb3\x16\x58\x5c\x5d\x01\x10\x61\ \x2d\x40\xce\x5a\x60\x61\xf5\x05\x80\xb5\x00\xa7\x59\x0b\x2c\xa8\ \xc6\x00\x88\xb0\x16\x20\x67\x2d\xb0\x98\x5a\x03\xc0\x5a\x80\x9c\ \xb5\xc0\x42\xea\x0d\x80\x08\x6b\x01\x72\xd6\x02\x0b\xa8\x3b\x00\ \xac\x05\xc8\x59\x0b\xcc\xae\xf6\x00\xb0\x16\xe0\x34\x6b\x81\x59\ \xd5\x1f\x00\x11\xd6\x02\xe4\xac\x05\x66\xd4\x46\x00\x58\x0b\x90\ \xb3\x16\x98\x4d\x2b\x01\x10\x61\x2d\x40\xce\x5a\x60\x16\x2d\x05\ \x80\xb5\x00\x39\x6b\x81\x19\xb4\x15\x00\xd6\x02\x9c\x66\x2d\x70\ \xa0\xd6\x02\x20\xc2\x5a\x80\x9c\xb5\xc0\x41\x5a\x0c\x00\x6b\x01\ \x4e\xb3\x16\xd8\x5b\x9b\x01\x10\x61\x2d\x40\xce\x5a\x60\x4f\xed\ \x06\x80\xb5\x00\x39\x6b\x81\xbd\xb4\x1c\x00\x11\xd6\x02\xe4\xac\ \x05\x76\xd6\x7a\x00\x58\x0b\x90\xb3\x16\xd8\x51\xfb\x01\x60\x2d\ \xc0\x69\xd6\x02\x3b\xe8\x21\x00\x22\xac\x05\xc8\x59\x0b\x6c\xad\ \x97\x00\xb0\x16\x20\x67\x2d\xb0\xa5\x7e\x02\x20\xc2\x5a\x80\x9c\ \xb5\xc0\x16\xfa\x0a\x00\x6b\x01\x72\xd6\x02\x93\x7a\x0b\x00\x6b\ \x01\x4e\xb3\x16\xb8\x50\x7f\x01\x10\x61\x2d\x40\xce\x5a\xe0\x02\ \x7d\x06\x80\xb5\x00\xa7\x59\x0b\x6c\xd0\x6b\x00\x44\x58\x0b\x90\ \xb3\x16\x38\x57\xcf\x01\x60\x2d\x40\xce\x5a\xe0\x1c\x7d\x07\x40\ \x84\xb5\x00\x39\x6b\x81\x33\xfa\x0f\x00\x6b\x01\x72\xd6\x02\xa7\ \x8c\x10\x00\xd6\x02\x9c\x66\x2d\xf0\xa9\x31\x02\x20\xc2\x5a\x80\ \x9c\xb5\xc0\x89\x71\x02\xc0\x5a\x80\x9c\xb5\x40\x44\x8c\x15\x00\ \x11\xd6\x02\xe4\xac\x05\x86\x0b\x00\x6b\x01\x72\xc3\xaf\x05\xc6\ \x0b\x00\x6b\x01\x4e\x1b\x7a\x2d\x30\x62\x00\x44\x58\x0b\x90\x1b\ \x78\x2d\x30\x6a\x00\x58\x0b\x70\xda\xa0\x6b\x81\x71\x03\x20\xc2\ \x5a\x80\xdc\x90\x6b\x81\xb1\x03\xc0\x5a\x80\xdc\x80\x6b\x81\xd1\ \x03\x20\xc2\x5a\x80\xdc\x60\x6b\x01\x01\x10\x61\x2d\x40\x6e\xa8\ \xb5\x80\x00\x38\x66\x2d\x40\x6e\x98\xb5\x80\x00\x48\xac\x05\x48\ \x06\x59\x0b\x08\x80\x9c\xb5\x00\xc9\x10\x6b\x01\x01\x70\x96\xb5\ \x00\x49\xf7\x6b\x01\x01\xf0\x38\x6b\x01\x92\xce\xd7\x02\x02\xe0\ \x3c\xd6\x02\xe4\x3a\x5e\x0b\x08\x80\x4d\xac\x05\x48\xba\x5d\x0b\ \x08\x80\xcd\x3e\x88\xdb\xf1\xd3\xa3\xfc\x3c\x98\x49\x5d\xae\x05\ \x04\xc0\xc5\xfe\xcc\x5a\x80\x4f\x75\xb8\x16\x10\x00\x53\xac\x05\ \x48\x8e\xd7\x02\xff\x54\xfa\x31\xe6\x23\x00\xb6\x61\x2d\x40\xf2\ \x30\x3e\xd3\xcf\x77\x87\x04\xc0\x76\xac\x05\x48\x3a\x5a\x0b\x08\ \x80\x6d\x1d\xaf\x05\xfe\xb9\xf4\x63\x50\x89\x4e\xd6\x02\x02\x60\ \x17\x5f\x8b\xeb\xd6\x02\x9c\xe8\x62\x2d\x20\x00\x76\x63\x2d\x40\ \xd2\xc1\x5a\x40\x00\xec\xee\xb5\xb8\x1e\x6f\x94\x7e\x08\x2a\x71\ \xbc\x16\xf8\xa4\xf4\x63\xec\x4b\x00\xec\xe3\xdd\xfe\x7e\x1e\xcc\ \xde\xbe\x15\x77\xe2\x27\x5a\x5d\x0b\x08\x80\xfd\x58\x0b\x90\x6b\ \x76\x2d\x20\x00\xf6\x67\x2d\x40\xd2\xe8\x5a\x40\x00\x1c\xc2\x5a\ \x80\x5c\x83\x6b\x01\x01\x70\x28\x6b\x01\x92\xe6\xd6\x02\x02\xe0\ \x70\xd6\x02\x24\x8d\xad\x05\x04\xc0\x3c\xac\x05\x48\x1a\x5a\x0b\ \x08\x80\xb9\x58\x0b\x90\x34\xb3\x16\x10\x00\xf3\xb1\x16\x20\xd7\ \xc4\x5a\x40\x00\xcc\xcb\x5a\x80\xa4\x81\xb5\x80\x00\x98\x9b\xb5\ \x00\x49\xf5\x6b\x01\x01\xb0\x04\x6b\x01\x92\xc6\xd7\x02\xec\xe7\ \x28\x6e\xc7\x87\xf1\xa8\xba\x7f\xbe\x5c\xfa\xff\x98\x41\xbd\x14\ \xef\x16\xff\xd8\x9f\xf3\x8f\x0b\x60\x29\xd6\x02\xe4\x2a\x5d\x0b\ \x08\x80\x25\x59\x0b\x90\x34\xba\x16\xe0\x50\x2f\xc7\x7b\xa5\x0f\ \x3d\xaf\x00\xd5\x78\x36\xde\x28\xfe\x39\xe0\x15\x60\x55\xd6\x02\ \x24\xcd\xad\x05\x98\xc7\x2b\xf1\xcd\xd2\x69\xef\x02\xa8\xc6\x8d\ \x78\xbb\xf8\x67\x82\x0b\x60\x55\xd6\x02\x24\x0d\xad\x05\x98\xcf\ \xe5\xb8\x13\x1f\xb9\x00\x38\x71\xb3\x82\xef\x0e\xb1\xb2\x17\xe3\ \x1d\x01\xc0\x89\xa7\xe3\x2b\x5e\x01\xc6\x62\x2d\x40\xd2\xc0\x5a\ \x80\x25\xdc\x8a\x6f\xb8\x00\x38\xf1\x7c\xbc\xe9\x02\x18\x8b\xb5\ \x00\x89\xb5\xc0\x90\xca\xac\x05\x5c\x00\xb5\x2a\xb3\x16\xa0\xa8\ \x6b\xf1\x75\x01\xc0\x89\xa7\xe2\x55\x01\x30\x9a\x2b\x71\x37\x3e\ \x11\x00\x9c\xb8\x15\xef\x0b\x80\xd1\xac\xb9\x16\x10\x00\xb5\x5b\ \x77\x2d\x40\x15\xae\xc6\x03\x01\xc0\x89\x4b\x2b\x7e\x77\x88\x6a\ \xac\xb3\x16\x10\x00\x6d\x58\x6b\x2d\x40\x45\x9e\x8b\x87\x02\x80\ \x13\xeb\x7c\x77\x88\xaa\x2c\xbf\x16\x10\x00\x2d\x59\x7e\x2d\x40\ \x75\x96\x5d\x0b\x08\x80\xb6\x2c\xbd\x16\xa0\x42\x4f\xc6\x3d\x01\ \xc0\x89\xa3\xf8\xfc\x82\xdf\x1d\xa2\x52\x4b\xad\x05\x04\x40\x8b\ \x96\x5b\x0b\x50\xad\x67\xe2\x75\x01\xc0\x89\x27\xe2\x4e\x7c\x2c\ \x00\xc6\xb2\xc4\x5a\x40\x00\xb4\x6b\x89\xb5\x00\x95\x9b\x7b\x2d\ \x20\x00\x5a\x36\xff\x5a\x80\xea\xcd\xfb\xf3\x60\x01\xd0\xba\x79\ \xd7\x02\x34\x61\xbe\xb5\x80\x00\x68\xdf\x9c\x6b\x01\x1a\x31\xd7\ \x5a\x40\x00\xf4\x60\xbe\xb5\x00\x0d\x99\x63\x2d\x20\x00\x7a\x31\ \xcf\x5a\x80\xa6\x1c\xbe\x16\x10\x00\xfd\x98\xe3\xbb\x43\x34\xe6\ \xd0\xb5\x80\x00\xe8\xcb\xa1\x6b\x01\x1a\x74\xc8\x5a\x40\x00\xf4\ \xe6\xb0\xb5\x00\x4d\xda\x7f\x2d\x20\x00\xfa\x73\xc8\x5a\x80\x66\ \xed\xb7\x16\x10\x00\x7d\xda\x77\x2d\x40\xc3\xf6\x59\x0b\x08\x80\ \x5e\xed\xb7\x16\xa0\x69\xbb\xaf\x05\x04\x40\xcf\x76\x5f\x0b\xd0\ \xbc\xdd\xd6\x02\x02\xa0\x6f\xbb\xae\x05\xe8\xc0\x2e\x3f\x0f\x16\ \x00\xfd\xdb\x65\x2d\x40\x27\xb6\x5d\x0b\x08\x80\x11\x6c\xbf\x16\ \xa0\x1b\xdb\xad\x05\x04\xc0\x18\xb6\x5d\x0b\xd0\x95\xe9\xb5\x80\ \x00\x18\xc7\x36\x6b\x01\x3a\x33\xb5\x16\x10\x00\x23\x99\xfe\xee\ \x10\xdd\xb9\x78\x2d\x20\x00\x46\x73\xf1\x5a\x80\x2e\x6d\x5e\x0b\ \x08\x80\xf1\x5c\xb4\x16\xa0\x53\x9b\xd6\x02\x02\x60\x44\x9b\xd7\ \x02\x74\xec\xbc\xb5\x80\x00\x18\xd5\xf9\x6b\x01\xba\xf6\xf8\x5a\ \x40\x00\x8c\xeb\xbc\xb5\x00\x9d\x3b\xbb\x16\x10\x00\x63\x3b\xbb\ \x16\x60\x00\xf9\x5a\x40\x00\x8c\xee\xf4\x5a\x80\x21\xa4\x9f\x07\ \x0b\x00\xf2\xb5\x00\xc3\x38\x5e\x0b\x08\x00\x22\xd2\x5a\x80\x81\ \x5c\x8d\x07\x02\x80\x13\xc7\x6b\x01\x86\x72\x14\x2f\x94\x7e\x04\ \x2a\xe2\xb3\x01\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\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\xa0\x53\xff\x07\x2b\x7f\x1c\xee\xfd\xe3\x05\x12\x00\x00\ \x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\ \x65\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x32\x3a\ \x30\x37\x3a\x32\x32\x2b\x30\x30\x3a\x30\x30\x1c\x75\xa8\x82\x00\ \x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\ \x66\x79\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x32\ \x3a\x30\x37\x3a\x32\x32\x2b\x30\x30\x3a\x30\x30\x6d\x28\x10\x3e\ \x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\ \x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\ \x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ \x82\ \x00\x00\x25\x63\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x0d\x10\x04\x12\x42\x58\ \x6f\xb5\x00\x00\x24\x31\x49\x44\x41\x54\x78\xda\xed\xdd\x7b\x98\ \x15\xd5\x99\xef\xf1\xef\xde\x0d\x74\x83\x17\x6e\x02\x2a\xe2\x05\ \x14\xf1\x86\x66\xd4\x44\x5b\xd4\x89\x31\x46\x13\x1d\x1e\x83\x62\ \x92\x19\x1d\x27\x71\x70\x3c\x9a\xc1\x28\x1a\x3d\xc9\x93\x10\x8f\ \x46\xa2\xe2\xc4\x4b\xce\xf3\x78\x32\xe3\x73\x62\x72\x22\x18\x1d\ \xc5\xe4\xc4\x1c\x89\x26\x93\xd0\xa0\x63\x4c\xa2\xa8\xf1\xc2\x1d\ \x84\x6e\x2e\x72\x55\xe8\x86\xde\xfb\xfc\x01\x3d\x74\x37\x7d\xd9\ \xbb\x56\x55\xbd\xb5\x6a\xfd\x3e\xeb\x0f\xb1\xa1\xaa\xde\x77\xad\ \x55\x6f\xd7\xae\x5d\x97\x02\x79\x51\xc3\x59\x4c\xa4\x9e\xd1\x0c\ \x06\x36\xb2\x84\x06\xe6\x30\x9f\x56\xeb\xc0\x14\xb3\x39\x1f\x63\ \x96\x2a\xf4\xe7\x36\xd6\x52\xee\xa2\x35\x71\x2b\xfd\xad\xc3\x53\ \xcc\x8a\x59\x92\x33\x99\x55\x5d\x0e\x70\x5b\x5b\xc1\x65\xd6\x21\ \x2a\x66\xc5\x2c\x49\x28\x30\x9d\x52\x8f\x43\x5c\xa6\x4c\x89\x19\ \x14\xad\x43\x55\xcc\x8a\x59\xe2\x55\x64\x76\xaf\x03\xdc\xd6\x66\ \x65\x64\x98\x15\xb3\x62\x96\x98\xdc\x5d\xf1\x10\x97\x29\x73\xa7\ \x75\xb8\x8a\x59\x31\x4b\x7c\x26\x57\x35\xc4\x65\x4a\x4c\xb2\x0e\ \x59\x31\x2b\x66\x89\x47\x7f\x56\x54\x39\xc8\x65\x56\x31\x40\x31\ \x2b\xe6\x4c\xc6\x2c\x55\xba\xbd\xea\x21\x2e\x53\xe6\x56\xc5\xac\ \x98\x33\x19\xb3\x54\xa5\xa6\x9b\xef\x76\x7b\x6b\x8d\xd4\x28\x66\ \xc5\x9c\xb9\x98\xa5\x4a\xe7\x46\x1a\xe2\x32\x65\x26\x28\x66\xc5\ \x9c\xb9\x98\xcd\xf8\xfa\xf5\xc7\x44\x83\x25\x15\xb3\x62\xce\x1d\ \x5f\x0b\x40\xbd\xc1\x92\x8a\x59\x31\xe7\x8e\xaf\x05\x60\x74\xe4\ \x25\xc7\x28\x66\xc5\x9c\xb9\x98\xcd\x14\xac\x03\x88\xa8\x99\x7e\ \x91\x97\xac\x53\xcc\x8a\x39\x63\x31\x9b\xf1\xb5\x00\x94\x3d\xcc\ \x59\x31\x2b\xe6\xcc\xf1\xf5\x23\x80\x88\xc4\x40\x05\x40\x24\x60\ \x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\ \x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\ \x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\ \x54\x00\x44\x02\xa6\x02\x20\x12\xb0\xae\xee\x7f\x6e\xff\x32\xe5\ \xbe\xd6\x01\x8a\x08\x3b\x93\x7a\xa9\x79\xe7\x02\xd0\x9f\xa9\xdc\ \xc4\x30\xeb\x7c\x45\xa4\x4b\x6b\x99\xc9\x43\x6c\x8f\x6b\x75\x1d\ \x0b\xc0\x64\xee\x67\xa4\x75\x86\x22\xd2\xa3\x95\xdc\xc4\x93\xf1\ \xac\x6a\xef\xab\x10\x0a\x4c\xe7\x21\x0e\xb4\xce\x4d\x44\x7a\x31\ \x90\xcb\xe9\xcf\x8b\x4e\x0f\x3f\xdb\xa3\xed\x08\xa0\xc8\xe3\x4c\ \xb6\xce\x4b\x44\x2a\x36\x9b\x2f\x51\x72\x5d\x49\xdb\x11\xc0\x77\ \xb9\xd6\x3a\x1f\x11\xa9\xc2\x89\xf4\xe1\x45\xd7\x95\xec\x3e\x02\ \x98\xcc\x6c\xeb\x6c\x44\xa4\x4a\x65\x2e\xe7\x29\xb7\x55\x14\x80\ \xfe\xbc\xc3\x28\xeb\x5c\x44\xa4\x6a\xef\x33\x96\x8f\x5c\x56\x50\ \x04\x6e\xd4\xee\x2f\xe2\xa5\x91\xdc\xe0\xb6\x82\x02\x35\xac\xd1\ \xf7\xfe\x22\x9e\x6a\x62\xa4\xcb\xa5\x41\x45\x26\x68\xf7\x17\xf1\ \xd6\x08\xce\x74\x59\xbc\x18\xe2\x2b\x91\x45\x72\xc4\x69\x0f\x2e\ \x86\xf8\x4a\x64\x91\x1c\x71\xda\x83\x8b\x0e\x2f\x53\x16\x11\x7b\ \x4e\x2f\x35\x2f\x38\xbc\x4c\x59\x44\xec\x39\xbd\xd4\xbc\x10\xc7\ \xf5\xc4\x22\x62\xc8\xe1\xa5\xe6\x7a\x20\x88\x48\xc0\x54\x00\x44\ \x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\ \x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\ \x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\ \x04\x4c\x05\x40\x24\x60\x7d\x9c\x96\x76\xb8\x0d\xd1\x91\xcb\x4d\ \xcc\x56\x51\x2b\x66\xc5\x9c\x4c\xd4\x0e\x74\x04\x20\x12\x30\x15\ \x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\ \x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\ \x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\x2a\ \x00\x22\x01\x53\x01\x10\x09\x98\xaf\x05\xa0\x25\xf2\x92\xcd\x8a\ \x59\x31\x67\x2e\x66\x33\xbe\x16\x80\xcd\x91\x97\xdc\xa4\x98\x15\ \x73\xe6\x62\x36\xe3\x6b\x01\x58\x1c\x79\xc9\x45\x8a\x59\x31\x67\ \x2e\x66\x33\xbe\x16\x80\x06\x83\x25\x15\xb3\x62\xce\x1d\x5f\x0b\ \xc0\x1c\x83\x25\x15\xb3\x62\xce\xa1\xb2\x43\xb3\x53\x43\x53\xa4\ \x88\x1b\x0d\x4b\x9e\x62\x56\xcc\xdd\x33\xda\x0f\x7d\x3d\x02\x68\ \x65\x66\xa4\xe5\xee\xa5\xa4\x98\x15\x73\xe6\x62\x36\xe4\xe7\x11\ \x00\xd4\xb1\xbc\xea\x78\x57\xd2\x5f\x31\x2b\xe6\x4c\xc6\x6c\xb6\ \x1f\xfa\x5a\x00\xe0\x32\x4a\x55\x45\x5b\xe2\x52\xe3\x88\x15\xb3\ \x62\xee\x8e\x0a\x40\x04\x77\x55\x15\xed\x1d\xd6\xe1\x2a\x66\xc5\ \xdc\x2d\x15\x80\x08\x8a\xcc\xaa\x38\xd6\xc7\x33\x72\xbe\x43\x31\ \x2b\xe6\xae\xa8\x00\x44\x52\x60\x7a\x05\x07\x7b\x25\x66\x64\x60\ \x88\x15\xb3\x62\xee\x9e\x0a\x40\x64\x93\x58\xd1\x63\x94\xcb\xcd\ \x3f\xdf\x29\x66\xc5\xdc\x1b\x15\x00\x07\x75\xdc\x42\x63\x97\x11\ \x36\x32\x8d\x3a\xeb\xf0\x14\xb3\x62\xee\x95\xd1\x7e\x58\x70\x5a\ \xdc\xee\x55\x8a\xfb\x2a\x52\xcf\x44\xea\x19\xc3\x60\x60\x23\x8b\ \x69\x60\x0e\x0b\x32\xfd\xdd\xae\x62\x56\xcc\x6d\x8c\xf6\xc3\xfc\ \x14\x00\x11\x9f\x19\xed\x87\x59\x38\xfd\x21\x22\x46\x54\x00\x44\ \x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\ \x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\ \x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\ \x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\ \x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\ \xa9\x00\x88\x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\ \x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\ \x00\x91\x80\xa9\x00\x88\x04\xac\x8f\xd3\xd2\x4e\x6f\x26\x17\x11\ \x6b\x3a\x02\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\ \x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\ \x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\ \x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\ \x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\ \x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\ \x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\ \x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\ \xb9\xbd\x1d\xb8\x60\x1d\xbe\x48\x4e\x18\xbd\x69\x5b\x47\x00\x22\ \x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\ \x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\ \x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\ \x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\ \x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\ \x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\ \x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\ \x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\x91\x80\ \xb9\xbd\x1e\x3c\x4b\x6a\x38\x8b\x89\xd4\x33\x9a\xc1\xf4\x75\x58\ \xcf\x4e\x36\xb2\x84\x06\xe6\x30\x9f\x56\xeb\xa4\x94\x71\xc0\xf9\ \xa6\xa4\xec\xd0\xb2\xa2\x3f\xb7\xb1\xd6\x29\x93\xae\x5a\x13\xb7\ \xd2\xdf\x3a\x35\x65\x1c\x48\xbe\x66\xfb\xa1\xff\x05\x60\x32\xab\ \x62\x9f\x1a\x6d\x6d\x05\x97\x59\xa7\xa7\x8c\x83\xc8\x57\x05\x20\ \x92\x02\xd3\x29\x25\x36\x39\xca\x94\x29\x31\x23\x53\x67\x4a\x42\ \xcb\x38\x94\x7c\x55\x00\x22\x28\x32\x3b\xd1\xa9\xd1\xd6\x66\x65\ \x60\x82\x84\x99\x71\x38\xf9\xaa\x00\x44\x70\x77\x2a\x93\xa3\x4c\ \x99\x3b\xad\x53\x0d\x34\xe3\x70\xf2\x55\x01\xa8\xda\xe4\xd4\x26\ \x47\x99\x12\x93\x8c\xb3\x0d\x31\xe3\x90\xf2\x55\x01\xa8\x52\x7f\ \x56\xa4\x38\x3d\xca\xac\x62\x80\x69\xbe\xe1\x65\x1c\x56\xbe\x46\ \xfb\xa1\xf5\x27\x9f\xe8\x6e\x64\x54\xaa\xdb\x1b\xc9\x0d\xca\x58\ \xf9\xe6\x4d\xc1\xa9\x7e\x14\xcc\xe2\xae\x61\x0d\xc3\x52\xde\x66\ \x13\x23\x0d\x2f\x1c\x09\x2d\xe3\xd0\xf2\x35\xda\x0f\x7d\x3d\x02\ \x98\x90\xfa\xe4\x80\x11\x9c\xa9\x8c\x95\x6f\xbe\xf8\x5a\x00\x26\ \x06\xb4\xd5\x30\x33\x0e\x2d\x5f\x23\xbe\x16\x80\xfa\x80\xb6\x1a\ \x66\xc6\xa1\xe5\x6b\xc4\xd7\x02\x30\xda\x64\xab\x63\x94\xb1\xf2\ \xcd\x17\x5f\x4f\x02\x36\xd3\xcf\x64\xab\x75\xca\x58\xf9\x26\x42\ \x27\x01\x45\x24\x6d\xbe\x16\x80\xcd\x26\x5b\xdd\xa4\x8c\x95\x6f\ \xbe\xf8\x5a\x00\x16\x9b\x6c\x75\x91\x32\x56\xbe\xf9\xe2\x6b\x01\ \x68\x08\x68\xab\x61\x66\x1c\x5a\xbe\x46\x7c\x2d\x00\x73\x02\xda\ \x6a\x98\x19\x87\x96\xaf\x11\x5f\xbf\x05\xa8\x61\x35\xc3\x53\xde\ \x66\x13\x87\x52\x52\xc6\xca\x37\x11\xfa\x16\xa0\x2a\xad\xcc\x4c\ \x7d\x9b\xf7\x1a\xee\xfe\xe1\x65\x1c\x5a\xbe\x66\x7c\xbd\x1d\xb8\ \x8e\xe5\xa9\xde\x2c\xba\xd2\xfc\xf1\x91\xa1\x65\x1c\x56\xbe\x66\ \xfb\xa1\xaf\x05\x00\x2e\x4b\xf8\x59\x71\xed\x5b\x89\x4b\x8d\xb3\ \x0d\x31\xe3\x90\xf2\x55\x01\x88\xe0\xae\xd4\xa6\xc7\x1d\xd6\xa9\ \x06\x9a\x71\x38\xf9\xaa\x00\x44\x50\x64\x56\x2a\x93\xe3\xf1\xcc\ \x9c\x2b\x09\x2d\xe3\x70\xf2\x55\x01\x88\x24\x94\x87\x46\x87\x9b\ \x71\x28\xf9\xaa\x00\x44\x36\x29\xc1\x67\xc7\x2d\xcf\xc0\x27\x61\ \x65\x1c\x42\xbe\x2a\x00\x0e\xea\xb8\x85\xc6\xd8\xa7\x46\x23\xd3\ \x0c\xef\xfe\x53\xc6\x61\xe5\x6b\xb4\x1f\xfa\x7a\x21\xd0\xbe\x8a\ \xd4\x33\x91\x7a\xc6\x30\xd8\xe9\x46\xd2\x16\x36\xb2\x98\x06\xe6\ \xb0\x20\xe3\xdf\x0a\x87\x96\x71\xbe\xf3\x35\xda\x0f\xf3\x53\x00\ \x44\x7c\xa6\x2b\x01\x45\x24\x6d\x2a\x00\x22\x01\x53\x01\x10\x09\ \x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\x30\x15\x00\ \x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\x2a\x00\x22\x01\x53\ \x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\x02\x20\x12\ \x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\x60\x2a\x00\ \x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\x44\x02\xa6\ \x02\x20\x12\x30\x15\x00\x91\x80\xa9\x00\x88\x04\x4c\x05\x40\x24\ \x60\x2a\x00\x22\x01\x53\x01\x10\x09\x98\x0a\x80\x48\xc0\x54\x00\ \x44\x02\xd6\xc7\x3a\x80\xd8\xd4\x70\x16\x13\xa9\x67\x34\x83\xe9\ \xeb\xb0\x9e\x9d\x6c\x64\x09\x0d\xcc\x61\x3e\xad\xd6\x49\x29\xe3\ \x08\x86\x70\x30\x87\x70\x28\x23\x18\xc9\x70\x86\xd3\x97\xfd\xe9\ \xc3\x01\x14\x19\x48\x81\x41\x40\x2b\x5b\x00\xd8\xc6\x16\x36\xb3\ \x85\x2d\xac\x67\x2d\x4d\xac\x66\x2d\xab\x58\x9d\xa1\x97\x86\x27\ \x2e\x1f\xaf\x07\xef\xcf\x54\x6e\x62\x58\xcc\x6b\x5d\xcb\x4c\x1e\ \x62\xbb\x75\x72\xca\xb8\x57\x83\x38\x8e\xe3\x19\xc7\x09\x1c\xcb\ \xa1\xd4\x39\xae\xad\x85\x65\x2c\x61\x09\x8b\x78\x93\x37\x79\x3f\ \xa5\x1c\xcc\xf6\xc3\xb2\x43\xcb\x86\xc9\xac\x72\xca\xa2\xa7\xb6\ \x82\xcb\xac\xd3\x53\xc6\xdd\x38\x96\x7f\xe0\x61\x7e\xcd\xea\xc4\ \xfa\xa2\x4c\x99\x0f\xf8\x1d\x3f\xe0\x6a\x8e\x4f\xf8\xe3\xb2\xd9\ \x7e\xe8\x77\x01\x28\x30\x9d\x52\xa2\x13\xa0\xc4\x8c\x4c\x9d\x29\ \x09\x2f\xe3\x8e\xea\x98\xc0\xad\xcc\x61\x6d\xa2\x7d\xd0\x55\xdb\ \xcc\x8b\xdc\xc5\x05\xec\x97\x48\x5e\x2a\x00\x11\x14\x99\x9d\xca\ \xd0\xcf\xca\xcc\x0e\x11\x5e\xc6\x6d\x6a\x98\xc0\xdd\x34\xd0\x9c\ \xfa\x8e\xdf\xb9\xb5\xd0\xc0\x77\xf9\x14\xfd\x62\xcd\x4f\x05\x20\ \x82\xbb\x53\x1b\xf4\x3b\xad\x53\x0d\x36\x63\xd8\x8f\x4b\x78\x84\ \x35\xe6\x3b\x7e\xe7\xf6\x21\x73\x99\xca\xa8\x98\xb2\x54\x01\xa8\ \xda\xe4\x14\x07\xbb\xc4\x24\xe3\x6c\x43\xcc\x78\x2c\xb7\xf0\x5b\ \x76\x9a\xef\xea\x3d\xf7\xd3\x4b\x4c\xe3\x28\xe7\x5c\x55\x00\xaa\ \xd4\x9f\x15\xa9\x0e\xf4\x2a\x06\x98\xe6\x1b\x56\xc6\x43\xb9\x81\ \x97\xcd\x77\xee\x6a\xda\x2b\xdc\xca\x48\x87\x8c\x55\x00\xaa\x74\ \x7b\xea\x43\x7c\xab\x69\xbe\xa1\x64\xdc\x8f\x4b\x78\x22\x03\x9f\ \xf4\xa3\xb4\x56\xe6\x31\x85\xfd\x23\xe5\x6d\xb6\x1f\x9a\x6d\xd8\ \x49\x8d\xc1\x59\xe0\x46\x6a\x94\x71\xa2\x4e\xe5\x61\x36\x98\xef\ \xc6\xae\x6d\x33\x8f\x70\x72\xd5\xb9\x9b\xed\x87\x66\x1b\x76\x72\ \xae\xc9\xd0\x4e\x50\xc6\x09\x29\x72\x09\x73\xcd\x77\xdd\x38\xdb\ \x1f\x98\x42\xff\x2a\x7a\xc0\x68\x3f\xcc\xda\x97\x3d\x95\x9a\x18\ \xd0\x56\xf3\x9e\xf1\x40\x6e\x62\x11\xcf\x72\xbe\x49\x86\x49\x39\ \x95\x47\x58\xc6\xb7\x18\x6a\x1d\x48\x6f\x8c\x2a\x8f\xa3\x97\x4c\ \xaa\x7a\x83\x32\x8e\xd9\x68\x66\xb0\xd1\xfc\xb7\x75\x92\x6d\x07\ \x8f\x71\x6c\x05\x3d\x61\xb6\x1f\x9a\x6d\xd8\x49\xfa\x9f\x87\xcb\ \x94\x69\x54\xc6\x31\x3a\x86\xff\x43\xab\xf9\x0e\x9a\x46\xdb\xc5\ \x4f\x18\xd7\x4b\x6f\x18\xed\x87\xbe\xde\x0c\xd4\x1c\xf3\x75\x58\ \x95\x6e\xd5\xf5\x46\x13\x65\xbc\xdb\x28\xbe\xc9\x97\x73\x74\x2f\ \x6a\xef\x4a\x3c\xc5\xb7\x78\xbb\xdb\xbf\x37\xda\x0f\x7d\x3d\x07\ \x20\xfe\x3a\x84\x87\x58\xc4\x94\xa0\x76\x7f\x28\x72\x39\x6f\xf0\ \x18\x47\x58\x07\xd2\x39\x2c\x3f\x6d\x36\xd9\xea\x26\x65\xec\xe8\ \x20\xee\x65\x11\x37\x98\x1c\xcd\xd8\xab\xe1\x4a\xde\xe6\x5e\x06\ \x5b\x07\xb2\x97\xaf\x05\x60\xb1\xc9\x56\x17\x29\x63\x07\x35\x5c\ \xcf\xbb\x4c\x33\xbf\xa2\xd2\x56\x1d\xd3\x58\xc4\x4d\x4e\x8f\x70\ \x89\x91\xaf\x05\xc0\xe6\x7c\xbc\xe5\xb7\x00\xbe\x67\x7c\x3a\xf3\ \x79\x38\x4b\xbf\xfb\x0c\x0d\x61\x26\x6f\x72\x91\x75\x18\xe0\x6f\ \x01\x98\x13\xd0\x56\xfd\xcf\xf8\x60\x1e\xe1\x25\x3e\x6e\x92\x41\ \x56\x1d\xc3\x2f\xf9\x39\x47\x5a\x87\xe1\xeb\xd7\x80\x35\x34\x19\ \x7c\x25\x66\x59\x2e\x7d\xcd\xb8\x2f\x5f\x63\xb3\xf9\x17\x71\x59\ \x6d\x1f\x72\xf3\x9e\xcb\xad\x5d\xd6\xe2\xc0\xd7\x23\x80\x56\x66\ \xa6\xbe\xcd\x7b\x4d\x1f\x16\xe9\x67\xc6\xa7\xf0\x07\xee\xe7\xc0\ \xd4\x23\xf7\xc5\x00\xee\xe3\x25\xc6\x5b\x86\x60\x54\x79\x9c\xd5\ \xb1\x3c\xd5\x5a\xbd\xb2\xaa\x2b\xbb\x95\x31\xf4\xe1\x1b\x9e\xde\ \xd5\x97\x76\x6b\xe1\x4e\xa7\xe5\x9d\x98\x6d\xd8\xd9\x65\x09\x3f\ \x1b\xaf\x7d\x2b\x71\xa9\x71\xb6\xbe\x65\x3c\x9a\xdf\x99\xef\x58\ \xa1\x34\x27\x66\x1b\x8e\xc1\x5d\xa9\x75\xf1\x1d\xd6\xa9\x7a\x95\ \x71\x81\x29\x6c\x33\xdf\x2d\xc2\x69\x4e\xcc\x36\x1c\x83\x22\xb3\ \x52\xe9\xe0\xc7\x33\x73\xae\xc4\x87\x8c\x0f\xe7\x05\xf3\x5d\x22\ \xac\xe6\xc4\x6c\xc3\xb1\x08\xef\x21\xd9\x59\xcf\xf8\x93\x06\xdf\ \x56\x84\xde\x9c\x98\x6d\x38\x36\x93\x12\x7c\x56\xde\xf2\x4c\x7c\ \xf6\xf7\x25\xe3\x02\x5f\x0f\xe4\xfe\xbe\x6c\x35\x27\x66\x1b\x8e\ \x51\x1d\xb7\xd0\x18\x7b\xb7\x36\x32\xcd\xf0\xee\x3f\xff\x32\x1e\ \xc8\xd3\xe6\xbb\x42\x98\xcd\x81\xaf\xb7\x03\xef\xab\x48\x3d\x13\ \xa9\x67\x0c\x83\x9d\x6e\x35\x69\x61\x23\x8b\x69\x60\x0e\x0b\x32\ \xfe\x92\xc8\x6c\x65\xfc\x31\x9e\x64\xb4\x75\x97\x04\xca\x61\x3f\ \xcc\x4f\x01\x10\x4b\x5f\xe1\xe1\x0c\x1d\x2d\x95\x59\xcd\x52\x96\ \xb2\x92\xf5\x6c\xd8\xd3\x76\xb1\x09\x68\xe1\x43\x60\x3f\xfa\x01\ \x83\xe8\xc3\xd0\x3d\x6d\x18\xa3\x38\x92\xa3\x38\xd4\xcb\x39\xad\ \x02\x20\x86\x8a\xdc\xc3\xcd\xd6\x41\xb0\x8b\xf7\x58\xc8\x6b\x2c\ \xe4\x6d\x56\xd0\x1c\x71\x2d\xb5\x1c\xc1\xb1\x8c\x67\x3c\xe3\x39\ \xc6\xf4\x29\xd0\xd5\x50\x01\x10\x33\x75\xfc\x88\xc9\x86\xdb\x6f\ \x64\x3e\xf3\x58\xc0\x9f\xd9\x11\x7b\x66\xa7\x50\xcf\x04\xea\x19\ \x61\x98\x5f\x25\x54\x00\xc4\xc8\x10\x9e\xe1\x6c\x93\x2d\x6f\xe2\ \xd7\x3c\xc7\xef\x52\x79\x46\xc3\x31\x9c\xc3\x45\x9c\xcf\x40\x93\ \x4c\x7b\xa7\x02\x20\x26\x8e\xe4\x97\x1c\x97\xfa\x56\xdf\xe0\xe7\ \x3c\xc7\x02\x76\xa5\xbc\xdd\x3e\xd4\x73\x11\x97\x70\x42\xea\x19\ \xf7\xc6\x69\x3f\x34\xfa\xfa\x41\xbc\x37\x9e\x55\x29\x7f\xdd\xb5\ \x84\x19\x1c\x6f\x9d\x36\x27\x30\x9d\xbf\x98\x7f\xf5\x17\xdb\x7e\ \xa8\x02\x20\x51\x9c\xc7\xd6\x14\xa7\x78\x13\xf7\xd8\xde\x34\xbb\ \x8f\x93\xb9\xcf\xe8\x51\xed\x2a\x00\x62\xee\xdc\xd4\x76\xff\x56\ \xe6\x72\x95\xf9\xad\xd8\x5d\xeb\xc7\xe5\xcc\x4d\xf1\x0e\x4d\x15\ \x00\xc9\x84\x0b\xf8\x28\x95\x89\xbd\x85\x7f\xf1\xe0\xe2\xa2\x31\ \x7c\x3f\xd5\xa3\x21\x15\x00\x31\x95\xce\xee\xdf\xc8\x74\x86\x58\ \xa7\x5a\xb1\x03\x99\xca\x4a\x15\x00\xc9\xbf\x8b\xd8\x9e\xf8\x84\ \x5e\xc4\xd5\x1e\xbe\x39\xa0\x1f\x5f\x66\x89\x0a\x80\xe4\xd9\x85\ \x89\xef\xfe\x2b\x98\x4a\xad\x75\x9a\x91\xf5\xe5\x2a\x16\xab\x00\ \x48\x3e\x9d\xc7\x8e\x44\x27\x72\x23\xd7\x7b\xf8\x9b\xbf\xb3\x5a\ \xbe\x9a\xf2\x33\x11\x9c\xa8\x00\x48\x65\x4e\x4c\xf4\x45\xde\x2d\ \x3c\x90\xd9\x2b\xed\xaa\xb7\x1f\xd3\x13\x2e\x96\x2a\x00\x92\xaa\ \xc3\x12\x7c\x08\x49\x99\x9f\x33\xc6\x3a\xc1\xd8\x1d\xcd\x13\x2a\ \x00\x92\x0f\x43\x78\x33\xb1\xe9\xbb\x84\x0b\xac\xd3\x4b\xcc\x45\ \x2c\x53\x01\x10\xdf\xd5\xf1\xfb\x84\xa6\x6e\x2b\x8f\xb0\xbf\x75\ \x7a\x89\x1a\xc0\x0c\x76\xa9\x00\x88\xbf\x8a\x3c\x95\xd0\xc4\x7d\ \x3d\x90\xf7\x05\x9e\xc1\x42\x15\x00\xf1\xd5\xfd\x09\xfd\xee\xbf\ \x27\x07\x67\xfc\x2b\x55\xcb\x7d\x09\x5e\x32\xec\x44\x05\x40\x7a\ \xf2\xc5\x44\xa6\xec\x1a\x2e\xb4\x4e\x2c\x75\xe7\x25\x76\xf7\xa4\ \x13\x15\x00\xe9\xde\xf8\x44\xde\xf0\xf3\x33\x8f\x2e\xf2\x8d\xd3\ \x50\xfe\x3d\x91\x02\x70\x86\x4b\x50\x2a\x00\xd2\x9d\xc1\xbc\x17\ \xfb\x64\xdd\xc9\xd7\xad\xd3\x32\x35\x85\x96\xd8\xfb\x74\x25\xc3\ \xa2\x07\xa4\x02\x20\x5d\x2b\xf2\x8b\xd8\xa7\xea\x5a\xce\xb3\x4e\ \xcb\xdc\xd9\xac\x89\xbd\x5f\x5f\x88\xfe\x00\x53\x15\x00\xe9\xda\ \x77\x62\x9f\xa6\xaf\x70\xb8\x75\x52\x99\x30\x92\xf9\xb1\xf7\xed\ \x9d\x51\x83\x51\x01\x90\xae\x5c\x1c\xfb\x4b\xbe\x7e\x1c\xd0\x59\ \xff\xde\xd4\xf2\xd3\x98\x7b\xb7\xc4\xc5\xd1\x42\x51\x01\x90\x7d\ \x0d\x8f\xfd\x76\x96\x07\xf4\x08\xd9\x0e\x0a\x4c\x8f\xb9\x87\xd7\ \x71\x48\x94\x40\x54\x00\xa4\xb3\x42\xcc\x9f\xfe\x77\x72\xad\x75\ \x4a\x99\x74\x75\xcc\x27\x04\x9f\x8f\x52\x64\x55\x00\xa4\xb3\x6b\ \x63\x9d\x96\xdb\xf8\xb4\x75\x42\x99\x75\x21\x1f\xc6\xda\xd7\x37\ \x56\x1f\x82\x0a\x80\x74\x34\x9a\x2d\x31\x4e\xc9\x4d\x9c\x65\x9d\ \x50\xa6\x4d\x60\x73\x8c\xbd\xbd\x83\x93\xab\x0d\x40\x05\x40\xda\ \xeb\x13\xeb\x19\xea\xf5\x9c\x66\x9d\x50\xe6\x9d\xce\x86\x18\x7b\ \xfc\xf5\x6a\x4f\xb5\xe6\xa5\x00\xd4\x70\x0e\x33\x59\x40\x93\xe3\ \xe7\xaa\x16\x9a\x58\xc0\x7d\x9c\x9d\xf9\x57\x43\xc6\x95\xf1\x0e\ \x9a\xf8\x3d\x0f\xf2\x19\xfa\x01\xdf\x8c\x71\x32\x36\x72\x92\x75\ \x27\x75\xd1\x57\xd9\x1b\xe1\xf1\x34\xc6\xd8\xeb\xdf\xae\x6e\xe3\ \x79\x28\x00\xfd\xb9\x2d\x81\x97\x34\x34\x71\x6b\x46\x9f\x47\x9f\ \x54\xc6\x6b\xb8\x3f\xc6\xd3\x52\xeb\x33\xb2\xfb\x77\xdf\x57\xd9\ \x19\xe1\xf1\x31\x1e\x05\x34\x73\x62\x35\x9b\xf6\xbf\x00\x4c\x4e\ \xf0\x15\x55\x2b\xb8\xcc\x3a\xbd\x94\x33\x8e\xab\x6d\xca\xc8\xc1\ \x7f\x6f\x7d\x95\x95\x11\x3e\x3d\xc6\x73\x01\x2f\x57\x73\x6c\xe3\ \x77\x01\x28\x30\x3d\xe1\x37\xb3\x94\x98\x41\xd1\x3a\xcd\x76\x8a\ \xdc\x6d\xbe\x73\xf7\xde\xb6\x65\xe2\xd4\x5f\x65\xb3\x23\x2b\x23\ \x7c\x4e\x8c\xdf\x08\xdc\x5c\xf9\x66\x7d\x2e\x00\x45\x66\xa7\x32\ \x9d\x67\x65\x62\x82\xa4\x99\xb1\x5b\x6b\xc9\xc4\x17\x7f\xd5\xf4\ \x55\x36\x46\xf8\xc2\xd8\x3e\x80\x6d\xe3\xb0\x4a\x37\xea\x73\x01\ \x48\xef\x77\x61\xe4\x2b\xad\xbd\xcd\x38\x7a\x2b\x71\xb5\x75\x37\ \x45\xe8\xab\x6c\x8c\xf0\x97\x63\x1b\x85\x59\x95\x6e\xd2\xdf\x02\ \x30\x39\xd5\x49\x3d\xc9\x38\xdb\xb4\x33\x8e\xde\xee\xb0\xee\xa6\ \x48\x7d\x95\x8d\x11\x86\xbb\x62\x1b\x87\x4f\x56\xb6\x41\x5f\x0b\ \x40\xff\x44\x1f\x53\xbd\x6f\x5b\xc5\x00\xd3\x7c\xd3\xcf\x38\x5a\ \x7b\x3c\x13\xd7\xfc\x47\xe9\x2b\xfb\x11\x06\x28\xf0\x58\x4c\x23\ \xf1\x26\x7d\x2b\xd9\xa0\xaf\x05\xe0\xf6\xd4\xa7\xf6\xad\xa6\xf9\ \xc2\x6d\xe6\x3b\x77\xef\xad\x21\x23\x77\xfc\x45\x9b\x1d\xd6\x23\ \xbc\x5b\x2d\x2f\xc5\x34\x1a\x37\x56\xb2\x39\x3f\x0b\x40\x4d\x02\ \xdf\x82\xf7\xd6\x1a\x4d\x2f\x1c\xb1\xc8\xb8\xda\xb6\x86\x43\x0d\ \x7b\xc8\xbd\xaf\x6c\x47\x78\xaf\xc3\x62\xba\x17\x73\x03\x83\x7a\ \xdb\x54\x16\xce\x7d\x46\x31\xc1\xe5\x21\x48\x11\x8d\xe0\xcc\xc0\ \x32\xae\xce\x2e\xbe\xc0\x6a\xeb\x20\x80\xe8\x7d\x65\x3b\xc2\x7b\ \xad\xe2\xf3\xec\x8c\x61\x3d\x43\xb8\xad\xb7\x7f\xe2\x6b\x01\x98\ \x18\xd0\x56\xed\xb7\x5d\x99\x9b\xf9\x0f\xeb\x10\xf6\x88\xde\x57\ \x59\xe9\xe5\x06\x6e\x8f\x65\x3d\x53\x19\xd5\xdb\x3f\xf1\xf3\x23\ \x40\x5c\x9f\x92\xaa\x6b\x0d\x86\x19\x2f\x30\x3f\xc0\xef\xb9\xfd\ \xcc\xb0\x6f\x3a\x8b\x3e\x3b\x2c\x47\xb8\xa3\x02\x4f\xc7\x32\x2e\ \x3f\xec\x6d\x43\x7e\x16\x00\x9b\xcf\xc3\x8d\xc1\x65\x5c\x69\x5b\ \x99\xa9\x07\x7d\x47\xef\x2b\xcb\x11\xee\xec\x20\xde\x8f\x61\x64\ \x76\x32\xae\xa7\x8d\xf8\xfa\x11\xc0\xe6\x45\xd2\x83\x82\xcb\xb8\ \x32\x25\xae\xe6\x03\xeb\x20\xda\x89\xde\x57\x83\xac\x43\x6f\x67\ \x3d\x57\x53\x72\x5e\x4b\x1f\xbe\xd1\xd3\x5f\xfb\x5a\x00\x24\x4b\ \xee\xe3\x05\xeb\x10\x3a\x88\xfe\x55\x64\xad\x75\xe8\x1d\xcc\xe5\ \xfb\x31\xac\xe5\x8b\x8c\xed\xe9\xaf\xf5\x11\xc0\x8f\x03\xc4\xec\ \x7e\x04\xa8\xfa\x11\x14\x89\xf3\x73\x4e\x77\xa5\x36\x96\xd7\x8a\ \xfe\x5b\xf7\x1b\xf0\xf5\x08\x60\xb1\xc9\x56\x17\x05\x97\x71\xef\ \x4a\x5c\x4b\x8b\x75\x10\xb9\xd5\xcc\x57\x68\x75\x5e\xcb\x95\x1c\ \xd9\xdd\x5f\xf9\x5a\x00\x6c\xce\xd6\x5a\x9e\x23\xce\xce\xf9\xe9\ \x8e\x1e\x60\x81\x75\x08\xb9\xf6\x9f\xfc\xc0\x79\x1d\x7d\x7b\xba\ \xc6\xd1\xcf\xc3\xa5\xb3\x4d\x0e\x76\xeb\x83\xcb\xb8\xb7\xb6\x8c\ \xfd\x0d\xfb\xa4\x3b\x7e\xce\xe9\xee\xec\xc7\x12\xe7\x71\xfa\x88\ \xa1\xf9\xea\xac\x9a\xd8\x5f\x5c\xd1\x7b\x6b\x34\x3d\x5e\xb2\xc8\ \xb8\xf7\x76\x81\x61\x8f\x74\xcf\xcf\x39\xdd\xbd\xcf\xc6\x30\x52\ \xdd\x5e\x13\xe8\x6b\x67\xdd\x9a\xfa\x64\xaf\xe2\x29\x2b\x39\xc9\ \xb8\xb7\xf6\xb4\x71\x8f\x74\xc7\xd7\x39\xdd\x3d\xf7\x17\xb5\xac\ \xea\xee\xde\x40\x5f\x3b\xab\x8e\xe5\xa9\x4e\xf6\x95\xe6\x8f\x8f\ \x4c\x3b\xe3\xde\x5a\x33\xc7\x18\xf7\x48\x77\x7c\x9d\xd3\xdd\x3b\ \x9a\x1d\xce\xe3\x75\x45\xde\x3a\xeb\xb2\x84\x9f\x06\xd8\xbe\x95\ \xb8\xd4\x38\xdb\xb4\x33\xee\xbd\x7d\xcf\xba\x3b\xba\xe5\xef\x9c\ \xee\xde\x4c\xe7\xf1\xea\xe6\x34\xb2\xcf\x9d\x15\xdf\xd3\x53\x7a\ \x6b\xd9\x78\xca\x4d\x9a\x19\xf7\xd6\x9a\x32\x7c\x6d\xa2\xcf\x73\ \xba\x3b\x07\xb2\xc6\x79\xcc\x4e\xc9\x5b\x67\x15\x99\x95\xca\x64\ \x7f\x3c\x33\x5f\x97\xa6\x95\x71\xef\xed\x7a\xeb\xae\xe8\x81\xcf\ \x73\xba\x7b\x53\x9d\xc7\xec\x81\xfc\x75\x56\x78\x8f\x05\x4f\x3e\ \xe3\x4a\xda\xf2\x8c\x5d\x34\xdb\x91\xdf\x73\xba\x3b\x75\xac\x74\ \x1c\xb5\xf5\x5d\x8d\x9a\xff\x9d\x35\x29\xc1\x67\xe5\x2d\xcf\xc4\ \x67\xff\x34\x33\xae\xac\x5d\x63\xdd\x05\x3d\xf2\x7f\x4e\x77\xed\ \x9f\x9c\xc7\xad\x8b\x13\x81\x79\xe8\xac\x3a\x6e\x89\xf5\xed\x6a\ \xbb\x5b\x23\xd3\xa8\xb3\x4e\x2d\xd5\x8c\x2b\x6d\x8b\x2a\x7b\xdc\ \xa4\x99\x3c\xcc\xe9\xae\xf4\x63\xa9\xe3\xc8\xfd\xbf\xfc\x76\x56\ \x91\x09\xdc\x4b\x03\x8d\x34\x3b\xe5\xd4\x4c\x23\x0d\xdc\xc3\x59\ \x99\x3a\xf0\x4f\x32\xe3\xea\xdb\xd5\xd6\xa9\xf7\x22\x2f\x73\x7a\ \x5f\xd7\x38\x8e\x5c\x2b\x23\xc3\xe9\x2c\xe9\xda\xd7\x1c\x27\xd1\ \xaa\xcc\xdd\xfd\xd7\x59\x7e\xe7\x74\x2d\xab\x1d\x47\xef\xc6\x8e\ \x2b\xcc\xfa\x6f\x39\x89\x9f\xeb\x0b\x30\x1e\xd4\xdd\x7f\x66\x9a\ \x79\xd8\x71\x0d\x93\x3b\xff\x20\xbf\xd5\x52\xba\x72\x30\xad\x4e\ \x63\xbe\x25\x53\x4f\xcd\xe9\x5a\x9e\xe7\xf4\x60\xb6\x3a\xe5\x57\ \xe2\x88\xf6\xab\xd3\x11\x40\x68\x3e\xef\x38\xe6\xff\xca\x26\xeb\ \x14\x82\xb6\x91\x47\x9d\x96\x2f\x74\x7e\x1d\x7a\x9e\xab\xa5\xec\ \x6b\xae\xd3\x88\xb7\x32\xda\x3a\x81\x0a\xe4\x7b\x4e\x1f\xed\x78\ \x1d\xc8\x4b\x21\x75\x96\x74\x34\x94\x9d\x4e\x23\xfe\xbc\x75\x02\ \x15\xc9\xfb\x9c\x7e\xd1\xb1\x88\x8f\xd8\xbb\x2a\x7d\x04\x08\xcb\ \x44\xfa\x38\x2d\xdf\xeb\x53\xe6\x25\x05\x6e\xa3\x50\xe4\xc2\xf6\ \xff\x9b\xf7\x6a\x29\xed\x3d\xe3\x34\xde\x4d\x99\xff\x02\x70\xb7\ \xbc\xcf\xe9\x5a\xd6\x3b\xe5\xf8\xc4\xde\x55\xe9\x08\x20\x24\x35\ \x9c\xeb\xb4\xfc\x8f\xf4\x05\x60\x26\x34\xf3\x98\xd3\xf2\x9f\xde\ \x7b\x1c\xa8\x02\x10\x92\x53\x1d\xbf\xc2\xfb\xb1\x75\x02\xb2\xc7\ \x4f\x9c\x96\x1e\xb4\xf7\xe9\x96\x2a\x00\x21\x39\xcf\x69\xe9\xbf\ \xb0\xd0\x3a\x01\xd9\xe3\x8f\xbc\xe7\xb4\xfc\x67\xda\xfe\xa0\x02\ \x10\x92\x4f\x39\x2d\x3d\xdb\x3a\x7c\x69\xe7\x09\xa7\xa5\xcf\xd9\ \xfb\xc7\xbc\x9f\x30\x91\x36\xb5\x7c\xe4\x34\xda\xc7\x5b\x27\x50\ \xb1\x10\xe6\xf4\x49\x4e\x59\x36\x33\x60\xf7\x6a\x74\x04\x10\x8e\ \x33\x9d\x1e\x6b\xfa\x06\x6f\x59\x27\x20\xed\x2c\xe4\x6d\x87\xa5\ \xfb\xf1\x89\xdd\x7f\x50\x01\x08\x87\xdb\x19\x80\x67\xad\xc3\x97\ \x4e\xdc\x46\x64\xcf\x87\x00\x15\x80\x70\x7c\xdc\x69\xe9\x5f\x59\ \x87\x2f\x9d\xb8\x8d\xc8\x9e\x02\x50\x70\xfa\xd4\x53\xb0\xee\x03\ \xa9\xc2\x3a\x0e\x8a\xbc\xec\x66\x86\xb1\xd3\x3a\x81\x8a\x85\x31\ \xa7\xfb\xb2\xce\xe1\xc9\xcc\x5b\x19\x44\x49\x47\x00\xe1\x38\xd2\ \x61\xf7\x87\xe7\x3d\xda\xfd\x43\xb1\x93\xdf\x38\x2c\x7d\xc0\xee\ \xd7\xba\xa8\x00\x84\xe2\x54\xa7\xa5\xf5\x01\x20\x8b\x9e\x73\x5a\ \xfa\x54\x50\x01\x08\xc7\x69\x4e\x4b\xff\xd6\x3a\x7c\xe9\xc2\x7f\ \x38\x2d\xad\x02\x10\x14\x97\x23\x80\x26\x96\x58\x87\x2f\x5d\x78\ \x97\xb5\x0e\x4b\xab\x00\x04\xe5\x63\x0e\xcb\x36\x38\x2c\x2b\xc9\ \x29\x33\xdf\x61\xe9\x53\x28\xa8\x00\x84\xe2\x30\xa7\x53\x80\x2a\ \x00\x59\xe5\x52\x00\x06\x72\xa8\x0a\x40\x28\x8e\x76\x5a\x5a\x05\ \x20\xab\xe6\x39\x2d\x7d\xac\x0a\x40\x28\x5c\x0a\xc0\x2e\x5e\xb3\ \x0e\x5f\xba\xf1\x67\x5a\x1d\x96\x1e\xab\x02\x10\x8a\x31\x0e\xcb\ \xbe\xcb\x0e\xeb\xf0\xa5\x1b\xdb\x59\xe4\xb0\xb4\x8e\x00\x82\xe1\ \x72\x04\xf0\xba\x75\xf0\xd2\x03\x97\xd1\x51\x01\x08\x86\x4b\x01\ \xd0\x63\x40\xb2\xcc\x65\x74\x8e\x51\x01\x08\x85\xcb\x47\x00\x1d\ \x01\x64\x99\x4b\x01\x38\x8c\x82\x0a\x40\x08\x46\x70\x80\xc3\xd2\ \xef\x58\x87\x2f\x3d\x70\x19\x9d\x3a\x86\xe6\xe7\x6e\xc0\x1a\xce\ \x62\x22\xf5\x8c\x66\xb0\xd3\xdb\xeb\x77\xb2\x91\x25\x34\x30\x87\ \xf9\x4e\x67\x58\xfd\xc9\xb8\x67\x25\x06\xd0\x6c\x9d\x6a\x95\xb2\ \xf9\x5c\x9f\x64\x66\x56\x7f\x3e\x74\xd8\x0f\x3f\x96\x8f\xc7\x27\ \xf5\xe7\x36\xd6\x3a\x65\xd2\xf5\x53\xf0\x6f\x75\x7a\x86\x8e\x7f\ \x19\x77\xd5\x56\x5a\xa7\x1a\x41\x1a\xfd\x92\x9d\x99\xe5\xf2\xc2\ \xf0\x4b\xf2\x50\x00\x26\xb3\x2a\xb1\xa1\x5a\xd1\xf9\x55\x8a\x99\ \x90\x64\xc6\x9d\xdb\xef\xad\x93\x8d\xc0\x7a\x07\x4f\x77\x66\x35\ \x38\x44\x71\x9d\xef\xe7\x00\x0a\x4c\x67\x16\x23\x13\x5b\xff\x28\ \x9e\x60\x46\xa6\x4e\x95\x16\xb9\x9b\xd9\x09\x66\xdc\xd9\x32\xeb\ \x84\x73\x2a\xbe\x99\xb5\xcc\x61\xd9\x11\x6e\x6f\x8a\xb3\x56\xe4\ \x71\x26\x27\xbc\x8d\x02\x5f\xe7\x48\xbe\x44\xc9\x3a\xd9\xd4\x32\ \xee\x68\x85\x75\xca\xb9\x15\xd7\xcc\x72\x19\xa1\xc1\x59\xfa\xdd\ \x56\xbd\xbb\x52\xda\x19\xae\xe0\x0e\xeb\x54\x53\xce\x78\xaf\xf5\ \xd6\x29\xe7\x5a\x1c\x33\x6b\x83\xc3\xb2\x83\x7d\x3e\x07\x30\x39\ \xc5\x4f\x6c\x25\x26\x19\x67\x9b\x76\xc6\x6d\xed\x2a\xeb\xa4\x23\ \xb0\xfe\x7c\x9f\xee\xcc\xba\xda\x61\xeb\xcf\xfa\x7b\x04\xd0\x9f\ \xfb\x52\xdc\x5a\x81\x07\xda\x5e\xa5\x10\x48\xc6\x6d\x74\x04\x90\ \x2c\xf7\x99\xe5\x74\x04\xe0\x6f\x01\xb8\x91\x51\xa9\x6e\x6f\x24\ \x37\x04\x96\xf1\x6e\x2a\x00\x49\x73\x9d\x59\x2e\x23\x34\xd8\xd7\ \x0b\x81\x6a\x58\xc3\xb0\x94\xb7\xd9\xc4\x48\xc3\x4b\x83\x2c\x32\ \x06\x18\xeb\xf8\x1a\x4a\x0b\xd6\x1f\x4e\xab\xe5\x36\xb3\x8e\x75\ \x78\x47\xd0\x32\x5f\x8f\x00\x26\x18\xec\x0c\x23\x38\x33\xb0\x8c\ \x01\xb6\x1b\xe6\x1c\x0a\xb7\x99\xe5\x32\x42\x7d\x7d\x2d\x00\x13\ \x03\xda\xaa\xed\xb6\x7d\xbb\x0c\xd8\x4f\x2e\xa3\xeb\x32\x42\xfd\ \x7c\x2d\x00\xf5\x01\x6d\xd5\x76\xdb\x2d\x86\x39\x87\xc3\x65\x74\ \x5d\x46\xc8\xdb\x02\x30\xda\x64\xab\x2e\x37\xd5\xfa\x99\xb1\x0a\ \x40\x3a\x5c\x66\x96\xd3\x11\x80\xaf\x27\x01\x9b\xe9\x67\xb2\xd5\ \xba\xc0\x32\x86\x3e\x19\xbf\x27\xb2\x2b\xbe\x9d\x04\x74\x9b\x59\ \x35\xec\x8a\xbc\x6c\xab\xaf\x47\x00\x22\xdd\xd3\x51\x4b\xc5\x7c\ \x2d\x00\x9b\x4d\xb6\xba\x29\xb8\x8c\x31\x3a\xee\x70\x63\xd5\x57\ \xd1\x6d\x72\x58\xb6\xd6\x61\xd9\x66\x5f\x0b\xc0\x62\x93\xad\xba\ \x3c\x81\xd5\xcf\x8c\xfd\x2c\x00\x56\x7d\x15\x9d\xcb\xcc\x0a\xb2\ \x00\xd8\xbc\xaa\xc2\xf2\x05\x19\x56\xdb\xf6\xb1\x00\xf8\xf7\x22\ \x13\x97\x88\x5d\x0a\x40\x8b\xaf\x05\x60\x4e\x40\x5b\xb5\xdd\xb6\ \xcb\xf4\xb2\x62\x39\x4e\xe9\x47\xec\x52\xa2\xbd\x3d\x02\x98\xef\ \xf4\x5e\xd4\x68\x9a\x78\x29\xb0\x8c\x81\xcc\x3e\x14\xad\x27\x56\ \x7d\x15\x95\xdb\xcc\x72\x19\x21\x6f\x8f\x00\x5a\x99\x99\xfa\x36\ \xef\x35\x7d\x28\x88\x45\xc6\x00\x43\x0c\x73\x8e\xca\xaa\xaf\xa2\ \x72\x9b\x59\x2e\x23\xd4\xec\xef\xf3\x00\xea\x58\x9e\xea\x7d\xdb\ \x2b\xcd\x7f\x17\xa6\x9d\xf1\xee\xf6\x39\xe3\xac\x7d\xea\x2b\x9b\ \x99\xf5\x37\x0e\xdb\x6e\xf0\xf5\x08\x00\x76\x70\x73\x8a\x25\xa8\ \xcc\x3f\x9b\xdf\x16\x93\x6e\xc6\x6d\x86\x1a\x67\x1d\x8d\x4d\x5f\ \x45\xe1\x3e\xb3\x5c\x8e\x00\x3e\xf0\xb7\x00\xc0\x93\xdc\x9d\xda\ \xb6\xee\xe4\x69\xeb\x74\x53\xce\xb8\xcd\x41\xd6\x49\x47\x64\xd1\ \x57\x51\xb8\xcf\x2c\x97\xbb\x44\xd7\xf9\xfb\x11\x00\xa0\xc8\xac\ \x54\x0e\xd2\x1e\xcf\xcc\x05\x53\x69\x65\xbc\xb7\x7d\xd7\x3a\x65\ \x8f\xfa\xca\x66\x66\xcd\x70\xd8\xfe\x7d\x59\x99\xd8\xd1\x94\xf8\ \x22\xdf\x49\xb8\x10\x95\xf9\x1e\x7f\x9b\x91\x67\x02\xa7\x93\x71\ \x47\x87\x59\xa7\x1c\x59\xfa\x7d\x55\x9d\xb8\x66\xd6\xe1\x0e\xcb\ \x7a\x7e\x04\xb0\xdb\x24\x56\x24\x56\xa1\x97\x73\xa9\x75\x7a\x29\ \x67\xdc\xb9\xf9\xf8\x62\x10\xab\xbe\xb2\x99\x59\xf3\x1d\xa2\xf8\ \xc7\x3c\x14\x00\xa8\xe3\x16\x1a\x63\x1f\xa2\x46\xa6\x19\xde\xfd\ \x67\x91\x71\x57\x6d\x95\x75\xaa\x1e\xf5\x95\xcd\xcc\x72\x79\x35\ \xd8\xa5\xbe\xde\x0e\xbc\xaf\x22\xf5\x4c\xa4\x9e\x31\x0c\x76\xba\ \x36\xaa\x85\x8d\x2c\xa6\x81\x39\x2c\xc8\xcc\x81\x7f\xb2\x19\xf7\ \xcc\xc7\x97\x83\xee\x2b\x9d\xbe\xea\x59\x32\x33\xcb\xed\xe5\xa0\ \xa7\xe7\xe3\x08\x40\x7a\x36\xc2\x69\x94\xc7\x5a\x87\x2f\x3d\x38\ \xce\x69\x6c\x0f\xf2\xfb\x24\xa0\x54\xa6\x89\xad\x0e\x4b\x8f\xb3\ \x0e\x5f\x7a\xe0\x32\x3a\x5b\x59\xaf\x02\x10\x06\x97\x1b\x64\xc7\ \x5b\x07\x2f\x3d\x70\x19\x9d\xa5\xfe\x3e\x10\x44\xaa\xe3\x52\x00\ \x4e\xb2\x0e\x5e\x7a\xe0\x32\x3a\x2a\x00\xc1\x70\x79\xe0\x84\x0a\ \x40\x96\xe9\x08\x40\x2a\xe0\x52\x00\xc6\x9a\xdf\x06\x25\xdd\x19\ \xe0\xf4\xb4\x68\x15\x80\x60\xb8\x7c\x04\xa8\xe1\x64\xeb\xf0\xa5\ \x1b\xa7\x50\xe3\xb0\xf4\x1b\x2a\x00\xa1\x70\x7b\xbf\xdf\x59\xd6\ \xe1\x4b\x37\xdc\x46\x66\xa1\x0a\x40\x28\x56\x39\xbd\x43\x56\x05\ \x20\xab\x26\x38\x2c\xbb\x9a\x75\x2a\x00\xe1\xf8\xa3\xc3\xb2\x2a\ \x00\xd9\x54\x70\x7a\xa9\xe8\x42\x50\x01\x08\xc7\xab\x0e\xcb\x0e\ \xe7\x68\xeb\xf0\xa5\x0b\xe3\x9c\x9e\x05\xf0\x3a\xa8\x00\x84\xc3\ \xa5\x00\xc0\x5f\x5b\x87\x2f\x5d\x38\xd7\x69\xe9\x37\x40\x05\x20\ \x1c\x6e\x05\xe0\x42\xeb\xf0\xa5\x0b\x6e\xa3\xf2\x47\x80\xfc\xdc\ \x0d\x28\xbd\x59\xeb\x70\xc0\xb8\x85\x83\xd8\x69\x9d\x80\x74\xd0\ \x8f\xf5\x1c\x10\x79\xe9\x8d\x1c\x44\x49\x47\x00\x21\xf9\x93\xc3\ \xb2\x07\x72\x86\x75\xf8\xd2\xc9\x04\x87\xdd\x1f\xe6\xef\xbe\x25\ \x59\x05\x20\x1c\x2f\x3b\x2d\xfd\x59\xeb\xf0\xa5\x93\x8b\x9c\x96\ \x9e\xbf\xfb\x3f\x2a\x00\xe1\x78\xd1\x69\xe9\x4b\xac\xc3\x97\x4e\ \xdc\x46\x64\x5e\xdb\x1f\xf4\x40\x90\x50\xd4\xf2\x91\xd3\x68\x9f\ \x60\x9d\x80\xb4\x73\x8a\xd3\x58\x36\x33\x60\xf7\x6a\x74\x04\x10\ \x8e\xe6\xbd\x55\x3f\x92\xc9\xd6\x09\x48\x3b\x97\x3b\x2d\xfd\x2a\ \x1f\xed\xfe\x83\x0a\x40\x48\xdc\x3e\x04\x5c\x61\x1d\xbe\xb4\xe3\ \x56\x8e\x9f\xdf\xfb\x47\x7d\x04\x08\xc7\xc7\x9d\x46\xbb\xac\xbb\ \x02\x33\xe3\x34\xc7\x91\xfc\xaf\xef\x74\x74\x04\x10\x92\x57\xd9\ \xe4\xb4\xfc\x95\xd6\x09\xc8\x1e\x7f\xe7\xb4\xf4\x06\x5e\xd9\xfb\ \x3f\x3a\x02\x08\xc9\xd3\x4e\xe3\xbd\x96\x5a\xeb\x04\x04\xa8\x63\ \x83\xd3\x38\x3e\xbe\x77\x55\x3a\x02\x08\xcb\xb3\x4e\x4b\x0f\x63\ \xa2\x75\x02\x02\x7c\xde\xe9\x8d\xc0\xf0\x5c\xfb\xff\xd1\x11\x40\ \x48\x06\xd3\xe2\x34\xe2\x73\xad\x13\x10\xe0\x37\x4e\x63\x58\xe2\ \x90\xf6\x2b\x53\x01\x08\xcb\x5c\xc7\xc9\x33\xc6\x3a\x81\xe0\x1d\ \x43\xc9\x69\x0c\x17\xb4\x5f\x99\x3e\x02\x84\xe6\x29\xa7\xa5\x0b\ \x7c\xd5\x3a\x81\xe0\xfd\xb3\xe3\x4d\x78\xb3\x3a\xfe\xaf\x8e\x00\ \xc2\x32\x82\x5d\x4e\x63\xbe\x8d\xa1\xd6\x29\x04\x6d\x08\x5b\x9d\ \xc6\xaf\x95\x91\xed\x57\xa7\x23\x80\xd0\x34\x75\x3c\x04\xac\xda\ \x7e\xfc\xa3\x75\x0a\x41\xbb\x9e\xfd\x9d\x96\x9f\xc7\xfb\x1d\x7f\ \xa0\x23\x80\xd0\xdc\xe8\x34\xe6\x65\x1a\x33\xfb\xd2\xf4\xfc\xab\ \x65\x8d\xe3\xe8\x5d\xdf\x71\x85\x7d\x9c\xc2\x51\x09\x08\xd1\x08\ \xbe\xc4\xa3\xd6\x41\x04\xea\xef\x39\xd8\x69\xf9\xd6\xce\xe7\x80\ \xdc\x9e\x08\x24\x61\x5a\xca\xb1\x7a\x3e\x90\x81\x5a\xde\xe1\x08\ \xa7\x35\xfc\x9a\x4f\x77\xfc\x81\xce\x01\x48\xf5\x8e\xe2\x1f\xac\ \x43\x08\xd2\x35\x8e\xbb\x3f\xfc\xb0\xf3\x0f\x74\x04\x20\x51\xac\ \xe6\x68\xb6\x5b\x07\x11\x98\x3a\xde\xe3\x30\xa7\x35\x6c\x60\x24\ \xcd\x1d\x7f\xa4\x23\x00\x89\xe2\x50\xae\xb1\x0e\x21\x38\xd7\x39\ \xee\xfe\xf0\xbf\x3b\xef\xfe\x3a\x02\x90\xa8\xd6\x32\x96\xcd\xd6\ \x41\x04\x64\x30\xef\x72\x90\xe3\x3a\x4e\xe0\xad\xce\x3f\xd2\x11\ \x80\x44\x33\x9c\x6f\x5a\x87\x10\x94\x6f\x3b\xef\xfe\xf3\xf6\xdd\ \xfd\x75\x04\x20\xd1\xb5\x70\xa2\xe3\x5b\x87\xa5\x52\xe3\x78\x9d\ \xbe\x8e\xeb\xb8\x92\x9f\xec\xfb\x43\x1d\x01\x48\x54\xfd\x98\x69\ \x1d\x42\x30\xee\x77\xde\xfd\xdf\xe7\x89\xae\x7e\xac\x02\x20\xd1\ \x5d\xe2\xf8\x6c\x7a\xa9\x4c\x1c\xfd\xfc\x20\x2d\x5d\xfd\x58\x1f\ \x01\xc4\xc5\x0a\x4e\x60\x9b\x75\x10\x39\x77\x00\x6f\x32\xca\x71\ \x1d\x5b\x39\xbc\xeb\xc7\xc1\xe9\x08\x40\x5c\x1c\xce\x9d\xd6\x21\ \xe4\xde\xdd\xce\xbb\x3f\xfc\xaf\xee\x9e\x06\xa9\x23\x00\x71\x53\ \xe2\xec\xb6\xd7\x4c\x49\x02\x3e\x41\x03\x35\x8e\xeb\xd8\xc9\xd1\ \xac\xe8\xfa\xaf\x74\x04\x20\x6e\x8a\x3c\xa2\x47\x85\x26\xa6\x96\ \x47\x9d\x77\x7f\x98\xdd\xdd\xee\xaf\x02\x20\xee\x4e\xd4\xc7\x80\ \xc4\xcc\xe0\x78\xe7\x75\xb4\xf6\x34\x3e\x05\x9a\xe9\x67\x9d\xa5\ \x78\xae\xcc\xe7\x3a\x3e\x69\x56\x62\x71\x01\xbf\x72\x7c\xfc\x17\ \xc0\xa3\x7c\xa5\xfb\xbf\x2c\xb0\x96\x61\xd6\x79\x8a\xf7\x56\x33\ \x9e\x0d\xd6\x41\xe4\xcc\x30\x5e\xeb\xf8\xfc\xde\x48\x5a\x18\xc7\ \xd2\xee\xff\xba\xc8\x22\xeb\x3c\x25\x07\x0e\xe5\x87\x31\xfc\xae\ \x92\xbd\x0a\xfc\x5b\x0c\xbb\x3f\x3c\xda\xd3\xee\x0f\x35\x1c\x47\ \xbd\x75\xae\x92\x03\xc7\xb1\xd5\xf1\x69\x83\xd2\xde\x6d\xfc\xb7\ \x18\xd6\xb2\x83\xc9\x6c\xe9\xe9\x1f\x14\x99\x63\x9d\xa9\xe4\xc4\ \x0c\xfe\xda\x3a\x84\xdc\xf8\x54\x4c\x27\x56\xff\x27\x2b\x7b\xfe\ \x07\x05\x6a\x58\xcd\x70\xeb\x7c\x25\x17\xd6\x72\x2a\xab\xac\x83\ \xc8\x81\x51\xbc\x1a\xcb\x99\xb9\x75\x8c\xed\xed\x75\xb0\x45\x5a\ \x75\x4b\x87\xc4\x64\x38\x3f\xd3\x35\x01\xce\xea\x78\x2a\xa6\x13\ \xf3\xdf\xec\xfd\x6d\xd0\x05\xa0\x8e\x77\x38\xdc\x3a\x6b\xc9\x89\ \x27\xf8\x82\xae\x2e\x75\x50\xe0\xc7\xfc\x6d\x2c\x6b\xfa\x33\xa7\ \xd1\xda\xdb\x3f\xaa\x01\x76\xb1\x8a\xcb\x75\x0e\x57\x62\x71\x02\ \x7d\x79\xd1\x3a\x08\x8f\xcd\xe0\xba\x98\xd6\xf4\x85\x9e\xcf\xff\ \xef\xb6\xfb\x32\xc3\xb7\xe8\xc7\xd9\xd6\x99\x4b\x4e\x9c\xcd\x2a\ \xfe\x64\x1d\x84\xa7\xa6\x30\x23\xa6\x35\x3d\xc9\xbd\x95\xfc\xb3\ \xb6\xdf\xfb\x45\x7e\xca\x15\xd6\xd9\x4b\x4e\xec\xe4\x6f\xf8\x95\ \x75\x10\x1e\xfa\x1c\xcf\x38\xbe\xaa\xa7\xcd\x16\x4e\xa8\xec\x74\ \x6c\xdb\x8d\x06\x65\x9e\x02\xce\xd5\x07\x01\x89\x41\x0d\x93\x98\ \xc7\x72\xeb\x30\x3c\x73\x16\x73\x62\x7b\xe9\xda\x4d\xbc\x50\xd9\ \x3f\xec\xb8\xc3\x4f\xe2\x5f\x62\xb8\xf7\x58\x04\xb6\x70\x3e\xaf\ \x58\x07\xe1\x91\x4f\x30\x97\x03\x62\x5a\x57\x03\xe7\x50\xaa\xec\ \x9f\x76\xfe\x8d\x5f\xc7\x57\xb9\x99\x11\xd6\xbd\x21\x39\xf0\x01\ \x9f\xe4\x75\xeb\x20\x3c\x31\x9e\xdf\x32\x38\xa6\x75\x35\xf3\x57\ \x5d\x3d\xff\xb7\x6b\x5d\x1d\xf2\x17\xa9\x67\x22\xf5\x8c\x61\xb0\ \xee\x14\x14\x07\x4d\x5c\xa0\x12\x50\x81\x93\x79\x3e\xc6\x8b\xf1\ \xa6\xf3\x1d\xeb\x84\xc4\x5f\xb5\xfc\xc9\xf1\x05\xd4\xed\xdb\x06\ \x4e\xb7\x4e\x28\xf3\x3e\xc1\x07\x31\xf6\xf8\x6b\xfa\xa5\x2d\x6e\ \x8e\xe3\xc3\x18\x27\xe4\x36\xce\xb3\x4e\x28\xd3\xce\x61\x73\x8c\ \xbd\xbd\x9d\xf1\xd6\x09\x89\xff\xfe\x29\xc6\x29\x59\xe6\x43\x2e\ \xb4\x4e\x28\xb3\x3e\xc7\x47\xb1\xf6\xf5\x0d\xd6\x09\x49\x3e\x3c\ \x13\xeb\xb4\xdc\x19\xdb\xd5\x6d\xf9\xf2\x65\x5a\x62\xed\xe7\xe7\ \xf4\x35\xbe\xc4\xe3\x20\xde\x8f\x75\x6a\x96\x79\x40\xcf\x9f\xec\ \xa0\xc0\xf4\x98\x7b\xb8\x89\x83\xad\x93\x92\xfc\x38\x9f\xd6\x98\ \x27\xe8\x4f\x75\xa7\xe0\x7f\xa9\x63\x76\xcc\xbd\x5b\xd2\x5b\x9a\ \x24\x5e\xf7\xc4\x3c\x45\xcb\xbc\xe4\xfc\x86\xfb\x7c\x18\xc5\x7f\ \xc6\xde\xb7\xff\xc3\x3a\x29\xc9\x9b\x1a\x7e\x19\xfb\x34\x5d\xc7\ \xf9\xd6\x69\x99\x3b\x97\xc6\xd8\xfb\x75\x6e\x0c\x6f\x0f\x10\xe9\ \x64\x08\xef\xc5\x3e\x55\x77\xf1\xf5\x80\x4f\x55\x15\x98\x1a\xf3\ \x89\xbf\x32\x65\x96\x71\x90\x75\x62\x92\x4f\x27\xb1\x35\xf6\xe9\ \x5a\xe6\xe9\x40\x27\xec\x30\x9e\x4d\xa0\x37\x3f\xe2\x63\xd6\x89\ \x49\x7e\x7d\x9e\x52\x02\x93\xf6\xfd\x00\x3f\x0a\x7c\x86\x35\x09\ \xf4\x64\x99\xbf\xb7\x4e\x4c\xf2\xed\x3b\x89\x4c\xdb\x12\x0f\x04\ \xf4\xad\x40\x2d\x33\x62\xff\x56\x65\x77\xbb\xdb\x3a\x35\xc9\xbb\ \x62\xcc\x97\x05\xed\x6d\x0b\x39\xc3\x3a\xb9\x54\xd4\xf3\x66\x42\ \x3d\x38\x3b\xe0\xf3\x29\x92\x9a\x01\xcc\x4b\x68\x02\x97\x78\x24\ \xb6\xbb\xe0\xb3\x69\x00\x33\xd8\x95\x50\xef\xbd\xcc\x00\xeb\xf4\ \x24\x0c\x43\x79\x2b\xa1\x49\x5c\x66\x19\x9f\xb5\x4e\x2f\x31\x97\ \xb0\x22\xb1\x7e\x7b\x2f\xd0\x53\xa9\x62\x62\x54\x82\x53\xb9\xcc\ \x2f\x18\x6b\x9d\x60\xec\xc6\xf1\x5c\x82\x3d\xb6\x8e\x63\xac\x13\ \x94\xb0\x1c\x43\x53\x82\x13\xba\x85\x47\x72\xf4\x1b\x6d\x10\x33\ \x68\x4e\xb0\xb7\x36\x73\x9a\x75\x8a\x12\x9e\x33\xd8\x96\xe0\xa4\ \x2e\xb3\x96\xa9\xb1\x3d\x16\xd3\x4e\x7f\xbe\xc6\xba\x44\xfb\x69\ \x9b\x5e\xe8\x2b\x36\x2e\x4c\xe0\x3a\xb6\x8e\x6d\x25\xd7\x79\xfc\ \x4c\x9b\x7e\x5c\x1f\xfb\x7d\x94\x9d\xdb\xf6\x00\xaf\xa1\x90\xcc\ \x98\xc8\x8e\x84\x27\x78\x99\xa5\x5c\xe3\xe1\x35\x02\xb5\x4c\x61\ \x59\xe2\x7d\xd3\xc2\x25\xd6\x89\x4a\xd8\x2e\x62\x7b\xe2\xd3\xbc\ \xcc\x1a\xfe\x3b\x43\xac\x53\xad\xd8\x10\xbe\x91\xc0\x2d\x3e\x5d\ \xed\xfe\x97\x5b\xa7\x2a\xf2\xa9\x58\x9f\x1a\xd8\x7d\xdb\xca\x83\ \x1c\x6d\x9d\x6c\xaf\x8e\xe1\xa1\x84\xcf\x8d\xb4\xb5\xed\xfa\xed\ \x2f\xd9\x30\x21\xd6\x47\x59\xf6\xdc\xfe\xc0\x94\x8c\x5e\xf0\x52\ \xcb\xe5\xcc\x4d\xe4\x5e\x89\xae\xda\x87\x7c\xda\x3a\x61\x91\x36\ \x67\xb2\x29\xb5\x12\x50\x66\x3d\xf7\xf3\x57\xd6\x29\x77\x70\x2a\ \xdf\x67\x43\x8a\x3d\xb0\x49\x67\xfe\x25\x5b\x4e\x4b\xf8\xcb\xae\ \x7d\xdb\xbb\xdc\x99\x81\xc7\x5e\x9f\xcc\x5d\x2c\x4a\x39\xf3\x75\ \x19\x2b\x7f\x22\xc0\x18\xde\x4e\x79\x47\x28\x53\xe6\x2f\x7c\x8f\ \x4f\xd2\x37\xf5\x6c\xfb\x71\x1e\xf7\x98\x64\xfc\x9e\xae\xfa\x93\ \x6c\x1a\xc2\x6f\x0d\x76\x88\x32\x65\xb6\xf0\xef\x4c\x61\x5c\x0a\ \x39\x16\x18\xc7\xb5\x3c\x93\xc8\xa3\x51\x2a\x69\xf3\x72\x74\x85\ \xa4\xe4\x4e\x2d\x8f\x19\xed\x18\xbb\xdb\x5a\x9e\x61\x1a\x67\xd2\ \x3f\xf6\xcc\x06\x50\xcf\x2d\xcc\x49\xfd\x83\x4e\xc7\x36\x3b\xd9\ \x6b\x23\x75\x37\xb1\xb8\x2a\xf0\x6d\xbe\x65\x3e\x93\x5a\x59\xcc\ \x6b\x2c\x64\x21\xef\xb0\x94\x1d\x11\xd7\x52\xc7\x51\x8c\xe3\x24\ \x4e\x62\x3c\x63\x32\xf0\xa0\xcd\xef\x71\x3b\xe5\x24\x37\x60\x3d\ \x6c\x92\x0f\x57\xf2\xc3\x4c\x5d\xbb\xb7\x86\xa5\x2c\x65\x15\xeb\ \xd8\xc0\x06\x36\xb0\x9e\x5d\x6c\xa1\x95\x9d\x6c\x03\xf6\xa7\x2f\ \x35\x1c\x48\x5f\x86\xee\x69\xc3\x18\xc5\x91\x1c\xc5\x21\xd6\x81\ \xb7\xb3\x9d\xeb\xf8\x91\x75\x10\x22\x95\x39\x95\x25\xa6\x87\xca\ \x79\x6b\x2b\xf4\x5e\x65\xf1\xcb\x40\x9e\x32\xdf\x6d\xf2\xd2\x5e\ \x64\xb8\xf5\x70\x8a\x54\x2b\x99\xa7\xde\x87\xd6\x4a\xcc\xc8\xc0\ \xd9\x07\x91\x48\xce\x65\xb5\xf9\x2e\xe4\x73\x6b\xd4\x3b\xfe\xc4\ \x6f\x07\xf3\xa2\xf9\x6e\xe4\x6b\xfb\x85\x0e\xfd\xc5\x7f\x05\xa6\ \xa4\x74\x7f\x5c\x9e\xda\x76\xa6\xea\x5b\x39\xc9\x8b\xb1\x34\x98\ \xef\x52\x3e\xb5\xd7\x38\xc1\x7a\xc8\x44\xe2\x54\xd4\x71\x40\x85\ \xad\x85\x19\x99\xba\x8a\x42\x24\x26\x63\xf8\x9d\xf9\xee\x95\xf5\ \xd6\xc0\xf1\xd6\xc3\x24\x92\x94\x1a\xa6\xb1\xc5\x7c\x27\xcb\x6a\ \xdb\xcc\xf5\x14\xad\x87\x48\x24\x59\x87\xf0\x58\x6a\xcf\xcd\xf1\ \xa9\xfd\x8c\xc3\xac\x87\x46\x24\x1d\xa7\xb1\xc0\x7c\x87\xcb\x52\ \x7b\x8b\xcf\x58\x0f\x89\x48\x9a\x0a\x5c\x95\xca\x93\x73\xb3\xdf\ \x36\x30\x55\xd7\xfa\x49\x88\x06\x71\x7f\x2a\x0f\x15\xcf\x6e\xdb\ \xce\x4c\x06\x59\x0f\x83\x88\x9d\xe1\xcc\x08\xb4\x08\xb4\xf0\x18\ \x47\x59\x77\xbf\x88\xbd\x51\x3c\x10\x58\x11\x68\xe5\x09\x0f\xde\ \x71\x20\x92\x9a\x23\xf9\xd7\x40\xee\x1d\x6c\xe1\xc7\x7a\xac\xa7\ \xc8\xbe\x46\xf3\x60\xce\xaf\x12\xd8\xc2\x4c\x0e\xb7\xee\x66\x91\ \xec\x3a\x80\x29\xbc\x65\xbe\xa3\x26\xd1\xd6\x30\x9d\xc1\xd6\xdd\ \x2b\x92\x7d\x45\x2e\x49\xf1\x25\x5b\x69\xb4\xdf\xf3\x77\x1e\xbf\ \xe6\x5c\xc4\xc0\x09\xfc\x20\xd5\xd7\x6d\x25\xd3\xd6\x31\x93\xe3\ \xac\xbb\x52\xc4\x4f\xfd\x98\xc8\x93\x9e\x7e\x43\xb0\x8b\xe7\xb9\ \x42\xf7\xf5\x89\xb8\x1a\xc8\x55\x5e\x7d\x24\x68\x65\x1e\x53\x33\ \xf5\x50\x71\x11\xef\x1d\xc1\x34\x7e\xc3\x4e\xf3\xdd\xbb\xa7\x56\ \x62\x01\x37\x32\xd2\xba\xab\xa2\xd2\x23\x88\x24\xeb\xf6\xe3\x3c\ \x2e\xe6\x62\x0e\xb5\x0e\xa4\x93\x0f\x78\x81\x5f\xf3\x7f\x79\xdf\ \x3a\x10\x17\x2a\x00\xe2\x87\x22\xa7\x71\x31\xe7\x73\xaa\xf9\xb9\ \xf5\x16\x5e\x65\x2e\xcf\xf1\x0a\xad\xd6\x9d\xe2\x4e\x05\x40\xfc\ \xd2\x87\x93\x99\xc0\xa9\x9c\xc3\x11\x29\x6f\x79\x2b\x2f\xd3\xc0\ \x3c\x1a\xd8\x6e\xdd\x09\xf1\x51\x01\x10\x5f\x8d\xa6\x9e\x8f\x73\ \x3c\xc7\x25\xfa\xe1\x60\x0d\x0b\x79\x9d\x85\xfc\x91\xb7\x28\x59\ \xa7\x1c\x3f\x15\x00\xf1\xdf\x40\xc6\x71\x3c\xe3\x38\x9e\xe3\x38\ \xcc\xf9\x6b\xb8\xad\x2c\x63\x29\x4b\x59\xcc\x5b\xbc\xc6\x7a\xeb\ \xe4\x92\xa5\x02\x20\x79\x33\x84\x83\x39\x98\x43\x19\xce\x48\x86\ \x33\x9c\x7e\x1c\x40\x0d\x07\x52\x64\x20\x05\x06\x01\xdb\xd8\x49\ \x89\xcd\xc0\x47\x6c\x65\x03\xeb\xd9\xc0\x06\xd6\xb1\x81\x95\x2c\ \xcb\xfb\x2e\xdf\xd1\xff\x07\xa7\x24\x0a\x80\xe4\x81\x96\xa2\x00\ \x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\ \x74\x65\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x31\x33\x54\x31\x36\ \x3a\x30\x34\x3a\x31\x38\x2b\x30\x30\x3a\x30\x30\x1d\x02\xcf\x9a\ \x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\ \x69\x66\x79\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x31\x33\x54\x31\ \x36\x3a\x30\x34\x3a\x31\x38\x2b\x30\x30\x3a\x30\x30\x6c\x5f\x77\ \x26\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\ \x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\ \x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ \x60\x82\ \x00\x00\x48\x57\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ \x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xec\xdd\x79\x98\x1c\x55\xb9\x3f\xf0\xef\x39\xd5\ \xcb\x4c\x08\x9d\xa5\x86\xa4\x27\x24\x42\x23\x84\x24\x64\x3a\x09\ \xb2\xc9\xce\xc5\x08\x61\x5f\x44\x16\x41\xae\x20\x28\xa0\x5c\xb6\ \xfb\x43\x2f\xea\xc5\x5d\xaf\x0a\xc8\x22\x08\x97\xc5\x2b\xb2\x5c\ \x44\x36\xd9\x2e\x22\x01\x64\x47\x92\x4c\x42\x08\x61\xa9\x28\x21\ \x33\x81\xa9\x2c\x45\x92\xd9\xba\xaa\x7e\x7f\x74\x4f\x32\x99\x4c\ \x66\xed\xaa\xb7\xba\xeb\xfb\x79\x9e\x3c\x99\xa5\xbb\xce\x57\x7c\ \x9e\x9c\xb7\xdf\x73\xea\x94\xf2\x7d\x1f\x44\x14\x6d\x96\xed\x18\ \x00\xc6\x02\xa8\x2b\xfd\x31\xbb\x7d\xdd\xf5\xfd\x48\x00\xe9\x6e\ \x7f\x52\x7d\x7c\x9f\x02\x90\x6e\xde\xb0\xc1\x50\x00\xa0\x94\xaf\ \x00\x5f\x01\x1e\x00\x1f\x80\xa7\x94\x72\x01\xb8\x0a\xe8\xfa\xbb\ \x00\xa0\x53\x29\xd5\x06\x60\x8d\x02\x6c\xa5\xd4\x4a\x05\xac\x00\ \xb0\x5c\x29\xb5\x0c\xc0\x7b\x0a\x78\xbf\x21\x6b\x76\x04\xff\x5f\ \x85\x88\x86\x43\xb1\x00\x20\x92\x65\xd9\xce\x38\x00\x39\x00\x3b\ \x76\xfb\x7b\x02\x36\x9f\xdc\xc7\x00\x50\xe5\x1e\xbb\x79\xc3\x86\ \x72\x5f\x12\x00\xa0\x8b\x05\x45\x41\x29\xd5\xa6\x81\x0d\x4a\x29\ \x5b\x01\x1f\x68\xa5\x96\x28\xa0\x11\x4a\xbd\x9c\xcf\x9a\x8b\x03\ \x19\x9c\x88\x06\x84\x05\x00\x51\xc0\x2c\xdb\x19\x83\xe2\xc4\xde\ \x73\x92\xef\xfa\x7b\x84\x50\xb4\xc0\x0a\x80\x81\x50\x00\xb4\x52\ \xed\x5a\xa9\xb5\x5a\xa9\x95\x5a\xa9\x65\x0a\x78\x5b\x01\xf3\x94\ \x52\x2f\x35\x64\x4d\x4b\x2c\x1c\x51\x0c\xb0\x00\x20\x2a\x13\xcb\ \x76\xd2\x00\xa6\x01\x68\x00\x90\xef\xf6\x67\xbc\x64\xae\xbe\x48\ \x16\x00\xfd\xd1\x4a\x79\x86\x52\xab\xb5\x52\x96\x56\xea\x0d\x0d\ \xcc\x55\x4a\x3d\xda\x90\x35\x1d\xe9\x6c\x44\xd5\x80\x05\x00\xd1\ \x10\x58\xb6\x33\x09\x9b\x4f\xf2\x79\x00\x93\x01\x24\x24\x73\x0d\ \x56\x94\x0b\x80\xad\x31\x94\x6a\x37\xb4\x5e\xa9\x81\x25\x5a\xa9\ \x97\x94\x52\x8f\xe7\xb3\xe6\x2b\xd2\xb9\x88\x2a\x0d\x0b\x00\xa2\ \x7e\x58\xb6\x33\x0a\xc0\xbe\x00\xf6\x2b\xfd\x99\x09\x60\xb4\x68\ \xa8\x32\xa9\xc4\x02\xa0\x37\x4a\x29\x3f\xa1\xd4\x5a\x43\xa9\x37\ \xb5\x52\x4f\x6a\xa5\xee\x68\xc8\x9a\x1f\x48\xe7\x22\x8a\x32\x16\ \x00\x44\x3d\x58\xb6\xb3\x03\x8a\x13\xfd\xfe\xa5\x3f\xbb\x01\xd0\ \xa2\xa1\x02\x52\x2d\x05\x40\x6f\x12\x5a\xb7\x19\x4a\xbd\xa7\x95\ \x9a\xab\x95\xba\x2b\x9f\x35\x5f\x94\xce\x44\x14\x25\x2c\x00\x28\ \xd6\x2c\xdb\xd1\x28\xb6\xef\xf7\xc7\xa6\x49\x7f\xa2\x68\xa8\x10\ \x55\x73\x01\xd0\x93\x56\xca\x4d\x68\xfd\xa1\xa1\xd4\x2b\x1a\xb8\ \x5f\x29\x75\x7f\x43\xd6\x2c\x48\xe7\x22\x92\xc2\x02\x80\x62\xc7\ \xb2\x9d\x89\x00\xe6\x94\xfe\x1c\x0a\x20\x23\x9b\x48\x4e\x9c\x0a\ \x80\x9e\x94\x52\x7e\x52\xa9\x26\x43\xeb\xa7\xb5\x52\xd7\xe5\xb3\ \xe6\x6b\xd2\x99\x88\xc2\xc4\x02\x80\xaa\x9e\x65\x3b\x49\x14\x3f\ \xdd\xcf\x01\x70\x04\x80\xe9\xb2\x89\xa2\x23\xce\x05\x40\x4f\x09\ \xa5\xda\x12\x5a\x2f\xd0\x4a\xdd\xa3\x95\xba\xb9\x21\x6b\xf2\x3f\ \x0e\x55\x35\x16\x00\x54\x95\x4a\x9f\xf2\x0f\x47\x71\xc2\xff\x1c\ \x80\x6d\x65\x13\x45\x13\x0b\x80\xde\x29\xc0\x4f\x6a\xdd\x64\x68\ \xfd\x17\xad\xd4\xf5\xec\x0e\x50\x35\x62\x01\x40\x55\xc3\xb2\x9d\ \xbd\x00\x9c\x88\xe2\x27\xfd\x06\xe1\x38\x15\x81\x05\xc0\xc0\x24\ \xb4\x6e\x4b\x28\xb5\xc0\x50\xea\xb7\xf9\xfa\xba\xdb\xa5\xf3\x10\ \x95\x03\x0b\x00\xaa\x68\x96\xed\xcc\x00\x70\x0a\x80\x93\x51\x3c\ \x59\x8f\x06\x81\x05\xc0\xe0\x19\x4a\x15\x92\x5a\xbf\x6e\x28\x75\ \x55\xbe\xbe\xee\x3e\xe9\x3c\x44\x43\xc5\x02\x80\x2a\x8e\x65\x3b\ \x53\x51\x9c\xf0\x4f\x01\xb0\xab\x70\x9c\x8a\xc6\x02\x60\x78\x0c\ \xa5\x3a\x92\x5a\xbf\x64\x68\xfd\x8b\x7c\xd6\x7c\x54\x3a\x0f\xd1\ \x60\xb0\x00\xa0\x8a\x60\xd9\xce\x4e\xd8\x34\xe9\xe7\x85\xe3\x54\ \x0d\x16\x00\xe5\x53\x5a\x26\x78\xce\xd0\xfa\x27\xf9\xac\xf9\xac\ \x74\x1e\xa2\xfe\xb0\x00\xa0\xc8\x2a\x3d\x25\xef\x74\x14\x27\xfd\ \x3d\x85\xe3\x54\x25\x16\x00\xc1\x48\x68\xbd\x3e\x59\xbc\xbd\xf0\ \xdb\x7c\xea\x21\x45\x15\x0b\x00\x8a\x14\xcb\x76\x14\x8a\xbb\xf6\ \xcf\x05\x70\x2c\x80\xa4\x6c\xa2\xea\xc6\x02\x20\x78\x29\xad\x97\ \x27\xb4\xbe\x5e\x2b\xf5\x8b\x86\xac\xe9\x49\xe7\x21\xea\xc2\x02\ \x80\x22\xc1\xb2\x9d\x7a\x00\x67\x01\x38\x1b\xdc\xcc\x17\x1a\x16\ \x00\xe1\x29\x6d\x1e\x9c\x6b\x68\xfd\xef\xf9\xac\x39\x5f\x3a\x0f\ \x11\x0b\x00\x12\x53\x3a\x86\xf7\x70\x14\x3f\xed\x1f\x89\x0a\x7b\ \x92\x5e\x35\x60\x01\x20\x23\xa5\x75\x73\x42\xeb\x9b\xb4\x52\x3f\ \xe6\x71\xc4\x24\x85\x05\x00\x85\xae\xf4\x28\xdd\xae\x4f\xfb\x93\ \x84\xe3\xc4\x1a\x0b\x00\x59\x5a\x29\x37\xa5\xf5\xf3\x86\xd6\xdf\ \xe2\x23\x8d\x29\x6c\x2c\x00\x28\x34\x96\xed\x1c\x00\xe0\x32\x00\ \x47\xa1\x4a\x9f\xae\x57\x69\x58\x00\x44\x47\xa9\x2b\xf0\xa3\x19\ \xf5\x75\x37\x48\x67\xa1\x78\x60\x01\x40\x81\xb2\x6c\xc7\x00\x70\ \x02\x8a\x13\xff\x5e\xc2\x71\xa8\x07\x16\x00\xd1\x93\xd0\x7a\x7d\ \x4a\xeb\x9b\xb5\x52\xdf\x6a\xc8\x9a\x1d\xd2\x79\xa8\x7a\xb1\x00\ \xa0\x40\x58\xb6\x33\x02\xc5\x36\xff\xc5\x00\x76\x12\x8e\x43\x5b\ \xc1\x02\x20\xba\x0c\xa5\x3a\x53\x86\xf1\xa0\xa1\xd4\xf9\x0d\x59\ \xb3\x45\x3a\x0f\x55\x1f\x16\x00\x54\x56\x96\xed\x8c\x07\xf0\x0d\ \x00\xe7\x03\x18\x2b\x1c\x87\xfa\xc1\x02\x20\xfa\xb4\x52\x7e\x4a\ \xeb\x17\x0c\xad\xcf\xcb\x67\xcd\x45\xd2\x79\xa8\x7a\xb0\x00\xa0\ \xb2\xb0\x6c\x67\x0a\x80\x4b\x00\x7c\x19\x40\x5a\x38\x0e\x0d\x10\ \x0b\x80\xca\xa1\x00\xa4\x0c\x63\x49\x42\xeb\x4b\xf3\x59\xf3\x31\ \xe9\x3c\x54\xf9\x58\x00\xd0\xb0\x58\xb6\x33\x0b\xc0\x95\x00\x8e\ \x46\xf1\xdf\x28\xaa\x20\x2c\x00\x2a\x53\x4a\xeb\xe6\xa4\xd6\x97\ \xe4\xeb\xeb\xee\x96\xce\x42\x95\x8b\x05\x00\x0d\x89\x65\x3b\xbb\ \x01\xf8\x3e\x8a\x1b\xfc\x38\xf1\x57\x28\x16\x00\x95\x2d\xa5\xf5\ \x87\x49\xc3\xb8\x20\x9f\x35\x1f\x92\xce\x42\x95\x87\x05\x00\x0d\ \x8a\x65\x3b\x3b\xa3\xf8\x89\xff\x54\xf0\x56\xbe\x8a\xc7\x02\xa0\ \x3a\xa4\x0c\x63\x59\x52\xeb\xaf\xe6\xb3\xe6\xd3\xd2\x59\xa8\x72\ \xb0\x00\xa0\x01\xb1\x6c\x67\x07\x00\xdf\x05\x70\x26\x78\x62\x5f\ \xd5\x60\x01\x50\x5d\xd2\x86\xb1\x34\xa1\xf5\x57\xf2\x59\xf3\x45\ \xe9\x2c\x14\x7d\x2c\x00\xa8\x4f\xa5\x33\xfa\xaf\x00\x70\x0e\x80\ \x94\x70\x1c\x2a\x33\x16\x00\xd5\xa7\xb4\x59\x70\x61\x42\xeb\x2f\ \xf3\x99\x03\xd4\x17\x16\x00\xd4\x2b\xcb\x76\xb6\x03\x70\x39\x8a\ \xb7\xf3\xd5\x0a\xc7\xa1\x80\xb0\x00\xa8\x5e\xa5\x42\xe0\xf5\x84\ \xd6\x67\xe4\xb3\xe6\x12\xe9\x3c\x14\x3d\x2c\x00\x68\x33\x96\xed\ \xa4\x01\x5c\x84\xe2\xa7\xfe\x6d\x85\xe3\x50\xc0\x58\x00\x54\x3f\ \x05\xf8\x69\xc3\x78\x22\xa1\xf5\x29\x0d\x59\xd3\x91\xce\x43\xd1\ \xc1\x4d\x5c\xb4\x91\x65\x3b\xc7\x01\x78\x13\xc0\xcf\xc0\xc9\x9f\ \xa8\x2a\xf8\x80\x6a\x73\xdd\x39\xad\x85\x42\xcb\x82\xa6\x96\x9f\ \x4a\xe7\xa1\xe8\x60\x07\x80\x60\xd9\xce\x74\x00\xd7\x00\x38\x54\ \x3a\x0b\x85\x8b\x1d\x80\xf8\x49\x6a\xbd\x2a\x65\x18\x67\xe7\xb3\ \xe6\x83\xd2\x59\x48\x16\x0b\x80\x18\xb3\x6c\xc7\x04\xf0\x03\x00\ \x5f\x03\x60\x08\xc7\x21\x01\x2c\x00\xe2\x2b\x6d\x18\x8b\x92\x5a\ \x9f\xd0\x90\x35\xdf\x91\xce\x42\x32\x58\x00\xc4\x90\x65\x3b\x09\ \x00\xe7\xa1\x78\x90\xcf\x18\xe1\x38\x24\x88\x05\x40\xbc\x69\xa5\ \xfc\xb4\x61\xdc\x6f\x28\x75\x46\x43\xd6\x6c\x93\xce\x43\xe1\xe2\ \x1e\x80\x98\xb1\x6c\x67\x36\x80\x05\x00\xae\x05\x27\x7f\xa2\x58\ \xf3\x7c\x5f\xb5\x16\x0a\x5f\x68\x2d\x14\xd6\x2c\x68\x6a\xb9\x5c\ \x3a\x0f\x85\x8b\x1d\x80\x98\xb0\x6c\x67\x02\x80\x1b\x00\x1c\x27\ \x9d\x85\xa2\x83\x1d\x00\xea\x2e\xa5\x75\x53\xd2\x30\x8e\xcc\x67\ \xcd\x79\xd2\x59\x28\x78\x2c\x00\xaa\x9c\x65\x3b\x0a\xc5\x43\x7c\ \xfe\x0b\xc0\x28\xe1\x38\x14\x31\x2c\x00\xa8\x27\xa5\x94\x5f\x63\ \x18\x7f\x30\x94\x3a\xb3\x21\x6b\x7a\xd2\x79\x28\x38\x5c\x02\xa8\ \x62\x96\xed\xec\x02\xe0\x19\x00\xbf\x05\x27\x7f\x22\x1a\x00\xbf\ \xb8\x2c\x70\x7a\xbb\xeb\xda\x8d\xcd\xf6\x6c\xe9\x3c\x14\x1c\x76\ \x00\xaa\x50\x69\x93\xdf\xa5\x28\x3e\xb4\xa7\x46\x36\x0d\x45\x19\ \x3b\x00\xd4\x17\x05\x20\x6d\x18\x8f\x27\x8a\x77\x0b\x70\x93\x60\ \x95\x61\x07\xa0\xca\x58\xb6\x33\x0b\xc0\xab\x28\x1e\xe6\xc3\xc9\ \x9f\x88\x86\xcc\x07\xd0\xe6\xba\x73\xda\x5c\x77\x55\x63\x53\xcb\ \xa9\xd2\x79\xa8\xbc\xd8\x01\xa8\x12\x96\xed\xd4\xa0\xf8\x89\xff\ \x52\xf0\x69\x7d\x34\x40\xec\x00\xd0\x60\xd4\x18\xc6\xcb\x09\xad\ \xe7\x34\x64\xcd\x35\xd2\x59\x68\xf8\xd8\x01\xa8\x02\x96\xed\x1c\ \x04\xa0\x11\xc5\x87\xf7\x70\xf2\x27\xa2\x40\xb4\xb9\xee\x3e\xad\ \x85\xc2\x47\x0b\x9a\x5a\x2e\x94\xce\x42\xc3\xc7\x0e\x40\x05\xb3\ \x6c\x27\x05\xe0\xa7\x00\x2e\x46\x71\xb9\x8e\x68\x50\xd8\x01\xa0\ \xa1\x4a\x1b\xc6\xdf\x93\x5a\x1f\xdc\x90\x35\xd7\x49\x67\xa1\xa1\ \x61\x07\xa0\x42\x59\xb6\x33\x0d\xc5\xb5\xfe\x4b\xc0\xc9\x9f\x88\ \x42\xd6\xee\xba\x9f\x69\x73\xdd\x8f\x1a\x9b\xed\xa3\xa5\xb3\xd0\ \xd0\xb0\x00\xa8\x40\x96\xed\x9c\x0f\xe0\x75\x00\x33\xa4\xb3\x10\ \x51\x7c\x15\x3c\xaf\x76\x43\x67\xe7\xc3\xf3\x9b\x5a\xee\x91\xce\ \x42\x83\xc7\x25\x80\x0a\x62\xd9\xce\x38\x00\xb7\x01\x38\x52\x3a\ \x0b\x55\x07\x2e\x01\x50\xb9\x24\xb5\xfe\x28\x65\x18\x87\xe4\xb3\ \xe6\x62\xe9\x2c\x34\x30\xec\x00\x54\x08\xcb\x76\xe6\xa0\xb8\xd1\ \x8f\x93\x3f\x11\x45\x4e\xa7\xe7\x8d\x6b\x2d\x14\x16\x2e\x68\x6a\ \xf9\xae\x74\x16\x1a\x18\x76\x00\x22\xae\x74\x7b\xdf\x7f\x01\xf8\ \xa6\x74\x16\xaa\x3e\xec\x00\x50\x10\xd2\x86\xb1\xa0\xb4\x41\x90\ \xb7\x0b\x46\x18\x3b\x00\x11\x66\xd9\x4e\x1e\xc5\xb5\x7e\x4e\xfe\ \x44\x54\x31\xda\x5d\x77\x46\x6b\xa1\xd0\xdc\xd8\x6c\x7f\x41\x3a\ \x0b\x6d\x1d\x0b\x80\x88\xb2\x6c\xe7\x6c\x14\x77\xf9\xef\x26\x9d\ \x85\x88\x68\xb0\x5c\xdf\x4f\x6f\xe8\xec\xbc\x6f\x7e\x53\xcb\x1d\ \xd2\x59\xa8\x77\x5c\x02\x88\x18\xcb\x76\xd2\x00\xae\x43\xf1\x09\ \x7e\x44\x81\xe2\x12\x00\x85\x21\x6d\x18\x4b\x92\x5a\xef\xdd\x90\ \x35\x1d\xe9\x2c\xb4\x09\x3b\x00\x11\x62\xd9\xce\x44\x00\xcf\x81\ \x93\x3f\x11\x55\x91\x76\xd7\x9d\xd2\xe6\xba\x2b\x1a\x9b\xed\x3d\ \xa5\xb3\xd0\x26\x2c\x00\x22\xc2\xb2\x9d\x43\x00\xbc\x01\x60\x2f\ \xe9\x2c\x44\x44\xe5\x56\xf0\xbc\x6d\x5a\x0b\x85\x97\x17\x34\xb5\ \x5c\x2c\x9d\x85\x8a\x58\x00\x44\x80\x65\x3b\x97\x01\x78\x0a\xc0\ \x76\xd2\x59\x88\x88\x82\xe2\xf9\xbe\xde\x50\x28\x5c\x35\xaf\xa9\ \xe5\x11\xe9\x2c\xc4\x3d\x00\xa2\x2c\xdb\x19\x89\xe2\xc1\x3e\x27\ \x49\x67\xa1\x78\xe2\x1e\x00\x92\x92\x32\x8c\xe5\x29\xad\xf7\x68\ \xc8\x9a\x2b\xa5\xb3\xc4\x15\x3b\x00\x42\x2c\xdb\x99\x0c\xe0\x15\ \x70\xf2\x27\xa2\x18\xea\x70\xdd\x89\xad\x85\xc2\x3f\x1a\x9b\xed\ \xcf\x4b\x67\x89\x2b\x16\x00\x02\x2c\xdb\x39\x06\xc0\x6b\x00\xa6\ \x49\x67\x21\x22\x92\xe2\xfa\x7e\x7a\x43\xa1\xf0\xc4\x82\xa6\x96\ \x1f\x49\x67\x89\x23\x16\x00\x21\xb3\x6c\xe7\x22\x00\x0f\x00\xc8\ \x48\x67\x21\x22\x92\xe6\xfb\xbe\xda\x50\x28\x5c\x31\xbf\xa9\xe5\ \x01\xe9\x2c\x71\xc3\x3d\x00\x21\xb1\x6c\x47\x03\xb8\x06\x3c\xd5\ \x8f\x22\x84\x7b\x00\x28\x4a\x4a\x47\x08\xef\xd1\x90\x35\x0b\xd2\ \x59\xe2\x80\x1d\x80\x10\x58\xb6\x33\x02\xc5\x4f\xfd\x9c\xfc\x89\ \x88\xb6\xa2\xdd\x75\x67\x74\xb8\xee\x07\x0b\x9b\xed\x3a\xe9\x2c\ \x71\xc0\x02\x20\x60\x96\xed\x8c\x07\x30\x17\xc0\x31\xc2\x51\x88\ \x88\x22\xaf\xc3\xf3\xb2\x6d\xae\xbb\xac\xb1\xd9\x9e\x2e\x9d\xa5\ \xda\xb1\x00\x08\x90\x65\x3b\x53\x01\xbc\x0c\x80\xa7\x5f\x11\x11\ \x0d\x50\xc1\xf3\xb6\x69\x2b\x14\xe6\x35\x36\xdb\x7c\xfc\x79\x80\ \x58\x00\x04\xc4\xb2\x9d\x83\x01\xbc\x08\x60\x47\xd9\x24\x44\x44\ \x95\xc7\xf5\xfd\xc4\x86\x42\xe1\x91\x05\x4d\x2d\x17\x49\x67\xa9\ \x56\x2c\x00\x02\x60\xd9\xce\xe9\x00\x9e\x04\x30\x5a\x3a\x0b\x11\ \x51\xa5\xf2\x7d\x5f\xb5\x16\x0a\x57\xcf\x6f\x6a\xb9\x51\x3a\x4b\ \x35\x62\x01\x50\x66\x96\xed\x7c\x17\xc0\xef\x01\xa4\xa4\xb3\x10\ \x11\x55\x3a\x1f\x40\x6b\xa1\xf0\xf5\x79\x2b\x3e\x7e\x5a\x3a\x4b\ \xb5\x61\x01\x50\x46\x96\xed\x5c\x0d\xe0\x07\xd2\x39\x88\x88\xaa\ \x4d\x9b\xeb\xfe\xcb\x1b\x2b\x3e\x7e\x43\x3a\x47\x35\xe1\x39\x00\ \x65\x50\xba\xc7\xff\x26\xf0\x31\xbe\x54\x61\x78\x0e\x00\x55\x9a\ \xb4\x61\x2c\x49\x6a\xdd\xc0\xb3\x02\x86\x8f\x1d\x80\x61\xb2\x6c\ \x27\x81\x62\xcb\x9f\x93\x3f\x11\x51\xc0\xda\x5d\x77\x4a\x87\xe7\ \xbd\xb3\xb0\xd9\xae\x91\xce\x52\xe9\x58\x00\x0c\x83\x65\x3b\x29\ \x00\xff\x0b\xe0\x34\xe9\x2c\x44\x44\x71\xd1\xe1\xba\x3b\x76\xb8\ \xee\x7b\x0b\x9b\xed\x91\xd2\x59\x2a\x19\x0b\x80\x21\xb2\x6c\xa7\ \x16\xc0\xc3\x00\x8e\x97\xce\x42\x44\x14\x37\x1d\x9e\x37\xa1\xdd\ \x75\xad\x85\xcd\xf6\x58\xe9\x2c\x95\x8a\x05\xc0\x10\x58\xb6\xb3\ \x2d\x80\xc7\x01\x1c\x26\x9d\x85\x88\x28\xae\x3a\x3d\xaf\xae\xbd\ \xd8\x09\xa8\x97\xce\x52\x89\x58\x00\x0c\x92\x65\x3b\x63\x00\x3c\ \x05\xe0\x20\xe9\x2c\x44\x44\x71\xd7\xe9\x79\xa3\xdb\x5c\x77\xe9\ \xc2\x66\x3b\x27\x9d\xa5\xd2\xb0\x00\x18\x04\xcb\x76\xb6\x03\xf0\ \x0c\x80\xbd\xa5\xb3\x10\x11\x51\x51\xc1\xf3\x46\xb6\xb9\xee\x9b\ \x8d\xcd\xf6\x14\xe9\x2c\x95\x84\x05\xc0\x00\x95\x26\xff\x67\x01\ \xcc\x90\xce\x42\x44\x44\x9b\x2b\x78\x5e\x6d\x5b\xa1\x30\x9f\x45\ \xc0\xc0\xb1\x00\x18\x80\x6e\x6d\xff\xa9\xd2\x59\x88\xe2\x6a\xdd\ \xba\x4f\xf0\x9d\x4b\x2e\x94\x8e\x41\x11\xe6\xfa\x7e\xba\xdd\x75\ \xdf\xe0\x72\xc0\xc0\xb0\x00\xe8\x47\xb7\x0d\x7f\xfc\xe4\x4f\x24\ \x64\xe1\xbc\x37\xf0\xef\xe7\x9f\x8b\xa6\x0f\x97\x4b\x47\xa1\x88\ \x2b\x78\x5e\x6d\x9b\xeb\x36\x72\x63\x60\xff\x12\xd2\x01\xa2\xac\ \x74\xab\xdf\x23\xe0\x9a\x3f\x91\x98\x3b\xff\xfb\x66\xcc\xfd\xcb\ \x93\xe0\xa9\xa5\x34\x50\x05\xcf\x1b\xd9\x0e\x2c\x5e\xd8\x6c\x7f\ \xba\x21\x6b\xae\x92\xce\x13\x55\xec\x00\x6c\x45\xe9\x90\x9f\x07\ \xc0\xdd\xfe\x44\x22\xba\x5a\xfe\xcf\x3c\xf5\x04\x27\x7f\x1a\xb4\ \x4e\xcf\x1b\xdd\xee\xba\x6f\xf3\xb0\xa0\xad\x63\x01\xd0\x8b\xd2\ \xf1\xbe\xf7\x80\xf7\xf9\x13\x89\x60\xcb\x9f\xca\xa1\xd3\xf3\xea\ \x3a\x8a\x45\x00\x8f\x0d\xee\x05\x97\x00\x7a\x28\x3d\xd8\xe7\x77\ \xe0\x09\x7f\x44\x22\xd8\xf2\xa7\x72\xea\xf0\xbc\x09\x50\xea\xad\ \x85\xcd\xf6\x2e\x7c\x80\xd0\xe6\x58\x00\x6c\xe9\x26\xf0\x6c\x7f\ \xa2\xd0\xad\x5b\xf7\x09\x7e\xf6\xbd\x2b\xf8\xa9\x9f\xca\xae\xc3\ \x75\x77\x54\xc0\x42\xf0\x4e\xae\xcd\x70\x09\xa0\x1b\xcb\x76\xae\ \x06\x9f\xea\x47\x14\x3a\xb6\xfc\x29\x68\xed\xae\x3b\xe5\x8d\x15\ \x1f\xbf\x21\x9d\x23\x4a\xd8\x01\x28\xb1\x6c\xe7\xbb\x00\x2e\x92\ \xce\x41\x14\x37\x6c\xf9\x53\x58\xda\x5d\x77\xd6\xbc\x15\x1f\x3f\ \x3d\x6b\xc2\x76\x87\x4a\x67\x89\x02\x76\x00\x00\x58\xb6\x73\x3a\ \x80\x1f\x48\xe7\x20\x8a\x13\xee\xf2\x27\x09\x6d\xae\xfb\x2f\xf3\ \x9b\x5a\x6e\x94\xce\x11\x05\xb1\x2f\x00\x2c\xdb\x39\x18\xc0\xad\ \xd2\x39\x88\xe2\x84\x2d\x7f\x92\xd4\x56\x28\x7c\x7d\x41\x53\x4b\ \xec\x3b\xbe\xb1\x5e\x02\xb0\x6c\x67\x2a\x8a\xf7\xfa\xa7\xa4\xb3\ \x10\xc5\x05\x5b\xfe\x24\xcd\x07\xd0\xea\xba\x57\x35\x36\xdb\xef\ \xe4\xb3\xe6\xa3\xd2\x79\xa4\xc4\xb6\x03\x60\xd9\xce\x78\x00\x8f\ \x01\x18\x2d\x9d\x85\x28\x0e\xd8\xf2\xa7\x28\xf1\x7d\x5f\xb5\x15\ \x0a\x0f\x36\x36\xdb\xd3\xa5\xb3\x48\x89\x65\x01\x60\xd9\xce\x08\ \x14\x8f\xf8\xdd\x51\x38\x0a\x51\x2c\xb0\xe5\x4f\x51\xe4\xfa\x7e\ \xa2\xdd\x75\x5f\x5e\xd8\x6c\xd7\x49\x67\x91\x10\xbb\x25\x80\xd2\ \x41\x3f\x77\x03\xd8\x53\x3a\x0b\x51\x1c\xb0\xe5\x4f\x51\x56\xf0\ \xbc\x6d\x3a\x80\x85\x0b\x9b\xed\x49\x71\x3b\x28\x28\x76\x05\x00\ \x80\x6b\x00\x1c\x23\x1d\x82\xa8\xda\xf1\x60\x1f\xaa\x14\x1d\x9e\ \x97\x55\x4a\xbd\x0e\x60\xa6\x74\x96\x30\xc5\x6a\x09\xc0\xb2\x9d\ \x8b\x00\x7c\x53\x3a\x07\x51\xb5\x63\xcb\x9f\x2a\x4d\xbb\xeb\xce\ \x98\xdf\xd4\xf2\x80\x74\x8e\x30\xc5\xa6\x00\xb0\x6c\xe7\x18\x00\ \xbf\x92\xce\x41\x54\xed\xee\xfc\xef\x9b\xf1\xeb\x9f\xff\x18\x1d\ \xed\xed\xd2\x51\x88\x06\xa5\xb5\x50\x38\x6e\x41\x53\xcb\x8f\xa4\ \x73\x84\x25\x16\x05\x80\x65\x3b\x93\x01\xfc\x1e\x31\xf9\xdf\x4b\ \x24\x81\xbb\xfc\xa9\x1a\xb4\xba\xee\x7f\x34\x36\xdb\x9f\x97\xce\ \x11\x86\xaa\x9f\x10\x2d\xdb\x19\x89\xe2\xbd\xfe\x19\xe9\x2c\x44\ \xd5\x8a\x2d\x7f\xaa\x16\xa5\xdb\x03\x1f\x5e\xd8\x6c\x8f\x97\xce\ \x12\xb4\x38\x6c\x02\xbc\x0d\xc0\x34\xe9\x10\x44\xd5\x8a\xbb\xfc\ \xa9\xda\xb8\xbe\x9f\xee\xf0\xbc\xd7\x01\x4c\x92\xce\x12\xa4\xaa\ \xee\x00\x58\xb6\x73\x19\x80\x93\xa4\x73\x10\x55\x23\xb6\xfc\xa9\ \x9a\x75\xb8\xee\xc4\x79\x4d\x2d\x8f\x48\xe7\x08\x52\xd5\x16\x00\ \x96\xed\x1c\x02\xe0\x67\xd2\x39\x88\xaa\x11\x5b\xfe\x14\x07\x6d\ \x85\xc2\x51\x0b\x9a\x5a\x2e\x96\xce\x11\x94\xaa\x5c\x02\xb0\x6c\ \x67\x22\x80\x7b\x01\x18\xd2\x59\x88\xaa\x0d\x5b\xfe\x14\x27\x6d\ \xae\xfb\xcb\xc6\x66\xfb\x6f\xf9\xac\xf9\x9a\x74\x96\x72\xab\xba\ \x0e\x80\x65\x3b\x69\x00\xf7\x03\xd8\x4e\x3a\x0b\x51\x35\x61\xcb\ \x9f\xe2\xc8\xf3\x7d\xdd\xee\xba\xcf\x2c\x6c\xb6\xab\x6e\x23\x79\ \x35\x76\x00\xae\x03\xb0\x97\x74\x08\xa2\x6a\xb2\x70\xde\x1b\xf8\ \xcd\xd5\xbf\xe0\xbd\xfd\x14\x4b\x05\xcf\xdb\xa6\x53\xa9\x57\x00\ \x4c\x95\xce\x52\x4e\x55\xd5\x01\xb0\x6c\xe7\x6c\x00\xe7\x48\xe7\ \x20\xaa\x26\x3c\xd8\x87\x08\x68\x77\xdd\x29\xf3\x9b\x5a\xee\x90\ \xce\x51\x4e\x55\x53\x00\x58\xb6\x93\x07\x70\x83\x74\x0e\xa2\x6a\ \xc1\x96\x3f\xd1\xe6\xda\x0a\x85\x33\x1b\x9b\xed\x2f\x48\xe7\x28\ \x97\xaa\x28\x00\x2c\xdb\xa9\x01\x70\x17\x80\xb4\x74\x16\xa2\x6a\ \xc0\x5d\xfe\x44\x5b\xf2\x01\xb4\x15\x0a\x77\x2e\x6c\xb6\x47\x4b\ \x67\x29\x87\x6a\xd9\x03\xf0\x5f\x00\x76\x93\x0e\x41\x54\x0d\xb8\ \xcb\x9f\x68\xeb\x5c\xdf\x4f\x77\x7a\xde\x5c\x54\xc1\x93\x03\x2b\ \xbe\x03\x60\xd9\xce\x1c\xf0\x09\x7f\x44\xc3\xc6\x96\x3f\xd1\xc0\ \xb4\xbb\xee\x8c\x05\x4d\x2d\xdf\x95\xce\x31\x5c\x15\x5d\x00\x58\ \xb6\x33\x0e\xc0\xed\xd2\x39\x88\x2a\x1d\x5b\xfe\x44\x83\xd3\xe6\ \xba\x57\x36\x36\xdb\x15\x7d\xcc\x7c\xa5\x2f\x01\xdc\x06\xa0\xea\ \x1f\xd8\x40\x14\x24\xb6\xfc\x89\x06\xcf\xf3\x7d\xdd\xe1\xba\xcf\ \xa0\x82\xe7\xa0\x8a\xed\x00\x58\xb6\x73\x3e\x80\x23\xa5\x73\x10\ \x55\xaa\xf6\x8e\x76\x7c\xe7\x52\xb6\xfc\x89\x86\xaa\xd3\xf3\xc6\ \xcd\x6f\x6a\xb9\x47\x3a\xc7\x50\x55\x64\x01\x60\xd9\xce\x34\x00\ \xbf\x94\xce\x41\x54\xa9\x3e\xfc\x70\x39\xbe\xf3\xbd\x2b\xd0\xb4\ \x9c\x2d\x7f\xa2\xe1\x68\x2b\x14\x4e\x6e\x6c\xb6\x8f\x96\xce\x31\ \x14\x15\xb7\x04\x60\xd9\x4e\x0a\xc5\x5b\xfe\x6a\xa5\xb3\x10\x55\ \xa2\xe7\x9e\x7f\x16\xb7\xdf\x71\x1b\xda\x3b\x78\xb0\x0f\xd1\x70\ \xf9\x00\xda\x5d\xf7\xde\x85\xcd\xf6\xb8\x86\xac\xb9\x4e\x3a\xcf\ \x60\x54\x5c\x01\x00\xe0\xa7\x00\x66\x48\x87\x20\xaa\x34\xed\x1d\ \xed\xb8\xfd\x8e\xdb\xf0\xdc\xf3\xcf\x4a\x47\x21\xaa\x2a\x05\xcf\ \xab\xed\x54\x6a\x2e\x80\x3d\xa4\xb3\x0c\x46\x45\x2d\x01\x58\xb6\ \x73\x10\x80\xaa\x7d\x34\x23\x51\x50\xba\x5a\xfe\x9c\xfc\x89\x82\ \xd1\xee\xba\x9f\x59\xd0\xd4\x72\xa1\x74\x8e\xc1\xa8\x98\x02\xa0\ \x74\xda\xdf\x2d\x00\x94\x74\x16\xa2\x4a\xf2\xdc\xf3\xcf\xe2\x3b\ \xdf\xbb\x02\x1f\xf2\x16\x3f\xa2\x40\xb5\xbb\xee\x2f\x2b\xe9\x94\ \xc0\x4a\x5a\x02\xb8\x12\xc0\x2e\xd2\x21\x88\x2a\x05\x5b\xfe\x44\ \xe1\x72\x7d\x3f\x59\xf0\xbc\xc7\x01\x7c\x56\x3a\xcb\x40\x54\x44\ \x07\xc0\xb2\x9d\x59\x00\x2e\x95\xce\x41\x54\x29\xd8\xf2\x27\x92\ \xd1\xe6\xba\xfb\x34\x36\xb5\x9c\x2a\x9d\x63\x20\x22\x5f\x00\x58\ \xb6\x93\x00\x70\x2b\x2a\xab\x5b\x41\x24\x86\x2d\x7f\x22\x59\xed\ \x9e\x77\xeb\xc2\x66\xbb\x46\x3a\x47\x7f\x2a\x61\x52\xbd\x14\xc0\ \x2c\xe9\x10\x44\x51\xc7\x96\x3f\x51\x34\x14\x3c\xaf\xb6\xa0\xd4\ \x9f\x00\x1c\x21\x9d\xa5\x2f\x91\xee\x00\x58\xb6\xb3\x0b\x8a\x6b\ \xff\x44\xd4\x07\xb6\xfc\x89\xa2\xa5\xdd\x75\xe7\x34\x36\xdb\xb3\ \xa5\x73\xf4\x25\xb2\x1d\x00\xcb\x76\x14\x8a\xbb\xfe\x23\xdf\x46\ \x21\x92\xc4\x83\x7d\x88\xa2\xc7\x07\xd0\xe1\xba\xff\xbb\xb0\xd9\ \x36\x1b\xb2\xa6\x27\x9d\xa7\x37\x91\x2d\x00\x00\x9c\x03\xe0\x20\ \xe9\x10\x44\x51\xc5\x96\x3f\x51\xb4\x75\x7a\xde\xe8\x84\xd6\xbf\ \x03\x70\x86\x74\x96\xde\x44\x72\x09\xc0\xb2\x9d\x09\x00\xfe\x4b\ \x3a\x07\x51\x54\xb1\xe5\x4f\x54\x19\xda\x5c\xf7\x4b\x8d\xcd\x76\ \x24\xf7\xb1\x45\xb5\x03\x70\x03\x80\x51\xd2\x21\x88\xa2\x88\x2d\ \x7f\xa2\xca\xe1\xfb\xbe\xea\x74\xdd\x47\x01\x4c\x90\xce\xd2\x53\ \xe4\x3a\x00\x96\xed\xcc\x06\x70\x9c\x74\x0e\xa2\xa8\x69\xef\x68\ \xc7\x4d\x37\xdf\x88\x9b\x6e\xbe\x91\x93\x3f\x51\x05\xe9\xf0\xbc\ \xfa\x05\x4d\x2d\x97\x4b\xe7\xe8\x29\x52\x05\x40\xe9\x9e\xff\x6b\ \xa4\x73\x10\x45\x0d\x5b\xfe\x44\x95\xad\xdd\x75\xbf\x1f\xb5\xb3\ \x01\xa2\xb6\x04\x70\x1e\x80\x69\xd2\x21\x88\xa2\x84\x2d\x7f\xa2\ \xca\xe7\xfa\x7e\xda\xf5\xfd\xdf\x03\x38\x49\x3a\x4b\x97\xc8\x14\ \x00\x96\xed\x98\x00\xbe\x2f\x9d\x83\x28\x2a\xb8\xcb\x9f\xa8\xba\ \xb4\xbb\xee\x89\x0b\x9b\xed\x5d\x1a\xb2\xe6\x3b\xd2\x59\x80\x08\ \x15\x00\x00\x7e\x00\x60\x8c\x74\x08\xa2\x28\xf8\xf0\xc3\xe5\xb8\ \xe6\xba\x6b\x78\x9c\x2f\x51\x15\xf1\x7c\x5f\x75\x7a\xde\x9f\x00\ \x34\x48\x67\x01\x22\xb2\x07\xc0\xb2\x9d\xe9\x00\xbe\x26\x9d\x83\ \x28\x0a\x78\x96\x3f\x51\xf5\x6a\x77\xdd\xe9\x8d\xcd\x76\x24\x36\ \xba\x47\xa5\x03\x70\x0d\x00\x43\x3a\x04\x91\x24\xb6\xfc\x89\xe2\ \xa1\xc3\x75\x6f\x05\xf0\xa0\x74\x0e\xf1\x0e\x80\x65\x3b\xc7\x01\ \x38\x54\x3a\x07\x91\x24\xee\xf2\x27\x8a\x8f\x4e\xcf\x1b\xbb\xa0\ \xa9\xe5\xa7\xd2\x39\x44\x0b\x00\xcb\x76\xd2\x00\x7e\x29\x99\x81\ \x48\x1a\x5b\xfe\x44\xf1\xd3\xee\xba\x97\x2e\x6c\xb6\x33\x92\x19\ \xa4\x97\x00\x2e\x02\xf0\x69\xe1\x0c\x44\x22\xd8\xf2\x27\x8a\x2f\ \xd7\xf7\x93\x05\xcf\xbb\x07\x82\x8f\x0c\x16\x2b\x00\x2c\xdb\xd9\ \x0e\xc0\x15\x52\xe3\x13\x49\xe2\x2e\x7f\x22\x6a\x77\xdd\xc3\x1b\ \x9b\xed\x29\xf9\xac\xb9\x44\x62\x7c\xc9\x0e\xc0\xe5\x00\xb6\x15\ \x1c\x9f\x48\x04\x0f\xf6\x21\x22\x00\xf0\x01\x55\xf0\xbc\xdf\x03\ \xd8\x53\x62\x7c\x91\x02\xc0\xb2\x9d\x7a\x00\xe7\x4b\x8c\x4d\x24\ \x85\x2d\x7f\x22\xea\xa9\xc3\x75\xf7\x68\x6c\xb6\x67\xe6\xb3\xe6\ \xfc\xb0\xc7\x96\xea\x00\x5c\x01\xa0\x56\x68\x6c\xa2\xd0\xb1\xe5\ \x4f\x44\xbd\xf1\x01\x14\x3c\xef\x7f\x00\xe4\xc3\x1e\x3b\xf4\xbb\ \x00\x2c\xdb\xd9\x01\xc0\x39\x61\x8f\x4b\x24\x85\xbb\xfc\x89\xa8\ \x2f\x1d\xae\xdb\xd0\xd8\x6c\xef\x1b\xf6\xb8\x12\x1d\x80\xef\x02\ \x48\x09\x8c\x4b\x14\x2a\xb6\xfc\x89\x68\x20\x4a\x5d\x80\xdb\x01\ \xec\x1a\xe6\xb8\xa1\x76\x00\x2c\xdb\xd9\x19\xc0\x99\x61\x8e\x49\ \x24\x81\x07\xfb\x10\xd1\x60\xb4\xbb\xee\xe4\xc6\x66\x3b\xd4\x43\ \xf1\xc2\xee\x00\x5c\x29\x30\x26\x51\xa8\xb8\xcb\x9f\x88\x86\xa2\ \xd3\xf3\xfe\x1b\x40\x2e\xac\xf1\x42\xeb\x00\x58\xb6\xb3\x1b\x80\ \x53\xc3\x1a\x8f\x28\x6c\xed\x1d\xed\xb8\xe9\xe6\x1b\x71\xd3\xcd\ \x37\x72\xf2\x27\xa2\x41\xeb\x70\xdd\x1d\x1b\x9b\xed\x63\xc3\x1a\ \x2f\xcc\x4f\xe3\xdf\x47\x04\x9e\x3d\x40\x14\x04\xee\xf2\x27\xa2\ \x72\xe8\x74\xdd\x1b\x00\x3c\x14\xc6\x58\xa1\x4c\xc8\x96\xed\xcc\ \x02\x70\x42\x18\x63\x11\x85\x8d\xbb\xfc\x89\xa8\x5c\x3a\x3c\x6f\ \xfb\xc6\xa6\x96\x50\xba\xe5\x61\x75\x00\xae\x04\xa0\x42\x1a\x8b\ \x28\x14\xdc\xe5\x4f\x44\x41\xe8\xf4\xbc\xab\x00\xdc\x1d\xf4\x38\ \x81\x77\x00\x2c\xdb\x99\x02\xe0\xe8\xa0\xc7\x21\x0a\x13\x77\xf9\ \x13\x51\x50\x3a\x3c\x2f\xdb\xd8\x6c\x07\xfe\x90\xa0\x30\x3a\x00\ \x97\x80\x9f\xfe\xa9\x8a\x70\x97\x3f\x11\x05\xad\xe0\x79\xbf\x02\ \xf0\x58\x90\x63\x04\x5a\x00\x58\xb6\x33\x1e\xc0\x97\x83\x1c\x83\ \x28\x2c\x6c\xf9\x13\x51\x58\x3a\x5c\x77\x4a\x63\xb3\x3d\x3d\x9f\ \x35\x17\x05\x35\x46\xd0\x1d\x80\x6f\x00\x48\x07\x3c\x06\x51\xe0\ \xb8\xcb\x9f\x88\xc2\xe4\x03\x70\x3d\xef\x46\x00\x07\x04\x35\x46\ \x60\x05\x80\x65\x3b\x23\xc0\x27\xfe\x51\x15\x60\xcb\x9f\x88\x24\ \x74\x78\xde\x7e\x0b\x9b\xed\xba\x86\xac\xd9\x12\xc4\xf5\x83\xec\ \x00\x9c\x05\x60\x6c\x80\xd7\x27\x0a\x14\x5b\xfe\x44\x24\xc9\xf3\ \x7d\xe5\xfa\xfe\x6f\x00\x7c\x31\x88\xeb\x07\x52\x00\x58\xb6\x63\ \x00\xb8\x38\x88\x6b\x13\x85\x81\x2d\x7f\x22\x8a\x82\x0e\xd7\x3d\ \x6e\x61\xb3\x9d\x6a\xc8\x9a\x1d\xe5\xbe\x76\x50\x1d\x80\x13\x00\ \xec\x14\xd0\xb5\x89\x02\xc5\x96\x3f\x11\x45\x85\xeb\xfb\x49\xcf\ \xf7\x7f\x86\xe2\x1d\x75\x65\x15\x54\x01\x70\x59\x40\xd7\x25\x0a\ \x0c\x5b\xfe\x44\x14\x45\x1d\x9e\x77\x2e\x02\x28\x00\xca\x7e\x10\ \x90\x65\x3b\x07\x00\xd8\xab\xdc\xd7\x25\x0a\x12\x0f\xf6\x21\xa2\ \xa8\x2a\x78\xde\x36\x0b\x9a\x5a\x2e\x28\xf7\x75\x83\xe8\x00\xf0\ \xd3\x3f\x55\x14\xb6\xfc\x89\x28\xea\x0a\x9e\xf7\x1d\x00\x37\x94\ \xf3\x9a\x65\x2d\x00\x2c\xdb\x99\x04\xe0\xa8\x72\x5e\x93\x28\x28\ \x6c\xf9\x13\x51\xa5\x28\x1d\x0f\xbc\x77\x3e\x6b\xbe\x52\xae\x6b\ \x96\xbb\x03\x70\x16\xf8\xc8\x5f\xaa\x00\xdc\xe5\x4f\x44\x95\xc6\ \xf5\xbc\x9f\x01\x38\xa4\x5c\xd7\x2b\x5b\x01\x60\xd9\x8e\x06\x70\ \x76\xb9\xae\x47\x14\x14\xb6\xfc\x89\xa8\x12\x75\x78\xde\x01\x0b\ \x9b\xed\x44\x43\xd6\x2c\x94\xe3\x7a\xe5\xfc\xb4\x7e\x38\x80\x49\ \x65\xbc\x1e\x51\x59\xb5\x77\xb4\xe3\xa6\x9b\x6f\xc4\x4d\x37\xdf\ \xc8\xc9\x9f\x62\xcb\x7a\xef\x5d\xe9\x08\x34\x44\x9e\xef\x1b\x9e\ \xef\x5f\x51\xae\xeb\x95\xb3\x00\x38\xb7\x8c\xd7\x22\x2a\x2b\xee\ \xf2\x27\x02\x1e\xba\xef\x5e\xfc\xf8\x8a\xcb\xf1\xca\x0b\xcf\x4b\ \x47\xa1\x21\x2a\x78\xde\xd7\xcb\x75\xad\xb2\x14\x00\x96\xed\xd4\ \x03\x38\xb2\x1c\xd7\x22\x2a\xb7\xe7\x9e\x7f\x16\xdf\xf9\xde\x15\ \x5c\xef\xa7\x58\x7b\xe8\xbe\x7b\xf1\xf0\x1f\xef\x85\xef\xfb\xb8\ \xed\x37\xd7\x61\xf1\xc2\x46\xe9\x48\x34\x04\xa5\xcd\x80\x33\xcb\ \x71\xad\x72\x75\x00\xce\x42\xf0\x4f\x16\x24\x1a\x14\xb6\xfc\x89\ \x8a\xba\x26\xff\x2e\x85\x42\x01\x37\xfc\xea\xe7\xf8\x87\xf5\xbe\ \x60\x2a\x1a\x2a\xd7\xf3\x7e\x51\x8e\xeb\x0c\xbb\x00\xb0\x6c\x47\ \x81\x9b\xff\x28\x62\xd8\xf2\x27\x2a\xea\x39\xf9\x77\x69\x6b\x6d\ \xc5\x35\x3f\xfd\x21\x3e\x5a\xd9\x2c\x90\x8a\x86\xa3\xd3\xf3\x0e\ \x5e\xd8\x6c\x0f\x7b\xfe\x2e\x47\x07\xe0\x73\x00\x72\x65\xb8\x0e\ \x51\x59\xb0\xe5\x4f\x54\xb4\xb5\xc9\xbf\x8b\xb3\x76\x2d\xae\xfe\ \xf1\x0f\xe0\xac\x5d\x13\x62\x2a\x1a\x2e\xd7\xf7\x13\x9e\xef\xff\ \xfb\x70\xaf\x53\x8e\x02\x80\x9b\xff\x28\x12\xd8\xf2\x27\xda\xa4\ \xbf\xc9\xbf\xcb\x47\x2b\x9b\x71\xcd\x4f\x7f\x84\xb6\xd6\xd6\x10\ \x52\x51\xb9\x14\x3c\xef\x1b\xc3\xbd\xc6\xb0\x0a\x00\xcb\x76\xc6\ \x01\x38\x76\xb8\x21\x88\x86\x8b\x2d\x7f\xa2\x4d\x06\x3a\xf9\x77\ \xf9\x87\xf5\x3e\x6e\xf8\xd5\xcf\x51\x28\x94\xe5\xf6\x72\x0a\x41\ \x87\xe7\x4d\x6c\x6c\xb6\xa7\x0d\xe7\x1a\xc3\xed\x00\x9c\x0e\x20\ \x39\xcc\x6b\x10\x0d\x0b\x5b\xfe\x44\x9b\x0c\x76\xf2\xef\xb2\x78\ \x61\x23\x6e\xbd\xe1\x5a\xf8\xbe\x1f\x40\x2a\x0a\x82\xe7\xfb\x3f\ \x1d\xce\xfb\x87\xbb\x73\xff\x94\x61\xbe\x9f\x68\xc8\x78\x96\x3f\ \xd1\xe6\x86\x3a\xf9\x77\x79\xf5\xc5\xbf\x61\xd4\xe8\xd1\x38\xe5\ \xcc\xb3\xca\x98\x8a\x82\xd2\xe9\x79\x87\x0e\xe7\xfd\x43\xee\x00\ \x58\xb6\xb3\x13\x80\x3d\x87\x33\x38\xd1\x50\xb1\xe5\x4f\xb4\xb9\ \xe1\x4e\xfe\x5d\x9e\x7a\xec\xcf\x78\xfc\xe1\x07\xca\x90\x88\x82\ \x56\xf0\xbc\x6d\x1a\x9b\xed\x83\x86\xfa\xfe\xe1\x2c\x01\x9c\x3c\ \x8c\xf7\x12\x0d\x19\x5b\xfe\x44\x9b\x2b\xd7\xe4\xdf\xe5\xfe\xbb\ \xee\xc4\x5b\x8b\x16\x96\xed\x7a\x14\x1c\xd7\xf3\xfe\x63\xa8\xef\ \x1d\x4e\x01\xc0\xf6\x3f\x85\x8a\xbb\xfc\x89\xb6\x54\xee\xc9\x1f\ \x00\x7c\xdf\xc7\x2d\xd7\x5f\x83\x4f\x1c\xa7\xac\xd7\xa5\xf2\x2b\ \xf8\xfe\x81\x43\x7d\xef\x90\x0a\x00\xcb\x76\xa6\x02\xc8\x0f\x75\ \x50\xa2\xc1\x62\xcb\x9f\x68\x4b\x41\x4c\xfe\x5d\xd6\xae\x5e\x8d\ \xff\xbe\xe1\xd7\xdc\x14\x18\x71\x05\xcf\xab\x69\x6c\xb6\x87\x74\ \x14\xff\x50\x3b\x00\x6c\xff\x53\x68\xd8\xf2\x27\xda\x52\x90\x93\ \x7f\x97\x45\xf3\xe7\xe1\xc9\x47\x1e\x0a\x74\x0c\x1a\x3e\xd7\xf3\ \x86\x74\x28\xd0\x50\xef\x02\x60\xfb\x9f\x02\xc7\x5d\xfe\x44\xbd\ \x0b\x63\xf2\xef\xf2\xa7\x7b\xfe\x80\x5d\xa7\xed\x86\xdc\xce\xbb\ \x84\x32\x1e\x0d\x5e\xa7\xe7\x7d\x76\x28\xef\x1b\x74\x07\xc0\xb2\ \x9d\x19\x00\x76\x1d\xca\x60\x44\x03\xc5\x96\x3f\x51\xef\xc2\x9c\ \xfc\x01\xc0\x75\x5d\xdc\xf4\xeb\xab\xd0\xba\x61\x43\x68\x63\xd2\ \xe0\xb8\xbe\x9f\x6a\x6c\x6a\x39\x69\xb0\xef\x1b\xca\x12\x00\x3f\ \xfd\x53\xa0\xd8\xf2\x27\xea\x5d\xd8\x93\x7f\x97\x96\x8f\x56\xe2\ \x8e\xdf\xfe\x26\xf4\x71\x69\xe0\x5c\xdf\xbf\x64\xb0\xef\x19\x4a\ \x01\xc0\xf5\x7f\x0a\x04\x77\xf9\x13\x6d\x9d\xd4\xe4\xdf\xe5\xf5\ \x97\x5f\xc4\xb3\x7f\xf9\x3f\xb1\xf1\xa9\x6f\x9d\x9e\xb7\xc7\x60\ \xdf\x33\xa8\x02\xc0\xb2\x9d\xbd\xc0\x27\xff\x51\x00\xd8\xf2\x27\ \xda\x3a\xe9\xc9\xbf\xcb\x3d\xbf\xbb\x0d\x1f\x7e\xf0\x4f\xe9\x18\ \xd4\x0b\xd7\xf7\x13\x8d\x4d\x2d\x5f\x19\xcc\x7b\x06\xdb\x01\x38\ \x71\x90\xaf\x27\xea\x17\x5b\xfe\x44\x5b\x17\x95\xc9\x1f\x00\x3a\ \x3a\x3a\x70\xd3\x35\xbf\x42\x47\x3b\x3b\x74\x51\xe4\xfa\xfe\xa0\ \x9e\xce\x3b\xd8\xbb\x00\xe6\x0c\xf2\xf5\xd4\xcd\x69\x67\x70\xfb\ \x04\x11\x0d\xdc\x53\x8f\xfd\x39\x32\x93\x7f\x97\x15\xcb\x3f\xc0\ \xdd\xbf\xbb\x0d\x67\x9e\x7b\x9e\x74\x14\xea\xa1\xe0\xfb\x33\x07\ \xf3\xfa\x01\x77\x00\x2c\xdb\x99\x08\xa0\x61\xd0\x89\x88\x88\x68\ \x48\x1a\x66\xce\xc2\xc8\x6d\x33\xd2\x31\xb6\xf0\xdc\xd3\x4f\xe1\ \xdd\xb7\x97\x48\xc7\xa0\x1e\x4a\x87\x02\x0d\xf8\x19\x3d\x83\x59\ \x02\x38\x7c\x08\x79\x88\x88\x68\x88\xb2\x13\xb6\xc7\xbf\x7d\xeb\ \x3f\x90\x4e\xd7\x48\x47\xd9\xc2\x1f\x6e\xbb\x85\xa7\x04\x46\x90\ \xe7\xfb\xdf\x18\xe8\x6b\x07\x53\x00\x1c\x31\x84\x2c\x44\x44\x34\ \x0c\x3b\xed\x3c\x19\xe7\x5d\x72\x19\xb4\x61\x48\x47\xd9\xcc\x3f\ \x97\x59\xbc\x2b\x20\x82\x5c\xcf\xfb\xdc\x40\x5f\x3b\xa0\x02\xc0\ \xb2\x9d\x24\x80\x01\x5f\x94\x88\x88\xca\xa7\x61\xe6\xee\xf8\xca\ \xd7\xce\x97\x8e\xb1\x85\x07\xee\xbd\x0b\xeb\xd7\xad\x93\x8e\x41\ \xdd\x74\x7a\x5e\xfd\xc2\x66\x7b\xc4\x40\x5e\x3b\xd0\x0e\xc0\x7e\ \x00\xb6\x1d\x7a\x24\x22\x22\x1a\x8e\x7d\x0f\x3a\x04\x5f\x38\xed\ \x0c\xe9\x18\x9b\x59\xf7\xc9\x27\x78\xe0\xde\xbb\xa4\x63\x50\x37\ \x3e\xa0\xbc\x01\xde\x0d\x30\xd0\x02\x80\xbb\xff\x89\x88\x84\xcd\ \x39\xf6\x78\x7c\xee\x88\xa3\xa4\x63\x6c\x66\xee\x53\x4f\xe2\x9f\ \xcb\x2c\xe9\x18\xd4\x8d\xe7\xfb\x03\xba\xe5\x6c\xa0\x05\x00\xd7\ \xff\x89\x88\x22\xe0\x94\x2f\x7f\x05\x7b\xed\xbb\xbf\x74\x8c\x8d\ \x7c\xdf\xc7\x5d\xb7\xff\xb7\x74\x0c\xea\xa6\xe0\x79\x33\x06\xf2\ \xba\x7e\x0b\x80\xd2\xed\x7f\xd3\x87\x9d\x88\x88\x88\x86\x4d\x29\ \x85\xb3\x2f\xb8\x10\x53\xa7\x47\xe7\xae\xec\x77\x96\xbc\x85\x97\ \xff\xf6\x9c\x74\x0c\x2a\x29\xf8\xfe\x80\x6e\x07\x1c\x48\x07\x80\ \xed\x7f\x22\xa2\x08\x49\x24\x12\xf8\xda\xbf\x5d\x8a\x51\x63\xc6\ \x48\x47\xd9\xe8\xbe\x3b\xff\x07\xed\x6d\x6d\xd2\x31\xa8\xc4\xf3\ \xfd\x6f\xf6\xf7\x1a\x16\x00\x44\x44\x15\x68\xdb\x4c\x06\xe7\x7c\ \xe3\x22\x28\xa5\xa4\xa3\x00\x00\xd6\xac\x5e\x85\x47\xee\xbf\x4f\ \x3a\x06\x95\xb8\x9e\x77\x68\x7f\xaf\xe9\xb3\x00\xb0\x6c\x47\x03\ \xe8\xf7\x22\x44\x44\x14\xbe\xa9\xd3\x1b\x70\xd4\x09\x5f\x90\x8e\ \xb1\xd1\x53\x8f\x3d\x82\x95\x4d\x2b\xa4\x63\x10\x80\x4e\xdf\xaf\ \x5f\xd8\x6c\xf7\x79\xdc\x7f\x7f\x1d\x80\x3c\x80\xe8\x9d\x43\x49\ \x44\x44\x00\x80\x63\xbe\x70\x32\x26\x4f\x99\x26\x1d\x03\x00\x50\ \x28\x14\x70\xff\xdd\x7f\x90\x8e\x41\x00\x7c\xdf\x57\xbe\xef\xf7\ \xf9\x00\xbf\xfe\x0a\x80\xe8\x6c\x35\x25\x22\xa2\x2d\x68\xad\x71\ \xee\x85\x17\x63\xe4\xb6\xd1\x38\xaa\xe5\x8d\x57\x5f\xc6\xca\xa6\ \x26\xe9\x18\x04\xc0\xeb\xe7\x09\xbe\xfd\x15\x00\xfb\x95\x31\x0b\ \x11\x11\x05\x60\x8c\x69\xe2\xac\xf3\xfb\xdd\xf3\x15\x0a\xdf\xf7\ \xf1\xe4\x9f\x1f\x92\x8e\x41\x00\x5c\xdf\xdf\xbb\xaf\xdf\xb3\x03\ \x40\x44\x54\x05\x66\xec\xbe\x07\x3e\x7f\xe4\xd1\xd2\x31\x00\x00\ \x2f\x3c\xfb\x0c\x9c\xb5\x6b\xa4\x63\xc4\x5e\xc1\xf3\xb6\xef\xeb\ \xf7\x5b\x2d\x00\x2c\xdb\xd9\x01\xc0\xc4\xb2\x27\x22\x22\xa2\x40\ \x9c\x78\xda\x19\xd8\x71\xa7\x4f\x4b\xc7\x40\xa1\xb3\x13\x4f\x3d\ \xf6\xa8\x74\x8c\xd8\xf3\x7c\xdf\x68\x6c\xb6\xf7\xdd\xda\xef\xfb\ \xea\x00\xb0\xfd\x4f\x44\x54\x41\x12\x89\x04\xce\xf9\xe6\x45\x30\ \x22\xf0\xe4\xc0\xb9\x4f\x3d\x81\xb6\xd6\x56\xe9\x18\xb1\xe7\xf9\ \xfe\x69\x5b\xfb\x5d\x5f\x05\x00\xdb\xff\x44\x44\x15\x26\x3b\x61\ \x7b\xcc\x8e\xc0\x52\xc0\x86\xf5\xeb\xf1\xdc\xd3\x4f\x49\xc7\x88\ \x3d\xcf\xf7\x0f\xde\xda\xef\x58\x00\x10\x11\x55\x99\xa3\x4f\x38\ \x29\x12\xa7\x04\xfe\xdf\x63\x8f\xc0\x75\x5d\xe9\x18\xb1\xe6\xfa\ \xfe\x56\xd7\x84\x7a\x2d\x00\x2c\xdb\x19\x05\x60\xb7\xc0\x12\x11\ \x11\x51\x60\x6a\x6a\x6b\x71\xd2\x97\xbe\x2c\x1d\x03\xab\x6d\x1b\ \xaf\xf0\x19\x01\xa2\x0a\x9e\x57\xb3\xb0\xd9\x9e\xd4\xdb\xef\xb6\ \xd6\x01\xd8\xb7\x8f\xdf\x11\x11\x51\xc4\x7d\xf6\x80\x83\xb0\xf3\ \xae\x53\xa4\x63\xe0\xf1\x87\x1f\x84\xef\xfb\xd2\x31\x62\xcd\xf3\ \xfd\x7f\xed\xed\xe7\x5b\x9b\xe4\xb9\x01\x90\x88\x68\x80\x1e\xba\ \xef\x5e\x3c\xf8\xbf\x77\x4b\xc7\xd8\xc2\x97\xce\x3a\x47\xfc\x59\ \x01\x2b\x96\x7f\x80\xc6\x79\x7f\x17\xcd\x10\x77\x9e\xef\x1f\xd6\ \xdb\xcf\x59\x00\x10\x11\x0d\xc3\x43\xf7\xdd\x8b\x87\xff\x78\x2f\ \x1e\xb9\xff\x3e\x3c\xf3\x7f\x4f\x48\xc7\xd9\xcc\xa7\x76\xcc\xe1\ \xc0\x43\x67\x4b\xc7\xc0\x13\x0f\x3d\x28\x1d\x21\xd6\x5c\xdf\xef\ \x75\x49\x7f\x6b\x05\xc0\xcc\x00\xb3\x10\x11\x55\x85\xae\xc9\xbf\ \xcb\x1f\x6e\xbb\x05\xaf\xbf\xfc\x92\x60\xa2\x2d\x9d\x70\xca\x97\ \xb0\xcd\xc8\x91\xa2\x19\x96\x2e\x59\x8c\xe5\xff\xfc\x87\x68\x86\ \x38\x2b\xf8\xfe\xa8\xde\x7e\xbe\x45\x01\x60\xd9\xce\x24\x00\xa3\ \x03\x4f\x44\x44\x54\xc1\x7a\x4e\xfe\x40\xf1\x18\xdc\x5b\xae\xbf\ \x06\x6f\x2f\x5e\x24\x94\x6a\x4b\x23\xb7\xdd\x16\xc7\x9f\xbc\xd5\ \x5b\xc1\x43\xf3\x32\x37\x03\x8a\xf1\x7d\x5f\x35\x36\xdb\x5b\x1c\ \x0b\xdc\x5b\x07\x20\x1f\x42\x1e\x22\xa2\x8a\xd5\xdb\xe4\xdf\xa5\ \xd0\xd9\x89\xeb\xfe\xeb\x67\xf8\xe0\x1f\xcb\xc2\x0d\xd5\x87\x83\ \x3e\xf7\x79\x8c\x1b\x9f\x15\xcd\xf0\xca\x0b\xcf\x73\x33\xa0\x20\ \xdf\xf7\xe7\xf4\xfc\x19\x0b\x00\x22\xa2\x41\xe8\x6b\xf2\xef\xd2\ \xda\xba\x01\x57\xff\xf4\x87\x58\x6d\xdb\x21\xa5\xea\x9b\xd6\x1a\ \x87\x1d\x7d\xac\x68\x86\x55\x2d\x2d\x78\xf7\xed\x25\xa2\x19\xe2\ \xcc\xf3\xfd\xcf\xf6\xfc\x19\x0b\x00\x22\xa2\x01\x1a\xc8\xe4\xdf\ \x65\xed\xea\xd5\xf8\xed\xb5\x57\xc1\xf3\xbc\x80\x53\x0d\xcc\x7e\ \x07\xff\x0b\x32\xa3\x7a\x5d\x0a\x0e\xcd\x2b\x2f\x3c\x2f\x3a\x7e\ \x9c\x79\xc0\x16\xf7\x84\xb2\x00\x20\x22\x1a\x80\xc1\x4c\xfe\x5d\ \xde\x59\xf2\x56\x64\x6e\x0f\x4c\x26\x93\x38\xf4\xf0\x23\x45\x33\ \xbc\xf6\xd2\x8b\xf0\x78\x32\xa0\x08\xd7\xf3\xc6\xf7\xfc\xd9\x66\ \x05\x80\x65\x3b\x69\x00\x93\x43\x4b\x44\x44\x54\x01\x86\x32\xf9\ \x77\x79\xec\xc1\x3f\xe1\xcd\xc6\xf9\x65\x4e\x34\x34\xff\x72\xd8\ \xe1\x48\xd7\xd4\x88\x8d\xbf\xee\x13\x07\x8b\x1a\x17\x88\x8d\x1f\ \x67\xae\xef\xa7\x17\x36\xdb\x99\xee\x3f\xeb\xd9\x01\x98\x06\x20\ \x11\x5e\x24\x22\xa2\x68\x1b\xce\xe4\x0f\x94\xee\x0c\xb8\xee\x1a\ \xac\x5d\xbd\xba\x8c\xa9\x86\x66\xc4\x36\x23\x71\x90\xf0\xb9\x00\ \xaf\x72\x19\x40\x8c\xef\xfb\x9b\xb5\x80\x7a\x16\x00\x0d\x21\x66\ \x21\x22\x8a\xb4\xe1\x4e\xfe\x5d\x3e\x71\x1c\xfc\xf6\xda\xab\x23\ \xb1\x1f\x60\xf6\x91\x47\x8b\x3e\x2e\xf8\x8d\xd7\x5e\x41\x47\x7b\ \xbb\xd8\xf8\x71\xe6\x01\x07\x77\xff\xbe\x67\x01\xc0\xf5\x7f\x22\ \x22\x94\x6f\xf2\xef\xf2\xf6\xe2\x45\x78\xec\xc1\x3f\x95\xed\x7a\ \x43\x35\xd6\xac\xc3\xde\xfb\x1d\x20\x36\x7e\x7b\x5b\x1b\xe6\xff\ \xfd\x75\xb1\xf1\xe3\xcc\xf3\xfd\xdd\xbb\x7f\xcf\x02\x80\x88\xa8\ \x87\x72\x4f\xfe\x5d\xfe\xfc\xa7\xfb\xd0\xf2\xd1\xca\xb2\x5f\x77\ \xb0\xe6\x1c\x7b\xbc\xe8\x33\x02\x5e\x79\x81\x87\x02\x49\xf0\x7c\ \x3f\xd7\xfd\x7b\x16\x00\x44\x44\xdd\x04\x35\xf9\x03\x40\x67\x67\ \x27\xee\xba\xe3\xb6\x40\xae\x3d\x18\x13\x26\x4e\xc2\x6e\xf9\x19\ \x62\xe3\x2f\x9a\x3f\x0f\x1b\xd6\xaf\x13\x1b\x3f\xae\x5c\xdf\x1f\ \xd3\xfd\xfb\x8d\x05\x80\x65\x3b\x63\x00\x6c\x71\x9b\x00\x11\x51\ \x5c\x04\x39\xf9\x77\x59\xf0\xf7\xd7\xb0\xe0\x0d\xf9\x16\xf8\x67\ \x0f\x3c\x58\x6c\xec\x42\xa1\x80\x37\x5e\x7d\x45\x6c\xfc\xb8\xf2\ \x7c\x5f\x2f\x6c\xb6\x37\x76\x01\xba\x77\x00\x72\xbd\xbc\x9e\x88\ \x28\x16\xc2\x98\xfc\xbb\xdc\x75\xfb\xad\xe8\xec\xec\x0c\x65\xac\ \xad\x99\xb5\xc7\x5e\x48\xa5\xd3\x62\xe3\xbf\xb5\x68\xa1\xd8\xd8\ \x71\xe6\x77\x3b\x11\x90\x05\x00\x11\xc5\x5e\x98\x93\x3f\x00\xb4\ \x7c\xb4\x52\x7c\x43\x60\xba\xa6\x06\x33\x3f\xb3\xa7\xd8\xf8\x4b\ \x97\x2c\x16\x1b\x3b\xce\x7c\x60\x56\xd7\xd7\xdd\x0b\x80\x1d\xc3\ \x8f\x42\x44\x24\x2b\xec\xc9\xbf\xcb\xe3\x0f\xfd\x49\x7c\x43\xa0\ \xe4\xdd\x00\xab\x5a\x5a\x60\x7f\xfc\xb1\xd8\xf8\x71\xe5\x03\xbb\ \x76\x7d\xcd\x0e\x00\x11\xc5\x96\xd4\xe4\x0f\x14\x37\x04\x3e\xf6\ \xd0\x03\x22\x63\x77\x99\x3e\x73\x16\x46\x6c\x33\x52\x6c\xfc\xa5\ \x6f\xb1\x0b\x10\x36\xcf\xf7\x77\xec\xfa\x9a\x1d\x00\x22\x8a\x25\ \xc9\xc9\x26\x58\xc8\x71\x00\x00\x20\x00\x49\x44\x41\x54\xbf\xcb\ \x0b\xcf\x3e\x23\x7a\x42\x60\x22\x91\xc0\x1e\xfb\x6c\xf1\x90\xb8\ \xd0\x2c\x7d\xeb\x4d\xb1\xb1\xe3\xca\xf3\xfd\x8d\x9b\xfd\xd9\x01\ \x20\xa2\xd8\x89\xc2\xe4\x0f\x00\x85\xce\x4e\x3c\xf5\xd8\x9f\x45\ \x33\xec\xb3\xbf\xdc\x32\xc0\xdb\xec\x00\x84\xce\xf3\xfd\x8d\x8f\ \x84\x64\x07\x80\x88\x62\xa5\xa3\xa3\x03\x2f\x3f\xff\xac\x74\x8c\ \x8d\xe6\x3e\xf5\x24\x5a\x37\x6c\x10\x1b\x7f\xf2\xd4\xdd\x30\x66\ \xec\x58\x91\xb1\x57\x36\xad\xc0\xda\x35\x6b\x44\xc6\x8e\x2b\xcf\ \xf7\x37\xde\xfa\xa1\x01\xc0\xb2\x9d\x71\x00\x46\x88\x25\x22\x22\ \x0a\x49\x2a\x95\xc2\x85\x97\xff\x07\x6a\x6b\xa3\xf1\x4f\x5e\x6b\ \xeb\x06\xfc\xf5\xc9\xc7\xc5\xc6\x57\x4a\x61\xcf\x7d\xf7\x17\x1b\ \xff\x1d\xde\x0d\x10\x2a\x1f\x40\x63\xb3\x3d\x0d\xd8\xd4\x01\x60\ \xfb\x9f\x88\x62\xa3\x7e\xfb\x89\x38\xf7\xc2\x8b\x45\x8f\xc3\xed\ \xee\x2f\x8f\xff\x59\xf4\x5c\x00\xc9\xdb\x01\xb9\x0c\x20\xc0\xf7\ \xf7\x01\x36\x15\x00\x3b\xca\x25\x21\x22\x0a\x5f\x7e\xf7\xcf\xe0\ \xc4\xd3\x4e\x97\x8e\x01\x00\x70\xd6\xae\xc5\x2b\x7f\x93\x3b\x1f\ \x7f\xa7\x5d\x26\x23\x91\x4c\x8a\x8c\xbd\x74\x31\x37\x02\x86\xcd\ \x2f\x1d\xfb\xcf\x0e\x00\x11\xc5\xd6\x9c\x63\x8e\xc7\x67\x0f\x38\ \x48\x3a\x06\x00\xe0\xc5\xe7\xe6\x8a\x8d\x9d\x4c\x26\x91\xfb\xf4\ \xce\x22\x63\x7f\xf8\xc1\x3f\xf9\x5c\x80\x90\x79\xbe\x3f\x05\x60\ \x07\x80\x88\x62\xee\xcc\xaf\x9d\x8f\x9d\x76\x9e\x2c\x1d\x03\x4b\ \xdf\x5a\x8c\x55\x76\x8b\xd8\xf8\x93\xa7\x4e\x13\x19\xd7\xf7\x7d\ \xbc\xb3\xe4\x2d\x91\xb1\xe3\xca\x07\x26\x01\x9b\x0a\x80\x09\x82\ \x59\x88\x88\xc4\x24\x93\x49\x7c\xe3\xb2\xcb\xc5\x76\xc2\x77\xf1\ \x7d\x1f\xaf\xfc\xed\x79\xb1\xf1\x27\x4f\xdd\x4d\x6c\xec\xf7\xdf\ \x7d\x57\x6c\xec\x38\xf2\x7d\xdf\x04\x36\x15\x00\x75\x82\x59\x88\ \x88\x44\x8d\x1a\x33\x06\x67\x9c\xf3\x75\xe9\x18\x78\x49\xf0\xf6\ \xc4\x9d\x27\xef\x0a\xad\x7b\x3e\x21\x3e\x1c\x1f\x35\xaf\x10\x19\ \x37\xae\xbc\xd2\x5d\x7f\x2c\x00\x88\x88\x00\xcc\xd8\x7d\x0f\xec\ \x32\x65\xaa\x68\x86\x0f\x3f\xf8\x27\x3e\xf8\xc7\x32\x91\xb1\x6b\ \x6a\x6b\x31\x69\x47\x99\xed\x60\xcd\x2b\x58\x00\x84\xc9\xf7\xfd\ \x1a\x60\x53\x01\x60\x0a\x66\x21\x22\x8a\x84\x2f\x7c\xe9\x0c\xe9\ \x08\xa2\x5d\x80\x5d\x85\xf6\x01\x7c\xb4\xb2\x59\x64\xdc\xb8\xf2\ \x81\x04\x00\x68\xcb\x76\x0c\x00\x63\x84\xf3\x10\x11\x89\xdb\x79\ \xf2\x14\xcc\xdc\x43\xee\x9e\x78\x00\x78\xe3\xd5\x97\xc5\xc6\x96\ \xda\x08\xd8\xd6\xda\xca\x13\x01\x43\xe4\xf9\xbe\x5a\xd8\x6c\xa7\ \x34\x80\xb1\x00\xa2\x71\x1a\x06\x11\x91\xb0\x13\x4f\x3d\x5d\xf4\ \x80\xa0\x8f\x57\xae\xc4\xaa\x16\x99\xbb\x01\x76\x99\x32\x55\xec\ \x7f\xfb\xca\x26\x2e\x03\x84\xc9\x07\x76\xd2\xe0\xfa\x3f\x11\xd1\ \x46\x13\x26\x4e\xc2\x67\x0f\x3c\x58\x34\xc3\x92\xc5\x8b\x44\xc6\ \x1d\xb9\x6d\x06\xa3\x05\x9f\x0b\x40\xa1\xfa\x34\x0b\x00\x22\xa2\ \x1e\x8e\xff\xe2\xa9\x62\x27\xe3\x01\xc0\xdb\x6f\xca\x14\x00\x00\ \x30\x3e\x5b\x2f\x32\xee\xca\xe6\x26\x91\x71\xe3\xca\xf7\xfd\x1d\ \x35\xb8\x01\x90\x88\x68\x33\x63\xeb\xea\x70\xc8\xec\xc3\xc4\xc6\ \x5f\x22\x59\x00\xd4\xcb\x1c\x0b\xb3\xb2\x89\x05\x40\xc8\x26\xb2\ \x03\x40\x44\xd4\x8b\x7d\x0f\x3a\x44\x6c\xec\x96\x8f\x3f\x82\xfd\ \xf1\xc7\x22\x63\x8b\x75\x00\xb8\x04\x10\x2a\x1f\x98\xc0\x02\x80\ \x88\xa8\x17\x9f\xda\x31\x87\xb1\xa6\xdc\x3f\x8f\x6f\x0b\xed\x03\ \x18\x97\xcd\x8a\x8c\xfb\xf1\xca\x66\xf8\xbe\x2f\x32\x76\x1c\xf9\ \xbe\x3f\x9e\x05\x00\x11\xd1\x56\xcc\xf8\xcc\x1e\x62\x63\xbf\xbb\ \xf4\x6d\x91\x71\xa5\x96\x00\x3a\x3a\x3a\xb0\x7a\x95\x2d\x32\x76\ \x1c\xf9\x80\xc9\x3d\x00\x44\x44\x5b\x31\xf3\x33\x72\x67\x02\x48\ \xb5\xc4\xb7\x1b\x9f\xe5\xad\x80\xf1\x30\x5a\x03\x18\x29\x9d\x82\ \x88\x28\x8a\xa6\xec\x36\x1d\xe9\x9a\x1a\x91\xb1\xa5\x76\xc5\x27\ \x93\x49\x8c\x31\x65\x3e\x17\xae\x59\xb5\x5a\x64\xdc\x38\xf2\x7d\ \xbf\x46\x03\x48\x4b\x07\x21\x22\x8a\xa2\x44\x32\x89\xdd\xf2\x33\ \x45\xc6\x5e\xb3\x6a\x15\x3a\xda\xdb\x45\xc6\x1e\x9f\x95\x59\x06\ \x68\x6f\x6f\x13\x19\x37\xa6\x92\x2c\x00\x88\x88\xfa\x30\x53\x68\ \x1f\x80\xef\xfb\x62\x67\xe4\x4b\x6d\x04\x6c\x6f\x63\x01\x10\x16\ \x1f\x48\xb0\x00\x20\x22\xea\x43\x7e\xf7\x3d\x62\xb7\x26\x3e\x6a\ \xb4\xcc\xe3\x61\xda\x58\x00\x84\xc9\xd0\x00\x52\xd2\x29\x88\x88\ \xa2\x6a\xdb\x4c\x06\xd9\x09\xf1\x3a\x1c\xa7\x46\x68\xdf\x43\x7b\ \x5b\xab\xc8\xb8\x71\xe4\x97\x0a\x00\x76\x00\x88\x88\xfa\x30\x7a\ \x8c\xcc\xf9\xf8\x1f\x0b\x2d\x01\xd4\xd4\xd6\x8a\x8c\xdb\x2e\xb4\ \xe7\x21\xa6\x58\x00\x10\x11\xf5\x47\xaa\x25\xbe\x7e\xfd\x7a\x91\ \x71\x6b\x6a\x84\x0a\x00\x2e\x01\x84\xc6\xf7\x7d\x16\x00\x44\x44\ \xfd\x19\x35\x46\x68\x4d\xbc\x55\xa6\x25\x5e\x53\x2b\xb3\x04\xc0\ \x3d\x00\xa1\xd2\xdc\x03\x40\x44\xd4\x0f\xa9\x25\x00\xa9\x4f\xc4\ \x69\xb1\x0e\x00\xf7\x00\x84\x48\xb1\x03\x40\x44\xd4\x8f\xd1\x52\ \x1d\x00\xa1\x09\x91\x7b\x00\xaa\x9f\x5f\xea\x00\xb0\x00\x20\x22\ \xea\x83\xd8\x6d\x71\x52\x4b\x00\x62\x77\x01\x70\x09\x20\x2c\x7e\ \xa9\x03\xc0\x25\x00\x22\xa2\x3e\x48\x2d\x01\x48\x75\x00\xa4\x96\ \x00\xb8\x07\x20\x44\xbe\xcf\x25\x00\x22\xa2\xfe\x88\x2d\x01\xc4\ \x6c\x13\x20\xf7\x00\x84\xc7\x07\xa0\xa5\x43\x10\x11\x11\x51\xf8\ \x34\x00\xee\xba\x20\x22\xea\xc3\x9a\xd5\x32\x4f\xa9\x93\xda\x8c\ \xd7\xd6\x1a\xaf\xbb\x0f\xe2\x48\xa1\x58\x00\x74\x48\x07\x21\x22\ \x8a\xb2\x35\xab\x57\x89\x8c\x2b\x77\x20\x4f\xbc\x36\x1f\xc6\x92\ \x52\x3e\x3b\x00\x44\x44\xfd\x58\xbb\x26\x66\x1d\x00\xb1\xf3\x07\ \x58\x00\x84\x45\x01\x2c\x00\x88\x88\xfa\x23\xb6\x04\x20\xb5\x1b\ \x5f\x68\xf3\x61\x3a\xcd\x3d\xe9\x61\x51\x80\xc7\x25\x00\x22\xa2\ \x7e\x48\x2d\x01\x48\x7d\x22\x96\x5a\x02\xe0\x1e\x80\x50\xb1\x03\ \x40\x44\xd4\x9f\xb5\xdc\x04\x18\x0a\xee\x01\x08\x95\xc7\x02\x80\ \x88\xa8\x1f\x52\x7b\x00\xb6\xd9\x66\x1b\x91\x71\xe5\x0e\x20\x62\ \x01\x10\x16\xa5\x94\xcb\x02\x80\x88\xa8\x1f\x52\x4b\x00\xdb\x8d\ \xcf\x8a\x8c\xcb\x3d\x00\xb1\xe0\x72\x0f\x00\x11\x51\x1f\x3e\x71\ \x1c\x34\xaf\x58\x21\x32\xf6\xf8\xfa\x7a\x91\x71\xe5\xee\x02\xe0\ \x1e\x80\xb0\xa8\x52\x01\xc0\x0e\x00\x11\xd1\x56\x34\xbe\xf1\x3a\ \x7c\xdf\x17\x19\x7b\x7c\xfd\x04\x91\x71\xc5\x6e\x7b\xe4\x12\x40\ \x98\x58\x00\x10\x11\xf5\x65\xfe\xdf\x5f\x17\x19\x57\x29\x85\x71\ \x42\x4b\x00\x1f\x35\x37\x8b\x8c\xcb\x3d\x00\xe1\x51\x40\x81\x05\ \x00\x11\xd1\x56\x14\x3a\x3b\xf1\x66\xe3\x7c\x91\xb1\x47\x8f\x1d\ \x8b\x94\xd0\x9a\xf8\xca\x66\x99\x25\x8f\x74\x9a\x05\x40\x88\x3a\ \x35\x80\x75\xd2\x29\x88\x88\xa2\x68\xc9\x9b\x8b\xc4\x9e\x51\x3f\ \x3e\x2b\xb3\xfe\xdf\xd9\xd9\x89\xd5\xb6\x2d\x32\xf6\xe8\xb1\x32\ \x4f\x5d\x8c\x23\xa5\x54\x9b\x06\x20\xf3\xff\x34\x11\x51\xc4\xcd\ \xff\xfb\x6b\x62\x63\x4b\xad\xff\x7f\xbc\xb2\x39\x76\x7b\x1e\x62\ \x6a\x8d\x06\xd0\x22\x9d\x82\x88\x28\x8a\x16\x08\xad\xff\x03\xc0\ \xce\x93\x77\x15\x19\x77\x65\x93\x4c\xfb\x3f\x95\x4a\x61\xcc\x58\ \x53\x64\xec\x38\x52\x80\xcd\x02\x80\x88\xa8\x17\xff\x5c\x66\x61\ \x95\x2d\xf7\xcf\xe3\xae\xd3\xa6\x8b\x8c\x2b\xb5\x01\x70\xbb\xf1\ \x59\x28\xa5\x44\xc6\x8e\x23\xa5\xd4\x4a\x16\x00\x44\x44\xbd\x78\ \xf1\xd9\x67\xc4\xc6\xae\xdb\x6e\x1c\xcc\xed\xb6\x13\x19\x7b\x65\ \x73\x93\xc8\xb8\x6c\xff\x87\x4b\x01\x2b\xb8\x07\x80\x88\xa8\x87\ \x55\x2d\x2d\x78\xe6\xa9\x27\xc5\xc6\x9f\xb2\x9b\xcc\xa7\x7f\x40\ \x6e\x09\x40\xea\xd0\xa3\x18\x5b\xce\x0e\x00\x11\x51\x0f\x0f\xfc\ \xef\xdd\x28\x74\x76\x8a\x8d\xbf\xab\x64\x01\x20\xd5\x01\x10\xba\ \xeb\x21\xae\x94\x52\xcb\x58\x00\x10\x11\x75\xb3\x62\xf9\x07\x78\ \xe9\xb9\xb9\xa2\x19\xa6\x08\xad\xff\xaf\xfb\xc4\xc1\x9a\x55\x32\ \xcf\x3d\xe0\x12\x40\xe8\xde\xd3\x00\x56\x01\x90\xb9\xe7\x83\x88\ \x28\x62\xee\xbf\xfb\x4e\xb1\xdb\xe0\x00\x60\xbb\xf1\xe3\x31\xb6\ \xae\x4e\x64\xec\x77\x96\xbc\xc5\x5b\x00\x63\x42\x01\xef\xeb\x9c\ \x99\x71\x01\xc8\x1c\xfc\x4c\x44\x14\x21\xef\x2e\x5d\x82\xf9\xaf\ \xcb\xdd\xfb\x0f\x00\xbb\xef\xb5\x8f\xd8\xd8\x4b\xdf\x5a\x2c\x32\ \x6e\x4d\x6d\x2d\x46\x8d\x1e\x2d\x32\x76\x1c\x69\xa5\xfc\x86\xac\ \xd9\xa1\x4b\xdf\x73\x23\x20\x11\xc5\xde\x1f\xff\xf0\x7b\xe9\x08\ \xf8\xec\x01\x07\x89\x8d\xfd\xb6\x50\x01\x20\xf5\xcc\x83\xb8\x52\ \x40\x01\x00\xba\x0a\x00\xee\x03\x20\xa2\x58\x5b\xf0\xc6\xeb\x78\ \x67\xc9\x5b\xa2\x19\xb6\x9f\xf4\x29\x4c\xda\x61\x47\x91\xb1\xdb\ \x5a\x5b\xf1\xc1\x32\x4b\x64\xec\xec\x04\xb6\xff\xc3\xa4\x94\x6a\ \x03\x58\x00\x10\x11\x61\xed\xea\xd5\xf8\xfd\x2d\x37\x49\xc7\x10\ \xfd\xf4\xff\xee\xd2\xb7\xe1\x79\x9e\xc8\xd8\xe3\xb2\x2c\x00\xc2\ \xa4\x81\x0d\xa5\xbf\x01\x00\x32\x37\x7e\x12\x11\x09\xeb\xec\xec\ \xc4\xf5\xbf\xfc\x39\x56\x0b\xed\x7e\xef\xa2\x94\xc2\xde\xfb\x1f\ \x20\x36\xfe\xd2\xb7\xde\x14\x1b\x7b\xa7\x9d\x77\x16\x1b\x3b\x8e\ \x94\x52\x36\xb0\xa9\x00\x58\x26\x17\x85\x88\x48\xce\xef\x7e\xfb\ \x1b\xbc\xff\xee\x52\xe9\x18\x98\x3c\x75\x1a\xc6\x9a\x32\xbb\xff\ \x01\xb9\x0d\x80\x4a\x29\xec\x32\x65\xaa\xc8\xd8\x71\xa5\x80\x0f\ \x80\x4d\x05\x80\xcc\xc2\x0f\x11\x91\xa0\xc7\x1f\x7e\x00\x2f\x3d\ \xff\xac\x74\x0c\x00\xc0\xbe\x07\x1e\x2c\x36\x76\x67\x67\x27\xac\ \xf7\xde\x15\x19\x7b\xfb\x49\x9f\xc2\x88\x6d\x46\x8a\x8c\x1d\x57\ \x5a\xa9\x25\x00\x3b\x00\x44\x14\x53\x8d\x6f\xfc\x1d\xf7\xdf\x75\ \xa7\x74\x0c\x00\x40\x66\xd4\x28\xec\xbd\xff\x81\x62\xe3\xbf\xff\ \xce\x52\xb1\x93\x0f\x27\x4f\xdb\x4d\x64\xdc\x38\x53\x40\x23\xc0\ \x0e\x00\x11\xc5\x50\xd3\x87\xcb\x71\xf3\xb5\x57\x8b\x1e\xf8\xd3\ \xdd\xe7\xe6\x1c\x85\x64\x32\x29\x36\xfe\xfc\xbf\xcb\x9d\x7d\xb0\ \xeb\xd4\x69\x62\x63\xc7\x96\x52\x2f\x03\xa5\x02\x20\x67\x66\x3e\ \x42\x69\x57\x20\x11\x51\x35\xeb\xe8\xe8\xc0\xb5\x3f\xff\x09\x5a\ \x5b\xa3\xf1\x4f\x5e\x6d\xed\x08\xfc\xcb\x61\x73\xc4\xc6\xf7\x7d\ \x1f\xaf\xbd\xf8\x37\xb1\xf1\x77\x99\xc2\x02\x20\x4c\x0a\x40\x3e\ \x6b\x2e\x06\x36\x75\x00\x00\x2e\x03\x10\x51\x0c\xa4\x52\x29\xec\ \x23\x78\xbb\x5d\x4f\x07\xcf\x3e\x0c\xb5\x23\x46\x88\x8d\xbf\xf4\ \xad\x37\xc5\xee\x80\x18\x5f\x3f\x81\x27\x00\x86\x4c\x2b\xd5\xbe\ \xf1\xeb\x6e\x3f\xe7\x32\x00\x11\xc5\xc2\xb1\x27\x9d\x8c\x63\xbe\ \x70\xb2\x74\x0c\x24\x92\x49\xcc\x3e\xe2\x28\xd1\x0c\x2f\xff\xed\ \x79\xb1\xb1\xd9\xfe\x0f\x9f\x56\x6a\xed\xc6\xaf\xbb\xfd\x7c\x59\ \xf8\x51\x88\x88\x64\x44\xa1\x08\xd8\xef\xa0\x43\x30\x6a\xcc\x18\ \xb1\xf1\x0b\x85\x02\x5e\x7f\xf9\x25\xb1\xf1\x27\x4f\xe5\x06\xc0\ \xb0\x69\xa5\x56\x6e\xfc\xba\xdb\xcf\xd9\x01\x20\xa2\x58\x91\x2c\ \x02\x92\xc9\x24\x8e\x38\xf6\x78\x91\xb1\xbb\x2c\x9a\x3f\x0f\x1b\ \xd6\xaf\x13\x1b\x7f\x32\x3b\x00\xa1\xd3\x4a\x2d\xdb\xf8\x75\xb7\ \x9f\x2f\xdb\xe2\x95\x44\x44\x55\x4e\xaa\x08\x98\x73\xec\x09\xa8\ \x1b\x37\x3e\xf4\x71\xbb\x7b\xe5\x05\xb9\xf6\xff\xd8\xba\x3a\x98\ \xdb\x6d\x27\x36\x7e\x5c\x29\xe0\xed\xae\xaf\xd9\x01\x20\xa2\xd8\ \x0b\xbb\x08\xa8\x1b\x37\x1e\x47\x1c\x77\x42\x68\xe3\xf5\xa6\xbd\ \xad\x4d\xf4\xf6\xbf\xc9\xdc\xfd\x2f\x42\x01\xf3\xba\xbe\x66\x01\ \x40\x44\x84\x70\x8b\x80\xd3\xbe\x72\xb6\xe8\x7d\xff\x00\x30\xef\ \xf5\x57\xd1\xd1\xde\xde\xff\x0b\x03\x32\x75\x7a\x83\xd8\xd8\x71\ \xa6\x94\xda\xb8\xe9\x63\x63\x01\x90\x33\x33\xab\x01\xac\xec\xf5\ \x1d\x44\x44\x31\x10\x46\x11\x30\xe3\x33\x7b\x62\xc6\xee\x7b\x04\ \x3a\xc6\x40\xbc\xf4\xdc\x5c\xb1\xb1\x13\x89\x04\x76\xdf\x6b\x6f\ \xb1\xf1\xe3\x4a\x2b\xe5\x35\x64\xcd\x8d\x1f\xf6\x75\x8f\xdf\x37\ \x86\x9c\x87\x88\x28\x52\x82\x2c\x02\x92\xc9\x24\x4e\xfb\xd7\xb3\ \x02\xb9\xf6\x60\xac\x58\xfe\x01\xde\x6c\x5c\x20\x36\xfe\xf4\x99\ \xb3\x78\xfe\xbf\x00\x43\xa9\xd5\xdd\xbf\x67\x01\x40\x44\xd4\x43\ \x50\x45\xc0\x51\x27\x9c\x24\xbe\xf1\x0f\x00\x1e\x7f\xe8\x01\xd1\ \x63\x90\xf7\xde\x4f\xee\xb9\x07\x71\xa6\x95\xda\x6c\xa9\x9f\x05\ \x00\x11\x51\x2f\xca\x5d\x04\xec\x3a\x6d\xba\xf8\xc6\x3f\x00\x58\ \x65\xb7\x88\xee\xfe\x4f\xd7\xd4\x60\xe6\x67\xe4\x97\x40\xe2\x48\ \x2b\xf5\xc6\x66\xdf\xf7\xf8\xfd\xc2\x10\xb3\x10\x11\x45\x5a\xb9\ \x8a\x80\x6d\x33\x19\x7c\xed\xc2\x8b\xa1\x75\xcf\x7f\x72\xc3\xf7\ \xd4\xa3\x8f\xc0\x75\x5d\xb1\xf1\x77\xdf\x73\x6f\xa4\xd2\x69\xb1\ \xf1\xe3\x4c\x03\x73\x7b\x7c\xbf\x99\xc5\x00\x0a\xa1\xa5\x21\x22\ \x8a\xb8\xe1\x16\x01\x4a\x29\x9c\xf3\xcd\x8b\x44\x4f\xfc\xeb\xb2\ \x61\xfd\x3a\x3c\xfb\xf4\x53\xa2\x19\xf6\xda\xef\x00\xd1\xf1\xe3\ \x4c\x29\xf5\x68\xf7\xef\x37\x2b\x00\x72\x66\xa6\x1d\xc0\xd2\x50\ \x13\x11\x11\x45\xdc\x70\x8a\x80\x23\x8e\x3b\x01\xbb\xe5\x67\x96\ \x39\xd1\xd0\xfc\xf5\xc9\x27\xd0\xde\xd6\x26\x36\xfe\xc8\x6d\x33\ \x98\x9e\x9f\x21\x36\x7e\x9c\x19\x4a\xb5\x37\x64\x4d\xa7\xfb\xcf\ \x7a\xeb\x47\x71\x1f\x00\x11\x51\x0f\x43\x29\x02\x76\x99\x32\x15\ \xc7\x7d\xf1\xd4\x80\x12\x0d\x4e\x67\x67\x27\x9e\x7e\xe2\xd1\xfe\ \x5f\x18\xa0\x3d\x3f\xbb\x2f\xb4\x61\x88\x66\x88\x2b\x43\xeb\x2d\ \x6e\xf3\x67\x01\x40\x44\x34\x40\x83\x29\x02\x46\x8d\x19\x83\xaf\ \x5d\x78\x49\x24\xd6\xfd\x01\xe0\x85\xb9\x7f\x85\xb3\x76\x6d\xff\ \x2f\x0c\xd0\xde\x6c\xff\x8b\xd1\xc0\x92\x5e\x7e\xb6\x05\x16\x00\ \x44\x44\x5b\x31\x90\x22\xa0\xb6\x76\x04\x2e\xfe\xf6\x77\x31\xc6\ \x34\x43\x4a\xd5\x37\xcf\xf3\xf0\xe4\x23\x0f\x89\x66\x18\x5b\x57\ \x87\x9d\x77\x9d\x22\x9a\x21\xce\x74\xb7\x13\x00\x37\xfe\xac\x97\ \xd7\xb1\x00\x20\x22\xea\x43\x5f\x45\x40\x22\x99\xc4\x37\xff\xdf\ \xb7\x30\x69\x87\x1d\xc3\x0d\xd5\x87\xb9\x4f\x3d\x89\x8f\x56\x36\ \x8b\x66\xd8\x7b\xbf\x03\xa0\x94\x12\xcd\x10\x67\x4a\xa9\xc7\x7b\ \xfe\x6c\x8b\x02\x20\x67\x66\x3e\x00\xb0\x26\x94\x44\x44\x44\x15\ \xaa\xb7\x22\x40\x29\x85\x73\xbe\x71\x11\x76\x9d\x36\x5d\x28\xd5\ \x96\xd6\x7d\xe2\xe0\x81\x7b\xef\x96\x8e\x81\x7d\xf6\xe7\xe1\x3f\ \x52\x94\x52\x7e\x3e\x6b\xbe\xd2\xf3\xe7\x5b\x5b\x9c\x9a\x1f\x70\ \x1e\x22\xa2\x8a\xd7\xb3\x08\xf8\xd2\x59\xe7\x60\x8f\x7d\x3e\x2b\ \x98\x68\x4b\x7f\xba\xe7\x2e\x6c\x58\xbf\x4e\x34\xc3\xe4\x29\xd3\ \x30\xf1\x53\x3b\x88\x66\x88\xb3\x84\x52\xbd\x6e\xfe\x48\x6c\xe5\ \xf5\x2f\x00\x38\x38\xb0\x34\x44\x44\x55\xe2\xd8\x93\x8a\x05\x80\ \xef\x7b\x38\xe4\xf3\x87\x0b\xa7\xd9\xdc\x3f\xde\x7f\x0f\xcf\x09\ \xdf\xf7\x0f\x00\x87\x1f\x7b\x9c\x74\x84\x58\x33\x94\x7a\xb3\xb7\ \x9f\xf7\x55\x00\x10\x11\xd1\x00\x74\x15\x01\x51\xe2\xfb\x3e\xee\ \xbc\xed\x16\xd1\x33\xff\x01\x60\xc2\xc4\x49\xc8\xcf\xfa\x8c\x68\ \x86\xb8\xd3\x4a\x3d\xd9\xeb\xcf\xb7\xf2\xfa\x17\x01\x78\xc1\xc5\ \x21\x22\xa2\x20\xbd\xf4\xdc\x5c\xbc\xff\x8e\xfc\xb9\x6e\x73\x8e\ \x39\x8e\x9b\xff\x84\x69\xa5\xee\xe8\xf5\xe7\xbd\xfd\x30\x67\x66\ \xd6\x02\xe8\xb5\x65\x40\x44\x44\xd1\xd6\xda\xba\x01\xf7\xfd\xe1\ \xf7\xd2\x31\x30\xc6\x34\xb1\x37\x37\xff\x89\x4a\x68\xdd\xd6\x90\ \x35\x3f\xe8\xed\x77\x7d\x9d\x50\xf1\xb7\x80\xf2\x10\x11\x51\x80\ \x1e\xbe\xef\x5e\x38\x6b\xe5\x6f\xe6\xfa\xfc\x11\x47\xc3\xe0\xc9\ \x7f\xa2\x0c\xa5\xde\xdb\xda\xef\x58\x00\x10\x11\x55\x91\x15\xcb\ \x3f\xc0\x5f\x9e\x78\x4c\x3a\x06\x46\x6c\xb3\x0d\x0e\x3c\x74\xb6\ \x74\x8c\xd8\xd3\x4a\xcd\xdd\xea\xef\xfa\x78\x1f\x37\x02\x12\x11\ \x55\x90\x42\x67\x27\x6e\xb9\xee\x1a\x78\x82\x8f\xfb\xed\x72\xf0\ \xec\xc3\x51\x53\x5b\x2b\x1d\x23\xf6\xb4\x52\x77\x6d\xf5\x77\x5b\ \xfb\x45\xce\xcc\xfc\x03\xc0\xf2\x40\x12\x11\x11\x51\xd9\xdd\x7b\ \xe7\xef\xf0\xcf\x65\x96\x74\x0c\x24\x92\x49\xcc\x3e\xe2\x48\xe9\ \x18\xb1\xa7\x95\x72\xf3\x59\xf3\xc5\xad\xfe\xbe\x9f\xf7\x73\x19\ \x80\x88\xa8\x02\xcc\x7b\xed\x15\xfc\x35\x02\xad\x7f\x00\xd8\xef\ \xa0\x43\x90\x19\x35\x5a\x3a\x46\xec\x25\xb4\xfe\xb0\xaf\xdf\xf7\ \x57\x00\x70\x19\x80\x88\x28\xe2\x56\xd9\x2d\xb8\xed\xc6\x1b\xa4\ \x63\x00\x28\x1e\x87\x7c\xd8\x51\xc7\x4a\xc7\x20\x00\x86\x52\x5b\ \x1c\xff\xdb\x1d\x3b\x00\x44\x44\x15\xcc\xf3\x3c\xfc\xf6\xd7\x57\ \x89\x1f\xf7\xdb\x65\xf7\xbd\xf6\xc1\xf8\xfa\x7a\xe9\x18\x04\x40\ \x03\xf7\xf7\xf3\xfb\x3e\x35\x02\x70\xca\x17\x87\x88\x88\xca\xe9\ \xa1\xfb\xee\xc1\xbb\x6f\x6f\xf1\xa8\x77\x11\x89\x44\x02\x27\x9e\ \xfa\x25\xe9\x18\x84\xe2\x03\x80\x94\x52\x43\x2f\x00\x72\x66\xc6\ \x03\xf0\x74\x59\x53\x11\x11\x51\x59\xbc\xb5\xa8\x11\x8f\x3e\xd0\ \xe7\xbf\xf1\xa1\x9a\x7d\xc4\xd1\x18\x5f\x3f\x41\x3a\x06\x01\x48\ \x2a\xd5\xd4\x90\x35\x0b\x7d\xbd\xa6\xbf\x0e\x00\x00\x6c\xf1\x0c\ \x61\x22\x22\x92\xe5\xac\x5d\x8b\x5b\xae\xff\xb5\xf8\x59\xff\x5d\ \x46\x8f\x19\x8b\xa3\x4f\x3c\x49\x3a\x06\x95\x18\x5a\xf7\xfb\xe1\ \x9d\x05\x00\x11\x51\x85\x29\x14\x0a\xb8\xf9\xda\xab\xb0\x76\xf5\ \x6a\xe9\x28\x1b\x9d\x74\xfa\x97\x91\xae\xa9\x91\x8e\x41\x25\x5a\ \xa9\xeb\xfa\x7d\x4d\x7f\x2f\xc8\x99\x99\xe5\x00\x16\x95\x25\x11\ \x11\x11\x0d\x8b\xef\xfb\xb8\xf5\x86\x6b\xf1\xd6\xa2\x85\xd2\x51\ \x36\xda\x65\xca\x54\xec\xc3\x33\xff\x23\x23\xa1\x54\x5b\x3e\x6b\ \xbe\xd6\xdf\xeb\x06\xd2\x01\x00\x80\x68\xdc\x5c\x4a\x44\x14\x73\ \xf7\xfc\xcf\xed\x78\xf5\xc5\xe8\xdc\xa0\xa5\x94\xc2\x69\x5f\xf9\ \xaa\x74\x0c\xea\x26\xa1\xf5\x82\x81\xbc\x6e\xa0\x05\x00\x97\x01\ \x88\x88\x84\x3d\xfe\xd0\x03\xf8\xcb\x63\x7f\x96\x8e\xb1\x99\x83\ \x67\x1f\x86\x4f\xed\x98\x93\x8e\x41\xdd\x68\xa5\xee\x19\xd0\xeb\ \x06\x78\xbd\x17\x00\x7c\x32\xf4\x38\x44\x44\x34\x1c\x2f\x3e\xfb\ \x0c\xfe\x78\x97\xfc\x23\x7e\xbb\x1b\xb9\xed\xb6\x38\xfe\xe4\xd3\ \xa4\x63\x50\x37\x0a\xf0\xb5\x52\x37\x0f\xe4\xb5\x03\x2a\x00\x72\ \x66\xa6\x13\xc0\x5f\x86\x95\x8a\x88\x88\x86\x64\xe1\xfc\x37\x70\ \xfb\x6f\x7f\x23\x1d\x63\x0b\xc7\x9f\x7c\x1a\xb6\x19\x39\x52\x3a\ \x06\x75\x93\xd4\xba\xa9\x21\x6b\x6e\x18\xc8\x6b\x07\xda\x01\x00\ \xb8\x0f\x80\x88\x28\x74\xef\xbf\xbb\x14\x37\x5e\xf5\xcb\x48\x3c\ \xe1\xaf\xbb\x4f\xed\x98\xc3\x41\x9f\xfb\xbc\x74\x0c\xea\xc1\xd0\ \x7a\xc0\x1f\xd6\x07\x53\x00\x3c\x31\x84\x2c\x44\x44\x34\x44\xcd\ \x2b\x3e\xc4\xaf\x7f\xf6\x13\xb4\xb7\xb7\x49\x47\xd9\xc2\x97\xce\ \x3a\x07\x4a\x29\xe9\x18\xd4\x83\x56\xea\xfa\x01\xbf\x76\xa0\x2f\ \x2c\xdd\x0e\x18\x9d\xfb\x4e\x88\x88\xaa\xdc\xc2\xf9\xf3\xb0\xee\ \x93\xe8\x9d\xc6\x7e\xe0\xa1\xb3\xb1\xf3\xae\x53\xa4\x63\x50\x0f\ \x09\xad\x07\x74\xfb\xdf\xc6\xd7\x0f\xf2\xfa\x8f\x03\x68\x18\xe4\ \x7b\xa8\xe4\xae\xdf\x0f\x68\x63\x66\xec\x3c\xf7\xfc\xb3\xb8\xfd\ \x8e\xdb\xd0\xde\xd1\x2e\x1d\x85\x28\x52\x66\x1f\x71\x14\x36\xac\ \x5f\x8f\x87\xff\x78\xaf\x74\x94\x8d\x26\x4c\x9c\x84\x53\xcf\x3c\ \x4b\x3a\x06\xf5\x22\xa1\xd4\xfc\xc1\xbc\x7e\x30\x4b\x00\x40\x3f\ \x4f\x16\x22\x1a\x8a\x03\x0f\x38\x08\x3f\xfa\xc1\x8f\xb1\xfd\xf6\ \x13\xa5\xa3\x10\x45\xce\xb1\x27\x9d\x8c\x63\xbe\x70\xb2\x74\x0c\ \x00\x40\x2a\x95\xc2\xd7\x2f\xba\x14\xa9\x74\x5a\x3a\x0a\xf5\xc2\ \x18\xe0\xee\xff\x2e\x83\x2a\x00\x72\x66\xe6\x55\x00\xd6\xa0\x12\ \x11\x0d\xc0\xf6\xdb\x4f\xc4\x8f\x7e\xf0\x63\x1c\x78\xc0\x41\xd2\ \x51\x88\x22\x27\x2a\x45\xc0\x29\x67\x9e\x85\xed\x27\x7d\x4a\x3a\ \x06\xf5\xc2\x50\xaa\x90\xaf\xaf\xbb\x7d\x30\xef\x19\x6c\x07\x00\ \x00\xa2\xd3\x8b\xa2\xaa\x92\x4e\xa5\xf1\xf5\x73\xcf\xc3\xd7\xcf\ \x3d\x0f\xe9\x14\x3f\x61\x10\x75\x27\x5d\x04\xec\xb1\xcf\xbe\xdc\ \xf5\x1f\x61\x49\xad\x5f\x1f\xec\x7b\x86\x52\x00\x70\x21\x9b\x02\ \xc5\x25\x01\xa2\xde\x49\x15\x01\x75\xe3\xc6\xe3\x5f\xbf\x76\x7e\ \xe8\xe3\xd2\xc0\x19\x4a\x5d\x35\xd8\xf7\x0c\xba\x00\xc8\x99\x99\ \x05\x00\xde\x1e\xec\xfb\x88\x06\x83\x4b\x02\x44\xbd\x0b\xbb\x08\ \x30\x0c\x03\x5f\xff\xb7\x4b\x50\x3b\x62\x44\x68\x63\xd2\xe0\x18\ \x4a\x75\xe4\xeb\xeb\xee\x1b\xec\xfb\x86\xd2\x01\x00\xd8\x05\xa0\ \x10\x70\x49\x80\xa8\x77\x61\x16\x01\x27\x9c\xf2\x25\xe4\x76\xde\ \x25\x94\xb1\x68\x68\x92\x5a\xbf\x34\x94\xf7\x0d\xb5\x00\xe0\x3e\ \x00\x0a\x0d\x97\x04\x88\xb6\x14\x46\x11\x30\x7d\xe6\x2c\x1c\x76\ \xf4\xb1\x81\x8e\x41\xc3\x67\x68\xfd\x8b\xa1\xbc\x6f\x48\x05\x40\ \xce\xcc\xbc\x05\xa0\x71\x28\xef\x25\x1a\x0a\x2e\x09\x10\x6d\x29\ \xc8\x22\x60\xd4\x98\x31\xf8\xea\x05\xff\xc6\xd3\xfe\x22\xae\x74\ \xf8\xcf\xa3\x43\x79\xef\x50\x3b\x00\x00\x97\x01\x28\x64\x5c\x12\ \x20\xda\x52\x10\x45\x80\x52\x0a\xe7\x7c\xe3\x22\x6c\x9b\xc9\x94\ \xf5\xba\x54\x7e\x09\xa5\x9e\x1b\xea\x7b\x87\x53\x00\x70\x19\x80\ \x44\x70\x49\x80\x68\x73\xe5\x2e\x02\x4e\x3c\xed\x74\x4c\x9d\xce\ \x43\x5f\x2b\x81\xa1\xf5\x4f\x86\xfa\xde\x21\x17\x00\x39\x33\xf3\ \x3e\x80\x01\x9f\x39\x4c\x54\x4e\x5c\x12\x20\xda\x5c\xb9\x8a\x80\ \xd9\x47\x1c\x85\x39\xc7\x1c\x5f\x86\x44\x14\xb4\x84\xd6\xeb\xf3\ \x59\xf3\xd9\xa1\xbe\x7f\x38\x1d\x00\x80\xcb\x00\x24\x88\x4b\x02\ \x44\x9b\x1b\x6e\x11\xb0\xd7\xbe\xfb\xe3\xe4\x2f\x7f\xa5\x8c\x89\ \x28\x48\x49\xad\x9f\x1e\xce\xfb\x87\x5b\x00\xdc\x09\xa0\x73\x98\ \xd7\x20\x1a\x16\x2e\x09\x10\x6d\x32\xd4\x22\x60\x5a\x43\x1e\x67\ \x5f\x70\x21\x37\xfd\x55\x10\xad\xd4\xb7\x87\xf5\xfe\xe1\xbc\x39\ \x67\x66\x3e\x02\xf0\xd0\x70\xae\x41\x54\x0e\x5c\x12\x20\xda\x64\ \xb0\x45\xc0\x0e\xb9\x9d\x70\xc1\xa5\x97\x23\x91\x18\xec\x03\x62\ \x49\x4a\x4a\xeb\xe5\xf9\xac\xb9\x78\x38\xd7\x18\x6e\x07\x00\x00\ \x06\xf5\xf4\x21\xa2\xa0\x70\x49\x80\x68\x93\x81\x16\x01\xe3\xc6\ \x67\x71\xd1\xb7\xbf\x83\x9a\xda\xda\x10\x52\x51\xb9\x24\xb4\xbe\ \x7e\xb8\xd7\x28\x47\x01\xf0\x17\xf0\x09\x81\x14\x21\x5c\x12\x20\ \x2a\xea\xaf\x08\xc8\x8c\x1a\x85\x8b\xaf\xf8\x1e\x32\xa3\x46\x87\ \x98\x8a\x86\xcb\x50\xaa\xa0\x95\x1a\xd2\xe1\x3f\xdd\x0d\xbb\x00\ \xc8\x99\x19\x1f\xc0\xad\xc3\xbd\x0e\x51\x39\x71\x49\x80\xa8\x68\ \x6b\x45\x40\x4d\x6d\x2d\x2e\xfa\xf6\x77\x31\x6e\x7c\x56\x20\x15\ \x0d\x47\x52\xeb\xb9\x0d\x59\xd3\x1b\xee\x75\xca\xd1\x01\x00\x80\ \xdb\x00\x14\xca\x74\x2d\xa2\xb2\xe0\x92\x00\x51\x51\xcf\x22\x20\ \x91\x48\xe0\x82\x4b\x2f\xc7\x0e\xb9\x9d\x04\x53\xd1\x50\x19\x5a\ \xff\x7b\x39\xae\x53\x96\x02\x20\x67\x66\x9a\x00\x0c\xe9\x28\x42\ \xa2\xa0\x71\x49\x80\x68\x53\x11\xa0\x94\xc2\x59\xe7\x7f\x13\xd3\ \x1a\xf2\xd2\x91\x68\x08\x52\x5a\x37\xe7\xb3\xe6\xfc\x72\x5c\x4b\ \xf9\xbe\x5f\x8e\xeb\xc0\xb2\x9d\x23\xc0\x22\x80\x22\xac\xbd\xa3\ \x1d\xb7\xdf\x71\x1b\x9e\x7b\x7e\xc8\xe7\x66\x54\x9d\xb5\x6b\xd6\ \x48\x47\x18\xb4\x5b\xef\xfd\x93\x74\x84\x8a\x66\xbd\xf7\x2e\x72\ \x9f\xde\x59\x3a\x06\x0d\xd1\x88\x44\xe2\xca\x19\xf5\x75\xdf\x2f\ \xc7\xb5\xca\xb5\x04\x00\x00\x4f\x00\xf8\xa0\x8c\xd7\x23\x2a\x2b\ \x2e\x09\x10\x81\x93\x7f\x05\xd3\x4a\xb9\x5a\xa9\x1f\x97\xed\x7a\ \xe5\xba\x50\xce\xcc\x78\xe0\x66\x40\xaa\x00\x5c\x12\x20\xa2\x4a\ \x94\xd2\xfa\xf9\x86\xac\x59\xb6\xfd\x76\xe5\xec\x00\x00\xc5\xcd\ \x80\xc3\xde\x99\x48\x14\x34\xde\x25\x40\x44\x95\xc6\xd0\xfa\x5b\ \xe5\xbc\x5e\x59\x0b\x80\x9c\x99\xf9\x00\xc0\x9f\xcb\x79\x4d\xa2\ \xa0\x70\x49\x80\x88\x2a\x45\x69\xf3\xdf\x2b\xe5\xbc\x66\xb9\x3b\ \x00\x00\xf0\xcb\x00\xae\x49\x14\x18\x2e\x09\x10\x51\xd4\x25\xb4\ \xfe\x51\xb9\xaf\x59\xf6\x02\x20\x67\x66\x9e\x07\xf0\x6a\xb9\xaf\ \x4b\x14\x24\x2e\x09\x10\x51\x54\x25\xb4\x5e\x3f\xa3\xbe\xee\x86\ \x72\x5f\x37\x88\x0e\x00\xc0\x2e\x00\x55\x20\x2e\x09\x10\x51\x14\ \xa5\xb4\x0e\xe4\x99\x3b\x41\x15\x00\x7f\x02\xf0\x7e\x40\xd7\x26\ \x0a\x14\x97\x04\x88\x28\x2a\x0c\xa5\x3a\xb5\x52\x65\xdd\xfc\xd7\ \x25\x90\x02\x20\x67\x66\x5c\x00\x57\x07\x71\x6d\xa2\x30\x70\x49\ \x80\x88\xa2\x20\x65\x18\x0f\x36\x64\xcd\x8e\x20\xae\x1d\x54\x07\ \x00\x28\xde\x12\xb8\x2a\xc0\xeb\x13\x05\x8a\x4b\x02\x44\x24\x49\ \x2b\xe5\x1b\x4a\x9d\x1f\xd8\xf5\x83\xba\x70\xce\xcc\x6c\x00\xf0\ \x9b\xa0\xae\x4f\x14\x16\x2e\x09\x10\x91\x84\x94\xd6\x2f\x34\x64\ \xcd\x96\xa0\xae\x1f\x64\x07\x00\x00\xae\x07\xd0\x1e\xf0\x18\x44\ \x81\xe3\x92\x00\x11\x85\x49\x01\x30\xb4\x3e\x2f\xc8\x31\x02\x2d\ \x00\x72\x66\x66\x25\x80\xff\x09\x72\x0c\xa2\xb0\x70\x49\x80\x88\ \xc2\x92\x32\x8c\x25\xf9\xac\xb9\x28\xc8\x31\x82\xee\x00\x00\xc0\ \x55\x00\xca\xf3\xc8\x41\xa2\x08\xe0\x92\x00\x11\x05\x2d\xa1\xf5\ \xa5\x41\x8f\x11\x78\x01\x90\x33\x33\x4b\x00\x3c\x12\xf4\x38\x44\ \x61\xe2\x92\x00\x11\x05\xa5\x74\xec\xef\x63\x41\x8f\x13\x46\x07\ \x00\x00\xae\x04\xbb\x00\x54\x65\xb8\x24\x40\x44\x41\x48\x6a\x7d\ \x49\x18\xe3\x84\x52\x00\xe4\xcc\xcc\x3c\x14\x0f\x07\x22\xaa\x3a\ \x5c\x12\x20\xa2\x72\x49\x69\xfd\x61\xbe\xbe\xee\xee\x30\xc6\x0a\ \xab\x03\x00\x00\xff\x09\x3e\x2a\x98\xaa\x14\x97\x04\x88\xa8\x1c\ \x92\x86\x71\x41\x58\x63\x85\x56\x00\xe4\xcc\xcc\x9b\x00\x42\xa9\ \x6a\x88\x24\x70\x49\x80\x88\x86\x23\x65\x18\xcb\xf2\x59\xf3\xa1\ \xb0\xc6\x0b\xb3\x03\x00\x14\xf7\x02\x14\x42\x1e\x93\x28\x54\x5c\ \x12\x20\xa2\xa1\x48\x6a\xfd\xd5\x30\xc7\x0b\xb5\x00\xc8\x99\x99\ \x77\x01\xfc\x2e\xcc\x31\x89\x24\x70\x49\x80\x88\x06\x23\x6d\x18\ \x4b\xf3\x59\xf3\xe9\x30\xc7\x0c\xbb\x03\x00\x00\x3f\x04\x10\xc8\ \x83\x0d\x88\xa2\x84\x4b\x02\x44\x34\x10\x0a\x40\x42\xeb\xaf\x84\ \x3d\x6e\xe8\x05\x40\xce\xcc\xfc\x03\xc0\x2d\x61\x8f\x4b\x24\x85\ \x4b\x02\x44\xd4\x97\x94\x61\x2c\xcc\x67\xcd\x17\xc3\x1e\x57\xa2\ \x03\x00\x00\x3f\x06\xd0\x2a\x34\x36\x51\xe8\xb8\x24\x40\x44\xbd\ \x29\x7d\xfa\xff\xb2\xc4\xd8\x22\x05\x40\xce\xcc\x34\x81\x4f\x0a\ \xa4\x98\xe1\x92\x00\x11\xf5\x94\x32\x8c\xd7\xf3\x59\x73\xbe\xc4\ \xd8\x52\x1d\x00\x00\xf8\x39\x80\x4f\x04\xc7\x27\x12\xc1\x25\x01\ \x22\x02\x00\x05\xf8\x09\xad\xcf\x90\x1a\x5f\xac\x00\xc8\x99\x99\ \x8f\x51\x5c\x0a\x20\x8a\x1d\x2e\x09\x10\x51\xda\x30\x9e\xc8\x67\ \xcd\x25\x52\xe3\x4b\x76\x00\x00\xe0\x1a\x00\xef\x09\x67\x20\x12\ \xc1\x25\x01\xa2\xf8\x32\x94\xea\x4c\x68\x7d\x8a\x64\x06\xd1\x02\ \x20\x67\x66\xda\x01\x5c\x26\x99\x81\x48\x1a\x97\x04\x88\xe2\x27\ \x6d\x18\xbf\x6a\xc8\x9a\x8e\x64\x06\xe9\x0e\x00\x72\x66\xe6\x41\ \x00\xa1\x1e\x7e\x40\x14\x35\x5c\x12\x20\x8a\x8f\xa4\xd6\xab\x66\ \xd4\xd7\x7d\x5b\x3a\x87\x78\x01\x50\x72\x11\x00\x57\x3a\x04\x91\ \x24\x2e\x09\x10\xc5\x43\xca\x30\xce\x96\xce\x00\x44\xa4\x00\xc8\ \x99\x99\x45\x00\x7e\x2b\x9d\x83\x28\x0a\xb8\x24\x40\x54\xbd\xd2\ \x86\xb1\x28\x9f\x35\x1f\x94\xce\x01\x44\xa4\x00\x28\xf9\x1e\x80\ \xd5\xd2\x21\x88\xa2\x80\x4b\x02\x44\xd5\x47\x2b\xe5\x27\xb5\x3e\ \x41\x3a\x47\x97\xc8\x14\x00\x39\x33\x63\x03\xf8\x4f\xe9\x1c\x44\ \x51\xc1\x25\x01\xa2\xea\x92\x36\x8c\xfb\x1b\xb2\xe6\x3b\xd2\x39\ \xba\x44\xa6\x00\x28\xb9\x11\xc0\x62\xe9\x10\x44\x51\xc2\x25\x01\ \xa2\xca\x67\x28\xd5\x6e\x28\x25\x76\xe8\x4f\x6f\x22\x55\x00\xe4\ \xcc\x4c\x01\xc5\x0d\x81\x44\xd4\x0d\x97\x04\x88\x2a\x5b\xda\x30\ \xfe\xb3\x21\x6b\xb6\x49\xe7\xe8\x2e\x52\x05\x00\x00\xe4\xcc\xcc\ \x53\x00\x22\xb1\x41\x82\x28\x4a\xb8\x24\x40\x54\x99\x52\x5a\x37\ \xcd\xa8\xaf\xfb\xb9\x74\x8e\x9e\x22\x57\x00\x94\x5c\x00\x60\xad\ \x74\x08\xa2\x28\xe2\x92\x00\x51\xe5\x50\x4a\xf9\x49\xc3\x38\x52\ \x3a\x47\x6f\x22\x59\x00\xe4\xcc\xcc\x0a\x00\xff\x4f\x3a\x07\x51\ \x54\x71\x49\x80\xa8\x32\xd4\x18\xc6\x1f\xf2\x59\x73\x9e\x74\x8e\ \xde\x44\xb2\x00\x28\xb9\x05\xc0\xb3\xd2\x21\x88\xa2\x8a\x4b\x02\ \x44\xd1\x96\xd4\x7a\x8d\xa1\xd4\x99\xd2\x39\xb6\x26\xb2\x05\x40\ \xce\xcc\xf8\x00\xce\x01\x10\xa9\x4d\x13\x44\x51\xc3\x25\x01\xa2\ \xe8\x51\x00\x52\x86\xf1\xc5\x86\xac\xe9\x49\x67\xd9\x9a\xc8\x16\ \x00\x00\x90\x33\x33\xef\x00\xb8\x52\x3a\x07\x51\xd4\x71\x49\x80\ \x28\x5a\xd2\x86\xf1\x78\x3e\x6b\x3e\x25\x9d\xa3\x2f\x91\x2e\x00\ \x4a\x7e\x05\x20\x92\xeb\x27\x44\x51\xc2\x25\x01\xa2\x68\x48\x68\ \xdd\x9a\x88\xd0\x89\x7f\x5b\x13\xf9\x02\xa0\x74\x36\xc0\xd9\x00\ \x0a\xd2\x59\x88\x2a\x01\x97\x04\x88\x64\xa5\xb5\x3e\x3b\x6a\xf7\ \xfc\xf7\x26\xf2\x05\x00\x00\xe4\xcc\xcc\x3c\x14\x3b\x01\x44\x34\ \x00\x5c\x12\x20\x92\x51\x63\x18\x2f\xe7\xeb\xeb\xee\x96\xce\x31\ \x10\x15\x51\x00\x94\x5c\x09\x20\x32\x67\x28\x13\x45\x1d\x97\x04\ \x88\xc2\x65\x28\xd5\x99\xd0\x7a\x8e\x74\x8e\x81\xaa\x98\x02\x20\ \x67\x66\xda\x50\xbc\x2b\xc0\x97\xce\x42\x54\x49\xb8\x24\x40\x14\ \x8e\xb4\x61\x5c\xd6\x90\x35\xd7\x48\xe7\x18\xa8\x8a\x29\x00\x00\ \x20\x67\x66\x9e\x05\x70\xb5\x74\x0e\xa2\x4a\xc3\x25\x01\xa2\x60\ \xa5\x0d\xe3\xef\x33\xea\xeb\xae\x95\xce\x31\x18\x15\x55\x00\x94\ \x7c\x1b\xc0\x02\xe9\x10\x44\x95\x86\x4b\x02\x44\xc1\x48\x68\xdd\ \x9a\xd4\xfa\x60\xe9\x1c\x83\x55\x71\x05\x40\xce\xcc\x74\x00\x38\ \x0d\x40\xab\x74\x16\xa2\x4a\xc4\x25\x01\xa2\xf2\x51\x00\xd2\x86\ \x71\x72\x43\xd6\x5c\x27\x9d\x65\xb0\x2a\xae\x00\x00\x80\x9c\x99\ \x59\x0c\xe0\x32\xe9\x1c\x44\x95\xaa\x6b\x49\xa0\x7e\x22\x8b\x00\ \xa2\xe1\xa8\x49\x24\xee\xcd\x67\xcd\x47\xa4\x73\x0c\x45\x45\x16\ \x00\x00\x90\x33\x33\xbf\x01\xf0\xa8\x74\x0e\xa2\x4a\x95\x4e\xa5\ \xf1\xa3\x5f\x5d\x8b\x43\x66\x1f\x0e\xa5\x94\x74\x1c\xa2\x8a\x93\ \xd4\xfa\xa3\x99\xf5\x75\xa7\x48\xe7\x18\xaa\x8a\x2d\x00\x4a\xce\ \x02\xb0\x52\x3a\x04\x51\x25\x3b\xfd\xab\xe7\xe2\xdf\x2e\xbf\x02\ \xa9\x34\xf7\x05\x10\x0d\x94\x56\xca\x4b\x19\xc6\x21\xd2\x39\x86\ \xa3\xa2\x0b\x80\x9c\x99\xf9\x08\xc0\x57\xa4\x73\x10\x55\xba\x86\ \x59\xbb\xe3\x17\xbf\xb9\x19\xf5\xdc\x17\x40\x34\x20\x35\x86\x71\ \x65\x3e\x6b\x2e\x96\xce\x31\x1c\x15\x5d\x00\x00\x40\xce\xcc\x3c\ \x0e\xe0\x3a\xe9\x1c\x44\x95\x6e\xe4\xc8\x6d\xf1\xa3\xab\xb8\x24\ \x40\xd4\x9f\xb4\x61\x2c\x98\x51\x5f\xf7\x43\xe9\x1c\xc3\x55\xf1\ \x05\x40\xc9\xff\x03\xf0\xa6\x74\x08\xa2\x6a\xc0\x25\x01\xa2\xad\ \x33\x94\x6a\xaf\xc4\x5b\xfe\x7a\x53\x15\x05\x40\xe9\x94\xc0\xd3\ \x00\xb4\x4b\x67\x21\xaa\x06\x5c\x12\x20\xda\x92\x02\x50\x93\x48\ \x9c\x5e\x49\xa7\xfd\xf5\xa5\x2a\x0a\x00\x00\xc8\x99\x99\x46\x00\ \x17\x48\xe7\x20\xaa\x16\x5c\x12\x20\xda\x5c\x4d\x22\xf1\xbb\x7c\ \xd6\xfc\xa3\x74\x8e\x72\xa9\x9a\x02\x00\x00\x72\x66\xe6\x56\x00\ \xb7\x48\xe7\x20\xaa\x26\x5c\x12\x20\x02\xd2\x86\xb1\x64\x66\x7d\ \xdd\xbf\x4a\xe7\x28\xa7\xaa\x2a\x00\x4a\xbe\x09\xe0\x55\xe9\x10\ \x44\xd5\x84\x4b\x02\x14\x67\x09\xad\xd7\x27\xb5\xde\x5b\x3a\x47\ \xb9\x55\x5d\x01\x90\x33\x33\xed\x00\x4e\x04\xf0\xb1\x74\x16\xa2\ \x6a\xc2\x25\x01\x8a\x23\xad\x94\x97\x36\x8c\x43\x1a\xb2\xa6\x23\ \x9d\xa5\xdc\xaa\xae\x00\x00\x80\x9c\x99\x59\x0e\xe0\x64\x00\xae\ \x74\x16\xa2\x6a\xc3\x25\x01\x8a\x93\x1a\xc3\xb8\x2c\x9f\x35\x5f\ \x93\xce\x11\x84\xaa\x2c\x00\x00\x20\x67\x66\x9e\x01\xf0\x2d\xe9\ \x1c\x44\xd5\x88\x4b\x02\x14\x07\x35\x89\xc4\x9f\x67\xd4\xd7\x55\ \xed\x23\xe8\xab\xb6\x00\x00\x80\x9c\x99\xf9\x25\x80\xfb\xa4\x73\ \x10\x55\x23\x2e\x09\x50\x35\x4b\x19\xc6\xf2\x59\xf5\x75\x47\x4b\ \xe7\x08\x52\x55\x17\x00\x25\x67\x01\xa8\xe8\xe3\x1a\x89\xa2\x8c\ \x4b\x02\x54\x6d\x0c\xa5\xda\x53\x5a\xef\x21\x9d\x23\x68\x55\x5f\ \x00\xe4\xcc\xcc\x3a\x00\xc7\x03\xa8\xba\x0d\x1c\x44\x51\xc1\x25\ \x01\xaa\x16\x4a\x29\xbf\x26\x91\x38\xa6\x21\x6b\x56\xfd\x83\xe6\ \xaa\xbe\x00\x00\x80\x9c\x99\x59\x0a\xe0\x0c\x00\x9e\x74\x16\xa2\ \x6a\xc5\x25\x01\xaa\x06\xb5\x86\xf1\x93\x7c\xd6\xfc\x3f\xe9\x1c\ \x61\x88\x45\x01\x00\x00\x39\x33\xf3\x30\x80\x4b\xa5\x73\x10\x55\ \x3b\x2e\x09\x50\xa5\xaa\x4d\x24\x1e\x9c\x51\x5f\xf7\x1d\xe9\x1c\ \x61\x89\x4d\x01\x00\x00\x39\x33\x73\x0d\xf8\xe4\x40\xa2\xc0\x71\ \x49\x80\x2a\x4d\xda\x30\x16\xcc\xac\xaf\x3b\x5e\x3a\x47\x98\x62\ \x55\x00\x94\x5c\x04\xe0\x61\xe9\x10\x44\xd5\x8e\x4b\x02\x54\x29\ \x52\x5a\x37\x27\x63\xb0\xe9\xaf\xa7\xd8\x15\x00\x39\x33\xe3\x01\ \x38\x15\x40\x55\x1e\xec\x40\x14\x35\x5c\x12\xa0\x28\x4b\x68\xbd\ \x3e\x65\x18\x0d\x0d\x59\xb3\x20\x9d\x25\x6c\xb1\x2b\x00\x00\x20\ \x67\x66\x36\x00\x38\x1a\xc0\x32\xe1\x28\x44\xb1\xc0\x25\x01\x8a\ \x22\x43\xa9\x42\xda\x30\xf6\x69\xc8\x9a\x2d\xd2\x59\x24\xc4\xb2\ \x00\x00\x80\x9c\x99\x59\x09\xe0\x08\x00\x55\xf1\x5c\x67\xa2\xa8\ \xe3\x92\x00\x45\x49\xe9\x76\xbf\xe3\xf2\x59\x73\x91\x74\x16\x29\ \xb1\x2d\x00\x00\x20\x67\x66\xde\x42\xf1\x8c\x80\x0e\xe9\x2c\x44\ \x71\xc1\x25\x01\x92\xa6\x00\xd4\x1a\xc6\x25\xf9\xac\xf9\xa8\x74\ \x16\x49\xb1\x2e\x00\x00\x20\x67\x66\xe6\x02\x38\x5b\x3a\x07\x51\ \x9c\x70\x49\x80\x24\xd5\x24\x12\x37\xcd\xa8\xaf\xbb\x46\x3a\x87\ \xb4\xd8\x17\x00\x00\x90\x33\x33\x77\x02\xf8\x9e\x74\x0e\xa2\x38\ \xe1\x92\x00\x49\xa8\x31\x8c\xbf\xce\xac\xaf\x3b\x4f\x3a\x47\x14\ \xb0\x00\x28\xc9\x99\x99\x1f\x02\x88\x7d\x45\x48\x14\x36\x2e\x09\ \x50\x58\xd2\x86\x31\x6f\xd6\x84\xed\x0e\x95\xce\x11\x15\x2c\x00\ \xba\xc9\x99\x99\x8b\x01\xdc\x22\x9d\x83\x28\x6e\xb8\x24\x40\x41\ \x4b\x1b\xc6\x92\xdd\x27\x6c\xb7\xbb\x74\x8e\x28\x61\x01\xb0\xa5\ \xaf\x03\xb8\x4b\x3a\x04\x51\xdc\x70\x49\x80\x82\x92\x32\x8c\x65\ \x49\xad\x1b\xa4\x73\x44\x0d\x0b\x80\x1e\x4a\x07\x05\x9d\x09\xe0\ \x01\xe9\x2c\x44\x71\xc4\x25\x01\x2a\xa7\x94\xd6\x2b\x52\x5a\x4f\ \x8d\xe3\x41\x3f\xfd\x61\x01\xd0\x8b\x9c\x99\x29\x00\x38\x05\xc0\ \x93\xd2\x59\x88\xe2\x88\x4b\x02\x54\x0e\x49\xad\x5b\x52\x86\xb1\ \x6b\x43\xd6\x6c\x93\xce\x12\x45\x2c\x00\xb6\x22\x67\x66\x3a\x50\ \x3c\x23\xe0\x59\xe9\x2c\x44\x71\xc4\x25\x01\x1a\x8e\xa4\xd6\x6b\ \xd2\xc5\xc9\x7f\x9d\x74\x96\xa8\x62\x01\xd0\x87\x9c\x99\x69\x45\ \xf1\xc8\xe0\x57\xa4\xb3\x10\xc5\x15\x97\x04\x68\xb0\x12\x5a\xaf\ \x4b\x1b\xc6\xb4\x86\xac\xb9\x4a\x3a\x4b\x94\xb1\x00\xe8\x47\xce\ \xcc\x7c\x02\x60\x0e\x80\x05\xd2\x59\x88\xe2\x8a\x4b\x02\x34\x50\ \x09\xad\x5b\x6b\x0c\x23\xdf\x90\x35\x9b\xa4\xb3\x44\x9d\xf2\x7d\ \x5f\x3a\x43\x45\xb0\x6c\x67\x3b\x14\x97\x03\xa6\x4a\x67\x21\x2a\ \x97\xe6\x0d\x1b\xa4\x23\x10\x95\x8d\xa1\x54\x7b\x4d\x22\x31\x33\ \x9f\x35\x97\x48\x67\xa9\x04\xec\x00\x0c\x50\xce\xcc\x7c\x0c\xe0\ \x20\xb0\x13\x40\x44\x14\x39\x09\xad\x5b\x39\xf9\x0f\x0e\x0b\x80\ \x41\x28\x15\x01\x87\x80\x7b\x02\x88\x88\x22\x23\xa1\xf5\xba\x1a\ \xc3\xd8\x8d\x93\xff\xe0\xb0\x00\x18\xa4\x9c\x99\x59\x0d\x60\x36\ \x78\x77\x00\x11\x91\xb8\xa4\xd6\x6b\x6a\x0c\x63\x72\x43\xd6\xb4\ \xa4\xb3\x54\x1a\x16\x00\x43\xd0\x6d\x63\x20\xcf\x09\x20\x22\x12\ \x92\xd4\xba\x25\x6d\x18\x9f\xe6\x86\xbf\xa1\x61\x01\x30\x44\xa5\ \x5b\x04\x8f\x01\x4f\x0c\x24\x22\x0a\x5d\x4a\xeb\x15\x69\xc3\xc8\ \xf1\x56\xbf\xa1\x63\x01\x30\x0c\xa5\xc3\x82\xbe\x08\x3e\x3b\x80\ \x88\x28\x34\x29\xc3\x58\x96\x2a\x7e\xf2\xe7\x21\x3f\xc3\xc0\x02\ \x60\x98\x4a\xc7\x06\x9f\x01\x3e\x45\x90\x88\x28\x70\x69\xc3\x58\ \x92\xd2\x7a\x17\x1e\xef\x3b\x7c\x3c\x07\xa0\x8c\x2c\xdb\xb9\x1a\ \xc0\x45\xd2\x39\x88\x06\x8a\xe7\x00\x50\x25\x49\x1b\xc6\x3c\x3e\ \xd2\xb7\x7c\xd8\x01\x28\xa3\x9c\x99\xb9\x18\xc0\xf7\xa4\x73\x10\ \x11\x55\x9b\x1a\xc3\xf8\x2b\x27\xff\xf2\x62\x01\x50\x66\x39\x33\ \xf3\x43\x14\x97\x04\x3a\xa4\xb3\x10\x11\x55\x3a\x05\xa0\x36\x91\ \xb8\x69\xd6\x84\xed\x0e\x95\xce\x52\x6d\x58\x00\x04\x20\x67\x66\ \xee\x04\x70\x18\x80\x35\xd2\x59\x88\x88\x2a\x95\x52\xca\xaf\x4d\ \x24\x2e\x9e\x59\x5f\x77\x9e\x74\x96\x6a\xc4\x02\x20\x20\x39\x33\ \x33\x17\xc0\xbe\x00\x96\xc9\x26\x21\x22\xaa\x3c\x86\x52\x85\x11\ \x89\xc4\xd1\x33\xea\xeb\xae\x91\xce\x52\xad\x58\x00\x04\x28\x67\ \x66\xde\x02\xb0\x0f\x80\xd7\xa4\xb3\x10\x11\x55\x8a\x84\xd6\xeb\ \x6b\x12\x89\x59\xf9\xac\xf9\xa8\x74\x96\x6a\xc6\x02\x20\x60\x39\ \x33\xb3\x12\xc0\xc1\x00\x1e\x16\x8e\x42\x44\x14\x79\x29\xad\x9b\ \x6b\x0c\x63\xc7\x7c\xd6\x5c\x24\x9d\xa5\xda\xb1\x00\x08\x41\xce\ \xcc\x6c\x00\x70\x3c\x80\xeb\xa4\xb3\x10\x11\x45\x55\xda\x30\x16\ \xa4\x0c\x63\x52\x43\xd6\x6c\x91\xce\x12\x07\x3c\x07\x20\x64\x96\ \xed\x5c\x04\xe0\x57\x60\xf1\x45\x11\xc0\x73\x00\x28\x2a\x6a\x13\ \x89\x07\x67\xd6\xd7\x1d\x2f\x9d\x23\x4e\x38\x09\x85\x2c\x67\x66\ \xae\x41\xb1\x1b\xe0\x48\x67\x21\x22\x92\xa6\x94\xf2\x47\x24\x12\ \x3f\xe6\xe4\x1f\x3e\x76\x00\x84\x58\xb6\x33\x19\xc5\x07\x09\x4d\ \x93\xce\x42\xf1\xc5\x0e\x00\x49\x32\x94\x6a\xaf\x49\x24\x8e\xc9\ \x67\xcd\xff\x93\xce\x12\x47\xec\x00\x08\xc9\x99\x99\xa5\x00\xf6\ \x06\x70\x9f\x74\x16\x22\xa2\xb0\xa5\x0c\x63\x79\x6d\x22\xb1\x03\ \x27\x7f\x39\xec\x00\x44\x80\x65\x3b\x97\x01\xf8\x19\x00\x43\x3a\ \x0b\xc5\x0b\x3b\x00\x24\xa1\x26\x91\xf8\xf3\xac\xfa\xba\xa3\xa5\ \x73\xc4\x1d\x3b\x00\x11\x90\x33\x33\xbf\x04\x30\x1b\xc0\xc7\xd2\ \x59\x88\x88\x82\xa2\x95\xf2\x46\x24\x12\x97\x70\xf2\x8f\x06\x76\ \x00\x22\xc4\xb2\x9d\x89\x00\xee\x07\xb0\x97\x74\x16\x8a\x07\x76\ \x00\x28\x2c\x09\xad\xd7\xa7\x0d\xe3\x90\x7c\xd6\xe4\xc1\x68\x11\ \xc1\x0e\x40\x84\xe4\xcc\xcc\x72\x00\x07\x02\xb8\x45\x3a\x0b\x11\ \x51\xb9\xa4\x0d\x63\x49\x8d\x61\x4c\xe0\xe4\x1f\x2d\xec\x00\x44\ \x94\x65\x3b\x67\x03\xb8\x01\x40\x5a\x3a\x0b\x55\x2f\x76\x00\x28\ \x48\x0a\x40\x4d\x22\xf1\xbb\x99\xf5\x75\xff\x2a\x9d\x85\x57\xd2\ \x86\x14\x00\x00\x07\xbc\x49\x44\x41\x54\xb6\xc4\x0e\x40\x44\xe5\ \xcc\xcc\xad\x28\x2e\x05\xbc\x29\x9d\x85\x88\x68\xb0\x0c\xa5\xda\ \x47\x24\x93\x27\x71\xf2\x8f\x2e\x16\x00\x11\x96\x33\x33\x8d\x00\ \xf6\x00\x8f\x10\x26\xa2\x0a\x92\x36\x8c\x05\xb5\x89\x44\x36\x9f\ \x35\xff\x28\x9d\x85\xb6\x8e\x4b\x00\x15\xc2\xb2\x9d\x39\x00\x6e\ \x07\x30\x5e\x3a\x0b\x55\x0f\x2e\x01\x50\x39\x69\xa5\xbc\x1a\xc3\ \xb8\x72\x46\x7d\xdd\x0f\xa5\xb3\x50\xff\x58\x00\x54\x10\xcb\x76\ \xc6\x01\xb8\x0d\xc0\x91\xd2\x59\xa8\x3a\xb0\x00\xa0\x72\x49\x6a\ \xfd\x51\xaa\xb8\xcb\x7f\xb1\x74\x16\x1a\x18\x16\x00\x15\xc8\xb2\ \x9d\xf3\x01\xfc\x12\x40\xad\x74\x16\xaa\x6c\x2c\x00\x68\xb8\x4a\ \x1b\xfd\xee\x9d\x59\x5f\x77\x8a\x74\x16\x1a\x1c\xee\x01\xa8\x40\ \x39\x33\xf3\x1b\x14\xf7\x06\x2c\x90\xce\x42\x44\xf1\x95\xd0\xba\ \x75\x44\x32\x79\x0c\x27\xff\xca\xc4\x02\xa0\x42\xe5\xcc\xcc\x62\ \x14\xef\x12\xb8\x0a\x00\xdb\x38\x44\x14\xaa\xb4\x61\xfc\xbd\xc6\ \x30\xc6\xe5\xb3\xe6\x23\xd2\x59\x68\x68\xb8\x04\x50\x05\x2c\xdb\ \x39\x08\xc5\xc3\x83\x76\x91\xce\x42\x95\x85\x4b\x00\x34\x58\x86\ \x52\x9d\x69\xc3\xb8\x6c\x46\x7d\xdd\xb5\xd2\x59\x68\x78\xd8\x01\ \xa8\x02\x39\x33\xf3\x2c\x80\x3c\x80\x9f\x03\x28\x08\xc7\x21\xa2\ \x2a\x55\x63\x18\x2f\xd7\x26\x12\xe3\x38\xf9\x57\x07\x76\x00\xaa\ \x8c\x65\x3b\xb3\x00\xdc\x0a\x60\x96\x74\x16\x8a\x3e\x76\x00\x68\ \x20\x12\x5a\xb7\xa6\xb5\x3e\x3b\x5f\x5f\x77\xb7\x74\x16\x2a\x1f\ \x76\x00\xaa\x4c\xce\xcc\xcc\x43\x71\x6f\xc0\xb7\x00\xb4\x09\xc7\ \x21\xa2\x0a\xa6\x00\xd4\x18\xc6\xe3\x35\x86\x31\x96\x93\x7f\xf5\ \x61\x07\xa0\x8a\x59\xb6\xb3\x0b\x8a\x7b\x03\x0e\x92\xce\x42\xd1\ \xc4\x0e\x00\x6d\x4d\x52\xeb\x35\x29\xc3\xf8\x62\x3e\x6b\x3e\x25\ \x9d\x85\x82\xc1\x0e\x40\x15\xcb\x99\x99\x77\x00\x1c\x02\xe0\x6b\ \x00\xd6\x0a\xc7\x21\xa2\x0a\xa0\x94\xf2\x6b\x13\x89\x3b\xd3\x86\ \x61\x72\xf2\xaf\x6e\xec\x00\xc4\x84\x65\x3b\x13\x50\x7c\xba\xe0\ \x71\xd2\x59\x28\x3a\xd8\x01\xa0\xee\x52\x5a\x37\x25\x0d\xe3\xc8\ \x7c\xd6\x9c\x27\x9d\x85\x82\xc7\x02\x20\x66\x2c\xdb\x99\x0d\xe0\ \x1a\x00\xd3\xa4\xb3\x90\x3c\x16\x00\x04\x14\x9f\xdc\x97\x36\x8c\ \xff\x9c\x51\x5f\xf7\x73\xe9\x2c\x14\x1e\x2e\x01\xc4\x4c\xce\xcc\ \x3c\x05\x60\x06\x80\x0b\x01\xac\x16\x8e\x43\x44\x82\x74\xb1\xdd\ \xff\xc7\xda\x44\x62\x34\x27\xff\xf8\x61\x07\x20\xc6\x2c\xdb\x31\ \x01\xfc\x00\xc5\x3d\x02\x86\x70\x1c\x12\xc0\x0e\x40\x7c\xa5\x0d\ \x63\x51\x52\xeb\x13\x1a\xb2\xe6\x3b\xd2\x59\x48\x06\x0b\x00\x82\ \x65\x3b\xd3\x51\x5c\x16\x38\x54\x3a\x0b\x85\x8b\x05\x40\xfc\x24\ \xb5\x5e\x95\x32\x8c\xb3\xf3\x59\xf3\x41\xe9\x2c\x24\x8b\x05\x00\ \x6d\x64\xd9\xce\x71\x28\x3e\x65\xf0\xd3\xd2\x59\x28\x1c\x2c\x00\ \xe2\xa3\x74\x84\xef\xaf\x66\xd4\xd7\x7d\x5b\x3a\x0b\x45\x03\x0b\ \x00\xda\x8c\x65\x3b\x69\x00\x17\x01\xb8\x02\xc0\xb6\xc2\x71\x28\ \x60\x2c\x00\xaa\x9f\x02\xfc\xb4\x61\x3c\x91\xd0\xfa\x94\x86\xac\ \xe9\x48\xe7\xa1\xe8\x60\x01\x40\xbd\xb2\x6c\x67\x3b\x00\x97\x03\ \x38\x1f\x40\xad\x70\x1c\x0a\x08\x0b\x80\xea\xa5\x00\xa4\x0c\xe3\ \xf5\x84\xd6\x67\xe4\xb3\xe6\x12\xe9\x3c\x14\x3d\x2c\x00\xa8\x4f\ \x96\xed\xd4\xa3\xd8\x0d\x38\x07\x40\x4a\x38\x0e\x95\x19\x0b\x80\ \xea\x53\x9a\xf8\x17\x26\xb4\xfe\x72\x3e\x6b\xce\x97\xce\x43\xd1\ \xc5\x02\x80\x06\xc4\xb2\x9d\x1d\x00\x7c\x17\xc0\x99\x00\x12\xc2\ \x71\xa8\x4c\x58\x00\x54\x97\xb4\x61\x2c\x4d\x68\xfd\x95\x7c\xd6\ \x7c\x51\x3a\x0b\x45\x1f\x0b\x00\x1a\x14\xcb\x76\x76\x06\x70\x25\ \x80\x53\xc1\x73\x24\x2a\x1e\x0b\x80\xea\x90\x32\x8c\x65\x49\xad\ \xbf\x9a\xcf\x9a\x4f\x4b\x67\xa1\xca\xc1\x02\x80\x86\xc4\xb2\x9d\ \xdd\x00\x7c\x1f\xc0\x09\x28\x76\x1d\xa9\x02\xb1\x00\xa8\x6c\x29\ \xad\x3f\x4c\x1a\xc6\x05\xf9\xac\xf9\x90\x74\x16\xaa\x3c\x2c\x00\ \x68\x58\x2c\xdb\x99\x85\x62\x47\xe0\x68\xb0\x10\xa8\x38\x2c\x00\ \x2a\x53\x4a\xeb\xe6\xa4\xd6\x97\xf0\x11\xbd\x34\x1c\x2c\x00\xa8\ \x2c\x2c\xdb\x99\x02\xe0\x12\x00\x5f\x06\x90\x16\x8e\x43\x03\xc4\ \x02\xa0\x72\x94\x36\xf7\x2d\x49\x68\x7d\x69\x3e\x6b\x3e\x26\x9d\ \x87\x2a\x1f\x0b\x00\x2a\x2b\xcb\x76\xc6\x03\xf8\x06\x8a\xb7\x0f\ \x8e\x15\x8e\x43\xfd\x60\x01\x10\x7d\x5a\x29\x3f\xa5\xf5\x0b\x86\ \xd6\xe7\xe5\xb3\xe6\x22\xe9\x3c\x54\x3d\x58\x00\x50\x20\x2c\xdb\ \x19\x01\xe0\x2c\x00\x17\x03\xd8\x49\x38\x0e\x6d\x05\x0b\x80\xe8\ \x32\x94\xea\x4c\x19\xc6\x83\x86\x52\xe7\x37\x64\xcd\x16\xe9\x3c\ \x54\x7d\x58\x00\x50\xa0\x2c\xdb\x31\x50\xdc\x28\x78\x19\x80\xbd\ \x84\xe3\x50\x0f\x2c\x00\xa2\x27\xa1\xf5\xfa\x94\xd6\x37\x6b\xa5\ \xbe\xd5\x90\x35\x3b\xa4\xf3\x50\xf5\x62\x01\x40\xa1\xb1\x6c\xe7\ \x00\x14\x0b\x81\xa3\xc0\x5b\x08\x23\x81\x05\x40\x74\xa4\xb4\x6e\ \x4e\x68\xfd\xa3\x19\xf5\x75\x37\x48\x67\xa1\x78\x60\x01\x40\xa1\ \xb3\x6c\x67\x12\x8a\xcb\x03\x67\x03\x98\x24\x1c\x27\xd6\x58\x00\ \xc8\xd2\x4a\xb9\x29\xad\x9f\x37\xb4\xfe\x56\x3e\x6b\xbe\x22\x9d\ \x87\xe2\x85\x05\x00\x89\xb1\x6c\x47\x03\x38\x1c\xc0\xb9\x00\x8e\ \x04\x4f\x18\x0c\x1d\x0b\x00\x19\xa5\x4f\xfb\x37\x69\xa5\x7e\xdc\ \x90\x35\x0b\xd2\x79\x28\x9e\x58\x00\x50\x24\x94\x9e\x39\xd0\xd5\ \x15\xc8\x09\xc7\x89\x0d\x16\x00\xe1\x31\x94\x2a\x24\xb5\x9e\x6b\ \x68\xfd\xef\x3c\xa3\x9f\xa2\x80\x05\x00\x45\x8a\x65\x3b\x0a\xc0\ \xe7\x50\xec\x0a\x1c\x0b\x20\x29\x9b\xa8\xba\xb1\x00\x08\x5e\x4a\ \xeb\xe5\x09\xad\xaf\xd7\x4a\xfd\xa2\x21\x6b\x7a\xd2\x79\x88\xba\ \xb0\x00\xa0\xc8\xb2\x6c\x67\x1c\x80\xd3\x01\x9c\x02\x60\x4f\xe1\ \x38\x55\x89\x05\x40\x30\x12\x5a\xaf\x4f\x6a\xfd\xb4\x56\xea\xdb\ \xf9\xac\xb9\x58\x3a\x0f\x51\x6f\x58\x00\x50\x45\xb0\x6c\x67\x27\ \x00\x27\xa3\x58\x0c\xe4\x85\xe3\x54\x0d\x16\x00\xe5\x93\xd0\xba\ \x2d\xa1\xd4\x73\x86\xd6\x3f\xc9\x67\xcd\x67\xa5\xf3\x10\xf5\x87\ \x05\x00\x55\x1c\xcb\x76\xa6\x62\x53\x31\xb0\xab\x70\x9c\x8a\xc6\ \x02\x60\x78\x0c\xa5\x3a\x92\x5a\xbf\x64\x68\xfd\x8b\x7c\xd6\x7c\ \x54\x3a\x0f\xd1\x60\xb0\x00\xa0\x8a\x66\xd9\xce\x0c\x14\x0b\x81\ \x93\xc1\xcd\x83\x83\xc6\x02\x60\xf0\x4a\x9b\xf9\x5e\x37\x94\xba\ \x2a\x5f\x5f\x77\x9f\x74\x1e\xa2\xa1\x62\x01\x40\x55\xc3\xb2\x9d\ \xbd\x00\x9c\x08\x60\x0e\x80\x06\xe1\x38\x15\x81\x05\xc0\xc0\x94\ \xda\xfb\x0b\x0c\xa5\x7e\x9b\xaf\xaf\xbb\x5d\x3a\x0f\x51\x39\xb0\ \x00\xa0\xaa\x64\xd9\xce\x44\x14\xcf\x18\x38\x02\xc5\xbb\x0a\xb6\ \x95\x4d\x14\x4d\x2c\x00\x7a\xa7\x00\x3f\xa9\x75\x93\xa1\xf5\x5f\ \xb4\x52\xd7\xe7\xb3\xe6\x6b\xd2\x99\x88\xca\x8d\x05\x00\x55\x3d\ \xcb\x76\x92\x00\xf6\x43\xb1\x33\x70\x04\x80\xe9\xb2\x89\xa2\x83\ \x05\xc0\x26\x09\xa5\xda\x12\x5a\x2f\xd0\x4a\xdd\xa3\x95\xba\xb9\ \x21\x6b\xf2\x3f\x0e\x55\x35\x16\x00\x14\x3b\xa5\xee\xc0\x9c\xd2\ \x9f\x43\x01\x64\x64\x13\xc9\x89\x73\x01\xa0\x94\xf2\x93\x4a\x35\ \x19\xc5\xdb\xf5\xae\xe3\xa7\x7c\x8a\x1b\x16\x00\x14\x6b\xa5\xe3\ \x88\xf3\x00\xf6\x47\xb1\x4b\xb0\x3f\x80\x89\xa2\xa1\x42\x14\xa7\ \x02\x40\x2b\xe5\x26\xb4\xfe\xd0\x50\xea\x15\x0d\xdc\xaf\x94\xba\ \x9f\xc7\xf0\x52\x9c\xb1\x00\x20\xea\xc1\xb2\x9d\x1d\xb0\xa9\x18\ \xd8\x1f\xc0\x6e\xa8\xd2\xa7\x17\x56\x73\x01\x90\xd0\xba\xcd\x50\ \xea\x3d\xad\xd4\x5c\xad\xd4\x5d\xf9\xac\xf9\xa2\x74\x26\xa2\x28\ \x61\x01\x40\xd4\x0f\xcb\x76\x46\x01\xd8\x17\xc5\xa2\x60\x3f\x00\ \x33\x01\x8c\x16\x0d\x55\x26\xd5\x52\x00\x28\xa5\xfc\x84\x52\x6b\ \x0d\xa5\xde\xd4\x4a\x3d\xa9\x95\xba\xa3\x21\x6b\x7e\x20\x9d\x8b\ \x28\xca\x58\x00\x10\x0d\x41\xe9\x91\xc6\xf9\x1e\x7f\x26\xa3\xc2\ \x9e\x68\x58\x89\x05\x80\xa1\x54\xbb\xa1\xf5\x4a\x0d\x2c\xd1\x4a\ \xbd\xa4\x94\x7a\x9c\x8f\xd2\x25\x1a\x3c\x16\x00\x44\x65\x62\xd9\ \x4e\x1a\xc0\x34\x14\xcf\x20\xe8\x5e\x18\x8c\x97\xcc\xd5\x97\x28\ \x17\x00\x5a\x29\xcf\x50\x6a\xb5\x56\xca\xd2\x4a\xbd\xa1\x81\xb9\ \x4a\xa9\x47\x1b\xb2\xa6\x23\x9d\x8d\xa8\x1a\xb0\x00\x20\x0a\x98\ \x65\x3b\x63\x50\x3c\xa5\x30\x07\x60\xc7\x5e\xfe\x1e\x21\x14\x4d\ \xb4\x00\x50\x00\xb4\x52\xed\x5a\xa9\xb5\x5a\xa9\x95\x5a\xa9\x65\ \x0a\x78\x5b\x01\xf3\x94\x52\x2f\x35\x64\x4d\x4b\x2c\x1c\x51\x0c\ \xb0\x00\x20\x12\x56\x7a\xea\x61\xcf\xa2\x60\x02\x80\xba\xd2\x1f\ \x13\xc0\x18\x14\xe7\xcc\xb2\x0a\xaa\x00\xd0\x4a\xf9\x0a\x28\x28\ \xa5\xda\x34\xb0\x41\x29\x65\x2b\xe0\x03\xad\xd4\x12\x05\x34\x42\ \xa9\x97\xf9\x94\x3c\x22\x59\x2c\x00\x88\x2a\x80\x65\x3b\x06\x80\ \xb1\xd8\xbc\x28\xa8\xeb\xf1\xfd\x48\x00\xe9\x6e\x7f\x52\x7d\x7c\ \x9f\x02\x90\x6e\xde\xf0\xff\xdb\xab\x63\x1c\x02\xa2\x00\x8a\xa2\ \xe7\xc6\x12\x34\x36\x61\xff\xab\x21\x0a\x91\x28\x24\x2a\x11\xcc\ \x8c\x42\xac\x40\x74\xff\x34\xb7\x7f\xcd\xbb\xad\x82\xcf\x61\x2f\ \x31\x63\xc1\x5c\x4d\x98\xe2\xdb\x17\x9e\xd5\x1d\xd7\xb8\x54\xe7\ \x38\xe1\x58\x1d\xb0\x8b\xfd\x76\xb3\x7e\xfc\x7f\x95\x61\x18\x7e\ \xf1\x06\x60\x00\x9c\xd2\x3b\x92\xb0\x52\x00\x00\x00\x00\x49\x45\ \x4e\x44\xae\x42\x60\x82\ \x00\x00\x12\x4c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0c\x0d\x0a\xdf\x1c\ \xa9\x06\x00\x00\x11\x1a\x49\x44\x41\x54\x78\xda\xed\xdb\x3f\xac\ \x6d\x69\x5d\x06\xe0\xdf\x08\x01\x0c\x84\x82\x84\xc4\x50\x98\x18\ \x28\x2c\x1c\xa2\xc0\x24\x12\x34\xa1\xd1\x4c\x2c\xc0\x42\x2a\x1c\ \xb4\x30\x90\x58\x38\x95\x01\x2b\xa1\xb3\x74\xe8\xb0\xbc\x74\x8c\ \x39\x51\x0b\x23\x63\x62\x48\x54\x06\x0c\x20\x99\xab\xc1\x42\x31\ \x58\x88\x19\x12\x13\x88\xc9\xc5\x40\x66\x51\x9c\x73\xef\xf7\x9d\ \x7b\xcf\x39\xdf\xfe\xb3\xd6\xfa\xfe\x3d\xcf\x6e\xc8\x0c\xc5\xda\ \x59\xfb\xbc\xf3\xad\xbd\xdf\x37\x02\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\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\x80\x31\x3d\x53\xfb\x02\x68\xc8\x33\ \xf1\x54\xed\x4b\x60\x5f\x3f\x8a\x4f\xc7\xeb\x6a\x5f\x04\x8d\xb8\ \x88\x2f\xc6\x3b\x6a\x5f\x04\x7b\x5a\x62\x89\x97\xe3\x5d\xb5\x2f\ \x83\x26\x5c\xc4\x12\xaf\xc6\x87\x6a\x5f\x06\xfb\x59\x62\x89\x25\ \xbe\x1f\x1f\xaf\x7d\x21\x34\xe0\xe2\xea\xf3\x70\x2f\xde\x5c\xfb\ \x52\xd8\xc7\xf2\xe8\xf5\x62\xbc\xad\xf6\xc5\x50\xd9\xc5\xa3\x4f\ \xc3\xb7\xe2\xbd\xb5\x2f\x86\x3d\x2c\xd9\xeb\xbb\xf1\x6c\xed\xcb\ \xa1\xaa\x8b\xec\xd3\xe0\xdb\xa1\x29\x2c\xd7\x5e\xaf\xc5\x0b\xf1\ \xc6\xda\x97\x44\x35\x17\x8f\x7d\x1e\xbe\x1c\xef\xac\x7d\x49\x6c\ \x6b\x79\xe2\x75\x3f\xde\x5d\xfb\xa2\xa8\xe4\xe2\x89\x4f\x83\x6f\ \x87\x06\xb7\xdc\xf0\x7a\x10\x9f\x8c\x9f\xaa\x7d\x61\x54\x70\x71\ \xe3\xe7\xe1\x0b\xbe\x1d\x1a\xd7\x72\xcb\xeb\x25\xbf\x07\x4f\xe8\ \xe2\x96\x4f\xc3\x77\xe2\x83\xb5\x2f\x8d\x6d\x2c\xb7\xbe\x5e\x8d\ \x0f\xd7\xbe\x38\x76\x76\x71\xeb\xa7\xe1\xb5\x78\x21\xde\x50\xfb\ \xf2\x58\xdf\x72\xe7\xeb\x5e\xbc\xa5\xf6\x05\xb2\xa3\x8b\x3b\x3f\ \x0d\xaf\xc4\xd3\xb5\x2f\x90\xb5\x2d\x85\xd7\xb7\xe3\x03\xb5\x2f\ \x91\xdd\x5c\x14\x3e\x0d\x0f\xe2\x79\x6b\x81\xb1\x94\x02\xc0\xef\ \xc1\x33\x29\x05\xc0\x12\x8b\xb5\xc0\x58\xca\x37\xdc\x5a\x60\x1e\ \x87\x04\x80\xb5\xc0\x50\x0e\x0b\x00\xbf\x07\xcf\xe1\xb0\x00\xb8\ \xfc\x76\xc8\x5a\x60\x08\x87\xde\xf0\x25\xac\x05\xc6\x77\x78\x00\ \x58\x0b\x0c\xe2\x98\x00\xb0\x16\x18\xdd\x31\x01\xe0\xdb\xa1\x21\ \x1c\x17\x00\xd6\x02\x63\x3b\x2e\x00\x96\xb0\x16\xe8\xde\xb1\x37\ \x7c\x09\x6b\x81\x71\x1d\x1f\x00\xbe\x1d\xea\xdc\x29\x01\x60\x2d\ \x30\xaa\x53\x02\x60\x09\x6b\x81\x8e\x9d\x76\xc3\x97\xb0\x16\x18\ \xd1\xa9\x01\x60\x2d\xd0\xad\xd3\x03\xc0\x5a\x60\x3c\xa7\x07\x80\ \xb5\x40\xa7\xce\x09\x80\x25\xac\x05\xc6\x72\x4e\x00\x2c\x61\x2d\ \xd0\xa1\x73\x03\xc0\x5a\x60\x24\xe7\x06\x80\xb5\x40\x77\xce\x0f\ \x00\xbf\x07\x8f\xe3\xfc\x00\x58\xc2\x5a\xa0\x2b\x6b\xdc\xf0\x25\ \xac\x05\xc6\xb0\x4e\x00\x58\x0b\x74\x64\xad\x00\xf0\x7b\xf0\x08\ \xd6\x0a\x80\x25\xac\x05\x3a\xb1\xde\x0d\x5f\xc2\x5a\xa0\x77\x6b\ \x06\x80\xb5\x40\x17\xd6\x0d\x00\x6b\x81\xbe\xad\x1b\x00\xbe\x1d\ \xea\xc0\xda\x01\x60\x2d\xd0\xb3\xb5\x03\x60\x09\x6b\x81\xc6\xad\ \x7f\xc3\x97\xb0\x16\xe8\xd5\x16\x01\xe0\xdb\xa1\xa6\x6d\x13\x00\ \xd6\x02\x7d\xda\x26\x00\x96\xb0\x16\x68\xd6\x56\x37\x7c\x09\x6b\ \x81\xfe\x6c\x17\x00\xd6\x02\x8d\xda\x32\x00\xac\x05\x7a\xb3\x65\ \x00\x58\x0b\x34\x69\xdb\x00\x58\xc2\x5a\xa0\x27\xdb\x06\xc0\x12\ \xd6\x02\xcd\xd9\x3e\x00\xac\x05\xfa\xb1\x7d\x00\x58\x0b\x34\x66\ \x8f\x00\xf0\x7b\x70\x2f\xf6\x08\x80\x25\xac\x05\x1a\xb2\xcf\x0d\ \x5f\xc2\x5a\xa0\x07\x7b\x05\x80\xb5\x40\x33\xf6\x0b\x00\xbf\x07\ \xb7\x6f\xbf\x00\x58\xc2\x5a\xa0\x09\x7b\xde\xf0\x25\xac\x05\xda\ \xb6\x6f\x00\x58\x0b\x54\xb7\x7f\x55\xe7\xb7\xe2\x5f\xad\x05\xb8\ \xf2\xf3\xf1\x15\xdf\x0e\xd5\xb5\xf7\x09\x60\x09\x6b\x81\x76\xed\ \x7d\x02\xb8\x7c\x59\x0b\x54\x54\xe3\x86\x2f\x61\x2d\xd0\xa6\x3a\ \x01\xe0\xdb\xa1\x8a\x6a\x05\x80\xb5\x40\x8b\x6a\x05\xc0\x12\xd6\ \x02\x95\xd4\xbb\xe1\x4b\x58\x0b\xb4\xa6\x66\x00\x58\x0b\x54\x50\ \xfb\xbf\xc0\xbf\x16\xdf\xb4\x16\xe0\xca\xcf\xc6\xdf\x59\x0b\xec\ \xad\xee\x09\xe0\xf2\x65\x2d\xd0\x8a\xba\x27\x80\xcb\x97\xb5\xc0\ \x8e\x6a\x9f\x00\x2e\x3d\x17\xaf\x58\x0b\x70\xe5\xe9\xf8\x27\x6b\ \x81\xbd\xb4\x11\x00\x11\x3f\x17\x5f\xf2\x7b\x30\x57\xde\x14\x7f\ \x1a\x7f\xe3\xdb\xa1\x7d\xd4\x3e\xf0\xe5\x2f\x6b\x81\xda\x5a\x78\ \x04\x78\xf8\xb2\x16\xd8\x41\x2b\x27\x80\x4b\xbf\x1c\x5f\xf7\x7b\ \x30\x57\xde\x1e\x7f\x69\x2d\xb0\xb5\xb6\x02\x20\xe2\xad\xf1\x39\ \x6b\x01\x1e\x79\x2e\xbe\x66\x2d\xb0\xa5\xd6\x02\x20\xc2\x5a\x80\ \x9c\xb5\xc0\xa6\x5a\x0c\x80\x88\x9f\x89\xbf\xb6\x16\xe0\xca\xeb\ \xe3\x8f\xe3\xef\xad\x05\xb6\xd1\x66\x00\x44\x3c\x15\x7f\x10\x5f\ \xb3\x16\xe0\xca\xfb\xe3\x1b\xbe\x1d\xda\x42\xab\x01\x10\x11\xf1\ \x0b\xf1\x55\x6b\x01\xae\xbc\x35\x3e\x67\x2d\xb0\xbe\xb6\xff\xbc\ \xde\x14\x7f\xe2\xf7\x60\x1e\xf9\x48\xfc\xb3\xb5\xc0\xba\xda\x0e\ \x80\x08\x6b\x01\x72\xd6\x02\x2b\x6b\x3f\x00\x22\xde\x1e\x7f\x61\ \x2d\xc0\x95\xcb\x6f\x87\xac\x05\x56\xd2\x43\x00\x44\x58\x0b\x90\ \xb3\x16\x58\x4d\x2f\x01\x60\x2d\x40\xce\x5a\x60\x25\xfd\x04\xc0\ \xe5\xef\xc1\xff\x60\x2d\xc0\x95\x5f\x8f\x6f\x5a\x0b\x9c\xab\xa7\ \x00\x88\xb0\x16\x20\x67\x2d\x70\xb6\xde\x02\xc0\x5a\x80\xeb\xac\ \x05\xce\xd2\x5f\x00\x44\x58\x0b\x90\xb3\x16\x38\x43\x9f\x01\x60\ \x2d\x40\xce\x5a\xe0\x64\xbd\x06\x80\xb5\x00\xd7\x59\x0b\x9c\xa4\ \xdf\x00\x88\xb0\x16\x20\x67\x2d\x70\x82\xde\xff\x78\xac\x05\xc8\ \x59\x0b\x1c\xa9\xf7\x00\x88\xb0\x16\x20\x67\x2d\x70\x94\x11\x02\ \xc0\x5a\x80\x9c\xb5\xc0\x11\xc6\x08\x80\x08\x6b\x01\x72\xd6\x02\ \x07\x1a\x27\x00\xac\x05\xc8\x59\x0b\x1c\x64\xa4\x00\xb0\x16\xe0\ \x3a\x6b\x81\xa2\xb1\x02\x20\xc2\x5a\x80\x9c\xb5\x40\xc1\x78\x01\ \x60\x2d\xc0\x75\xd6\x02\x77\x18\x31\x00\x22\xac\x05\xc8\x59\x0b\ \xdc\x6a\xd4\x00\xb0\x16\x20\x67\x2d\x70\x8b\x71\x03\xc0\x5a\x80\ \xeb\xac\x05\x6e\x30\x72\x00\x44\x58\x0b\x90\xb3\x16\x78\xc2\xf8\ \x7f\x1a\xd6\x02\xe4\xac\x05\xae\x19\x3f\x00\x22\xac\x05\xc8\x59\ \x0b\x64\xe6\x08\x00\x6b\x01\x72\xd6\x02\x8f\xcc\x12\x00\x11\xd6\ \x02\xe4\x9e\x8e\xaf\x5a\x0b\xcc\x15\x00\xd6\x02\xe4\x7e\xda\x5a\ \x60\xb6\x00\xb0\x16\xe0\xba\xe9\xd7\x02\xb3\x05\x40\x84\xb5\x00\ \xb9\xc9\xd7\x02\x33\x06\x80\xb5\x00\xd7\x4d\xbc\x16\x98\x33\x00\ \x22\xac\x05\xc8\x4d\xbb\x16\x98\x37\x00\xac\x05\xc8\x4d\xba\x16\ \x98\x39\x00\xac\x05\xb8\x6e\xc2\xb5\xc0\xdc\x01\x10\x61\x2d\x40\ \x6e\xba\xb5\x80\x0f\xbe\xb5\x00\xd7\x4d\xb5\x16\x10\x00\x97\xac\ \x05\x48\x26\x5a\x0b\x08\x80\x87\xac\x05\x48\xa6\x59\x0b\x08\x80\ \x9c\xb5\x00\xc9\x14\x6b\x01\x01\x70\x9d\xb5\x00\xc9\x04\x6b\x01\ \x01\xf0\x38\x6b\x01\x72\x83\xaf\x05\x04\xc0\x4d\xac\x05\x48\x86\ \x5e\x0b\x08\x80\x9b\x59\x0b\x90\x1b\x76\x2d\x20\x00\x6e\x67\x2d\ \x40\x32\xe8\x5a\x40\x00\xdc\xc5\x5a\x80\x64\xc8\xb5\x80\x00\xb8\ \x9b\xb5\x00\xb9\xe1\xd6\x02\x02\xa0\xcc\x5a\x80\x64\xb0\xb5\x80\ \x8f\xf5\x21\xac\x05\xc8\x0d\xb4\x16\x10\x00\x87\xb2\x16\x20\x19\ \x66\x2d\x20\x00\x0e\x67\x2d\x40\x32\xc8\x5a\x40\x00\x1c\xc7\x5a\ \x80\x64\x80\xb5\x80\x00\x38\x96\xb5\x00\x49\xf7\x6b\x01\x01\x70\ \x3c\x6b\x01\x72\x5d\xaf\x05\x04\xc0\x69\xac\x05\x48\x3a\x5e\x0b\ \x08\x80\x53\x59\x0b\x90\xeb\x74\x2d\x20\x00\xce\x61\x2d\x40\xd2\ \xe5\x5a\x40\x00\x9c\xc7\x5a\x80\xa4\xc3\xb5\x80\x00\x38\x97\xb5\ \x00\xb9\xce\xd6\x02\x02\x60\x0d\xd6\x02\x24\x5d\xad\x05\x7c\x68\ \xd7\x61\x2d\x40\xae\x9b\xb5\x80\x00\x58\x8f\xb5\x00\x49\x27\x6b\ \x01\x01\xb0\x26\x6b\x01\x92\x2e\xd6\x02\x02\x60\x6d\xd6\x02\x24\ \xcd\xaf\x05\x04\xc0\xfa\xac\x05\x48\x1a\x5f\x0b\x08\x80\x2d\x58\ \x0b\x90\x6b\x78\x2d\x20\x00\xb6\x62\x2d\x40\xd2\xec\x5a\x40\x00\ \x6c\xc7\x5a\x80\x5c\x93\x6b\x01\x01\xb0\x2d\x6b\x01\x92\x06\xd7\ \x02\x02\x60\x6b\xd6\x02\x24\xcd\xad\x05\x04\xc0\xf6\xac\x05\xc8\ \x35\xb5\x16\x10\x00\xfb\xb0\x16\x20\x69\x68\x2d\xe0\x23\xb9\x17\ \x6b\x01\x72\x8d\xac\x05\x04\xc0\x9e\xac\x05\x48\x9a\x58\x0b\x08\ \x80\x7d\x59\x0b\x90\x34\xb0\x16\x10\x00\xfb\xb3\x16\x20\xa9\xbc\ \x16\x10\x00\x35\x58\x0b\x90\x54\x5d\x0b\x08\x80\x3a\xac\x05\xc8\ \x55\x5b\x0b\x08\x80\x7a\xac\x05\x48\x2a\xad\x05\x04\x40\x4d\xd6\ \x02\xe4\x2a\xac\x05\x04\x40\x6d\xd6\x02\x24\xbb\xaf\x05\x04\x40\ \x7d\xd6\x02\x24\x3b\xaf\x05\x04\x40\x0b\xac\x05\xc8\xed\xb8\x16\ \x10\x00\xad\xb0\x16\x20\xd9\x6d\x2d\xe0\x03\xd7\x0e\x6b\x01\x72\ \xbb\xac\x05\x04\x40\x5b\xac\x05\x48\x76\x58\x0b\x08\x80\xd6\x58\ \x0b\x90\x6c\xbe\x16\x10\x00\x2d\xb2\x16\x20\xd9\x74\x2d\x20\x00\ \xda\x64\x2d\x40\xb2\xe1\x5a\x40\x00\xb4\xca\x5a\x80\xdc\x46\x6b\ \x01\x01\xd0\x32\x6b\x01\x92\x4d\xd6\x02\x02\xa0\x6d\xd6\x02\xe4\ \x56\x5f\x0b\x08\x80\xf6\x59\x0b\x90\xac\xbc\x16\x10\x00\x3d\xb0\ \x16\x20\x59\x75\x2d\x20\x00\xfa\x60\x2d\x40\x6e\xb5\xb5\x80\x00\ \xe8\x87\xb5\x00\xc9\x4a\x6b\x01\x1f\xa7\x9e\x58\x0b\x90\x5b\x61\ \x2d\x20\x00\x7a\x63\x2d\x40\x72\xf6\x5a\x40\x00\xf4\xc7\x5a\x80\ \xe4\xcc\xb5\x80\x00\xe8\x93\xb5\x00\xc9\x19\x6b\x01\x01\xd0\x2b\ \x6b\x01\x92\x93\xd7\x02\x02\xa0\x5f\xd6\x02\xe4\x4e\x5a\x0b\x08\ \x80\xbe\x59\x0b\x90\x9c\xb0\x16\x10\x00\xbd\xb3\x16\x20\x77\xe4\ \x5a\x40\x00\x8c\xc0\x5a\x80\xe4\xa8\xb5\x80\x00\x18\x83\xb5\x00\ \xc9\x11\x6b\x01\x01\x30\x0a\x6b\x01\x72\x07\xae\x05\x04\xc0\x48\ \xac\x05\x48\x0e\x5a\x0b\xf8\xb0\x8c\xc5\x5a\x80\x5c\x71\x2d\x20\ \x00\xc6\x63\x2d\x40\x52\x58\x0b\x08\x80\x11\x59\x0b\x90\xdc\xb9\ \x16\x10\x00\xa3\xb2\x16\x20\xb9\x75\x2d\x20\x00\xc6\x65\x2d\x40\ \x72\xcb\x5a\x40\x00\x8c\xcc\x5a\x80\xdc\x0d\x6b\x01\x01\x30\x3a\ \x6b\x01\x92\x27\xd6\x02\x02\x60\x7c\xd6\x02\xe4\xae\xad\x05\x04\ \xc0\x1c\xac\x05\x48\xb2\xb5\x80\x00\x98\x85\xb5\x00\xc9\xa3\xb5\ \x80\x00\x98\x87\xb5\x00\xb9\xf7\xc7\x37\xe2\x63\x02\x00\x26\x26\ \x00\xe6\xb1\xc4\x67\xe3\x7d\xf1\x4a\xed\xcb\xa0\x11\x2f\xc7\x7b\ \xe2\x9e\x00\x98\xc5\xff\xc4\x6f\xc4\xf3\xf1\xff\xb5\x2f\x83\x26\ \xfc\x38\x3e\x13\xbf\x1a\xff\x11\xf1\xfa\xda\x57\xc2\x2e\xfe\x3c\ \x3e\x11\xff\x5b\xfb\x22\x68\xc4\xbf\xc5\x6f\xc7\xd7\x2f\xff\xa7\ \x13\xc0\xf8\x7e\x10\x9f\x88\x8f\xf8\xf3\xe7\xca\xe7\xe3\x7d\x0f\ \xff\xfc\x9d\x00\xc6\xf7\x95\x78\x2e\xfe\xbd\xf6\x45\xd0\x88\xef\ \xc5\xef\xc5\x5f\xe5\xff\xc0\x09\x60\x64\x3f\x8e\xcf\xc4\xaf\xf8\ \xf3\xe7\xca\x4b\xf1\x8b\xd7\xff\xfc\x9d\x00\x46\xf6\x9f\xf1\x5c\ \xfc\x63\xed\x8b\xa0\x11\x0f\xe2\x8f\xe2\xb3\xb1\x3c\xfe\x8f\x05\ \xc0\xa8\x3e\x1f\xbf\x1f\xff\x57\xfb\x22\x68\xc4\xfd\xf8\x68\xdc\ \xbf\xe9\x5f\x78\x04\x18\xd1\xf7\xe2\x37\xe3\x63\xfe\xfc\x89\x88\ \x87\xfd\x8f\xfb\x37\xff\x4b\x27\x80\xf1\xfc\x6d\xfc\x6e\xfc\x77\ \xed\x8b\xa0\x11\xff\x15\xbf\x13\x5f\xba\xfd\x5f\x3b\x01\x8c\xe5\ \x87\xf1\xa9\x78\xd6\x9f\x3f\x57\x5e\x8c\x5f\xba\xeb\xcf\xdf\x09\ \x60\x2c\xff\x12\x1f\x55\xf5\xe5\xca\x0f\xe2\x0f\xe3\xcf\x4a\xff\ \x27\x27\x80\x51\x68\xfa\x93\x7b\x39\xde\x53\xfe\xf3\x17\x00\xa3\ \xd0\xf4\x27\x79\xd4\xf4\x2f\xf3\x08\x30\x02\x4d\x7f\x92\xac\xe9\ \x5f\xe6\x04\xd0\x3b\x4d\x7f\x72\xd7\x9a\xfe\x65\x4e\x00\x7d\xd3\ \xf4\x27\x79\xa2\xe9\x5f\xe6\x04\xd0\x2f\x4d\x7f\x72\x37\x34\xfd\ \xcb\x9c\x00\x7a\xa5\xe9\x4f\x72\x4b\xd3\xbf\x4c\x00\xf4\x49\xd3\ \x9f\xe4\xd6\xa6\x7f\x99\x47\x80\xfe\x68\xfa\x93\xdc\xd9\xf4\x2f\ \x73\x02\xe8\x8d\xa6\x3f\x49\xa1\xe9\x5f\xe6\x04\xd0\x13\x4d\x7f\ \x72\xc5\xa6\x7f\x99\x13\x40\x3f\x34\xfd\x49\x0e\x6a\xfa\x97\x39\ \x01\xf4\x41\xd3\x9f\xdc\x81\x4d\xff\x32\x01\xd0\x03\x4d\x7f\x92\ \x23\x9a\xfe\x65\x1e\x01\xda\xa7\xe9\x4f\x72\x54\xd3\xbf\xcc\x09\ \xa0\x6d\x9a\xfe\xe4\x8e\x6c\xfa\x97\x39\x01\xb4\x4c\xd3\x9f\xe4\ \x84\xa6\x7f\x99\x13\x40\xab\x34\xfd\xc9\x9d\xd4\xf4\x2f\x73\x02\ \x68\x93\xa6\x3f\xc9\xc9\x4d\xff\x32\x01\xd0\x22\x4d\x7f\x92\x33\ \x9a\xfe\x65\x1e\x01\x5a\xa3\xe9\x4f\x72\x66\xd3\xbf\xcc\x09\xa0\ \x2d\x9a\xfe\x24\x67\x37\xfd\xcb\x9c\x00\xda\xa1\xe9\x4f\x6e\x85\ \xa6\x7f\x99\x13\x40\x2b\x34\xfd\x49\x56\x6a\xfa\x97\x39\x01\xb4\ \x40\xd3\x9f\xdc\x6a\x4d\xff\x32\x01\x50\x9f\xa6\x3f\xc9\xaa\x4d\ \xff\x32\x8f\x00\xb5\x69\xfa\x93\xac\xdc\xf4\x2f\x73\x02\xa8\x49\ \xd3\x9f\xdc\xea\x4d\xff\x32\x27\x80\x7a\x34\xfd\x49\x36\x69\xfa\ \x97\x39\x01\xd4\xa1\xe9\x4f\x6e\xa3\xa6\x7f\x99\x13\x40\x0d\x9a\ \xfe\x24\x1b\x36\xfd\xcb\x04\xc0\xfe\x34\xfd\x49\x36\x6d\xfa\x97\ \x79\x04\xd8\x97\xa6\x3f\xc9\xe6\x4d\xff\x32\x27\x80\x3d\x69\xfa\ \x93\xec\xd0\xf4\x2f\x73\x02\xd8\x8b\xa6\x3f\xb9\x5d\x9a\xfe\x65\ \x4e\x00\xfb\xd0\xf4\x27\xd9\xad\xe9\x5f\xe6\x04\xb0\x3d\x4d\x7f\ \x72\x3b\x36\xfd\xcb\x04\xc0\xd6\x34\xfd\x49\x76\x6e\xfa\x97\x79\ \x04\xd8\x96\xa6\x3f\xc9\xee\x4d\xff\x32\x27\x80\xed\x68\xfa\x93\ \xab\xd0\xf4\x2f\x73\x02\xd8\x8a\xa6\x3f\x49\xa5\xa6\x7f\x99\x13\ \xc0\x16\x34\xfd\xc9\x55\x6b\xfa\x97\x39\x01\xac\x4f\xd3\x9f\xa4\ \x6a\xd3\xbf\x4c\x00\xac\x4d\xd3\x9f\xa4\x72\xd3\xbf\xcc\x23\xc0\ \x9a\x34\xfd\x49\x1a\x68\xfa\x97\x39\x01\xac\x47\xd3\x9f\xa4\x89\ \xa6\x7f\x99\x13\xc0\x3a\x34\xfd\xc9\x35\xd2\xf4\x2f\x73\x02\x58\ \x83\xa6\x3f\x49\x43\x4d\xff\x32\x27\x80\x73\x69\xfa\x93\x6b\xaa\ \xe9\x5f\x26\x00\xce\xa3\xe9\x4f\xd2\x5c\xd3\xbf\xcc\x23\xc0\x39\ \x34\xfd\x49\x1a\x6c\xfa\x97\x39\x01\x9c\x4a\xd3\x9f\x5c\x93\x4d\ \xff\x32\x27\x80\xd3\x68\xfa\x93\x34\xdb\xf4\x2f\x73\x02\x38\x9e\ \xa6\x3f\xb9\x86\x9b\xfe\x65\x4e\x00\xc7\xd2\xf4\x27\x69\xbc\xe9\ \x5f\x26\x00\x8e\xa3\xe9\x4f\xd2\x7c\xd3\xbf\xcc\x23\xc0\xe1\x34\ \xfd\x49\xba\x68\xfa\x97\x39\x01\x1c\x4a\xd3\x9f\xa4\x93\xa6\x7f\ \x99\x13\xc0\x21\x34\xfd\xc9\x75\xd3\xf4\x2f\x73\x02\x28\xd3\xf4\ \x27\xe9\xaa\xe9\x5f\xe6\x04\x70\x37\x4d\x7f\x72\x9d\x35\xfd\xcb\ \x04\xc0\x5d\x34\xfd\x49\x3a\x6c\xfa\x97\x79\x04\xb8\x9d\xa6\x3f\ \x49\x97\x4d\xff\x32\x27\x80\x9b\x69\xfa\x93\xeb\xb4\xe9\x5f\xe6\ \x04\x70\x13\x4d\x7f\x92\x8e\x9b\xfe\x65\x4e\x00\x8f\xd3\xf4\x27\ \xd7\x75\xd3\xbf\xcc\x09\xe0\x3a\x4d\x7f\x92\xee\x9b\xfe\x65\x02\ \x20\xa7\xe9\x4f\x32\x40\xd3\xbf\xcc\x23\xc0\x43\x9a\xfe\x24\x83\ \x34\xfd\xcb\x9c\x00\x2e\x69\xfa\x93\x0c\xd3\xf4\x2f\x73\x02\xd0\ \xf4\xe7\xba\x81\x9a\xfe\x65\x4e\x00\x9a\xfe\x24\x83\x35\xfd\xcb\ \xe6\x3e\x01\x68\xfa\x93\x1b\xae\xe9\x5f\x36\x73\x00\x68\xfa\x93\ \x0c\xd9\xf4\x2f\x9b\xf7\x11\x40\xd3\x9f\x64\xd0\xa6\x7f\xd9\x9c\ \x27\x00\x4d\x7f\x72\xc3\x36\xfd\xcb\x66\x3c\x01\x68\xfa\x93\x0c\ \xdd\xf4\x2f\x9b\xed\x04\xa0\xe9\x4f\x6e\xf0\xa6\x7f\xd9\x5c\x27\ \x00\x4d\x7f\x92\x09\x9a\xfe\x65\x33\x05\x80\xa6\x3f\xc9\x14\x4d\ \xff\xb2\x59\x1e\x01\x34\xfd\x49\xa6\x69\xfa\x97\xcd\x71\x02\xd0\ \xf4\x27\x99\xa8\xe9\x5f\x36\xfe\x09\x40\xd3\x9f\xdc\x54\x4d\xff\ \xb2\xd1\x4f\x00\x9a\xfe\x24\xd3\x35\xfd\xcb\x46\x3e\x01\x68\xfa\ \x93\x9b\xb0\xe9\x5f\x36\x6e\x00\x68\xfa\x93\x4c\xda\xf4\x2f\x1b\ \xf5\x11\x40\xd3\x9f\x64\xda\xa6\x7f\xd9\x88\x27\x00\x4d\x7f\x72\ \x13\x37\xfd\xcb\xc6\x3b\x01\x68\xfa\x93\x4c\xde\xf4\x2f\x1b\xeb\ \x04\xa0\xe9\x4f\x6e\xfa\xa6\x7f\xd9\x48\x27\x00\x4d\x7f\x92\x1f\ \xc6\xa7\x34\xfd\xcb\xc6\x09\x00\x4d\x7f\x12\x4d\xff\x03\x8d\xf1\ \x08\xa0\xe9\x4f\xa2\xe9\x7f\x84\x11\x4e\x00\x9a\xfe\x24\x9a\xfe\ \x47\xe9\xfd\x04\xa0\xe9\x4f\x4e\xd3\xff\x48\x7d\x9f\x00\x34\xfd\ \x49\x34\xfd\x4f\xd0\xef\x09\x40\xd3\x9f\x9c\xa6\xff\x49\x7a\x0d\ \x00\x4d\x7f\x12\x4d\xff\x93\xf5\xf9\x08\xa0\xe9\x4f\xa2\xe9\x7f\ \x86\xfe\x4e\x00\x9a\xfe\xe4\x34\xfd\xcf\xd2\xdb\x09\x40\xd3\x9f\ \x44\xd3\xff\x6c\x3d\x9d\x00\x34\xfd\xc9\x69\xfa\xaf\xa0\x9f\x13\ \x80\xa6\x3f\x89\xa6\xff\x4a\x7a\x09\x00\x4d\x7f\x12\x4d\xff\xd5\ \xf4\xf0\x08\xa0\xe9\x4f\xa2\xe9\xbf\xaa\xf6\x4f\x00\x9a\xfe\x24\ \x9a\xfe\x2b\x6b\xfb\x04\xa0\xe9\x4f\x4e\xd3\x7f\x75\x2d\x9f\x00\ \x34\xfd\x49\x34\xfd\x37\xd1\xea\x09\x40\xd3\x9f\x9c\xa6\xff\x46\ \xda\x0c\x00\x4d\x7f\x12\x4d\xff\x0d\xb5\xf8\x08\xa0\xe9\x4f\xa2\ \xe9\xbf\xa9\xd6\x4e\x00\x9a\xfe\xe4\x34\xfd\x37\xd6\xd6\x09\x40\ \xd3\x9f\x44\xd3\x7f\x07\xed\x9c\x00\x34\xfd\xc9\x69\xfa\xef\xa2\ \x95\x13\x80\xa6\x3f\x89\xa6\xff\x6e\xda\x08\x00\x4d\x7f\x12\x4d\ \xff\x1d\xd5\x7f\x04\xd0\xf4\x27\xd1\xf4\xdf\x59\xed\x13\x80\xa6\ \x3f\x89\xa6\xff\xee\x6a\x9e\x00\x34\xfd\xc9\x69\xfa\x57\xb1\x54\ \x7a\xdd\x8f\x77\xd7\x7e\xeb\x3c\xe1\xa2\xd2\xa7\xe1\xfb\xf1\xf1\ \xda\x6f\x7d\x56\x35\x6e\xf7\x6b\xf1\x42\xbc\xb1\xf6\x1b\xe7\x06\ \x75\x02\xe0\xcb\xf1\xce\xda\x6f\x7c\x5e\xfb\xdf\xee\xef\xc6\xb3\ \xb5\xdf\x34\xb7\xd8\x3f\x00\x7e\x14\x9f\x8e\xd7\xd5\x7e\xdb\x33\ \xdb\xfb\x86\xbf\x18\x6f\xab\xfd\x96\xb9\xd5\xde\x01\xf0\xad\x78\ \x6f\xed\xb7\x3c\xbb\x3d\x6f\xb7\x27\xbd\xd6\xed\x1b\x00\xf7\xe2\ \xcd\xb5\xdf\x30\xfb\xdd\xee\x97\xe3\x5d\xb5\xdf\x2c\x05\xfb\x05\ \xc0\xab\xf1\xa1\xda\x6f\x96\x88\xbd\x02\xc0\x93\x5e\x1f\xf6\x0a\ \x80\x2f\xc6\x3b\x6a\xbf\x55\x2e\xed\x71\xbb\xbf\x1d\x1f\xa8\xfd\ \x36\x39\xc8\x1e\x01\xf0\x20\x9e\x8f\xa7\x6a\xbf\x51\x1e\xda\xfe\ \x86\xdf\x8b\xb7\xd4\x7e\x93\x1c\x68\xfb\x00\x78\x25\x9e\xae\xfd\ \x26\xc9\x6d\x7b\xbb\x5f\x8d\x0f\xd7\x7e\x83\x1c\x61\xdb\x00\x78\ \x2d\x5e\x88\x37\xd4\x7e\x8b\x5c\xb7\xe5\x0d\x7f\xc9\x93\x5e\x67\ \xb6\x0c\x80\xef\xc4\x07\x6b\xbf\x3d\x9e\xb4\xd5\xed\x7e\x10\x9f\ \x6c\x60\x6b\xc8\x71\xb6\x0b\x80\x2f\xe8\x7f\xb4\x69\x9b\xdb\xad\ \xe9\xdf\xa7\x6d\x02\x40\xff\xa3\x61\xeb\xdf\x6e\x4d\xff\x7e\x6d\ \x11\x00\x9a\xfe\x4d\x5b\xfb\x76\x6b\xfa\xf7\x6c\xed\x00\xd0\xff\ \x68\xde\xba\x37\x5c\xd3\xbf\x6f\xeb\x06\x80\xa6\x7f\x07\xd6\xbb\ \xdd\x9e\xf4\xfa\xb7\x66\x00\x68\xfa\x77\x61\xad\xdb\xad\xe9\x3f\ \x82\xb5\x02\x40\xd3\xbf\x1b\x9e\xf4\x48\xd6\x09\x00\x4d\xff\x8e\ \x9c\x7f\xbb\x35\xfd\xc7\x71\x7e\x00\x68\xfa\x77\xe6\xfc\x27\x3d\ \x4d\xff\x71\x9c\x1b\x00\x9a\xfe\xdd\x39\xef\x49\x4f\xd3\x7f\x2c\ \xe7\x04\x80\xa6\x7f\x97\x4e\xbf\xe1\x9a\xfe\xe3\x39\x3d\x00\x34\ \xfd\x3b\x75\xea\x93\x9e\xa6\xff\x88\x4e\x0d\x00\x4d\xff\x6e\x9d\ \x72\xbb\x35\xfd\x47\x75\x4a\x00\xe8\x7f\x74\xed\x94\x27\x3d\x4d\ \xff\x51\x1d\x1f\x00\x9a\xfe\x9d\x3b\xee\x76\x6b\xfa\x8f\xed\xb8\ \x00\xd0\xff\x18\xc0\x31\x37\x5c\xd3\x7f\x74\xc7\x04\x80\xa6\xff\ \x10\x3c\xe9\x91\x1c\x1e\x00\x9a\xfe\x83\x38\xec\x76\x6b\xfa\xcf\ \xe1\xb0\x00\xd0\xf4\x1f\x88\x27\x3d\x92\x43\x02\x40\xd3\x7f\x28\ \xa5\xdb\xad\xe9\x3f\x93\x52\x00\x68\xfa\x0f\xa7\xf4\xa4\xa7\xe9\ \x3f\x93\xbb\x03\x40\xd3\x7f\x40\x77\x3d\xe9\x69\xfa\xcf\xe6\xf6\ \x00\xd0\xf4\x1f\xd4\x6d\x37\x5c\xd3\x7f\x46\xb7\x05\x80\xa6\xff\ \xb0\x6e\x7e\xd2\xd3\xf4\x9f\xd3\xcd\x01\xa0\xe9\x3f\xb0\x27\x6f\ \xb7\xa6\xff\xbc\x9e\x0c\x00\xfd\x8f\xc1\x3d\xf9\xa4\xa7\xe9\x3f\ \xaf\xc7\x03\x40\xd3\x7f\x78\xf9\xed\xd6\xf4\x9f\x5d\x1e\x00\xfa\ \x1f\x53\x48\x37\x5c\xd3\x9f\x14\x00\x9a\xfe\x93\xf0\xa4\x47\xf2\ \x30\x00\x34\xfd\xa7\xa1\xe9\x4f\x72\xa1\xe9\x3f\x1b\x4f\x7a\x24\ \x17\x9a\xfe\xb3\x79\xa6\xf6\x05\xd0\x90\x67\x34\xfd\x01\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\ \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\xa0\x7f\x3f\x01\ \x1d\x0e\x30\x5b\x11\x8c\xfe\xbc\x00\x00\x00\x25\x74\x45\x58\x74\ \x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x32\x30\ \x2d\x30\x32\x2d\x30\x31\x54\x31\x32\x3a\x31\x33\x3a\x31\x30\x2b\ \x30\x30\x3a\x30\x30\xcd\x00\xc1\xf2\x00\x00\x00\x25\x74\x45\x58\ \x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x32\ \x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x32\x3a\x31\x33\x3a\x31\x30\ \x2b\x30\x30\x3a\x30\x30\xbc\x5d\x79\x4e\x00\x00\x00\x19\x74\x45\ \x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\ \x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x2a\xed\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x0d\x10\x04\x34\x90\x55\ \xea\x48\x00\x00\x29\xbb\x49\x44\x41\x54\x78\xda\xed\xdd\x79\xa0\ \x55\x55\xdd\xff\xf1\xf7\x3d\xcc\x8a\x08\x22\x8a\x20\xa0\x08\xe2\ \x84\xe2\x2c\x8a\xe1\x58\xe6\xf0\xa8\xa5\xa5\x96\xe6\x90\xf6\x68\ \x96\x5a\x96\xf9\xf4\x3c\x39\x54\x4f\xf6\xf4\xab\x34\x53\x73\xc8\ \x9c\xca\x79\x2a\xa7\x14\x4d\xcd\x11\x41\x40\x1c\x51\x51\x10\xc4\ \x81\x79\xbc\x4c\xf7\xfc\xfe\xb8\x5e\xb9\xdc\xf1\xec\xb3\xd7\xda\ \xdf\xb5\xf6\xfe\xbc\xd6\x1f\xe2\xbd\xf7\xec\xf3\x5d\xeb\xec\xef\ \xf7\xac\x3d\xd7\x20\xf9\x53\x62\x14\x87\xb0\x23\xdb\xd2\x8d\x9e\ \x7c\xca\x34\x26\xf3\x08\x8f\x31\xdf\x3a\x30\x11\xf1\x6b\x7d\x7e\ \xc6\x0c\xca\x2d\xb4\xc5\x5c\xc6\x20\xeb\xf0\x44\xc4\x97\x1a\xbe\ \xcf\xdc\x16\x93\xbf\xa1\x2d\xe1\x2c\x4a\xd6\x61\x8a\x88\x7b\x1b\ \xf3\xcf\x36\x93\xbf\xa1\x3d\x42\x77\xeb\x50\x45\xc4\xad\x81\x4c\ \xa9\x28\xfd\xcb\x94\x79\x81\x0d\xac\xc3\x15\x11\x77\xfa\xf2\x7e\ \xc5\xe9\x5f\xa6\xcc\x04\x7a\x5b\x87\x2c\x22\x6e\x74\xe4\xc9\x44\ \xe9\x5f\xa6\xcc\x44\x36\xb4\x0e\x5b\x44\x5c\xf8\xef\xc4\xe9\xaf\ \x59\x80\x48\x4e\xf4\x67\x71\x55\x05\x40\xb3\x00\x91\x1c\xb8\xbc\ \xca\xf4\xd7\x2c\x40\x24\x7a\xdd\xda\x39\xf2\xaf\x59\x80\x48\x8e\ \x1d\x95\x2a\xfd\x35\x0b\x28\x38\x9d\x15\x16\xbb\x2f\xa4\x5e\xc2\ \x08\x1e\xd7\x2c\x40\x24\x4e\x2f\xa4\x9e\x01\x68\x16\x20\x12\xad\ \x19\x4e\x0a\x80\xf6\x05\x88\x44\x69\xa9\xa3\x02\xa0\x12\x20\x12\ \x21\x57\xe9\xaf\x12\x20\x12\x21\x97\x05\x40\x25\x40\x24\x32\x6e\ \x0b\x80\x4a\x80\x48\x54\x5c\x17\x00\x95\x00\x91\x88\xb8\x2f\x00\ \x2a\x01\x22\xd1\xf0\x51\x00\x54\x02\x44\x22\xe1\xa7\x00\xa8\x04\ \x88\x44\xc1\x57\x01\x50\x09\x10\x89\x80\xbf\x02\xa0\x12\x20\x12\ \x3c\x9f\x05\x40\x25\x40\x24\x70\x7e\x0b\x80\x4a\x80\x48\xd0\x7c\ \x17\x00\x95\x00\x91\x80\xf9\x2f\x00\x2a\x01\x22\xc1\xca\xa2\x00\ \xa8\x04\x88\x04\x2a\x9b\x02\xa0\x12\x20\x12\xa4\xac\x0a\x80\x4a\ \x80\x48\x80\xb2\x2b\x00\x2a\x01\x22\xc1\xc9\xb2\x00\xa8\x04\x88\ \x04\x26\xdb\x02\xa0\x12\x20\x12\x94\xac\x0b\x80\x4a\x80\x48\x40\ \xb2\x2f\x00\x2a\x01\x22\xc1\xb0\x28\x00\x2a\x01\x22\x81\xb0\x29\ \x00\x2a\x01\x22\x41\xb0\x2a\x00\x2a\x01\x22\x01\xb0\x2b\x00\x2a\ \x01\x22\xe6\x2c\x0b\x80\x4a\x80\x88\x31\xdb\x02\xa0\x12\x20\x62\ \xca\xba\x00\xa8\x04\x88\x18\xb2\x4e\x7f\x95\x00\x11\x43\xd6\xc9\ \xaf\x12\x10\xb5\x92\x75\x00\x92\x0b\x3b\x30\x46\x25\x20\x46\x2a\ \x00\xe2\x86\x4a\x40\x94\x54\x00\xc4\x15\x95\x80\x08\xa9\x00\x88\ \x3b\x2a\x01\xd1\x51\x01\x10\x97\x54\x02\x22\xa3\x02\x20\x6e\xa9\ \x04\x44\x45\x05\x40\x5c\x53\x09\x88\x88\x0a\x80\xb8\xa7\x12\x10\ \x0d\x15\x00\xf1\x41\x25\x20\x12\x2a\x00\xe2\x87\x4a\x40\x14\x54\ \x00\xc4\x17\x95\x80\x08\xa8\x00\x88\x3f\x2a\x01\xc1\x53\x01\x10\ \x9f\x54\x02\x02\xa7\x02\x20\x7e\xa9\x04\x04\x4d\x05\x40\x7c\x53\ \x09\x08\x98\x0a\x80\xf8\xa7\x12\x10\x2c\x15\x00\xc9\x82\x4a\x40\ \xa0\x54\x00\x24\x1b\x2a\x01\x41\xaa\xb1\x0e\xa0\xb0\x7a\xb1\x09\ \x1b\xd3\x87\x0d\xe8\xc5\x06\xf4\xa2\x07\xbd\xe8\xc2\x3a\xf4\xa0\ \x0b\xeb\x7d\xfe\x37\xf9\x32\x91\x03\x98\x63\x1d\x84\x34\xa6\x02\ \x90\x8d\x75\xd9\x8c\xcd\x18\xc4\x66\x0c\x62\x53\xfa\xd1\x97\xae\ \xd6\x21\x99\x50\x09\x08\x8c\x0a\x80\x3f\x03\xd9\x86\x61\x0c\x63\ \x18\x5b\xb2\xa9\x75\x30\xc1\x50\x09\x08\x8a\x0a\x80\x5b\x5d\xd9\ \x81\x1d\xd8\x9e\xe1\x6c\x4f\x4f\xeb\x60\x02\xa5\x12\x10\x10\x15\ \x00\x17\x3a\xb0\x0d\xbb\xb2\x2b\xbb\x31\x9c\x4e\xd6\xc1\x44\x40\ \x25\x20\x18\x2a\x00\x69\x74\x60\x2b\xf6\xe2\x00\xf6\x67\x03\xeb\ \x50\x22\x33\x89\x03\x98\x6d\x1d\x84\xa8\x00\x54\xa7\xc4\xd6\x4a\ \xfc\x94\x54\x02\x82\xa0\x02\x90\xcc\x30\x0e\x61\x1f\xf6\xd6\xf6\ \xbd\x03\xda\x10\x08\x80\x0a\x40\x65\x4a\xec\xc8\x61\x1c\xcd\x36\ \xd6\x81\xe4\x8a\x66\x01\xe6\x54\x00\xda\xd3\x95\x51\x1c\xc6\x51\ \xf4\xb3\x0e\x24\x97\x54\x02\x8c\xa9\x00\xb4\xae\x37\x87\xf1\x1f\ \x7c\x89\x75\xac\x03\xc9\x35\x6d\x08\x98\x52\x01\x68\x49\x67\xbe\ \xc4\xf1\x1c\x4e\x67\xeb\x40\x0a\x41\xb3\x00\x43\x2a\x00\x4d\x6d\ \xcb\xf1\x9c\xc4\x46\xd6\x61\x14\x8a\x4a\x80\x19\x15\x80\x35\xfa\ \x73\x14\x27\xb1\x83\x75\x18\x85\xa4\x12\x60\x44\x05\x00\xa0\x2b\ \x5f\xe3\x5b\xec\xa3\x8b\xa3\x0d\x69\x5f\x80\x09\x15\x80\xbe\xfc\ \x27\x67\xd0\xc7\x3a\x0c\xd1\x2c\xc0\x42\xb1\x0b\xc0\xce\x9c\xc5\ \x31\x3a\x7b\x3f\x18\x2a\x01\x99\x2b\x6a\x01\xe8\xcc\xe1\x9c\xc3\ \x48\xeb\x30\xa4\x09\x95\x80\x8c\x15\xb1\x00\x6c\xcc\x89\x7c\x8f\ \xfe\xd6\x61\x48\x8b\x54\x02\x32\x55\xb4\x02\x30\x90\x1f\x72\x5a\ \x41\xef\xc6\x13\x0b\x95\x80\x0c\x15\xa9\x00\x0c\xe2\x07\x7c\x87\ \x2e\xd6\x61\x48\xbb\xf2\x53\x02\x3a\xb3\x19\xfd\x58\xc4\x72\x3e\ \x64\xae\x75\x30\x45\xb6\x39\x57\xb3\x92\xb2\x5a\x24\x6d\x62\xe4\ \x77\x10\x2e\xb1\x17\x97\xf1\x36\xab\x3e\xef\x51\x1d\x6f\x70\x1d\ \x87\xd3\xd1\x3a\xb4\xe2\x19\xac\xe4\x8f\xb0\xc5\x5b\x02\x6a\x38\ \x8e\x77\x5b\xed\xd7\x74\x4e\xa3\x83\x75\x88\xc5\xb1\x0d\x7f\x63\ \xb5\xf9\xca\xac\x56\x4d\x9b\x40\x6f\xeb\xd5\xa7\x0a\x3b\xf2\x52\ \xbb\x3d\x7b\x81\xa1\xd6\x61\x16\x41\x6f\x2e\xd3\x37\x7f\xd4\x2d\ \xbe\x59\xc0\x51\x2c\xa9\xa8\x67\x73\xd9\xdf\x3a\xd4\x7c\xeb\xcc\ \x59\xcc\x37\x5f\x81\xd5\x8a\x55\x02\xce\xa7\xae\xe2\x9e\xd5\x72\ \xa4\x75\xb8\x79\x55\xc3\xd1\x4c\x35\x5f\x75\xd5\x8a\x56\x02\x2e\ \x4c\xd8\xb3\x55\x9c\x6c\x1d\x72\x1e\xed\xce\x33\xe6\x2b\xad\x5a\ \xf1\x4a\x40\xd2\xf4\x2f\x53\xa6\x8e\x1f\x58\x87\x9d\x2f\x03\xb9\ \x29\xc1\x24\x4c\x2d\x96\x16\x7e\x09\xa8\x26\xfd\xeb\xdb\x25\xd6\ \xa1\xe7\x45\x57\x2e\x66\xb9\xf9\xaa\xaa\xe6\xa7\x85\x7d\x44\xa0\ \xfa\xf4\x2f\x53\xe6\x72\x5d\x86\x9e\xde\xde\xbc\x6e\xbe\x92\xaa\ \xf9\x6c\xe1\xce\x02\xd2\xa5\x7f\x99\x32\xd7\xa9\x04\xa4\xd1\x93\ \xab\x35\xf1\x2f\x40\x0b\xb3\x04\xa4\x4f\xff\x32\x65\xfe\xa2\x12\ \x50\xad\xa3\xf9\xd8\x7c\xd5\x54\xcb\xa6\x85\x57\x02\xdc\xa4\x7f\ \x99\x32\x7f\x56\x09\x48\x6e\x30\x8f\x98\xaf\x94\x6a\x59\xb6\xb0\ \x4a\x80\xbb\xf4\x2f\x53\xe6\xda\x42\x5d\x9a\x97\x5a\x47\xce\xab\ \xf0\xac\x2b\xb5\x3c\xb5\x70\x76\x07\xba\x4d\xff\x32\x65\x2e\xb3\ \xee\x52\x3c\x36\xd3\xd1\xfe\xc2\xb6\x30\x66\x01\xee\xd3\xbf\x4c\ \x99\xdf\x5b\x77\x2b\x0e\xdf\x66\x91\xf9\x6a\xa8\x66\xd7\xec\x67\ \x01\x7e\xd2\xbf\x8c\xce\x0b\x68\x57\x4f\x6e\x35\x5f\x01\xd5\xac\ \xdb\x04\xd3\xe7\x33\xfb\x4b\xff\x32\x65\x7e\x62\x9d\x62\x21\x3b\ \x80\x19\xe6\x2b\x9f\x5a\x08\xed\x01\xb3\xbd\xe6\x7e\xd3\xbf\x4c\ \x9d\xae\x11\x68\x59\x57\x2e\xd5\xf1\x7e\xb5\xcf\xdb\xf7\x4d\xd6\ \x42\xdf\xe9\x5f\xa6\xcc\x2a\x8e\xb0\x4e\xb6\xf0\x6c\xcf\x64\xf3\ \x55\x4e\x2d\xa4\xb6\x80\xbe\x99\xaf\x85\x59\xa4\x7f\x99\x32\x4b\ \xd9\x2b\x9b\x0e\xc5\x72\xf2\xc1\xa9\x8c\x65\x3b\xeb\x20\x24\x28\ \x3d\x32\xbf\x96\xee\x42\x2e\xc8\xe8\x9d\xba\x71\x3f\x5b\x67\xf1\ \x46\x31\x9c\x7a\xd0\x85\xcb\x39\xd5\x3a\x08\x09\xd0\x3c\x36\x61\ \x79\x66\xef\x96\x5d\xfa\xd7\x9b\xc1\x9e\x7c\xe0\xfb\x4d\xc2\x9f\ \x01\x0c\xe2\x19\xa5\xbf\xb4\xa8\x17\x5f\xca\xec\xbd\xb2\x4e\x7f\ \xd8\x94\x07\xe8\xe1\xfb\x4d\x42\x2f\x00\x07\x32\x8e\x5d\xac\x83\ \x90\x60\x65\x75\x67\xbd\xec\xd3\x1f\x60\x7b\x6e\xf7\x7d\x07\xe1\ \x90\x6f\x50\x5c\xc3\x79\x5c\x4f\x77\xeb\x30\x24\x60\x2b\xf9\x4b\ \x06\xef\x62\x93\xfe\x00\x43\xe8\xca\x18\xa3\xf7\x36\xd6\x83\x7b\ \xcd\xf7\x33\xab\x85\xde\x66\x65\xb0\x26\x66\xb5\xe7\xbf\xb5\x76\ \x8a\xcf\xce\x85\xba\x13\x70\x1b\xee\x61\x98\x75\x10\x12\xbc\x5a\ \xba\x79\x7e\x07\xbb\x6f\xff\x06\x2b\x38\x90\xa7\x7d\x2d\x3c\xcc\ \x7d\x00\xfb\xf1\xac\xd2\x5f\x2a\x50\xf6\xbc\x7c\xfb\xf4\x87\xce\ \xdc\xc1\x00\x5f\x0b\x0f\xb1\x00\x1c\xcf\xc3\xa6\x67\x7a\x4b\x3c\ \x16\x78\x5d\x7a\x08\xe9\x0f\xb0\x31\x7f\x67\x5d\x3f\x8b\x0e\xaf\ \x00\x9c\xc5\x8d\x74\xb6\x0e\x42\x22\xf1\x8e\xc7\x65\x87\x92\xfe\ \x00\x23\xf8\xb3\x9f\x05\x87\x55\x00\x3a\xf1\x67\x2e\x0d\x76\xbf\ \x84\x84\x67\x82\xb7\x25\x87\x94\xfe\x00\x5f\xe7\x4c\x1f\x8b\x0d\ \xa9\x00\xf4\xe0\x01\x5d\x07\x25\x89\xf8\x3a\x44\x16\x5a\xfa\x03\ \xfc\x8e\x91\xee\x17\x1a\xce\xb7\x6d\x3f\x1e\x60\x47\xeb\x20\x24\ \x2a\xf3\xe9\xeb\xe5\x54\xe0\x10\xd3\x1f\x60\x3a\x3b\x31\xc7\xed\ \x22\x43\x99\x01\x6c\xcf\x8b\x4a\x7f\x49\xe8\xba\x42\xa5\x3f\x0c\ \xe4\x06\xd7\x5f\xd9\x61\x9c\x09\xb8\x1b\x63\xd8\xd8\x3a\x08\x89\ \xcc\x42\x8e\x63\xb1\xf3\xa5\x86\x9b\xfe\x00\x5b\xb2\x98\xe7\x5c\ \x2e\x30\x84\x19\xc0\x28\x1e\xa3\x97\x75\x10\x12\x9d\xff\xe1\x23\ \xe7\xcb\x0c\x3b\xfd\x01\x7e\xc5\xde\x2e\x17\x67\xbf\x0f\x60\x34\ \xff\x60\x3d\xeb\x20\x24\x3a\x0f\x72\x98\xf3\xd3\x80\xc2\x4f\x7f\ \x80\x19\x6c\xcf\x3c\x57\x0b\xb3\x9e\x01\x1c\xc4\xc3\x4a\x7f\x49\ \x6c\x12\xc7\x17\x34\xfd\x61\x53\xae\x73\xb7\x30\xdb\x7d\x00\x47\ \x70\x17\x5d\x4d\x23\x90\x18\x4d\x66\x7f\xe6\x3a\x5e\x66\x2c\xe9\ \x0f\xb0\x35\x6f\xf1\xaa\x9b\x45\x59\x6e\x02\x7c\x8d\x5b\xe8\x64\ \xf8\xfe\x12\xa7\x37\xd8\xcf\xf9\xd6\x7f\x4c\xe9\x0f\x30\x9f\xed\ \xdd\xdc\x2d\xc8\x6e\x13\xe0\x38\xfe\xaa\xf4\x97\xc4\x94\xfe\x00\ \x3d\xb9\xde\xcd\x97\xb7\xd5\x26\xc0\x89\xdc\x10\xc8\x21\x48\x89\ \xc9\x64\xf6\xe5\x13\xc7\xcb\x8c\x2f\xfd\x01\x06\x33\x9b\xb1\xe9\ \x17\x63\xb3\x09\x70\x38\x77\xd1\xd1\xe4\x9d\x25\x66\xfa\xf6\x6f\ \xac\x96\x5d\x78\x2d\xed\x42\x2c\x0a\xc0\x7e\x3c\xa8\x5d\x7f\x92\ \x98\xd2\xbf\xa9\xb1\xec\xc9\xea\x74\x8b\xc8\x7e\x1a\xbe\x3b\x0f\ \xb3\x4e\xe6\xef\x2a\xb1\x53\xfa\x37\xd7\x9f\x79\xbc\x90\x6e\x11\ \x59\xcf\x00\xb6\xe3\x29\x36\xc8\xf8\x3d\x25\x7e\x4a\xff\x96\x2d\ \x65\x3b\xde\x4b\xb3\x80\x6c\x8f\x02\x6c\xc1\xa3\x4a\x7f\x49\x4c\ \xe9\xdf\x9a\x75\xb8\x22\xdd\x02\xb2\xdc\x04\xe8\xc7\x93\xfe\xee\ \x6d\x26\xb9\xa5\xf4\x6f\xcb\x50\x5e\xe5\x8d\xea\x5f\x9e\xdd\x26\ \x40\x4f\x9e\x64\x87\xcc\xde\x4d\xf2\x42\xe9\xdf\x9e\x8f\xd8\x9a\ \xf9\xd5\xbe\x38\xab\x19\x40\x57\x1e\xd5\x13\x7e\x24\x31\x1f\xc7\ \xfd\x7f\xcc\x2f\xac\xbb\xe5\x54\x77\x7a\xf0\x50\xb5\x2f\xce\x66\ \x06\x50\xc3\xcd\x7c\x23\xb3\x01\x91\xbc\xf0\xf1\xed\xff\x55\xee\ \x0c\xe0\x1a\x58\xb7\xea\x18\xc5\xf3\xd5\xbd\x34\x9b\xa1\xb8\x80\ \x0b\xb3\x1b\x0d\xc9\x09\x1f\xe9\x3f\x80\x57\x72\x79\xcb\xf9\x89\ \xec\x4c\x5d\x35\x2f\xcc\x62\x13\xe0\x28\xae\xc8\x5d\xcd\x15\xdf\ \x7c\xa4\x3f\x5c\xc7\xce\xd6\x1d\xf3\xa2\x2f\x33\x78\xb9\x9a\x17\ \xfa\x4f\xcc\x9d\x79\x5a\x27\xfe\x48\x42\x7e\xd2\x7f\x7b\x26\xe6\ \xf6\xab\xe8\x13\x86\xb2\x30\xf9\xcb\x7c\xcf\x00\xfa\xf3\x38\xbd\ \x4d\x06\x44\xe2\xe5\x27\xfd\xe1\x92\x1c\xdf\x78\x76\x5d\x6a\x78\ \x3c\xf9\xcb\xfc\xd6\xc3\xee\x3c\xa3\x43\x7f\x92\x90\xaf\xf4\xef\ \xc6\xc7\xb9\xbe\xfb\x54\x2d\xdb\x24\x3f\x2b\xd0\xe7\x99\x80\x25\ \x6e\x51\xfa\x4b\x42\xbe\xd2\x1f\xf6\xce\x75\xfa\x43\x57\x7e\x9d\ \xfc\x45\x3e\x0b\xc0\x25\x1c\x6e\x36\x18\x12\xa7\xc9\x8c\xf6\x94\ \xfe\xf8\x78\xae\x4e\x60\x8e\x4e\x7e\xc7\x60\x7f\x05\xe0\x50\xce\ \x35\x1d\x0c\x89\xcf\x1b\x7c\x91\x4f\xbd\x2d\x7d\x4b\xeb\xee\x65\ \xe0\xf7\x49\x33\xda\x57\x01\x18\xc8\x8d\xb9\xdd\xdf\x2a\x7e\xf8\ \x9b\xfc\xd7\xeb\x6b\xdd\xc1\x0c\xec\xcc\x57\x93\xbd\xc0\x4f\x01\ \xe8\xc2\xdd\xba\xea\x4f\x12\xf1\x9d\xfe\xd0\xc5\xba\x8b\x99\xb8\ \x30\xd9\x91\x3d\x3f\x05\xe0\xb7\x3a\xef\x5f\x12\xf1\x9f\xfe\xb0\ \xcc\xba\x93\x99\xd8\x86\x63\x92\xfc\xb9\x8f\x02\xf0\x35\xbe\x6b\ \x3d\x0a\x12\x95\x2c\xd2\x1f\x66\x59\x77\x33\x23\x17\x24\xb9\xdf\ \xa6\xfb\x02\x30\x84\x6b\xad\x47\x40\xa2\x92\x4d\xfa\xc3\xeb\xd6\ \x1d\xcd\xc8\x50\x8e\xaf\xfc\x8f\x5d\x17\x80\xae\xdc\x41\x0f\xeb\ \x11\x90\x88\x64\x95\xfe\xf0\x6f\xeb\xae\x66\xe6\x02\x3a\x57\xfa\ \xa7\xae\x0b\xc0\x1f\x73\x7c\xb2\xa5\xb8\x97\x5d\xfa\xc3\x8b\x7c\ \x6c\xdd\xdd\x8c\x0c\xe2\xa4\x4a\xff\xd4\x6d\x01\xf8\x1a\xa7\x58\ \xf7\x5d\x22\xe2\xf3\xb4\x9f\xe6\x56\x71\x93\x75\x87\x33\xf3\xd3\ \x4a\x8f\x79\xb8\x3c\x56\xdf\x87\x57\xd9\xc8\xba\xe7\x12\x8d\x2c\ \xbf\xfd\xeb\xf5\x65\x2a\xdd\xac\xbb\x9d\x91\x93\xf9\x4b\x25\x7f\ \xe6\xf2\x6a\xc0\x9b\x75\xf0\x4f\x2a\x96\x7d\xfa\xc3\x62\x3a\xb2\ \x8f\x75\xc7\x33\x32\x84\xab\x2a\xf9\x33\x77\x33\x80\x93\xb8\xde\ \xba\xcf\x12\x0d\x8b\xf4\x07\xe8\xcc\x33\xec\x6a\xdd\xf9\x8c\x1c\ \xca\x83\xed\xff\x91\xab\x02\xd0\x9f\xc9\xf4\xb2\xee\xb1\x44\xc2\ \x2a\xfd\x01\xfa\xf3\x02\x9b\x5a\x0f\x40\x26\x9e\x64\xdf\xf6\xff\ \xc8\xcd\x4e\xc0\x1a\xae\x53\xfa\x4b\x85\x2c\xd3\x1f\x66\x32\x9a\ \x69\xd6\x43\x90\x89\x7d\x2a\x99\xeb\xb8\x29\x00\x67\x70\x90\x75\ \x6f\x25\x12\xb6\xe9\x0f\x30\x95\x91\x4c\xb2\x1e\x86\x4c\x54\x70\ \x3d\xae\x8b\x4d\x80\xcd\x79\x85\xee\xd6\x7d\x95\x28\xd8\xa7\x7f\ \xbd\x9e\xfc\x3d\xf9\xb5\xf3\xd1\x59\xcd\x30\xde\x6d\xfb\x4f\xd2\ \x1f\x05\x28\x71\x1f\x43\xad\x7b\x2a\x51\x08\x25\xfd\xa1\x96\xdb\ \x18\xce\x30\xeb\x30\x3c\x2b\x51\xc3\xc3\x6d\xff\x49\xfa\x19\xc0\ \x77\xf9\xa3\x75\x3f\x23\xb7\x8c\x77\x98\xc6\xa7\x7c\xcc\x27\x7c\ \xca\x27\xcc\x61\x01\x75\xd4\xb2\x8c\x72\x05\x8f\x7c\x2a\x5b\x87\ \x5f\xb1\xc9\xec\xef\xf1\x76\x1f\xc9\x75\xe0\x06\xbe\x69\x1d\x84\ \x67\x8b\xe9\xc7\xa2\xb6\xfe\x20\x6d\x01\xd8\x98\x37\x73\xf9\xa0\ \x05\xdf\x66\x31\x9e\xd7\x78\x87\x77\x78\x87\x99\xa9\x92\x38\x96\ \x02\x10\x5a\xfa\x03\x74\xe0\x7a\x4e\xb0\x0e\xc2\xb3\x53\xb9\xae\ \xad\x5f\xa7\x2d\x00\x37\xe6\x7e\x00\x5d\x9a\xcd\x58\xc6\x33\x8e\ \xf1\xcc\x74\xb6\xcc\x38\x0a\x40\x88\xe9\x0f\x45\x28\x01\xe3\xda\ \x3e\x16\x90\xae\x00\x8c\xe2\x69\xdd\xf8\xab\x02\x4b\x78\x9e\x31\ \x8c\x61\x42\x75\x8f\x6f\x6a\x53\x0c\x05\x20\x9c\x6d\xff\xe6\x3a\ \x70\x4b\xb2\x5b\x68\x44\x67\x17\xc6\xb7\xfe\xcb\x34\xe9\xdb\x91\ \x97\x19\x6e\xdd\xbb\xc0\x4d\xe2\x5e\x1e\xe5\x25\x56\x79\x7b\x87\ \xf0\x0b\x40\xa8\xdf\xfe\x0d\x3a\x71\x2f\x87\x58\x07\xe1\xd1\x35\ \x7c\xa7\xf5\x5f\xa6\x29\x00\x3f\xe0\xb7\xd6\x7d\x0b\xd8\xeb\xdc\ \xc9\xad\xbc\xe5\xfd\x7d\x42\x2f\x00\x21\x7f\xfb\x37\xe8\xc6\xc3\ \x8c\xb6\x0e\xc2\x9b\x76\x77\x04\x56\xa7\x1f\x0b\x29\xab\xb5\xd0\ \x5e\xe1\x6c\xfa\x67\xf6\xf1\x5a\xf7\xb6\xbd\xb1\xe8\x93\xd9\x48\ \xa4\xd1\x83\x49\xe6\x63\xe5\xaf\x9d\xe6\x63\xc8\x6e\x33\xef\x56\ \x78\x6d\x3e\x57\x33\x2a\xe3\x55\xd7\xba\xcf\x6d\xb5\xd7\x23\xba\ \x15\x77\x7f\xa6\x9b\x8f\x97\xaf\x36\xd1\xfd\x70\xed\x6f\xde\xa9\ \xd0\xda\xf3\x7c\xd3\xe4\x5a\x73\xeb\x7e\xb7\xde\x62\xf9\xf6\x6f\ \xb0\x63\x8e\xe7\xb4\x23\xdc\x0e\x55\x07\x5e\x33\xef\x52\x38\x6d\ \x15\x77\xb1\xa7\xd9\x6a\x6b\xdd\xfb\xd6\x5a\x6c\xe9\x0f\x70\x08\ \xab\xcd\xc7\xcd\x4f\xab\xe2\xa9\x81\x6d\x39\xd5\xbc\x43\xa1\xb4\ \x45\x5c\x6d\x7c\x42\xa9\xf5\x08\xb4\xdc\x62\x9a\xfc\x37\xf6\x53\ \xf3\x91\xf3\xd3\xa6\xbb\xbc\xf9\x5f\xd7\x1c\x6f\x2d\x25\x69\x8b\ \xb9\x8c\x8d\xad\xd7\x58\xf3\x51\x68\xa9\xc5\x9a\xfe\x50\xc3\xed\ \xe6\xa3\xe7\xa7\xb5\x72\xe9\x53\x35\x75\xe1\x6c\x06\x58\x7f\x4e\ \xe6\x56\x70\x0d\x43\x39\xab\x30\xf7\x99\x4d\x22\x86\x03\x7f\xad\ \x29\x73\x0a\xaf\x5a\x07\xe1\xc5\xb1\x2d\xff\x38\xf9\x79\x00\xbd\ \x78\xb7\xe0\x37\xff\x58\xc9\x75\xfc\xd2\xe1\xc9\xbc\xe9\x84\x76\ \x1e\x40\xe8\xa7\xfd\xb4\x6f\x4b\xc6\xb1\x9e\x75\x10\xce\xcd\xa6\ \x1f\x2b\x9b\xff\x38\xf9\x0c\xe0\xfc\x82\xa7\xff\x13\xec\xc4\x19\ \xc1\xa4\x7f\x68\xfc\x3e\xe0\x3b\x1b\x53\x38\xdb\x3a\x04\x0f\x36\ \xe4\x40\x17\x8b\xe9\xcf\x12\xf3\xad\x19\xbb\x36\x3d\xc0\x0b\x47\ \xac\xc7\xa4\x71\x8b\x77\xdb\xbf\xa9\x9b\xcc\xc7\xd2\x7d\xbb\xd9\ \xc5\xc0\x5c\x67\xde\x0d\xab\xb6\x84\xff\xa6\xab\xf5\x7a\xd9\x02\ \xeb\x71\x59\xd3\x62\x3c\xf0\xd7\x9a\xf5\x98\x6a\x3e\x9e\xae\xdb\ \xc2\xf4\xe7\xa9\x0c\x63\xa5\x79\x37\x6c\xda\x33\x6c\x69\xbd\x4e\ \xb6\xc2\x7a\x64\x1a\x5a\x7e\xbe\xfd\xeb\xed\xc5\x2a\xf3\x31\x75\ \xdd\x5a\xb8\xe4\x29\xd9\x3e\x80\x4b\x92\x3c\x78\x38\x37\x16\xf3\ \x5d\xf6\x66\x8a\x75\x18\x41\xcb\xf6\x21\x5f\x59\x78\x96\x3f\x58\ \x87\xe0\xdc\xa1\xcd\x7f\x94\xe4\x28\xc0\x0e\x4c\x28\xe0\xd5\xff\ \xff\xe6\x64\xde\xb1\x0e\xa2\x0d\x21\x1c\x05\x88\xf9\xc0\x5f\xeb\ \xba\x31\x21\x67\x77\x0d\x9c\xc1\xc0\xa6\xeb\x4b\x92\x19\xc0\x79\ \x85\x4b\xff\x5a\xce\x64\x74\xd0\xe9\x1f\x82\xfc\x7d\xfb\xd7\x5b\ \xc6\x69\x41\x94\x57\x77\x36\x6d\x7e\x4d\x40\xe5\x05\x60\x30\x47\ \x5b\xc7\x9f\xb1\x29\xec\xc9\x15\x39\x5b\x05\xdc\xcb\xc3\x81\xbf\ \xd6\x3c\xcd\x8d\xd6\x21\x38\x76\x68\xf5\x2f\xfd\x93\xf9\x2e\x8c\ \x6c\xdb\x5d\x91\xdc\xec\xd4\x76\x94\xf2\xb6\xeb\xaf\xa9\xde\x7c\ \x62\xbe\x26\xba\x6c\x2f\x56\x3b\x10\x9b\xb0\xcc\x3c\xf8\xec\xda\ \x52\x4e\xb1\x5e\xf3\x2a\x66\x39\x4e\x79\x3a\xf0\xd7\x9a\x93\xcd\ \xd7\x46\x97\x6d\x75\xd3\x82\x5d\xe9\x26\xc0\xd9\x41\x1e\x03\xf7\ \xe3\x43\x46\xf3\x67\xeb\x20\x22\x90\xe7\xc9\xff\x1a\x37\x30\xce\ \x3a\x04\x87\x4a\x1c\xdc\xf4\x07\x95\x58\xbf\xad\xdb\x0a\xe6\xcc\ \x04\xf6\xe0\x25\xeb\x20\x22\x90\xcf\x3d\xff\xcd\xd5\x55\xf2\x84\ \xbd\x88\x54\x55\x00\xce\x64\x7d\xeb\xb8\x33\x72\x3b\x7b\xf1\x81\ \x75\x10\x11\x28\x4a\xfa\x03\x3c\xc5\x3d\xd6\x21\x38\xb4\x4f\xf2\ \xeb\x7f\xba\xf1\xb1\xf9\xb6\x4b\x16\xad\x8e\x9f\x58\x7f\x3a\x55\ \xb0\x18\xa9\x22\x6c\xfb\x37\x36\x24\x57\x67\xc0\xae\x75\x2b\xff\ \x4a\xaa\xc1\x49\x6c\x64\xfd\x09\x64\x60\x15\x27\x71\x89\x75\x10\ \x51\x88\xff\x82\xdf\xa4\xde\xe1\x06\xeb\x10\x1c\x4a\x7c\x03\xf4\ \x57\xcd\x6b\x96\xff\x56\xcb\x57\xad\x3f\x97\x2a\x65\x3d\x52\x79\ \x3f\xf0\xd7\xb2\x81\xd4\x9a\xaf\xa3\xae\xda\x9d\x8d\x3b\xd6\xfe\ \x0c\x60\x1f\xb6\xb5\x1e\x7d\xef\x16\x73\x28\x77\x5b\x07\x11\x85\ \x22\x6d\xfb\x37\x36\xbd\xed\x47\x6c\x46\x65\x74\xb2\x33\x7a\xf3\ \x7f\xff\xff\x4f\xd8\xc9\xfa\x33\x49\x21\xcb\x91\x2a\xda\xb6\x7f\ \x63\xfd\x59\x6e\xbe\xa6\xba\x6a\xdb\xad\xe9\x56\x7b\x33\x80\x3e\ \x1c\x61\x3d\xf2\x9e\xcd\xe7\x20\x5e\xb6\x0e\x22\x0a\xc5\x38\xee\ \xdf\x9a\x99\xdc\x62\x1d\x82\x33\x8d\xf6\x02\xb4\x57\x00\x4e\xa5\ \x8b\x75\xb4\x5e\x2d\xe0\x40\xa5\x7f\x45\x8a\x3a\xf9\x5f\xe3\xff\ \x3c\x3c\xdb\xd9\x46\xc5\xbb\x01\x4b\x39\xbc\x2f\x4a\xe3\xb6\x80\ \xdd\xac\x3f\x8b\xd4\xb2\x19\xa9\x62\xee\xfa\x6b\xea\x7e\xf3\x35\ \xd6\x4d\x9b\xb5\xa6\x4b\x6d\xcf\x00\xbe\xcc\xe6\xd6\x63\xee\xd1\ \x52\x0e\x63\xac\x75\x10\x51\xd0\xb7\x7f\xbd\xdf\x59\x07\xe0\x48\ \xdf\x35\x0f\xaf\x6d\xbb\x00\xe4\xf9\x04\xe0\x95\x1c\xce\xd3\xd6\ \x41\x44\x21\xaf\xd7\xfb\x27\xf7\x14\x93\xad\x43\x70\x64\xe7\x86\ \x7f\xb4\x55\x00\x06\x34\x3d\x6f\x38\x47\xca\x9c\xc6\x18\xeb\x20\ \xa2\x50\xec\x5d\x7f\x4d\x5d\x6d\x1d\x80\x23\x15\x15\x80\xd3\xe8\ \x60\x1d\xa7\x37\x3f\xcf\xd5\xb9\x5d\xfe\xe8\xdb\x7f\x6d\x37\xb1\ \xd0\x3a\x04\x27\x76\x6e\xff\x4f\x6a\x78\xcf\x7c\x67\x85\xaf\xf6\ \xb7\x1c\xdd\xdc\x4c\xbb\xfe\xb2\x75\x8d\xf9\xda\xeb\x74\x37\x60\ \xeb\x33\x80\x91\x6c\x66\x3d\xd6\x9e\xfc\x8b\x13\xd1\x8d\xbe\xda\ \xa7\x6f\xff\x96\x38\x79\xbc\x86\xb9\xcf\x77\x03\xb6\x5e\x00\x8e\ \xb3\x8e\xd1\x93\xe9\x7c\x9d\x15\xd6\x41\x44\x40\xdb\xfe\x2d\x7b\ \x86\xa9\xd6\x21\x38\xf1\xd9\x46\x40\x6b\x05\xa0\x03\x47\x59\x47\ \xe8\x45\x2d\x47\x69\xb5\xae\x80\x0e\xfc\xb5\xa6\xcc\x5f\xad\x43\ \x70\xa2\x9d\x02\xb0\x5f\x00\x4f\xbe\xf7\xe1\x4c\xdd\xed\xa7\x02\ \x4a\xff\xb6\xe4\xe3\x94\xe0\x11\xf5\xff\x69\xad\x00\x1c\x5b\xe9\ \x72\xa2\x72\x8d\xee\xf5\x57\x01\xa5\x7f\xdb\xa6\xe4\xe2\x6c\x80\ \xcf\x1e\x79\xd2\x72\x01\xe8\x92\xcb\x4b\x80\x5e\xe6\xfb\xd6\x21\ \x44\x40\xbb\xfe\xda\x77\xaf\x75\x00\x0e\x0c\xa6\x13\xb4\x56\x00\ \x0e\xa2\x97\x75\x7c\xce\xd5\xf2\x2d\x96\x5b\x07\x11\x3c\xed\xfa\ \xab\x44\x1e\x0a\x40\xa7\xfa\xd3\xfc\x5b\x2e\x00\x79\xdc\x00\x38\ \x97\x57\xad\x43\x08\x9e\x26\xff\x95\x99\xc8\x7b\xd6\x21\x38\xb0\ \x15\xb4\x5c\x00\xd6\x49\xf3\x00\xa1\x40\x3d\xc6\x95\xd6\x21\x78\ \xb2\xcc\xd9\x92\x94\xfe\x95\x7b\xd8\x3a\x00\x07\xb6\x84\x96\x0b\ \xc0\xc1\xac\x6b\x1d\x9b\x63\x73\x72\x7c\xea\xcf\x1c\x47\xcb\xd1\ \xb6\x7f\x12\x8f\x59\x07\xe0\xc0\x30\x68\xad\x00\xe4\xcd\x19\x7c\ \x68\x1d\x82\x37\x6e\x7a\x56\xbc\x3b\xfd\xa6\xf3\x04\x2b\xad\x43\ \x48\xad\x95\x4d\x80\x1a\xbe\x64\x1d\x99\x63\x8f\x70\x87\x75\x08\ \x1e\xbd\xe0\x60\x19\xda\xf5\x97\xd4\xc2\x1c\xdc\x49\xa2\x95\x19\ \xc0\x8e\xf4\xb3\x8e\xcc\xa9\xa5\x9c\x61\x1d\x82\x57\xff\x4e\xbd\ \x04\x4d\xfe\xab\xf1\x84\x75\x00\xa9\xf5\xa1\x57\x4b\x05\xe0\x10\ \xeb\xb8\x1c\xbb\x28\x17\x7b\x6c\x5b\xf7\x20\xf3\x52\xbd\x5e\xdf\ \xfe\xd5\x79\xce\x3a\x00\x07\x06\xb6\x54\x00\x0e\xb2\x8e\xca\xa9\ \xc9\xfc\xde\x3a\x04\xcf\x96\xf1\xb7\x14\xaf\xd6\xb7\x7f\xb5\x9e\ \xcb\xc1\x2d\x42\x5b\x28\x00\xbd\xd9\xdd\x3a\x2a\x87\xca\x9c\x9e\ \x83\x9d\x35\xed\xf9\x15\x4b\xaa\x7c\xa5\x76\xfd\x55\x6f\x21\xaf\ \x5b\x87\x90\x5a\x0b\x05\xe0\x8b\xb9\xba\x0b\xd0\xdd\x3c\x6b\x1d\ \x42\x06\x66\xf2\xeb\xaa\x5e\xa7\xf4\x4f\x27\xfe\x8d\x80\x01\xcd\ \x0b\x40\x9e\x0e\x01\xae\xe4\xbf\xac\x43\xc8\xc8\xaf\x78\x2a\xf1\ \x6b\xb4\xed\x9f\xd6\x24\xeb\x00\x52\x6b\x36\x03\x28\xe5\xea\x10\ \xe0\x9f\x78\xdb\x3a\x84\x8c\xac\xe2\x18\xa6\x25\x7a\x85\xb6\xfd\ \xd3\x7b\xc5\x3a\x80\xd4\x06\x34\xfd\xc1\xee\xe6\xf7\x2a\x73\xd7\ \x16\x14\xec\x39\x76\x03\x99\x52\xf1\xd8\x8c\x65\x43\xeb\x70\x73\ \x60\x7d\xea\xcc\xd7\xf2\x74\xed\xed\xa6\x33\x80\x7d\xac\xc7\xd4\ \xa1\x5f\x17\x6c\x82\x3b\x9d\xbd\x2b\x3c\x41\xf5\x51\xf6\x63\xb6\ \x75\xb8\x39\xb0\x80\xe9\xd6\x21\xa4\xd4\xec\xa6\x3f\x7f\x37\xaf\ \x49\xae\xda\x6c\xba\x5b\x8f\xae\x81\x1a\xce\x62\x5e\x9b\xe3\xb2\ \x84\xb3\x2b\x78\x24\xbc\x54\x26\xfe\x7c\xe9\xd6\x78\x65\xa8\x61\ \x4f\xeb\x11\x75\xe6\x0f\x2c\xb6\x0e\xc1\x40\x99\xcb\xd8\x9c\x8b\ \x5b\xd9\xba\x5f\xc2\xe5\x6c\xc3\xa5\x39\x38\x7e\x1d\x8a\xf8\xf7\ \x02\x6c\xd4\xf8\xfe\xf8\x5b\xf1\x86\x75\x3c\x8e\x2c\x64\xb3\x94\ \xe7\xc7\xc5\xad\x03\x5f\xe0\xcb\x8c\x60\x3b\xba\xd2\x8b\x4f\x98\ \xce\x64\x1e\xe1\x51\xe6\x5b\x07\x96\x33\xc7\x45\x7f\x83\xd0\x3d\ \x3a\x36\xfa\x9f\x51\xd6\xd1\x38\x73\x65\xa1\xd3\x1f\x56\xf3\x2f\ \xfe\x65\x1d\x44\x01\xbc\x6f\x1d\x40\x6a\x7d\x1a\x6f\x02\xec\x65\ \x1d\x8d\x23\xb5\xfc\xc1\x3a\x04\x29\x84\x64\x87\x5e\x43\xd4\xb3\ \x71\x01\x18\x69\x1d\x8d\x23\xd7\x37\x7e\xfe\xb9\x88\x37\xb3\xa2\ \x7f\xc4\x4c\xa3\x02\xb0\x61\xfd\x2d\x82\x72\xe0\x2a\xeb\x00\xa4\ \x20\xea\x98\x61\x1d\x42\x4a\x8d\x0a\xc0\xa8\x9c\x3c\x30\xf3\x29\ \xdd\xfc\x53\x32\x13\xfb\x46\xc0\xfa\x6b\x0a\x40\x5e\x0e\x01\xea\ \xfb\x5f\xb2\x13\x7b\x01\xe8\x99\xb7\x02\xf0\x71\x2e\xee\xd9\x2e\ \xb1\x88\xfd\x7a\x8a\xf5\x1a\x0a\x40\x87\x86\x67\x85\x45\xee\xda\ \xe8\x77\xcb\x48\x4c\xe6\x5b\x07\x90\xd2\xe7\x67\x02\x0e\xcd\xc5\ \xad\xc0\xcb\xdc\x60\x1d\x82\x14\xca\x7c\xeb\x00\x52\xea\xda\x50\ \x00\x76\xb4\x8e\xc4\x89\xb1\xbc\x6b\x1d\x82\x14\xca\x7c\xeb\x00\ \x52\xfa\x7c\x06\xb0\x83\x75\x24\x4e\xdc\x6a\x1d\x80\x14\xcc\x7c\ \xeb\x00\x52\xfa\xbc\x00\x8c\xb0\x8e\xc4\x81\x3a\xee\xb4\x0e\x41\ \x0a\x66\xbe\x75\x00\x29\x7d\x5e\x00\x86\x5b\x47\xe2\xc0\xbf\x72\ \xfc\xfc\x1f\x09\xd3\x02\xeb\x00\x52\xea\x54\x5f\x00\xd6\xcf\xc5\ \xc3\x40\x6e\xb3\x0e\x40\x0a\x67\x95\x75\x00\x29\xd5\xd4\x17\x80\ \xad\xad\xe3\x70\xa0\x8e\x7f\x58\x87\x20\x85\x13\xfb\x23\x67\x4b\ \xf9\x29\x00\xe3\xf9\xd8\x3a\x04\x29\x9c\xd8\x6f\xae\xf2\xd9\x0c\ \x60\x2b\xeb\x38\x1c\xc8\xc3\x13\xdb\x25\x36\x39\x99\x01\xe4\xa1\ \x00\x3c\x62\x1d\x80\x14\x50\xec\x33\x80\xcf\x0a\xc0\x10\xeb\x38\ \x52\x9b\x9b\x83\xc7\x35\x4b\x7c\x62\x9f\x01\xac\x2a\x01\x35\x6c\ \x66\x1d\x47\x6a\xff\x64\xb5\x75\x08\x52\x40\x1d\xd3\x2f\xc2\xd4\ \xca\x12\xb0\x09\xeb\x58\xc7\x91\xda\x93\xd6\x01\x48\x21\xf5\xb0\ \x0e\x20\xa5\x15\x25\x60\x73\xeb\x28\x1c\x28\xc2\x43\x40\x25\x3c\ \xeb\x59\x07\x90\xd2\xca\x12\x30\xd8\x3a\x8a\xd4\xe6\xe7\xe6\x86\ \xe6\x12\x97\xd8\x67\x00\x2b\x4b\x90\x83\x3d\x00\x2f\x44\xbf\x37\ \x56\xe2\x14\xfb\xf3\xa7\x56\x94\x80\xfe\xd6\x51\xa4\xa6\x0d\x00\ \xb1\x11\xfb\x0c\x60\x71\x09\x72\x70\x1d\xc0\xf3\xd6\x01\x48\x41\ \xad\x6f\x1d\x40\x4a\x8b\xf3\x31\x03\x98\x60\x1d\x80\x14\x54\xec\ \x5f\x9e\x8b\xf2\x30\x03\x98\xc5\x5c\xeb\x10\xa4\xa0\x36\xb5\x0e\ \x20\xa5\x45\x25\x3a\xd2\xc7\x3a\x8a\x94\x5e\xb3\x0e\x40\x0a\x2b\ \xf6\x02\xb0\xb8\x44\x1f\x3a\x58\x47\x91\x92\x0a\x80\x58\x89\x7d\ \xf3\x79\x61\x89\x0d\xad\x63\x48\x4d\x05\x40\x6c\x94\xa2\xdf\x7c\ \x9e\xad\x02\x20\x52\xad\x8d\xe9\x64\x1d\x42\x4a\x73\x4b\x6c\x60\ \x1d\x43\x6a\x6f\x5b\x07\x20\x05\x15\xff\xe3\x74\x67\x97\xa2\xdf\ \x05\x58\xcb\x6c\xeb\x10\xa4\xa0\xb6\xb5\x0e\x20\xb5\xd9\xf1\xcf\ \x00\x66\x46\x7f\x4d\xb6\xc4\x2a\xfe\x02\x30\xa7\x14\xfd\xb9\x4c\ \x1f\x58\x07\x20\x85\x15\x7b\x01\x58\xc5\xdc\x52\xf4\x97\x33\xcc\ \xb0\x0e\x40\x0a\x6b\x1b\xeb\x00\x52\xfa\x88\xd5\xa5\xe8\xaf\x68\ \x56\x01\x10\x1b\x1b\x45\xbf\xff\x6c\x26\xc4\x3f\x03\x98\x65\x1d\ \x80\x14\x54\xfc\x0f\xd4\xfd\x30\x0f\x05\x20\xf6\x87\x33\x49\xac\ \xf6\xb4\x0e\x20\xb5\x19\x50\x62\x5d\xeb\x28\x52\x5a\x64\x1d\x80\ \x14\xd4\x48\xeb\x00\x52\xfb\x10\x4a\x74\xb1\x8e\x22\x25\x15\x00\ \xb1\xd0\x81\xdd\xad\x43\x48\xed\x3d\x28\x45\x7f\x32\xe3\x42\xeb\ \x00\xa4\x90\x86\x47\x7f\x37\xa0\xcf\x0a\x40\x67\xeb\x28\x52\xd2\ \x0c\x40\x2c\xc4\xbf\x07\x00\xa6\xe6\x61\x06\xb0\xd8\x3a\x00\x29\ \xa4\x2f\x58\x07\x90\xda\x22\x66\xe7\x61\x06\xb0\xd2\x3a\x00\x29\ \xa0\x0e\x1c\x68\x1d\x42\x6a\x53\x01\x4a\xd1\xdf\x0e\xa4\x64\x1d\ \x80\x14\xd0\xc8\xe8\xaf\xa1\x81\x77\x00\x4a\xba\xa3\xbe\x48\x62\ \x07\x5b\x07\xe0\xc0\x1b\x90\x87\x02\xa0\x19\x80\x64\x4f\x05\x20\ \x18\x35\xd6\x01\x48\xe1\x6c\xc2\xf6\xd6\x21\x38\xa0\x02\x20\x52\ \x95\x23\x73\xb0\xd6\xd5\x31\x05\xf2\x50\x00\x62\x3f\x8c\x29\xf1\ \x39\xc6\x3a\x00\x07\xa6\xb3\x04\xa0\x14\xfd\x61\xb4\xd8\x6f\x68\ \x22\xb1\x19\xc0\x28\xeb\x10\x1c\x98\x54\xff\x9f\x12\xb5\xd6\x91\ \xa4\xd4\xd3\x3a\x00\x29\x98\x63\x73\xb0\x01\xd0\xa8\x00\x2c\xb3\ \x8e\x24\xa5\x5e\xd6\x01\x48\xc1\x1c\x6b\x1d\x80\x13\x9a\x01\x88\ \x54\x61\x2b\x46\x58\x87\xe0\x44\x6e\x66\x00\x3d\xad\x03\x90\x42\ \x39\xc5\x3a\x00\x27\x16\xd6\x9f\x08\xac\x02\x20\x92\x44\x57\x4e\ \xb4\x0e\xc1\x89\x89\x0d\x37\xd3\x2f\x45\x7f\x3d\xfd\xc6\xd6\x01\ \x48\x81\x7c\x3d\x07\x8f\xd2\x03\x78\xbe\xe1\x1f\x25\xe6\x5b\xc7\ \x92\xd2\x66\xd6\x01\x48\x81\x9c\x6e\x1d\x80\x23\x2f\x36\xfc\xa3\ \x14\xfd\x4d\x35\x07\x59\x07\x20\x85\x31\x22\x07\xb7\x01\xab\x37\ \xb6\xe1\x1f\xf1\x17\x80\x81\xb9\x38\x2a\x2b\x31\x38\xd3\x3a\x00\ \x47\x3e\x60\x66\xc3\x3f\xe3\xdf\x04\xe8\xa2\xbd\x00\x92\x89\xfe\ \x7c\xd3\x3a\x04\x47\x5e\x5c\xf3\xcf\x12\xf3\xac\xa3\x49\x6d\x33\ \xeb\x00\xa4\x10\x7e\x18\xfd\x1d\xb4\x1b\xfc\x7b\xcd\x3f\x4b\x7c\ \x6a\x1d\x4d\x6a\x9b\x59\x07\x90\x3b\x1b\x70\x2c\x37\x30\x9e\xd9\ \x94\x59\xc4\x2c\xc6\xf0\x5b\xf6\x8b\xfe\xde\x51\xe9\x6c\xc8\x69\ \xd6\x21\x38\xf3\x74\xe3\xff\x19\x4c\x39\xf2\x76\xb1\xf5\x78\xe6\ \xca\xe6\x5c\xc9\xd2\x16\xc7\xf9\x23\x2e\x2a\xf0\x59\x17\x3f\x37\ \x5f\xcf\x5d\xb5\xb9\x6b\xdf\x44\x67\x5d\xf3\x80\xd2\xb6\xfb\xac\ \xd7\x8d\xdc\xe8\xc0\xb9\xad\x24\x7f\x43\x9b\xc7\x59\x85\xdc\xe9\ \xda\x83\xb9\xe6\xeb\xb9\xab\xf6\x8f\xa6\x9d\x5b\x6c\x1e\x52\xba\ \x36\xd5\x7a\xed\xc8\x89\xf5\x18\x53\xd1\x78\x3f\x5a\xc0\xdd\xae\ \x17\x98\xaf\xe5\xee\xda\xb9\x4d\x3b\xf7\xae\x79\x48\xe9\x5a\x5d\ \x0e\x9e\xd1\x62\x6f\x43\x5e\xaa\x78\xc4\xa7\x30\xd0\x3a\xdc\x4c\ \xf5\x65\x91\xf9\x5a\xee\xae\xed\xd4\xb8\x6b\x25\xe0\x63\xeb\xf1\ \x4d\xa9\x86\xe1\xd6\x21\x44\xaf\x0f\x4f\xb0\x4b\xc5\x7f\x3d\x94\ \xa7\x0b\x35\x0b\xb8\x30\xfa\x67\x68\xaf\x31\x8b\x09\x8d\xff\xb7\ \x04\x7c\x60\x1d\x53\x6a\x79\xb8\x45\xa3\xa5\x3e\x3c\x9e\xb0\x88\ \x0e\xe2\x9e\xe8\x1f\x29\x53\xa9\x61\x39\xb9\x02\xb0\xde\x23\x94\ \x1b\xff\x6f\x09\x98\x66\x1d\x53\x6a\x23\xac\x03\x88\x5a\xf2\xf4\ \x07\xd8\x93\x1f\x5b\x07\x9e\x91\xff\xa3\xa3\x75\x08\x0e\x3d\xdc\ \xfc\x47\xdf\x33\xdf\x2a\x49\xdb\x5e\xb1\x1e\xd5\x88\xf5\xe1\x95\ \x2a\x47\x7d\x31\xfd\xad\x83\xcf\xc0\xbe\xe6\x6b\xb7\xcb\xb6\xb2\ \xe9\x81\xdc\x12\x30\xdd\x7a\x8c\x53\xdb\x56\xb7\x06\xad\x52\x75\ \xdf\xfe\xf5\xd6\xe5\x3c\xeb\xf0\xbd\xeb\xc2\x95\xd6\x21\x38\xf5\ \x5c\xd3\x53\xff\xf3\xb1\x09\x50\xca\xcd\x55\x5a\xd9\x4a\x93\xfe\ \x00\xc7\xb3\x8e\x75\x17\x3c\x3b\x8f\xad\xac\x43\x70\xaa\xd9\x06\ \x40\x3e\x0a\x40\x3e\x9e\xd6\x9e\xb5\xb4\xe9\x0f\x3d\xf9\xb2\x75\ \x27\xbc\x1a\xca\xf9\xd6\x21\x38\xd6\x62\x01\x98\xc7\x6c\xeb\xb8\ \x52\xdb\xd7\x3a\x80\xe8\xa4\x4f\x7f\x20\x17\x77\xc8\x6f\xdd\x95\ \x74\xb5\x0e\xc1\xa9\x59\xcd\xf7\x96\xd5\x9f\x15\xfc\x96\x75\x64\ \xa9\x8d\xd4\xc9\x40\x89\xb8\x49\x7f\xd8\xc3\xba\x23\x1e\x7d\x93\ \x03\xac\x43\x70\xec\xc1\xb5\x0f\x01\x42\x7e\x0a\x40\x27\x46\x5b\ \x87\x10\x11\x57\xe9\x4f\x8e\x8f\x03\x0c\xe0\x0f\xd6\x21\x38\xf7\ \x50\xf3\x1f\xd5\x17\x80\x29\xd6\x91\x39\x70\xa0\x75\x00\xd1\x70\ \x97\xfe\xe4\xe4\x16\x99\xcd\x95\xb8\x21\x77\x8f\x9c\x59\xc4\x23\ \x2d\x75\x14\xe0\x4d\xeb\xd8\x1c\xc8\xf7\xee\x28\x77\x5c\xa6\x3f\ \x74\xb3\xee\x8e\x27\xe7\xb0\x9f\x75\x08\xce\xdd\xd7\xd2\x23\x00\ \xf2\x33\x03\x18\xc2\x76\xd6\x21\x44\xc0\x6d\xfa\xe7\xd5\xb6\xfc\ \xc2\x3a\x04\x0f\x6e\x6b\xe9\x87\xf5\x05\xe0\x5d\x56\x59\x47\xe7\ \xc0\x91\xd6\x01\x04\x4f\xe9\x5f\x89\x6e\xfc\x2d\x67\x7b\xff\x01\ \xe6\xf0\x58\x4b\x3f\xae\x2f\x00\x2b\x78\xdf\x3a\x3e\x07\x54\x00\ \xda\xa6\xf4\xaf\xcc\x15\xb9\xbc\xb8\xec\x2e\x56\xb6\xf4\xe3\x86\ \x9b\x03\xe5\x61\x2f\xc0\x8e\x0c\xb6\x0e\x21\x60\x4a\xff\xca\x9c\ \xce\x49\xd6\x21\x78\x71\x6b\xcb\x3f\x6e\x28\x00\x13\xad\xe3\x73\ \xe2\x38\xeb\x00\x82\xa5\xf4\xaf\xcc\x6e\xfc\xde\x3a\x04\x2f\x3e\ \xe4\x99\x96\x7f\xd1\x50\x00\xc6\x5b\x47\xe8\xc4\x09\x85\xbc\x5f\ \x5d\xfb\x94\xfe\x95\xe9\xcd\xed\xb9\xb9\xf5\xf7\xda\x6e\x63\x75\ \xcb\xbf\xc8\x57\x01\x18\xca\x6e\xd6\x21\x04\x48\xe9\x5f\x99\xce\ \xdc\x95\xdb\x5b\xcc\xdf\xd6\xda\x2f\x1a\x0a\xc0\x07\x7c\x62\x1d\ \xa3\x13\x27\x58\x07\x10\x1c\xa5\x7f\x65\x6a\xb8\x96\x7d\xac\x83\ \xf0\xe4\x5d\xc6\xb5\xf6\xab\x35\x77\x08\xcf\xc7\x1c\xe0\x78\xd6\ \xb3\x0e\x21\x28\x4a\xff\x4a\xfd\x22\xc7\x5f\x1e\x37\x36\xbf\x06\ \xa0\x41\xde\x0a\xc0\x7a\x1c\x63\x1d\x42\x40\x94\xfe\x95\xfa\x36\ \xff\x65\x1d\x82\x37\xab\xb8\xbe\xf5\x5f\xe6\xad\x00\xc0\x77\xad\ \x03\x08\x86\xd2\xbf\x52\x07\x73\x95\x75\x08\x1e\xdd\xbf\xe6\x59\ \xc0\xcd\xe5\xaf\x00\xec\x90\xeb\x4b\x54\x2b\xa7\xf4\xaf\xd4\x28\ \xee\xc8\xd5\x6d\x3f\x9b\xfa\x53\x5b\xbf\x5c\x53\x00\x3e\x88\xfe\ \xf9\x00\x0d\xce\xb1\x0e\x20\x00\x4a\xff\x4a\x8d\xe4\x21\xd6\xb5\ \x0e\xc2\xa3\x77\x79\xa2\xad\x5f\x37\x7e\x4c\xe0\xb3\xd6\xb1\x3a\ \xf2\x55\x86\x5a\x87\x60\x4c\xe9\x5f\xa9\x9d\x78\x30\xe7\xbb\x8d\ \xaf\xa2\xae\xad\x5f\x37\x2e\x00\x4f\x59\xc7\xea\x48\x87\x82\xcf\ \x01\x94\xfe\x95\x1a\xc1\x63\xb9\xbb\xea\x7f\x6d\xcb\xb9\xa9\xed\ \x3f\x68\x5c\x00\x9e\xb4\x8e\xd6\x99\x13\xd9\xc8\x3a\x04\x33\x4a\ \xff\x4a\xed\xce\xe3\x6c\x60\x1d\x84\x67\x77\xf0\x69\xdb\x7f\xd0\ \xb8\x00\x4c\xce\xc1\xcd\x41\xeb\x75\xe3\x47\xd6\x21\x18\x51\xfa\ \x57\x6a\x3f\x1e\xcb\x7d\xfa\xb7\xb3\x03\xb0\xb9\x7b\xcc\x9f\x5c\ \xe2\xaa\x2d\xcb\xf1\xdd\xea\x5a\x57\xfd\x53\x7e\xaa\x6f\x71\x3a\ \x82\x65\xe6\xeb\xa8\xff\x36\xa9\xfd\x81\x28\xad\xf5\x7f\x79\xd9\ \x0b\x00\x5d\x0b\xf0\xd4\x9a\xa6\xf4\xed\x5f\xa9\xff\xe4\xee\x1c\ \xde\xf2\xa3\xb9\xcb\x93\xbe\x60\x07\xf3\x9a\xe5\xae\xd5\x16\xec\ \x19\xf6\x16\xdf\xfe\x65\xe2\x9b\x01\xd4\x70\xb1\xf9\xba\x99\x4d\ \x9b\x99\xfc\xca\xc6\x12\xb3\xcd\xc3\x76\xd7\x6e\xb1\x5e\xd7\x32\ \x64\x95\xfe\xb1\x15\x80\xae\xfc\xd5\x7c\xbd\xcc\xaa\xfd\xb0\x9a\ \x01\xba\xd7\x3c\x6c\x77\xad\xae\x30\x4f\x0c\xb4\x4b\xff\xb8\x0a\ \x40\x7f\x5e\x32\x5f\x2b\xb3\x6a\x73\x2b\x3b\xbf\xa1\xd4\xe4\xff\ \x1f\xaa\xe4\x45\x91\xa8\xe1\xd2\x42\xdc\x20\x44\xdb\xfe\x95\xd9\ \x83\x71\xec\x62\x1d\x44\x66\xfe\xc8\xa2\x6a\x5e\xd6\x8f\x3a\xf3\ \xda\xe5\xb2\xe5\xff\x26\x61\x96\xdf\xfe\x65\xe2\x99\x01\x9c\x5e\ \x88\xfd\xfe\x0d\x6d\x09\x7d\xaa\x1d\xa8\x7c\x4d\x92\x66\xd1\xd3\ \x7a\xcd\xf3\xca\x3a\xfd\xe3\x28\x00\x3d\xb8\xd5\x7c\x4d\xcc\xb6\ \x5d\x56\xe9\xd0\x94\x9a\xfd\xe4\x01\xeb\x4f\xcb\xa9\xbe\xfc\xd2\ \x3a\x04\x8f\x34\xf9\xaf\xc4\x2e\xbc\x5c\xb0\xbb\x44\xac\xe4\x77\ \xd5\xbf\x78\x27\xf3\xea\xe5\xb6\xad\x66\xa4\xf5\xe7\xe1\x89\xfd\ \xb7\x7f\x99\xd0\x67\x00\x25\x7e\xc4\x0a\xf3\x31\xca\xba\xdd\x50\ \xf9\x00\xd5\xb4\xf0\x93\x0f\x72\x76\x16\xdd\x64\x76\x65\xb9\x75\ \x10\xce\x85\xf2\xed\x1f\xf2\x6e\xd6\xc1\xfc\x39\xb7\xf7\xf9\x6b\ \x5d\x99\xe1\xbc\x56\xe9\x1f\x97\x5a\x78\xf9\x83\xd6\x3d\x70\x6c\ \x38\x17\x58\x87\xe0\x5c\x28\xe9\x1f\xae\x0e\xfc\x90\x57\x0b\x98\ \xfe\x70\x47\xe5\xe9\xdf\xb2\xc3\xcc\xa7\x30\xae\xdb\x6a\x46\x59\ \x7f\x2a\x4e\x85\x31\xf9\xaf\x6f\x61\xda\x82\xa7\xcc\x47\xc6\xa6\ \xad\x60\x48\xda\xc1\x5b\x87\x45\xe6\xdd\x70\xdd\xde\x64\x1d\xeb\ \x75\xd2\x99\x90\xd2\x3f\xc4\x02\xb0\x2e\x3f\x2f\xd4\x21\xbf\xb5\ \xdb\x95\x2e\x86\xf0\x16\xf3\x6e\xb8\x6f\x57\x5b\xaf\x97\x8e\x84\ \x95\xfe\xe1\x15\x80\xc3\x78\xdf\x7c\x4c\xec\xda\x62\xfa\x26\x1b\ \xae\x52\x8b\x3f\xbd\x35\xd9\x42\xa2\x70\x1a\xdf\xb0\x0e\xc1\x01\ \x6d\xfb\xb7\x65\x04\x4f\xf1\x77\x06\x59\x87\x61\xe8\x77\x7c\x94\ \xec\x05\x2d\xef\xc3\xed\xc4\x87\x6c\x68\xdd\x17\xe7\x16\xb3\x0b\ \x6f\x59\x07\x91\x4a\x88\xe9\x1f\xca\x51\x80\x41\xfc\x8c\x6f\xd1\ \xc1\x3a\x0c\x53\xb3\x19\xc2\x82\x64\x2f\x69\x79\x06\xb0\x92\xbb\ \xad\xfb\xe2\x41\x77\xfe\x46\x37\xeb\x20\x52\x08\x31\xfd\xc3\xd0\ \x87\x4b\x78\x93\x93\x0b\x9e\xfe\xf0\xcb\xa4\xe9\xdf\xba\xd1\xe6\ \x5b\x33\x7e\x5a\xbc\x97\x08\x87\xb6\xed\xdf\xd0\xac\xf5\xe6\x12\ \x96\x9a\x8f\x42\x08\xed\x7d\x97\x4f\x36\xae\xc9\xed\xae\x94\x1f\ \x58\xaf\xb1\x55\x09\x35\xfd\x6d\x0b\xc0\x16\x5c\xc6\x62\xf3\x11\ \x08\xa5\x39\x7e\xb6\xe1\x6f\xcc\x3b\xe4\xa7\xad\xe4\x00\xd3\x95\ \xb6\x1a\xe1\xa6\xbf\x5d\x01\x18\xcd\x7d\xac\x36\xef\x7d\x38\x6d\ \x92\xeb\x0d\xa0\xbc\x5d\x13\xb0\xa6\xcd\x63\x5b\xb3\xd5\xb6\x1a\ \x21\xa7\xbf\x45\x01\xe8\xce\x49\x8c\x33\xef\x77\x58\xad\x8e\x2f\ \xb8\x1f\xe8\x97\xcd\xbb\xe5\xab\xcd\x60\x53\x83\x15\xb7\x3a\x61\ \xa7\x7f\xd6\x05\x60\x67\xae\x66\xa1\x79\x9f\xc3\x6b\x37\xfa\x18\ \xec\xd3\xcd\xbb\xe5\xaf\xbd\xc2\xfa\x19\xaf\xba\xd5\x09\x3d\xfd\ \xb3\x2b\x00\x83\xf8\x31\x6f\x98\xf7\x36\xcc\x36\x8f\x8d\xab\x1d\ \xd6\xb6\x8e\xe2\xf6\x60\x26\xdd\x33\xfb\x80\xb3\x36\x86\xc3\xa8\ \xb5\x0e\xa2\x1d\x31\x1c\xf8\xf3\x7f\x1e\xc0\x60\x0e\xe3\x68\xf6\ \x0c\xe6\x8c\x83\xf0\x9c\xc9\x15\xd5\xbe\xb4\xed\x41\xbd\x96\x6f\ \x5b\xf7\xcd\xa3\xbf\x73\x14\x2b\xad\x83\x68\x43\x0c\xe9\xef\xb3\ \x00\x74\x66\x77\x0e\xe2\x48\xb6\xb6\xee\x62\xe0\x5e\x66\x37\x56\ \x57\xfb\xe2\xb6\x3f\xbe\x5d\x78\xc9\xba\x77\x5e\xdd\xc5\x31\xd5\ \x0f\x9d\x67\x71\xa4\xbf\x8f\x02\x50\x62\x6b\xf6\xe2\x00\xbe\x18\ \xc9\x66\x9a\xad\x3a\x46\xf1\x7c\xf5\x2f\x6f\xef\xe3\x1b\xcf\x4e\ \xd6\x3d\xf4\xea\x7a\x4e\x6d\xfb\xf1\xc9\x46\x62\x49\x7f\x97\x05\ \x60\x20\xbb\xb0\x33\x3b\xb3\x5b\xce\x9f\xd8\xeb\xd6\xb5\x9c\x96\ \xe6\xe5\xed\x7d\x7c\xdf\x49\xfa\x78\xc1\xe8\xdc\xc6\xf1\xac\xb2\ \x0e\xa2\x89\x78\xd2\x3f\x5d\x01\x28\x31\x80\xa1\x0c\x61\x08\xdb\ \xb2\x73\xf5\xf7\xb1\x2d\xb0\xd9\x6c\xc5\x9c\x34\x0b\x68\xef\xe3\ \xeb\xce\x4c\x7a\x58\xf7\xd2\xb3\x3b\xf9\x46\x50\xfb\x02\x62\x4a\ \xff\x4a\x0a\x40\x2f\xa0\x3b\x9d\xe8\xc2\xba\xf4\xa1\x0f\x1b\xd2\ \x97\x8d\xd8\x90\xcd\xd9\xc2\xe5\xc9\xab\x85\x74\x2a\xd7\xa5\x5b\ \x40\xfb\x1f\xdf\xe5\x9c\x69\xdd\x4b\xef\xee\xe7\x58\x96\x59\x07\ \xf1\x99\xb8\xd2\x5f\x2c\x3d\xc1\x01\x69\x0f\xc4\xb6\x5f\x00\x36\ \x67\x0a\x1d\xad\x7b\xea\xdd\x0b\x1c\x9a\x6e\x2a\xe5\x88\xd2\x5f\ \x2a\xb5\x90\xed\x99\x96\x76\x21\xa5\x76\xff\xe2\x3d\xee\xb5\xee\ \x69\x06\xf6\xe0\x69\x06\x58\x07\xa1\xf4\x97\x04\xce\x49\x9f\xfe\ \x95\xed\xc2\xd9\x8d\x17\xad\xfb\x9a\x89\x69\xec\xc7\x54\xc3\xf7\ \x57\xfa\x4b\xe5\x1e\xe0\x30\x17\x8b\xa9\x6c\x1f\xee\x93\x8c\xb6\ \xee\x6f\x26\x66\xb0\x07\x33\x8d\xde\x5b\xe9\x2f\x95\x9b\xcf\x70\ \x66\xb8\x58\x50\xfb\x9b\x00\x00\xff\xcf\xba\xbf\x19\xd9\x94\x7b\ \xe8\x64\xf2\xce\x4a\x7f\x49\xe2\x74\x37\xe9\x4f\x85\xd7\x10\xbf\ \xcd\xd1\x05\x39\x4a\xdb\x9f\x95\x3c\x9d\xf9\xbb\x2a\xfd\x25\x89\ \xfb\xf8\x1f\x57\x8b\xaa\xf4\x34\x8e\x53\xd2\x1e\x6f\x8c\x46\x2d\ \x5b\xf0\x61\xa6\xef\xa8\xf4\x97\x24\x3e\x65\x3b\x3e\x71\xb5\xb0\ \xca\x36\x01\xe0\x16\x3e\xb0\xee\x77\x46\xba\x72\x56\xa6\xef\xa7\ \xf4\x97\x64\x4e\x73\x97\xfe\x95\x17\x80\xe5\xb9\x7e\xcc\xf6\xda\ \x4e\xc8\xf0\xbc\x07\xa5\xbf\x24\x73\x05\xf7\xb9\x5c\x5c\xe5\x67\ \x72\x77\xe2\x4d\x06\x5b\xf7\x3e\x23\x23\x79\x21\x93\xf7\x51\xfa\ \x4b\x32\x93\x18\xe9\xf6\x9c\xd5\xca\x6f\x24\x58\xc7\x22\x0e\xb7\ \xee\x7f\x46\xde\xe6\xd9\x0c\xde\x45\xe9\x2f\xc9\xcc\x67\x7f\x3e\ \x75\xbb\xc8\x4a\x37\x01\x00\x6e\xe6\x6d\xeb\x11\xc8\x48\x16\xb7\ \xa0\x50\xfa\x4b\x32\x65\x4e\x71\x7f\xa2\x5a\x92\x02\xb0\x8a\x8b\ \xad\xc7\x20\x23\x09\x1f\xb0\x58\x05\xa5\xbf\x24\xf5\x7b\xee\x71\ \xbf\xd0\x24\x05\x00\x6e\xe5\x75\xeb\x51\xc8\xc4\xba\x9e\x97\xaf\ \xf4\x97\xa4\xc6\x72\xbe\x8f\xc5\x26\x2b\x00\xab\xb9\xc8\x7a\x1c\ \x32\xe1\xf7\xd2\x60\xa5\xbf\x24\x35\x8f\xaf\xb3\xc2\xc7\x82\x93\ \x15\x00\xb8\x8b\xf1\xd6\x63\x91\x81\x84\x8f\x58\x4e\x44\xe9\x2f\ \x49\x95\x39\x89\xf7\xfd\x2c\x3a\x69\x01\xa8\xe3\x9c\x0c\xef\x05\ \x6f\x65\x8a\xb7\x25\x2b\xfd\x25\xb9\x5f\x72\xbf\xaf\x45\x27\x2d\ \x00\xf0\x6f\xee\x32\x1d\x8c\x2c\xf8\x3a\x08\xa8\xf4\x97\xe4\xee\ \xe1\x02\x7f\x0b\xaf\xe6\x96\x8e\x9b\xf3\x3a\x5d\xcd\x86\xc3\xbf\ \xf9\xf4\x65\xb9\x87\xe5\x2a\xfd\x25\xb9\x09\xec\xcd\x12\x7f\x8b\ \x4f\x3e\x03\x80\xf7\xb8\xd4\x6a\x34\x32\x71\x97\xd2\x5f\x02\x31\ \x8b\xc3\x7d\xa6\x7f\xb5\x37\x75\xee\xce\x14\x36\x31\x19\x10\xff\ \xca\x0c\xe7\x35\xe7\x4b\x55\xfa\x4b\x72\xcb\xd8\x87\xb1\x7e\xdf\ \xa2\x9a\x19\x00\x2c\xe6\x67\x06\xc3\x91\x8d\x5b\x94\xfe\x12\x84\ \x32\x27\xfb\x4e\xff\xea\x1f\xeb\x50\x62\x3c\x23\xb2\x1d\x8f\x4c\ \xcc\x65\xb8\xf3\xbb\x01\x28\xfd\xa5\x1a\x3f\xe5\x7f\xfd\xbf\x49\ \x75\x33\x00\xa8\xe3\x8c\x20\x1f\xa9\x95\x4e\x1d\x27\x29\xfd\x25\ \x08\x77\xf0\xab\x2c\xde\xa6\xf2\xab\x01\x9b\x9a\x41\x5f\x76\xcd\ \x6c\x38\xb2\x71\x2e\x37\x38\x5e\xa2\xd2\x5f\xaa\xf1\x2c\x47\x66\ \xf3\xc0\xba\x34\x4f\x76\xeb\xc1\xeb\xf4\xcf\x68\x40\xb2\x70\xa1\ \xf3\x13\x9d\x95\xfe\x52\x8d\xc9\xec\xc3\xdc\x6c\xde\xaa\xfa\x19\ \x00\x2c\x67\x3a\x5f\xcb\x26\xcc\x0c\x28\xfd\x25\x0c\xef\xb2\x9f\ \xeb\xab\xfe\x5b\x97\xa6\x00\xc0\xeb\xec\xc4\xb0\xac\x42\xf5\x4a\ \xe9\x2f\x61\x98\xc9\xbe\x59\xde\x7f\x33\xed\xd3\xdd\x07\xf2\x1a\ \xdd\xb3\x0b\xd7\x13\xa5\xbf\x84\x61\x36\xa3\xb3\xbd\xe4\x3e\xdd\ \x0c\x00\x16\x50\xcb\x97\xb2\x0c\xd8\x03\xa5\xbf\x84\x61\x21\x5f\ \x64\x52\xb6\x6f\x99\x76\x06\x00\x1d\x78\x8e\xdd\xb2\x0d\xda\xa9\ \x8b\xb8\xd0\xf1\x12\x95\xfe\x52\x8d\x65\x1c\xcc\x93\x59\xbf\x69\ \xfa\x02\x00\x5b\x30\x31\xda\xcd\x00\x7d\xfb\x4b\x18\x56\xf2\x15\ \x1e\xc8\xfe\x6d\xd3\x6e\x02\x00\xcc\x63\x21\x07\x67\x1f\xba\x03\ \x4a\x7f\x09\xc3\x6a\xbe\xc5\xdd\x16\x6f\xec\xa2\x00\xc0\x38\x76\ \x65\xa8\x45\xf8\xa9\x28\xfd\x25\x0c\xab\x39\x89\xbf\xda\xbc\xb5\ \x8b\x4d\x00\x80\x7e\xbc\x42\x6f\x9b\x2e\x54\x49\xe9\x2f\x61\x58\ \xc1\xb1\x3e\xee\xf7\x5b\x99\x6a\xaf\x05\x68\xea\x43\x4e\xb3\xea\ \x42\x55\xdc\xa7\xff\x86\x4a\x7f\xa9\x42\x2d\x47\xda\xa5\xbf\xab\ \x4d\x00\x80\x37\x18\x16\x4d\x02\xb8\x4f\xff\xf5\x79\x2c\x97\x57\ \x47\x8a\x5f\x4b\x39\x9c\x7f\x5a\x06\xe0\x6a\x13\x00\xa0\x17\x93\ \x18\x60\xd9\x99\x0a\xb9\x3f\xf0\x57\xe2\x41\x0e\xb2\xee\x96\x44\ \x67\x09\xff\xc1\x13\xb6\x21\xb8\xda\x04\x00\x98\xc7\xd1\x7e\xee\ \x5d\xee\xd4\x85\xce\xd3\x1f\xce\x51\xfa\x4b\x62\xf3\xd9\xdf\x3a\ \xfd\x5d\x6e\x02\x00\xcc\xa4\x96\x2f\x5a\x77\xa9\x4d\xee\x27\xff\ \xd0\x8f\xbb\xe9\x6c\xdd\x31\x89\xcc\x1c\x0e\x64\x9c\x75\x10\x6e\ \x67\x00\x00\xbf\xb5\xdc\xa1\xd1\x2e\x1f\xe9\x0f\xe7\x46\x7b\x1a\ \x94\x58\x99\xc6\x17\x78\xd9\x3a\x08\x70\xbb\x0f\xa0\x5e\x4f\xc6\ \x33\xd8\xba\x5b\x2d\xf2\x93\xfe\x5d\x99\x45\x4f\xeb\xae\x49\x54\ \x5e\xe1\x10\x66\x58\x07\x51\xcf\xf5\x0c\x00\xe6\xf3\x15\xcf\xcf\ \xd6\xab\x8e\x9f\xf4\x87\x43\x95\xfe\x92\xc8\x03\xec\x19\x4a\xfa\ \xfb\x28\x00\x30\x89\x1f\x59\x77\xab\x19\x5f\xe9\x0f\xfb\x59\x77\ \x4d\xa2\x72\x15\x47\xf8\xbd\xd3\x7f\x32\x3e\x0a\x00\x5c\xc1\x6d\ \xd6\x1d\x5b\xcb\x45\x1e\x9f\x6a\xbc\x93\x75\xe7\x24\x1a\x65\x2e\ \xe2\x0c\x56\x5b\x87\xd1\x98\xfb\x7d\x00\xf5\xba\xf1\x54\x30\xb7\ \x0c\xf5\xf7\xed\x0f\xf0\x09\x7d\xac\x3b\x28\x51\xa8\xe5\x5b\xdc\ \x61\x1d\x44\x53\xbe\x0a\x00\xf4\x63\x6c\x10\xb7\x0c\xf5\x9b\xfe\ \xb0\x5c\x87\x00\xa5\x02\x73\x39\x92\xa7\xad\x83\x68\xce\xcf\x26\ \x00\xc0\x87\x1c\xce\x52\xeb\xee\x79\x4f\x7f\x0a\xf0\xb0\x74\x49\ \xef\x55\xf6\x08\x31\xfd\x7d\x16\x00\x18\xcf\x89\xc6\xe9\xe1\x3f\ \xfd\x61\x81\x69\x0f\x25\x06\xb7\x33\x92\xb7\xad\x83\x68\x99\xcf\ \x02\x00\x77\xf2\x6b\xc3\xbe\x65\x91\xfe\x30\xd5\xb0\x87\x12\xbe\ \x55\xfc\x84\x63\x59\x6c\x1d\x46\x6b\xdc\x9e\x0a\xdc\xdc\xbf\x18\ \xc1\x56\x26\x3d\xcb\x26\xfd\x61\xc7\xa8\xef\x88\x28\x7e\xcd\xe6\ \x08\x6e\xb6\x0e\xa2\x2d\x7e\x67\x00\x50\xc7\xf1\x4c\x34\xe8\x97\ \xcf\x03\x7f\x6b\x7b\xdc\xa0\x77\x12\x87\x17\xd8\x31\xf4\xf5\xc3\ \xdf\x51\x80\x35\xfa\xf0\x6c\xc6\x37\x0c\xcb\xea\xdb\x1f\x74\x2a\ \xb0\xb4\xe6\x1a\xbe\x17\xfe\xd5\xb1\xbe\x67\x00\x00\x9f\xf2\x65\ \x3e\xce\xb0\x4f\x59\xa6\x3f\xd4\x72\x5d\x86\xef\x26\x71\xa8\xe5\ \x64\xbe\x13\x7e\xfa\x67\x67\x17\x16\x51\xce\xa4\x5d\x90\x79\xdf\ \xfa\xb2\x30\xa3\xbe\xa9\xc5\xd1\x26\xb2\xad\x75\xc2\x85\x67\x7f\ \x96\x67\x30\xf4\xd9\xa7\x3f\xc0\x59\xe6\xab\x9c\x5a\x28\x6d\x35\ \xbf\xa1\x8b\x75\xb2\x85\xe9\x38\x56\x7b\x1e\x7c\x9b\xf4\x87\x1a\ \xee\x35\x5f\xf1\xd4\x42\x68\xb3\x74\x6f\xa8\xb6\xfc\xc8\xeb\xe0\ \x5b\xa5\x3f\x40\x0f\xc6\x9a\xaf\x7c\x6a\xd6\xed\x4e\x36\xb0\x4e\ \xb1\xd0\xfd\xdc\xdb\xe0\x5b\xa6\x3f\x40\x6f\x26\x98\xaf\x80\x6a\ \x76\x6d\x01\xc7\x5b\x27\x57\x1c\xfe\xd7\xcb\xf0\x5b\xa7\x3f\x40\ \x4f\x5e\x32\x5f\x0d\xd5\x6c\xda\xf3\x0c\xb1\x5e\xfd\xe2\x71\x89\ \xf3\xe1\x0f\x21\xfd\x41\xb3\x80\x62\xb6\x45\x9c\xed\xfd\x8c\xda\ \x5c\xa9\xe1\x0f\x4e\x3f\x80\x50\xd2\x1f\x34\x0b\x28\x5e\x7b\x80\ \x41\xd6\x2b\x5d\x7c\x6a\xb8\xc2\xd9\x07\x10\x52\xfa\x83\x4a\x40\ \x91\xda\x2c\x4e\xb0\x5e\xdd\x62\x55\xc3\x55\x4e\x3e\x82\xd0\xd2\ \x1f\x54\x02\x8a\xd1\xea\xb8\x29\xb2\xc7\xe1\x06\xa6\xc4\xb5\xa9\ \x3f\x84\x0b\xad\x3b\xd1\x0a\x95\x80\xbc\xb7\x29\xec\x6b\xbd\x92\ \xc5\xaf\x86\xdf\xa4\xfa\x10\x42\xfc\xf6\x6f\xa0\xdd\x81\xf9\x6d\ \xcb\xf8\x1f\xdd\x06\xce\x95\xf3\xaa\xfe\x18\x42\x4e\x7f\xd0\x2c\ \x20\x9f\xad\x8e\x3b\x02\x7d\xec\x4d\xb4\xce\xa8\xea\x04\xe1\xd0\ \xd3\x1f\x54\x02\xf2\xd7\x5e\x64\x94\xf5\x4a\x95\x47\xdf\x60\x65\ \x0e\xd3\x1f\x54\x02\xf2\xd4\xa6\x71\x42\x26\x77\xcf\x28\xa4\x23\ \xa9\xad\xf8\x83\xa8\xe3\x7c\xeb\x70\x13\x50\x09\xc8\x43\x9b\xc7\ \x79\x74\xb5\x5e\x95\xf2\x6d\x7f\xe6\x56\xf4\x51\x2c\xe6\x2b\xd6\ \xa1\x26\xa4\x12\x10\x77\x5b\xc1\xd5\x6c\x64\xbd\x12\x15\xc1\x10\ \x9e\x6f\xf7\xc3\x78\x9e\xed\xad\xc3\xac\x82\x8e\x08\xc4\xda\x56\ \x72\x53\xc6\x37\xb3\x2b\xb4\x0e\x7c\x9b\xf7\x5b\xfd\x30\xa6\x70\ \x74\xb4\xdb\x60\x9a\x05\xc4\xd7\x56\x73\x07\x5b\x5a\xaf\x38\xc5\ \xd3\x81\xc3\xb8\x9a\x57\xa9\xfb\xfc\x83\x58\xc1\x9b\xfc\x96\x3d\ \xa2\x4d\xfe\x7a\x2a\x01\x31\xb5\x15\xc5\xf9\xe6\x0f\x35\xad\x7a\ \xb1\x11\xdd\x59\x87\x59\xbc\xcf\x2a\xeb\x60\x9c\xe8\xc9\x63\xec\ \x62\x1d\x84\xb4\x6b\x25\xb7\x71\x31\xef\x58\x87\x91\x95\x50\x0b\ \x40\x1e\xa9\x04\x84\x6e\x05\xb7\x73\x11\xef\x5a\x87\x91\x25\x15\ \x80\x2c\xa9\x04\x84\xeb\x63\x6e\xe0\x8f\xcc\xb0\x0e\x23\x6b\x2a\ \x00\xd9\x52\x09\x08\xd1\x78\xae\xe1\x26\x6a\xad\xc3\xb0\xa0\x02\ \x90\x35\x95\x80\x90\xac\xe0\x7e\x2e\xe3\x59\xeb\x30\xec\xa8\x00\ \x64\x4f\x25\x20\x0c\x05\x9d\xf4\xaf\x4d\x05\xc0\x42\x6f\xc6\x30\ \xc2\x3a\x88\x02\x5b\xcd\x63\xdc\xc8\x3d\x7a\x74\x97\x0a\x80\x15\ \xcd\x02\xac\xbc\xce\x9d\xfc\x85\x69\xd6\x61\x84\x42\x05\xc0\x8a\ \x4a\x40\xd6\xe6\x72\x17\x37\xf3\x8c\x75\x18\x61\x51\x01\xb0\xa3\ \x12\x90\x95\xe5\x3c\xc6\x4d\xdc\xc7\x4a\xeb\x40\xc2\xa3\x02\x60\ \x49\xfb\x02\x7c\x5b\xc4\xc3\xdc\xcf\x43\xcc\xb7\x0e\x24\x54\x2a\ \x00\xb6\x34\x0b\xf0\xe5\x53\x1e\xe1\x4e\x1e\x65\xb9\x75\x20\x61\ \x53\x01\xb0\xa6\x12\xe0\xda\x54\x1e\xe0\x4e\x9e\xa5\x6c\x1d\x48\ \x0c\x54\x00\xec\x69\x43\xc0\x8d\x39\x3c\xc5\x93\x3c\xc8\x54\xeb\ \x40\x62\xa2\x02\x10\x02\xcd\x02\xd2\x58\xc4\x8b\x8c\x61\x0c\x13\ \xa8\xb3\x0e\x25\x3e\x2a\x00\x61\x50\x09\x48\x4e\x89\xef\x80\x0a\ \x40\x28\xb4\x21\x50\x99\xe5\x4c\xe2\x25\x5e\x62\x1c\x6f\x28\xf1\ \xd3\x53\x01\x08\x87\x4a\x40\xeb\xe6\x30\x89\x57\x78\x85\x49\x4c\ \xd6\xd1\x7c\x97\x54\x00\x42\xa2\x12\xb0\x46\x1d\xd3\x99\xc2\x5b\ \xbc\xc5\x14\x5e\xe3\x43\xeb\x70\xf2\x4a\x05\x20\x2c\xc5\x2d\x01\ \x4b\x99\xc5\x47\x4c\xe7\x7d\xa6\xf1\x3e\xef\x33\xad\x98\xd7\xe7\ \x67\x4d\x05\x20\x34\xf9\x2b\x01\xab\x58\xf4\xd9\xbf\xe6\xb1\x9c\ \xa5\x2c\x62\x39\x0b\x99\xcf\x5c\xe6\x32\x97\x79\x7c\xca\x27\xcc\ \xfc\xfc\x6f\x24\x53\x2a\x00\xe1\x89\xeb\x88\x80\xd6\xa0\xa8\x95\ \xac\x03\x90\x66\xe6\x73\x20\xe3\xac\x83\x90\x62\x50\x01\x08\x91\ \x4a\x80\x64\x44\x05\x20\x4c\x2a\x01\x92\x09\x15\x80\x50\xa9\x04\ \x48\x06\x54\x00\xc2\xa5\x12\x20\xde\xa9\x00\x84\x4c\x25\x40\x3c\ \x53\x01\x08\x9b\x4a\x80\x78\xa5\x02\x10\x3a\x95\x00\xf1\x48\x05\ \x20\x7c\x2a\x01\xe2\x8d\x0a\x40\x0c\x54\x02\xc4\x13\x15\x80\x38\ \xa8\x04\x88\x17\x2a\x00\xb1\x50\x09\x10\x0f\x54\x00\xe2\xa1\x12\ \x20\xce\xa9\x00\xc4\x44\x25\x40\x1c\x53\x01\x88\x8b\x4a\x80\x38\ \xa5\x02\x10\x1b\x95\x00\x91\x82\xeb\xc9\x4b\x94\x03\x69\x22\x92\ \xb9\x70\x4a\x80\x88\x18\x08\xa5\x04\x88\x88\x89\x30\x4a\x80\x88\ \x18\x09\xa1\x04\x88\x88\x19\xfb\x12\x20\x22\x86\xac\x4b\x80\x88\ \x98\xb2\x2d\x01\x22\x62\xcc\xb2\x04\x88\x88\x39\xbb\x12\x20\x22\ \x01\xb0\x2a\x01\x22\x12\x04\x9b\x12\x20\x22\x81\xb0\x28\x01\x22\ \x12\x8c\xec\x4b\x80\x88\x04\x24\xeb\x12\x20\x22\x41\xc9\xb6\x04\ \x88\x48\x60\xb2\x2c\x01\x22\x12\x9c\xec\x4a\x80\x88\x04\x28\xab\ \x12\x20\x22\x41\xca\xa6\x04\x88\x48\xa0\xb2\x28\x01\x22\x12\x2c\ \xff\x25\x40\x44\x02\xe6\xbb\x04\x88\x48\xd0\xfc\x96\x00\x11\x09\ \x9c\xcf\x12\x20\x22\xc1\xf3\x57\x02\x44\x24\x02\xbe\x4a\x80\x88\ \x44\xc1\x4f\x09\x10\x91\x48\xf8\x28\x01\x22\x12\x0d\xf7\x25\x40\ \x44\x22\xe2\xba\x04\x88\x48\x54\x5c\x96\x80\xc5\xd6\x9d\x11\x91\ \xa4\xdc\x95\x80\x69\xd6\x5d\x11\x91\xe4\x7a\x33\xc1\x49\x01\x78\ \xce\xba\x23\x92\x4e\xc9\x3a\x00\x31\x31\x87\x7d\x19\xe7\x60\x39\ \xcf\x5b\x77\x44\x44\xaa\xe3\x62\x16\x70\xa4\x75\x27\x44\xa4\x5a\ \x69\xf7\x05\xcc\xa1\xab\x75\x17\x44\xa4\x7a\xe9\x66\x01\x97\x5a\ \x87\x2f\x22\xe9\x54\x3f\x0b\x58\xc4\x26\xd6\xc1\x8b\x48\x5a\xd5\ \xce\x02\xce\xb7\x0e\x5c\x44\x5c\xa8\x66\x16\xf0\x38\x1d\xad\xc3\ \x16\x11\x37\x92\xce\x02\xde\xa1\x8f\x75\xc8\x22\xe2\xce\x06\xbc\ \x50\x71\xfa\xbf\x41\x7f\xeb\x70\x45\xc4\xad\xee\x3c\x5c\x51\xfa\ \x3f\xa8\x6f\x7f\x91\x3c\x2a\xf1\x7d\x96\xb4\x99\xfc\xb3\x39\x9d\ \x1a\xeb\x30\x45\xc4\x97\x01\x5c\xca\xa2\x16\x93\x7f\x06\x3f\xa3\ \x87\x75\x78\xe2\x96\xaa\xb9\x34\xb7\x3e\x07\x72\x10\xdb\x31\x90\ \x0d\x58\xca\x12\x5e\x65\x22\x0f\xf1\x2c\x75\xd6\x81\x89\x6b\xff\ \x1f\x8c\xae\x26\x2a\x47\x88\x2c\xe4\x00\x00\x00\x25\x74\x45\x58\ \x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x32\ \x30\x2d\x30\x32\x2d\x31\x33\x54\x31\x36\x3a\x30\x34\x3a\x35\x31\ \x2b\x30\x30\x3a\x30\x30\x0c\xd0\x84\xb3\x00\x00\x00\x25\x74\x45\ \x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\ \x32\x30\x2d\x30\x32\x2d\x31\x33\x54\x31\x36\x3a\x30\x34\x3a\x35\ \x31\x2b\x30\x30\x3a\x30\x30\x7d\x8d\x3c\x0f\x00\x00\x00\x19\x74\ \x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\ \x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x01\x54\ \x00\ \x00\x07\x65\x78\x9c\xeb\x0c\xf0\x73\xe7\xe5\x92\xe2\x62\x60\x60\ \xe0\xf5\xf4\x70\x09\x62\x60\x60\x62\x00\x61\x0e\x16\x20\x15\x57\ \x28\x53\x08\xa4\x58\xd2\x1d\x7d\x1d\x19\x18\x36\xf6\x73\xff\x49\ \x64\x05\xf2\x15\x92\x3d\x82\x7c\x19\x18\xaa\xd4\x18\x18\x1a\x5a\ \x18\x18\x7e\x01\x85\x1a\x5e\x30\x30\x94\x1a\x30\x30\xbc\x4a\x60\ \x60\xb0\x9a\xc1\xc0\x20\x5e\x30\x67\x57\xa0\x0d\xc8\xa4\x24\x6f\ \x77\x17\x06\x86\x55\xbd\xca\x46\x40\x1e\x67\x81\x47\x64\x31\x03\ \x03\xdf\x11\x10\x66\x9c\xaa\xcd\x27\x0d\x14\x64\x2f\xf1\xf4\x75\ \x65\x7f\xc2\xc4\xc8\xa3\xa9\x27\xf4\x7d\x0d\xd0\x46\x36\x63\x4f\ \x17\xc7\x90\x8a\x5b\x6f\xaf\x5c\xe4\x6c\x30\x10\x60\x3d\x98\xb0\ \xff\xd6\x86\x6f\x8b\x54\x7f\x08\x77\xec\x30\x5e\xdf\x6c\x7d\xc3\ \x30\xcd\xf2\x58\xae\xbe\xf5\xf2\xd8\xdf\xe7\xd7\x3d\xad\xff\xf5\ \xef\x5b\xe4\xf1\x7b\x61\xf5\xd2\x11\xee\x0c\x0a\x3e\xa3\x68\x14\ \x8d\xa2\x51\x34\x8a\x46\x12\x7a\xc3\x58\x94\xa1\x5e\x97\x34\x99\ \x73\x1e\xb0\x46\x51\x2d\x71\x8d\x28\x49\x49\x2c\x49\xb5\x4a\x2e\ \x4a\x05\x52\x0c\x46\x06\x46\x06\xba\x06\x46\xba\x06\x86\x21\x86\ \x46\x56\x26\x86\x56\x26\x66\xda\x06\x06\x56\x06\x06\x93\x27\xb5\ \x5d\x46\xd1\x90\x9b\x9f\x92\x99\x56\x89\x5b\xc3\xa3\xf3\x76\xf9\ \x40\x0d\x92\x20\x0d\xc1\xf9\x69\x25\xe5\x89\x45\xa9\x0c\xe5\xe5\ \xe5\x7a\x99\x79\xd9\xc5\xc9\x89\x05\xa9\x7a\xf9\x45\xe9\xb3\xdf\ \xd9\x48\x01\x15\x31\x78\xba\xfa\xb9\xac\x73\x4a\x68\x02\x00\x09\ \xc3\x42\x19\ \x00\x00\x24\xe4\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0c\x08\x06\xab\xdd\ \x11\x68\x00\x00\x23\xb2\x49\x44\x41\x54\x78\xda\xed\xdd\x77\x9c\ \x55\xe5\xb9\xf6\xf1\xdf\xc0\xd0\xbb\x80\x28\x44\xa4\x2a\x8a\x82\ \xa2\xa0\x88\x5d\x40\x10\xd0\x08\xa2\x68\x84\x18\x35\xd6\x58\x52\ \x31\x39\x26\x9a\xa3\xe6\xc5\x72\x4e\x0e\x9a\x13\x0b\x31\x31\x2a\ \x36\xac\x88\x05\x01\x91\x28\x4d\x40\x50\x10\x11\x04\xe9\x88\x06\ \x18\x81\xa1\xcf\xcc\xf9\x43\x7c\xa7\x30\xb3\xf7\x5e\xf5\x5e\xe5\ \xfa\x3e\x1f\x74\xcf\x9e\x5d\xae\xbd\xf6\x7a\xee\x79\x56\xcf\x43\ \x92\xa2\x31\x2d\x68\x4e\x73\x1a\xd1\x78\xff\xbf\xfa\x34\xa1\x3a\ \x0d\xa9\x45\x5d\xea\x52\x6b\xff\xe3\x6a\x52\x8f\x3d\x14\x02\x45\ \x6c\x05\x60\x2b\x45\x14\xb2\x83\x6d\x6c\x65\x27\x85\x6c\x2e\xd3\ \x36\xb1\xd3\xfa\x83\x49\x70\xf2\xac\x03\x88\x2b\x75\x68\x43\x2b\ \x5a\xd1\x9a\x56\xb4\xa2\x15\x07\xd3\x9c\x9a\x01\xbd\xd7\xb7\xac\ \xe7\x2b\xd6\xf1\x35\x6b\x59\xcb\x6a\x56\xf1\x95\xf5\xc7\x17\xbf\ \xa8\x00\xc4\x45\x03\x3a\xd1\x91\xf6\xb4\xa3\x3d\xed\x69\x69\x9a\ \x65\x17\xab\x58\xc5\x97\x2c\xe3\x73\x96\xf2\x25\x7b\xad\x27\x8e\ \xb8\xa5\x02\x10\x65\x8d\xe8\x42\x67\x8e\xe2\x28\x3a\x71\x98\x75\ \x98\x2a\xed\x65\x25\x9f\xb3\x88\x45\x2c\xe2\x33\xf6\x58\xc7\x11\ \x27\x54\x00\xa2\xe7\x70\x8e\xa7\x2b\x5d\x39\x8e\xb6\xd6\x51\x1c\ \xdb\xc7\x52\x16\xf1\x11\xf3\x98\xc7\x16\xeb\x30\x92\x9d\x0a\x40\ \x54\x34\xa5\x07\xdd\xe9\x4e\x0f\x0e\xb6\x8e\xe2\x93\x15\xcc\x63\ \x2e\x1f\x32\x87\x42\xeb\x28\x52\x15\x15\x00\x6b\x9d\xe8\xc5\x69\ \xf4\xa2\x83\x75\x90\xc0\xec\xe3\x13\x66\x30\x93\x19\xac\xb4\x8e\ \x22\x15\xa9\x00\x58\xe9\x4c\x1f\xce\xa0\x17\xcd\xad\x83\x84\x68\ \x1d\x53\x99\xca\x7b\xac\xb0\x0e\x22\xdf\x53\x01\x08\x5b\x73\xce\ \xa1\x2f\x7d\x69\x65\x1d\xc4\xd0\x6a\xa6\xf2\x2e\xef\x68\x73\xa2\ \x3d\x15\x80\xb0\xe4\xd3\x95\xde\x0c\xa2\x27\xd5\xac\xa3\x44\xc6\ \x0a\x26\xf0\x3a\xef\xb3\xdb\x3a\x48\x7a\xa9\x00\x04\xaf\x3d\xe7\ \x71\x2e\x67\x52\xcf\x3a\x48\x44\x6d\x67\x0a\x13\x78\x9d\x8d\xd6\ \x41\xd2\x48\x05\x20\x48\xed\x18\xc4\x50\x4e\xd1\x54\xce\x41\x31\ \xf3\x99\xc0\xeb\xcc\xb3\x0e\x92\x2e\x9a\x35\x83\x71\x1c\x43\x18\ \xc2\x51\xd6\x31\x62\x68\x19\xe3\x18\xc7\x02\xeb\x18\x69\xa1\x02\ \xe0\xb7\xce\x0c\x65\x18\x47\x5a\xc7\x88\xb9\x95\x8c\x67\x1c\xd3\ \x29\xb1\x0e\x92\x74\x2a\x00\xfe\x39\x91\x1f\x31\x98\xd6\xd6\x31\ \x12\x64\x29\x63\x79\x5a\x1b\x0d\x83\xa4\x02\xe0\x87\x26\x0c\xe5\ \x3a\x8e\xb7\x8e\x91\x50\xf3\x78\x8a\x67\xf8\xc6\x3a\x46\x32\x55\ \x55\x00\x6a\x70\x24\x87\xb0\x87\x2f\x58\x6f\x1d\x31\xd2\xf2\xe9\ \xcf\x95\x0c\xa0\x86\x75\x90\x84\xdb\xc3\x04\x1e\x67\x22\x45\xd6\ \x41\xd2\xa0\x0d\x8f\xb2\x85\x92\xfd\xed\x33\x7e\xa5\x0d\x58\x95\ \x3a\x9a\xfb\xd9\xf0\xff\xa7\x93\x5a\xf0\x6d\x0d\x77\xd1\xce\xfa\ \x6b\x4f\xba\xeb\xd8\x71\xc0\x84\x5f\xc9\xa9\xd6\xb1\x22\xa5\x11\ \xd7\x31\xcb\xbc\x3b\xa4\xb3\x15\x31\x99\xa1\x1a\x71\x05\xe5\x0f\ \x55\x4c\xf6\x5d\x5c\x68\x1d\x2d\x22\x8e\xe4\x7f\xd9\x66\xde\x0d\ \xd2\xde\xd6\x71\x07\x87\x5a\xcf\x0a\xc9\x73\x21\xc5\x55\x4e\xf2\ \xdd\x5c\x60\x1d\xcf\x58\x1e\xfd\x78\x2b\xc3\x14\x52\x0b\xb7\xed\ \xe1\x79\x4e\xb7\x9e\x29\x92\xa4\x0e\x6b\x33\x4e\xf0\xdd\x0c\xb0\ \x8e\x68\xa6\x1e\x37\xb0\xc4\x7c\x96\x57\x3b\xb0\xcd\xe3\x72\x2d\ \x10\xf8\x63\x78\xd6\x89\xbd\x8b\x7e\xd6\x21\x0d\xb4\xe1\xfe\x32\ \x2b\x45\xd5\xa2\xd7\xd6\x72\x1b\x4d\xac\x67\x93\xf8\x7b\x3e\x87\ \x49\xbd\x93\xbe\xd6\x31\x43\x75\x1a\x2f\xb1\xcf\x7c\x06\x57\xcb\ \xde\xb6\xf3\x20\x87\x5b\xcf\x2e\xf1\xb6\x38\xa7\x09\xbd\x83\x73\ \xac\x83\x86\xa4\x37\xff\x32\x9f\xad\xd5\x9c\xb4\x3d\xfc\x83\x4e\ \xd6\xb3\x4d\x7c\xe5\xba\x4d\xbb\x90\x33\xad\xa3\x06\xae\x1f\x33\ \xcc\x67\x67\x35\x37\xad\x88\x17\x39\xc1\x7a\xf6\x89\xa7\x8d\x39\ \x4f\xe4\x64\x97\x80\xde\xda\xc6\x1f\xfb\x36\x89\x6e\xd6\xb3\x51\ \xfc\xe4\x5e\x00\x4a\xd8\xce\x19\xd6\x71\x03\xd1\x9b\x0f\xcd\x67\ \x5e\x35\x3f\x5a\x31\x2f\xe8\x98\x4c\x67\x9c\x14\x80\x12\xb6\x73\ \x9a\x75\x60\x5f\xe5\x31\x88\xb9\xe6\xb3\xad\x9a\x9f\xad\x88\x17\ \x68\x6f\x3d\x63\xc5\x87\xb3\x02\x50\x42\x01\xdd\xad\x23\xfb\xe6\ \x3c\x16\x9a\xcf\xae\x6a\x41\xb4\xdd\x3c\xc8\x21\xd6\xb3\x57\x3c\ \x38\x2d\x00\x49\x29\x01\x9d\x79\xc3\x7c\x36\x55\x0b\xb2\x15\x32\ \x3a\x31\x97\x5b\x09\x90\xf3\x02\x50\xc2\xa6\x98\x1f\x05\x7f\x18\ \x4f\x52\x64\x3e\x83\xaa\x05\xdf\x0a\xf8\xbd\x8e\x6a\xcd\xcc\x4d\ \x01\x28\x61\x73\x6c\xd7\xb7\xd6\xe7\xce\x4a\x8e\x7c\x54\x4b\x6e\ \x5b\xc7\x08\x9d\x02\xa7\x6a\xee\x0a\x40\x09\x5f\x73\xac\x75\x74\ \xc7\x6a\x70\x0d\x5f\x99\xcf\x90\x6a\xe1\xb7\x0f\x39\xd9\x7a\xe6\ \x8b\x2a\xb7\x05\xa0\x84\xaf\xe9\x6c\x1d\xde\x91\xde\x2c\x32\x9f\ \x11\xd5\xac\x5a\x11\x4f\xd2\xc2\x7a\x16\x8c\x0a\x7f\xae\x52\xd3\ \x9c\xc9\xb1\xd9\xe6\x7a\x34\xef\x31\x29\x66\x05\x4b\xfc\x54\x8d\ \xe1\x2c\xe1\x56\x1d\x43\x08\x7e\x15\x00\x38\x84\x69\x31\x38\x0b\ \x7e\x1d\xee\xe4\xa3\x84\xee\xc2\x24\x4e\x34\xe6\xcf\x2c\xe2\x3c\ \xeb\x18\xd1\xe2\x7e\x11\xe0\xbb\xb6\x26\xe2\x3b\x5d\x9c\xc7\x0a\ \xf3\xe1\xa7\x5a\xb4\xda\xab\x11\x9f\x67\x03\xe7\xe7\x85\x2a\x7f\ \xc0\xd4\xc8\x9e\xb2\xf1\x50\x9e\xe4\x0d\xda\x5a\xc7\x90\x88\xb9\ \x80\x45\xdc\x99\xe6\x85\x81\xb2\x1b\x45\x36\xfa\xb0\xb3\xc4\x6a\ \xce\xe4\x4b\xeb\x0f\x55\x41\x35\xae\xe6\x7e\x1a\x5a\xc7\x90\xc8\ \xfa\x98\xab\xd2\x7a\x4d\x42\xbf\x2f\x55\xdd\x9a\xf7\x68\x63\xfd\ \xa1\xca\xe9\xc6\x2c\x1e\x55\xf7\x97\x0c\xba\x32\x8b\x51\xd4\xb2\ \x8e\x61\xc1\xff\x6b\xd5\xb7\x66\x12\x3f\xb0\xfe\x58\xfb\x35\xe4\ \x7f\x99\x93\x88\xdd\x95\x25\x58\xf9\x8c\xe4\x23\x7a\x5a\xc7\x08\ \x9f\xff\x05\x00\x3a\xf0\x2e\x2d\xad\x3f\x18\x70\x0a\xf3\xb8\x21\ \x90\x4f\x28\x49\x74\x34\xd3\x79\x94\xfa\xd6\x31\xc2\x15\x4c\xf7\ \xe8\xc8\x54\xe3\x12\x50\x9b\x51\xbc\x4f\x07\xd3\x0c\x12\x37\x79\ \x5c\xc3\x42\xfa\x58\xc7\x08\x53\x50\x7f\x1f\x8f\x60\x92\xe1\xf1\ \x57\xdd\x99\xcf\x48\xfd\xed\x17\x17\xda\x30\x91\xc7\xd3\xb3\xce\ \x28\xb8\x4e\x72\x34\xd3\x4c\x8e\xc3\xce\x67\x24\xd3\x75\x6a\x48\ \x71\x2d\x8f\x2b\xf9\x24\x2d\x17\xc3\x0b\xf2\xaf\x64\x27\x26\xd2\ \x2c\xe4\xcf\x73\x34\xb3\x18\x95\xe6\xed\xba\xe2\x8b\xc3\x99\xca\ \x9d\x54\xb7\x8e\x11\xbc\x60\x87\xc9\x5d\x98\x4c\xd3\xd0\x3e\x4b\ \x1e\xd7\x30\x47\x67\x84\x15\x5f\xe4\x73\x07\x1f\x24\x7f\xd7\xb1\ \xa0\x97\x93\xbb\x32\x91\xc6\xa1\x7c\x92\x36\xfc\x8b\x47\xa9\x1b\ \xca\x7b\x49\x3a\x9c\xcc\x3c\x2e\xb2\x0e\x11\xac\xe0\x57\x94\x9d\ \xc0\x94\x10\x2e\xdb\x34\x90\x79\x69\x59\x6a\x93\x10\x35\x61\x1c\ \x4f\x26\x79\xd3\x60\x18\x6b\xca\xbb\xf1\x66\xa0\x6b\x55\xf3\xb9\ \x93\xd7\x38\x28\x84\x4f\x22\x69\x34\x9c\xb9\xb1\x3d\xeb\x55\x56\ \xe1\x6c\x2a\x3b\x99\x37\x03\xab\xa2\xad\x98\xca\x1d\xda\xe4\x27\ \x01\x3a\x92\x99\xfc\x32\x99\x27\x13\x0b\xab\xe3\xf4\xe2\xed\x40\ \x4a\xc0\x59\xcc\xd5\xd0\x5f\x02\x57\x93\x07\x78\x8d\x46\xd6\x31\ \xfc\x17\xde\x5f\xce\x5e\xbc\xe5\x73\x09\xc8\x63\x24\x93\x74\xce\ \x77\x09\xc9\x20\x3e\xe4\x68\xeb\x10\x7e\x0b\x73\xe8\x7c\x2a\x6f\ \xfa\x78\x62\xe6\xe6\xbc\xcd\xa8\x34\x6c\xa9\x95\xc8\x38\x82\x59\ \x0c\xb6\x0e\xe1\xaf\x70\x97\x9d\x4f\xe3\x15\x6a\xfb\xf2\x4a\xa7\ \xb3\x80\xbe\xa1\x66\x17\x81\x06\xbc\xc8\xa8\x24\xad\x71\x0a\xfb\ \xa3\xf4\xe1\x65\x1f\x8e\xbb\xbe\x95\x29\x91\x38\xde\x50\xd2\x27\ \x8f\x91\x8c\x0f\x69\xdf\x96\x10\x84\x5f\xcb\xfa\xf3\xaa\xa7\x12\ \x50\x8b\xc7\xf9\x33\xf9\xa1\xe7\x16\xf9\xde\x00\xe6\xc4\xf0\x5a\ \x18\x95\xb2\x18\xcc\xf4\xe3\x15\xd7\x25\xe0\x50\xde\xe3\x4a\x83\ \xcc\x22\x65\x75\x60\x06\x17\x5b\x87\xf0\x83\xcd\xd2\x4c\x7f\x9e\ \x71\x75\xc0\x4e\x0f\xe6\xe8\xba\x2e\x12\x09\xf5\x79\x8e\x3f\xc5\ \x7f\xdf\x00\xab\xd5\x19\x83\x79\xd6\xf1\x30\x7e\x08\xef\xd1\xca\ \x28\xaf\x48\x45\x79\xfc\x96\x71\xd4\xb1\x8e\xe1\x8d\xdd\xfa\xcc\ \x21\x0e\x4b\xc0\x2d\xbc\x10\xf7\x89\x2d\x89\x33\x84\x29\xa1\x1f\ \xf2\xee\x2b\xcb\x0d\x1a\x17\x31\x36\xc7\x12\x90\xcf\x5f\xf9\x9f\ \x24\x6d\x7c\x91\xc4\xe8\xc9\x4c\x3a\x5a\x87\x70\xcf\xb6\x53\x5d\ \xcc\xdf\x72\x48\xd0\x80\xf1\x5c\x6f\x9a\x53\xa4\x6a\x1d\x98\xc1\ \x29\xd6\x21\xdc\xb2\xfe\xab\xfa\x63\xc6\x64\xc9\xd0\x8a\x19\xf4\ \x37\x4e\x29\x92\x49\x33\xde\x61\x90\x75\x08\x77\xac\x0b\x00\x5c\ \x99\xb1\x04\x1c\xc5\x0c\x8e\xb1\x8e\x28\x92\x45\x3d\x5e\xe1\x46\ \xeb\x10\x6e\xd8\x17\x00\xb8\x92\x47\xab\xd8\x9c\xd2\x83\x69\xb4\ \xb6\x8e\x27\x92\x83\xea\xfc\x85\xd1\x91\xe8\x4f\x8e\x44\x23\xf0\ \xd5\x8c\xae\xa4\x04\x0c\x62\x2a\xcd\xad\xa3\x89\xe4\xec\x66\xc6\ \xc6\xed\x84\xb4\xd1\x28\x00\x70\x13\xff\x5d\xe1\x9e\xe1\xbc\xac\ \x33\xfc\x49\xcc\x0c\xe3\xa5\x78\x5d\x63\x30\x2a\x05\x00\x6e\x2d\ \x57\x02\xae\xe3\x09\xed\xef\x2f\x31\x34\x28\xa0\x53\xdf\x04\x24\ \x3a\x05\x00\x7e\xce\x03\xfb\x6f\xfd\x86\xbf\x46\x2a\x99\x48\xee\ \xce\x0c\xf8\x1c\x98\xbe\x8a\x56\x37\xfb\x25\xf7\x01\x23\xb9\x37\ \xfe\xfb\x58\x4b\x8a\x9d\xc6\x94\x10\xaf\x87\xe1\x49\xd9\x8e\xb6\ \xd1\xf0\x6a\x7e\xa5\x66\xe9\x70\x1f\x49\x80\xf9\xf4\xe5\xdf\xd6\ \x21\xb2\x8b\x5e\x01\x10\x49\x86\x25\x9c\xc3\x7a\xeb\x10\xd9\x44\ \x6b\x11\x40\x24\x39\x3a\xc5\xe1\xd2\x62\x2a\x00\x22\x41\x69\xcb\ \xbb\xb4\xb3\x0e\x91\x99\x0a\x80\x48\x70\xda\xf0\x1e\x6d\xac\x43\ \x64\xa2\x02\x20\x12\xa4\xc3\xa2\x7d\xed\x0a\x15\x00\x91\x60\x75\ \xe0\x9d\xe8\x5e\xb9\x52\x05\x40\x24\x68\xc7\xf2\x16\x0d\xac\x43\ \x54\x4e\x05\x40\x24\x78\x3d\x78\xcb\xc7\xab\x62\xf9\x48\x05\x40\ \x24\x0c\xbd\x7c\xb9\x24\x8e\xef\x54\x00\x44\xc2\xd1\x97\x67\xa2\ \x77\x80\x9b\x0a\x80\x48\x58\x06\xe7\x74\x0e\xcc\x50\x45\x2c\x8e\ \x48\xa2\xfd\xf8\x80\xf3\x5e\x18\x53\x01\x10\x09\xd3\x2d\xfc\xca\ \x3a\x42\x59\x2a\x00\x22\xe1\xba\x97\xc1\xd6\x11\x4a\xa9\x00\x88\ \x84\xab\x1a\x4f\xd3\xd3\x3a\x44\x69\x18\x11\x09\x57\x1d\xc6\xd3\ \xc1\x3a\xc4\x77\x54\x00\x44\xc2\xd7\x8c\xf1\x34\xb1\x0e\x01\x2a\ \x00\x22\x36\x8e\xe2\x15\x6a\x5a\x87\x50\x01\x10\xb1\x72\x06\x8f\ \x58\x47\x20\x7a\x7b\x26\x89\x8f\xbe\x65\x0b\x9b\xd9\xcc\x66\x0a\ \xd8\x02\x14\xf3\x2d\x50\xc4\x56\x00\x6a\x52\x8f\xea\x34\x24\x8f\ \xc6\x40\x23\x9a\xd1\x9c\xe6\x34\x8b\xdb\xa5\x2d\x62\xec\x27\x7c\ \xc1\x9f\x6c\x23\xe8\x9c\x80\x49\xb1\x87\x35\xac\x61\x35\xab\xf6\ \xff\xff\x1b\x36\x53\xe4\xea\x95\x9a\x70\x30\xcd\x38\x98\x36\xb4\ \xa7\x1d\xed\x68\x13\xc5\x7d\xd8\x13\xa2\x84\xcb\x78\xce\x32\x80\ \x0a\x40\x9c\x7d\xcb\x67\x2c\xda\xff\x6f\x2d\x25\x01\xbd\x4b\x35\ \x5a\xd1\x8e\xf6\x1c\x43\x57\x8e\x8b\xee\x91\xed\x31\xb5\x8b\x53\ \x99\x67\xf7\xf6\x2a\x00\xf1\xb3\x8e\xd9\xcc\x66\x01\x9f\xb1\xc6\ \xe0\xdd\x5b\xd3\x95\xae\x74\xe5\x78\xda\x5b\x4f\x88\x84\x58\xc5\ \x09\x6c\xb2\x7a\x73\x15\x80\xb8\x28\x64\x01\xf3\x98\xc7\x07\xac\ \xb0\x8e\xb2\xdf\xc1\x9c\x44\x2f\x4e\xa5\x7b\x14\xd6\x66\xc7\xda\ \x14\xce\x75\xb9\xb8\xe6\x99\x0a\x40\xd4\xed\x66\x26\x93\x99\xcc\ \x5c\xab\x59\x24\xab\x06\xf4\xe4\x54\x4e\xe7\x14\xad\x3e\x74\xed\ \x6e\x7e\x6f\xf3\xc6\x2a\x00\xd1\xb5\x82\xc9\x4c\x66\xe2\xfe\x75\ \xf6\xd1\x57\x8f\xb3\x19\xc8\x00\x5a\x59\x07\x89\xa1\x12\x2e\xe2\ \x65\x8b\x37\x56\x01\x88\x9e\x3d\x4c\xe5\x15\x5e\xe3\x2b\xeb\x20\ \xae\x54\xa3\x1b\x03\x38\x8f\x13\xb5\x8f\x89\x23\x05\x74\xe7\x8b\ \xf0\xdf\x56\x05\x20\x4a\x76\x32\x85\x71\x8c\xa7\xc0\x3a\x88\x0f\ \x9a\x31\x98\x11\x9c\xa2\xcb\xbc\xe6\x6c\x21\x3d\x29\x0c\xfb\x4d\ \x55\x00\xa2\x61\x37\xe3\x79\x86\x89\xec\xb4\x0e\xe2\xb3\x76\x0c\ \x63\x18\xc7\x5a\xc7\x88\x89\xa7\x19\x1e\xf6\x5b\xaa\x00\xd8\xfb\ \x90\x7f\xf2\x2c\x5b\xac\x63\x04\xa8\x33\xc3\xb8\x82\x1f\x58\xc7\ \x88\x81\x9b\xf8\x4b\xb8\x6f\xa8\x02\x60\x69\x03\x4f\xf3\x04\x8b\ \xad\x63\x84\xa2\x3a\xe7\x71\x2d\xfd\xa8\x6e\x1d\x24\xd2\xf6\x70\ \x26\x33\xc3\x7c\x43\x15\x00\x1b\x25\x4c\xe1\x21\xde\x88\xec\xa6\ \xbd\xa0\xb4\xe6\x6a\xae\xa2\xa5\x75\x8c\x08\x5b\xc9\x71\x7c\x1b\ \xde\xdb\xa9\x00\x84\xaf\x90\xa7\x78\x28\x25\x7f\xf7\x2b\x93\xcf\ \x40\x7e\xc6\x39\xd6\x31\x22\x2b\xd4\x35\x01\x2a\x00\xe1\x5a\xc1\ \x63\x8c\x61\xb3\x75\x8c\x08\xe8\xca\x2f\xb9\x54\x47\xa3\x56\xea\ \x32\x9e\x0d\xeb\xad\x54\x00\xc2\x33\x8f\x7b\x78\x8d\x62\xeb\x18\ \x11\xd2\x96\x5f\x70\x25\x75\xad\x63\x44\x4e\x01\x5d\x59\x1d\xce\ \x5b\xa9\x00\x84\x63\x16\x77\xf1\xa6\x75\x88\x48\x6a\xc6\x8d\xdc\ \x48\x73\xeb\x18\x11\x33\x8d\xb3\xc3\xff\x53\xb1\x91\x12\xb5\x00\ \xda\x07\x0c\xb2\x9e\x9f\x22\xae\x1e\x23\xd9\x6c\xfe\x3d\x45\xab\ \x8d\x0c\xff\x6b\x50\x01\xf0\xbf\x4d\xe5\x0c\xeb\xde\x15\x13\x4d\ \xf8\x13\xdb\xcd\xbf\xaf\xe8\xb4\xdd\x74\x0b\xfb\x2b\x50\x01\xf0\ \xb7\x7d\xc6\x50\xeb\x5e\x15\x33\xcd\x18\xc5\x4e\xf3\xef\x2d\x2a\ \x6d\x19\xf5\xc3\x9d\xfc\x2a\x00\xfe\xb5\xf5\xfc\x54\xbb\xbc\xb8\ \xd2\x9a\x7f\x50\x64\xfe\xfd\x45\xa3\x3d\x1c\xee\xa4\x57\x01\xf0\ \xa7\x6d\xe3\x0f\xd4\xb3\xee\x47\xb1\xd6\x9d\x99\xe6\xdf\x62\x14\ \x5a\x31\x03\xc3\x9c\xec\x2a\x00\x7e\x7c\x65\x8f\x73\x88\x75\xff\ \x49\x80\x3c\x46\xb0\xde\xfc\xdb\xb4\x6f\xeb\x68\x14\xec\x84\xd6\ \x31\xdb\x7e\x5a\x4a\x6f\xae\x8a\xe9\x71\xfc\xd1\x52\xc2\x93\x74\ \xe4\x8f\xec\xb6\x0e\x62\xac\x25\xa3\xc2\x7b\x33\x8d\x00\xbc\xb4\ \xed\xfc\x46\xa7\xc4\xf2\x5d\x47\x26\x9a\x7f\xb3\xb6\xad\x88\xd3\ \x82\x9c\xc0\xda\x11\xc8\x1f\x13\xb8\x89\x95\xd6\x21\x12\x6a\x28\ \x0f\xd3\xd4\x3a\x84\xa1\xa5\x74\x65\x57\x50\x2f\xae\x45\x00\xef\ \xd6\x73\x21\x83\xd4\xfd\x03\x33\x8e\x63\x6d\xce\x97\x17\x11\x47\ \xf0\xbb\x70\xde\x48\x8b\x00\x6e\xda\x0b\xa9\xfe\xeb\x14\x9e\x41\ \xac\x35\xff\xae\xad\xda\x6e\x3a\x07\x35\x59\x35\x02\xf0\x62\x13\ \x97\x70\xb1\xdd\x45\x1d\x52\xe5\x75\xba\xf0\x94\x75\x08\x23\x35\ \x19\x13\x54\x4f\x55\x01\x70\x6f\x22\x5d\x79\xc1\x3a\x44\x8a\x6c\ \x66\x04\x43\x52\x7a\x28\x75\x4f\xae\x0f\xfe\x4d\xb4\x08\x90\x7b\ \x2b\xe4\x16\x9d\xef\xd6\xc4\x61\x4c\x33\xff\xf6\x2d\xda\x56\x0e\ \x0b\x62\x72\x6a\x04\xe0\xc6\x02\xba\x32\x9a\xa0\x2e\xc6\x29\x99\ \xac\xe1\x6c\x6e\x63\xaf\x75\x8c\xd0\x35\xe0\x91\x20\x5e\x56\x05\ \xc0\xb9\x31\xf4\xb4\xb8\x84\x83\xec\x57\xc4\xbd\x9c\x95\xc2\xad\ \x2e\xe7\xf1\x43\xff\x5f\x54\x05\xc0\x99\x42\x86\x73\x4d\x70\x5b\ \x65\x25\x47\xd3\x39\x9e\x57\xac\x43\x84\xee\x01\x6a\xf9\xfd\x92\ \x2a\x00\x4e\x2c\xa1\x27\x4f\x5b\x87\x10\x00\x0a\x18\xc2\x6d\x29\ \x3b\xab\x72\x7b\x6e\xf6\xfb\x25\xb5\x27\x60\xee\x9e\xe6\xba\xf0\ \x2f\xdd\x24\x19\xf5\x67\x2c\x4d\xac\x43\x84\x68\x2b\x47\xb0\xd1\ \xcf\x17\xd4\x08\x20\x37\x25\xfc\x91\xe1\xea\xfe\x91\xf3\x16\xdd\ \x59\x68\x1d\x22\x44\x0d\xb9\x3b\xb8\x17\xd7\x66\xc0\xaa\xda\xb6\ \x20\x56\xbf\x88\x4f\xea\xf0\x4f\xf3\x39\x24\xbc\x56\xc4\x89\x7e\ \x4e\x3c\x8d\x00\xb2\x5b\x4d\x2f\x5e\xb5\x0e\x21\x55\xda\xc9\x15\ \xdc\x4e\x5a\x36\xca\x56\xe3\x01\x7f\x5f\x4e\x32\x9b\xc5\x49\x7c\ \x62\x1d\x42\x32\x2a\xe1\x1e\x2e\x49\xcd\xb6\x99\x33\x18\xe2\xdf\ \x8b\xa9\x00\x64\x36\x96\xb3\x74\x82\x8f\x58\x18\xc7\x00\x0a\xac\ \x43\x84\xe4\x7e\x6a\xfb\xf5\x52\x2a\x00\x99\x3c\xc8\x88\xd4\xfc\ \x5d\x89\xbf\x77\x39\x95\x55\xd6\x21\x42\xd1\x96\x9f\x07\xf1\xb2\ \x5a\x09\x58\xb6\x15\x73\x9b\xf5\xf7\x2c\x8e\xb5\x64\xbe\xf9\x9c\ \x13\x46\xdb\xca\xa1\xfe\x4c\x30\x8d\x00\x2a\x57\xc4\xb5\x61\x9e\ \x8d\x4d\x7c\xb2\x9e\xd3\x79\xd7\x3a\x44\x08\x1a\xf0\x7b\x7f\x5e\ \x48\x3b\x02\x55\x66\x0f\xc3\x75\xa0\x6f\x6c\xd5\xe2\x79\x2e\xb0\ \x0e\x11\xb8\xbd\x1c\xc5\x72\xef\x2f\xa3\x11\xc0\x81\x0a\x39\x5f\ \xdd\x3f\xc6\x76\x73\x31\x2f\x59\x87\x08\x5c\x0d\xee\xf0\xe3\x65\ \x54\x00\x0e\x34\x97\xa9\xd6\x11\xc4\x93\x3d\x0c\xe3\x39\xeb\x10\ \x81\xfb\x11\xc7\x78\x7f\x11\x15\x80\x03\x9d\xc1\xab\xfe\x1f\x75\ \x25\xa1\xda\xc7\xe5\xfc\xdd\x3a\x44\xc0\xaa\x71\x97\x1f\x2f\x22\ \x07\xea\xcf\x73\x3a\xc7\x7f\xcc\x15\xf1\xd3\x60\x4e\xa1\x11\x21\ \x17\xd0\xdd\xeb\x4b\xa8\x00\x54\xee\x87\x2a\x01\xb1\x57\xcc\x0d\ \x8c\xb1\x0e\x11\xa8\x3c\xfe\xe0\xf5\x25\x54\x00\xaa\x32\x98\x67\ \xc9\xb7\x0e\x21\x9e\x94\x70\x7d\xc2\xd7\x05\x0c\xf4\x3a\x06\x50\ \x01\xa8\xda\x10\x95\x80\xd8\x2b\x62\x04\x6f\x58\x87\x08\xd4\xed\ \xde\x9e\xae\x02\x90\xc9\x45\x3c\xa3\x12\x10\x73\x7b\x19\xca\x7b\ \xd6\x21\x02\x74\xbe\xb7\xc3\x83\x55\x00\x32\x1b\xca\x3f\xa8\x6e\ \x1d\x42\x3c\xd9\xc9\x05\xcc\xb5\x0e\x11\xa0\xff\xf0\xf2\x64\x15\ \x80\x6c\x2e\xe7\x71\x4d\xa5\x98\xdb\x4a\x3f\x16\x5b\x87\x08\xcc\ \x05\x5e\x2e\x1c\xa6\x59\x3b\xbb\x1f\xab\x04\xc4\xde\x26\x06\xf8\ \x7b\x2e\xbd\x08\xc9\xe3\xd7\xee\x9f\xac\x19\x3b\x17\x57\x04\x77\ \x6d\x36\x09\xc9\x4a\x06\xb2\xc3\x3a\x44\x40\x2e\xa3\xb5\xdb\xa7\ \x6a\xb6\xce\xcd\x95\x3c\xa6\x69\x15\x73\x73\x19\x41\xb1\x75\x88\ \x40\xd4\xe0\x56\x3f\x5e\x46\xe7\x03\xc8\xdc\xc6\xe8\x6a\x80\xb1\ \x77\x9b\xf9\x5c\x14\x4c\xdb\xee\xf6\x22\xf5\x65\xd7\x70\xff\x9a\ \x7a\xd6\xdf\x4f\xa4\x75\xe3\x20\xde\xb6\x0e\x21\x9e\x7c\xc0\x61\ \x74\xb3\x0e\x11\x80\x9a\x6c\xe5\x7d\x37\x4f\xd4\xf9\x00\x9c\x19\ \xed\xcf\x60\x4b\xcc\xd4\xe0\x6d\xce\xb6\x0e\x11\x80\xf5\xb4\x65\ \x8f\xf3\xa7\x69\xb9\xd6\x99\x5b\xf8\xb3\x75\x04\xf1\x64\x2f\x43\ \x13\x79\x61\xd1\x96\x5c\xec\xe6\x69\x2a\x00\x4e\xdd\xca\x7f\x5b\ \x47\x10\x4f\x36\x73\x09\xbb\xad\x43\x04\xc0\xd5\x89\x42\x55\x00\ \x9c\xfb\xb9\xbf\x97\x66\x90\xd0\x7d\xc8\x2f\xac\x23\x04\xa0\x1b\ \xa7\x3a\x7f\x92\x56\x02\xba\x71\x0a\xf5\x98\x64\x1d\x42\x3c\x98\ \x43\x1b\x8e\xb3\x0e\xe1\xbb\x86\x8c\x73\xfa\x14\xad\x04\x74\xeb\ \x3f\xfd\x39\x27\x9b\x18\xa9\xcb\x4c\xba\x58\x87\xf0\xd9\x3e\xda\ \xb2\xd6\xd9\x53\xb4\x08\xe0\xd6\x1f\xbc\x9f\x8c\x41\x0c\xed\x60\ \x08\xdf\x5a\x87\xf0\x59\x3e\x57\x3b\x7d\x8a\x0a\x80\x7b\x7f\xf4\ \x7a\x2c\xb6\x98\xfa\x82\x9f\x59\x47\xf0\xdd\x35\x4e\xcf\x63\xa5\ \x75\x00\x5e\x9c\xcd\x3e\x77\xbb\x5f\x48\x24\x7c\xc2\x91\x1c\x6b\ \x1d\xc2\x57\x0d\x98\xcf\x12\x27\x4f\xd0\x08\xc0\x9b\xbb\xf9\xad\ \x75\x04\xf1\xe0\x06\x56\x5b\x47\xf0\xd9\xb5\xce\x1e\xae\x02\xe0\ \xd5\x9f\x12\xb9\x49\x29\x2d\x0a\xb8\x22\x61\x07\x08\xf5\xa1\xbd\ \x93\x87\x6b\x11\xc0\xbb\x73\xd9\xc9\x74\xeb\x10\xe2\xd2\x4a\xea\ \xd3\xcb\x3a\x84\x8f\xf2\xd8\xee\xe4\xea\x88\xda\x0c\xe8\x87\x12\ \x6e\xe1\x21\xeb\x10\xe2\x52\x2d\x66\x25\x6a\x9f\x80\x75\x1c\x4e\ \x51\xae\x0f\xd6\x22\x80\x1f\xf2\x18\xcd\x0d\xd6\x21\xc4\xa5\xdd\ \x8c\x60\xaf\x75\x08\x1f\xb5\xa2\x4f\xee\x0f\xd6\x22\x80\x3f\xf2\ \x38\x8f\x6f\x98\x63\x1d\x43\x5c\xf9\x9a\x5a\x9c\x6e\x1d\xc2\x47\ \x35\x78\x31\xd7\x87\x6a\x11\xc0\x3f\x25\xdc\xc8\xc3\xd6\x21\xc4\ \x95\x5a\x2c\xa0\x93\x75\x08\xdf\xec\xa1\x25\x9b\x72\x7b\xa8\x16\ \x01\xfc\x93\xc7\x5f\xf8\x89\x75\x08\x71\x65\x37\x37\x50\x62\x1d\ \xc2\x37\x35\xb9\x24\xd7\x87\xaa\x00\xf8\xa9\x1a\x8f\x73\x8d\x75\ \x08\x71\x65\x2a\x4f\x58\x47\xf0\xd1\x8f\x72\x7d\xa0\x16\x01\xfc\ \x56\xcc\x15\x3c\x65\x1d\x42\x5c\x38\x88\xc5\xb4\xb0\x0e\xe1\x93\ \x12\xda\xf3\x65\x2e\x0f\xd4\x08\xc0\x6f\xd5\xf8\x07\x97\x59\x87\ \x10\x17\x36\xbb\x3b\xa5\x46\x24\xe5\x71\x69\x6e\x0f\x54\x01\xf0\ \x5f\x75\x9e\xcc\x7d\x08\x26\x11\xf2\x2c\x93\xad\x23\xf8\xe6\xf2\ \xdc\x1e\xa6\x02\x10\x84\xea\xfc\x33\xd7\x0a\x2c\x91\xf2\xeb\xdc\ \x77\xa1\x89\xb8\xa3\x72\x3b\xdb\x81\x0a\x40\x30\xaa\xf3\x4f\x06\ \x5b\x87\x10\xc7\x16\x24\x68\x55\xe0\xb0\x5c\x1e\xa4\x95\x80\xc1\ \xd9\xcb\xc5\xbc\x6a\x1d\x42\x1c\x3a\x98\x65\x34\xb4\x0e\xe1\x8b\ \x65\x1c\x91\xfd\x41\x1a\x01\x04\xa7\x06\x2f\x70\x81\x75\x08\x71\ \xe8\x6b\xee\xb5\x8e\xe0\x93\x8e\xb9\x2c\x04\xa8\x00\x04\xa9\x06\ \x2f\x70\xbe\x75\x08\x71\xe8\xbf\x58\x6e\x1d\xc1\x27\x43\xb2\x3f\ \x44\x05\x20\x58\x35\x79\x81\xfe\xd6\x21\xc4\x91\xdd\xfc\xce\x3a\ \x82\x4f\x54\x00\x22\xa0\x16\xaf\x32\xc0\x3a\x84\x38\x32\x2e\x21\ \x87\x75\x75\xce\x7e\x7c\x83\x0a\x40\xf0\x6a\x32\x8e\xde\xd6\x21\ \xc4\x81\x12\xee\xb2\x8e\xe0\x93\x0b\xb3\x3d\x40\x05\x20\x0c\x75\ \x18\x9f\xc8\x0b\x52\x26\xd7\xeb\x7c\x68\x1d\xc1\x17\x83\xb2\x3d\ \x40\x05\x20\x1c\x75\x78\x9d\xb3\xac\x43\x88\x03\xff\x69\x1d\xc0\ \x17\x27\x65\x3b\xba\x41\x05\x20\x2c\x75\x99\xc0\x99\xd6\x21\x24\ \x67\x6f\x30\xcb\x3a\x82\x0f\xaa\xd1\x2f\xdb\x03\x24\x2c\x75\x99\ \xc0\x19\xd6\x21\x24\x67\x77\x5a\x07\xf0\x45\x96\x15\xd0\xda\x13\ \x30\x5c\xdb\x38\x97\x99\xd6\x21\x24\x47\x1f\x24\xe0\x7c\xc1\xdf\ \xd2\x3c\xd3\x19\x0f\x35\x02\x08\x57\x03\xde\xe6\x24\xeb\x10\x92\ \xa3\x51\xd6\x01\x7c\xd0\x28\xf3\x45\xc3\x55\x00\xc2\xd6\x90\x89\ \xf4\xb0\x0e\x21\x39\x79\x83\xcf\xac\x23\xf8\xa0\x6f\xa6\x5f\xaa\ \x00\x84\xaf\x11\xef\xd0\xdd\x3a\x84\xe4\xa0\x84\xd1\xd6\x11\x7c\ \x90\xf1\x24\xe1\x5a\x07\x60\xa3\x80\x3e\xcc\xb5\x0e\x21\x59\xd5\ \x66\x65\xec\x4f\x13\x56\xcc\x21\x7c\x53\xd5\x2f\x35\x02\xb0\xd1\ \x98\xb7\x39\xd9\x3a\x84\x64\xb5\x8b\x47\xad\x23\x78\x56\x8d\x73\ \x32\xfd\x52\x6c\x34\x65\x1a\x37\x5b\x87\x90\xac\xfe\xca\x2e\xeb\ \x08\x9e\x65\x58\x08\x50\x01\xb0\x53\x93\xd1\x5c\x67\x1d\x42\xb2\ \xd8\xc8\x58\xeb\x08\x9e\x65\x38\x12\x45\xeb\x00\x6c\xed\xe6\x14\ \x3e\xb2\x0e\x21\x19\x75\xe1\x63\xeb\x08\x9e\xb5\x67\x45\xe5\xbf\ \xd0\x08\xc0\x56\x2d\x6e\xb7\x8e\x20\x59\x7c\x92\x80\x83\x83\x4f\ \xab\xea\x17\x2a\x00\xd6\xce\xe7\x30\xeb\x08\x92\xc5\xdf\xac\x03\ \x78\x56\xe5\x2e\xe8\x2a\x00\xd6\xaa\x67\x5a\x47\x2b\x91\xf0\x1c\ \x85\xd6\x11\x3c\xaa\xf2\xda\xc7\x2a\x00\xf6\xda\x5a\x07\x90\x2c\ \xb6\x32\xce\x3a\x82\x47\xed\xab\x1a\x67\x96\x2d\x00\x3b\xad\x53\ \xa6\x54\x75\xeb\x00\x92\x55\xfc\x17\x02\xaa\x38\x22\xa0\x6c\x01\ \xd8\x60\x9d\x31\xa5\xd6\x5b\x07\x90\xac\xa6\xc7\xfe\xa8\x80\x9e\ \x95\xdf\x5d\xb6\x00\xe8\x30\x55\x1b\x49\x38\xf1\x44\xf2\xfd\xdd\ \x3a\x80\x47\x55\xec\x77\x5a\x76\x3f\x80\x9e\xcc\xb0\x4e\x99\x42\ \xcb\xe9\x48\x89\x75\x08\xc9\xea\x30\x56\x95\xeb\x2d\x71\xb3\x87\ \x46\x95\xed\xd3\x58\x7e\x04\xf0\xb6\x75\xca\x14\xba\x43\xdd\x3f\ \x16\xd6\xc4\x7c\x84\x5c\x93\x13\x2a\xbb\xbb\xfc\x56\x80\xeb\xf9\ \xb7\x75\xce\x94\x79\x95\x67\xad\x23\x48\x8e\xe2\xbe\x25\xa0\xd2\ \x13\xd1\x94\x2f\x00\x2b\x39\x5f\x25\x20\x44\x53\x19\x4e\xb1\x75\ \x08\xc9\xd1\x8b\x31\xff\xae\x2a\x5d\x0b\x50\x71\x3f\x80\x99\x9c\ \xc4\x24\xeb\xa4\xa9\xb0\x93\x7b\xe8\xcb\x76\xeb\x18\x92\xb3\xb5\ \x31\x5f\x08\xa8\x74\x11\xa0\xf2\xd5\x1a\xa7\x31\x94\x9e\xb4\xa4\ \x8e\x75\xe6\x44\xda\xc4\x2a\x26\xf2\x0c\xeb\xac\x83\x88\x43\x37\ \xc7\xfa\x0c\x41\x25\x1c\x44\x41\xc5\x3b\xe3\xbc\x5e\x53\x24\x5c\ \x87\xb2\x36\xd6\xfb\xce\x9e\xc9\xb4\x8a\x77\xc5\xf9\xe3\x88\x84\ \x6b\x03\xb3\xad\x23\x78\x72\xfc\x81\x77\xa9\x00\x88\xe4\x2e\xde\ \x1b\xca\x55\x00\x44\x3c\x89\x77\x01\x38\xee\xc0\xbb\xb4\x0e\x40\ \x24\x77\xd5\xd8\x48\x33\xeb\x10\xae\xed\xa5\x5e\xc5\xab\x04\x69\ \x04\x20\x92\xbb\xe2\x58\x6f\x24\xaf\x41\xc7\x8a\x77\xa9\x00\x88\ \x38\x31\xd1\x3a\x80\x27\x9d\x2b\xde\xa1\x02\x20\xe2\xc4\xc4\x58\ \x1f\xbb\x71\x74\xc5\x3b\x54\x00\x44\x9c\xf8\x8a\x05\xd6\x11\x3c\ \x50\x01\x10\xf1\x68\x8a\x75\x00\x0f\xb4\x08\x20\xe2\x51\x9c\xcf\ \x9a\xd1\x91\xfc\xf2\x77\xa8\x00\x88\x38\x33\xdd\x3a\x80\x07\x35\ \x69\x5d\xfe\x0e\x15\x00\x11\x67\xbe\xe6\x0b\xeb\x08\x1e\x74\x28\ \xff\xa3\x0a\x80\x88\x53\x71\x5e\x08\x68\x5f\xfe\x47\x15\x00\x11\ \xa7\xe2\xbc\x10\xa0\x02\x20\xe2\x51\x9c\x47\x00\x5a\x04\x10\xf1\ \x68\xf1\x81\x27\xd6\x88\x8d\x0a\x3b\x03\xab\x00\x88\x38\x55\xcc\ \x5c\xeb\x08\xae\x69\x2b\x80\x88\x67\x0b\xad\x03\xb8\x56\x9f\x26\ \x65\x7f\x54\x01\x10\x71\x2e\xbe\x05\xa0\xc2\x18\x40\x05\x40\xc4\ \xb9\x38\x17\x80\x72\xd7\x09\x56\x01\x10\x71\xee\x53\x8a\xac\x23\ \xb8\xa6\x11\x80\x88\x47\x3b\x59\x61\x1d\xc1\x35\x8d\x00\x44\x3c\ \xfb\xc4\x3a\x80\x6b\xad\xca\xfe\xa0\x02\x20\xe2\xc6\x22\xeb\x00\ \xae\x1d\x5c\xf6\x07\x15\x00\x11\x37\x3e\xb3\x0e\xe0\x5a\x8b\xb2\ \x3f\xa8\x00\x88\xb8\xb1\xd2\x3a\x80\x6b\x2a\x00\x22\x9e\xad\xb4\ \x0e\xe0\x5a\xf3\xb2\xbd\x5e\x05\x40\xc4\x8d\x8d\x14\x5a\x47\x70\ \x29\x9f\x83\x4a\x7f\x50\x01\x10\x71\x67\x95\x75\x00\xd7\xca\xac\ \x06\x54\x01\x10\x71\x67\xa5\x75\x00\xd7\xca\x1c\x0d\xa0\x02\x20\ \xe2\xce\x4a\xeb\x00\xae\x35\x2e\xbd\xa9\x02\x20\xe2\xce\x4a\xeb\ \x00\xae\x35\x2e\xbd\xa9\x02\x20\xe2\x4e\x7c\xd7\x01\x34\x2e\xbd\ \xa9\x02\x20\xe2\xce\xbf\xad\x03\xb8\xa6\x75\x00\x22\x9e\xc5\xb7\ \x00\x34\x2a\xbd\xa9\x02\x20\xe2\xce\x26\xeb\x00\xae\x35\x28\xbd\ \xa9\x02\x20\xe2\x4e\x7c\x0b\x40\x9d\xd2\x9b\x2a\x00\x22\xee\xec\ \x8a\xed\xbe\x80\x75\x4b\x6f\xaa\x00\x88\xb8\x15\xd7\x31\x80\x0a\ \x80\x88\x0f\xe2\x5a\x00\xb4\x08\x20\xe2\x83\xb8\x16\x80\x7a\xa5\ \x37\x55\x00\x44\xdc\x8a\xeb\x3a\x80\xda\xa5\x37\x55\x00\x44\xdc\ \xda\x63\x1d\xc0\xa5\xfc\xd2\x9b\x2a\x00\x22\x6e\xed\xb6\x0e\xe0\ \x92\x0a\x80\x88\x0f\xe2\x3a\x02\xa8\x5e\x7a\x53\x05\x40\xc4\x2d\ \x8d\x00\x44\x52\x4c\x23\x00\x91\x14\xd3\x08\x40\x24\xc5\xe2\x3a\ \x02\x28\x43\x05\x40\xc4\xad\xb8\x5e\x20\x74\x6f\xe9\x4d\x15\x00\ \x11\xb7\x6a\x7b\x7f\x09\x13\x2a\x00\x22\x3e\xa8\xe3\xfd\x25\x4c\ \xa8\x00\x88\xf8\x40\x23\x00\x91\x14\xd3\x08\x40\x24\xc5\x34\x02\ \x10\x49\xb1\xb8\x8e\x00\xca\x1c\xc5\xa8\x02\x20\xe2\x96\x0a\x80\ \x48\x8a\xa9\x00\x88\xa4\x58\x33\xeb\x00\x2e\x6d\x2f\xbd\xa9\x02\ \x20\xe2\x56\x73\xeb\x00\x2e\x69\x04\x20\xe2\x59\x7e\xd9\x6b\xec\ \xc5\x8a\x46\x00\x22\x9e\x35\x23\xcf\x3a\x82\x4b\x2a\x00\x22\x9e\ \xb5\xb0\x0e\xe0\xda\xe6\xd2\x9b\x2a\x00\x22\xee\xc4\x75\x0d\x80\ \x0a\x80\x88\x0f\x54\x00\x44\x52\x2c\xbe\x05\x60\x4b\xe9\x4d\x15\ \x00\x11\x77\x5a\x5b\x07\x70\xad\xcc\x15\x8d\x54\x00\x44\xdc\x69\ \x67\x1d\xc0\x35\x8d\x00\x44\x3c\x6b\x6f\x1d\xc0\xa5\x5d\x6c\x2d\ \xfd\x41\x05\x40\xc4\x9d\xb6\xd6\x01\x5c\xda\x50\xf6\x07\x15\x00\ \x11\x37\x5a\xd0\xc0\x3a\x82\x4b\x5f\x95\xfd\x41\x05\x40\xc4\x8d\ \xb8\x2e\x00\xa8\x00\x88\xf8\x20\xbe\xab\x00\xb5\x08\x20\xe2\x59\ \x7c\x47\x00\x1b\xcb\xfe\xa0\x02\x20\xe2\xc6\x51\xd6\x01\x5c\xd3\ \x08\x40\xc4\xb3\xe3\xac\x03\xb8\xb6\xaa\xec\x0f\x2a\x00\x22\xce\ \xd5\xa3\xa3\x75\x04\xd7\x54\x00\x44\x3c\xea\x12\xdb\x9e\x53\xc2\ \x9a\xb2\x3f\xc6\xf5\x63\x88\x58\xea\x6a\x1d\xc0\xb5\x6f\xd8\x51\ \xf6\x47\x15\x00\x11\xe7\xe2\x5b\x00\x56\x95\xff\x51\x05\x40\xc4\ \x39\x15\x00\x91\xd4\xaa\xc6\xb1\xd6\x11\x5c\xfb\xa2\xe2\x47\x11\ \x11\x67\x8e\xa1\xbe\x75\x04\xd7\x96\x95\xff\x51\x05\x40\xc4\xa9\ \xd3\xac\x03\x78\xa0\x02\x20\xe2\x51\x82\x0a\x40\x5c\xcf\x6c\x2e\ \x62\x67\x1d\x2d\xad\x23\xb8\xb4\x8d\x46\x94\x94\xbd\x43\x23\x00\ \x11\x67\x3a\xc4\xb6\xfb\xc3\xb2\xf2\xdd\x5f\x05\x40\xc4\xa9\x38\ \x2f\x00\x7c\x5e\xf1\x0e\x15\x00\x11\x67\xe2\x5c\x00\x16\x55\xbc\ \x43\x05\x40\xc4\x99\x38\x17\x80\x4f\x2b\xde\xa1\x02\x20\xe2\x44\ \x3b\x3a\x58\x47\xf0\x40\x23\x00\x11\x4f\x06\x5a\x07\xf0\x60\x07\ \x5f\x56\xbc\x4b\x05\x40\xc4\x89\xf3\xac\x03\x78\xb0\x98\xe2\x8a\ \x77\xa9\x00\x88\xe4\xae\x1e\x67\x58\x47\xf0\x60\xd1\x81\x77\xa9\ \x00\x88\xe4\xee\x1c\x6a\x5b\x47\xf0\xe0\xa3\x03\xef\x52\x01\x10\ \xc9\xdd\x00\xeb\x00\x9e\x54\x52\x00\xb4\x2b\xb0\x48\xee\x56\xc5\ \xf8\x9a\xc0\xc5\x34\x62\x7b\xc5\x3b\x35\x02\x10\xc9\xd5\x71\x31\ \xee\xfe\xb0\xf4\xc0\xee\xaf\x02\x20\x92\xbb\x61\xd6\x01\x3c\x99\ \x5b\xd9\x9d\x2a\x00\x22\xb9\xc9\xe3\x12\xeb\x08\x9e\xcc\xaf\xec\ \x4e\x15\x00\x91\xdc\xf4\xa4\x8d\x75\x04\x4f\x66\x55\x76\xa7\x0a\ \x80\x48\x6e\x2e\xb5\x0e\xe0\xc9\x9e\xca\xb6\x01\xa8\x00\x88\xe4\ \xa6\x3a\x43\xad\x23\x78\xf2\x11\xbb\x2a\xbb\x5b\x05\x40\x24\x17\ \x67\xd3\xc2\x3a\x82\x27\x33\x2b\xbf\x5b\x05\x40\x24\x17\xf1\x5e\ \x00\xa8\xb2\x00\x68\x47\x20\x91\xec\xea\xb1\x9e\x86\xd6\x21\x3c\ \x69\x5d\xfe\x9a\x80\xdf\xd3\x08\x40\x24\xbb\x4b\x63\xde\xfd\x57\ \x57\xde\xfd\x55\x00\x44\x72\x71\xad\x75\x00\x8f\xde\xad\xea\x17\ \x2a\x00\x22\xd9\x1c\xc7\x89\xd6\x11\x3c\x9a\x56\xd5\x2f\x54\x00\ \x44\xb2\xb9\xc1\x3a\x80\x67\x55\x16\x00\xad\x04\x14\xc9\xac\x3e\ \xeb\x69\x60\x1d\xc2\x93\x35\x55\x1f\xc4\xa4\x11\x80\x48\x66\x97\ \xc7\xbc\xfb\xc3\xd4\xaa\x7f\xa5\x02\x20\x92\x49\x1e\xd7\x5b\x47\ \xf0\x4c\x05\x40\xc4\xa5\x73\xe9\x62\x1d\xc1\xa3\x12\xde\xa9\xfa\ \x97\x2a\x00\x22\x99\xfc\xc6\x3a\x80\x67\x8b\x58\x5f\xf5\x2f\x55\ \x00\x44\xaa\x76\x22\x67\x59\x47\xf0\x6c\x62\xa6\x5f\xaa\x00\x88\ \x54\x6d\xa4\x75\x00\x1f\xbc\x93\xe9\x97\xda\x0c\x28\x52\x95\x76\ \x2c\xa5\xba\x75\x08\x8f\x76\xd2\x94\x9d\x55\xff\x5a\x23\x00\x91\ \xaa\xfc\x3a\xf6\xdd\x1f\xde\xcb\xd4\xfd\x55\x00\x44\xaa\x72\x08\ \x3f\xb6\x8e\xe0\x83\xd7\x33\xff\x5a\x05\x40\xa4\x72\xbf\xa3\x8e\ \x75\x04\xcf\x4a\xb2\x15\x00\xad\x03\x10\xa9\x4c\x6b\x96\x52\xcb\ \x3a\x84\x67\xf3\xe9\x96\xf9\x01\x1a\x01\x88\x54\xe6\x8e\x04\x74\ \xff\xac\x0b\x00\x1a\x01\x88\x54\xa6\x23\x8b\xc9\xb7\x0e\xe1\x83\ \xee\x95\x5f\x0e\xa4\x94\x46\x00\x22\x07\xba\x2b\x11\xdd\x7f\x1d\ \xf3\xb2\x3d\x44\x05\x40\xa4\xa2\x63\x63\x7e\x0a\xf0\xef\xbd\x48\ \x49\xb6\x87\xa8\x00\x88\x54\x34\x2a\x21\xfd\xe2\xa5\xec\x0f\xd1\ \x3a\x00\x91\xf2\xfa\x64\xde\x79\x36\x36\xbe\xe2\x07\x14\x65\x7b\ \x50\x32\x2a\x9d\x88\x5f\x6a\xf2\x90\x75\x04\x9f\xbc\x98\xbd\xfb\ \xab\x00\x88\x94\x77\x0b\x47\x5a\x47\xf0\xc9\x8b\xb9\x3c\x48\x8b\ \x00\x22\xa5\x0e\x65\x49\xcc\xaf\x00\xf0\xbd\x9c\x16\x00\x34\x02\ \x10\x29\x6b\x54\x42\xba\x3f\x3c\x97\x4b\xf7\x17\x91\x52\x3d\x29\ \xa6\x24\x21\x2d\xc7\x2b\x19\x68\x11\x40\xe4\x3b\xf9\xcc\xce\xb6\ \xe7\x7c\x6c\x7c\x4e\xa7\xdc\x1e\xa8\x45\x00\x91\xef\xfc\x32\x31\ \xdd\x1f\xc6\xe6\xfa\x40\x8d\x00\x44\x00\x8e\x60\x41\x02\x0e\xff\ \x2d\xfd\x34\xcb\x72\x7b\xa0\x46\x00\x22\x50\x8d\x31\x09\xea\xfe\ \x33\x72\xed\xfe\x2a\x00\x22\x00\xd7\x73\xba\x75\x04\x1f\xfd\x3d\ \xf7\x87\x6a\x11\x40\xa4\x35\x8b\x62\x7f\xf9\xaf\x52\x85\x1c\xca\ \xb6\x5c\x1f\xac\x11\x80\xc8\x5f\x12\xd4\xfd\xe1\xf9\xdc\xbb\xbf\ \x88\x5c\x67\xbe\xcd\xde\xdf\xd6\xcb\xc9\x87\xd7\x22\x80\xa4\xdb\ \xd1\xcc\xa1\xae\x75\x08\x1f\x2d\xa5\x53\xf6\xb3\x00\x94\xd2\x22\ \x80\xa4\x59\x6d\x9e\x4d\x54\xf7\x87\x31\x4e\xba\xbf\x48\xba\x3d\ \x64\x3e\x60\xf7\xb7\xed\xa0\xa9\xf5\x24\x15\x89\x8b\xfe\x09\xda\ \xf7\xff\xbb\xf6\x84\xd3\x49\xa0\x75\x00\x92\x56\x2d\xf8\x98\x16\ \xd6\x21\x7c\x76\x32\xb3\x9d\x3d\x41\xeb\x00\x24\x9d\xf2\x79\x2e\ \x71\xdd\x7f\xbe\xd3\xee\xaf\x02\x20\x69\x75\x1f\x67\x5a\x47\xf0\ \xdd\xc3\xd6\x01\x44\xe2\xe1\x32\xf3\xa5\x75\xff\xdb\x26\xea\x39\ \x9f\x10\x1a\x01\x48\xfa\x74\x65\x8c\x75\x84\x00\x3c\x4c\xa1\xf3\ \x27\x69\x25\xa0\xa4\xcd\x41\xcc\xa1\x9d\x75\x08\xdf\xed\xa5\x1d\ \x6b\x9d\x3f\x4d\x23\x00\x49\x97\x6a\x8c\x4d\x60\xf7\x87\xe7\xdc\ \x74\x7f\x91\xb4\xf9\x2f\xf3\x65\xf5\x60\x5a\x72\xce\x66\x24\x12\ \x98\x9f\x99\x77\xd4\x60\xda\x54\xeb\x09\x2b\x12\x7d\x03\xd9\x67\ \xde\x55\x83\x69\xfd\xac\x27\xad\x48\xd4\x75\x67\xbb\x79\x47\x0d\ \xa6\x2d\x70\xbf\x32\x5f\x2b\x01\x25\x1d\xda\x31\xc1\xcd\x76\xf2\ \x58\xf8\x7f\xb8\x3e\x02\x50\x9b\x01\x25\x0d\x9a\x31\x9d\x23\xac\ \x43\x04\x64\x05\x47\xb2\xcf\xed\x93\x35\x02\x90\xe4\x6b\xc0\x84\ \xc4\x76\x7f\xb8\xd7\x7d\xf7\xd7\x08\x40\x92\xaf\x2e\x6f\x25\xea\ \x9c\xbf\xe5\xad\xa1\x23\xbb\xdd\x3f\x5d\x23\x00\x49\xb6\x9a\xbc\ \x98\xe0\xee\x0f\x77\x7b\xe9\xfe\x22\xc9\x56\x83\xf1\xe6\xeb\xe8\ \x83\x6c\x5f\x52\xd3\x7a\x12\x8b\x44\x55\x75\x9e\x33\xef\xa2\xc1\ \xb6\x11\xd6\x93\x58\x24\xaa\xaa\xf1\xb4\x79\x07\x0d\xb6\x7d\x4e\ \xbe\xf5\x44\x16\x89\xa6\x7c\x9e\x30\xef\xa0\x41\xb7\xa1\xd6\x13\ \x59\x24\x9a\x6a\xf1\xb2\x79\xf7\x0c\xba\x7d\xa2\x55\xf8\x22\x95\ \xa9\xcf\x24\xf3\xee\x19\x7c\x1b\x64\x3d\x99\x45\xa2\xa8\x09\x33\ \xcd\x3b\x67\xf0\x6d\x8e\xf6\xe1\x11\x39\xd0\x21\x7c\x6c\xde\x39\ \xc3\x68\x7d\xac\x27\xb4\x48\xf4\x1c\xc9\x72\xf3\xae\x19\x46\x9b\ \x66\x3d\xa1\x45\xa2\xe7\x4c\x36\x99\x77\xcd\x30\x5a\x31\xa7\x58\ \x4f\x6a\x91\xa8\xb9\x82\xdd\xe6\x5d\x33\x9c\xf6\x94\xf5\xa4\x16\ \x89\x96\x3c\xee\x34\xef\x96\x61\xb5\x42\x5a\x5b\x4f\x6e\x91\x28\ \xa9\xc5\x58\xf3\x6e\x19\x5e\xbb\xdd\x7a\x72\x8b\x44\x49\x4b\x66\ \x98\x77\xca\xf0\xda\x97\xd4\xb1\x9e\xe0\x22\xd1\x71\x1a\xeb\xcd\ \x3b\x65\x98\xed\x22\xeb\x09\x2e\x12\x15\x79\xdc\xc2\x1e\xf3\x2e\ \x19\x66\x7b\x5f\xbb\xff\x88\x7c\xa7\x01\x2f\x98\x77\xc8\x70\xdb\ \x3e\xba\x5a\x4f\x74\x91\x68\xe8\xc4\xa7\xe6\x1d\x32\xec\xa6\xcb\ \x7f\x8b\x00\x70\x55\x62\xcf\xf1\x5f\x75\xdb\x42\x73\xeb\xc9\x2e\ \x62\xaf\x19\xaf\x98\x77\x46\x8b\x76\x8b\xf5\x84\x17\xb1\xd7\x87\ \xb5\xe6\x5d\xd1\xa2\x7d\x4c\x0d\xeb\x49\x2f\x62\xab\x36\xa3\x28\ \x32\xef\x8a\x16\x6d\x2f\x27\x58\x4f\x7c\x11\x5b\xdd\x58\x6c\xde\ \x11\xad\xda\xbd\xd6\x13\x5f\xc4\x52\x1d\xee\x4c\xcd\xa1\x3e\x07\ \xb6\x15\x89\xbd\xaa\xa1\x48\x0e\xce\x60\x89\x79\x27\xb4\x6b\xc5\ \xf4\xb6\xfe\x02\x44\xac\x1c\xc4\xa3\x14\x9b\x77\x42\xcb\x36\xc6\ \xfa\x2b\x10\xb1\x32\x94\xaf\xcd\x3b\xa0\x6d\xdb\x40\x13\xeb\x2f\ \x41\xc4\xc2\x89\xbc\x6f\xde\xfd\xec\xdb\x60\xeb\xaf\x41\x24\x7c\ \x2d\x79\x94\x7d\xe6\x9d\xcf\xbe\xbd\x68\xfd\x45\x88\x84\xad\x0e\ \x23\xd9\x6a\xde\xf5\xa2\xd0\x0a\x68\x65\xfd\x65\x88\x84\x29\x8f\ \x1f\xb1\xda\xbc\xe3\x45\xa5\x5d\x61\xfd\x75\x88\x84\xa9\x37\x73\ \xcd\x3b\x5d\x74\x9a\x86\xff\x92\x22\xbd\xf9\xd0\xbc\xcb\x45\xa9\ \xad\xe1\x20\xeb\xaf\x44\x24\x1c\xbd\x99\x6d\xde\xe1\xa2\xd5\x8a\ \x38\xcb\xfa\x4b\x11\x09\x5e\x1e\x03\x53\x71\x25\x3f\xa7\xed\x1e\ \xeb\x2f\x46\x24\x68\xb5\x18\xc1\x22\xf3\xae\x16\xc5\x36\x27\xbc\ \x43\x7f\x75\x8a\x41\xb1\xd0\x9c\x2b\xb9\x99\x96\xd6\x31\x22\xa9\ \x90\x6e\x2c\xb5\x0e\x21\x12\x94\xce\x8c\x61\xa7\xf9\x5f\xd9\xe8\ \xb6\x2b\xac\xbf\x20\x91\x60\xd4\x66\x28\x93\x52\x7e\x68\x4f\xb6\ \x16\xf2\xc6\x3f\x2d\x02\x48\x38\x4e\xe0\x1a\x2e\xa5\x81\x75\x8c\ \x88\x5b\x4b\x57\x36\x87\xf9\x86\xf9\xd6\x9f\x58\x12\xef\x10\x2e\ \xe5\x2a\x3a\x5b\xc7\x88\x81\xbd\x5c\x1a\x6e\xf7\x57\x01\x90\x20\ \x35\x65\x00\x43\xe9\xa7\xb9\x2c\x47\xbf\xe2\x83\xb0\xdf\x52\x8b\ \x00\x12\x04\x75\x7d\xe7\x9e\xe5\xb2\xf0\xdf\x54\x05\x40\xfc\xd5\ \x85\x73\xe9\xcf\xe9\x54\xb7\x0e\x12\x33\x9f\xd0\x93\x1d\xe1\xbf\ \xad\x0a\x80\xf8\xa3\x3e\x67\x31\x90\xfe\x1c\x66\x1d\x24\x96\xb6\ \xd0\x9d\xe5\x16\x6f\xac\x21\x9a\x78\xd3\x90\x93\x39\x85\xbe\xf4\ \xd0\xdf\x7c\xd7\x8a\xb9\xdc\xa6\xfb\xab\x00\x88\x5b\x2d\xe9\xc5\ \xa9\x9c\x40\x0f\x5d\xb1\xc6\xb3\x3b\x79\xd3\xea\xad\xb5\x08\x20\ \xb9\xab\x4e\x07\xba\x70\x0c\x5d\x38\x89\x43\xad\xc3\x24\xc6\xeb\ \xfc\x90\x62\xab\x37\x57\x01\x90\xcc\x6a\x73\x38\x6d\x39\x86\x63\ \x38\x96\xa3\xa9\x6d\x1d\x27\x71\x96\xd1\x83\x02\xbb\xb7\xd7\x22\ \x80\x94\x55\x87\xa6\x34\xa5\x05\x87\xd3\x86\x36\xb4\xa1\xad\xfe\ \xd2\x07\xaa\x90\xc1\x96\xdd\x5f\x05\x20\x8d\xba\xd3\x83\xfa\x40\ \x3d\x6a\x92\x47\x63\xa0\x21\xcd\x68\x46\x53\x9a\x52\xd7\x3a\x5c\ \xaa\x14\x73\x39\x8b\x6c\x23\xa8\x00\xa4\xcf\x0f\xf9\x9d\x75\x04\ \x01\xe0\x17\xbc\x6a\x1d\xa1\x9a\x75\x00\x91\x94\x7a\x94\xd1\xd6\ \x11\x54\x00\xd2\xa8\xc4\x3a\x80\x00\x6f\x70\xa3\x75\x04\x50\x01\ \x10\xb1\x30\x8f\x4b\x28\xb2\x0e\x01\x2a\x00\x69\xa4\x11\x80\xb5\ \x95\x0c\xa0\xd0\x3a\xc4\x77\x54\x00\xd2\x47\x05\xc0\xd6\xb7\x9c\ \xcf\x46\xeb\x10\xdf\x53\x01\x10\x09\xd3\x5e\x86\xb0\xd0\x3a\x44\ \x29\x15\x80\xf4\xd1\x08\xc0\x4e\x09\x57\x33\xc5\x3a\x44\x59\x2a\ \x00\xe9\xa3\x02\x60\xe7\xb7\x3c\x69\x1d\xa1\x3c\x15\x00\x91\xb0\ \xdc\xcd\xbd\xd6\x11\x2a\x52\x01\x10\x09\xc7\x43\xfc\xde\x3a\xc2\ \x81\x54\x00\xd2\x47\x8b\x00\x16\x9e\xe0\x16\xeb\x08\x95\x51\x01\ \x10\x09\xde\x8b\x5c\x1d\xcd\xc2\xab\x02\x90\x3e\x91\x9c\x11\x13\ \xed\x55\x2e\x8d\xc6\x7e\x7f\x07\x52\x01\x10\x09\xd6\x24\x86\xb1\ \xcf\x3a\x44\x55\x54\x00\xd2\x47\x23\x80\x30\x4d\xe7\x42\x76\x5b\ \x87\xa8\x9a\x0a\x80\x48\x70\x66\xd3\x3f\x2a\x7b\xfd\x57\x4e\x05\ \x20\x7d\xcc\x4e\x40\x99\x3a\xb3\xe9\xcf\x36\xeb\x10\x99\xa9\x00\ \x88\x04\xe3\x5f\xf4\x65\x8b\x75\x88\x6c\x54\x00\x44\x82\xf0\x16\ \xfd\xd8\x6a\x1d\x22\x3b\x15\x80\xf4\xd1\x4a\xc0\xe0\x8d\xe7\x42\ \x76\x5a\x87\xc8\x85\x0a\x80\x88\xdf\x9e\x61\x48\x94\xd7\xfc\x97\ \xa5\x02\x90\x3e\x1a\x01\x04\xeb\x11\x86\x47\x77\xbb\x7f\x45\x2a\ \x00\x22\x7e\xba\x8f\x1b\xe2\xb4\x9d\x45\x05\x20\x7d\x34\x02\x08\ \xce\xbd\x8c\x8c\xd7\xf4\xd5\x85\x41\xd2\x27\x56\x33\x68\x8c\x14\ \xf3\x8b\x28\x9c\xe9\xdf\x19\x15\x00\x11\x3f\xec\xe6\x27\x3c\x6b\ \x1d\xc2\x39\x15\x80\xf4\xd1\x08\xc0\x7f\x9b\xb8\x90\xf7\xad\x43\ \xb8\xa1\x02\x20\xe2\xd5\x72\xce\x63\xa9\x75\x08\x77\xb4\x12\x30\ \x7d\x34\x02\xf0\xd7\x4c\x7a\xc6\xb5\xfb\xab\x00\xa4\x91\x0a\x80\ \x9f\xc6\x71\x0e\xdf\x58\x87\x70\x4f\x05\x40\xc4\xbd\x07\x19\x16\ \x8f\x5d\x7e\xab\xa2\x75\x00\xe9\xa3\x11\x80\x3f\xf6\x71\x13\x8f\ \x58\x87\xf0\x4a\x05\x20\x7d\x54\x00\xfc\x50\xc0\xc5\x4c\xb2\x0e\ \xe1\x9d\x0a\x80\x88\x73\x4b\xb8\x90\x25\xd6\x21\xfc\xa0\x75\x00\ \x22\x4e\x3d\xcb\x89\xc9\xe8\xfe\x2a\x00\x69\xa4\x45\x00\x2f\xf6\ \x71\x1b\x97\x45\xfb\x3c\x7f\x4e\x68\x11\x20\x7d\x54\x00\xdc\xfb\ \x86\x4b\x98\x6a\x1d\xc2\x4f\x2a\x00\x22\xb9\x9a\xce\x50\x36\x58\ \x87\xf0\x97\x16\x01\xd2\x47\x23\x00\x77\x1e\xe3\xec\xa4\x75\x7f\ \x8d\x00\x44\x72\xb1\x8b\xeb\x79\xc2\x3a\x44\x10\x54\x00\xd2\x47\ \x23\x00\xa7\x3e\xe5\x52\x16\x5a\x87\x08\x86\x16\x01\x44\x32\x29\ \xe1\x31\x7a\x24\xb5\xfb\x6b\x04\x90\x46\x1a\x01\xe4\xee\x6b\xae\ \x62\x82\x75\x88\x20\xa9\x00\xa4\x8f\x0a\x40\xae\xde\xe1\x8a\xe4\ \xad\xf6\x2b\x4f\x8b\x00\x22\x95\xd9\xc5\xad\xf4\x4b\x7a\xf7\xd7\ \x08\x20\x8d\x34\x02\xc8\xee\x53\x2e\xe3\x13\xeb\x10\x61\xd0\x08\ \x40\xa4\xbc\x12\x1e\xe4\x84\x74\x74\x7f\x8d\x00\xd2\x48\x23\x80\ \x4c\x56\x72\x4d\x12\x0e\xf3\xcd\x95\x46\x00\x22\xdf\x2b\xe6\x31\ \xba\xa4\xa9\xfb\x6b\x04\x90\x46\x1a\x01\x54\x6e\x21\x3f\x65\xb6\ \x75\x88\xb0\x69\x04\x90\x3e\x2a\x00\x07\xda\xcb\xbd\x9c\x98\xbe\ \xee\xaf\x11\x80\x08\x4c\xe7\xa7\x7c\x66\x1d\xc2\x86\x46\x00\xe9\ \xa3\x11\x40\x59\xdf\x72\x2b\xa7\xa7\xb5\xfb\x6b\x04\x20\xe9\x36\ \x81\x1b\x58\x63\x1d\xc2\x92\x46\x00\xe9\xa3\x11\xc0\x77\x96\x73\ \x01\x83\xd2\xdd\xfd\x35\x02\x90\x74\xda\xc9\x7d\x8c\x62\x97\x75\ \x0c\x7b\x2a\x00\xe9\xa3\x11\xc0\x04\x6e\x62\xa5\x75\x88\x68\xd0\ \x22\x40\xfa\xa4\xbb\x00\xcc\xe7\x2c\x06\xa9\xfb\x7f\x4f\x05\x40\ \xd2\x63\x3d\xd7\xd2\x9d\xf7\xac\x63\x44\x89\x16\x01\xd2\x27\x9d\ \x23\x80\x1d\x3c\xc4\x3d\x6c\xb3\x8e\x11\x35\x2a\x00\xe9\x93\xbe\ \x02\xb0\x97\xbf\x71\x57\xf2\x8f\xed\x77\x43\x05\x40\x92\xad\x98\ \x97\xf8\x0f\x96\x59\xc7\x88\x2a\x15\x00\x49\xb2\xc9\xfc\x86\xf9\ \xd6\x21\xa2\x4c\x2b\x01\xd3\x27\x2d\x8b\x00\x6f\x72\x32\x7d\xd4\ \xfd\x33\xd3\x08\x20\x7d\xd2\x50\x00\x26\x73\x7b\x1a\x8f\xed\x73\ \x4e\x23\x80\xf4\x49\x76\x01\x28\x61\x02\x3d\xe8\xa3\xee\x9f\x1b\ \x8d\x00\x24\x39\xf6\xf0\x3c\xf7\xb1\xc8\x3a\x46\x9c\xa8\x00\x48\ \x32\x6c\xe5\x09\xee\x67\xad\x75\x8c\xb8\x51\x01\x48\x9f\xe4\x2d\ \x02\xac\xe4\x11\x1e\xa5\xc0\x3a\x46\x1c\xa9\x00\x48\xbc\xcd\xe7\ \x7f\x78\x86\x7d\xd6\x31\xe2\x4a\x05\x20\x7d\x92\x32\x02\x28\xe6\ \x4d\x1e\x60\x9a\x75\x8c\x78\x53\x01\x48\x9f\x24\x14\x80\x02\x5e\ \x60\x34\x8b\xad\x63\xc4\x9f\x0a\x80\xc4\xcd\x3c\x1e\xe3\x69\x76\ \x58\xc7\x48\x06\x15\x80\xf4\x89\xef\x08\xe0\xdf\x3c\xc3\xdf\x58\ \x68\x1d\x23\x49\x54\x00\x24\x0e\x8a\x79\x97\xa7\x18\xc7\x4e\xeb\ \x20\x49\xa3\x02\x90\x3e\x71\x1b\x01\x2c\x64\x2c\x4f\xb1\xde\x3a\ \x46\x32\xa9\x00\x48\x74\xad\xe1\x15\xc6\xf1\x81\x75\x8c\x24\x53\ \x01\x48\x9f\x38\x8c\x00\x36\xf0\x32\xcf\x31\x3d\x16\x59\x63\x4d\ \x05\x20\x7d\xa2\xdd\xa9\xd6\xf0\x16\x13\x78\x4b\xbb\xf6\x84\x43\ \x05\x20\x7d\xa2\x5a\x00\x16\x33\x81\x97\xf9\x30\xb2\xf9\x12\x49\ \x05\x40\xac\xed\x63\x36\xaf\xf3\x1a\x4b\xac\x83\xa4\x91\x0a\x40\ \xfa\x44\xe7\x2f\xec\x72\x26\xf1\x0e\x93\xd8\x6e\x1d\x24\xbd\x54\ \x00\x24\x7c\x05\xbc\xcb\x3b\x4c\x62\x85\x75\x10\x51\x01\x90\xf0\ \x6c\x63\x36\x93\x99\xce\x6c\xf6\x5a\x47\x91\xef\xa8\x00\xa4\x4f\ \xf8\x8b\x00\xcb\x99\xc5\x4c\xa6\xf1\x69\x84\x16\x3f\x04\x50\x01\ \x48\xa3\xb0\x3a\x61\x01\x1f\x31\x93\xd9\xcc\xe2\x1b\xeb\x8f\x2c\ \x55\x51\x01\x10\x7f\x6d\xe0\x53\x16\x33\x8f\x79\x7c\x46\xb1\x75\ \x18\xc9\x46\x05\x20\x7d\xfc\x1f\x01\x6c\x61\x31\x9f\xb2\x98\x4f\ \x59\xc4\x57\xd6\x1f\x4f\x9c\x50\x01\x48\x1f\x3f\x0a\xc0\x46\x96\ \xf3\x05\x5f\xec\xff\xef\x66\xeb\x8f\x24\x6e\xa9\x00\x48\x36\x7b\ \xf8\x86\xaf\xd9\xc0\x06\xd6\xb0\x8a\x35\xac\x61\x35\xbb\xac\x43\ \x89\x3f\x54\x00\xd2\xe7\xfb\x11\x40\x21\x7b\x00\xd8\xc7\x36\x76\ \xb1\x93\xed\xec\xa5\x80\x1d\x14\x50\xc0\x16\x0a\x28\x60\x33\xdf\ \xb0\x51\x7f\xdf\x93\xec\xff\x00\x84\x24\xde\x5e\xc2\xac\x11\xe6\ \x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\ \x61\x74\x65\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\ \x32\x3a\x30\x38\x3a\x30\x36\x2b\x30\x30\x3a\x30\x30\x5b\x14\xd0\ \x61\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\ \x64\x69\x66\x79\x00\x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\ \x31\x32\x3a\x30\x38\x3a\x30\x36\x2b\x30\x30\x3a\x30\x30\x2a\x49\ \x68\xdd\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\ \x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\ \x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ \x42\x60\x82\ \x00\x00\x1f\xff\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0e\x04\x1d\x8e\x89\ \x43\xe6\x00\x00\x1e\xcd\x49\x44\x41\x54\x78\xda\xed\xdd\x7b\x80\ \x55\xe5\x79\xef\xf1\xdf\x6c\x86\x8b\xdc\x61\x00\x15\x04\x19\x44\ \x04\x22\x17\x23\xa8\x41\xbc\x5f\x50\x1b\x4c\x43\x25\x89\xc7\x4a\ \x8c\x4d\xb0\x6d\x9a\xda\xc6\x24\x34\xd1\x46\xd2\xb4\x09\x4d\x62\ \x5a\xdb\xa4\x2d\x3d\xe7\xa4\x39\x58\x9b\x04\x13\x4d\xa2\x46\x13\ \x24\xde\x90\x44\x45\x91\x8b\x44\x04\x1d\x04\xc1\x08\x0c\x0c\x33\ \x03\xcc\x00\xb3\xf7\xf9\x03\x46\x06\xd8\x33\xb3\x37\xcf\xf3\xae\ \x77\xed\xe1\xfb\x79\xfe\xf0\x1f\xd7\x5a\xcf\xfb\xb0\x66\xed\x75\ \x79\x2f\x12\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\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\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\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\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\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \xc8\xab\x2c\xf2\xf1\xbb\x69\xb8\x86\x6b\xb8\x4e\x53\x85\x06\xaa\ \x42\xbd\xd4\x49\xbd\x25\x49\x39\xd5\x48\xda\xa1\xed\xaa\x56\xb5\ \x36\x68\x83\x36\xe8\x6d\x1d\x88\x5d\xb0\x92\x94\xd1\xa9\xaa\xd4\ \x70\x0d\xd7\x40\x55\xa8\x42\x15\xca\xa8\x97\xca\x25\x49\xf5\xda\ \xaf\x3d\xaa\x56\xb5\xb6\x69\xb3\x36\xa8\x4a\x1b\xb4\x3b\x76\xc2\ \x25\xad\x5c\xa7\x1d\x3a\xab\x2b\x54\xa1\x01\xea\x2f\xa9\xef\xa1\ \xbf\xb4\x5d\xca\xaa\x4e\xd5\xda\xa6\x6a\xbd\xad\x2a\x6d\xd0\x5b\ \x6a\x88\x99\x6c\x9c\x0b\x40\x3f\x4d\xd1\x39\x1a\xaf\x09\x3a\x43\ \x9d\x8a\xd8\xae\x51\xaf\x6a\xa5\x56\xe9\x05\x2d\x8b\x5b\xb6\x92\ \x50\xae\x73\x74\x9e\xc6\x6b\x82\xce\x56\x8f\xa2\xb6\xac\xd2\x4a\ \xad\xd2\xcb\xfa\x8d\x7e\x1f\xbb\x11\x25\xe3\x24\x4d\xd2\x64\x8d\ \xd7\x78\x8d\x55\xd7\x22\xb6\x6b\xd2\x7a\xad\xd4\x4a\xbd\xac\xa5\ \xaa\x49\x3e\xed\x64\x2f\x00\x7d\x75\x95\xae\xd4\x85\x1a\xa3\x8c\ \x71\x4f\xfb\xb4\x4c\x4b\xf4\x2b\x3d\xab\x7d\x89\xb6\xa0\x14\x74\ \xd2\xf9\x9a\xa6\x8b\x74\x5e\x91\x7f\xf6\xf9\xac\xd7\x52\x2d\xd6\ \x2f\xf5\x6e\xec\x46\xa5\x56\x57\x5d\xa4\x69\xba\x50\xe7\xaa\x8b\ \x71\x4f\x59\xad\xd1\x12\x3d\xa1\x27\xb4\x2b\x76\xa3\xfc\x8d\xd0\ \x1c\x3d\xa3\xfd\xca\x39\x47\x9d\x7e\xaa\x3f\x51\xff\xd8\xcd\x4b\ \x89\x1e\xfa\x98\x7e\xa8\x6a\xf7\x2a\x37\x69\x99\xbe\xa2\x71\xb1\ \x9b\x97\x32\x15\xfa\xa4\x7e\xae\x7a\xf7\x6a\xef\xd7\xd3\xfa\x82\ \x2a\x63\x37\xcf\xcb\xa9\xfa\x9c\x5e\x70\x2f\xd2\x91\xb1\x4f\x8f\ \x6a\x96\xba\xc7\x6e\x6a\x44\x5d\x34\x43\x0f\x68\x77\xe0\x3a\xbf\ \xaa\xbb\x75\x46\xec\xa6\xa6\x40\x0f\xdd\xa2\xc7\xb4\x2f\x70\xb5\ \x9f\xd7\x67\x75\x4a\xec\xa6\x5a\x64\x74\xa5\x16\x06\x2f\xd3\xe1\ \xd8\xa5\xf9\x7a\x7f\xec\x46\x47\x30\x52\xf3\xf4\xfb\xc4\xaa\x9c\ \xd5\x12\xcd\xd6\x49\xb1\x1b\x1d\xcd\x58\xcd\x0b\x70\x8f\xd5\x5a\ \x1c\xd0\x22\xcd\x3c\xf4\xba\xb6\xa4\x74\xd3\x2c\xbd\x96\x58\x99\ \x5a\xc6\x32\xcd\x2a\xea\xc5\x62\x69\x9b\xaa\x85\x6a\x8a\x50\xe5\ \x77\x35\x57\x15\xb1\x1b\x9f\xb0\x8c\xa6\x6b\x51\x94\x73\xfa\x4d\ \xdd\xee\xf0\x3e\x27\x31\xfd\xf5\xd5\x04\xaf\x91\xf9\xe2\x75\x7d\ \x4a\x9d\x63\x97\x21\xb0\x32\xcd\xd4\x4b\x51\xab\x5c\xaf\x7f\xd1\ \x90\xd8\x65\x48\x48\x17\xdd\xa6\x75\x51\xab\xbd\x5d\x5f\x51\xbf\ \xd8\x65\x68\x5f\x4f\xcd\xd1\xce\xa8\x85\x6a\x8e\x0d\x9a\x5d\x8a\ \xb7\x4e\x05\xba\x32\xf2\x1f\x7f\x73\x34\x6a\xbe\x4e\x8d\x5d\x8c\ \xc0\x32\x9a\x19\xf9\x8f\xbf\x39\x6a\x35\x4f\x7d\x62\x97\xa3\x75\ \xe5\xfa\x8c\xb6\x47\x2f\x52\xcb\x58\xa3\x6b\x63\x17\x25\x80\x0b\ \xf4\x9b\xe8\x95\x6d\x19\xf5\xba\xbb\x03\xbf\x80\xfd\x60\xa4\x47\ \xd9\xd6\x62\x9b\x3e\x9d\xce\x1f\xb6\x69\x5a\x13\xbd\x38\xf9\xe2\ \x17\x1a\x1d\xbb\x34\x8e\x4e\xd3\x7d\xca\x46\xaf\xe9\xb1\xb1\x51\ \x37\x46\xef\x55\xea\x6f\xac\x7e\x19\xbd\xb2\xf9\x62\x95\xae\x8c\ \x5d\x9a\x23\x9d\xac\x05\xd1\x8b\xd2\x7a\xec\xd3\xbc\xa2\xfa\x66\ \xa5\x55\x99\x66\xab\x36\x7a\x35\x5b\x8f\x67\x74\x56\xec\x12\x39\ \xea\xac\x39\x6a\x8c\x5e\xd3\xd6\x63\xa1\x06\xc5\x2e\xd1\x41\x65\ \xba\x25\xf2\x2b\xbf\x42\x62\x8d\x2e\x8c\x5d\x28\xa3\xb1\x5a\x1a\ \xbd\x8a\xed\xc5\x1e\x7d\x3e\x9d\xb7\xa7\x45\xbb\x28\x65\x37\xfe\ \xf9\x62\xbb\x66\xc5\x2e\x93\x34\x50\x3f\x8b\x5e\x88\xc2\x22\xab\ \x7b\xcd\x9d\x35\x63\x29\xd3\xec\xe0\x9d\x7c\xbc\xe2\x79\x8d\x8c\ \x5d\x2e\xa3\x72\xcd\xd5\x81\xe8\x75\x2c\x2c\x1e\x8b\xdb\x55\xe8\ \x2a\x6d\x8e\x5e\x82\x62\xe2\xc5\x92\xbc\x49\x1d\xa4\x47\xa2\x57\ \xae\x98\xa8\xd5\xec\xd8\x25\x33\x18\x9d\x92\xef\x2b\x85\xc6\xef\ \x75\x5d\x9c\x42\x95\x69\x4e\x94\x2e\x28\xb6\xa8\xd3\x47\x62\x9f\ \x61\x45\xba\x48\xef\x44\xaf\x5a\xf1\x71\x5f\x89\x7e\x17\xf8\x58\ \x80\xbe\xfd\xa1\x23\xab\x79\xc9\x77\x7d\xab\xd0\xe3\xd1\x1b\x7e\ \xbc\x31\xbf\x84\x3a\x09\xcd\x4e\xb0\x2b\xb5\x6f\x2c\x2f\xb9\xe1\ \x2c\xe5\x9a\x17\xbd\x6a\xc7\x1b\x8f\x25\x3b\x20\x6e\xac\xde\x8c\ \xde\x64\x4b\x2c\x4a\x73\x77\x8a\xf7\x74\x4d\xf5\xb7\x95\xf6\x63\ \x9b\xa6\xc6\x2e\x61\x11\xfa\x69\x71\xf4\x8a\x59\x62\x7d\x72\x9f\ \xbb\x2f\x4f\x49\x5f\x3f\x4b\xac\xd6\xe9\xb1\xcf\xb8\x76\xf4\xd3\ \x93\xd1\xab\x64\x8d\x06\xdd\x14\xbb\x8c\x05\xaa\x4c\x69\x2f\x96\ \x62\x62\x87\x2e\x4d\xa2\x54\x7f\x9c\xea\xaf\xa3\x85\xc7\x16\x9d\ \x13\xfb\xac\x6b\xc3\xe9\xfa\x5d\xf4\x0a\x79\x44\x56\x73\x62\x97\ \xb2\x00\xe7\x26\x38\x9a\x32\x64\x34\xe8\xc6\xd0\xa5\x9a\x5d\x82\ \x2f\xfe\x5a\x8b\x1a\x4d\x89\x7d\xe6\xb5\xa2\xb2\xc4\x1f\xb1\x8e\ \x8c\x79\xb1\xcb\xd9\x8e\x0b\x55\x13\xbd\x46\x5e\x91\xd5\x67\x42\ \x96\xea\xd3\xa9\xec\x86\x7a\xfc\x51\xaf\xab\x62\x9f\x7d\x79\x8c\ \x29\xb1\x8f\xab\xed\xc7\xbf\x9b\xa7\x80\x0b\xe7\x92\x54\xf7\xae\ \x2c\x3e\xb2\xfa\x6c\xa8\x52\xdd\x11\xbd\x71\xfe\xb1\x47\x97\xc5\ \x3e\x03\x8f\x32\x56\x5b\xa3\x57\xc5\x3f\xbe\x9b\xd2\x91\x02\x97\ \x6b\x4f\xf4\xda\xf8\x47\x90\x4b\xc0\xad\x1d\xec\xd7\xbf\x39\x76\ \xeb\xa2\xd8\x67\x61\x0b\x23\x3b\xdc\xaf\x7f\x73\xfc\x53\xec\xd2\ \xe6\x71\x81\xea\xa2\xd7\x25\x44\x64\xf5\xa7\xde\xa5\x9a\xd5\x81\ \x9e\xfd\x8f\x8e\x9d\x9a\x18\xfb\x4c\x3c\x64\xa8\x36\x44\xaf\x46\ \xb8\xf8\xdb\xd8\xe5\x3d\xca\xfb\x3b\xd0\xb3\xff\xd1\xd1\xe4\xfb\ \xfd\xe5\xd2\x0e\xf2\xe6\xbf\xb5\xd8\xa2\x61\xb1\xcf\x46\x49\xbd\ \xf4\x4a\xf4\x4a\x84\x8d\xdb\x62\x97\xb8\x85\x21\xda\x14\xbd\x1e\ \x21\x63\x9f\xdf\x90\xe1\xb1\x1d\xe0\xbb\x7f\x7b\xb1\x5a\x7d\x23\ \x9f\x90\x9d\x53\x3a\xf6\xdc\xf7\xa4\x4c\xcb\x4b\xd7\xde\x5a\x11\ \xbd\x1a\xa1\x63\x97\xcf\x44\xee\x83\xf4\x56\xf4\xa6\x24\x11\x8f\ \x45\x9e\x4a\x74\x7e\xf4\x0a\x24\x11\x35\xa9\x18\x8e\xd5\x49\xbf\ \x8a\x5e\x89\x24\xa2\x4a\x03\x28\x55\xe1\xf1\xf7\x11\x4f\xc9\xd9\ \xd1\x5b\x9f\x54\xbc\x76\x68\xed\xc7\x98\xfe\x31\x7a\x15\x92\x8a\ \xc5\xd6\xf9\x19\xee\x89\xde\x84\xe4\x22\xab\x3f\x8a\x74\x42\x9e\ \xa7\x86\xe8\xad\x4f\x2e\x7e\x1a\xf9\x93\xe0\x1f\x76\xd0\xef\x59\ \xf9\xc3\xd4\x0d\xeb\xc4\x2a\x55\x4e\x35\x51\x46\xb0\xf5\x3d\x41\ \x1e\xb2\x0e\xc7\xed\x11\xaa\xdc\xec\x8c\x0e\xd6\xf1\xa7\xbd\xc8\ \xea\x83\x6d\x95\xa3\xad\x6b\xf1\x60\xad\xb0\x3f\x43\x14\xac\x51\ \xeb\xf4\x86\x6a\x55\xaf\x5a\xd5\xaa\x5c\x3d\xd4\x57\xbd\xd4\x4f\ \xa3\x74\x7a\x82\x4f\xe7\xcf\xe9\x12\x35\x25\x76\xb4\x83\x7e\xa8\ \x8f\x26\x78\xb4\x4d\x5a\xab\x6a\xed\x52\x9d\xea\xd5\xa0\xbe\xea\ \xa9\x9e\xea\xad\xe1\x3a\x2b\xc1\x11\xfc\x0d\x3a\x5f\x2b\x13\x6c\ \xf3\x61\xe5\x7a\x56\x17\x24\x76\xb4\x26\xbd\xa5\xb5\xaa\x51\x9d\ \x6a\xb4\x5b\x07\xd4\x5b\x7d\xd4\x43\xbd\x35\x52\x23\x13\x9c\xa5\ \x72\xab\x26\xb4\xbe\xca\x73\xeb\x17\x80\x32\xfd\x32\x81\x77\xb6\ \xfb\xf4\x82\x7e\xad\xe7\xb5\x56\x1b\x5a\xfd\xc3\xeb\xaa\x33\x35\ \x5a\x53\x75\xb9\xce\x4e\xe0\xe6\xf1\x6e\xfd\x5d\xf0\x63\xb4\x74\ \xb3\x16\x24\x70\x94\xf5\xfa\xb5\x9e\xd1\x1a\xbd\xae\xdd\xad\xfc\ \x1f\x65\x1a\xaa\x51\x9a\xa4\xcb\x75\x61\x02\x97\x82\xd5\x9a\x1c\ \x65\x81\xf7\xaf\xe8\xcb\xc1\x8f\x91\xd3\x2a\x3d\xa9\x25\x7a\x4d\ \xeb\xd4\xd8\xca\xff\xd3\x49\xc3\x75\x96\xce\xd7\xe5\x3a\x3f\x81\ \xd9\x29\x1e\xd7\x75\xca\x15\xbb\xd1\xa7\x03\xdf\x9a\x6c\xd7\x77\ \x74\x75\x91\x0b\x1e\x0d\xd2\x47\xf4\x40\xe0\xe7\xe5\xfd\x89\xae\ \x2f\x78\x9a\x76\x05\x6d\xcd\x01\x3d\xa6\x5b\x34\xb4\xa8\x9c\xba\ \xe8\x22\xfd\x63\xf0\xaf\xe4\xdf\x4a\xb0\xca\xcd\x26\x07\x9e\xeb\ \x6f\xaf\x16\x6a\xa6\x06\x16\x95\x53\x0f\x4d\xd3\x77\x83\x4f\xab\ \x5b\x74\xcf\xc0\xa1\x01\x9f\x94\xf6\xe9\x21\x7d\xd8\x30\x41\x67\ \x3f\xdd\xa6\xe7\x02\x16\xeb\xe5\x04\x67\xb6\x0d\x39\xa5\xea\x2a\ \x7d\xce\xb0\x6a\x4f\x46\x57\x6a\x41\xc0\xa9\x48\x0f\x68\x52\x62\ \x55\x3e\xa8\x73\xd0\x8e\x56\xcf\x69\xb6\xa1\x2f\x49\x57\xcd\xd0\ \x4f\x03\xce\xfe\x54\x53\xec\x22\x6e\xa1\x4e\xcc\x46\x2d\x70\x9a\ \x35\xf6\x1c\x2d\x0c\xf6\x8a\xf2\x0b\x01\x4f\xc3\x96\x3e\x1a\xec\ \x1f\x7c\x89\xa6\xbb\x3c\x2e\x0d\xd0\x5c\xed\x08\x94\xe3\x8a\x84\ \xa7\x66\xbb\x33\x50\x3b\xb2\x7a\xd8\xe9\xbd\xc2\xe9\xba\x37\xd8\ \xe0\xa4\x47\x8a\x49\xe4\x86\x20\x29\xec\xd5\x37\x9d\x27\x31\x9e\ \xa0\x1f\x07\xc9\x74\x4f\x22\xf3\x05\xf5\x0e\x34\xdd\xe7\x13\xba\ \xd8\x35\xcf\xbe\xba\x2b\x50\x5f\xd0\x3b\x12\xa8\x72\xb3\x11\xda\ \x1b\xe4\x8f\xff\x47\x3e\xfd\xed\xde\x33\x58\xdf\x0e\xf4\x90\xfb\ \xa1\x42\x53\xe8\xa6\xaa\x00\x87\x5f\x1c\x68\xce\xb2\x4b\xb4\x3a\ \x40\xb6\x3f\x0c\x92\xeb\x91\xbe\x11\x20\xef\x2d\x81\x16\x8b\x38\ \x45\x0b\x02\xdc\x6f\xd5\x26\x38\xab\xfd\x83\x01\xaa\xbd\x36\xd0\ \x6b\xf2\x91\x7a\x2c\x40\xb6\x6f\x14\xfa\xe5\xe1\x4b\xee\x87\xde\ \x14\xb4\x8b\x4d\x17\x7d\xd1\xfd\x59\x35\x1b\x7c\x90\xf0\x19\xee\ \xd7\xf9\xfd\xba\x47\xbd\x02\x66\x7c\xa9\x5e\x75\x3f\x33\xfe\x33\ \x70\x95\x0f\xe7\xee\x9d\x79\xbd\xbe\x10\xf4\x11\xe6\x23\x7a\xdb\ \x3d\xe7\x82\x1e\x6d\x07\xb9\x8f\x91\x7e\x28\x81\x75\xcd\xc7\xba\ \xdf\x07\xbc\x18\xf8\x93\xe3\x03\xce\xf9\x6e\x4a\x60\x0e\xde\x6e\ \xfa\x0f\xe7\xac\x0f\x38\xdf\x40\xe7\x57\xa6\x97\x9d\xf3\x5e\x91\ \xc0\x1c\xbc\xfd\xf5\x73\xe7\xac\x77\x15\xd2\xaf\xe7\xdb\xae\x87\ \xdc\xaf\x39\x09\x75\xfc\xec\xa6\x7b\x9d\xcb\xf5\x87\x01\xb3\x1d\ \xe7\x3c\xbf\xc2\x22\x9d\x9c\x48\x95\xa5\x19\xce\xef\x03\x1e\x4c\ \x20\x67\xef\x77\x5a\x0b\x12\xea\x34\x55\xa6\xdb\x9d\x07\xe2\x7f\ \xa3\xbd\x43\x0e\x76\x7d\x0b\xf9\x8e\xce\x4b\xa4\x50\xcd\xfe\xc4\ \xf5\x43\xca\xca\x80\x33\xd9\x3d\xec\x98\x67\x56\x77\x26\xda\xbb\ \xfe\x4c\xad\x75\xcd\xfe\xdc\xc0\xf9\x66\x5c\xef\x0e\x1b\x75\x73\ \x82\xb5\x96\x3e\xe0\x3a\x45\xdc\xee\xf6\xde\xba\xfc\xab\xe3\xc1\ \xd6\xeb\x8c\x44\x4b\x25\x49\xd7\xb9\x2e\xed\x14\x6a\x19\xb1\xc9\ \x8e\x39\xee\xd7\xad\x89\x57\x79\xa0\x5e\x70\x6c\x41\x51\x1f\xa8\ \x8e\xc3\x8d\x8e\xb9\xd6\x45\x98\xd1\x60\x94\xeb\x4b\xf9\x7f\x6e\ \xeb\x50\xfd\x1d\xff\x7c\x56\x15\xdb\xf5\xc0\xc9\x64\x6d\x73\x6b\ \xc3\xb2\x40\x39\xfa\x3d\xff\x37\xe8\x86\x28\x55\xee\xe1\xfa\x9e\ \x7a\x7c\xd0\x5c\xfd\x9e\xff\xab\xf5\x81\x28\xd5\x3e\x45\xcb\xdd\ \xda\xb0\x5b\x15\xad\x1f\xe8\x2e\xb7\xc3\xbc\x14\x71\xf1\xad\xb3\ \x1d\x3b\x56\x5e\x1a\x20\xbf\x11\x6e\x1d\x52\x1b\x74\x79\xb4\x2a\ \x77\xd1\xa3\x6e\x55\xfe\x5e\xc0\x3c\xaf\x70\xcb\x72\x9b\xc6\x46\ \xab\x76\x5f\xc7\x5e\x8c\x5f\x6a\xed\x20\x5d\xdd\xd6\x47\x59\x97\ \xd8\x2b\xa9\xfc\xa6\xb8\x7d\x16\x7c\x38\x40\x76\xff\xe2\x94\xdb\ \x81\x68\xf3\x17\x1c\xd4\x5d\x4b\xdd\x2e\x64\xc7\xdf\x65\xb9\x3d\ \x5e\x97\xa9\x7a\x9d\x1f\xb5\xda\xa7\xe8\x0d\xa7\x96\x6c\x69\xad\ \x3f\xc0\x4d\x4e\x07\x78\x57\x67\x46\x2d\x95\x24\xfd\x81\xf6\xbb\ \xb4\x25\xeb\xfe\x1e\xa3\x87\xdb\xf0\x9f\xa0\x6b\xc0\x14\xa4\x8f\ \xdb\xcc\x7a\x77\x05\xca\xb0\xd2\xe9\x6b\xcb\x3e\x5d\x1b\xbb\xd8\ \x3a\xc3\xad\xe7\xe8\xc7\xf2\x1f\xe0\x29\x97\x9d\xef\x4d\xc9\x9a\ \x7b\x7f\xea\x54\xac\xaf\x3a\xe7\x75\xab\x53\x5e\x5f\x8b\x5d\x60\ \x49\xd2\x30\xa7\x37\x2e\x6f\x06\xfa\xe2\xf2\x35\xa7\x6a\x7f\x22\ \x76\xa1\x25\x49\x93\x9d\x3a\x8f\x2d\xce\xb7\xf3\xb3\x9c\xba\x7a\ \xa6\x67\xea\xe7\xfb\x5c\xda\xf3\xb6\xf3\x74\x24\xbf\x75\xc9\xea\ \x99\x04\x47\x2c\xb6\xed\x5a\xa7\xdf\xd8\x10\x6f\xd7\xcb\x9d\x96\ \x59\xf9\x9f\xd8\x45\x7e\xcf\x67\x5c\xda\x93\xcd\x37\x20\xef\xeb\ \x2e\xbb\x4e\xa2\x0f\x7d\xa1\x7a\x39\x7d\xaf\xf6\xbc\xf9\x1b\xeb\ \x92\xd1\xd6\x48\x5f\x58\xf2\xf3\x39\x73\x7e\x10\x20\xb3\xeb\x5d\ \x32\x5b\x53\xe4\xac\x15\x61\xf9\x0c\x7f\x3b\xe6\xbe\xb6\xcc\x65\ \x3d\xda\x37\x52\x30\xe3\x6b\x4b\x13\x5d\xfa\x51\x7d\xdf\x31\xa3\ \xaf\xb8\xfc\xf3\x5d\x17\xbb\xb0\x47\x28\x77\x99\x9d\xa1\x3e\x40\ \xef\xba\xfb\x1d\xf2\xda\xab\xb3\x63\x17\xf8\x08\x7d\x5d\x7a\x05\ \xbc\x7e\xf4\x6e\xcf\xeb\x80\x27\xa6\x24\xfd\x83\x43\xab\x76\xa9\ \x9b\x5b\x3e\x6b\x1c\xf2\xf9\xef\xd8\x45\x3d\xc6\xfb\x5c\x7a\x60\ \x7a\x77\xbb\xea\xe6\xf2\xba\x75\x6e\xec\xe2\x1e\xe3\x1a\x97\xbf\ \xd5\xa3\xe6\xbd\xfa\xa6\xc3\x2e\x1f\x88\x5d\x99\x3c\xba\xbb\x5c\ \x2f\xaf\x77\xca\x66\xbc\x43\x2e\x35\x09\x0e\xa1\x2d\x9c\xc7\xd0\ \xe6\x1f\x3b\xe7\x34\xc3\x21\xa7\x75\x8e\x17\x7f\x3f\x0f\x39\xb4\ \xec\xa8\xe9\xc2\xed\x4f\xcb\xb5\x3a\x2d\x76\x5d\xf2\xba\xd6\xa1\ \x58\x5e\x83\x56\x3d\xe6\xa4\x89\xff\xf1\x2f\x1f\x8f\x0b\x6d\xbd\ \xf3\x4c\xb9\xff\xe5\x50\xed\x3f\x88\x5d\xd8\xbc\x86\x3a\x8c\xd8\ \x5d\xdd\x72\x87\x23\x1c\x4a\x15\xea\x4b\xae\x9d\x7d\x6d\xa3\x4d\ \x4e\x99\x3c\x6b\xce\x64\x4d\xe4\x05\xcc\x5a\xe7\xd1\x8b\xc4\xb3\ \x5f\x63\x99\xb6\x98\xf3\x79\x34\x76\x51\x5b\x35\xd7\xa1\xda\x2d\ \x16\xc4\xb5\xcf\x00\xbc\x2b\xfa\xe2\x9a\xad\x9b\xe2\x50\x2c\x8f\ \x17\x41\xfd\x1c\x3a\x27\x25\x3b\x12\xad\x18\x9d\x1c\xee\x22\xdb\ \x1d\xac\x5a\x84\x73\x1c\xfe\xd5\x2f\x8c\x5d\xd4\x56\xf5\x71\x58\ \xda\x7c\xb6\xa4\x43\xdd\x2f\xec\x0b\x09\x7f\x47\x35\xb1\x6b\xd2\ \xaa\xa5\x7a\xc6\xbc\x8f\xab\x1d\xf2\xb8\xcc\xfc\xed\xbe\x2a\xc8\ \xc7\x32\x1f\x4d\x0e\x7f\xbe\x1e\x55\x6e\x66\xef\x57\xf0\xa4\x9e\ \x73\xcc\xc7\xd7\x2e\xfd\x87\x79\x1f\xef\x55\xbb\xcc\x3c\xe2\x78\ \xb7\x06\xc5\xae\x48\x9b\xa6\x99\xaf\x96\x1e\xd3\x56\xd8\xa7\x5a\ \x29\x7a\x76\xf7\x44\x75\xd6\x06\x63\xfb\x9a\x1c\x87\x90\xd9\x67\ \xd3\xb9\x22\x76\x41\xdb\x34\xc8\x3c\xde\xe5\xbd\xd5\x82\xce\x32\ \x97\xea\x7f\xc7\xae\x46\xbb\xac\x9f\xdf\xde\x75\x98\x72\xc3\xda\ \x07\xb0\x46\x27\xc5\x2e\x63\x3b\xfe\xc6\x7c\x26\x5d\xe3\x94\x49\ \x99\xb9\x8b\xf2\x6a\x7b\x12\x81\xfd\x5f\x73\xb5\x47\x1e\x7c\x04\ \x98\x62\x4e\x25\x89\xc5\xad\x6c\xee\x33\x6e\x3f\xc8\x3c\xc0\xe9\ \x24\xf3\x18\x89\x07\xb4\xd7\xb1\x22\x21\xdc\xaf\xac\x71\x0f\x5e\ \x4f\xdd\x67\x99\x57\xb5\xec\xf8\xe7\xb4\x74\xe1\xc1\x0b\xc0\x64\ \xe3\x6e\x36\x68\x49\xec\x5a\xb4\x6b\x81\x79\xc9\x4f\xeb\xc4\x55\ \x13\x0c\x6b\x21\x35\xb7\x21\xed\x36\xe9\x29\xe3\x1e\xbc\xa6\x07\ \xb3\xae\x3a\x94\x4d\x51\xff\xff\xd6\x3c\xad\x2a\xe3\x1e\xce\x3d\ \x78\x01\xb0\xce\xc7\xf2\xff\x54\xf4\xc2\x83\x89\xdb\xac\xa7\x8d\ \x7b\xb0\xce\x5e\x3b\xc1\xb8\x7d\x29\x5c\x66\xed\xbf\x4a\x5e\x73\ \x03\x59\xf7\xf3\x84\xde\x76\xca\x24\x1c\xfb\x20\xa5\xf1\x52\x46\ \x65\xe6\x4f\x5c\x0f\xc5\xae\x44\x41\xac\xaf\xf1\xac\xa7\x94\xb5\ \xca\x0f\x96\xc0\x65\x56\xfa\x99\xf1\x4e\x6b\x48\x5b\x13\x56\x15\ \xc1\x7a\xb9\x2e\x8d\x73\xda\x9a\xe5\x38\x29\xa3\x61\xc6\x37\xaf\ \xdb\xb5\x2a\x76\x1d\x0a\xf2\xa4\x71\x7b\xeb\x1f\xb0\xf5\x94\xfc\ \xb5\x63\x2d\xc2\xd9\xa9\xe5\xc6\x3d\xf8\x0c\xbd\x39\x31\xaa\xbd\ \x5c\x3b\x4c\xdb\xf7\xd7\x90\x8c\x79\xc6\x9b\x27\xcd\x2f\x7e\x92\ \xb1\x46\x5b\x4c\xdb\x0f\x35\x76\x54\xb5\x2d\x89\x7a\x40\xcf\xba\ \x57\x24\x0c\xeb\x9f\xce\x08\x87\x1c\x4e\xd2\x60\xd3\xf6\x5b\x8e\ \x1d\x2d\x97\x4a\x59\xf3\x83\xed\x88\x8c\x2a\x8d\xbb\xb0\xfe\xb2\ \x26\xe7\x29\xd3\xd6\x19\x0d\x35\x6c\xdd\xc5\x38\xeb\xdd\x32\xd5\ \xfa\x17\x24\x08\xeb\xf9\x60\x3d\x1f\x25\x69\xb8\xf1\xa3\xed\x62\ \xd3\xd6\x49\x32\x57\x3b\x63\x5e\x07\xf7\x37\xb1\x6b\x50\x30\x6b\ \xbf\x2e\xcb\x6f\xd3\x30\xe3\x94\x57\x4b\xdd\xab\x11\xca\x52\xe3\ \xbb\x0a\x8f\x0b\x80\xf5\x9c\x2e\x9d\x6a\x9b\xcf\x69\xdb\xef\x9a\ \x94\x2d\x91\x9b\x25\x49\x5a\x6b\xdc\x7e\x58\xa4\x6d\x3d\x72\x4f\ \x4e\xad\xf1\x51\xcb\x5a\x29\x8f\x7d\x94\x4e\xb5\xd7\x1a\x2f\xb7\ \x43\x33\xc6\x4e\xbc\x9b\xb4\x27\x76\x0d\x0a\x66\xfd\x67\xb5\x74\ \x2d\x19\x68\x3c\xf6\x6b\xce\xb5\x08\xc9\xf6\x93\x60\xad\x94\xc7\ \x3e\x4a\xa7\xda\xbb\xb5\xd9\xb4\xfd\xc0\x8c\xf1\xb3\x4b\xe9\x5c\ \x2b\xa5\xcd\xaa\x37\x6d\x6f\xa9\x94\xb5\x5f\x5a\x29\xd5\xd9\x96\ \xab\xc7\x67\x40\xdb\x3e\xea\x0e\xf7\x92\x2f\x01\xc6\x6a\x67\xd4\ \xdf\xb4\x83\x75\xb1\xdb\x5f\x84\x9c\xd6\x9b\xb6\xb7\xfc\x11\xdb\ \xaa\x5c\xa7\x77\x03\xd4\x23\x14\xdb\x1d\x40\x7f\x87\x51\x17\xb6\ \x0b\xc0\xba\x92\xe8\x71\xd1\xcc\x56\xed\x8a\x8c\xb1\x17\xc0\xce\ \xd8\xed\x4f\x30\x5b\x4b\xa5\xa8\x72\xa1\xca\x1d\xe6\xe0\xb5\x4d\ \x4d\x7b\x22\x55\xbb\x4f\xc6\xf8\x75\xbb\x2e\x76\xfb\x13\xcc\xd6\ \xd2\x97\xdf\x36\x0e\xe0\x44\xaa\xb2\xb5\x56\x92\x38\xa7\x0b\xd6\ \x35\x63\x2c\xb7\xed\xa9\x3a\x69\xc6\x62\x19\xb6\xe5\x02\x50\x38\ \xfb\xcc\x80\x54\xbb\x50\xe6\x0b\xc0\x89\x54\xac\x78\x77\x00\x27\ \xd2\x65\x36\xfe\x05\xe0\x44\xaa\x76\x17\xeb\x8a\x6c\xa5\xf4\xba\ \xc4\x9a\xad\xe5\xe5\x94\xed\xc5\x56\x69\x55\xd9\xca\xfe\x12\x90\ \x6a\x17\xaa\x2c\xa3\x7d\xa6\x1d\xf4\x8a\xdd\x82\xa2\xd8\x5e\x0e\ \x35\x46\xda\xb6\xd4\xaa\x6c\xcd\xd6\x56\x2b\xfb\x1e\x4e\xa4\x6a\ \x37\x9e\x58\x17\x00\x63\xb1\x0c\xdb\x52\xe5\xc2\xd9\x2f\x00\x54\ \xbb\x50\x8d\x19\xae\x96\x05\xb3\x9c\x56\x9c\x92\x85\xb3\xd5\x4a\ \xe2\x0e\xa0\x70\x8d\x19\xed\x32\xed\xa0\x5f\xec\xf6\x27\x98\xad\ \xa5\x52\xb6\x2a\xf7\xf5\x2f\x45\x40\xb6\x2a\x37\x69\xb7\x39\x03\ \xdb\xc8\xc9\x13\xea\x9c\xce\xa8\xda\xb4\x03\xdb\x28\xf7\x64\x95\ \x19\xe7\x3e\xd8\x66\xd8\xd6\x56\xe5\xde\x29\x9f\x76\xfd\x48\xb6\ \xe9\x53\xab\x1d\xe6\x97\xd8\x6e\xda\xba\x94\xce\x69\x6b\xb5\xb7\ \x5b\x2f\x00\x67\xc5\x6e\x7f\x11\x06\x1b\x6f\x97\x2c\x95\xb2\x9d\ \x92\xa5\x55\x67\x5b\xae\xb6\xf3\xd1\x63\x1f\xbd\x53\xb9\xfc\x6a\ \x6b\x8c\xd5\xce\x98\x7e\xd7\xa4\x61\xa9\x9f\xab\xfe\x30\xeb\x1f\ \x51\xcc\x0b\xc0\x68\xe7\x5a\x84\x34\xca\xb4\xb5\xb5\x52\x1e\xfb\ \x28\x9d\x6a\xf7\x30\x2e\xc9\xbb\x3d\x63\x5c\xf8\x32\x63\xfc\xe7\ \x4e\x92\xf5\x9f\x75\x63\xa4\x6d\xa5\x52\xba\x03\xe8\xa5\x21\xa6\ \xed\xad\x95\xf2\xd8\x47\xe9\x5c\x00\x46\x19\xfb\x3c\x6c\xcc\x68\ \x83\x31\x85\x0f\xc4\xae\x41\xc1\xac\x0b\xa0\xbc\x69\xd8\x76\xa3\ \xf1\xc9\xb6\x94\xaa\x6c\x3b\x25\xad\x73\xdd\x4b\x32\x9f\xd3\x17\ \x78\x15\x23\x38\xeb\x42\x2a\x55\xf6\x0b\xc0\x65\xb1\x6b\x50\xb0\ \x4b\x4d\x5b\x67\x4d\xf7\x4a\xfb\x8c\xf3\xe4\x9c\x67\xec\xc4\x94\ \x1c\xeb\xf9\xe0\x71\x01\x78\xcb\xd8\x9b\xcf\xbe\x58\x6e\x52\xcc\ \xd5\xce\xe8\x0d\x73\x0a\xf6\xae\x9b\x49\x18\x63\xbc\x35\xdd\x64\ \xfc\xba\x6c\xab\x73\xb9\xa6\xba\x57\x24\x8c\xcb\x8d\xdb\x5b\xee\ \xb3\x9a\xed\x35\x5e\x6e\x87\x98\x17\x82\x4b\x46\xc6\xf8\xa3\x26\ \xbd\x99\xd1\x46\xe3\x37\xea\x81\xe6\x39\xd8\x93\x61\x3d\x31\xad\ \xab\x1f\x58\xb7\xb7\xe6\x9f\x8c\xbe\x7a\xbf\x71\x0f\x3e\xab\x4c\ \x9c\x18\xd5\x9e\x68\x9c\x68\x66\x87\x36\x67\x94\x33\x17\xeb\xc3\ \xb1\xeb\x50\x90\x19\xc6\xed\x57\x46\xde\x7e\x46\x49\xdc\x69\x7d\ \x48\x9d\x4c\xdb\x6f\x76\xf9\x0c\x68\xaf\xf6\x09\x73\x4e\x67\x24\ \xad\x30\xee\xe6\x96\x12\x38\x35\x87\xe8\x12\xe3\x1e\xac\x97\x49\ \xeb\x29\x59\xe9\xb6\x72\x6e\x48\x37\x1b\xb7\xb7\x56\xc9\x6b\x3f\ \x57\x19\x3f\xaf\x25\xa1\x4c\xff\xcb\xb8\x87\x43\x17\x80\x97\x8c\ \xbb\x19\x5e\x02\xa7\xe6\xcd\xc6\x5f\x26\x7b\x95\x56\x9a\xfb\xb8\ \xcf\x72\xac\x47\x18\xa7\x99\x5f\x4a\x59\xab\xdc\x6c\x99\x71\xfb\ \x8c\x6e\x74\xca\x24\x9c\x8b\xcc\x6b\x28\xbc\x7c\xf0\x3f\xa3\x94\ \x33\xc6\x7f\xc6\xae\x45\xbb\x5e\x35\xb6\xd0\x63\x52\xce\xdf\x1a\ \x73\xd8\xa9\x6e\xb1\xcb\xd8\x8e\xbf\x31\x9f\x49\xd7\x3a\x65\x52\ \xa6\x6d\xc6\x4c\xd2\xbf\xe2\xe5\xff\x31\x57\x7b\x64\x73\xb1\xde\ \x35\xee\xa8\xde\x65\x36\xf7\x70\xae\x32\x97\xea\xc7\x0e\x59\xdc\ \x63\xce\x62\x76\xec\x42\xb6\xa9\xb3\xaa\x8c\xed\x6b\x32\x4e\x9e\ \xda\xd2\xcf\xcc\xd5\x4e\xf7\x07\xee\x0a\xd5\x19\xdb\xf7\x8e\x74\ \xf0\x11\x20\x67\x5e\x0a\xa9\x87\x6e\x8f\x5d\x8f\x36\xdd\x69\xde\ \x83\x75\x09\x26\x49\x5a\x62\xde\xc3\x1c\x95\x3b\xe4\x11\xca\xcd\ \x1a\x6e\xdc\xc3\x2a\xe3\x17\xa9\x96\xec\xd5\xb6\x9f\x35\x21\xdd\ \xa1\x9e\xc6\x3d\xb4\xa8\xd0\x9f\x9b\xaf\x96\x35\x29\x1e\xb2\xfa\ \x01\x73\xeb\x72\x7a\x9f\x43\x1e\x7d\xb4\xcf\x9c\x87\xf5\x25\x5b\ \x38\x9d\xb4\xd6\xdc\xba\x6f\x38\xe6\x33\xd1\xe1\x5f\x3d\xbd\xef\ \xb6\xfa\x68\xa7\xb9\x75\x9f\x3a\xbc\xbb\x4a\x87\x62\xa5\xf7\x7a\ \xf9\x4b\x73\xdb\x3c\xfa\xa7\x4b\xd2\x33\xe6\x4c\xd6\x98\x5f\x66\ \x86\xf2\xc7\x0e\xe7\x90\xe7\xd7\xf7\x32\x6d\x36\xe7\xf3\x48\xec\ \xa2\xb6\x6a\xae\x43\xb5\x8f\x58\x15\xf4\x35\xf3\xee\x6a\x8d\x3d\ \xed\x42\xb9\xc6\xa1\x54\xf3\x9d\x72\xf9\x92\x43\x2e\x7f\x11\xbb\ \xa0\x79\x75\xd7\x06\x73\xcb\xea\x1d\xe6\x03\x6e\xe9\x7b\x0e\xd5\ \xbe\x2e\x76\x61\xf3\x1a\x6a\x7e\xfe\x3f\xe6\x25\xe7\x37\x1c\x8a\ \xb5\x30\x76\x5d\xf2\x38\x49\x6f\x3a\xb4\x6c\xba\x53\x36\xe3\x1c\ \x72\xa9\x49\xe5\x68\x75\x8f\xf3\xc7\xe3\x45\x6b\x4b\x1f\x76\xc8\ \x69\x5d\x2a\xbf\xbc\x3c\xe8\xd0\xb2\xaf\x1f\xb9\xcb\x49\x0e\xbb\ \x4c\xe3\xf5\xf2\xef\x1d\x5a\xb5\xd3\xf1\x97\xc9\xfa\x39\x32\xa7\ \x9c\xee\x8b\x5d\xd4\x63\x8c\x75\x78\xbb\x91\xd3\x4c\xe7\xac\xba\ \xa9\xc6\x21\xab\xbb\x63\x17\xf7\x18\xd3\x5c\xfe\x56\x27\x1e\xb9\ \xd3\x32\xbd\xe1\xb0\xd3\xf5\x29\x9b\x50\x71\xbc\x1a\x1c\x5a\xf5\ \x5f\x8e\x19\x79\x3c\xbb\x65\x75\x4d\xec\xc2\x1e\xa1\x5c\xcf\x39\ \xb4\xaa\x5e\xdd\xdd\x33\xfb\x6f\x87\xbc\xf6\xba\xbc\x00\xf6\xd3\ \xc7\xe5\x9e\x36\xcf\x9a\xc2\x5f\x73\xb9\xae\xfc\x20\x76\x7d\x5a\ \xe8\xe9\xf0\x66\x23\xa7\x9c\xeb\x9f\xdb\x18\x97\x8c\xb6\xa6\xea\ \x7d\xcb\xd7\x53\x7b\xe6\x4c\x77\xc9\xec\x55\x87\xe5\x4a\xfd\x2c\ \x74\x69\xd3\xdf\x1d\xbb\xe3\x51\xca\xba\xec\x3a\x3d\x9d\x55\x16\ \xb8\xb4\x67\x93\xf3\x7b\xf7\xdf\xb8\x64\xf5\x74\x6a\x7a\x04\x5c\ \xa3\x26\x97\x16\x5d\x15\x20\xb7\x72\x87\x2f\x01\x39\xf9\xde\x03\ \xda\x7c\xda\xa5\x3d\xd9\xfc\x13\x9f\x3e\xe9\xb2\xf3\xbd\x3a\x27\ \x76\x95\x24\x49\xb3\x5d\x5a\x93\xf7\x5a\x69\x72\xab\x53\x5e\x5f\ \x8b\x5d\x60\x49\xd2\x50\x6d\x75\x69\x4d\x95\xac\x8b\xd4\xe5\xf7\ \x0f\x4e\xd5\xfe\x44\xec\x42\x4b\x92\x26\xb9\x3c\xd2\xe6\xf4\x44\ \xfe\xdd\xdf\xe4\x54\xac\x77\x53\x30\x9d\xc2\x75\x2e\xaf\xa5\x72\ \x6a\x32\xf7\x6e\x3b\x5a\x77\x87\x2e\x1c\x07\xe3\x33\xb1\x8b\xac\ \x3e\x5a\xe1\xd4\x96\xbb\x02\x65\x58\xe9\x74\x7f\xb2\x2f\x05\xef\ \x5d\x46\xe8\x1d\xa7\x6a\x7f\x34\xff\x01\xba\xba\x1d\xe0\xf5\xc8\ \xf3\xd8\x5f\xa0\x7a\xa7\x96\x3c\x1c\x20\xbb\x7b\x9d\x72\x3b\x10\ \x79\xd4\x7a\x77\x97\x97\x7f\x39\xe5\xd4\xa0\x53\x83\x65\xf9\xa8\ \x53\x8e\x75\x9a\x1c\xb5\xda\x27\x6b\x9d\x53\x4b\xb6\xb4\xfe\x55\ \xeb\x4e\xa7\x43\xe4\xb4\x2c\xe2\x1c\x76\x63\xb4\xdd\xad\x1d\xd6\ \x59\x04\xf2\xa9\xd4\x01\xa7\xec\xf6\x9a\xa7\x84\x3a\x7e\x9d\xf5\ \x73\xb7\x2a\x7f\x2f\x60\x9e\x97\xb9\x65\xb9\x35\xe2\x6c\xc1\x7d\ \xf4\x92\x5b\x3b\xbe\xd8\xfa\x61\xfa\x3b\xf4\x30\x6a\x8e\x95\x1a\ \x1c\xa5\x54\x93\xcc\x63\x1b\x0f\xc7\x8b\x81\x72\xfc\x91\x5b\x86\ \x0d\xfa\xa3\x28\x55\xee\xe1\xf6\xcb\x9a\x53\x36\xf0\x87\xb6\xe7\ \xdd\x32\xad\x8e\x34\x3b\xf3\xc9\x8e\x7f\xfe\xf5\xaa\x68\xeb\x50\ \x5e\xb7\xa7\x39\xe5\xb4\x5e\x23\x12\x2f\xd5\x34\xc7\x4b\x58\x4e\ \x37\x04\xca\x72\x92\xd3\x17\x97\x9c\x72\xda\x1f\xe1\x05\xd5\x00\ \xc7\x3f\xaa\x30\x8f\x59\x2d\x7d\xd4\x31\xd7\xda\x08\x33\x06\x8f\ \x74\xe9\xa3\xd3\x1c\xdf\x6e\xfb\x60\xa7\x6a\xb7\xe3\xc1\xde\x49\ \xf8\xb9\xe9\x16\xa7\x57\x7f\x07\xe3\x95\x40\x6f\xa6\x25\x8f\xd1\ \xea\x87\x23\xab\x3b\x13\x9d\x94\xed\x4c\xa7\xfe\x15\xcd\xd9\x5b\ \xa7\x11\x6d\x4f\x46\xab\x1c\xf3\x6d\x4c\x78\x44\xe6\x05\x8e\x77\ \xb4\x39\xd5\xeb\xe4\xf6\x0e\xf8\x2d\xc7\xc3\xe5\xb4\x5f\x73\x12\ \x3a\x39\xbb\xb9\xde\xbd\xe4\x94\xd3\xf5\x01\xb3\x1d\xe7\xf4\x76\ \xba\x39\x16\xb5\xff\x0f\xeb\xe4\xc3\x6e\x5f\x31\x0e\xc6\x4f\x12\ \xc8\x79\x86\xf3\x99\xb1\x20\x40\xaf\xc5\x7c\xca\x74\xbb\x1a\x5d\ \x33\x9f\xd7\xfe\x41\x07\xaa\xd6\xb9\x5c\x0f\x26\x30\x57\xc0\x18\ \xd7\xab\x7c\x4e\x39\x3d\x1f\xf8\xc2\xe5\xf7\x1e\xe0\x60\x6c\x4c\ \x60\xf4\x7a\x37\xfd\x9b\x73\xd6\x07\x74\x76\xf0\xac\xa5\x32\x2d\ \x73\xce\x7b\x45\x02\x8b\xb5\xf5\x73\xbd\x4f\xcc\x29\xa7\x9a\xb6\ \x9f\xff\x9b\xcd\x71\x3e\x6c\x4e\x1b\xcd\x13\x18\xb7\xa5\xb3\xe6\ \xb8\x3e\xb8\xe4\x94\x53\x36\xf8\x9f\x53\xa5\xf6\x3a\xe7\xbc\x5f\ \xdf\x32\xcf\x12\xd3\x96\x4b\x5c\x86\x32\x1d\x19\x5e\x03\xad\xdb\ \x73\xb1\x7b\xe6\xf5\xfa\xbc\x3a\x07\xcc\xf8\x06\x6d\x72\xcf\xf9\ \x73\x85\x1d\xba\x8b\x5e\x77\x3f\x74\x4e\x8b\x03\x7d\x44\xb9\x58\ \xab\x03\x64\x7b\x7f\xc0\x7f\xda\x66\x3e\xa3\x2f\x8e\x8c\xcd\x81\ \xe6\x0e\x3e\x59\x0b\x1c\x5f\x5c\x36\xc7\xae\xc4\x1e\x5c\xbc\xfa\ \xd0\x1f\x19\x6b\x83\x74\x60\x96\xce\xd0\x2f\x02\x64\xbb\xbe\xf0\ \x51\xad\x1e\x23\xa9\x8f\x8d\xbd\xfa\xa6\xf3\x58\xf6\xf1\x7a\x20\ \x48\xa6\xf5\x47\xce\x96\x12\x48\x2f\x6d\x09\x92\xfd\x13\xba\xc8\ \x35\xcf\x3e\xba\xd3\xf9\xb9\xbf\x39\xfe\x3a\x81\x2a\x37\x1b\xae\ \x3d\x01\x5a\x90\xd5\x8f\x9c\x57\xc6\x3a\x55\xf7\x38\x75\xf8\x3d\ \x3a\x3e\x58\x4c\x1a\x3f\x0d\x92\x42\x4e\x8d\x5a\xa0\x33\x5c\x0a\ \x35\x51\x0b\x03\xfc\x26\x1d\x8c\x3b\x5c\xff\x49\x5b\x37\x33\x50\ \xfe\x39\x2d\xd1\x74\x97\x77\x18\x15\x9a\xab\x1d\x81\x72\x7c\x25\ \xe8\x2d\xf4\xb1\xbe\x18\xa8\x1d\x59\x3d\xac\xf3\x5d\x32\x1c\xa6\ \x7b\x83\x5c\xa6\x72\x2a\x7a\xba\x95\xd3\xb4\x2b\xd8\xc9\xd9\xa8\ \x9f\xe8\x43\xea\x72\xdc\x65\xea\xab\x4f\xe9\xd9\x60\xd9\xe5\xb4\ \x2c\xc1\x79\xf7\x1e\x0a\xd8\x8e\x57\xf4\xd7\x86\x3b\xae\x8c\xae\ \xd0\xf7\xdd\xba\x54\x1f\x1b\xfb\x83\x7f\xfe\x3b\x5a\xb9\x96\x07\ \xac\xf6\x33\xfa\xa4\x61\x52\xf3\x2e\xfa\x90\x7e\xe2\xfa\x11\xfb\ \xc8\xd8\x59\x7c\xb7\xbc\x3f\x0b\x58\xac\x9c\x72\xda\xa6\x7f\xd5\ \x55\x45\x7e\x4e\x19\xa0\x99\xfa\x91\xfb\xcb\xb3\xa3\x4f\xcc\x89\ \x09\x9e\x94\x83\x5d\x66\xad\x69\x3d\x0e\xe8\x17\xfa\x78\x91\xb3\ \x07\x74\xd6\x54\xcd\xd3\xc6\xc0\xff\xfe\xdf\x4c\xb0\xca\xcd\xce\ \xd5\xfe\xa0\x6d\xda\xab\x1f\xea\x06\x0d\x28\x2a\xa7\xee\xba\x5a\ \xdf\x71\xec\xbc\x9e\x3f\x8e\x63\x90\x7e\x99\x1e\x0f\x9c\x54\x4e\ \x39\x35\xe8\x29\xdd\xad\xab\x35\xbc\x8d\x4e\x37\x5d\x34\x5a\x33\ \xf4\x6d\xbd\x12\xec\x96\xbf\x65\x24\x3d\xbb\xb1\xd7\x18\xcc\xb6\ \xe3\x35\xfd\xbb\x6e\xd4\x04\x9d\xd4\x46\x26\x43\x74\xb9\xbe\xa0\ \xc7\x03\xfe\xea\x1f\x8e\x95\x91\xe6\xda\xbb\x3b\x81\xb6\x35\x69\ \xb9\xee\xd1\x0c\x8d\x6e\xe3\x2e\x37\xa3\xe1\x9a\xa6\xbb\xf5\xb4\ \xf3\x77\xfe\xfc\xf1\x48\xeb\x8f\x83\x6d\x3d\x27\x9e\xa2\x95\x09\ \xae\xf8\xd3\xa0\xb5\xaa\xd2\x0e\xd5\xab\x5e\xb5\x2a\x53\x5f\xf5\ \x52\x4f\x55\x68\x94\x2a\x13\x9c\xfc\xe2\x59\x5d\xa6\xa6\xc4\x8e\ \x76\xd0\xfd\xe6\x45\x1e\x0b\x97\xd5\x46\xbd\xae\x6d\xaa\x57\x8d\ \x6a\xd5\xa4\x9e\xea\xa9\x9e\xea\xa7\xe1\x1a\x95\xe0\x74\x6e\x0d\ \x9a\xac\xd5\x89\x1d\xad\xa5\x72\x3d\xad\x29\x89\x1d\xed\x80\xaa\ \xf4\xba\xaa\x55\xaf\x3a\xd5\x28\xa7\xde\xea\xa9\x9e\xea\xaf\x11\ \x1a\x95\xe0\x05\xf0\x5d\x8d\xd7\xd6\xe3\xdb\x74\x7a\x22\xbf\xb9\ \xe9\x89\x1d\x3a\x3d\xb1\x7f\x96\xc3\xfa\x98\x97\xd4\x2a\xb5\x88\ \x39\x93\x41\x65\xe0\x87\xae\xb4\x45\xd6\xb6\xde\xe2\xbc\xe8\x0d\ \x48\xb2\x54\xb1\xc6\xd7\x4f\x74\xef\xc8\x94\xe6\x78\x30\xf2\x72\ \xf2\xd7\x9f\x50\x3f\x6b\x5f\xb5\x15\x2b\x93\xc8\x9b\x80\x74\xc4\ \xdc\x88\x27\xa5\xc7\xba\x3a\xa5\x11\xbf\x8b\x38\x53\x44\x33\xaf\ \x89\xc2\xd2\x1f\x8b\xec\x5f\xb4\x06\x9c\x20\x37\xa8\x8f\x04\x1c\ \xfb\x57\x88\xef\x46\xaf\x40\x12\xb1\x53\xa3\xa2\x56\xf9\xa0\x4e\ \x7a\x2c\x7a\x25\x92\x88\x37\x0a\xeb\xfb\xdf\x9e\x31\xc1\xba\x82\ \xa4\x27\x56\x39\x2e\x4c\x7d\xbc\x27\xa5\xdf\x0c\x3b\x69\x8d\x7d\ \x11\x46\xd3\xe7\xd7\x4b\xaf\x44\xaf\x46\xe8\xa8\xf1\x1b\x68\x75\ \x71\xa0\xce\x89\x69\x89\xcd\x89\x74\xfd\x6d\xff\xa4\x5c\x1e\xbd\ \x12\x21\x23\xab\x8f\xc7\x2e\x71\x0b\x83\x83\xf7\x74\x88\x1b\xfb\ \x74\x85\x67\xb9\x6e\x72\x1e\xbf\x9e\xa6\xd8\xa1\xf1\xb1\xcf\xc6\ \x43\x86\x74\xe8\xc7\xad\xb4\xad\x1f\x3d\x21\xd0\x08\x87\x34\x44\ \x93\x3e\xe6\x5d\xae\x4f\x74\xd0\x77\xa7\xf5\x9a\x1a\xfb\x4c\x6c\ \x61\x98\xde\x8a\x5e\x91\x30\xf1\x4f\xb1\x4b\x9b\xc7\xf9\xee\x73\ \x5f\xa4\x23\xb2\xba\x2d\x44\xb9\x3e\x1b\xbd\x61\xfe\xb1\x27\xe2\ \xbc\xba\xf9\x8d\x71\x5a\x6a\x23\x5d\xf1\xdd\xd8\x65\x6d\xc5\x65\ \xc1\x06\xdf\xc4\x8c\xbf\x0a\x55\xae\x3f\xef\x60\x77\x01\xf5\xa9\ \x79\x29\xd5\xd2\x68\xbd\x1d\xbd\x32\xbe\xf1\x6f\x91\xbf\xb0\xb4\ \xe5\xe2\x0e\x76\x17\x90\x0d\x3b\xc8\xfa\x53\x1d\xe8\x5d\xc0\xce\ \x48\x93\x3c\xb7\xaf\xd2\x75\x1e\xd8\xd8\x51\xc0\x3c\x74\x51\x4d\ \x56\x75\xf4\x1a\x79\xc5\x01\x7d\x32\x74\xb9\x6e\xec\x20\x5f\x04\ \x36\x6b\x42\xec\x33\xaf\x0d\xc3\x02\x4c\xbf\x15\x23\xb2\xfa\x7c\ \xec\x52\x16\xe0\x9c\x40\x53\xb3\x24\x1d\x0d\xfa\x48\x12\xe5\x9a\ \xa2\x6d\xd1\x9b\x6a\x8d\x55\x1a\x16\xfb\xac\x6b\x47\xaf\x0e\xd0\ \x59\xa5\x21\xc1\x61\x4e\x36\x43\x3a\xc0\x27\xd8\x6a\x5d\x9c\x54\ \xb9\x46\x6b\x7d\xf4\xe6\x5a\xe2\xf1\x14\x74\x47\x6d\x5f\x17\x7d\ \x3f\x7a\xa5\x2c\xb1\x35\x81\x79\x8a\xfd\xf4\xd1\xa2\xe8\x15\xb3\ \xc4\xeb\xc9\xf6\xb1\xec\x1d\x74\x2e\x9b\x90\x91\xd5\xbd\x09\x0e\ \x2f\xb6\x9a\x9d\xc8\x78\xf1\x10\xf1\x92\xfb\xba\xca\xa1\x75\xd2\ \xbc\x92\x7d\xc9\xfd\xa8\xfa\x25\x5d\xae\x32\xcd\x29\xc1\x17\x82\ \xb5\xc1\x96\xfb\x0a\xe5\xc2\x92\x7c\x3e\x5d\xd0\xe6\xd4\x23\xe9\ \x75\x7d\x09\x0e\x16\xce\x6a\x5e\xac\xaf\x2c\x57\x94\xd8\x07\xab\ \x17\x74\x66\xec\x33\xec\x38\x0c\x2c\xb1\x51\x02\xbb\x12\x5e\x3c\ \xcb\x57\xa5\xdb\xa2\xe7\xc9\xc4\x3b\xba\x26\x66\xb9\xfa\xea\x07\ \xd1\x4b\x50\x58\x34\xe9\x5e\xc3\x44\xa4\xb1\xcd\x4a\x64\xa2\x2e\ \x8f\xf8\xad\xd3\xac\xcf\xf1\x94\x6b\xae\xdb\x02\xee\xa1\xe3\x41\ \x9f\xf1\x7e\x36\x37\x97\xc0\x57\x81\x55\xba\x20\x76\x99\x8c\x46\ \x07\x9d\x09\xd9\x27\x76\xeb\x8e\x04\x67\x54\x0e\x69\x4a\x09\x7c\ \x86\xdd\xaa\x9b\x62\x97\xa9\x59\x3f\xcd\x8f\x5e\x8e\xd6\x63\x9f\ \xe6\x15\xbe\x26\x4a\x8a\x95\x69\x56\xaa\xbb\xac\x3c\x95\x8a\xb1\ \xfe\x5e\x3a\x6b\x4e\xaa\x7b\xbc\x2c\x4c\x70\xbe\xce\x82\x5c\xa6\ \x15\xd1\x8b\x92\x2f\x16\x69\x6c\xec\xd2\x38\x3a\x55\xf3\x53\x79\ \x7b\xba\x49\xb3\x22\x4f\xf4\x15\xc2\x99\x41\x16\x14\xb3\xc7\x1a\ \x4d\x8b\x5d\x9a\x7c\xca\xf5\x67\x29\x7b\x18\x58\xad\xab\x63\x17\ \x25\x80\xc9\x5a\x12\xbd\xb2\x2d\xa3\x4e\x77\x95\xe8\x3b\xff\x42\ \x5c\xa3\x35\xd1\x2b\xdc\x32\xb6\xea\xb6\x34\x3f\x66\xf5\xd0\x9c\ \x94\xcc\x1f\x54\xa5\xd9\x69\x2e\x94\xd1\x95\x7a\x31\x7a\x85\x73\ \xca\xa9\x51\xf3\x9d\xd7\x7b\x4c\x9f\x8c\x66\x06\x59\x2e\xb7\xf8\ \xa8\xd6\xdc\x52\xe8\xc2\xd6\x57\x73\x23\xdf\x09\xfc\x4e\xb7\x96\ \x50\x67\x9f\xe3\x53\xa6\x19\x91\x2f\x02\x75\xfa\x67\x9d\x1a\xbb\ \x0c\x09\xe9\xac\x4f\x6a\x6d\xd4\x6a\x6f\xd5\x97\xa3\x4f\x5b\x57\ \x84\xae\x9a\x15\xe9\xd6\x69\x89\x66\x76\xe0\x5f\xfe\xa3\x4d\xd5\ \xc2\x28\xef\x04\x7e\xaf\xb9\xea\x1f\xbb\xf1\x09\xcb\x68\x7a\xa4\ \xee\xc2\x6f\xe8\xf6\x22\x17\xd1\x4b\x85\x8c\xae\xd4\x82\x04\x27\ \x5c\xa8\xd1\x7c\x9d\x13\xbb\xd1\x11\x9c\xa6\x39\x09\xce\x23\xd4\ \xa4\x45\x9a\x59\xc2\x3d\x2a\xac\xc6\x68\x5e\xf0\x95\xfc\x0e\x47\ \xa3\x16\x6a\x7a\x69\xff\xa0\x0d\xd2\xed\x5a\x1a\xb8\x8f\x75\x83\ \x7e\xa6\x1b\x23\xad\x36\x97\x0e\xe5\x9a\xae\xff\x51\x5d\xe0\xd3\ \x71\x85\xee\x8c\xb2\x76\x52\xda\x9c\xa4\x9b\xf4\x70\xe0\x51\x1a\ \x59\x3d\xa7\xbf\x2c\x72\xa1\xd1\x14\x3b\x5d\x9f\xd3\x93\x01\x96\ \x3f\xde\xa5\x9f\xe8\xe3\xea\x1b\xbb\x79\x29\xd1\x5d\x33\x75\x7f\ \x80\xf7\x2f\x4d\x7a\x5e\x5f\xd6\x98\xd8\xcd\x4b\x99\x7e\xfa\x84\ \x1e\x0a\x30\x9f\x50\xa3\x7e\xad\xcf\x26\x35\x5c\x3d\xd9\x6f\xb7\ \xbd\x75\x85\xae\xd4\x54\x9d\x6d\x1e\xbc\xd0\xa0\x17\xf5\xac\x7e\ \xa5\xa5\xda\x9f\x68\x0b\x4a\x41\x46\x93\x34\x4d\x17\xeb\x02\xf5\ \x34\xef\x6b\xad\x9e\xd3\x62\xfd\x4a\xdb\x63\x37\x2a\xb5\x3a\x6b\ \xaa\xae\xd6\x54\x4d\x32\xdf\x81\x36\x69\xb5\x96\xe8\x09\x2d\x56\ \x5d\x72\xe9\xc7\xe9\xbc\xd1\x47\x53\x34\x51\x13\x34\x4e\xa3\x8a\ \x7a\x5b\xbf\x47\x6b\xb4\x42\xab\xf4\xa2\x5e\x52\x63\x94\xcc\x4b\ \x49\x27\x4d\xd0\xf9\x1a\xaf\x71\x1a\x57\xd4\xc7\xa3\xac\xde\xd4\ \x4a\xad\xd2\x72\x2d\xd5\xb6\xd8\x8d\x28\x19\x5d\x35\x49\x93\x35\ \x4e\xe3\xf5\xbe\xa2\x7a\x45\x1c\xd0\x5a\xad\xd6\x0a\x2d\xd7\x52\ \xd5\x26\x9f\x76\xec\xde\x5b\x5d\x34\x4c\x95\x1a\xae\xa1\xaa\xd0\ \x00\x0d\x54\x6f\xe9\xd0\xc8\xe6\x03\xaa\x53\x4e\xd5\xda\xae\x6a\ \x55\x6b\x83\xaa\x54\xa5\x2d\xca\x46\xce\xb7\x54\x9d\xa2\x4a\x55\ \xea\x74\x0d\x52\x85\x2a\x54\xa1\x72\xf5\x38\xf4\x22\x6f\x97\xb2\ \xaa\x57\xb5\xb6\xa9\x5a\x9b\x55\xa5\x0d\xaa\x52\x43\xec\x74\x4b\ \x5a\x46\x83\x55\xa9\x4a\x0d\xd7\x80\x43\xd5\x2e\x53\xaf\x43\x3f\ \x74\x3b\x25\xd5\x6a\x9b\xb6\xab\x5a\x9b\x54\xa5\x0d\xda\xa8\x7d\ \xb1\x13\x06\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\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\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\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\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\x00\x00\x00\ \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ \x79\xfc\x7f\x18\x66\xef\x86\x8c\xae\xbb\xfa\x00\x00\x00\x25\x74\ \x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\ \x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x34\x3a\x30\x34\x3a\ \x32\x39\x2b\x30\x30\x3a\x30\x30\x55\xa0\x98\xa6\x00\x00\x00\x25\ \x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\ \x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x34\x3a\x30\x34\ \x3a\x32\x39\x2b\x30\x30\x3a\x30\x30\x24\xfd\x20\x1a\x00\x00\x00\ \x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\ \x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\ \x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x5d\x31\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xec\xdd\x79\x9c\xdd\x55\x79\x3f\xf0\xcf\xb9\xf7\ \xce\x4c\x66\x26\xeb\x24\x64\x17\x02\x01\x02\x21\x80\x6c\x02\x8a\ \x2b\x4a\x5d\x10\xc1\xa5\x6e\x50\xb7\xb6\xb6\xb6\x75\x6b\x6b\xb1\ \x54\xd4\xaa\x55\xfc\xb9\xa0\xad\xc5\xad\x8a\xb6\x55\x40\x14\x01\ \x41\xc5\x85\x1d\xd9\x21\x10\xb6\x84\xec\x21\x33\x59\x66\x32\xfb\ \xcc\x9d\xbb\x9c\xdf\x1f\x49\xec\x24\x24\x61\xce\x79\xce\xf7\x2c\ \xdf\xfb\x79\xbf\x5e\xfe\xd3\xce\xf7\xfb\x3d\x21\x93\xfb\x7d\xee\ \x73\x9e\xf3\x3c\x4a\x6b\x0d\xa2\x7d\x51\x4a\x4d\x07\xf0\x3a\x00\ \x2f\x06\x30\x1f\xc0\xbc\x5d\xff\x9b\x03\xa0\x14\x70\x69\x44\xb6\ \x34\x80\x95\x00\x1e\x04\x70\x07\x80\xef\x68\xad\x2b\x61\x97\x44\ \x14\x86\x62\x00\x40\xe3\x29\xa5\xa6\x02\x38\x1f\xc0\x79\x00\x5e\ \x0a\xa0\x29\xec\x8a\x88\x32\xf5\x10\x80\x77\x69\xad\x1f\x0d\xbd\ \x10\x22\xdf\x18\x00\x10\x00\x40\x29\xd5\x04\xe0\xaf\x00\x5c\x0c\ \x60\x56\xe0\xe5\x10\xf9\x34\x06\xe0\x9d\x5a\xeb\xab\x43\x2f\x84\ \xc8\x27\x06\x00\x04\xa5\xd4\x79\x00\xfe\x1f\x80\xc5\xa1\xd7\x42\ \x14\x48\x15\xc0\xdb\x19\x04\x50\x23\x61\x00\xd0\xc0\x94\x52\x45\ \x00\x5f\x02\xf0\xe1\xd0\x6b\x21\x8a\x00\x83\x00\x6a\x28\x0c\x00\ \x1a\x94\x52\x6a\x06\x80\x2b\x01\xbc\x2a\xf4\x5a\x88\x22\xc2\x20\ \x80\x1a\x06\x03\x80\x06\xa4\x94\x9a\x0b\xe0\x76\x00\x87\x87\x5e\ \x0b\x51\x84\x18\x04\x50\x43\x28\x84\x5e\x00\xf9\xa5\x94\x6a\x06\ \xf0\x33\xf0\xe5\x4f\xb4\x3f\x25\x00\x3f\x56\x4a\xbd\x39\xf4\x42\ \x88\xb2\xc4\x00\xa0\xf1\x5c\x06\xe0\xf4\xd0\x8b\x20\x8a\x1c\x83\ \x00\xca\x3d\x06\x00\x0d\x44\x29\xf5\x37\x00\xde\x1b\x7a\x1d\x44\ \x89\x60\x10\x40\xb9\xc6\x1a\x80\x06\xa1\x94\x9a\x05\x60\x35\x80\ \xa9\xa1\xd7\x42\x94\x18\xd6\x04\x50\x2e\x31\x03\xd0\x38\x3e\x01\ \xbe\xfc\x89\x6c\x30\x13\x40\xb9\xc4\x0c\x40\x03\x50\x4a\x2d\x06\ \xf0\x04\xd8\xd6\x97\x48\x82\x99\x00\xca\x15\x66\x00\x1a\xc3\x3f\ \x83\x2f\x7f\x22\x29\x66\x02\x28\x57\x98\x01\xc8\x39\xa5\x54\x09\ \xc0\x16\x00\x1d\xa1\xd7\x42\x94\x13\xcc\x04\x50\x2e\x70\xa4\x6b\ \xfe\xbd\x04\x0e\x5e\xfe\xa7\x9e\x7a\x1a\x2e\xb8\xe0\x5d\x38\xf1\ \xc4\x93\xb0\x6c\xd9\xb1\x98\x34\x69\x92\x83\xa5\x11\xb9\x77\xc6\ \x19\xa7\xe1\xde\x7b\xef\xc9\xf2\x11\xbb\x33\x01\x60\x10\x40\x29\ \x63\x00\x90\x7f\xe7\x4a\x2e\x6e\x6e\x6e\xc6\x27\x3e\xf1\x29\xfc\ \xc3\x3f\x7c\x0c\xc5\x62\xd1\xd5\x9a\x88\x52\xc7\x20\x80\x92\xc7\ \x00\x20\xff\x5e\x2d\xb9\xf8\xb2\xcb\xbe\x8d\x0b\x2e\x78\x97\xab\ \xb5\x10\xe5\x09\x83\x00\x4a\x1a\x8b\x00\xf3\xef\x10\xdb\x0b\x5f\ \xf7\xba\xb3\xf9\xf2\x27\x3a\x30\x16\x06\x52\xb2\x18\x00\xe4\x98\ \x52\x6a\x26\x80\x66\xdb\xeb\x3f\xfb\xd9\xcf\x3b\x5c\x0d\x51\x6e\ \x31\x08\xa0\x24\x31\x00\xc8\xb7\xf9\xb6\x17\x4e\x9e\x3c\x19\x47\ \x1f\xbd\xd4\xe5\x5a\x88\xf2\x8c\x41\x00\x25\x87\x01\x40\xbe\xcd\ \xb3\xbd\xf0\xf8\xe3\x9f\x8f\x42\x81\xbf\x1e\x44\x06\x18\x04\x50\ \x52\xf8\x09\x9f\x6f\x6d\xb6\x17\x76\x74\xcc\x74\xb9\x0e\xa2\x46\ \xc1\x20\x80\x92\xc1\x00\x80\x88\xc8\x2d\x06\x01\x94\x04\x06\x00\ \x44\x44\xee\x31\x08\xa0\xe8\x31\x00\x20\x22\xda\x65\xea\x4c\xa7\ \x5b\x5f\x0c\x02\x28\x6a\x0c\x00\x88\x88\x76\xf9\x9b\x2f\x7f\x0d\ \x87\x1e\xb3\xcc\xe5\x2d\x19\x04\x50\xb4\x18\x00\x10\x11\xed\x32\ \x79\xfa\x74\x7c\xe2\x47\x3f\x61\x10\x40\x0d\x81\x01\x00\x11\xd1\ \x38\x0c\x02\xa8\x51\x30\x00\x20\x22\xda\x0b\x83\x00\x6a\x04\x0c\ \x00\x88\x88\xf6\x81\x41\x00\xe5\x1d\xa7\x01\x52\x70\x1b\x36\xac\ \xc7\xca\x95\x2b\x51\xab\xd5\x42\x2f\x25\x17\x4a\xa5\x12\x8e\x3a\ \xea\x28\x2c\x58\xb0\x30\xf4\x52\x92\xb7\x3b\x08\xf8\xcc\x3b\xde\ \x82\xb5\x8f\xad\x70\x75\x5b\x4e\x11\xa4\x28\x30\x00\xa0\x20\x56\ \xad\x5a\x89\x0b\x2f\xfc\x18\xfe\xf0\x87\x3b\xb1\x7d\xfb\xf6\xd0\ \xcb\xc9\xa5\x39\x73\xe6\xe0\x8c\x33\x5e\x82\x4b\x2e\xf9\x7f\x38\ \xf8\x60\xeb\xa1\x90\x0d\x8f\x41\x00\xe5\x15\xb7\x00\xc8\xbb\x6f\ \x7c\xe3\xdf\x71\xca\x29\x27\xe0\xfa\xeb\xaf\xe5\xcb\x3f\x43\x5b\ \xb6\x6c\xc1\x4f\x7f\xfa\x13\x9c\x78\xe2\x71\xb8\xfc\xf2\xef\x85\ \x5e\x4e\xd2\xb8\x1d\x40\x79\xc4\x00\x80\xbc\xfa\xe6\x37\xff\x13\ \x1f\xf9\xc8\x07\x31\x3c\x3c\x1c\x7a\x29\x0d\xa3\xbf\xbf\x1f\x7f\ \xf9\x97\xef\xc3\x55\x57\x5d\x11\x7a\x29\x49\xdb\x1d\x04\x2c\x5a\ \x7a\x8c\xcb\xdb\x32\x08\xa0\x60\x18\x00\x90\x37\xab\x57\x3f\x8d\ \x0b\x2f\xfc\xc7\xd0\xcb\x68\x58\x1f\xfa\xd0\xdf\x62\xcb\x96\x2d\ \xa1\x97\x91\xb4\xc9\xd3\xa7\xe3\xe2\x1f\x5f\xcd\x20\x80\x72\x81\ \x01\x00\x79\x73\xd1\x45\x1f\xe7\x37\xff\x80\xba\xbb\xbb\xf1\xf9\ \xcf\x7f\x36\xf4\x32\x92\xc7\x20\x80\xf2\x82\x01\x00\x79\x73\xef\ \xbd\xf7\x84\x5e\x42\xc3\xbb\xeb\xae\x3b\x43\x2f\x21\x17\x18\x04\ \x50\x1e\x30\x00\x20\x2f\xb6\x6f\xdf\x8e\x4d\x9b\x36\x86\x5e\x46\ \xc3\x7b\xec\xb1\x15\x28\x97\xcb\xa1\x97\x91\x0b\x0c\x02\x28\x75\ \x0c\x00\xc8\x8b\x9e\x9e\xee\xd0\x4b\x20\x00\x95\x4a\x05\x7d\x7d\ \x7d\xa1\x97\x91\x1b\x0c\x02\x28\x65\x0c\x00\xc8\x8b\xc5\x8b\x0f\ \x47\x5b\x5b\x5b\xe8\x65\x34\xbc\x79\xf3\xe6\x63\xf6\xec\xd9\xa1\ \x97\x91\x2b\x3c\x1d\x40\xa9\x62\x00\x40\x5e\x14\x8b\x45\x2c\x5b\ \x76\x6c\xe8\x65\x34\xbc\x93\x4e\x3a\x39\xf4\x12\x72\x69\xca\x8c\ \x19\x0c\x02\x28\x39\x0c\x00\xc8\x9b\xf3\xcf\xff\xb3\xd0\x4b\x68\ \x78\x17\x5c\xc0\xbf\x83\xac\x30\x08\xa0\xd4\x30\x00\x20\x6f\xde\ \xff\xfe\xbf\xc6\x99\x67\xbe\x32\xf4\x32\x1a\xd6\x9b\xdf\xfc\xa7\ \x38\xef\xbc\x37\x85\x5e\x46\xae\xed\x0e\x02\x0e\x39\x9a\x41\x00\ \xc5\x8f\x01\x00\x79\xa3\x94\xc2\x77\xbe\xf3\x3d\x1c\x71\xc4\x91\ \xa1\x97\xd2\x70\x96\x2d\x3b\x16\x5f\xff\xfa\x37\x42\x2f\xa3\x21\ \x4c\x99\x31\x03\x17\xff\x98\x41\x00\xc5\x8f\x01\x00\x79\xb5\x70\ \xe1\xf3\x70\xff\xfd\x0f\xe3\x83\x1f\xfc\x30\x0a\x05\xfe\xfa\x65\ \xad\x54\x2a\xe1\xe3\x1f\xbf\x08\x77\xdf\x7d\x3f\x66\xcd\x9a\x15\ \x7a\x39\x0d\x83\x41\x00\xa5\x80\xd3\x00\xc9\xbb\xd6\xd6\x56\x7c\ \xe9\x4b\x5f\xc5\x07\x3e\xf0\xb7\xb8\xe7\x9e\xbb\xf1\xc0\x03\xf7\ \x63\xd5\x2a\x8e\x03\x76\xa5\x54\x2a\x61\xc9\x92\xa3\x70\xd2\x49\ \x27\xe3\xb4\xd3\x4e\xe7\x24\xc0\x40\x76\x07\x01\xff\xfa\xf6\xb7\ \x60\xfd\x13\x8f\xb9\xba\x2d\xa7\x08\x92\x33\x0c\x00\x28\x98\xc3\ \x0e\x5b\x8c\xc3\x0e\x5b\x8c\xb7\xbf\xfd\x9d\xa1\x97\x42\x94\x09\ \x06\x01\x14\x33\xe6\x60\x89\x88\x32\xc4\xed\x00\x8a\x15\x03\x00\ \x22\xa2\x8c\x31\x08\xa0\x18\x31\x00\x20\x22\xf2\x80\x41\x00\xc5\ \x86\x01\x00\x11\x91\x27\xff\x17\x04\x2c\x75\x79\x5b\x06\x01\x64\ \x85\x01\x00\x11\x91\x47\x3b\x83\x80\xab\x19\x04\x50\x70\x0c\x00\ \x88\x88\x3c\x9b\x32\x63\x06\x2e\xfe\x11\x33\x01\x14\x16\x03\x00\ \x22\xa2\x00\xa6\x74\x74\x30\x08\xa0\xa0\x18\x00\x10\x11\x05\xc2\ \x20\x80\x42\x62\x00\x40\x44\x14\x10\x83\x00\x0a\x85\x01\x00\x11\ \x51\x60\x0c\x02\x28\x04\x06\x00\x44\x44\x11\x60\x10\x40\xbe\x31\ \x00\x20\x22\x8a\x04\x83\x00\xf2\x89\x01\x00\x11\x51\x44\x76\x07\ \x01\x07\x1f\x75\xb4\xcb\xdb\x32\x08\xa0\x67\xe1\x34\x40\x0a\x66\ \x6c\x6c\x0c\x2b\x56\x3c\xca\x71\xc0\x8e\x8d\x1f\x07\x7c\xcc\x31\ \xcb\x50\x2a\xf1\x9f\x79\x6a\xa6\x74\x74\xe0\x93\x3f\xbe\x1a\x9f\ \x7e\xfb\x9b\xb1\xe1\xc9\x27\x5c\xdd\x96\x53\x04\x69\x0f\xfc\x64\ \xa0\x20\xbe\xf3\x9d\x6f\xe1\xc2\x0b\xff\x11\x03\x03\x03\xa1\x97\ \x92\x6b\x1d\x1d\x1d\xf8\xca\x57\xbe\x86\x77\xbc\xe3\xfc\xd0\x4b\ \x21\x43\x0c\x02\x28\x6b\xdc\x02\x20\xaf\xfa\xfa\xfa\xf0\xda\xd7\ \x9e\x85\xbf\xf9\x9b\xbf\xe2\xcb\xdf\x83\x9e\x9e\x1e\xbc\xfb\xdd\ \x17\xe0\x4d\x6f\x3a\x17\x23\x23\x23\xa1\x97\x43\x86\x76\x07\x01\ \xdc\x0e\xa0\x2c\x30\x00\x20\xaf\xfe\xfe\xef\x3f\x8c\xdf\xfe\xf6\ \x37\xa1\x97\xd1\x70\xae\xbf\xfe\x5a\x7c\xea\x53\x9f\x08\xbd\x0c\ \xb2\xc0\x20\x80\xb2\xc2\x00\x80\xbc\xb9\xe1\x86\x5f\xe0\x87\x3f\ \xbc\x3c\xf4\x32\x1a\xd6\xd7\xbe\xf6\x55\xdc\x73\xcf\xdd\xa1\x97\ \x41\x16\x18\x04\x50\x16\x18\x00\x90\x37\x97\x5e\xfa\xe5\xd0\x4b\ \x68\x68\xf5\x7a\x1d\x5f\xff\xfa\xa5\xa1\x97\x41\x96\x18\x04\x90\ \x6b\x2c\x02\x24\x6f\x96\x2f\x7f\x38\xf4\x12\x1a\xde\x03\x0f\xdc\ \x1f\x7a\x09\x51\xab\x8e\x55\x50\x29\x97\x43\x2f\x63\xbf\x26\xb5\ \xb7\xe3\xe3\xdf\xff\x1f\x7c\xf6\xfc\xb7\xe2\x99\xd5\x4f\xbb\xba\ \x2d\x0b\x03\x1b\x14\x03\x00\xf2\x62\xed\xda\x35\xe8\xed\xed\x0d\ \xbd\x8c\x86\xb7\x66\xcd\x6a\xec\xd8\xb1\x03\x33\x66\xcc\x08\xbd\ \x94\xcc\x14\x0a\xf6\x89\xcd\x4f\xfe\xe9\x79\x0e\x57\x92\x14\x06\ \x01\x0d\x88\x5b\x00\xe4\x45\x73\x73\x73\xe8\x25\x10\x76\xbe\x1c\ \x9b\x9a\x9a\x42\x2f\x23\x53\x33\x67\xce\x0a\xbd\x84\x54\x71\x3b\ \xa0\xc1\x30\x00\x20\x2f\x16\x2c\x58\x88\x83\x0e\x3a\x28\xf4\x32\ \x1a\xde\x91\x47\x2e\xc1\xe4\xc9\x93\x43\x2f\x23\x53\xf3\xe6\xcd\ \x0b\xbd\x84\x94\xed\x0e\x02\x4e\x0f\xbd\x10\xca\x1e\x03\x00\xf2\ \xe6\xc4\x13\x4f\x0a\xbd\x84\x86\x77\xca\x29\x2f\x08\xbd\x84\xcc\ \x1d\x72\xc8\xa2\xd0\x4b\x48\x5d\x09\xc0\xe5\x4a\xa9\xd6\xd0\x0b\ \xa1\x6c\x31\x00\x20\x6f\x2e\xba\xe8\x62\xd1\xfe\x2c\xc9\xb4\xb4\ \xb4\xe0\x63\x1f\xbb\x30\xf4\x32\x32\xf7\x9a\xd7\xbc\x36\xf4\x12\ \xf2\xe0\x48\x00\xff\x12\x7a\x11\x94\x2d\x7e\x1a\x93\x37\xa7\x9d\ \x76\x3a\x3e\xfa\xd1\x7f\x08\xbd\x8c\x86\x75\xf1\xc5\x9f\xc6\x92\ \x25\x47\x85\x5e\x46\xe6\x8e\x3b\xee\x78\x2c\x5a\x74\x68\xe8\x65\ \xe4\xc1\xab\x43\x2f\x80\xb2\xc5\x00\x80\xbc\xfa\xe4\x27\xff\x15\ \xef\x7d\xef\x9f\x87\x5e\x46\x43\x51\x4a\xe1\xef\xfe\xee\x43\x0d\ \x15\x7c\xbd\xe7\x3d\xef\x0b\xbd\x84\x3c\x58\xa6\x94\x62\xf5\x6e\ \x8e\x31\x00\x20\xaf\x5a\x5a\x5a\xf0\xcd\x6f\x7e\x07\xbf\xf8\xc5\ \xaf\x70\xe4\x91\x4b\x42\x2f\x27\xf7\x96\x2d\x3b\x16\xbf\xfd\xed\ \x2d\xf8\xf2\x97\x2f\x45\xb1\x58\x0c\xbd\x1c\x6f\x3e\xf8\xc1\x0f\ \x63\xee\xdc\xb9\xa1\x97\x91\xba\x66\x00\x87\x87\x5e\x04\x65\x87\ \x7d\x00\x28\x88\xb3\xce\xfa\x13\xac\x58\xf1\x24\xb6\x6f\xdf\x8e\ \x07\x1f\x7c\x80\xe3\x80\x1d\xda\x3d\x0e\xf8\xc4\x13\x4f\xca\xf5\ \x79\xff\x03\x69\x6f\x6f\xc7\xa7\x3f\xfd\x59\xbc\xff\xfd\xcc\x36\ \x09\x31\x03\x90\x63\x0c\x00\x28\xa8\x59\xb3\x66\xe1\xac\xb3\xfe\ \x04\x67\x9d\xf5\x27\xa1\x97\x42\x39\xf3\x9e\xf7\xbc\x0f\x77\xdf\ \xfd\x07\x7c\xff\xfb\xff\x15\x7a\x29\x44\x51\xe2\x16\x00\x11\xe5\ \xd6\x7f\xfc\xc7\x65\x78\xf9\xcb\x5f\x11\x7a\x19\x44\x51\x62\x00\ \x40\x44\xb9\xd5\xd4\xd4\x84\xeb\xae\xbb\x11\xef\x78\xc7\xf9\xa1\ \x97\x42\x14\x1d\x06\x00\x44\x94\x6b\x2d\x2d\x2d\xb8\xfc\xf2\xff\ \xc6\x25\x97\x7c\x29\xf7\x5d\x10\x89\x4c\x30\x00\x20\xa2\x86\xf0\ \x91\x8f\xfc\x3d\x9e\x7c\x72\x35\x3e\xf0\x81\xbf\x45\x6b\x2b\x9b\ \xdc\x11\xb1\x08\x90\x88\x1a\xc6\xec\xd9\xb3\x71\xe9\xa5\xff\x8e\ \x7f\xfb\xb7\x4b\xf0\xdb\xdf\xde\x84\xeb\xaf\xbf\x0e\xab\x56\xad\ \x44\x67\x67\x27\xb6\x6e\xdd\x82\x6a\xb5\xba\xdf\x6b\xb5\xf6\xb8\ \x50\x87\x2a\x95\x31\xe8\x54\x17\x4f\x99\x62\x00\x40\x44\x0d\xa7\ \xad\xad\x0d\xe7\x9c\x73\x2e\xce\x39\xe7\xdc\x09\xfd\xfc\xc0\xc0\ \x28\xca\xe5\x4a\xc6\xab\xca\xc6\x2b\x5f\xf9\x22\x3c\xfe\xf8\xa3\ \xa1\x97\x41\x11\xe2\x16\x00\x11\x11\x51\x03\x62\x00\x40\x44\x44\ \xd4\x80\x18\x00\x10\x11\x11\x35\x20\x06\x00\x44\x44\x44\x0d\x88\ \x01\x00\x11\x11\x51\x03\x62\x00\x40\x44\x44\xd4\x80\x18\x00\x10\ \x11\x11\x35\x20\x06\x00\x44\x44\x44\x0d\x88\x01\x00\x11\x11\x51\ \x03\x62\x00\x40\x44\x44\xd4\x80\x18\x00\x10\x11\x11\x35\x20\x06\ \x00\x44\x44\x44\x0d\x88\x01\x00\x11\x11\x51\x03\x62\x00\x40\x44\ \x44\xd4\x80\x18\x00\x10\x11\x11\x35\x20\x06\x00\x44\x44\x44\x0d\ \x88\x01\x00\x11\x11\x51\x03\x62\x00\x40\x44\x44\xd4\x80\x18\x00\ \x10\x11\x11\x35\x20\x06\x00\x44\x44\x44\x0d\x88\x01\x00\x11\x11\ \x51\x03\x62\x00\x90\x6f\x9b\x6d\x2f\x9c\x3f\x7f\xbe\xcb\x75\x10\ \x51\x20\xf3\xe6\xcd\x93\x5c\x6e\xfd\x19\x42\xf1\x63\x00\x90\x6f\ \xcb\x01\x54\x6c\x2e\x3c\xe9\xa4\x93\x1d\x2f\x85\x88\x42\x38\xfe\ \xf8\x13\x6d\x2f\xdd\xa0\xb5\xde\xea\x72\x2d\x14\x17\x06\x00\x39\ \xa6\xb5\x2e\x03\x58\x61\x73\x2d\x03\x00\xa2\x7c\x10\x04\x00\xf7\ \xb9\x5c\x07\xc5\x87\x01\x40\xfe\x5d\x62\x7a\xc1\x6b\x5f\xfb\x3a\ \x1c\x7b\xec\x71\x59\xac\x85\x88\x3c\x7b\xf9\xcb\x5f\x89\x65\xcb\ \x8e\x37\xbd\xac\x06\xe0\x8b\x19\x2c\x87\x22\xc2\x00\x20\xe7\xb4\ \xd6\x57\x02\xb8\x7a\xa2\x3f\xdf\xd1\xd1\x81\xcb\x2e\xfb\x4e\x86\ \x2b\x22\x22\x9f\x4a\xa5\x12\x2e\xbd\xf4\x3f\xd1\xd4\xd4\x64\x72\ \xd9\x97\xb5\xd6\xf7\x66\xb5\x26\x8a\x03\x03\x80\xc6\xf0\x57\x00\ \x7e\xf3\x5c\x3f\x34\x6f\xde\x7c\x5c\x79\xe5\x4f\xa5\x45\x43\x44\ \x14\x99\xa5\x4b\x8f\xc5\x57\xbf\x7a\x19\xa6\x4c\x99\x32\x91\x1f\ \xff\x5f\x00\x9f\xcc\x78\x49\x14\x01\x06\x00\x0d\x40\x6b\xdd\xad\ \xb5\x3e\x0b\x3b\x03\x81\xde\xbd\xff\xff\xc5\x62\x11\xe7\x9f\xff\ \x67\x58\xbe\xfc\x31\xbc\xf4\xa5\x2f\xf3\xbe\x3e\x22\xca\xde\x1b\ \xdf\xf8\xa7\xb8\xf9\xe6\x7b\x70\xe6\x99\x67\x41\x29\xb5\xaf\x1f\ \xd9\x08\xe0\x0d\x5a\xeb\xf3\xb5\xd6\xa3\x9e\x97\x47\x01\x28\xad\ \x75\xe8\x35\x90\x47\x4a\xa9\x02\x80\x23\x01\x9c\xfc\x99\xcf\x7c\ \xee\x0b\x2f\x7e\xf1\x4b\x17\x3c\xff\xf9\x27\xa0\xad\xad\x2d\xf4\ \xd2\x88\xa2\x35\x30\x30\x8a\x72\xd9\xea\x40\x4d\x94\xfa\xfb\xfb\ \xf1\xe8\xa3\x0f\xe3\x91\x47\x1e\x1c\xf8\xcc\x67\x2e\x7e\x1f\x80\ \xfb\xb5\xd6\x6b\x43\xaf\x8b\xfc\x62\x00\xd0\xc0\x2a\x15\x3c\x0c\ \xc0\xb8\x3a\x88\xa8\xd1\xe4\x2d\x00\xd8\xad\xa9\xa9\xd8\x35\x6b\ \x56\x1b\xf7\xfc\x1a\x14\xb7\x00\x88\x88\x88\x1a\x10\x03\x00\x22\ \x22\xa2\x06\xc4\x00\x80\x88\x88\xa8\x01\x31\x00\x20\x22\x22\x6a\ \x40\x0c\x00\x88\x88\x88\x1a\x10\x03\x00\x22\x22\xa2\x06\xc4\x00\ \x80\x88\x88\xa8\x01\x31\x00\x20\x22\x22\x6a\x40\x0c\x00\x88\x88\ \x88\x1a\x10\x03\x00\x22\x22\xa2\x06\xc4\x00\x80\x88\x88\xa8\x01\ \x31\x00\x20\x22\x22\x6a\x40\x0c\x00\x88\x88\x88\x1a\x50\x29\xf4\ \x02\x62\xa4\x94\x2a\x02\x98\x0d\x60\xfe\xb8\xff\x4d\x07\xb0\xcf\ \x21\xda\xa9\xba\xf0\xc2\x7f\x9e\x3d\x79\xf2\x94\xd0\xcb\x20\x8a\ \x5e\xb9\x5c\x45\xad\x56\x0b\xbd\x0c\xe7\x6a\xb5\x6a\xfb\x25\x97\ \x7c\xf6\xc2\xd0\xeb\x70\x4c\x03\xe8\x06\xb0\x79\xdc\xff\xb6\x69\ \x8e\xbe\x7d\x16\x8e\x03\x06\xa0\x94\x9a\x0c\xe0\x4f\x00\xbc\x01\ \xc0\xcb\x01\xcc\x03\x50\x0c\xba\x28\x22\x22\x72\xa5\x02\x60\x13\ \x80\x9b\x00\x5c\x0b\xe0\xf7\x5a\xeb\x72\xd8\x25\x85\xd7\xb0\x01\ \x80\x52\xaa\x03\xc0\x9b\xb1\xf3\xa5\x7f\x26\x80\x96\xb0\x2b\x22\ \x22\x22\x4f\x06\x01\xfc\x0a\x3b\x83\x81\x6b\xb4\xd6\x43\x81\xd7\ \x13\x44\xc3\x05\x00\x4a\xa9\x36\x00\x1f\x06\xf0\x31\x00\xd3\x02\ \x2f\x87\x88\x88\xc2\xea\x02\xf0\x29\x00\xff\xa5\xb5\xae\x06\x5e\ \x8b\x57\x0d\x13\x00\xec\xda\xd7\x7f\x2f\x76\xfe\x45\xcf\x0f\xbb\ \x1a\x22\x22\x8a\xcc\x53\x00\x3e\xae\xb5\xbe\x26\xf4\x42\x7c\x69\ \x88\x00\x40\x29\x75\x06\x80\xef\x00\x38\x2a\xf4\x5a\x88\x88\x28\ \x6a\x77\x01\x78\x8f\xd6\x7a\x65\xe8\x85\x64\x2d\xf7\x01\x80\x52\ \xea\x7d\x00\xfe\x13\x40\x73\xe8\xb5\x10\x11\x51\x12\x7a\x01\xbc\ \x55\x6b\x7d\x53\xe8\x85\x64\x29\xb7\x7d\x00\x94\x52\x45\xa5\xd4\ \xa5\x00\xbe\x0b\xbe\xfc\x89\x88\x68\xe2\xa6\x03\xb8\x51\x29\xf5\ \xa1\xd0\x0b\xc9\x52\x2e\x33\x00\x4a\xa9\xe9\x00\xae\x04\x70\x56\ \xe8\xb5\x10\x11\x51\xd2\xbe\x0b\xe0\x03\x5a\xeb\x4a\xe8\x85\xb8\ \x96\xbb\x00\x40\x29\xd5\x0a\xe0\x36\x00\x27\x87\x5e\x0b\x11\x11\ \xe5\xc2\xd5\x00\xfe\x34\x6f\xcd\x84\xf2\xb8\x05\xf0\x3d\xf0\xe5\ \x4f\x44\x44\xee\xbc\x19\xc0\xc5\xa1\x17\xe1\x5a\xae\x32\x00\x4a\ \xa9\x8b\x00\x7c\x36\xf4\x3a\x88\x88\x28\x77\x34\x76\x66\x01\xae\ \x0e\xbd\x10\x57\x72\x13\x00\x28\xa5\xce\x05\xf0\x33\xe4\xac\x5f\ \x3f\x11\x11\x45\x63\x18\xc0\x19\x5a\xeb\x87\x42\x2f\xc4\x85\x5c\ \x04\x00\x4a\xa9\x45\x00\x1e\x05\x30\x39\xec\x4a\x88\x88\x28\xe7\ \x36\x00\x38\x5a\x6b\x3d\x1c\x7a\x21\x52\x79\xa9\x01\xf8\x0c\xf8\ \xf2\x27\x22\xa2\xec\x1d\x0c\xe0\x23\xa1\x17\xe1\x42\xf2\x19\x00\ \xa5\xd4\xf3\x01\x3c\x08\xc7\xa9\xff\x52\xa9\x80\xe3\x97\x2e\xc0\ \x82\xb9\xd3\x30\x7f\xce\x34\x4c\x9b\xda\xea\xf2\xf6\x44\x44\xf9\ \x33\xd4\x0f\x74\x6f\x09\xbd\x0a\xf4\x0c\x56\xb0\x79\x47\x19\x1b\ \xba\xcb\x58\xb1\x69\x10\x19\xbc\xe6\xfa\x01\x2c\xd6\x5a\x6f\x77\ \x7e\x67\x8f\x4a\xa1\x17\xe0\xc0\x17\xe0\xf0\xe5\xff\x9a\x57\x2c\ \xc5\x3b\xcf\x3b\x09\xaf\x3d\x73\x29\x66\x4c\x6b\x73\x75\x5b\x22\ \xa2\xfc\xeb\xda\x00\x3c\x11\xd7\xf6\x78\x67\xef\x18\xae\x7b\x70\ \x1b\xbe\x7f\x6b\x27\xee\x59\xdd\xef\xea\xb6\x53\x01\xfc\x0b\x76\ \x0e\x96\x4b\x56\xd2\x19\x00\xa5\xd4\x99\x00\x7e\xeb\xe2\x5e\x27\ \x1f\x7f\x30\xbe\xf4\x89\x37\xe0\xa5\xa7\x1f\xee\xe2\x76\x44\x44\ \x8d\x27\xc2\x00\x60\xbc\x9f\xdd\xb7\x0d\x17\x5e\xb9\x1a\xab\xba\ \x9c\x6c\xdf\x8f\x01\x38\x4a\x6b\xbd\xd6\xc5\xcd\x42\x48\xbd\x06\ \xe0\x13\x2e\x6e\xf2\xa1\x3f\x7f\x29\xee\xbe\xfe\x23\x7c\xf9\x13\ \x11\xe5\xd8\x1b\x4f\x39\x08\xcb\xff\xed\x05\x78\xcb\xa9\xb3\x5d\ \xdc\xae\x19\xc0\x85\x2e\x6e\x14\x4a\xb2\x19\x00\xa5\xd4\x41\xd8\ \x39\xc7\xd9\x3a\x88\x51\x4a\xe1\xb2\x2f\xbc\x05\xef\x3f\xff\x45\ \xee\x16\x46\x44\xd4\xa8\x22\xcf\x00\xec\xa6\x35\xf0\x89\xab\xd7\ \xe0\x73\xd7\xae\x93\xde\x6a\x1b\x80\xb9\x5a\xeb\xba\x7c\x55\xfe\ \xa5\x9c\x01\x78\x3d\x84\xeb\xff\xfc\xc7\xcf\xe6\xcb\x9f\x88\xa8\ \xc1\x28\x05\x7c\xf6\x2d\x87\xe1\x2f\x5e\x3e\x5f\x7a\xab\x83\x00\ \x24\xfb\x12\x49\x39\x00\x78\x83\xe4\xe2\x77\xbd\xe5\x05\xf8\xa7\ \xbf\x79\xa5\xab\xb5\x10\x11\x51\x62\xbe\xf1\xee\x25\x78\xf1\x92\ \xe9\xd2\xdb\x9c\xeb\x62\x2d\x21\x24\x19\x00\x28\xa5\xda\x00\xbc\ \xca\xf6\xfa\xe9\x53\x5b\xf1\xd5\x4f\x9f\xe7\x70\x45\x44\x44\x94\ \x9a\xa6\xa2\xc2\x37\xdf\xbb\x04\xc5\x82\xe8\x20\x59\xb2\x2f\x93\ \x24\x03\x00\x00\xaf\x04\x60\x7d\x30\xff\x63\x1f\x38\x93\x47\xfc\ \x88\x88\x08\x4b\x17\xb4\xe3\x3d\x2f\x99\x27\xb9\xc5\xa1\x4a\xa9\ \x63\x5d\xad\xc7\xa7\x54\x03\x80\x63\x6c\x2f\x9c\xd4\xd2\x84\xbf\ \x7b\xef\x4b\x5c\xae\x85\x88\x88\x12\xf6\x4f\xaf\x3f\x44\x7a\x8b\ \x65\x2e\xd6\xe1\x5b\xaa\x01\x80\x75\xe5\xc6\xab\x5e\xb2\x04\x93\ \xdb\x5b\x5c\xae\x85\x88\x88\x12\x76\xf8\x9c\x56\x1c\xfb\x3c\x51\ \x37\x79\x71\x35\x61\x08\x0d\x17\x00\x9c\xfb\xea\x24\x33\x35\x44\ \x44\x94\xa1\x73\x4f\x9a\x25\xb9\x9c\x01\x80\x47\xd6\xff\xb1\x97\ \x1d\x25\xda\xeb\x21\x22\xa2\x1c\x5a\xc6\x0c\x40\x32\xac\xff\x63\ \xcf\x9b\x3d\xcd\xe5\x3a\x88\x88\x28\x07\xe6\x4d\x6f\x96\x5c\xce\ \x00\xc0\x23\xeb\xaf\xf1\x73\x67\x4f\x71\xb9\x0e\x22\x22\xca\x81\ \xb9\xd3\x44\x01\x40\x92\xa9\xe5\x54\x03\x80\x21\xdb\x0b\x87\x47\ \xc6\x5c\xae\x83\x88\x88\x72\x60\x78\x4c\xd4\xcd\xd7\xfa\x9d\x14\ \x52\xaa\x01\xc0\x66\xeb\x0b\xbb\x9c\x8d\x83\x24\x22\xa2\x9c\xd8\ \xbc\xa3\x2c\xba\xdc\xd5\x3a\x7c\x4a\x35\x00\xe8\xb4\xbd\xf0\x99\ \xae\x5e\x97\xeb\x20\x22\xa2\x1c\x78\x46\x16\x00\x58\xbf\x93\x42\ \x4a\x35\x00\xb0\x8e\xb6\x7e\x77\xc7\x4a\x97\xeb\x20\x22\xa2\x1c\ \xf8\xdd\x63\x3b\x24\x97\x33\x03\xe0\x91\xf5\x7f\xec\x6b\x7e\xf9\ \x88\xcb\x75\x10\x11\x51\xe2\xc6\xaa\x75\xdc\xf8\x70\xb7\xe4\x16\ \x0c\x00\x3c\xda\x64\x7b\xe1\x53\xab\xb7\xe2\xfe\xe5\x1b\x5c\xae\ \x85\x88\x88\x12\x76\xed\x03\xdb\xd1\x3f\x52\x95\xdc\xc2\xfa\x9d\ \x14\x52\xaa\x01\xc0\x2d\x92\x8b\x2f\xba\xe4\x06\x47\xcb\x20\x22\ \xa2\x94\x55\x6b\x1a\x9f\xb8\x7a\x8d\xe4\x16\x15\x00\x77\x38\x5a\ \x8e\x57\x49\x06\x00\x5a\xeb\x15\x00\xac\xff\xc6\x6e\xba\xf5\x49\ \xd6\x02\x10\x11\x11\xbe\x7d\xf3\x66\x3c\xd5\x39\x2c\xb9\xc5\xad\ \x5a\xeb\x24\xab\xcb\x93\x0c\x00\x76\xb9\x56\x72\xf1\x05\x7f\xf7\ \xdf\x78\xa6\xab\xcf\xd5\x5a\x88\x88\x28\x31\x0f\xad\x1b\xc0\x3f\ \xfe\xe8\x69\xe9\x6d\xae\x71\xb1\x96\x10\x1a\x36\x00\xe8\xdc\xda\ \x8f\x73\xde\xfd\x6d\x0c\x0d\xb3\x31\x10\x11\x51\xa3\xd9\xd2\x37\ \x86\x37\x7c\xf5\x51\x0c\x8f\xd5\x24\xb7\xd1\x10\xbe\x8b\x42\x4a\ \x39\x00\xb8\x03\x40\x8f\xe4\x06\x0f\x3e\xba\x09\x2f\x79\xe3\xd7\ \xb0\x71\x73\x92\xd9\x1b\x22\x22\xb2\xb0\x62\xd3\x10\x4e\xff\xd4\ \x03\xd8\xd8\x3d\x2a\xbd\xd5\x7d\x5a\xeb\x67\x5c\xac\x29\x84\x64\ \x03\x00\xad\x75\x0d\xc0\x0f\xa5\xf7\x79\xf0\xd1\x4d\x38\xe5\xb5\ \x5f\xc2\x4d\xb7\x3e\xe9\x60\x55\x44\x44\x14\x2b\xad\x81\xff\xbd\ \xb3\x0b\xa7\x7f\xea\x7e\xac\xdd\x36\xe2\xe2\x96\xdf\x73\x71\x93\ \x50\x94\xd6\x3a\xf4\x1a\xac\x29\xa5\x66\x01\x58\x0d\x60\xaa\x8b\ \xfb\xbd\xfa\xe5\x47\xe3\x92\x8b\xce\xc1\x71\x47\x27\x39\xd8\x89\ \x88\x28\xac\xae\x0d\xc0\x13\x0f\x85\x5e\xc5\x3e\xdd\xf2\xc4\x0e\ \xfc\xd3\x15\xab\x71\xef\x6a\x67\xed\xe0\x57\x02\x38\x46\x6b\x2d\ \x3a\x3f\x18\x52\xd2\x01\x00\x00\x28\xa5\xfe\x19\xc0\xe7\x5c\xde\ \xf3\xf8\xa5\x0b\x70\xde\x6b\x8e\xc3\x99\x67\x1c\x89\x05\x73\xa7\ \x61\xde\x9c\xa9\x98\xd4\xd2\xe4\xf2\x11\x44\x44\xf9\x13\x49\x00\ \x30\x54\xae\xa1\xb3\x77\x0c\x1b\xba\x47\xf1\xab\xe5\xdd\xf8\xd9\ \xfd\xdb\xb0\x7a\x8b\x93\x6f\xfc\xe3\xbd\x49\x6b\xfd\x33\xd7\x37\ \xf5\x29\x0f\x01\x40\x2b\x80\x55\x00\x16\x64\xf9\x9c\x96\xe6\x52\ \x96\xb7\x27\x22\xca\x01\xbd\x33\xcf\x1e\x58\xb9\x22\x9a\xec\x37\ \x11\x7f\xd0\x5a\xbf\x30\xeb\x87\x64\x2d\xf9\x00\x00\x00\x94\x52\ \xef\x03\xf0\xdd\xd0\xeb\x20\x22\xa2\x86\x70\x86\xd6\xfa\xce\xd0\ \x8b\x90\x4a\xb6\x08\x70\x2f\x97\x03\xf8\x6d\xe8\x45\x10\x11\x51\ \xee\x5d\x96\x87\x97\x3f\x90\x93\x0c\x00\x00\x28\xa5\x66\x00\xb8\ \x07\xc0\x11\xa1\xd7\x42\x44\x44\xb9\x74\x33\x80\xb3\x52\x2e\xfc\ \x1b\x2f\x37\x01\x00\x00\x28\xa5\x8e\x02\x70\x37\x80\x69\xa1\xd7\ \x42\x44\x44\xb9\xb2\x06\xc0\x0b\xb4\xd6\xa2\xb1\x81\x31\xc9\xcb\ \x16\x00\x00\x40\x6b\xfd\x24\x80\xb7\x01\x10\xb5\x76\x22\x22\x22\ \x1a\x67\x00\xc0\xeb\xf3\xf4\xf2\x07\x72\x16\x00\x00\x80\xd6\xfa\ \x57\x00\x3e\x00\x06\x01\x44\x44\x24\x37\x04\xe0\x2d\x5a\xeb\xc7\ \x43\x2f\xc4\xb5\x5c\x6d\x01\x8c\xa7\x94\x7a\x35\x80\x2b\xc0\xed\ \x00\x22\x22\xb2\xb3\x01\xc0\x39\x5a\xeb\xe5\xa1\x17\x92\x85\xdc\ \x06\x00\xc0\x1f\x6b\x02\xae\x03\x0b\x03\x89\x88\xc8\xcc\x9d\x00\ \xde\xa8\xb5\xde\x1a\x7a\x21\x59\xc9\xdd\x16\xc0\x78\xbb\x6a\x02\ \x4e\x05\x8f\x08\x12\x11\xd1\xc4\x7d\x1f\xc0\x2b\xf2\xfc\xf2\x07\ \x72\x1e\x00\x00\x80\xd6\x7a\x07\x80\x57\x03\x78\x1f\x80\x64\xa7\ \x36\x11\x11\x51\xe6\x1e\xc7\xce\x94\xff\x7b\xb5\xd6\xb9\x9f\x15\ \x9f\xeb\x2d\x80\xbd\xed\x6a\x1b\xfc\x41\x00\x17\x02\x98\x1e\x78\ \x39\x44\x44\x14\x87\xcd\x00\x3e\x09\xe0\xfb\xbb\x26\xcd\x36\x84\ \x86\x0a\x00\x76\x53\x4a\x75\x00\xf8\x38\x80\x77\x03\x98\x15\x76\ \x35\x44\x44\x14\xc8\x33\x00\xfe\x13\xc0\xa5\x5a\xeb\xe1\xd0\x8b\ \xf1\xad\x21\x03\x80\xdd\x94\x52\x45\x00\x67\x00\x38\x0f\xc0\xb9\ \x00\x0e\x09\xbb\x22\x22\x22\xca\xd8\x13\x00\x7e\x0e\xe0\x1a\x00\ \xf7\xeb\x06\x7e\x09\x36\x74\x00\xb0\x37\xa5\xd4\x09\x00\x5e\x01\ \x60\x21\x80\xf9\x7b\xfd\x6f\x52\xc0\xa5\x11\x11\xd1\xc4\x0d\x61\ \x67\x5a\x7f\xfc\xff\xd6\x03\xb8\x49\x6b\xfd\x54\xc8\x85\xc5\x84\ \x01\xc0\x04\x29\xa5\x5a\x00\x28\x93\x6b\x4e\xfd\xe2\xcd\x57\x2b\ \x55\x7c\x5d\x46\x4b\x22\x22\x02\x00\x0c\xaf\x5f\x05\x5d\xcb\xdf\ \xd6\x75\xb1\xb5\xed\x91\x87\xbf\x72\xfe\xa9\x86\x97\x69\xad\x75\ \x39\x93\x05\xe5\x0c\x87\xdc\x4f\x90\xcd\x2f\xd4\x8b\xbe\x76\xcf\ \xc6\x2c\xd6\x42\x44\xf4\x47\x5a\x03\x28\x40\x15\xf3\x77\xa8\xab\ \xd0\xd2\xfa\x8c\xd6\x7a\x34\xf4\x3a\xf2\x2a\x7f\xbf\x31\x71\xd9\ \x1c\x7a\x01\x44\x94\x6f\xf5\x6a\x2e\x06\xd3\xed\x93\x52\x85\x0d\ \xa1\xd7\x90\x67\x0c\x00\xb2\xc5\xbe\x03\x44\x94\x29\x5d\xab\x84\ \x5e\x42\x76\x94\x5a\x15\x7a\x09\x79\xc6\x00\x20\x5b\xcc\x00\x10\ \x51\xa6\x74\x8e\x33\x00\x50\x85\x27\x42\x2f\x21\xcf\x18\x00\x64\ \x8b\x19\x00\x22\xca\x54\x9e\x03\x00\x55\x50\x0f\x85\x5e\x43\x9e\ \x31\x00\xc8\x16\x33\x00\x44\x94\xa9\x7a\x35\x9f\x5b\x00\xaa\x50\ \xd0\xf7\x7d\xfa\xec\xce\xd0\xeb\xc8\x33\x06\x00\x19\xba\xf3\x43\ \xa7\x76\x03\x60\x05\x2b\x11\x65\x46\xd7\xf2\x99\x01\x50\xc5\x62\ \x3e\x23\x9b\x88\x30\x00\xc8\x1e\xb3\x00\x44\x94\x99\xdc\x6e\x01\ \x14\x8a\x43\xa1\x97\x90\x77\x0c\x00\xb2\xc7\x00\x80\x88\x32\x93\ \xd7\x00\x40\x15\x8b\xbd\xa1\xd7\x90\x77\x0c\x00\xb2\xc7\x42\x40\ \x22\xca\x4c\x6e\x6b\x00\x54\x61\x4b\xe8\x35\xe4\x1d\x03\x80\xec\ \x31\x03\x40\x44\x99\xd0\xf5\xda\xae\x4e\x80\x39\x54\x28\xf0\xb3\ \x33\x63\x0c\x00\xb2\xc7\x0c\x00\x11\x65\x22\xaf\xe9\x7f\x00\x50\ \x85\xc2\x9a\xd0\x6b\xc8\x3b\x06\x00\xd9\x63\x14\x4b\x44\x99\xc8\ \x73\x00\x00\xa5\x56\x86\x5e\x42\xde\x31\x00\xc8\x1e\x33\x00\x44\ \x94\x89\x7c\xcf\x01\x50\x8f\x86\x5e\x43\xde\x71\x1c\x70\x06\x94\ \x52\x0a\xc0\x69\x00\xde\x50\x28\x35\xbd\xa9\x69\xea\xac\xc3\x9b\ \xa7\xce\x44\xf3\xb4\x83\x30\xe7\xf4\x73\x31\xfd\x28\xd3\xe9\x96\ \x44\x44\xcf\x36\xb6\x63\x3b\xc6\xba\xb7\x85\x5e\x86\x03\x1a\xbd\ \xab\xee\x43\xef\xca\xbb\x51\x1d\xea\x45\x65\xb8\x0f\x95\xa1\xde\ \x87\xa1\xeb\xd7\x00\xb8\x56\x6b\xbd\x3c\xf4\x0a\xf3\x88\x01\x80\ \x63\x4a\xa9\x36\x00\x3f\x00\xf0\xe6\xfd\xfd\xcc\xb4\x23\x4e\xc2\ \xa1\x6f\xfa\x07\xb4\xcd\x3d\xd4\xdf\xc2\x88\x28\x77\xca\xdb\xba\ \x50\xe9\xdb\x11\x7a\x19\x22\xc3\x9d\x4f\xe3\x99\xdb\xfe\x07\x23\ \xdb\xd6\x1f\xe8\xc7\xbe\x0e\xe0\xa3\x5a\xeb\x9a\xa7\x65\x35\x04\ \x06\x00\x0e\x29\xa5\xe6\x00\xb8\x11\xc0\x89\xcf\xf5\xb3\xcd\xd3\ \x67\xe3\xb8\x8f\x7e\x0f\xcd\x53\x67\x65\xbf\x30\x22\xca\xa5\xd1\ \xce\x4d\xa8\x0e\x0d\x84\x5e\x86\xb5\xd1\x9e\xcd\x58\x7d\xf5\x67\ \x51\x1b\x1b\x99\xc8\x8f\xdf\x04\xe0\x8d\x5a\x6b\x36\x08\x72\x84\ \x35\x00\x6e\x7d\x11\x13\x78\xf9\x03\xc0\x58\xef\x56\x3c\xf9\xdd\ \x8f\xe5\xf6\x0c\x2f\x11\x65\x2f\xe5\x1a\x80\xda\xe8\x20\xd6\xfd\ \xe2\xd2\x89\xbe\xfc\x01\xe0\x2c\x00\x1f\xcb\x70\x49\x0d\x87\x01\ \x80\x23\x4a\xa9\x65\x00\xce\x37\xb9\x66\x70\xc3\xe3\xe8\x79\xf4\ \xb6\x8c\x56\x44\x44\x79\xa7\x6b\xe9\x7e\x81\xe8\x7e\xec\x56\x8c\ \xf5\x1b\xd7\x2f\x7c\x54\x29\x35\x3b\x8b\xf5\x34\x22\x06\x00\xee\ \xfc\x0d\x2c\xfe\x7b\xf6\xac\x60\x00\x40\x44\x76\x52\x3e\x06\xd8\ \xbf\xfa\x01\x9b\xcb\x26\x03\x78\x8f\xe3\xa5\x34\x2c\x06\x00\xee\ \x3c\xcf\xe6\xa2\xde\xc7\xef\x82\xae\xd7\x5d\xaf\x85\x88\x72\x2e\ \xe5\x97\x7f\x65\xa8\x17\xc3\x5b\xd7\xd9\x5e\x6e\xf5\x59\x4b\xcf\ \xc6\x00\xc0\x9d\x79\x36\x17\x55\x47\x06\x50\x19\xe8\x76\xbd\x16\ \x22\xca\xb9\x94\xc7\x00\x97\x77\x6c\x06\x60\x5d\x80\x6e\xf5\x59\ \x4b\xcf\xc6\x00\xc0\x9d\x76\xdb\x0b\xc7\xfa\xf2\x70\x8e\x97\x88\ \x7c\x4a\xb9\x80\xb8\x32\x28\x3a\xba\x68\xfd\x59\x4b\x7b\x62\x00\ \xe0\x4e\xa7\xed\x85\x0c\x00\x88\xc8\x54\xea\x5b\x00\x02\xd6\x9f\ \xb5\xb4\x27\x06\x00\xee\x58\xf7\xfc\x67\x00\x40\x44\xa6\xd2\x0e\ \x00\x44\x19\x00\xce\x57\x71\x84\x01\x80\x3b\xd6\x3d\xff\xc7\x7a\ \x19\x00\x10\x91\x99\x94\x8f\x00\x56\x07\x45\x19\x00\xce\x57\x71\ \x84\x01\x80\x3b\xf6\x19\x80\xfe\xed\x2e\xd7\x41\x44\x0d\x20\xe5\ \x26\x40\xcc\x00\xc4\x81\x01\x80\x3b\xd6\x51\x69\xb9\x77\xab\xcb\ \x75\x10\x51\x03\x68\xe0\x2d\x00\x66\x00\x1c\x29\x85\x5e\x40\x8e\ \x58\x47\xa5\x95\x06\xc9\x00\x54\x47\x06\xd0\xb7\xea\x01\x8c\x74\ \xae\xc1\x70\xd7\x1a\x0c\x77\xad\xc5\x58\xff\x76\x14\x9a\x5a\x50\ \x6c\x9a\x84\x42\x73\x0b\x4a\x6d\x53\x31\xe5\x90\x65\x98\x72\xd8\ \xf1\x98\x72\xe8\xb1\x28\xb5\x4e\x09\xbd\x6c\x27\x6a\xe5\x11\xec\ \x78\xfc\x4e\x0c\x6e\x7c\x02\xe5\x9e\x2e\x94\x7b\x3a\x51\xde\xd1\ \x05\x5d\xad\xa0\xd4\x36\x15\xa5\xb6\x29\x28\xb5\x4d\x45\xeb\x9c\ \x43\x30\x7d\xc9\xa9\x98\x7a\xc4\x49\x28\x36\xb7\x86\x5e\xb6\x13\ \xb5\xd1\x21\xec\x78\xe2\x0f\xe8\x5f\xfd\x10\xc6\xfa\xb6\x61\xac\ \x6f\x3b\x2a\xfd\xdd\xa8\x0c\xf7\xa1\xd4\x3a\x05\x2d\x1d\x73\xd1\ \x32\x63\x1e\x5a\x3a\xe6\x62\xca\xa1\xc7\x61\xfa\x92\x53\x51\x28\ \x35\x85\x5e\xb6\x13\x95\xc1\x1d\x18\x58\xb3\x1c\xfd\x6b\x96\x63\ \x70\xc3\x13\xa8\x8e\x0e\xa2\x3e\x36\x8a\x7a\xa5\x0c\x5d\xad\xa0\ \x79\xc6\x1c\xb4\xcd\x5b\x8c\xb6\x79\x87\xa1\x6d\xde\x62\x4c\x5b\ \x7c\x02\x0a\xcd\x93\x26\x74\xef\x64\x03\x00\xad\x51\x1d\xee\x93\ \xdc\x81\x19\x00\x47\x38\x0c\xc8\x11\xa5\xd4\x22\x00\x6b\x6d\xae\ \x2d\x4e\x9a\x8c\x53\xbf\xf0\x5b\xa7\xeb\x89\x86\xd6\xe8\x5b\x75\ \x3f\xb6\xdc\xf3\x0b\xf4\x3c\x72\x33\xea\x95\xb1\x89\x5f\xab\x0a\ \x98\x72\xf0\xd1\x98\xf7\xb2\xb7\x63\xe6\xf1\xaf\x80\x2a\xa4\x95\ \xb0\xaa\x57\xc6\xd0\xf3\xc8\xcd\xd8\xbe\xfc\x66\xf4\x3e\x71\x97\ \xd1\x9f\x5d\x15\x9b\x30\xf5\xb0\xe3\x31\xfb\xb4\xd7\x63\xd6\x09\ \xaf\x4a\xf2\xcf\xbe\xf5\xde\x5f\xa0\xe7\x91\x5b\xd0\xf7\xf4\x83\ \x46\x67\xd6\x8b\x93\xda\xd1\x71\xcc\x19\x98\xf9\xfc\x33\x31\xe3\ \x98\x33\x92\xfc\xb3\x6f\xbb\xef\x06\x74\xde\x7e\x35\x86\x3b\x57\ \x1b\x5d\x5b\x9c\xd4\x8e\x59\x27\x9e\x85\x39\xa7\x9f\x83\xc9\xcf\ \x3b\x7a\xff\x3f\xa8\x35\x06\x57\x3f\x29\x5c\x69\x18\xd5\xe1\x3e\ \x3c\xfe\xbd\x0f\xdb\x5e\x5e\x03\xd0\xc2\xa9\x80\x6e\x30\x00\x70\ \x44\x29\xd5\x0c\xa0\x6c\x7b\xfd\x69\x5f\xbc\x65\xc2\x91\x7f\x2a\ \x7a\x56\xdc\x8e\x75\xd7\x5c\x8a\xd1\x6e\x79\xc6\xae\xa5\x63\x1e\ \xe6\xbf\xec\x1d\x98\x73\xfa\x1b\x50\x68\x6a\x76\xb0\xba\x6c\x6d\ \x7f\xf0\x37\x58\xff\x8b\x6f\xa0\xdc\xd3\x25\xbe\x57\xeb\xec\x43\ \xb0\xf0\xac\xf7\x60\xd6\x89\x67\xc5\xff\x32\xd4\x75\x6c\xbd\xf7\ \x46\x6c\xfc\xe5\x77\x50\xee\xdd\x22\xbe\x5d\xdb\xbc\xc5\x38\xf4\ \xbc\x0f\x63\xda\x91\xa7\x38\x58\x5c\xb6\xaa\xc3\xfd\xe8\xbc\xed\ \x2a\x74\xdd\x71\x35\x2a\xb2\x22\x37\x00\x40\xfb\xc2\x23\x71\xe8\ \xb9\x1f\xc1\xd4\xc3\x4f\x78\xd6\xff\xaf\x5e\x19\xc3\xf0\x7a\xb3\ \xe0\x22\x16\x23\xdb\xd6\x63\xd5\x95\x9f\xb2\xbd\x7c\xb3\xd6\x7a\ \x81\xc3\xe5\x34\x34\x06\x00\x0e\x29\xa5\xb6\x01\xb0\x9a\xef\x7b\ \xe2\x45\x3f\xc1\xa4\x83\xf2\xd1\xe1\x72\xac\x6f\x3b\xd6\xfe\xf4\ \x4b\xe8\x7e\xe4\x16\xe7\xf7\x6e\x9b\x7b\x18\x8e\xfc\xb3\x7f\x45\ \xdb\xfc\xc3\x9d\xdf\xdb\x85\xc1\x0d\x8f\x63\xed\xcf\xbe\x82\x81\ \x75\x2b\x9c\xdf\xbb\x6d\xee\x61\x38\xf2\xdd\x9f\x45\xdb\xdc\xc3\ \x9c\xdf\xdb\x85\x81\xb5\x8f\x60\xf5\x95\x5f\xc0\x70\xd7\x1a\xe7\ \xf7\x9e\x71\xcc\x19\x38\xf4\xbc\x0f\x63\xd2\xac\x85\xce\xef\xed\ \x42\xef\x53\xf7\xe2\xe9\xff\xfd\x57\xf7\x05\xbd\x4a\x61\xce\x69\ \xe7\xe0\x90\x73\xfe\x76\x8f\xed\xb0\xda\xc8\x30\x46\x9e\x59\xef\ \xf6\x59\x9e\xf4\xaf\x7d\x18\xeb\x6e\xf8\x9a\xed\xe5\xf7\x6b\xad\ \xe3\x8f\x06\x13\x11\xf9\xd7\x89\xe4\xd8\x1f\x05\xec\xcb\x47\x1d\ \x40\xf7\xc3\xbf\xc3\x43\x9f\x7f\x6b\x26\x2f\x7f\x00\x18\xee\x5a\ \x83\x47\xbe\xf2\x1e\x74\xde\x7a\x25\x10\x59\xf0\xba\xf5\xde\x1b\ \xf0\xe8\xd7\xfe\x32\x93\x97\x3f\xb0\xf3\xcf\xfe\xe8\x57\xde\x87\ \xed\x0f\xc5\xb7\x5d\xd4\x75\xe7\xcf\xb0\xe2\x3f\x3e\x90\xc9\xcb\ \x1f\x00\x76\x3c\x76\x07\x96\x7f\xe9\xdd\xe8\x5b\x79\x5f\x26\xf7\ \xb7\xa5\x6b\x15\xac\xbb\xf6\xeb\x78\xfc\x9b\x1f\xca\xe6\x34\x8f\ \xd6\xd8\xf2\x87\x6b\xf1\xd0\xe7\xdf\x86\xbe\x55\xf7\x8f\x7b\x6e\ \xa2\xfb\xff\x10\x37\x01\x62\x01\xa0\x43\x0c\x00\xdc\x12\x34\x03\ \x4a\xff\x24\xc0\x96\x3f\x5c\x8b\xa7\x7e\xf0\x09\xd4\x46\x87\x32\ \x7d\x4e\xbd\x5a\xc1\xda\x6b\xbe\x8a\x95\xff\x7d\x71\x34\x83\x94\ \x36\xfe\xea\xbb\x78\xfa\x47\x9f\xc9\xfc\x83\xb9\x36\x36\x82\x95\ \x3f\xf8\x17\xac\xbd\xe6\x52\x40\x87\xff\xb3\xeb\x5a\x05\xab\xaf\ \xfa\x02\xd6\xfc\xe4\x8b\xd9\xff\xd9\x47\x07\xf1\xf8\xb7\x3e\x82\ \xad\xf7\x5c\x9f\xe9\x73\x26\xaa\x56\x1e\xc1\x8a\xff\xf8\x00\x36\ \xdf\xfc\xa3\xcc\x83\xd1\x4a\x7f\x37\x9e\xf8\xf6\x47\xb1\xe3\xf1\ \x3b\x01\x24\x5c\x00\x08\xa0\xca\x23\x80\xd1\x60\x00\xe0\x56\xc3\ \x66\x00\x36\xff\xfe\x7f\xb1\xfa\xca\xcf\x7b\x7d\x29\x6d\x7f\xf0\ \x37\x58\x7d\xc5\xe7\x82\x67\x02\x56\x5f\xf1\x6f\xd8\xf8\xab\xef\ \x7a\x7d\x66\xe7\xad\x57\x60\xed\xcf\xad\xd3\xa8\x6e\x68\x8d\x95\ \x3f\xfc\x24\xb6\xdc\xf5\x73\x7f\x8f\xac\x55\xf1\xf4\x8f\x3f\x87\ \x4d\x37\x7d\xdf\xdb\x33\xf7\xa5\x5e\x19\xc3\x93\xdf\xfd\x47\x0c\ \xac\x7d\xd4\xef\x33\xff\xeb\x9f\xd0\xbd\xfc\xf7\x69\xcf\x01\x60\ \x06\x20\x1a\x0c\x00\xdc\xb2\x8e\x4e\xcb\x09\xb7\x03\xee\xba\xe3\ \xa7\x58\x77\xdd\xbf\x07\x79\xf6\xd6\x7b\x6f\xc0\x9a\x9f\x7e\x29\ \xc8\xb3\x01\x60\xf3\xcd\x3f\xc2\x96\xbb\xaf\x0b\xf2\xec\xce\x5b\ \xaf\x44\xe7\x6d\x57\x05\x79\x36\x00\x6c\xb8\xf1\x5b\xe8\x5e\xfe\ \xfb\x86\x7b\xb6\xae\x55\xf1\xd4\xe5\xff\xbc\x47\x4a\xde\xe7\xb3\ \x57\xfe\xe0\x5f\xd0\xb7\xea\x01\xef\xcf\x76\x45\x38\x08\x88\x19\ \x00\x87\x18\x00\xb8\x65\x1d\x9d\x56\xfa\xd3\x0c\x00\x86\xbb\xd6\ \x62\xdd\xb5\x61\xbf\x89\x76\xdd\xf1\x53\x74\xdd\xf1\x53\xef\xcf\ \xed\x5b\xf5\x00\xd6\x5f\xff\x1f\xde\x9f\x3b\xde\xda\x6b\x2e\x45\ \xcf\xa3\xb7\x79\x7f\xee\xb6\xfb\x6e\xc4\xa6\xdf\x5c\xee\xfd\xb9\ \xe3\x3d\xfd\xa3\xcf\x60\xb8\xcb\xea\xe4\xad\xc8\x86\x1b\xbe\x89\ \x1d\x8f\xdd\xe1\xfd\xb9\xbb\xe9\x7a\x1d\xeb\x7f\xf1\x75\x54\x47\ \x06\x82\xad\x41\x82\x19\x80\x78\x30\x00\x70\xcb\x3e\x03\x90\xe0\ \x3c\x00\x5d\xab\x60\xd5\x7f\x7f\xd2\xec\x6c\x7f\x46\xd6\x5f\xff\ \x0d\x8c\x79\xec\xa8\x38\xd6\xb7\x0d\x2b\x7f\x70\x51\xf8\x1a\x04\ \x5d\xc7\xd3\x57\x7c\x0e\xd5\x61\x7f\x2f\x83\x72\x4f\x17\x56\x5f\ \xf5\x05\x6f\xcf\xdb\x9f\x5a\x79\x04\x4f\x7d\xef\x42\xd4\xca\x23\ \xde\x9e\x39\xb4\xe9\x29\x6c\xbe\xe5\x47\xde\x9e\xb7\x3f\x95\xa1\ \x5e\x6c\xfa\xfd\xf7\x42\x2f\xc3\x0a\xdb\x00\xc7\x83\x01\x80\x5b\ \x82\x0c\x40\x7a\x35\x00\x1b\x7f\xf5\x5f\x18\x7a\x66\x65\xe8\x65\ \x00\x00\x6a\xe5\x61\xac\xfe\xc9\x17\xbd\x3d\x6f\xe3\x2f\xbf\xe3\ \xe4\xac\xb7\x0b\xd5\xa1\x3e\x6c\xba\xc9\xdf\xcb\x60\xfd\x2f\xbe\ \x11\x45\xd0\x07\x00\x23\x5b\xd7\xa3\xf3\xd6\x2b\xbc\x3c\x4b\xd7\ \x6b\x78\xfa\xc7\x9f\x0b\x1f\xf4\xed\xd2\xbf\xf6\x61\xf4\x3c\xee\ \x3f\xfb\x23\xa1\x6b\x55\xd4\x46\x07\x25\xb7\x60\x06\xc0\x21\x06\ \x00\x6e\x35\xcc\x48\xe0\xea\xc8\x00\x3a\x6f\xbb\x32\xf4\x32\xf6\ \xb0\xe3\xb1\x3b\xbc\xa4\xc3\x47\xbb\x9f\xc1\xd6\x7b\x6f\xc8\xfc\ \x39\x26\x3a\x6f\xff\x09\x46\xb7\x6d\xcc\xfc\x39\x03\xeb\x56\x44\ \x77\x0c\x71\xf3\x2d\x3f\x92\xbe\x54\x26\xa4\xeb\xf6\xab\xa3\x09\ \x78\x77\xdb\x7a\xff\x2f\xa0\x23\x38\x0d\x32\x51\xc2\x6f\xff\x23\ \x5a\x6b\xd1\x0d\x68\x4f\x0c\x00\xdc\xda\x0a\xc0\xaa\x3c\xb7\x5e\ \xad\xa0\x3a\x24\xea\x8f\xed\xd5\x96\x3b\xaf\xf1\x9a\x7a\x9d\xa8\ \xce\xdb\x7f\x92\xf9\x33\x36\xdd\xf4\x7d\xe8\x7a\x5c\x9d\x48\x75\ \xad\x8a\x0d\x37\x7e\x2b\xf3\xe7\xac\xbf\xfe\x1b\xc1\x4f\x5d\xec\ \xad\x3a\x3c\x80\xcd\xb7\x66\x1f\x8c\x76\xde\x71\x75\xe6\xcf\x30\ \x35\xd6\xbf\x0d\x7d\xab\xfd\x17\x23\xda\x12\xee\xff\x33\xfd\xef\ \x18\x03\x00\x87\xf4\xce\xb6\x8a\xd6\xbd\x5f\x53\xc9\x02\xe8\x5a\ \x15\x9d\xb7\x87\xab\x3e\x3f\x90\xbe\x55\xf7\x63\xb4\x3b\xbb\xcf\ \x89\xb1\xbe\xed\xd8\x76\xdf\x2f\x33\xbb\xbf\x44\xcf\xa3\xb7\x66\ \xda\x83\xa1\xdc\xd3\x89\xfe\xd5\x0f\x65\x76\x7f\x89\xce\x5b\xae\ \xc8\xf4\x68\x5c\xff\xd3\x0f\x79\xc9\xb0\xd8\xd8\xf6\x60\x9c\xbf\ \x8f\xfb\xc2\xfd\xff\xb8\x30\x00\x70\xcf\x7e\x2c\x70\x22\x01\x40\ \xcf\x8a\xdb\xe3\xed\x5b\xa0\x75\xa6\x8d\x62\x76\x3c\x71\x57\x74\ \xdf\xfe\x77\xab\x57\x2b\x99\x6e\x81\x6c\x7f\xf8\x77\x99\xdd\x5b\ \xaa\x3a\x32\x80\x81\x35\x0f\x67\x76\xff\x2d\x77\x5f\x9b\xd9\xbd\ \xa5\x46\xb6\xae\xc3\xe8\xf6\x38\x83\x93\xbd\x55\x65\x75\x33\xdc\ \xff\x77\x8c\xe3\x80\xdd\xcb\x7d\x1d\x80\x8b\x6f\x81\xcd\xad\x93\ \x31\xff\xc8\x13\x31\x73\xc1\xe1\x68\x9f\x71\x10\x46\xfa\x7b\x30\ \xd0\xd3\x85\x8d\x8f\xdd\x8d\x21\xe1\x89\x88\xed\x0f\xfe\x06\x07\ \xbf\xf6\xfd\xe2\x35\xee\x4b\xef\x93\xf7\x88\xef\x31\x69\xf2\x74\ \x2c\x3c\xfa\x05\x98\x7a\xd0\x02\xb4\x4f\x9b\x85\xe1\xfe\x1e\x0c\ \x74\x6f\xc6\xfa\x47\xef\x44\x79\xa8\x5f\x74\xef\xed\x0f\xfd\x16\ \x07\x9d\xf2\x1a\xf1\x1a\xf7\xa5\xfb\x61\xf9\xb9\xfb\xf6\xe9\xb3\ \xf1\xbc\xa5\x2f\xc0\xe4\x8e\xb9\x98\x34\x79\x3a\x86\x7a\xb7\xa2\ \x6f\xeb\x26\x6c\x7c\xec\x6e\x54\xca\xc3\xa2\x7b\xf7\x3e\x79\x4f\ \x26\x43\x83\x74\xbd\x86\xee\xe5\x37\x8b\xef\x33\x6d\xf6\xf3\xb0\ \x60\xc9\xc9\x98\xdc\x31\x07\x93\xda\xa7\xa1\x7f\xfb\x66\xec\xe8\ \x5c\x83\x67\x9e\x7a\x00\xd5\xb1\x51\xd1\xbd\x87\x36\xaf\xc4\xa4\ \x59\xf1\xcf\x12\x61\x06\x20\x2e\x0c\x00\xdc\x13\x74\x03\x4c\x23\ \x00\x18\x58\xfb\x88\xe8\xfa\xe9\x73\x0e\xc6\x31\x2f\x7d\x13\x9a\ \x5b\x27\xff\xf1\xff\x36\xb9\x63\x2e\x26\x77\xcc\xc5\x9c\xc3\x8e\ \xc5\xda\x87\x6e\xc1\x86\x15\x77\x59\xdf\x7f\xb4\xfb\x19\xd4\xca\ \x23\x28\xb6\xb4\x8a\xd6\xb9\x37\x5d\xaf\xa3\x6f\xe5\xbd\xa2\x7b\ \xcc\x39\xec\x58\x1c\x79\xda\x6b\x50\x6a\x6a\xf9\xe3\xff\x6d\xea\ \xac\xf9\x98\x3a\x6b\x3e\xe6\x1e\x76\x1c\x56\xdd\xfb\x6b\x74\x3e\ \x6d\xff\x4d\xb6\xf7\xa9\x7b\xa1\x6b\x15\xa8\x62\x93\x68\x9d\x7b\ \xab\x0c\x5e\x82\x44\x0c\x00\x00\x20\x00\x49\x44\x41\x54\xf4\x60\ \x70\xc3\xe3\xa2\x7b\x3c\xef\x98\xd3\x70\xd8\x09\xaf\x40\xa1\x58\ \xfc\xe3\xff\x6d\xfa\x9c\x43\x30\x7d\xce\x21\x98\x77\xf8\xf1\x78\ \xe2\x8e\x6b\xd1\xb3\xd9\x7e\x96\xc0\x8e\x27\xef\xc6\x21\xe7\xfc\ \xad\x68\x8d\xfb\x32\xb2\x75\x03\xea\x15\xeb\x41\x9f\x50\x4a\xe1\ \x88\x53\x5f\x8d\x05\x4b\x4e\xde\xe3\xff\x3e\x63\xde\x22\xcc\x98\ \xb7\x08\xf3\x8e\x78\x3e\x1e\xfd\xfd\x4f\x30\x24\x38\xc6\x3a\xd4\ \xb9\x0a\x33\x8f\x3b\xd3\xfa\x7a\x5f\x84\x01\x00\x33\x00\x8e\x71\ \x0b\xc0\x3d\x41\x06\x20\xd2\xb4\xfa\x38\xb5\xb1\x11\x0c\x3d\xb3\ \xca\xfa\xfa\xb6\x69\xb3\xf0\xfc\xb3\x2e\xd8\xe3\xe5\x3f\x5e\xa1\ \x50\xc4\xe2\x93\xce\xc4\xec\x45\x4b\xad\x9f\x01\xad\x31\xb2\xc5\ \x7d\x83\x98\x91\xae\x35\xa2\xf3\xf6\xd3\xe7\x1c\x8c\xa5\x2f\x3e\ \x77\x8f\x97\xff\x78\xc5\xa6\x66\x2c\x79\xe1\xd9\x98\x76\x90\xfd\ \xc4\x3b\x5d\xab\xa0\x9c\x41\x3f\x84\x11\xe1\xfe\xf7\xec\x43\x8f\ \xc1\xe1\x27\xbf\x6a\x8f\x97\xff\x78\xcd\xad\x93\x71\xec\x2b\xde\ \x8a\xd6\xa9\x1d\xd6\xcf\x18\xde\xfc\x74\x26\xa7\x01\x86\x3b\x65\ \x03\x8e\x0e\x39\xee\x8c\x67\xbd\xfc\xc7\x6b\x9d\xd2\x81\x13\x5f\ \xf3\x2e\x34\xb5\xb4\x59\x3f\x63\xa8\x33\xae\xd3\x09\xfb\xc3\x22\ \xc0\xb8\x30\x00\x70\x2f\xd7\x19\x80\x91\xae\xb5\xa2\x3d\xf0\xc3\ \x4f\x7e\xe5\x84\x66\xda\x2f\x39\xfd\x6c\x14\x4b\xcd\xd6\xcf\x19\ \xee\x74\x3f\x2b\x7d\x6c\xa0\xc7\xfa\xda\x42\xa1\x88\x25\xa7\x9f\ \xfd\x9c\x3f\xa7\x94\xc2\xd1\x2f\x7e\x03\x94\x52\xd6\xcf\x2a\xf7\ \x58\xd7\xa1\xee\xff\x9e\x82\xc2\xca\xa6\x96\x36\x2c\x39\xed\x75\ \xcf\xf9\x73\x85\x62\x09\x4b\x4e\x7f\xee\x9f\x3b\x90\xca\x80\xfb\ \x53\x62\xc3\x5d\xf6\xbf\x4b\x6d\xd3\x66\x61\xd1\xf1\x2f\x7d\xce\ \x9f\x2b\x35\x4f\xc2\x61\x27\xbe\xdc\xfa\x39\x95\xc1\x1d\xa8\x09\ \xb7\x50\x7c\x10\xb6\x01\x66\x06\xc0\x31\x06\x00\xee\xe5\xba\x06\ \x40\x92\x0a\x6d\x69\x9b\x8a\x99\x0b\x8f\x98\xd0\xcf\x96\x9a\x5b\ \x30\x7d\xee\x21\xd6\xcf\x1a\xde\xb2\xce\xfa\xda\xfd\xa9\x0a\xbe\ \xbd\x4c\xee\x98\x83\xb6\x69\x33\x27\xf4\xb3\xad\x53\x3a\xd0\x3e\ \x7d\xb6\xf5\xb3\xca\x3b\x32\x08\x00\x7a\x3a\xad\xaf\x9d\x3e\xf7\ \x60\x94\x9a\xf7\x9d\xf5\xd8\xdb\x8c\xb9\x8b\xd0\x34\xc9\xfe\x9b\ \xb0\xf0\x1b\xe6\x3e\x8d\x74\xad\xb3\xbe\x76\xe6\xc2\xc3\x27\x1c\ \xcc\xcd\x3d\xfc\x78\x51\xe0\x57\xaf\xc6\xd1\x9c\xe9\x40\x24\xff\ \x86\xc0\x0c\x80\x73\x0c\x00\xdc\xcb\x75\x06\x40\x32\xf2\xb5\x75\ \xca\x0c\xa3\x9f\x9f\x31\x6f\x91\xf5\xb3\xb2\xf8\x26\x58\x11\xf4\ \x69\x68\x9f\x61\xf6\x42\x9f\x36\xdb\x7e\x1b\x20\x8b\x96\xc8\x92\ \xa0\x62\xea\x2c\xb3\x3f\xcb\x64\xc3\xff\x56\xe3\x65\xd1\x4b\x43\ \xf2\xad\x75\xc6\xdc\x43\x27\xfc\xb3\x85\x42\x71\xbf\x5b\x63\x13\ \x91\xf5\x38\x66\xa9\x5a\x79\x58\x1a\xa4\x30\x03\xe0\x18\x03\x00\ \xf7\xec\xdb\x01\x0f\xf6\x46\x7b\xc4\x6c\x37\xc9\x59\xeb\x96\xb6\ \x29\x99\xfe\xfc\x78\xd5\x61\x59\x35\xfd\xbe\xd4\x46\xec\xf7\x97\ \x4d\xff\x2c\xcd\x82\x3f\xbb\x24\x4b\xb3\x3f\x35\x51\xe6\xc7\xec\ \xa5\xd6\xd2\x36\xd5\xfa\x59\x55\xc1\xdf\xd1\x7e\xef\x29\xf8\x5d\ \x32\xfe\x7b\x17\x05\x00\x71\x8f\x08\x16\x66\x67\x7a\xb4\xd6\xb2\ \xa3\x12\xf4\x2c\x0c\x00\x1c\xd3\x5a\x0f\x00\xb0\xfb\x14\xd2\x75\ \x8c\x45\x3e\x13\x40\xd2\x76\xb4\x6a\xf8\x12\x29\x35\xdb\x57\xf1\ \x57\x87\x33\xe8\xaa\x38\x81\xda\x85\xfd\xa9\xd7\xcc\x02\xbb\x42\ \x61\xdf\xc5\x72\x13\x7b\x96\xfb\x17\x81\x16\x04\x7e\xca\xf0\xcf\ \x62\xfa\xdf\x6a\xcf\x67\xb9\xff\x48\x93\xfc\x2e\x35\x19\x9e\x44\ \xa9\x8e\xd9\x07\x5a\xb1\xcc\x28\xd8\x9f\x2a\x8f\x00\x46\x87\x01\ \x40\x36\x04\xdb\x00\x71\x07\x00\x25\xc1\x37\x94\xea\x98\x59\xeb\ \x60\xd3\x0f\xcf\x3d\x9e\x95\x41\x06\xa0\x20\x38\x5a\x67\x9a\xd9\ \x31\x7d\x69\xee\xf1\xac\x0c\x3a\xe2\x49\xbe\x5d\x9a\x06\x33\x92\ \x2c\x98\xeb\xe3\x8f\x80\xec\x77\xa9\x64\x1c\x00\xd8\xb7\xd7\x76\ \x7d\xec\xd5\x35\x8e\x01\x8e\x0f\x03\x80\x6c\xe4\xb6\x10\xb0\x24\ \x48\xcf\x56\xca\x66\x19\x3c\x51\x00\x20\x6c\xa8\xb3\x2f\x92\x97\ \x4b\xdd\xf0\xa5\xb6\xbf\xe3\x72\x13\x91\xc5\x5e\xb0\x24\xab\x60\ \x9c\x01\x90\x04\x00\x25\xb7\x01\x40\xbd\x52\xb6\x9e\x7c\x58\x28\ \x14\x51\x34\x5c\x8f\xa4\x21\x50\xb1\xa5\xdd\xfa\x5a\x1f\x84\x27\ \x00\x98\x01\xc8\x00\x03\x80\x6c\xe4\xb6\x10\x50\x12\x00\x54\x0d\ \x87\x07\xc9\xb6\x00\x32\xc8\x00\x94\xec\xfb\x66\x99\xa6\x67\x45\ \x5b\x00\x59\x64\x00\xaa\xf6\x41\x85\x69\x30\x23\xc9\x00\x14\x8a\ \x6e\x7b\x9b\x49\x8a\x0a\xcd\xbf\xfd\x8f\x42\x5b\x0e\x5a\x52\xc5\ \x12\x0a\xfb\xe9\x2f\x11\x0b\x66\x00\xe2\xc3\x00\x20\x1b\x39\xce\ \x00\x4c\xb3\xbe\xb6\x62\x1c\x00\xb4\x58\x1f\x8b\xd2\xf5\x9a\xf3\ \xc1\x38\xa2\x0c\x80\xe1\xbe\xb6\x68\x0b\x20\x8b\x1a\x00\x9f\x19\ \x00\x49\x0d\x80\xe3\x2d\x00\x49\x20\x69\x9a\xc1\x32\xfd\xf7\x31\ \x5e\xec\xdf\xfe\x01\xb6\x01\x8e\x11\x03\x80\x6c\xe4\xb6\x06\xa0\ \x50\x6a\x42\xa1\x79\x92\xd5\xb5\x5a\xd7\x51\x33\x4c\xa7\xc6\x94\ \x05\x90\xa4\x97\x4d\xbf\xd5\x4a\x32\x00\x59\x04\x00\x92\xac\x82\ \xcf\x1a\x80\x82\xe3\x2d\x80\x8a\x64\xff\xdf\xf0\xdf\x89\x24\x00\ \x28\x4d\x8a\x3f\x00\x10\xf6\x00\x60\x06\x20\x03\x0c\x00\xb2\x91\ \xdb\x0c\x00\x20\xad\x03\x30\x2c\x04\x9c\x14\x4f\x00\x20\x49\x2f\ \x9b\xee\x6b\x4b\x32\x00\x75\x41\xba\x7e\x7f\x24\x75\x05\xa6\x95\ \xf9\xa2\x1a\x00\xd7\x5b\x00\x1e\x33\x00\xb2\x02\xc0\xf8\x03\x00\ \xd6\x00\xc4\x87\x01\x40\x36\x72\x5b\x03\x00\x08\xeb\x00\x4c\x4f\ \x02\xc4\x94\x01\xf0\x78\x0a\x40\x56\x04\x18\xd7\x16\x80\xe9\x9f\ \x45\x16\x00\xc4\xb3\x05\x60\x5a\x03\x20\xda\x02\x98\x64\x7f\x3a\ \xc7\x0b\xad\xa5\x47\x73\x99\x01\xc8\x00\x03\x80\x6c\xe4\x3a\x03\ \xd0\xe4\x31\x03\x60\xfa\x21\xba\xc7\xb3\x1c\x9f\x04\x90\x6c\x01\ \xf8\xac\x01\xc8\xa2\x08\x50\xd2\xc1\xcd\xf4\xcf\x12\xd3\x16\x80\ \xa4\x08\xd0\x34\x78\xad\x1a\x9e\x92\x19\xaf\x18\xf9\x16\x40\x65\ \xb8\x4f\xd2\x43\xa4\x06\x60\x8b\xc3\xe5\xd0\x2e\x0c\x00\xb2\xd1\ \x09\xc0\xaa\x9c\xb7\x36\x3a\x84\x9a\xe0\x9b\x80\x0f\x5e\xb7\x00\ \x44\xbd\x00\xdc\x36\x03\x92\x6c\x01\x78\xad\x01\x88\xed\x14\x00\ \x8b\x00\x27\x44\x54\x03\x10\xf9\x16\x80\x70\xff\xbf\x4b\x4b\x3a\ \x90\xd1\x7e\x31\x00\xc8\x80\xd6\x7a\x0c\x80\x75\x35\xdf\x58\x7f\ \xdc\x59\x00\x9f\x01\x80\x69\x21\xd5\x78\x31\x15\x01\xfa\xac\x01\ \xc8\xa4\x08\xd0\xe3\x29\x00\x51\x23\x20\xc1\x51\xcd\x7d\x49\xa6\ \x09\x50\xec\x19\x00\x9e\x00\x88\x12\x03\x80\xec\xd8\xd7\x01\xf4\ \x46\x1e\x00\xb4\xdb\x1f\x05\x4c\xb9\x1b\x60\x2a\x35\x00\x99\xb4\ \x02\x4e\xa4\x06\x40\xd2\xad\x71\x5f\x52\xc9\x00\xc4\x5e\x03\xc0\ \x1e\x00\x71\x62\x00\x90\x1d\xfb\x3a\x80\xc8\xe7\x01\x78\xcd\x00\ \x44\x14\x00\x48\x5e\x2e\xc6\x9d\x00\x45\x5b\x00\x19\x9c\x02\x10\ \x6d\x01\x98\x7d\x2b\x8f\xa9\x15\x70\x32\x01\x40\xe4\x5b\x00\xcc\ \x00\xc4\x89\x01\x40\x76\x04\x19\x00\xf7\xe3\x5c\x5d\x92\x75\x03\ \x34\x6c\x07\x2c\x39\x05\xe0\x78\x34\xac\x24\xbd\xec\xb5\x08\x30\ \xf1\x2d\x00\x51\x0d\x80\xe3\x2d\x00\xc9\x08\x68\xd3\xed\x2b\xc9\ \x16\x40\xec\x7d\x00\x84\x47\x00\x99\x01\xc8\x08\x03\x80\xec\x30\ \x03\xb0\x0f\x7e\x8b\x00\xe3\xc9\x00\xa4\x7f\x0c\xd0\x5f\x1f\x00\ \x59\x2b\xe0\x94\x33\x00\xf9\x9d\x03\x20\x2c\x02\x64\x06\x20\x23\ \x0c\x00\xb2\x93\xdf\x1a\x00\x8f\x7d\x00\x62\xda\x02\xf0\x39\x0c\ \x48\x36\x0d\xd0\xed\x16\x80\xa8\x0d\xb0\x2a\x18\xb5\x73\xd6\x5a\ \x5b\xf7\xc3\x87\x52\x51\x35\x02\x32\xef\x03\x30\x6c\xfd\xac\x9c\ \x17\x01\x32\x03\x90\x11\x06\x00\xd9\x11\x64\x00\xf2\x1b\x00\xf8\ \xcc\x00\x48\xda\xb8\xee\x8b\x24\xbd\xec\xf3\x18\xa0\xeb\x2d\x00\ \x49\x67\xc1\x94\x07\x01\xd5\xab\x15\xd4\x2d\xa7\xf3\x29\x55\x40\ \xc9\x70\x38\x8f\xac\x0f\x40\xae\x8b\x00\x99\x01\xc8\x08\x03\x80\ \xec\xe4\xb6\x1b\x60\xa9\x3d\x8d\x00\xc0\xf5\x48\x60\x51\x11\xa0\ \xcf\x61\x40\x8e\xfb\x00\x78\x1d\x04\x14\x55\x01\xa0\x64\x12\xa0\ \xe1\xfe\x7f\xa5\x6c\xdd\x28\x47\xa9\x02\x8a\x82\xe3\xb2\x59\xd3\ \xb5\x8a\x74\x30\x17\x33\x00\x19\x61\x00\x90\x1d\x41\x37\xc0\x6e\ \xc0\x36\x0d\xea\x41\x93\x60\x22\xa0\xe9\x16\x40\xb1\x49\x30\x11\ \xb0\x56\x41\x4d\x50\x58\xb5\x37\xaf\xc3\x80\x22\xaa\x01\x90\x04\ \x14\x3e\x07\x01\x49\xfe\x7e\xf6\xc5\xeb\x1c\x00\xd1\x11\xc0\x76\ \x00\x76\xff\x46\x7c\x10\x7e\xfb\x1f\xd6\x5a\x8b\x6e\x40\xfb\xc7\ \x00\x20\x3b\xdb\x00\x58\x7d\x72\xea\x5a\x45\x54\x7d\x9c\xb5\x42\ \xf3\x24\xeb\x96\xab\xf5\x5a\x0d\x35\x83\x17\x8a\x52\x2a\x9a\x66\ \x40\xa9\xd4\x00\xd4\x05\x05\x7b\xfb\xbe\x5f\x1a\x27\x00\xa2\x2a\ \x00\x34\x3c\xbd\x22\xeb\x01\x10\xf9\xfe\x3f\x87\x00\x45\x8b\x01\ \x40\x46\xf4\xce\x4a\xa6\xdc\xce\x04\x28\x49\xb2\x00\xc6\xdd\x00\ \xe3\xd8\x06\x90\xb5\x02\x36\x4b\xef\x2a\xa5\xac\x33\x1f\xd0\x5a\ \xf4\x4d\xfa\x59\xb7\x13\x04\x14\x3e\x6b\x00\x9c\x77\x01\x14\xfc\ \xee\x98\x77\x01\x94\x9c\x00\xc8\xf5\xfe\x3f\xd3\xff\x19\x62\x00\ \x90\xad\x1c\x07\x00\x3e\xeb\x00\xe2\xc8\x00\x40\x29\xd9\x37\x73\ \xaf\x27\x01\xdc\x6d\x03\x48\x86\x0b\xa5\x5d\x03\x90\x46\x13\xa0\ \xe8\x7b\x00\xb0\x09\x50\xb4\x18\x00\x64\xcb\xbe\x10\x30\xcf\xbd\ \x00\x52\x3e\x0a\xe8\xb3\x0e\x20\x92\x93\x00\xa2\x36\xc0\x3e\x27\ \x01\x46\x14\x00\x98\x6e\x5b\xe5\xb9\x0b\xa0\xb0\x07\x00\x33\x00\ \x19\x62\x00\x90\x2d\xfb\x0c\x40\xec\xdd\x00\x05\x27\x01\x4c\xb7\ \x00\xf2\xd2\x0c\xc8\xeb\x49\x00\x87\x75\x00\x3e\x9b\x00\xc5\xd4\ \x05\xd0\x6b\x11\x60\x9e\x07\x01\xb1\x06\x20\x5a\x0c\x00\xb2\xc5\ \x0c\xc0\x3e\x18\x6f\x01\xc4\xd4\x0e\xd8\xe7\x48\x60\xc9\x49\x80\ \x48\xb6\x00\xcc\x6b\x00\xec\xa7\xbe\xba\xce\x00\x88\xda\x00\x7b\ \x1d\x04\x14\x79\x00\xc0\x0c\x40\xb4\x18\x00\x64\x4b\x90\x01\xc8\ \x6f\x0d\x80\x69\xc1\x53\x5e\xb6\x00\xfc\x9e\x04\x88\x63\x0b\xa0\ \x61\x6b\x00\x0c\x83\x56\x49\x13\xa0\x52\xf4\x45\x80\xcc\x00\xc4\ \x8a\x01\x40\xb6\x04\x19\x80\xfc\x06\x00\x9c\x07\x30\xc1\x67\x45\ \xd2\x0e\x58\x36\x09\x90\x7d\x00\x26\x22\xcf\x19\x00\xd6\x00\xc4\ \x8b\x01\x40\xb6\x98\x01\xd8\x87\x46\x6d\x07\xec\xb7\x06\xc0\xe1\ \x16\x40\x32\x7d\x00\x5c\xd7\x00\xf8\xdb\x02\xc8\x6b\x0d\x40\xad\ \x3c\x84\x7a\x75\x4c\x72\x0b\x66\x00\x32\xc4\x00\x20\x5b\xd6\xd1\ \x6b\x65\xa8\xd7\x69\x21\x97\x6b\xa2\x3e\x00\xa6\xa7\x00\x24\x35\ \x00\x82\x0f\xf1\x7d\x91\xa4\x99\x7d\xd6\x00\xc4\xb2\x05\xe0\xb7\ \x0f\x40\x83\x66\x00\x22\x3e\x05\x50\x19\x14\x7d\xfb\xef\xd6\x5a\ \x97\x5d\xad\x85\x9e\x8d\x01\x40\x86\xb4\xd6\x83\x00\x06\x2c\x2f\ \x8e\xba\x10\xb0\x49\x32\x0f\x60\xb4\x41\xe7\x01\x98\x36\x03\x32\ \xac\xa0\x1f\xcf\xed\x16\x40\x83\xd6\x00\x08\x7e\x77\xfc\xf6\x01\ \x88\xb7\x06\x80\xfb\xff\x71\x63\x00\x90\xbd\x5c\x0e\x05\xf2\xdb\ \x07\x20\x92\x46\x40\x68\xcc\x89\x80\x92\xd6\xc2\x7e\xfb\x00\xb8\ \xdb\x02\xd0\xb5\x2a\x6a\x96\xe3\x79\x95\x52\x28\x9a\x4e\x02\x94\ \x6c\x01\x44\x9c\x01\xe0\xfe\x7f\xdc\x18\x00\x64\x4f\xd0\x0d\x30\ \xde\x0c\x80\xe8\x14\x40\x83\x16\x01\xa6\x3a\x11\xd0\x6b\x06\x40\ \xd4\x07\xc0\x5d\x06\xa0\x3a\x62\x97\xb8\x03\x76\x36\x01\x32\x69\ \xe3\x5c\xab\x56\xec\xff\xdc\x4a\xa1\xd8\xd2\x66\x77\xad\x07\xcc\ \x00\xc4\x8d\x01\x40\xf6\x98\x01\xd8\x8b\x69\xba\x53\x52\x03\x50\ \xaf\x94\x51\xaf\x88\x8a\x90\xf6\xd0\x88\x13\x01\x25\xd9\x04\xd3\ \x0c\x40\x2c\x5b\x00\xa2\x39\x00\xc6\x47\x00\x05\xdf\xfe\x9b\xdb\ \x00\xdb\x99\x11\x1e\x08\x9b\x00\x31\x03\x90\x31\x06\x00\xd9\xcb\ \xe5\x3c\x80\xe2\xa4\x76\xeb\x6f\xa8\xf5\x5a\xd5\x28\xad\xbc\x73\ \x22\xa0\x59\x4a\x75\x3c\x4e\x04\x94\x49\x65\x18\x90\xed\x84\xca\ \x7d\x91\x15\x00\x7a\x6c\x03\x1c\xf1\x09\x00\x40\xdc\x04\x88\x19\ \x80\x8c\x31\x00\xc8\x5e\x2e\x33\x00\x00\x50\x6a\x9b\x62\x7d\xad\ \xcf\x2c\x80\xcb\x93\x00\xb2\x89\x80\x3e\xfb\x00\x24\xba\x05\x10\ \xc9\x29\x80\x8a\xc7\x23\x80\xa6\x35\x31\x7b\x3e\x2b\xf6\x00\x80\ \x19\x80\x98\x31\x00\xc8\x5e\x2e\x6b\x00\x00\xa0\xd4\xee\xef\x28\ \x60\x2c\x27\x01\x44\x9d\x00\x1b\xb0\x0f\x40\xaa\xc3\x80\x24\x2d\ \xa4\x8d\xe7\x00\x88\x32\x00\xf1\x9e\x00\x00\xc4\x45\x80\xcc\x00\ \x64\x8c\x01\x40\xf6\x72\x9c\x01\x90\xd4\x01\x98\xb5\x3e\x95\x15\ \x02\xba\xcb\x00\xa4\xd3\x07\x20\xd1\x63\x80\x92\x22\x40\x87\xa7\ \x00\x7c\xb6\x01\xce\xeb\x16\x80\xd6\x75\xe9\xf6\x1b\x33\x00\x19\ \x63\x00\x90\xbd\x5c\xd6\x00\x00\xc2\x66\x40\xa6\x5b\x00\x91\x74\ \x03\x94\x6c\x01\x98\xa6\xb7\xa3\xd9\x02\x48\xa4\x06\xc0\xe9\x29\ \x00\xc9\x28\x60\xe3\x2e\x80\xf6\x73\x00\x62\x0e\x00\xaa\xc3\xfd\ \xd0\xda\x7a\xb8\x53\x15\x40\xdc\x23\x51\x73\x80\x01\x40\xf6\x3a\ \x01\x68\x9b\x0b\x6b\xe5\x61\xeb\xb3\xc8\x3e\x24\x33\x11\xd0\x65\ \x11\x60\x22\xc3\x80\x62\xd9\x02\xf0\x59\x03\xe0\x74\x0b\x20\x91\ \x2e\x80\x31\x0f\x02\x12\xee\xff\x77\x69\x41\xf4\x40\x13\xc3\x00\ \x20\x63\x5a\xeb\x0a\x04\x91\x6c\xcc\x59\x80\x54\xe6\x01\xc4\x72\ \x0a\xc0\x6b\x23\xa0\x48\x8a\x00\xbd\x0e\x03\x8a\x24\x00\x28\x35\ \xf3\x14\x00\xc0\x26\x40\x29\x60\x00\xe0\x47\x2e\xb7\x01\x9a\x44\ \x23\x81\xfd\x6d\x01\xb8\x0c\x00\x24\x47\xcd\xfc\x16\x01\xc6\x71\ \x0c\xd0\xb4\x9d\xb1\x68\x18\x90\xa0\x4b\xe3\xde\x7c\x66\x00\xf2\ \x3a\x08\x48\xd8\x03\x80\x05\x80\x1e\x30\x00\xf0\x43\x50\x08\x18\ \xef\x49\x80\x92\x64\x1e\x80\x71\x06\x40\xd0\x0e\xd8\xe5\x29\x00\ \x9f\xc7\x00\x23\x19\x06\x24\x3a\x05\x60\x5c\x03\x60\x9f\xf5\x8d\ \xa6\x11\x10\x07\x01\x01\x10\xf7\x00\x60\x06\xc0\x03\x06\x00\x7e\ \xe4\x32\x03\x90\x4a\x37\x40\xa7\x19\x80\x44\x1a\x01\xb1\x0f\x80\ \x8c\xcf\x53\x00\x55\xc3\x13\x31\xe3\x95\x62\xce\x00\xb0\x0d\x70\ \xf4\x18\x00\xf8\x91\xcb\xa3\x80\xa2\x79\x00\x3e\xfb\x00\x44\x52\ \x04\xe8\xb5\x11\x90\xc3\x2d\x80\x46\x1c\x06\x94\x4a\x11\x60\x31\ \xe2\x22\x40\xd6\x00\xc4\x8f\x01\x80\x1f\xcc\x00\xec\xc5\x6b\x1f\ \x00\x41\x53\x97\xbd\x49\xb6\x00\x7c\xd6\x00\xc4\x52\x04\xe8\xb7\ \x0f\x80\x9b\x0c\x80\xae\xd7\x51\x1d\x1d\xb4\xbe\xde\x74\x7a\x25\ \x6b\x00\xf6\x89\x19\x00\x0f\x18\x00\xf8\x91\xd3\x0c\x80\xc7\x3e\ \x00\xb1\x6c\x01\x34\xe0\x30\x20\xc9\xbd\x52\xec\x03\x50\x1d\xe9\ \x07\xb4\xd5\xc9\x5d\x94\x9a\x5b\xa0\xd4\xc4\x3f\x56\xeb\xb5\x1a\ \x6a\x82\x00\x2b\xee\x1a\x00\xb6\x01\x8e\x1d\x03\x00\x3f\x72\xd9\ \x0e\x38\x95\x63\x80\xb5\xb1\x11\x67\x2f\x44\xd9\x30\x20\xb3\x02\ \x37\xd3\x0a\xfa\xf1\xdc\x6e\x01\xa4\x51\x03\xe0\x6a\x0b\x40\x76\ \x04\xd0\xe3\x09\x80\xe6\x56\xd1\xef\x48\x96\xea\xd5\x31\x69\x0f\ \x13\x66\x00\x3c\x88\xf3\xb7\x27\x7f\xec\x33\x00\xfd\xdb\xad\xbf\ \x8d\x64\xad\xd4\x3a\x19\x30\xf8\xb6\x33\x5e\xad\x3a\x66\xf4\x61\ \xaf\x0a\x05\x14\x9b\x9a\xad\x9e\x05\xb8\x3b\x09\xe0\xf5\x14\x40\ \x34\x5b\x00\x69\xd4\x00\x38\xcb\x00\x08\x7e\x57\xbc\xee\xff\x47\ \x9c\xfe\x17\xee\xff\x0f\x69\xad\xdd\xed\xdb\xd1\x7e\x31\x00\xf0\ \xa3\x1b\x80\xd5\x50\x7a\x5d\xab\x4a\x8f\xd3\x64\x47\xa9\x9d\x41\ \x80\x25\xd3\xea\x67\x49\x16\xc0\x55\x3b\x60\x59\x1f\x00\xb3\x17\ \x69\x2c\x9d\x00\x25\xf7\x32\xaf\x01\x10\xf4\x1c\x70\x54\x03\x90\ \x4e\x01\x60\xbc\x01\x00\x4f\x00\xa4\x81\x01\x80\x07\x5a\x6b\x0d\ \xc9\x36\x40\x6f\xcc\x75\x00\x92\x6d\x00\xb3\x14\x61\x0c\x75\x00\ \xb2\x2d\x00\x8f\x35\x00\x0e\x33\x00\x92\x6c\x82\x69\x06\xc0\x74\ \x9b\x64\x8f\x67\xb9\xca\x00\xf8\xdc\x02\xc8\x69\x06\xa0\x32\xc8\ \x13\x00\x29\x60\x00\xe0\x8f\x7d\x00\xd0\x9f\xcf\x00\xc0\x74\x08\ \x4a\x0c\x47\x01\x7d\x1e\x03\x14\x9d\x02\x88\xa4\x13\xa0\xd7\x22\ \xc0\x28\x32\x00\xfe\xda\x00\xe7\x78\x0e\x00\x33\x00\x9e\x30\x00\ \xf0\xc7\xbe\x0e\x20\xe6\x0c\x80\xd7\x6e\x80\xe1\x03\x00\xd1\x34\ \x40\xc3\x23\x6e\xb2\x3e\x00\xa9\x6e\x01\x48\x5a\x01\x87\x0f\x00\ \x8c\xbb\x00\xe6\xf5\x08\x20\x4f\x00\x24\x81\x01\x80\x3f\x82\x0c\ \x40\xcc\x27\x01\x7c\x1e\x05\x14\xb4\x03\x76\x96\x01\xb0\x2f\x44\ \xf4\x9a\x01\x48\x74\x0b\x40\x96\x01\x70\x75\x0a\xc0\xbe\xfe\xcc\ \x78\x0e\x40\x4e\xb7\x00\x84\x45\x80\xcc\x00\x78\xc2\x00\xc0\x1f\ \x41\x06\x20\xde\xb1\xd8\x4d\x92\x0c\x80\xcf\x6e\x80\x8e\x9a\x01\ \xf9\x6c\x05\x2c\xeb\x03\xe0\x72\x0b\x20\x95\x63\x80\x11\x9c\x02\ \x30\xac\x01\x90\x9d\x02\x88\x78\x0b\x40\xd6\x04\x88\x19\x00\x4f\ \x18\x00\xf8\xc3\x0c\xc0\x5e\x8c\xe7\x01\x44\xb0\x05\xa0\x04\x13\ \xe7\x4c\x07\xdd\xc4\xb2\x05\x50\x97\x1c\x03\x4c\xb0\x11\x50\x45\ \x90\x01\x30\xfd\x1d\x35\xad\x83\xd9\xf3\x59\xf1\x66\x00\x84\x27\ \x97\x98\x01\xf0\x84\x01\x80\x3f\x39\xed\x06\x28\x28\x02\x34\xad\ \x01\x10\x9d\x02\x88\x20\x03\x90\x6a\x2b\xe0\x44\x6a\x00\x9c\x15\ \x01\xb2\x0f\x80\x18\x27\x01\xa6\x81\x01\x80\x3f\x9c\x07\xb0\x17\ \xe3\x79\x00\x93\x04\x7d\x00\x9c\x35\x02\x4a\x65\x18\x50\x1c\x01\ \x80\xd7\x61\x40\x82\xec\xcc\x78\xb2\x63\x80\xfe\x4e\x01\xc4\xba\ \x05\x50\x1b\x1d\x92\xfe\xfe\x75\xba\x5a\x0b\x1d\x18\x03\x00\x7f\ \xac\xa3\xda\xca\x50\x9f\xd3\x0f\x74\x97\x7c\x4e\x04\x8c\xa2\x0f\ \x80\xe0\x25\xe3\x73\x1c\xb0\xb3\x0c\x80\xae\x1b\x6f\x5d\x8c\x67\ \xda\xaa\x56\x34\x0e\xb8\x10\x3e\x00\x30\x2e\x02\x94\x9c\x02\x88\ \x74\x0b\x40\x78\x02\x60\xbb\xd6\xba\xec\x6a\x2d\x74\x60\x0c\x00\ \x3c\xd1\x5a\x0f\x01\xb0\xcb\x43\x6b\x8d\xb1\xbe\x6e\xb7\x0b\x72\ \x24\x95\x79\x00\xee\x8e\x01\x26\x32\x0c\xc8\x51\x00\xe0\xf7\x04\ \x80\x20\xd0\x28\x96\x00\xa5\xac\xaf\xff\xbf\x45\x68\x54\x47\x24\ \x93\x00\xfd\x6d\x01\x94\x22\xdd\x02\x60\xfa\x3f\x1d\x0c\x00\xfc\ \xca\xdd\x36\x40\xa3\xf5\x01\x90\x14\x9a\xf9\xac\x01\x70\x75\x0a\ \xa0\xe1\x4e\x00\x8c\x0c\x02\xda\x2e\x10\x29\x96\x9a\x8c\x82\x1e\ \x5d\xaf\xa3\x56\xb1\xea\x10\xbe\xf3\x79\xb1\x66\x00\x38\x06\x38\ \x19\x0c\x00\xfc\x12\x0c\x05\x8a\x34\x00\xf0\x58\x04\x28\xd9\x02\ \xa8\x8d\x0e\x89\xf6\x97\x77\x4b\x66\x18\x90\xa3\x2d\xa3\x74\x4e\ \x00\x84\x4f\xff\xfb\x6c\x02\x54\x68\x6a\x71\xd6\xf7\xc0\x35\x61\ \x0f\x00\x66\x00\x3c\x62\x00\xe0\x57\xee\xe6\x01\x94\x5a\xa7\x5a\ \xa7\x5e\xab\x95\x32\xb4\xc1\xb7\xad\x42\xb1\x88\xa2\xe0\x1b\x78\ \x75\x78\xc0\xfa\xda\xff\x5b\x83\xbf\x3e\x00\xa2\x0c\x80\xa3\x2d\ \x80\x86\x3b\x01\x90\x4a\x13\xa0\x48\xbf\xfd\x03\x6c\x03\x9c\x12\ \x06\x00\x7e\xe5\xee\x28\xa0\x2a\x14\x44\x1f\x46\xa6\x13\x01\x65\ \x85\x80\xf2\xa3\x80\x3e\x67\x01\x88\x6a\x00\xea\x35\x27\x63\xa4\ \x53\xe9\x02\xe8\x6c\x0b\x40\x52\x00\x68\xdc\x04\xc8\xbe\x07\x40\ \xdc\x47\x00\xd9\x04\x28\x15\x0c\x00\xfc\xca\x5d\x0d\x00\x20\xec\ \x06\x98\x58\x1d\x80\x2a\x14\xad\x33\x1e\x5a\x6b\x68\xc3\x97\xb2\ \x52\xf6\xff\x44\x5d\x0c\x04\x4a\xa5\x06\x20\xc5\x2d\x00\xc9\x09\ \x80\x52\xa4\x47\x00\x01\x36\x01\x4a\x09\x03\x00\xbf\x72\x97\x01\ \x00\x84\x27\x01\x4c\x8f\x02\x1a\x4e\x5b\x1b\xcf\x5d\x3b\x60\x8f\ \x75\x00\xa2\x76\xc0\xf2\x6d\x80\x46\x9b\x04\x58\x11\xfc\x8e\x78\ \x6d\x02\x14\xf3\x16\x00\xdb\x00\x27\x83\x01\x80\x5f\x82\x0c\x40\ \xcc\xed\x80\x3d\x76\x03\x8c\xe1\x24\x40\x22\xdd\x00\x5d\xd4\x01\ \x48\xb6\x00\x1a\x6d\x12\x20\xbb\x00\xee\x3c\xd9\x50\x1d\x11\xfd\ \x3b\x63\x06\xc0\x23\x06\x00\x7e\x31\x03\xb0\x17\xf3\x2d\x80\x36\ \xeb\x67\xc5\x70\x14\xd0\x67\x06\xc0\xc5\x49\x00\x9f\x5d\x00\x45\ \x5b\x00\x11\xd4\x00\x98\xd6\xa7\xe4\xb1\x09\x50\x75\xb8\x4f\x52\ \x7b\x52\x01\x10\xef\xe4\xb3\x1c\x62\x00\xe0\x57\x17\x00\xab\x43\ \xc6\xb5\xb1\x11\xd4\x46\x87\x1c\x2f\xc7\x0d\x59\x37\x40\xd3\x22\ \x40\xfb\x2d\x80\x4a\x04\xcd\x80\xfc\x9e\x04\x70\x50\x03\x90\xc8\ \x31\xc0\x38\x32\x00\x86\x6d\x80\x47\xf3\xd8\x04\x48\x94\xfe\xef\ \xd2\xa6\x45\x32\x24\xc2\x00\xc0\x23\xad\x75\x15\x82\x08\x37\xd6\ \x2c\x40\x32\xdd\x00\x5d\xcd\x03\x10\x4d\x04\x4c\x6b\x1e\x80\x24\ \x8b\xe0\xb5\x08\x30\x82\x41\x40\x3e\xfb\x00\xc4\x3a\x07\x80\x27\ \x00\xd2\xc2\x00\xc0\xbf\xdc\x9d\x04\x28\xb5\x4b\x46\x02\x0f\x1b\ \xfd\x3c\x6b\x00\x4c\x9e\x95\xd6\x16\x40\xea\x8d\x80\xd8\x07\x40\ \xdc\x04\x88\xfb\xff\x9e\x31\x00\xf0\x2f\x77\x75\x00\xb2\x22\x40\ \x9f\x7d\x00\xc2\x6f\x01\xf8\x9d\x07\xe0\x62\x0b\x20\x91\x22\xc0\ \x08\x6a\x00\xcc\xfb\x00\xe4\xef\x18\x20\x4f\x00\xa4\x85\x01\x80\ \x7f\xb9\x3b\x09\x20\xcb\x00\x24\x78\x0a\xc0\xe3\x44\xc0\xd0\xed\ \x80\x25\xbd\x04\x52\x3c\x06\x28\x69\x16\x65\xde\x07\x20\x7f\x8d\ \x80\xd8\x03\x20\x2d\x0c\x00\xfc\xcb\x5d\x06\xa0\xc9\xe7\x48\x60\ \x49\x1f\x00\x07\x9d\x00\x81\x84\x8a\x00\x5d\x6c\x01\xf8\xcc\x00\ \x88\xb6\x00\x5c\x05\x00\xf6\xed\xa2\x79\x0c\x90\x35\x00\xa9\x61\ \x00\xe0\x5f\xfe\x6a\x00\x52\x29\x02\x8c\xa0\x06\xc0\x6b\x11\xa0\ \x8b\x3e\x00\x89\xd4\x00\x48\x9a\x33\xed\x26\x19\x18\x55\x28\x96\ \x8c\xd6\xa0\xb5\x96\x65\x00\x58\x03\x40\x0e\x30\x00\xf0\x2f\x77\ \x19\x00\x9f\x01\x80\xa8\x06\x40\x30\xea\x75\xbc\x54\x46\x02\xbb\ \x69\x05\x6c\x7f\x0f\x55\x30\xfb\x78\x11\x0d\x03\x72\x90\x01\xf0\ \xd9\x05\x50\xf2\xf2\x57\xc5\x26\x14\x4a\xcd\xd6\xd7\x67\x89\x35\ \x00\x69\x61\x00\xe0\x5f\xfe\x6a\x00\x84\x7d\x00\x4c\x8e\xfe\x16\ \x4b\x4d\xf6\x85\x71\x5a\x3b\x9a\x08\x98\x48\x2b\x60\x07\x19\x00\ \xc9\x3d\xcc\x6b\x00\xec\x83\x33\x17\x45\x80\x5e\x9b\x00\x89\x0a\ \x00\xe3\xfc\xf6\x5f\xaf\x94\x51\x13\x1c\x6d\x04\x33\x00\xde\x31\ \x00\xf0\xcf\x3e\x03\xd0\xbf\xdd\xc9\x37\x58\xd7\x54\xb1\x84\xa2\ \x24\x35\x6f\xdc\x0c\x28\xf0\x40\x20\x49\x06\x20\xb1\x1a\x80\x74\ \xfa\x00\xc8\xb7\x00\xbc\x36\x01\x12\xf5\x00\x88\x33\x00\x10\x16\ \x00\x0e\x6a\xad\xdd\xec\xd1\xd1\x84\x31\x00\xf0\x4c\x6b\xdd\x0d\ \xa0\x6c\x75\x6d\xbd\x86\xca\xa0\xe8\x1f\x59\x66\x4a\x6d\xf6\x27\ \x01\x4c\x0b\x01\x25\xed\x80\x5d\x74\x03\x4c\xa5\x06\x20\xf4\x16\ \x80\xdf\x3e\x00\x81\x33\x00\x5e\x07\x01\xc5\x79\x04\x50\xb8\xff\ \xcf\xf4\x7f\x00\x0c\x00\xc2\x60\x21\xe0\x38\xa6\x73\xd1\x4d\xbf\ \x6d\x8d\xe7\x22\x03\x20\xd9\x02\x48\x6d\x18\x50\x23\xf5\x01\x48\ \xa6\x09\x50\xb4\x19\x00\xd1\xfe\x3f\xd3\xff\x01\x30\x00\x08\xc3\ \x3a\xda\x2d\xe7\x32\x00\x30\xeb\x06\x68\xfa\x6d\x6b\xbc\xd0\x5b\ \x00\xa9\x8d\x03\x16\x9d\x02\xf0\xd9\x07\x20\x70\x06\xc0\xbc\x09\ \x90\x7d\x11\x60\xac\x35\x00\x2c\x00\x4c\x0f\x03\x80\x30\xac\xa3\ \xdd\x4a\x0e\x03\x00\xaf\x23\x81\x1d\xcc\x03\x10\xb5\x02\x36\x2c\ \x74\x33\xad\xa4\xdf\xe3\x59\xa9\x75\x02\x0c\x5d\x03\x20\x38\x05\ \x60\xde\x04\x28\x7f\x6d\x80\xd9\x04\x28\x3d\x0c\x00\xc2\xc8\x5f\ \x06\xa0\xdd\xe3\x16\x80\xa8\x08\x50\xde\x0c\xa8\xd0\x40\xc3\x80\ \x52\xa9\x01\x48\x6d\x0b\x40\xd6\x04\x28\xce\x1a\x00\x36\x01\x4a\ \x0f\x03\x80\x30\x04\x19\x80\x3c\x1e\x05\x34\xed\x06\x18\x78\x0b\ \xa0\x81\x86\x01\x79\x3d\x05\x10\xb8\x0f\x40\x32\x01\x40\xa4\x19\ \x00\x36\x01\x4a\x0f\x03\x80\x30\x04\x19\x00\xeb\x69\xc2\x99\x6a\ \xa4\x6e\x80\xe9\x0c\x03\x0a\xdc\x07\xc0\xe3\x16\x40\x21\xf4\x29\ \x00\xd3\x3e\x00\x82\x2d\x80\x68\x6b\x00\x98\x01\x48\x0e\x03\x80\ \x30\xd8\x0c\x68\x1c\xf3\x6e\x80\x82\x53\x00\x82\x7d\xde\xdd\xd2\ \xe9\x03\x20\xaf\x01\x68\xa4\x61\x40\xb2\x4e\x80\x86\x7d\x00\x46\ \xf3\x78\x0a\x80\x19\x80\xd4\x30\x00\x08\x23\x77\xed\x80\x7d\x0e\ \x04\x0a\x9d\x01\x90\x14\x9c\xf9\xed\x03\x90\xd8\x31\xc0\xc0\x01\ \x80\xd7\x3e\x00\x39\x2b\x02\xac\x8e\x0e\x4a\x02\x4e\x0d\xa0\xd3\ \xe1\x72\x68\x82\x18\x00\x84\x61\x1d\xed\x56\x87\xfa\x50\x77\x90\ \xda\x75\x4d\xd2\x08\xc8\xe7\x16\x80\x8b\x46\x40\xa2\x69\x80\xa9\ \xf5\x01\x48\x65\x18\x90\xa0\x30\x73\x37\x9f\x93\x00\x65\x7d\x00\ \xe2\x2b\x02\xac\xca\xd2\xff\xdb\xb5\xd6\x63\xae\xd6\x42\x13\xc7\ \x00\x20\x00\xad\xf5\x30\x00\xeb\x7c\x59\x8c\x59\x00\xc9\x29\x80\ \xaa\xe1\x29\x80\xe0\x45\x80\xc9\xf4\x01\x70\xb1\x05\x90\x48\x11\ \xa0\x30\x03\x50\x2b\x8f\x58\x07\x3b\xaa\x50\x40\xd1\x70\x38\x8f\ \x64\x18\x50\x29\xc2\x00\x80\x3d\x00\xd2\xc4\x00\x20\x1c\xfb\x93\ \x00\xfd\xf1\xd5\x01\xa4\x92\x01\xa8\x8d\x0c\x00\x06\xc3\x87\xf6\ \x45\xb2\x05\x60\x9a\xe6\x16\x6d\x01\x38\x29\x02\x4c\xa3\x06\x40\ \x5a\x04\x28\x39\x1e\x6a\x33\x09\xd0\x64\x00\xd6\x78\xaa\x50\x44\ \xa1\xa9\xc5\xea\xda\x2c\x71\xff\x3f\x4d\x0c\x00\xc2\xb1\x3f\x09\ \xd0\x1b\x61\x06\xc0\x63\x0d\x40\xb1\xd4\x6c\xdd\x20\x47\xd7\xeb\ \xa8\x8e\x0e\x5a\x5d\xbb\x9b\xe4\x65\x93\xda\x30\x20\xc9\x3d\x52\ \x6a\x04\xe4\xf3\x04\x80\xac\x07\x40\x7c\xfb\xff\x00\x4f\x00\xa4\ \x8a\x01\x40\x38\x82\x0c\x40\x7c\x01\x40\xa1\xa9\xd9\xfa\x9b\x89\ \xd6\xda\x38\x25\x1a\xb2\x10\x30\x95\x61\x40\x4e\x5a\x01\x7b\x3c\ \x06\x18\xf2\x14\x80\xd7\x39\x00\x82\xf4\x7f\x4e\x07\x01\x31\x03\ \x10\x08\x03\x80\x70\xf2\xd7\x0d\xd0\xeb\x51\xc0\x34\x03\x00\xaf\ \x8d\x80\x5c\xb4\x02\x16\xd4\x11\x98\x66\x69\x44\xc3\x80\xc4\x5b\ \x00\x69\x34\x01\x8a\xb6\x07\x00\x6b\x00\x92\xc4\x00\x20\x1c\xf6\ \x02\x18\xc7\x6b\x06\x40\x38\x0f\xc0\x6b\x2b\xe0\xc0\xc3\x80\x44\ \xa7\x00\x8c\x6b\x00\xcc\xe6\x24\x8c\x27\xde\x02\x10\xfc\x4e\x18\ \x37\x01\xca\xe5\x16\x00\x33\x00\x29\x62\x00\x10\x8e\xa0\x17\x40\ \xa4\xdd\x00\x45\xf3\x00\xd2\xe9\x05\x20\x1b\x06\xe4\x33\x03\x10\ \x76\x0b\xc0\x6b\x0d\x40\xd0\x0c\x80\x61\x13\xa0\x9c\xf5\x00\x00\ \x58\x03\x90\x2a\x06\x00\xe1\xe4\x30\x03\x60\x7f\x12\xc0\xf4\x5b\ \x51\xc8\x2d\x00\x49\xba\xd9\x6f\x0d\x40\xd8\x2d\x80\x94\x86\x01\ \x79\x6d\x02\x94\xb3\x0c\x80\xae\xd7\x45\x3d\x14\xc0\x0c\x40\x30\ \x0c\x00\xc2\x61\x37\xc0\x71\x4c\xbf\x15\x99\x7e\xeb\x1a\x4f\xda\ \x0e\x58\x74\x0c\xd0\x67\x23\xa0\x46\x1a\x06\x24\x0c\x00\x64\x6d\ \x80\xfd\x6d\x01\x94\x22\x2c\x02\xac\x0e\xf7\x62\x67\x33\x3f\x2b\ \x15\x00\x71\x7e\xa0\x35\x00\x06\x00\xe1\x74\x01\xb0\xda\xf4\xac\ \x8f\x8d\xa2\x3a\x22\x8a\xb8\x33\xe1\xb5\x08\x30\x60\x37\x40\xaf\ \xa7\x00\x04\x35\x00\x6e\xfa\x00\xf8\xac\x01\x90\x6c\x01\x84\x3b\ \x06\x68\x3a\x9e\xda\x74\xfc\xf5\x78\x31\x66\x00\x84\x05\x80\x9b\ \xb5\x6d\x53\x04\x12\x63\x00\x10\x88\xd6\xba\x06\x60\x8b\xed\xf5\ \x31\x6e\x03\x88\x8a\x00\x8d\x6b\x00\xda\xec\x9f\x15\x70\x0b\xa0\ \x6e\x58\xe8\x66\xdb\xef\x00\x70\xb5\x05\x90\x46\x0d\x40\x4a\x5b\ \x00\x92\x49\x80\x51\x06\x00\x2c\x00\x4c\x16\x03\x80\xb0\x72\xb5\ \x0d\x20\xcb\x00\x98\x9e\x02\x10\x6c\x01\x88\x33\x00\x69\x0c\x03\ \x72\x31\x0b\x40\x72\x94\x90\x7d\x00\xf6\x4d\x54\x03\x10\x61\x11\ \x20\x0b\x00\xd3\xc5\x00\x20\x2c\x41\x21\x60\x84\x01\x80\x64\x1e\ \x80\xe1\xb7\x22\x59\x11\xa0\xb0\x06\x40\x92\x01\xf0\xd9\x07\x20\ \xb5\x4e\x80\xa2\x3e\x00\xd2\x2d\x00\x7f\x35\x00\xb2\x3e\x00\x11\ \xd6\x00\x30\x03\x90\x2c\x06\x00\x61\x31\x03\xb0\x4b\xa5\x3c\x6c\ \xf4\xf3\x21\x8f\x01\x8a\xa6\x01\xd6\xcd\xbe\x51\x87\xec\x03\x20\ \x6a\x02\xa4\x14\x94\x52\x13\x7f\x96\xd6\xd0\xda\xae\x0f\x80\x2a\ \x14\x01\x25\xfb\x28\xf3\xd9\x0a\x38\x77\x5b\x00\x6c\x02\x94\x2c\ \x06\x00\x61\xe5\xea\x28\xa0\xdf\x2d\x80\x70\x8d\x80\x7c\x16\x01\ \xca\xc6\x01\xcb\x6a\x00\x7c\x9e\x00\x90\x15\x00\xca\xd2\xff\xf5\ \x4a\x19\xf5\x8a\xdd\x34\x5a\xa5\x14\x4a\xcd\x66\x2d\xb0\xf3\xb7\ \x05\xc0\x0c\x40\xaa\x18\x00\x84\xc5\x0c\xc0\x2e\x29\xf5\x01\x90\ \x54\x9c\x9b\xa6\xb9\x45\xd3\x00\xa5\x19\x00\x8f\x93\x00\x93\x2d\ \x00\x34\xfc\x3d\xac\x55\xc6\xac\x3b\x1e\x2a\x55\x40\x51\x10\xf8\ \x66\x85\x35\x00\xe9\x62\x00\x10\x56\xbe\x6a\x00\x24\x23\x81\x8d\ \x6b\x00\x5a\x8c\x52\xcc\xe3\xe9\x7a\x0d\x35\xc3\x2d\x87\xf1\x24\ \x2f\x1c\xaf\x19\x00\xf1\x16\x40\x22\x19\x80\x80\x93\x00\x7d\xee\ \xff\x17\x5a\xda\x00\xd8\xfd\xce\x67\x89\x35\x00\xe9\x62\x00\x10\ \x56\xae\x32\x00\xc5\x96\x56\xeb\xf4\xb8\xae\xd7\x51\x33\x4c\xc3\ \x8a\xb2\x00\x82\x6d\x00\x55\x6a\xb6\xbe\xd6\xf4\x9b\xae\xac\x0f\ \x40\xb8\x2d\x00\xd3\xcc\x85\xa8\x09\x90\xb4\x0d\xb0\x64\x0e\x80\ \xe1\x69\x14\xc9\xfe\x7f\x8c\x83\x80\xea\x95\x32\x6a\x82\x3f\x13\ \x98\x01\x08\x8a\x01\x40\x58\xf6\x23\x81\x07\xba\x01\xcb\xa2\xa9\ \x2c\xa5\x33\x0f\xc0\xbe\xea\x5b\x54\x98\x67\xda\x07\x40\x52\xdc\ \xa6\xeb\xa2\x01\x3b\x92\x2d\x00\x9f\x19\x00\xe9\x16\x40\x25\x91\ \x13\x00\xc5\x08\x4f\x00\x08\xd3\xff\x03\x5a\xeb\x41\x57\x6b\x21\ \x73\x0c\x00\x02\xd2\x5a\xf7\x00\xb0\x6a\x0b\xa6\xeb\x75\x8c\x0d\ \xf4\x38\x5e\x91\x9c\xa4\x1d\xb0\xf1\x51\xc0\x50\xbd\x00\x54\x41\ \x76\x3c\x2f\x91\x89\x80\x3e\x27\x01\xca\x06\x01\x85\xdb\x02\x30\ \xcd\x42\xe5\xae\x00\x90\x27\x00\x92\xc6\x00\x20\x3c\x9e\x04\xd8\ \xc5\x3c\x03\x60\xdf\x0d\xb0\x22\x3d\x09\xe0\x71\x20\x90\x6c\x22\ \xa0\x5d\x75\xbb\xf4\x5a\xbf\x35\x00\xd2\x2d\x00\x8f\x73\x00\x0c\ \xc7\x5e\x8f\x17\xe3\x16\x00\xf7\xff\xd3\xc6\x00\x20\xbc\x5c\xd5\ \x01\xf8\x0d\x00\xc2\x35\x03\x12\xf5\x02\xf0\x78\x12\x40\x72\x96\ \xdf\xe7\x24\x40\x51\x13\xa0\x46\xe9\x02\x98\xbf\x2d\x00\x66\x00\ \x02\x63\x00\x10\x5e\xce\x4e\x02\x48\xb6\x00\xcc\xbe\x1d\x95\x9a\ \x1b\xa3\x1d\xb0\xac\x17\x80\x7d\x1a\x5f\x32\x4c\xc8\xbc\x0d\xb0\ \x7d\xad\x42\x4a\x5b\x00\x92\x49\x80\x51\x6e\x01\x30\x03\x90\x34\ \x06\x00\xe1\x31\x03\xb0\x4b\x4a\xdd\x00\x45\xed\x80\x7d\x9e\x04\ \x08\x54\x03\xd0\x28\x83\x80\x4c\x67\x52\x98\x1e\x77\x1d\x2f\xca\ \x2e\x80\xcc\x00\x24\x8d\x01\x40\x78\xf9\xaa\x01\x68\x17\xf4\x02\ \xf0\x38\x12\x38\x64\x3b\xe0\x54\xba\x01\xfa\x6c\x04\x14\xb2\x13\ \xa0\xcf\x49\x80\xa2\x39\x00\xcc\x00\x90\x63\x0c\x00\xc2\x63\x06\ \x60\x97\xaa\x69\x3b\x60\x76\x03\x7c\x4e\x92\x6f\xf1\x3e\x5b\x01\ \x8b\xfa\x00\x24\x54\x03\x20\xda\x02\x88\x30\x03\x50\xe5\x29\x80\ \xa4\x31\x00\x08\x8f\x35\x00\xbb\x78\x2d\x02\x6c\x90\x79\x00\xa1\ \xb6\x00\x7c\x8e\x02\x2e\x48\x3b\x01\x0a\x7e\x17\x4c\x83\x50\xd3\ \x99\x17\xe3\xc5\x57\x04\xa8\x45\x3d\x14\xc0\x0c\x40\x70\x0c\x00\ \xc2\x63\x06\x60\x17\xf3\x3e\x00\x69\x6e\x01\xd4\x0d\x0b\xde\x44\ \x19\x00\xd1\x16\x40\x1a\x35\x00\x29\x6d\x01\x88\x26\x01\x46\xb6\ \x05\x50\x1d\x19\x94\x9c\x14\xd1\x00\x3a\x1d\x2e\x87\x2c\x30\x00\ \x08\xcf\x3a\x0a\xae\x0e\xf7\x5b\x4f\x31\xcb\x8a\xdf\x0c\x80\xfd\ \x29\x00\xe1\x37\x17\xd1\x16\x80\xe9\xb7\xdd\x50\x45\x80\x75\xc9\ \x31\x40\x9f\x35\x00\x92\x60\xac\x5a\x11\xb5\xb2\x35\x3d\x89\x22\ \xaa\x01\x88\x6c\x0b\x40\x58\x00\xb8\x55\x6b\x2d\x1b\x56\x41\x62\ \x0c\x00\x02\xd3\x5a\x8f\x00\xb0\xfe\x97\x34\xd6\x1f\x57\x16\xc0\ \x67\x00\x10\x6a\x16\x00\xe0\xb7\x0f\x40\xa8\x63\x80\x5e\x33\x00\ \x92\x3e\x00\x82\x0c\x80\xa4\x1f\x44\xa9\x79\x92\xd1\x40\xaa\x7a\ \xad\x2a\x08\xaa\x54\x7c\x19\x00\x16\x00\x26\x8f\x01\x40\x1c\x72\ \xb3\x0d\xd0\x24\x98\x05\x60\xbc\x05\x60\xf8\x01\x3c\x9e\xae\xc9\ \xbe\xf9\xf9\xec\x04\x18\xaa\x15\xb0\xd7\x61\x40\x81\x32\x00\xc9\ \x34\x01\x6a\x69\x05\x2c\x7f\xd7\xb3\xc2\x36\xc0\xe9\x63\x00\x10\ \x87\xdc\x1c\x05\x2c\xb6\xb4\x43\x15\xec\x7e\xad\xea\xb5\x1a\x6a\ \x06\xdf\x3a\x95\x52\xc1\x9a\x01\x89\xd2\xce\x5e\x8b\x00\x03\x75\ \x02\xf4\xb8\x05\x20\xcb\x00\x24\x72\x02\x20\xb2\x6f\xff\x00\x8f\ \x00\xe6\x01\x03\x80\x38\xe4\x26\x03\x00\xa5\x50\x6a\xf5\x99\x05\ \x08\xb3\x0d\x20\xa9\x3c\x37\xce\x00\x34\xc2\x16\x80\x28\x03\x60\ \xff\x77\x21\x1a\x05\xec\x73\x10\x50\x64\xfb\xff\x00\x9b\x00\xe5\ \x01\x03\x80\x38\xf0\x28\xe0\x2e\x95\x51\x7f\x85\x80\xa2\x0c\x80\ \xa4\x13\xa0\xcf\x1a\x80\x44\xb6\x00\x42\x35\x02\x4a\x65\x0b\xa0\ \x14\xdd\x11\x40\xd6\x00\xe4\x01\x03\x80\x38\xe4\x27\x03\x00\xa0\ \x24\xa8\x03\x30\x6d\x95\x1a\xea\x28\xa0\xcf\x3e\x00\xb2\x53\x00\ \x89\x1c\x03\x0c\x34\x0c\x48\x76\x04\xd0\x2c\xf8\xcc\xd3\x11\x40\ \x80\x35\x00\x79\xc0\x00\x20\x0e\xb9\xa9\x01\x00\x80\x52\x9b\x7d\ \x3b\x60\xd3\x7d\xd2\x50\xf3\x00\x24\x5b\x00\xc6\xb3\x00\x42\x6d\ \x01\x24\x52\x03\x20\xda\x02\x48\x24\x03\x10\x5f\x13\x20\xd6\x00\ \xe4\x01\x03\x80\x38\x08\x32\x00\x5b\x5d\xae\xc3\x09\x51\x06\xc0\ \x34\x00\x08\xd4\x0e\xd8\xe7\x30\xa0\x14\xb7\x00\xbc\x0e\x03\x0a\ \xb4\x05\xe0\xb3\x06\x20\xb6\x1e\x00\xba\x5e\x43\x75\x64\x40\x72\ \x0b\x66\x00\x22\xc0\x00\x20\x0e\x39\xcb\x00\x78\x1c\x09\xdc\x08\ \x5b\x00\x92\x53\x00\x81\x8a\x00\xbd\xd6\x00\x88\xb6\x00\xec\xfb\ \x00\x18\x9f\x02\x30\xfc\xdd\x1e\x2f\xb6\x22\xc0\x9d\xfb\xff\xda\ \xf6\xf2\x31\x00\xdd\xee\x56\x43\xb6\x18\x00\xc4\x61\x0b\x00\xab\ \x4f\xc0\x7a\xa5\x8c\xea\xb0\x28\x12\x77\x2e\x9d\x79\x00\xf6\x1f\ \xfe\x92\x6f\x9d\x7e\x8b\x00\xc3\x1c\x03\x34\x3d\x0a\x2a\x1a\x06\ \x24\xf8\xbb\xa8\x48\xe6\x00\x78\xed\x03\x10\x57\x00\x20\x3c\x01\ \xb0\x59\x6b\x6d\x1d\x3d\x90\x3b\x0c\x00\x22\xa0\xb5\xae\x61\x67\ \x10\x60\xa5\xb1\xbb\x01\x4a\xda\x01\x4b\x32\x00\x8d\xd0\x0a\x58\ \x90\x01\x30\xae\x01\x30\x9b\x8f\xb0\xe7\xb3\x24\x35\x00\x92\x4e\ \x80\x3e\x27\x01\xc6\x55\x03\xc0\xfd\xff\x7c\x60\x00\x10\x0f\xfb\ \x3a\x80\xde\xb8\x02\x80\x26\x8f\x03\x81\x9a\x5a\xda\xec\x9f\x25\ \xf8\xf0\x97\x0d\x03\x62\x2b\xe0\xbd\xa5\xd9\x09\xd0\x70\x0e\x80\ \x64\xe6\x40\x6c\x19\x00\x9e\x00\xc8\x05\x06\x00\xf1\xb0\xaf\x03\ \xe8\x8f\xab\x0e\x40\x72\x0a\x20\x95\x91\xc0\x5e\x5b\x01\x07\xda\ \x02\x10\x0d\x03\x4a\xa5\x0f\x80\xa4\x11\x90\xd7\x53\x00\x91\x05\ \x00\xcc\x00\xe4\x02\x03\x80\x78\xe4\xa6\x17\x80\xe4\x14\x40\xd5\ \x70\x5e\xba\xe9\x59\xec\x3d\x9e\x15\x68\x0b\xc0\x67\x0d\x40\xa8\ \x22\x40\xbf\x7d\x00\xec\xfe\x2e\x74\xad\x8a\x5a\x79\xd8\xfa\xb9\ \x5e\x5b\x01\x47\x16\x00\x54\xd9\x05\x30\x17\x18\x00\xc4\xc3\x3e\ \x03\xd0\x1b\xd7\x51\x40\x59\x0d\x80\xd9\x07\x72\xb0\x3e\x00\x0d\ \x30\x0c\x48\x72\x6d\x0a\xe3\x80\x25\xc7\xd8\x8a\x4d\xcd\x50\x6a\ \xe2\x1f\x9f\xf5\xba\xd9\x9c\x8b\x67\x3d\x2f\xb6\x2d\x00\x66\x00\ \x72\x81\x01\x40\x3c\xec\x33\x00\xd1\x6d\x01\xa4\x31\x12\xb8\x5e\ \x29\xa3\x5e\x19\xb3\xba\x56\x36\x0c\xc8\xac\xe0\xcd\x76\xb8\x12\ \x20\xdd\x02\x48\xa4\x06\xc0\x32\x18\x93\xa4\xff\x7d\x7e\xfb\x2f\ \x34\x4f\x12\x65\x81\xb2\xc0\x39\x00\xf9\xc0\x00\x20\x1e\x82\x0c\ \x40\x64\x5b\x00\xad\x93\x01\x83\x6f\x47\xe3\x99\xce\x4c\xdf\x39\ \x11\xb0\xc5\xea\x59\x80\x7d\x16\xc0\xeb\x29\x80\x60\x5b\x00\x69\ \xd4\x00\xd8\x66\x63\x64\x05\x80\x66\xc5\xa7\xa2\x26\x40\x91\x7d\ \xfb\x07\xc4\x45\x80\xcc\x00\x44\x82\x01\x40\x3c\x04\x19\x80\xb8\ \x02\x00\xa8\x02\x4a\xad\xf6\x1f\x5a\x3e\xb3\x00\xb6\x27\x01\xd2\ \xe9\x03\x10\x66\x0b\xc0\x67\x0d\x80\xf5\x16\x80\xe8\x08\xa0\xe9\ \x1c\x00\x49\x13\xa0\xb8\x8e\x00\xd6\xc7\x46\x51\xaf\x94\x25\xb7\ \x60\x06\x20\x12\x0c\x00\xe2\x61\xfd\x8f\xa2\x32\xd0\x23\x3a\x47\ \x9d\x05\x59\x37\xc0\xf8\xe7\x01\xa4\x32\x0c\x48\x52\xc8\x27\xc9\ \x1e\x98\x66\x00\x42\xb4\x02\x4e\x66\x0e\x40\x64\x19\x00\x61\xfa\ \xbf\x4f\x6b\x3d\xe4\x6a\x2d\x24\xc3\x00\x20\x12\x5a\xeb\x5e\x00\ \x56\x9f\x12\xba\x5e\x47\x65\xa0\xc7\xf1\x8a\x64\x64\x47\x01\xcd\ \xbe\x2d\x85\xe8\x06\x98\xca\x2c\x00\xd1\x34\xc0\x9c\x0f\x03\xaa\ \x08\x3a\x41\x36\xf2\x09\x00\x16\x00\xe6\x07\x03\x80\xb8\xe4\x66\ \x28\x90\x28\x03\xe0\x71\x0b\xc0\xb6\x1b\xa0\xa4\xfb\x9c\xdf\x3e\ \x00\x89\x6c\x01\x84\x38\x05\xc0\x41\x40\x56\x58\x00\x98\x1f\x0c\ \x00\xe2\x92\x9b\xa1\x40\x7e\xe7\x01\xf8\xef\x05\x20\x3a\x05\x90\ \x48\x1f\x00\x9f\x5b\x00\xe9\x15\x01\x36\xee\x16\x40\x95\x19\x80\ \xdc\x60\x00\x10\x97\xfc\x34\x03\x92\x04\x00\x5e\xdb\x01\x5b\x66\ \x00\x92\xe9\x03\x20\xd9\x02\xc8\x7b\x11\xa0\xa4\x0b\xa0\x69\x11\ \x60\x8e\xe6\x00\xb0\x0d\x70\x6e\x30\x00\x88\x8b\x20\x03\x10\x57\ \x00\xd0\xd4\x6e\x5f\x03\x60\xbc\x05\x10\xa4\x08\x50\xd0\x09\x30\ \x91\x2d\x80\xba\xe4\x18\xa0\xc7\x1a\x80\x42\xc9\xee\xef\x22\x95\ \x0c\x40\x29\xb6\x00\x80\x19\x80\xdc\x60\x00\x10\x17\x66\x00\xe0\ \x79\x0b\xc0\xb2\x19\x8c\xac\x11\x50\x1a\x5b\x00\xb9\xaf\x01\x90\ \xcc\x01\xf0\x58\x03\x10\x5f\x11\x20\x33\x00\x79\xc1\x00\x20\x2e\ \x39\x1a\x08\x94\x46\x37\xc0\x24\xb6\x00\x12\x2c\x02\xf4\x3a\x0c\ \x28\xc0\x16\x80\xf1\x29\x00\x49\x1f\x80\xc8\x6a\x00\x98\x01\xc8\ \x0f\x06\x00\x71\xc9\xcd\x48\x60\xd1\x40\xa0\x9c\xf7\x01\xf0\xda\ \x08\xc8\x36\x8d\xaf\xeb\xa2\xde\x12\xa6\xed\x8b\xad\x6b\x00\x54\ \xc1\xba\x55\x72\x2a\x5b\x00\x71\x65\x00\xb4\xb4\x08\x90\x19\x80\ \x88\x30\x00\x88\x8b\x20\x03\x10\x59\x00\x20\xca\x00\x78\xec\x03\ \x60\x1b\x00\x58\xee\x3b\x03\x7e\x8b\x00\x6d\xfb\xf9\x8b\xf6\xff\ \x4d\xbf\xfd\x6b\xfb\x40\xc3\x76\xff\x5f\xd7\xeb\xa8\x8e\x0e\x5a\ \x3f\xd7\x34\xeb\x24\xea\x03\x10\x51\x06\xa0\x3a\x32\x20\xc9\xd6\ \xd4\x01\x74\x39\x5c\x0e\x09\x31\x00\x88\x8b\x75\x00\x50\x1d\x1e\ \x90\xb6\xe7\x74\x2a\x95\x3e\x00\xd6\xad\x80\x13\xa9\x01\xb0\x4d\ \xe3\xe7\xfd\x04\x40\x6d\x64\x00\xd0\xda\xea\xda\x62\xa9\xc9\x28\ \x28\xd3\xba\x8e\xaa\xe0\xdf\x66\x4c\x45\x80\xc2\x13\x00\x5b\xb5\ \xd6\xf6\x91\x25\x39\xc7\x00\x20\x22\x5a\xeb\x51\x00\xd6\x2d\xfd\ \x62\xea\x05\x20\xeb\x04\xe8\x6f\x0b\xa0\x56\x1e\xb1\x7a\xd9\x79\ \x6d\x05\x1c\x60\x0b\x40\x32\x09\xd0\xeb\x09\x00\xcb\xbf\x87\x8a\ \x68\x0e\x80\xe9\xb7\x7f\xfb\xfd\xff\x42\xa9\x59\x74\xe2\xc7\xb4\ \x2a\x77\x00\x00\x1c\x96\x49\x44\x41\x54\xc4\x35\xee\xff\xe7\x0b\ \x03\x80\xf8\xe4\xa2\x1b\x60\xa9\x6d\x8a\xf5\xb5\xb5\xea\x98\xd1\ \xfe\xb3\x2a\x14\x50\x2c\x35\x5b\x3f\xcf\xa6\x1a\x5c\xb2\x05\xe0\ \xb5\x11\x90\x6d\x06\x40\xb0\x05\xe0\x77\x14\xb0\xe5\x11\x40\x8f\ \xa3\x80\xf3\xb3\xff\x0f\x54\x79\x02\x20\x57\x18\x00\xc4\x27\x17\ \xbd\x00\x54\xa1\x28\xfa\xf0\xf2\x99\x05\xb0\x69\x07\x2c\xd9\x02\ \xf0\xde\x08\xc8\x22\xd5\xcd\x13\x00\xfb\x67\xda\x04\xc8\xb4\xb1\ \xd5\x78\xc5\x96\x78\xd2\xff\x00\x50\x19\x64\x06\x20\x4f\x18\x00\ \xc4\x47\x90\x01\x88\x67\x0b\x00\xf0\x3b\x11\xd0\x77\x33\x20\x55\ \x2c\x01\x4a\x59\x3d\x4f\x6b\x0d\x6d\xf8\x52\x56\xca\xfe\x9f\xaa\ \xae\x9b\x7f\x9b\x97\x6c\x01\xf8\xac\x01\xb0\x0d\xc4\xbc\x1e\x01\ \xe4\x1c\x80\xdd\x98\x01\x88\x0c\x03\x80\xf8\xe4\x22\x03\x00\xf8\ \x6e\x06\x14\xe0\x24\x40\x21\x91\x93\x00\x16\xe9\x7c\xc9\x18\x61\ \xaf\x93\x00\x83\xcc\x01\x30\x6b\x3d\x9d\xa7\x2d\x00\xd6\x00\xe4\ \x0b\x03\x80\xf8\xb0\x1b\x20\xd2\x08\x00\x6c\x8f\xa0\x01\xf1\x9f\ \x04\x90\xcc\x10\xf0\x59\x03\x10\x62\x10\x50\xa9\xd9\x74\x0e\x40\ \x9e\x9a\x00\x31\x03\x90\x27\x0c\x00\xe2\x93\x9b\x0c\x40\x93\xa4\ \x19\x90\xf1\x51\xc0\xb4\x26\x02\xfa\x3d\x09\x60\x1e\x00\xc8\x26\ \x01\x9a\x7d\xac\x88\x1a\x0e\x59\x6f\x01\xd8\x9f\x02\xf0\x5b\x04\ \x18\x57\x0d\x40\x55\x76\x0c\x90\x19\x80\xc8\x30\x00\x88\x4f\x8e\ \x6a\x00\x04\x47\x01\x7d\x76\x03\x1c\xb2\x7b\x19\xd8\xa6\x9f\x81\ \xf8\x4f\x02\xf8\xed\x03\x20\xc8\x36\x24\x70\x0a\x20\x2f\x35\x00\ \xba\x56\x45\x75\x74\x48\x72\x0b\x66\x00\x22\xc3\x00\x20\x3e\xf6\ \x01\x40\xae\xba\x01\xc6\x5d\x04\x08\x24\x76\x12\xc0\xc3\x35\xbb\ \x99\xae\x55\xb4\x05\x10\xe2\x14\x80\xe9\x20\x20\xd1\x29\x80\x78\ \x02\x80\x9d\xfb\xff\x76\xcd\x93\x00\x94\xb5\xd6\xdd\x0e\x97\x43\ \x0e\x30\x00\x88\xcf\x56\x00\x56\x9f\xbe\xf5\xca\x98\xe8\x83\xcd\ \x35\x9f\xdd\x00\x9b\x02\x0c\x04\x12\x8d\x04\xf6\x99\x01\xf0\xbc\ \x05\x60\xba\xd6\xd4\x8e\x01\x1a\x6f\x01\x8c\xe6\xa3\x08\x50\x38\ \x03\x80\xe9\xff\x08\x31\x00\x88\x8c\xde\xd9\x18\xdd\xba\x5f\x76\ \x4c\x75\x00\xa9\xcc\x03\xa8\x58\x6e\x01\xe4\x79\x22\xa0\xcf\x3e\ \x00\xa2\x56\xc0\x96\x7f\x07\xb6\x7f\xe7\x80\x79\x1f\x00\xd3\x23\ \xad\xe3\xc5\x95\x01\x60\x01\x60\xde\x30\x00\x88\x53\x2e\x0a\x01\ \xf3\xdc\x07\x00\x10\xd6\x00\x18\x9f\x02\x10\xf4\x01\xb0\x48\xe7\ \x4b\x86\x01\xf9\xcc\x00\x14\x2c\xb3\x30\xa9\x4c\x02\x8c\x6a\x0e\ \x00\x33\x00\xb9\xc3\x00\x20\x4e\xb9\x38\x0a\x58\x6a\xf7\x39\x0f\ \xc0\xff\x29\x00\x9f\x03\x81\x64\x7d\x00\xc6\x8c\xaf\xd1\x16\xd7\ \xec\xe6\xb3\x06\xc0\x2a\x08\xd3\x1a\xd5\x11\x7f\x93\x00\xf3\x72\ \x0a\x80\x19\x80\xfc\x61\x00\x10\x27\x41\x06\x20\x9e\x93\x00\x7e\ \xfb\x00\x98\x35\x67\x19\x2f\x85\x63\x80\xa2\x3e\x00\x36\x35\x00\ \x1e\x4f\x01\xf8\x1e\x06\x54\x1d\x19\x04\x2c\x47\x10\x17\x8a\x45\ \x14\x0d\x82\x0e\xad\x35\x6a\x82\x49\x80\x31\xd5\x00\x30\x03\x90\ \x3f\x0c\x00\xe2\x94\x8b\x0c\x40\x93\xcf\x2d\x00\x41\x11\x60\x6d\ \x74\xc8\xea\x25\xe4\xf3\x18\xa0\xa4\x06\xc0\xe6\x98\x9d\xe8\x14\ \x80\xd7\x71\xc0\xe6\x5b\x00\x3e\x4f\x00\x54\xc7\x46\x8d\xdb\x3e\ \xef\xa6\x8a\x25\x14\x04\x43\xae\x5c\x13\xf6\x00\x60\x06\x20\x42\ \x0c\x00\xe2\x94\x8f\x1a\x00\x49\x23\xa0\xb1\x32\xb4\xc1\xb7\x34\ \xd3\x6f\x66\xcf\x7a\xde\xf0\x80\xf1\x35\xb6\xfb\xcf\x40\xfc\x19\ \x00\x51\x2b\x60\xe3\x0c\x80\xa0\x11\x90\xc5\xdf\xb9\xcf\x26\x40\ \x92\x02\xc0\x98\xf6\xff\x01\x66\x00\xf2\x88\x01\x40\x9c\x72\x91\ \x01\x50\xc5\x26\x14\x25\xc7\xf3\x0c\x4f\x02\x48\xb2\x00\x36\x2f\ \x05\x9f\x45\x80\xb2\x3e\x00\x71\x6f\x01\xf8\xee\x03\xe0\xb7\x00\ \x90\x6d\x80\x77\x61\x06\x20\x42\x0c\x00\xe2\x94\x8b\x1a\x00\x20\ \xdf\xf3\x00\x52\xa9\x01\xf0\xbe\x05\xe0\x73\x18\x50\xec\x5b\x00\ \x39\x19\x04\x54\x1b\x1b\x41\x5d\x50\xcb\x00\x66\x00\xa2\xc4\x00\ \x20\x4e\xf6\x19\x80\x81\x1e\xd1\x07\xaa\x6b\x92\x6d\x00\xd3\x0e\ \x6a\xa6\xe7\xb3\xc7\xb3\x79\x29\x48\xb6\x00\x7c\xd6\x00\xf8\xde\ \x02\xf0\x39\x0e\xd8\x6e\x0b\x20\x8d\x23\x80\x31\x65\x00\xaa\xb2\ \x6f\xff\xbd\x5a\xeb\x61\x57\x6b\x21\x77\x18\x00\x44\x48\x6b\xdd\ \x07\xc0\xee\x1f\x8c\xae\xa3\xd2\x1f\x4f\xc7\x4d\xaf\xdd\x00\x45\ \xf3\x00\x2c\x32\x00\x1e\x1b\x01\xf9\x9e\x06\x28\xd9\x02\x30\xaf\ \x01\xf0\xbc\x05\x20\x98\x03\x60\x1a\x64\x8a\xda\x00\x47\x94\x01\ \xa8\x0c\x72\xff\x3f\x8f\x18\x00\xc4\x4b\x30\x13\x20\x9e\x6d\x00\ \xaf\xf3\x00\x3c\xb7\x03\x96\x6c\x01\xd4\x0d\x0b\xdf\x44\xa7\x00\ \x2c\x9a\xfa\x78\xcd\x00\x78\xee\x03\x50\xf1\x98\x01\x90\x0d\x02\ \x8a\xa7\x08\x90\xfb\xff\xf9\xc4\x00\x20\x5e\xf6\x75\x00\xbd\x5b\ \x5d\xae\x43\x44\xd6\x0d\xd0\x63\x3b\x60\x8b\x22\xc0\x82\xe5\x24\ \x3a\xc0\xf7\x30\x20\x9b\x56\xc0\x69\xd4\x00\xd8\xb4\x63\x96\x9c\ \x02\xf0\xda\x04\x28\xa2\x2d\x00\x9e\x00\xc8\x27\x06\x00\xf1\x62\ \x06\x20\xf6\x2d\x00\x49\x06\x20\xf2\x71\xc0\x5e\x4f\x01\x88\xfa\ \x00\xf8\xdd\x02\x30\x3f\x06\x28\x38\x05\x10\xd3\x16\x00\x33\x00\ \xb9\xc4\x00\x20\x5e\x82\x0c\x40\x3c\x47\x01\x93\xa9\x01\xb0\x2a\ \x02\x4c\x64\x1c\x70\xe4\x7d\x00\x44\x5b\x00\x9e\x4f\x01\x78\x2d\ \x02\x8c\x28\x00\xa8\xb2\x06\x20\x97\x18\x00\xc4\x2b\x1f\x19\x00\ \xc9\x3c\x00\x8f\xdd\x00\xad\x6a\x00\xbc\x0e\x03\x92\x6c\x01\x58\ \x0c\x03\xca\xf5\x16\x40\x22\x35\x00\x2d\xac\x01\xa0\x6c\x31\x00\ \x88\x97\x75\xd4\x5c\xce\x49\x0d\x40\xfc\x7d\x00\x3c\xd6\x00\x78\ \xde\x02\x48\xa6\x08\xd0\xaa\x11\x90\xc7\x1a\x80\xbc\x9c\x02\x90\ \x05\x00\xcc\x00\x44\x8a\x01\x40\xbc\xac\xa3\xe6\x4a\x4c\x19\x00\ \x8f\x5b\x00\xb2\x3e\x00\x16\x45\x80\x89\xd4\x00\x58\x6d\x01\x24\ \x72\x0c\xd0\xae\x0f\x80\x79\xdb\xe7\xdd\x8c\xb7\x00\x46\x73\x50\ \x04\xa8\xb5\x28\x68\x02\x33\x00\xd1\x62\x00\x10\x2f\x41\x06\x20\ \x9e\x1a\x00\xc9\x40\xa0\xe8\x33\x00\x1e\xfb\x00\xc8\x4e\x01\xd8\ \x6c\x01\xa4\x51\x04\x68\xda\x8c\xc9\x76\xf0\x13\x00\x28\x55\x40\ \xb1\xc9\x6c\x38\x8f\x64\x16\x40\x2c\x19\x80\xea\x48\xbf\x64\x5e\ \x43\x1d\x40\x97\xc3\xe5\x90\x43\x0c\x00\xe2\x65\x1d\x00\xd4\x46\ \x07\x51\x17\x54\x1f\xbb\x94\x4c\x1f\x00\x8b\x11\xb1\x92\x2d\x00\ \xe3\x59\x00\xa2\x3e\x00\x36\x5b\x00\x69\xd4\x00\x98\x6e\x01\x78\ \xdd\xff\x1f\x2b\xdb\x4f\x02\x2c\x14\x44\x73\x34\x5c\x12\x1e\x01\ \xdc\xa2\xb5\x8e\xa7\x35\x29\xed\x81\x01\x40\xa4\xb4\xd6\x65\x00\ \xd6\xb9\xfc\x58\x86\x02\x49\x8a\x00\x6b\x15\xb3\x0f\xd0\x62\xa9\ \xc9\xfe\x9b\xb2\xd6\x3b\x83\x00\x03\x36\x05\x68\xbb\xf9\x2d\x02\ \xf4\xbb\x05\xe0\x75\x18\x90\xe1\xdf\x81\x68\x0e\x80\xc7\x49\x80\ \xc5\x98\x0a\x00\x39\x06\x38\xb7\x18\x00\xc4\x2d\xf9\xa1\x40\x85\ \xa6\x16\x14\x0c\xd3\xa6\xbb\x69\xad\x8d\xcf\x51\xfb\x3c\x09\xe0\ \x73\x18\x90\x68\x16\x80\x4d\x1f\x00\xaf\xe3\x80\xfd\x1d\x03\x94\ \x65\x00\x0c\xdb\x00\xe7\xe4\x08\x20\x9b\x00\xe5\x17\x03\x80\xb8\ \x09\xc6\x02\xe7\xe3\x24\x80\xe9\xb7\x28\x51\x37\xc0\x21\xb3\x42\ \xa7\x64\x1a\x01\xd9\xb4\x02\x16\x1c\x03\x54\x05\xb3\x8f\x15\x9f\ \x8d\x80\x4c\xff\x8e\xc7\xf3\xda\x05\x30\xa2\x00\x40\x38\x08\x88\ \x19\x80\x88\x31\x00\x88\x5b\xf2\x19\x00\x00\x28\xb5\x09\x7a\x01\ \x18\xce\x53\xf7\x59\x08\x98\xef\x56\xc0\x82\x0c\x80\x71\x0d\x80\ \x75\x81\x99\xd7\x2d\x00\xf3\x1a\x00\x49\x0f\x80\x78\x02\x00\x66\ \x00\xf2\x8b\x01\x40\xdc\xac\xa3\xe7\x72\x24\x35\x00\x80\xef\xa3\ \x80\x69\x6c\x01\xf8\xac\x01\xb0\x49\xe7\x4b\xb6\x00\x62\xee\x03\ \xe0\xb7\x0b\xa0\xa4\x0d\x30\x6b\x00\x28\x7b\x0c\x00\xe2\x66\x1d\ \x3d\x57\xfa\xf3\x11\x00\xc4\x3c\x0f\x40\x52\x04\xe8\xb7\x06\xc0\ \xef\x16\x80\xdf\x3e\x00\x86\x35\x00\x1e\xb7\x00\x24\x5d\x00\xa3\ \xe9\x01\x00\x66\x00\xf2\x8c\x01\x40\xdc\xec\x33\x00\x11\xf5\x02\ \x10\x05\x00\xa6\x35\x00\xa2\x22\x40\xd3\x1a\x00\xc1\x31\x40\x9f\ \x8d\x80\x72\x3c\x0c\xc8\xb4\x19\x13\xe7\x00\x98\x63\x1b\xe0\xfc\ \x62\x00\x10\x37\x41\x0d\x40\x44\x01\x40\x3b\xb7\x00\xf6\xe6\xb3\ \x06\xc0\xae\x0f\x80\xcf\x1a\x80\x34\xb6\x00\x4c\x3b\x4d\x4a\xda\ \x00\x97\x22\x09\x00\x74\xad\x8a\xda\xa8\xd9\xf1\xd8\xbd\x30\x03\ \x10\x31\x06\x00\x71\x6b\xf8\x76\xc0\x31\x77\x03\x94\xf5\x01\x30\ \x6c\x3a\x64\x58\x59\x3f\x9e\xdd\x16\x40\x1a\x35\x00\x51\x17\x01\ \x8a\xb6\x00\xe2\xa8\x01\x10\x7e\xfb\x1f\xd5\x5a\xf7\xb8\x5a\x0b\ \xb9\xc7\x00\x20\x6e\xdb\x00\x58\x6d\xc6\xd6\xab\x15\xe9\xde\x9d\ \x33\x3e\xdb\x01\x97\x9a\x25\xf3\x00\x4c\x33\x00\x69\x0c\x03\xb2\ \xf9\x36\x6f\x73\x74\x70\xb7\x98\x67\x01\x88\x32\x00\x0d\x78\x0c\ \x90\xfb\xff\xf9\xc6\x00\x20\x62\x5a\xeb\x3a\x80\x4e\xdb\xeb\x2b\ \x91\x1c\x05\x4c\xa5\x0f\x80\x71\x00\x20\xc9\x00\xf8\xec\x03\x10\ \x7b\x27\x40\xdb\x1a\x00\xa5\x8c\x9f\x55\xf1\x7a\x0c\x50\x72\x0a\ \x20\x96\x00\x80\xfb\xff\x79\xc6\x00\x20\x7e\xf6\x43\x81\x22\xa9\ \x03\x48\x66\x0b\xc0\xf4\x14\x40\x22\x35\x00\xa6\x2f\x73\x51\x13\ \x20\xa5\xa0\x94\x32\x7b\x9e\xe1\x0c\x86\xdd\x4c\x07\x01\x01\xe6\ \x7f\xc7\xe3\xf9\x2c\x02\x8c\xa5\x0f\x40\x75\x90\x19\x80\x3c\x63\ \x00\x10\x3f\x41\x37\xc0\x58\x02\x00\xfb\x46\x40\x55\xc3\xb3\xd4\ \x92\x56\xc0\x15\xe3\x53\x00\x69\xf4\x01\x30\x1d\xec\x93\xca\x09\ \x00\xd3\xff\xfe\xb5\xf2\x88\x75\x66\x43\x29\x65\xbc\xbd\x24\xaa\ \x01\x60\x06\x80\x3c\x60\x00\x10\xbf\xe4\x4f\x02\xa4\x92\x01\xa8\ \x8d\x0c\x00\x06\xc3\x87\x4c\xcf\xa0\x8f\xe7\xb3\x06\xc0\xf4\x85\ \x9e\xcc\x24\x40\xe3\xfd\x7f\x49\x0f\x00\xb3\x97\x7f\xad\x5a\xb1\ \x2f\x6e\x54\x0a\xc5\x96\x36\xbb\x6b\x1d\x13\x06\x00\xcc\x00\x44\ \x8e\x01\x40\xfc\x04\x19\x80\x48\x6a\x00\x24\xc7\x00\x0d\x6b\x00\ \x8a\x4d\xcd\xd6\x15\xf3\xba\x5e\x47\xd5\xe0\xc8\x93\x64\x0b\x20\ \xe6\x3e\x00\xc9\x9c\x00\xf0\x7a\x04\xd0\x34\xfd\x3f\x6c\xfd\xac\ \x9d\x2f\x7f\xb3\x6d\x94\xac\x08\x8b\x00\x99\x01\x88\x1c\x03\x80\ \xf8\x25\x9f\x01\x28\xb6\xb4\x59\x57\xcc\xef\x9c\x08\x58\x36\xba\ \xc6\x57\x21\x60\x3a\x7d\x00\xfc\x6d\x01\x44\xdd\x05\x50\x52\x00\ \xd8\xa8\x5d\x00\x65\x6d\x80\x99\x01\x88\x1c\x03\x80\xf8\x25\x5f\ \x03\x00\x00\xa5\xd6\x29\xd6\xd7\x9a\x66\x01\x7c\x8d\x04\x96\x0c\ \x03\x32\xae\x01\x50\x82\x7f\xaa\xba\x6e\x34\x70\x47\xb2\x05\x10\ \x73\x0d\x40\x2a\x73\x00\x4a\x11\xcd\x01\xa8\x32\x03\x90\x6b\x0c\ \x00\xe2\x97\x7c\x06\x00\x90\x6d\x03\x44\x7b\x12\x40\x15\x64\x0d\ \x7a\x0c\x9b\x01\xf9\x3a\x09\xe0\x77\x12\xa0\xc7\x2d\x00\xc1\x09\ \x00\xd3\x2d\x00\xc9\x24\xc0\x58\x32\x00\xb5\xf2\x30\xea\xd5\x31\ \xc9\x2d\x98\x01\x88\x1c\x03\x80\xf8\xd9\x77\x03\x1c\xec\x15\x7d\ \xc0\xba\x24\x1b\x09\x1c\x71\x2f\x80\x54\x4e\x02\x18\xbc\xd4\x93\ \x99\x04\xe8\x73\x0b\xc0\xb4\x0d\xb0\x64\x0b\xa0\x35\x8e\x0c\x80\ \x70\xff\x7f\x87\xd6\xda\xfe\x3f\x02\x79\xc1\x00\x20\x72\x5a\xeb\ \x7e\x00\x76\xcd\xb8\x75\x1d\x63\x91\xb4\x04\x96\x74\x03\x34\x9e\ \x07\x20\xd8\x02\x30\x3d\x93\xee\xb5\x0e\x40\x34\x12\x78\xe2\x69\ \x7d\x51\x06\xc0\x63\x0d\x80\x69\x06\xc0\xb6\xdf\x00\xe0\xb7\x0b\ \x60\x34\x3d\x00\x78\x04\x30\xf7\x18\x00\xa4\x41\xb0\x0d\x10\x47\ \x00\x50\x6a\xf7\x97\x01\x10\x15\xb1\x95\x9a\x0d\x7f\xde\xbe\x0e\ \xa0\x56\x31\x4b\xaf\x8a\xa6\xe6\x35\xb7\x18\xfc\xac\x7d\x3b\xe5\ \xba\x61\x13\xa1\xaa\xe1\x7f\x83\xf1\x4c\x83\x2f\xd9\xa9\x0d\xb3\ \xdf\xa9\x7c\xf4\x00\x60\x13\xa0\xbc\x63\x00\x90\x86\xe4\x0b\x01\ \x25\xbd\x00\xfa\xb7\x9b\x7d\x96\x8c\x0c\xd8\x7f\x73\x31\x1d\x2e\ \xd3\x34\x65\xa6\xf5\xb3\xfa\xbb\x27\xfe\xe7\x1a\x1d\xec\x45\xcd\ \x72\x3f\xb6\x50\x6a\x42\xd1\xe0\x1b\x6c\x93\x60\xbb\x66\xb8\xbf\ \xdb\xa8\xb6\x61\xa0\xdb\xba\xd3\x35\x9a\xa6\xcc\x30\xfa\x79\xd5\ \x64\x16\xdc\x8d\x37\x32\x60\xf6\x32\x34\xf9\xbb\xdd\x5b\x2c\x35\ \x00\xc2\x13\x00\xcc\x00\x24\x80\x01\x40\x1a\x92\x2f\x04\x6c\xe9\ \x98\x6f\x7d\xed\x8e\xce\x35\x13\xfe\xd9\xb1\xd1\x21\x0c\x0b\xb2\ \x1e\x85\xa6\x89\x7f\x53\x06\x80\x49\x1d\xf3\xac\x9f\xd5\xb7\x65\ \xc3\x84\x7f\xb6\x7f\x9b\xfd\xe7\xa9\x69\xf6\x45\x92\xad\xd1\xf5\ \xba\xd1\x4b\xbd\x77\xcb\x7a\xeb\x67\xb5\xcc\x98\x6b\xf4\xf3\xa6\ \x7f\xb7\xe3\xf5\x6f\x7f\x66\xc2\x19\x98\x5a\xb5\x82\xfe\xad\x9b\ \xac\x9f\xd5\x3c\x6d\xb6\xf5\xb5\x2e\x31\x03\x90\x7f\x0c\x00\xd2\ \x90\x7c\x06\xa0\x6d\xee\x22\xeb\x6b\xcb\xc3\x03\xe8\x7c\xfa\xe1\ \x09\xfd\xec\xda\x87\x6e\x41\x4d\x50\xc4\xd6\x3c\x63\x8e\xd1\xcf\ \xb7\xcc\xb4\x0f\x6c\x36\xaf\x7c\x10\x23\xfd\xcf\x3d\x2d\xb5\x56\ \xad\x60\xf5\x83\xbf\xb7\x7e\x8e\x69\x01\xa6\x2a\x96\x44\x9d\xe8\ \x9e\xbe\xef\x26\xe8\x09\x74\x54\xec\xdb\xba\x11\xdd\x1b\x57\x5a\ \x3f\xa7\xc5\x30\xf8\x6a\x9e\x3a\xcb\xfa\x59\xe5\xa1\x7e\x6c\x7a\ \xe2\x9e\x09\xfd\xec\xfa\x47\x6e\x17\x15\x37\x4e\x9a\xb9\xd0\xfa\ \x5a\x97\xd8\x06\x38\xff\x18\x00\xa4\x21\xf9\x0c\x40\xdb\xdc\xc3\ \x44\xd7\xaf\xbc\xfb\x97\x18\xec\xe9\x3a\xe0\xcf\x6c\x59\xbb\x02\ \x9d\xab\x1e\xb2\x7e\x46\x53\xfb\x74\xb4\x1e\x74\xb0\xd1\x35\x93\ \x04\x01\x40\xad\x5a\xc1\xe3\xb7\x5f\x73\xc0\x46\x47\x5a\xd7\xb1\ \xea\xde\x5f\x63\x54\x30\x94\xa5\x6d\xde\x62\x2f\xd7\xec\xd6\xb7\ \x6d\x13\xd6\x2d\xbf\xed\x80\x3f\x33\x36\x32\x88\xc7\x6f\xff\xf9\ \x84\x02\x85\xfd\x31\xcd\x00\x4c\x3d\xec\x38\x40\xd0\x4f\x61\xdd\ \xf2\xdb\xb1\xa3\x6b\xdd\x01\x7f\xa6\xfb\x99\xa7\xb1\xfe\xd1\x3b\ \xad\x9f\x51\x68\x9e\x84\xe6\x29\x1d\xd6\xd7\xbb\x54\x65\x13\xa0\ \xdc\x63\x00\x90\x86\xe4\xdb\x01\x37\x4d\x9d\x29\xaa\x03\xa8\xd7\ \xaa\x78\xf0\x97\x97\x63\xdd\xf2\xdb\x9e\x55\x68\x36\x36\x32\x84\ \x55\xf7\xfe\x1a\x8f\xdf\x76\x8d\xe8\x85\x32\xe5\xd0\x63\x2d\xae\ \x39\xce\xfa\x79\xc0\xce\xfa\x86\x7b\xaf\xfb\x26\x7a\x36\xaf\x7e\ \xd6\xff\x6f\xa8\x77\x2b\x1e\xbc\xf1\xfb\xa2\xa0\x06\x00\xa6\x1f\ \x75\xaa\x97\x6b\xc6\x5b\xb7\xfc\x36\x2c\xff\xed\x8f\x30\x3a\xf4\ \xec\xfe\xfb\x5b\xd6\x3c\x8a\x7b\x7e\x7e\x99\x28\xa8\x81\x2a\x60\ \xca\xa2\x65\x46\x97\x14\x27\x4d\x46\xfb\x82\xc3\xad\x1f\x59\xab\ \x8e\x61\xf9\x4d\xff\x83\x0d\x2b\xee\x7a\x56\xd0\x56\xab\x56\xf0\ \xf4\x7d\xbf\xc1\xa3\xbf\xbb\xc2\xfa\xfe\x00\x30\xa9\x63\x21\xd8\ \x06\x98\x7c\xb1\x2f\x61\x26\x9f\x04\x19\x80\xad\x2e\xd7\x21\xd2\ \xb1\xec\xc5\xd8\x7a\xef\x0d\xd6\xd7\xd7\xaa\x15\xac\x7d\xf8\x56\ \x6c\x7c\xec\x6e\xb4\x4e\xed\xc0\xa4\xc9\xd3\x31\x32\xb0\xe3\x39\ \x33\x03\x13\x65\xf3\x32\x9f\x7c\xf0\x52\xb4\x74\xcc\x43\xb9\xc7\ \xbe\x98\xad\x3c\xd4\x8f\xe5\xbf\xf9\x11\x9a\x5a\x5a\x31\xb9\x63\ \x0e\x8a\xa5\x66\xf4\x6f\xdf\x8c\xb1\x11\xbb\xd3\x9f\x7b\xb3\x0b\ \x00\x4e\xc3\xc6\x5f\x7d\x57\xf4\xdc\x9e\x67\x56\xe3\x0f\x57\x7f\ \x1d\x93\x26\x4f\xc7\x94\x99\xf3\x30\x36\x32\x88\xc1\x1d\x5b\x8c\ \x4f\x3f\xec\xcb\xd4\xc5\xc7\xa3\xc9\xe2\x9b\xf2\xd4\xc5\x27\x60\ \x68\x93\xfd\xb6\x83\xd6\x1a\xab\x1f\xf8\x1d\xd6\x3c\xf8\x7b\x4c\ \x3d\x68\x01\x26\xb5\x4f\xc7\x50\xdf\x36\x0c\xf7\x6e\x17\xa5\xfd\ \xff\xb8\xbe\x43\x9f\x2f\xbe\x87\x13\x5a\x8b\x86\x27\x81\x19\x80\ \x24\x30\x03\x90\x86\xe4\x33\x00\x00\x30\xfb\xd4\xb3\x9d\xdc\xa7\ \x5a\x29\x63\xa0\xbb\x13\xdb\xd6\x3f\xe1\xec\xe5\x0f\x55\xc0\xcc\ \xe3\x5e\x66\x75\xe9\xac\xe7\x9f\xe9\x64\x09\x95\xf2\x08\x76\x74\ \xae\xc3\xf6\x8d\x2b\x9d\xbd\xfc\xdb\xe6\x1f\x6e\xb5\xf7\x3d\xf9\ \xe0\xa5\x28\xb5\xd9\xb7\x6f\x1e\x6f\x74\xb0\x17\xdb\xd6\x3f\x81\ \xbe\xad\x1b\x9d\xbc\xfc\x01\x60\xd6\xf3\x5f\x69\x75\x5d\xc7\xb1\ \x2f\x75\xf2\x7c\xad\x35\xfa\xb6\x6e\xc2\x96\xb5\x2b\x30\xd8\xb3\ \xc5\xc9\xcb\x1f\x4a\x61\xc6\x92\x17\xca\xef\xe3\x40\x65\xb8\x4f\ \xd2\x37\xa1\x06\x60\x8b\xc3\xe5\x50\x46\x18\x00\xa4\xa1\x13\x80\ \x55\x6e\xbb\x36\x3a\x84\x9a\xe0\x4c\xb2\x4b\x53\x17\x9f\x80\x49\ \xb3\xe2\x28\x70\xda\x5b\xc7\x31\x2f\xc2\xa4\x83\x9e\x67\x75\xed\ \xcc\x13\xdc\x04\x00\x59\x98\xfb\xc2\x73\xad\xae\x53\x85\x02\x66\ \x9f\x76\x8e\xe3\xd5\xb8\xa1\x0a\xf6\xc1\xda\xb4\xc3\x4f\x44\xfb\ \xc2\x23\xdd\x2e\xc8\x91\xc9\x0b\x97\xa2\x69\xb2\xd9\xd1\xc6\xac\ \x08\x67\x00\x6c\xd1\x5a\xc7\xd1\x82\x94\x0e\x88\x01\x40\x02\xb4\ \xd6\x63\x00\xac\xbf\xca\x8f\xf5\xc7\x51\x08\x08\x00\x73\x5f\x78\ \x5e\xe8\x25\xec\xd3\xbc\x97\xbd\xdd\xfa\xda\xc9\xcf\x3b\x5a\xbc\ \x67\x9e\x85\xe6\xe9\xb3\x31\xfb\xb4\x37\x58\x5f\xbf\xe0\x15\x17\ \x18\xf5\x0f\xf0\x65\xf6\x69\xe7\xa0\x69\xaa\x7d\xff\x85\xf9\x2f\ \x7b\x87\xc3\xd5\xb8\x33\xf3\x98\x97\x85\x5e\xc2\x1f\xf1\x04\x40\ \x63\x60\x00\x90\x0e\xfb\x3a\x80\xde\x88\x02\x80\x97\xfc\xa9\xf5\ \x37\xed\xac\xb4\x2f\x5c\x82\x69\x87\x9f\x28\xba\xc7\xa2\x37\x7c\ \x50\x34\x18\x28\x0b\x0b\x5f\xf5\x6e\xe3\xc6\x46\xe3\x35\x4d\x9e\ \x8e\xb9\x2f\x7e\xb3\xc3\x15\xc9\x15\x5b\xda\x70\xf0\x6b\xfe\x52\ \x74\x8f\x59\x27\xbc\x12\xcd\xd3\x0e\x72\xb4\x22\x37\xda\xe7\x2f\ \xc1\xb4\xc3\x4f\x0e\xbd\x8c\x3f\x62\x0f\x80\xc6\x10\xd7\x27\x16\ \x1d\x88\x7d\x1d\x40\x24\xf3\x00\x80\x9d\x5d\xe9\x0e\x7b\xd3\xdf\ \x87\x5e\xc6\x1f\xa9\x62\x09\x87\xbf\xed\x9f\xc5\xf7\x69\x9b\xb7\ \x38\xaa\x94\xf9\xa4\x59\x0b\x30\xe7\xb4\xd7\x8b\xef\x33\xff\x15\ \xef\x74\x56\x0b\xe0\xc2\x82\x57\xbd\xcb\xaa\xf8\x6f\x3c\x55\x2c\ \xe1\xb0\xb7\x7c\xcc\xd1\x8a\xe4\x54\xa1\x80\x05\x2f\xbd\x20\xf4\ \x32\xf6\xc0\x0c\x40\x63\x60\x00\x90\x0e\x41\x06\x20\x9e\x93\x00\ \xc0\xce\x0a\xf3\x99\xc7\xbf\x3c\xf4\x32\x00\x00\x07\xbf\xf6\xfd\ \x68\x5f\xb8\xc4\xd1\xbd\xfe\x0a\xcd\xd3\xc3\x77\x71\x2b\x34\xb5\ \x60\xc9\x7b\x3e\x2f\x1a\x54\xb4\x5b\x53\xfb\x74\x1c\x71\xfe\xa7\ \x00\x15\xfe\x68\x5a\xfb\x82\x23\x30\xff\xa5\xf6\x5b\x35\xe3\x75\ \x2c\x7b\x31\xe6\xbe\xe8\x8d\x4e\xee\x25\x35\xeb\xf8\xb3\x30\x69\ \xe6\x82\xd0\xcb\xd8\x83\xb0\x0d\x30\x33\x00\x89\x60\x00\x90\x8e\ \x5c\x64\x00\x76\x3b\xfc\xed\x17\xa1\x6d\xbe\xfd\x99\x6c\x17\xa6\ \x1d\x71\x32\x16\xbc\xe2\x9d\xce\xee\xd7\x34\x79\x3a\x8e\xfe\x8b\ \x2f\xa3\x28\x18\x47\xec\xc2\xe2\x3f\xbd\x10\xed\x0b\xdc\x15\xba\ \xcd\x58\xfa\x22\x2c\x3c\xeb\x3d\xce\xee\x67\xa3\x79\xda\x2c\x1c\ \xfd\x17\x5f\x46\x41\xd0\xcf\x7f\x6f\x8b\xce\xfd\x10\x5a\xe7\x2c\ \x72\x76\x3f\x1b\x93\x9f\x77\x0c\xe6\x9e\x1e\xd7\x36\x0b\x20\x2e\ \x02\x64\x06\x20\x11\x0c\x00\xd2\x91\x8b\x1a\x80\xdd\x8a\x93\x26\ \x63\xe9\x5f\x5d\x6a\xdc\xce\xd5\x95\xb6\x79\x8b\x71\xe4\xbb\x3e\ \x23\xea\x0c\xb7\x2f\xed\x0b\x8e\xc0\x91\xef\xfa\x5c\xb0\x7a\x80\ \x79\x2f\x79\x0b\x0e\x3a\xe5\x35\xce\xef\x7b\xf0\xab\xff\x1c\xd3\ \x8f\x3e\xcd\xf9\x7d\x27\xa2\xd8\xdc\x8a\xa3\xff\xe2\xcb\xce\xb3\ \x2b\x85\xa6\x16\x1c\xf5\xe7\x5f\x0c\x96\xb5\x69\x9d\xbd\x08\x8b\ \x5e\xfb\x77\x50\x82\x31\xcf\x59\x11\x6e\x01\x30\x03\x90\x08\x06\ \x00\xe9\x10\x64\x00\xe2\x0b\x00\x80\x9d\xbd\xd9\x97\xfe\xf5\xd7\ \x44\x15\xdd\x36\xa6\x2c\x5a\x86\x65\x7f\xf7\xcd\xcc\x8e\x5c\xcd\ \x58\xfa\x42\x2c\x7e\xdb\x45\x4e\x52\xf0\x26\xe6\xbf\xec\xed\x38\ \xf4\xbc\x8f\x64\x73\x73\x55\xc0\x51\xef\xbd\xc4\xfb\xd6\x4d\xb1\ \xa5\x0d\x4b\xde\xfb\x79\x67\xdb\x34\x7b\x6b\x3d\xe8\x60\x1c\xfb\ \xc1\x6f\x61\xd2\x2c\xbf\x29\xf8\x96\x19\x73\x71\xe8\xeb\x3f\x22\ \x1a\x50\x94\x25\x76\x01\x6c\x0c\x0c\x00\xd2\x91\xfc\x3c\x80\x7d\ \x69\x3d\xe8\x60\x1c\xff\xf7\x3f\xc0\x94\x45\xe6\x6d\x78\x6d\x4c\ \x3b\xf2\x14\x2c\xfd\xc0\xbf\x67\x5e\xd8\x36\xfb\x05\xaf\xc3\xb2\ \xbf\xfd\x86\xb8\x60\x6d\x42\x54\x01\x87\xbe\xe9\xef\xb1\xe8\xdc\ \x0f\x39\xcf\x68\x8c\x57\x68\x6a\xc1\x92\x77\xff\x1b\xe6\x3b\xdc\ \x36\x39\x90\x49\x07\x3d\x0f\xc7\x7d\xf4\x7b\x98\x7e\x54\xb6\x99\ \x87\x96\x8e\x79\x58\xf6\xc1\x6f\x89\xe7\x55\x4c\xd4\xd4\x43\x4f\ \xc0\xe1\x6f\xb9\x18\xa5\x56\xfb\xd6\xd8\x59\xd2\xb5\x0a\x6a\xa3\ \x43\x92\x5b\x30\x03\x90\x08\x25\xe9\x9d\x4e\xfe\x28\xa5\x66\xc3\ \xb2\xbb\x96\x2a\x36\xe1\xf4\x2f\xdd\x16\x45\x21\xd7\xfe\xe8\x5a\ \x15\x6b\xaf\xb9\x14\x5d\x77\x5c\x9d\xc9\xfd\x0b\x4d\xcd\x58\x78\ \xd6\x7b\xb1\xe0\x15\xe7\x43\x15\xfd\x75\xc0\x1e\xeb\xdd\x8a\x27\ \xbf\x77\x21\x06\x37\x3c\x9e\xc9\xfd\x9b\xa6\x74\x60\xf1\xdb\xfe\ \x19\x1d\xc7\x9c\x91\xc9\xfd\xf7\x67\xcb\xdd\xd7\x61\xdd\xcf\xbf\ \x26\x7d\x51\xec\xd7\x8c\xa5\x2f\xc4\x11\x17\x7c\x1a\xa5\x56\x7f\ \x27\x10\x6a\x63\x23\xd8\x70\xc3\xb7\xd0\x79\xdb\x55\x80\x7d\x17\ \xbc\xfd\x53\x0a\x73\x4f\x3d\x0f\xb3\x4f\x3e\x1b\xb1\xf4\xfb\xdf\ \x97\xb1\xfe\x6d\x78\xf2\x87\xd6\xa7\x24\x46\xb4\xd6\xf6\xa3\x24\ \xc9\x2b\x06\x00\x89\x50\x4a\x29\x00\x65\x00\x56\x79\xe5\x53\x3e\ \xfb\x2b\x34\x4d\x9e\xee\x76\x51\x19\xe8\x5b\x79\x1f\x36\xdc\xf0\ \x4d\x0c\xac\x7f\xcc\xd9\x3d\xa7\x1d\x7e\x22\x16\xbf\xf5\xe3\xc1\ \xfa\x0f\xe8\x7a\x1d\xdb\xee\xbb\x01\x1b\x6e\xfc\xb6\xb3\x6c\x4c\ \xa1\xa9\x19\xf3\x5f\xfa\x76\x2c\x78\xd5\xbb\x44\xa3\x7b\x25\x2a\ \x83\x3b\xb0\xe1\xc6\x6f\x63\xeb\xdd\xd7\x42\xd7\xdd\xbc\x30\x5b\ \xe7\x2c\xc2\x21\x67\xff\xb5\xb3\x96\xbd\x36\x06\x37\x3c\x8e\xa7\ \x7f\xfc\x39\x0c\x77\x3e\x7b\x40\x93\xad\x29\x07\x2f\xc3\xdc\xd3\ \xde\x84\xd6\xd9\x8b\x9c\xdd\x33\x2b\x43\x9b\x57\x62\xf5\xcf\x3e\ \x6f\x7b\xf9\xd3\x5a\xeb\x23\x5c\xae\x87\xb2\xc3\x00\x20\x21\x4a\ \xa9\xf5\x00\xcc\xe6\xd5\xee\x72\xfc\x3f\xfe\x37\xda\x17\xa4\xf3\ \xef\x72\xc7\x63\x77\x60\xe3\xaf\xfe\x0b\x83\x1b\x9f\xb0\xba\x5e\ \x15\x9b\xd0\x71\xcc\x8b\x30\xfb\xd4\xb3\x31\xc3\xf3\xb7\xe3\xfd\ \xa9\x57\xca\xd8\x7c\xeb\x15\xe8\xbc\xf5\x4a\x54\x06\x7a\xac\xee\ \x51\x6a\x9b\x82\x99\xc7\xbd\x1c\x0b\xff\xe4\xbd\xc6\xe3\x70\xb3\ \x32\xdc\xb5\x06\x9b\x7e\xfd\x3d\xec\x78\xec\x4e\xd4\xc6\xec\xda\ \x4e\x4f\x9a\xb5\x00\x0b\x5e\xf9\x2e\xcc\x7e\xc1\xd9\x51\x34\x54\ \xd2\xb5\x2a\xba\x97\xdf\x8c\x2d\x77\x5f\x87\xbe\x55\xf7\x03\x56\ \x9f\x93\x0a\x93\x17\x1e\x85\x39\xa7\x9e\x87\xf6\x79\xe9\xfc\xdb\ \xeb\x5d\x75\x2f\x36\xfc\xfa\x32\xdb\xcb\x6f\xd3\x5a\x87\x8b\xde\ \xc8\x08\x03\x80\x84\x28\xa5\xee\x02\x70\xba\xcd\xb5\x47\xff\xe5\ \x57\x30\x63\x69\x1c\x83\x46\x4c\x8c\x6e\x7f\x06\x3b\x1e\xbb\x03\ \x3d\x8f\xdd\x81\xfe\xd5\x0f\x41\xef\x35\x0a\x78\xbc\x96\xe9\x73\ \xd0\x36\x7f\x31\xa6\x1f\x75\x3a\x0e\x3a\xe9\x2c\x94\xda\xa7\x79\ \x5c\xa9\x01\xad\x31\xb0\xfe\x31\xf4\xac\xb8\x0d\x3b\x56\xdc\x8e\ \xe1\xae\xb5\xfb\xff\x59\xa5\xd0\x3c\x75\xd6\xce\xde\x09\xcf\x7f\ \x05\xa6\x1f\x79\x8a\xd7\x2d\x0c\x13\xf5\xb1\x51\xec\x78\xe2\x0f\ \xe8\x7e\xf8\x77\xe8\x5b\x75\x3f\x2a\x07\x1a\xf7\xab\x0a\x98\xfc\ \xbc\xa3\xd0\x71\xec\x4b\xd0\xb1\xec\xc5\x68\x9b\xb7\xd8\xdf\x42\ \x0d\x8d\x76\x6f\xc6\xd6\x7b\x7f\x81\x81\xd5\x0f\x63\xb8\x73\xcd\ \x01\x0b\xe4\x0a\x4d\x2d\x98\x76\xe4\x29\x98\xb6\xf8\x44\xb4\xce\ \x3c\x14\x4d\xed\xf1\x67\xdd\xf6\xb6\xed\xe1\x5f\xa3\xf3\x0e\xeb\ \xb1\xc6\x3f\xd6\x5a\xc7\xd9\x6b\x99\x9e\x85\x01\x40\x42\x94\x52\ \x57\x03\x78\x93\xcd\xb5\x8b\xdf\xfa\x71\xcc\x39\xdd\xbe\x2f\x7c\ \x0c\x74\xbd\x86\xca\xc0\x0e\x54\x06\xba\x31\xd6\xdf\x8d\xea\x50\ \x1f\x54\xb1\x88\xe6\xe9\xb3\xd1\x36\x6f\xb1\xd7\xfd\x62\x97\x74\ \xad\x82\xb1\xbe\x6e\x8c\xf5\x6f\x47\xa5\x7f\x3b\x6a\xe5\x11\x34\ \x4f\x9b\x85\x96\x8e\x79\x68\x9e\x3e\x47\xd4\xce\x37\xa4\xfa\xd8\ \x28\xca\x3b\xba\x50\xee\xe9\x42\x65\xb0\x07\xc5\xb6\xa9\x68\x9e\ \x3a\x13\xcd\x53\x67\xa1\x69\x4a\x47\x94\xc7\xdf\x26\xa2\x32\xd0\ \x83\xe1\xce\xd5\xa8\x0c\xf4\x40\x6b\x8d\xa6\xc9\xd3\xd1\x34\x65\ \x26\x9a\xa7\xce\xdc\xb9\xcd\xa6\x0a\x18\xeb\xd9\x8e\xb1\x9e\x78\ \x8b\x6f\x0f\xa4\xf3\x8e\x2b\xb0\xed\xe1\x5f\xdb\x5e\xfe\x65\xad\ \xf5\x3f\xb8\x5c\x0f\x65\x27\xce\xaf\x12\xb4\x3f\x82\xb1\xc0\x69\ \x7e\x18\x8d\xa7\x0a\x45\x34\x4f\x9b\x85\xe6\x69\xb3\xd0\x1e\x7a\ \x31\x0e\xa9\x62\x13\x5a\x3a\xe6\xa2\xa5\x23\x8e\x94\xbe\x2b\x85\ \xe6\x49\x68\x9d\xb3\x28\x78\xb3\x1d\xd7\x9a\xa6\x74\x60\xda\x73\ \x9c\xee\x38\x50\xa6\x2a\x76\x3c\x02\xd8\x38\xc2\x6f\xb6\x91\x89\ \x5c\x1e\x05\x24\xca\x1b\x5d\xad\x84\x5e\x82\x35\x36\x01\x6a\x1c\ \x0c\x00\xd2\x22\xc8\x00\xc4\xd7\x0e\x98\x28\xaf\xea\x55\x66\x00\ \x28\x7e\x0c\x00\xd2\xc2\x0c\x00\x51\x02\x74\xc2\x01\x80\x70\x0e\ \x00\x33\x00\x09\x61\x00\x90\x96\x86\xae\x01\x20\x4a\x82\xd6\xc9\ \xd6\x00\xd4\xca\x43\xa8\x57\xc7\x24\xb7\x60\x00\x90\x10\x06\x00\ \x69\xb1\xfe\xc7\x55\x19\xea\x4d\xf6\x43\x89\x28\x25\x29\xff\x3b\ \x3b\xe0\xd1\xcd\xe7\xd6\xa3\xb5\x1e\x75\xb5\x16\xca\x1e\x03\x80\ \x84\x68\xad\x07\x00\x0c\x58\x5e\x1c\xe5\x58\x60\xa2\xbc\x49\x7b\ \xff\x5f\x54\x00\xc8\xfd\xff\xc4\x30\x00\x48\x0f\xeb\x00\x88\x22\ \x96\x72\x06\x80\xfb\xff\x8d\x85\x01\x40\x7a\x78\x12\x80\x28\x62\ \x29\x17\x00\x32\x03\xd0\x58\x18\x00\xa4\x87\x19\x00\xa2\x88\x25\ \xdd\x03\x60\x90\x3d\x00\x1a\x09\x03\x80\xf4\xf0\x24\x00\x51\xc4\ \xd2\xae\x01\x60\x0f\x80\x46\xc2\x00\x20\x3d\xcc\x00\x10\x45\x2c\ \xe5\x1a\x00\x76\x01\x6c\x2c\x0c\x00\xd2\xc3\x1a\x00\xa2\x88\xa5\ \x5c\x03\x20\x2c\x02\x64\x06\x20\x31\x0c\x00\xd2\xc3\x0c\x00\x51\ \xc4\x52\xad\x01\xd0\xba\x8e\xea\x70\xbf\xe4\x16\xcc\x00\x24\x86\ \x01\x40\x7a\x58\x03\x40\x14\x29\x5d\xaf\x43\xd7\xeb\xa1\x97\x61\ \xa5\x3a\xdc\x0f\xad\xad\xd7\x5e\x05\xb0\xc5\xe1\x72\xc8\x03\x06\ \x00\xe9\xe9\x04\xa0\x6d\x2e\xac\x95\x87\x51\x2b\x0f\x3b\x5e\x0e\ \x11\xed\xd6\xc0\xfb\xff\x5d\x5a\x10\x3d\x50\x18\x0c\x00\x12\xa3\ \xb5\xae\x00\xb0\xfe\x2a\x5f\xde\xd1\xe5\x70\x35\x44\x34\x5e\xca\ \xfb\xff\x95\x81\x6e\xc9\xe5\x4c\xff\x27\x88\x01\x40\x9a\xac\xb7\ \x01\x86\x36\xad\x74\xb9\x0e\x22\x1a\x27\xe5\x00\x60\x74\xfb\x46\ \xc9\xe5\x2c\x00\x4c\x10\x03\x80\x34\xad\xb2\xbd\x70\x70\xe3\x13\ \x2e\xd7\x41\x44\xe3\xd4\x13\x2d\x00\x04\x80\xe1\xad\xeb\x24\x97\ \x5b\x7f\x26\x51\x38\x0c\x00\xd2\xf4\x80\xed\x85\x83\x1b\x18\x00\ \x10\x65\x25\xe5\x1a\x80\x91\x6d\xeb\x25\x97\x5b\x7f\x26\x51\x38\ \x0c\x00\xd2\x64\xfd\x8f\x6d\xf8\x99\x55\xc9\x56\x29\x13\xc5\x2e\ \xd5\x2d\x80\xca\x50\x2f\xaa\xc3\x7d\x92\x5b\x30\x00\x48\x10\x03\ \x80\x34\x3d\x68\x7b\x61\x6d\x6c\x04\x23\x5b\xd6\xba\x5c\x0b\x11\ \xed\x92\x6a\x0f\x80\x11\x59\xfa\xbf\x17\xc0\x1a\x37\x2b\x21\x9f\ \x18\x00\x24\x48\x6b\xbd\x03\x82\x7f\x70\x7d\x2b\xef\x73\xb8\x1a\ \x22\xda\x2d\xd5\x2d\x80\xc1\x4d\x8f\x4b\x2e\x7f\x50\x6b\x6d\x75\ \x34\x99\xc2\x62\x00\x90\x2e\xeb\x94\x5b\xd7\x5d\x3f\x77\xb9\x0e\ \x22\xda\x25\xc5\x41\x40\xba\x56\xc1\x8e\x27\xef\x92\xdc\x82\xe9\ \xff\x44\x31\x00\x48\x97\xf5\x3f\xba\x91\x2d\xeb\xd0\xbf\xe6\x61\ \x97\x6b\x21\x6a\x78\xba\x56\x03\x12\xfc\x22\xdc\xfb\xf4\x7d\xa8\ \x95\x87\x24\xb7\x60\x00\x90\x28\x06\x00\xe9\x12\xfd\xa3\xdb\x72\ \xe7\x35\xae\xd6\x41\x44\x48\x77\xff\xbf\x67\xc5\x2d\xd2\x5b\x30\ \x00\x48\x14\x03\x80\x74\xdd\x0f\xc0\xfa\x13\xa7\x7b\xf9\xef\xa5\ \x83\x3f\x88\x68\x9c\x14\xd3\xff\xa3\x3d\xcf\x60\xa8\x53\x74\x84\ \x7f\x1b\x80\xd5\x8e\x96\x43\x9e\x31\x00\x48\x94\xd6\xba\x17\xc0\ \x75\xb6\xd7\xd7\xab\x15\x74\xdd\xf1\x53\x87\x2b\x22\x6a\x6c\xf5\ \xf2\x68\xe8\x25\x18\xdb\xfe\xf0\x4d\xd2\x5b\xfc\x90\x05\x80\xe9\ \x62\x00\x90\xb6\x6f\x49\x2e\xde\xf4\x9b\xcb\x31\xda\xcd\x0e\x9e\ \x44\x2e\xa4\x16\x00\x0c\x75\xae\x42\xcf\xe3\xb7\x4b\x6f\xf3\x6d\ \x17\x6b\xa1\x30\x18\x00\xa4\xed\xb7\x10\x1c\x07\xac\x57\xca\x58\ \x73\xd5\x25\x0e\x97\x43\xd4\xb8\x6a\xe5\x91\xd0\x4b\x98\x30\x5d\ \xab\xe2\x99\x9b\x2f\x87\xe5\x60\xd1\xdd\x6e\xd6\x5a\x73\xb8\x48\ \xc2\x18\x00\x24\x6c\x57\xea\x4d\x14\x81\xf7\x3e\x75\x2f\xb6\xdd\ \xf7\x4b\x47\x2b\x22\x6a\x4c\xba\x56\x4d\xaa\x0b\xe0\xd6\x07\x6f\ \xc4\x68\x8f\x78\x80\x9f\x28\x03\x49\xe1\x31\x00\x48\xdf\xf7\x21\ \x28\x06\x04\x80\x75\x3f\xff\x1a\x2a\x43\xbd\x8e\x96\x43\xd4\x78\ \x6a\xa3\xe9\x7c\xfb\x2f\xef\xe8\xc2\xd6\xfb\xaf\x97\xde\x66\x1b\ \x00\x1e\x25\x4a\x1c\x03\x80\xc4\x69\xad\xb7\x02\x10\x75\xf6\xa9\ \x0c\xf5\x62\xd5\x0f\x2f\x86\xae\xa5\x79\x8c\x89\x28\xb4\x6a\xbf\ \xa8\x8f\xbe\x37\xb5\xf2\x30\xd6\xff\xfa\x3f\x5d\x74\x2c\xbc\x5c\ \x6b\x3d\xe6\x62\x4d\x14\x0e\x03\x80\x7c\x10\xa7\xe2\x7a\x9f\xba\ \x17\x2b\x7f\xf8\x49\x0e\x0a\x22\x32\xa4\xab\x55\x54\x87\x07\x43\ \x2f\xe3\x39\xd5\xab\x63\x58\xf7\x8b\x4b\x31\xba\x7d\xa3\xf4\x56\ \xe2\xad\x47\x8a\x03\x03\x80\x7c\xf8\x3d\x04\x03\x82\x76\xeb\x5e\ \xfe\x7b\xac\xb9\xea\x0b\x0e\x96\x43\xd4\x38\x2a\xfd\xbd\xd1\x77\ \x00\xd4\xf5\x1a\xd6\xdf\xf8\x1f\xd2\x33\xff\xbb\xfd\x5c\x6b\xfd\ \xb4\x8b\x1b\x51\x58\x0c\x00\x72\x60\x57\x31\xe0\x5f\x00\xa8\x49\ \xef\xb5\xe5\xee\xeb\xb0\xee\xba\x7f\x97\x2f\x8a\xa8\x41\x54\xfa\ \x77\x84\x5e\xc2\x81\x69\x8d\x8d\xbf\xf9\x36\x06\x36\x3c\xea\xe2\ \x6e\x03\x00\x3e\xe8\xe2\x46\x14\x1e\x03\x80\x9c\xd0\x5a\x3f\x08\ \xe0\xab\x2e\xee\xb5\xf9\xf7\xff\x8b\xd5\x57\x5d\x82\x7a\x85\x5b\ \x7c\x44\x07\x52\x1d\xe8\x8b\xba\xfa\xbf\x56\x1e\xc6\xba\x1b\xff\ \x1d\xbd\xab\xee\x75\x75\xcb\x8f\x6b\xad\x37\xb9\xba\x19\x85\xa5\ \xd8\xc4\x29\x3f\x94\x52\x6d\x00\x56\x00\x38\xd4\xc5\xfd\xda\x17\ \x1c\x89\x25\xef\xf9\x37\x4c\x9a\xb5\xd0\xc5\xed\x88\x72\x45\xd7\ \x6a\x18\xde\xb0\x26\xda\x11\xc0\xc3\x5b\xd7\x62\xc3\xaf\x2e\xc3\ \x58\xff\x36\x57\xb7\xfc\x03\x80\x33\xb4\xd6\x2c\x14\xca\x09\x06\ \x00\x39\xa3\x94\x7a\x15\x00\x71\x7f\xcf\xdd\x8a\x2d\x6d\x58\xfc\ \xb6\x8b\x30\xeb\x84\x33\x5d\xdd\x92\x28\x17\xca\x5b\x3b\x77\xee\ \xff\x47\x68\xfb\xf2\xdf\xa0\xf3\xae\xab\x5c\x06\x27\x15\x00\x27\ \x68\xad\x1f\x73\x75\x43\x0a\x8f\x01\x40\x0e\x29\xa5\x7e\x08\xe0\ \x02\x97\xf7\x9c\x7d\xea\xeb\x71\xf0\x6b\xff\x12\xcd\xd3\x0e\x72\ \x79\x5b\xa2\x24\xd5\x46\x86\x31\xf2\xcc\xfa\xd0\xcb\x78\x96\xf2\ \x8e\x2e\x74\xde\x75\x15\xfa\xd7\x3e\xe4\xfa\xd6\x9f\xd1\x5a\x5f\ \xec\xfa\xa6\x14\x16\x03\x80\x1c\x52\x4a\xcd\x02\xf0\x04\x80\x59\ \x2e\xef\x5b\x28\x35\x61\xf6\x69\x6f\xc0\xc2\x57\xbd\x8b\x81\x00\ \x35\x2c\x5d\xaf\x63\x64\xe3\xda\xa8\x6a\x64\xca\x3b\xba\xb0\xe5\ \xfe\xeb\xd0\xb7\xf2\x1e\x64\x90\xa1\x7f\x0a\xc0\xf1\x5a\xeb\xb2\ \xeb\x1b\x53\x58\x0c\x00\x72\x4a\x29\x75\x36\x76\x36\x08\x2a\xba\ \xbe\xf7\xee\x40\x60\xc1\x2b\x2f\x40\xcb\xf4\x39\xae\x6f\x4f\x14\ \x2f\xad\x31\xb2\x79\x03\x6a\x23\xc3\xa1\x57\x02\x00\x28\xef\xe8\ \xc4\x96\xfb\xaf\xcf\xea\xc5\x0f\x00\x43\x00\x5e\xa6\xb5\xbe\x3f\ \x8b\x9b\x53\x58\x0c\x00\x72\x4c\x29\xf5\x2e\xec\x6c\x15\xac\x32\ \x7a\x00\x26\x2f\x5c\x82\xe9\x4b\x5f\x88\x19\x47\x9f\x8e\x29\x87\ \x1c\x03\x28\x1e\x2c\xa1\xfc\x1a\xed\xdc\x84\xea\xd0\x40\xb0\xe7\ \xeb\x7a\x0d\x43\x9b\x57\x62\x60\xfd\x23\x18\x58\xff\x88\x8b\x7e\ \xfe\x07\x32\x06\xe0\x6c\xad\xf5\x6f\xb2\x7c\x08\x85\xc3\x00\x20\ \xe7\x94\x52\x1f\x01\xf0\x15\x1f\xcf\x2a\xb5\x4f\xc3\xf4\x25\xa7\ \xa2\x6d\xfe\x62\x34\x4f\xe9\x40\xd3\x94\x99\x68\x9e\x3a\x13\x4d\ \x53\x3a\xd0\x34\x79\x06\x54\xb1\xe4\x63\x19\x44\x99\xf0\x55\xf4\ \xa7\x6b\x55\x54\x87\xfb\x50\x19\xe9\x47\x75\xa8\x0f\xd5\xe1\x3e\ \x54\x87\xfb\x31\xbc\x6d\x1d\x06\x37\x3d\x8e\xfa\x98\x97\xb1\xc3\ \x75\x00\x6f\xd5\x5a\x5f\xed\xe3\x61\x14\x06\x03\x80\x06\xa0\x94\ \xfa\x2c\x80\x8b\x42\xaf\x83\x88\x92\xf1\x17\x5a\xeb\xef\x86\x5e\ \x04\x65\x8b\xf9\xda\x06\xa0\xb5\xfe\x17\x00\x97\x85\x5e\x07\x11\ \x25\xe1\x9f\xf8\xf2\x6f\x0c\xcc\x00\x34\x08\xa5\x54\x01\xc0\xff\ \x02\x78\x5b\xe8\xb5\x10\x51\xb4\xbe\xa8\xb5\xfe\xa7\xd0\x8b\x20\ \x3f\x98\x01\x68\x10\xbb\xba\x77\xfd\x19\x00\x46\xf6\x44\xb4\xb7\ \x3a\x76\x9e\xf5\xe7\xcb\xbf\x81\x30\x03\xd0\x80\x94\x52\xef\x04\ \xf0\x4d\x00\x93\x43\xaf\x85\x88\x82\xdb\x0a\xe0\x7c\x56\xfb\x37\ \x1e\x06\x00\x0d\x4a\x29\xb5\x04\xc0\x55\x00\x8e\x0b\xbd\x16\x22\ \x0a\xe6\x16\x00\xef\xd0\x5a\x77\x86\x5e\x08\xf9\xc7\x2d\x80\x06\ \xa5\xb5\x7e\x0a\xc0\xa9\x00\xbe\x1d\x7a\x2d\x44\xe4\x5d\x1d\xc0\ \xbf\x02\x38\x93\x2f\xff\xc6\xc5\x0c\x00\x41\x29\xf5\x36\xec\x0c\ \x04\xa6\x84\x5e\x0b\x11\x65\x6e\x0b\x80\x77\x6a\xad\x7f\x17\x7a\ \x21\x14\x16\x33\x00\x04\xad\xf5\x15\x00\x8e\x07\xf0\x03\x00\xb5\ \xc0\xcb\x21\xa2\x6c\x8c\x02\xf8\x1a\x80\xe3\xf8\xf2\x27\x80\x19\ \x00\xda\x8b\x52\xea\x70\x00\xff\x02\xe0\x7c\x64\x30\x47\x80\x88\ \xbc\x1b\x05\xf0\x2d\x00\x97\x30\xdd\x4f\xe3\x31\x00\xa0\x7d\x62\ \x20\x40\x94\x3c\xbe\xf8\xe9\x80\x18\x00\xd0\x01\x8d\x0b\x04\xde\ \x0e\xa0\x39\xf0\x72\x88\xe8\xb9\x0d\x61\x67\xbf\x0f\xbe\xf8\xe9\ \x80\x18\x00\xd0\x84\x28\xa5\xda\x01\x9c\x09\xe0\x35\xbb\xfe\x77\ \x48\xd8\x15\x11\xd1\x38\x4f\x02\xf8\x25\x80\x1b\x01\xdc\xae\xb5\ \x2e\x07\x5e\x0f\x25\x80\x01\x00\x59\x51\x4a\x2d\xc5\xce\x40\xe0\ \xb5\x00\xce\x00\xb3\x03\x44\x3e\x0d\x03\xb8\x19\x3b\x5f\xf8\xbf\ \xd4\x5a\xaf\x0d\xbc\x1e\x4a\x10\x03\x00\x12\x53\xea\xff\x8f\x91\ \x87\x01\x72\xa0\x90\x04\x14\x4b\x22\xb1\x61\x7c\x31\x06\x06\x06\ \xd6\x81\x72\xe3\x28\x18\x05\x43\x08\xfc\x64\x60\x60\x78\x81\x05\ \x3f\x47\xa2\x2f\x8e\xf6\xf2\x47\x01\xa5\x00\x00\x17\x2e\xbf\xa8\ \x2b\x79\x87\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \ \x00\x00\xa8\xdb\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\x0f\x00\x00\x0e\x0f\ \x01\xc6\x0a\xee\xe9\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xec\xdd\x77\x98\xd4\x54\xf7\xc0\xf1\x6f\xb6\xd0\ \x8b\x22\x30\x1b\x16\x5c\xb1\x60\xef\x40\x04\x7b\xf7\x05\x0b\x44\ \xc4\xde\xbb\xd8\x7b\x7b\xed\x62\xef\x62\xc5\xd7\x9f\x05\xbb\x01\ \x14\x1b\x36\x54\x44\x02\x8a\x05\x45\xb0\xe1\x88\x43\x36\xb0\xf4\ \x85\xed\x93\xdf\x1f\x99\x55\xc4\xad\x93\x9b\x32\x33\xf7\xf3\x3c\ \xfb\xa8\xcb\xe4\xe4\x20\xcb\xdc\x33\x37\xf7\x9e\xab\x38\x8e\x83\ \x24\x65\x23\x55\xd3\x9f\x44\x51\xf6\xca\xab\xad\x19\x94\xf8\xf2\ \x8d\xb2\xb0\xf3\x91\x24\x49\x8a\x92\xbc\xb0\x13\x90\x24\x3f\xa8\ \xbb\x0c\x3b\x04\x38\x0d\xc7\xd9\x34\x99\x5f\xb0\xa0\xb8\xff\x88\ \x21\x61\xe7\x24\x49\x92\x14\x25\x8a\x9c\x01\x90\xb2\x4d\x71\xff\ \x43\xbb\x27\xf3\x0b\xfe\x04\xda\xfe\xfd\x5d\x05\xc5\x71\x1e\x5d\ \x38\xc3\x38\x27\xb4\xc4\x24\x49\x92\x22\x44\x16\x00\x52\xd6\x51\ \x07\xea\x3f\xa1\xb0\x59\x43\xbf\xe6\x38\xca\x8f\xed\x3b\x76\x19\ \x3c\xff\xe3\xa7\x97\x07\x9d\x97\x24\x49\x52\x94\xc8\x47\x00\x52\ \x56\x51\x35\xfd\xf1\xc6\x06\x7f\x00\x45\x71\xb6\xac\x5a\xb3\x62\ \x61\xcf\x5d\x46\xec\x1f\x64\x5e\x92\x24\x49\x51\x23\x67\x00\xa4\ \xac\xd1\x6b\x90\x3e\xd4\x49\x2a\x93\xa0\x45\x3f\xd3\x0e\x8e\xf3\ \x80\x35\x63\xfc\x45\x7e\xe7\x25\x35\xae\xb7\xa6\x6f\x96\x84\x1b\ \x1b\x7d\x81\xe2\x24\x16\x4e\x1f\x7f\x59\x80\x29\x49\x52\xce\x90\ \x05\x80\x94\x15\xfa\x0c\x1e\xd9\xad\xb6\xae\x76\x21\xff\x78\xee\ \xdf\x02\x0e\xb3\x37\x58\x53\x30\xf8\xfb\xef\x5f\x29\xf7\x27\x33\ \xa9\x29\xbd\x07\x0e\x3f\xb2\x4e\x51\x5e\x6a\xec\xd7\x1d\x85\x95\ \xa5\xd3\x8d\xae\xe9\xc4\x56\x35\x7d\x02\xb0\x18\x98\x0a\xbc\x63\ \x99\xc6\xa2\x34\xd3\x94\xa4\xac\x54\x10\x76\x02\x92\x24\x42\x6d\ \x5d\xed\x17\xb4\x76\xf0\x07\x50\xd8\x76\x49\xc7\x5a\xbb\x68\xe0\ \x88\x21\xa5\x33\x5e\xfb\x44\x7c\x66\x92\x17\x8a\x43\xb5\x87\xcb\ \x0f\xc1\x7d\xcc\x79\x1a\x80\xaa\xe9\xb5\xc0\x52\xe0\x77\xe0\x3b\ \xe0\x53\xe0\x3d\x59\x18\x48\xb9\x4a\x16\x00\x52\xc6\xeb\xb5\xcb\ \xe1\x8f\x01\xfd\x3c\x84\xe8\x80\x92\xfc\xb8\x97\x76\xf8\x9d\x0b\ \xcd\xd7\xaf\x14\x95\x97\x24\x44\x65\x3a\x17\xa9\x9a\xde\x89\x7f\ \xaf\x71\x2a\x00\x7a\xa6\xbe\x06\xf2\xef\xc2\x60\x3e\xf0\x2d\xf0\ \x92\x65\x1a\x1f\xa7\x9b\xb0\x24\x65\x0a\xb9\x08\x50\xca\x68\xc5\ \xfd\x47\x0c\x71\x1c\xce\xf4\x1a\x47\x01\xc5\xc1\xb9\xa2\x68\xe0\ \xf0\x59\x4a\xff\x33\x3b\x88\xc8\x4d\x12\x62\x4d\x9a\xd7\x6d\xd3\ \x8a\xd7\xd6\x17\x06\x1a\x70\x06\x70\x6d\x9a\xf7\x94\xa4\x8c\x22\ \x0b\x00\x29\x63\xf5\x19\x3c\xb2\x5b\x32\x3f\xf9\x7a\x0b\x17\xfd\ \xb5\x88\xa2\x28\x3b\x16\xe5\x97\xd9\xc5\xfd\x47\xee\x22\x2c\xa8\ \x94\x36\xc5\x09\xa4\x00\x58\xd7\x6c\x0f\xd7\x4a\x52\xc6\x90\x05\ \x80\x94\xb1\xea\xea\xea\xbe\x00\xda\x89\x8f\xec\x74\x4a\xe6\xd7\ \x4e\x2b\xd2\xf4\xc6\x57\xa7\x4b\x81\x48\xe6\x29\xe9\x2e\xce\xdc\ \xd4\xc3\x6d\xbf\xf0\x70\xad\x24\x65\x0c\xb9\x06\x40\xca\x48\xbd\ \x06\xea\x77\x3a\x8a\xa7\xe7\xfe\xcd\x51\x14\xb8\x4e\xd5\x0e\x3f\ \xb0\xb4\xc3\xd2\xbd\x9c\x8f\x3f\x4e\xeb\x59\xb4\xe4\x8d\xe2\x24\ \x57\xa6\x79\x69\x5f\x0f\xb7\x4d\xeb\xf9\xbf\xaa\xe9\x3b\x00\x33\ \x80\x79\xc0\x44\xe0\x21\xcb\x34\x6c\x0f\x79\x48\x92\xaf\xe4\x0c\ \x80\x94\x91\x92\x55\xab\xef\x76\xdc\xd5\xdc\x3e\x73\xb4\x58\xc5\ \xfa\x76\x9f\xc1\x23\x77\xf6\xff\x5e\xd2\xbf\x38\xa4\x5b\x00\x14\ \xa7\x79\x5d\x9d\x87\x5d\x01\xc3\x81\x42\xdc\xc7\x0f\xd7\x00\xa5\ \xaa\xa6\x2f\x53\x35\xfd\x3d\x55\xd3\x8f\x56\x35\x5d\xbe\xdf\x4a\ \x91\x22\x7f\x20\xa5\x8c\x54\xfa\xed\x7b\x8b\x4a\x4d\xa3\xaf\xa2\ \x38\xcf\xfb\x7d\x2f\xc5\xa1\x4b\x6d\x5d\xed\x8c\x5e\xda\x88\xab\ \xfd\xbe\x97\xf4\x4f\x0a\xa4\xdb\xb2\xb9\x67\x9a\xd7\xa5\x5b\x70\ \x00\xec\xd1\xc0\xf7\xd6\x03\x0e\x00\x5e\x00\x6a\x54\x4d\xff\x4d\ \xd5\xf4\x47\x55\x4d\xf7\xb2\x46\x41\x92\x84\x90\x05\x80\x94\xd1\ \x16\x4e\x1f\x7f\x7c\x5e\x32\xef\x18\xa0\xc6\xe7\x5b\xe5\x39\x24\ \x6f\x2d\xd2\xf4\xa9\xca\xc8\x91\x6d\x7c\xbe\x97\x94\x92\xcc\x53\ \x96\xa5\x79\xe9\xfa\x69\x5e\xb7\x30\xcd\xeb\x00\xb6\x6c\xe6\xd7\ \xf3\x70\x1f\x4d\x9c\x05\xcc\x56\x35\x7d\x8d\xaa\xe9\x5f\xa8\x9a\ \x7e\xa1\xaa\xe9\x72\xe7\x89\x14\x38\x59\x00\x48\x19\x2f\x31\xf3\ \xb5\x17\xab\x95\xca\xbe\x38\x4a\xc2\xef\x7b\x29\xb0\x6b\xd1\xef\ \xb5\x76\x8f\xfe\x87\xef\xe0\xf7\xbd\x24\xc0\x61\x49\x9a\x57\x76\ \x4a\xf3\xba\x9f\xd3\xbc\x0e\xa0\x7b\x2b\x5f\xdf\x1e\xd8\x05\xb8\ \x0f\xbc\x6f\x65\x95\xa4\xd6\x92\x05\x80\x94\x15\x96\x4c\x7f\x3b\ \x61\xcd\x78\xbd\xb7\xa3\x38\xe3\x7d\xbf\x99\xc2\x7a\x05\xf9\xce\ \x57\x45\x03\x87\x5f\xea\xfb\xbd\x72\x9c\xe2\x28\x65\x69\x5e\x9a\ \xee\x2c\xcd\xac\x74\x2e\x52\x35\x7d\x3b\x20\x3f\xcd\x7b\x3a\xc0\ \xa3\x69\x5e\x2b\x49\x69\x93\x05\x80\x94\x55\x4a\xa7\x8f\xd7\x9d\ \xbc\xe4\xa9\xe0\xd4\xfa\x7c\xab\x3c\x45\x51\xee\x52\xb5\xe1\x1f\ \x2b\xca\x8d\x72\x37\x8d\x4f\xf2\x92\xca\xe2\xd6\x5e\x93\x9a\x4e\ \x4f\xf7\xbd\x6d\x6a\x9a\xd7\xe9\x69\x5e\x07\xb0\xc0\x32\x0d\xb9\ \xcb\x44\x0a\x9c\x2c\x00\xa4\xac\x53\xfa\xc5\x84\xff\x15\xe4\x17\ \x6e\x01\x04\xd0\xe3\x5d\xd9\x4b\xd5\xbe\xb1\x8b\x76\xd5\xb7\xf2\ \xff\x5e\xb9\x27\xaf\x4d\x5e\x3a\xdb\xe8\xb6\xf5\x70\xcb\xcf\xd3\ \xbc\xae\xa1\x05\x80\x2d\xf5\xa6\x87\x6b\x25\x29\x6d\xb2\x00\x90\ \xb2\xd2\x82\x69\xaf\xfc\x5a\x3a\x63\xbc\xea\x38\xbc\xe7\xf7\xbd\ \x1c\x47\xe9\xa6\xd4\x32\xbb\xd7\xc0\xc3\xcf\xf3\xfb\x5e\xb9\x66\ \x4d\xb2\xbc\x34\x8d\xcb\xb6\x4e\xf3\x76\x55\x96\x69\xa4\x7b\xf8\ \x50\x73\x0b\x00\x9b\x72\x8f\x87\x6b\x25\x29\x6d\xb2\x00\x90\xb2\ \x96\xe3\x38\xc9\xd2\x19\xc6\x41\x8a\xa3\x9c\x0f\x24\x7d\xbe\x5d\ \x9e\xa3\x38\x0f\x16\x69\x87\x4f\x56\x14\x45\xfe\xbd\x6a\xa9\xbc\ \xbc\xdf\x1c\x98\xd3\xd8\xd7\x52\x53\x4b\x67\x06\x60\xb3\x34\xb3\ \x59\x9a\xe6\x75\x00\x3d\xd2\xbc\x6e\xb9\x65\x1a\xf3\x3d\xdc\x57\ \x92\xd2\x26\x9f\x5d\x4a\x59\x43\xd5\xf4\x6e\xc0\x20\x60\x00\xb0\ \x15\xb0\x09\xa0\xa2\xb0\x3e\xa0\x04\x91\x83\x82\xb3\x7f\xd1\xc0\ \xe1\x76\x71\xff\x43\x77\x4d\x7c\xf9\xc6\x4f\x41\xdc\x33\x93\xfd\ \x39\xfd\xf5\x99\xa4\xff\x89\xbd\x31\xd3\x71\x4f\xf5\xdb\x10\xe8\ \x4a\xcb\x3f\xe8\xfc\x91\xce\xcd\x52\x7b\xfa\xd3\x5d\x00\xf8\x59\ \x9a\xd7\xd5\xdf\x7b\x04\xee\x23\x8f\x9b\x2d\xd3\xf0\x7b\xdd\x8b\ \x94\x65\x64\x01\x20\x65\x1c\x55\xd3\x63\xc0\x30\x60\x6f\x60\x7b\ \xa0\x17\xee\xb6\xaf\xa8\x7c\xf2\xee\x9e\xcc\x2f\x98\x13\x1b\x38\ \x6c\x94\x3d\x63\xc2\xe3\x61\x27\x93\x6b\x2c\xd3\x98\x88\xdb\x8a\ \x17\xf8\xab\x45\xef\x7f\x70\x8b\xc3\xad\x70\x7f\x5e\xda\x37\x70\ \xe9\x9c\x34\x6f\x79\x78\x9a\xd7\x01\x3c\xec\xe1\x5a\x80\xfb\x71\ \xbb\x1e\x5e\xa5\x6a\xfa\xdb\xc0\x79\x96\x69\x2c\xf0\x18\x53\xca\ \x11\x8a\xe3\x88\x3b\x49\x4d\x92\x44\x53\x35\x7d\x67\xe0\x10\x60\ \x57\x60\x0b\x20\x86\xdb\x6e\x35\x33\x28\x4c\x2a\x35\xc7\x1f\xe6\ \x38\x8e\xdf\x8f\x20\xa4\x56\x50\x35\xbd\x0d\xb0\x1f\xb0\x3f\xd0\ \x1f\xf7\xf0\xa0\x4b\x2c\xd3\x78\x21\x8d\x58\x1f\x02\xfb\xa4\x91\ \x46\xb5\x65\x1a\x6d\xd3\xb8\xae\xfe\xbe\x7b\x00\x9f\xac\xf3\x6d\ \x07\xf8\x01\xb8\xd2\x32\x8d\xb7\xd2\x8d\x2d\xe5\x06\x59\x00\x48\ \x91\x91\x9a\xc2\x3f\x0e\x38\x14\xf7\x93\x7d\x37\xa2\xf3\xa9\xde\ \x03\xc5\x6e\xd3\xa6\x6a\x50\xfc\xb3\x49\xf2\x59\x6f\x16\x52\x35\ \xdd\x02\x8a\xd2\xb8\xf4\x4b\xcb\x34\x06\x78\xb8\xef\xd7\x40\x53\ \x0d\xa9\xca\x80\xab\x2d\xd3\x78\x32\xdd\x7b\x48\xd9\x4d\x16\x00\ \x52\x68\x54\x4d\xef\x0b\x9c\x04\x1c\x88\x3b\x35\xdb\x39\xd4\x84\ \xfc\x55\x4b\xd2\x39\xc3\x9a\x39\xfe\xe9\xb0\x13\x91\xc4\x52\x35\ \xbd\x96\xf4\xd6\x00\x5c\x60\x99\xc6\x83\x69\xde\xb3\x0f\x10\xa7\ \x65\x6b\x5b\x16\x03\x17\xa6\x33\xbb\x21\x65\x37\x59\x00\x48\x81\ \x51\x35\x7d\x13\xe0\x02\xdc\xe9\xd2\x4d\x80\x76\xe1\x66\x14\x2c\ \xc5\x61\xc9\xc2\x19\x46\x6b\xdb\xc5\x4a\x11\xa6\x6a\xfa\x56\xb8\ \x53\xee\xad\xe5\x00\x1d\xd2\x6d\x00\xa4\x6a\xfa\x1b\xb8\x8f\xc6\ \x5a\x63\x21\x30\xca\x32\x8d\x09\xe9\xdc\x53\xca\x3e\x72\x11\xa0\ \xe4\x2b\x55\xd3\x75\xe0\x0c\xdc\x05\x58\x5d\x42\x4e\x27\x4c\xc9\ \x9a\xa4\xb2\x5f\xd8\x49\x48\xc2\xcd\x05\x8e\x00\x8e\xc7\xfd\x19\ \x6f\xe9\x76\xc0\xb8\x87\xc1\xbf\x1d\xee\xa2\xc6\xd6\xea\x05\x8c\ \x57\x35\xfd\x0f\x40\xb7\x4c\xe3\xab\x74\xee\x2f\x65\x0f\x59\x00\ \x48\x42\xa5\x9e\xe3\x9f\x0f\x8c\x00\x36\x47\xfe\x8c\x01\xe0\x38\ \xce\x15\x8b\xbf\x34\xbe\x09\x3b\x0f\x49\x2c\xcb\x34\x92\xc0\x6b\ \xa9\xaf\xfa\x36\xc4\x27\x03\x23\x71\x17\x17\x36\x76\xca\x9f\x97\ \xee\x7f\xb7\xe3\xed\xef\x55\x1f\xbc\x1d\x7b\x2c\x65\x09\xf9\x08\ \x40\xf2\x4c\xd5\xf4\x2d\x80\xeb\x80\x7d\x49\xff\x1c\xf6\x2c\xe6\ \x4c\xb1\xcc\xf1\x7b\x87\x9d\x85\x14\x3c\x55\xd3\x87\x02\x57\x03\ \x03\xf9\xe7\xa0\xbd\x91\x65\x1a\xf1\x34\x63\x96\x03\x1d\x3d\xa4\ \xf5\x92\x65\x1a\x47\x7b\xb8\x5e\xca\x12\xb2\x00\x90\xd2\x92\xda\ \x8b\x7f\x03\xee\x1e\xe8\x74\xbb\xa0\x65\x3d\x45\x71\x96\x5a\xe6\ \x0e\x31\xc7\xb9\x5e\x36\x69\xc9\x61\xaa\xa6\xe7\x01\xa3\x80\x73\ \x80\x2e\x96\x69\x14\xa7\x19\xe7\x2c\xbc\x9d\x1c\x58\x01\xac\xe7\ \xa1\xe5\xb1\x94\x45\x64\x01\x20\xb5\x98\xaa\xe9\x9d\x80\x2b\x71\ \x9f\x77\x6e\x18\x72\x3a\x99\x20\xe9\x14\xb0\x6d\xe9\xe7\x46\xba\ \x0d\x66\x24\xe9\x1f\x54\x4d\x4f\xe0\x3e\xcb\x4f\xd7\xb9\x96\x69\ \x8c\x11\x95\x8f\x94\xd9\xe4\xf3\x59\xa9\x49\xa9\x4f\x2e\xe7\x02\ \x67\xe1\x36\xe2\x09\xa4\xa5\x6e\x56\x70\xb8\x48\x0e\xfe\x92\x28\ \xa9\xc6\x3f\x5e\x06\xff\xdf\xe5\xe0\x2f\xad\x4d\x16\x00\x52\x83\ \x54\x4d\xdf\x11\xf7\x94\xb2\x3d\x48\xbf\xcf\x79\xce\x72\x50\xde\ \x2f\x9d\xf1\x7a\x5a\x7b\xbc\x25\xa9\x11\x0f\x78\xb8\xd6\xc1\x5d\ \x98\x2b\x49\x7f\x91\x8f\x00\xa4\xbf\xa4\x3e\xed\x5f\x86\xbb\x8a\ \xdf\xcb\x27\x8d\x5c\x57\x56\x3a\x63\x7c\x4c\xb6\xff\x95\x44\x69\ \x65\xe3\x9f\x86\xbc\x67\x99\xc6\x41\x02\x53\x92\xb2\x80\x9c\x01\ \x90\x50\x35\xbd\x1f\x70\x2f\x70\x00\x99\xd4\x67\x3f\x9a\xea\xf2\ \xea\x6a\x77\x95\x83\xbf\x24\xd8\x6d\xa4\x3f\xf8\xd7\xe0\xe1\xd3\ \xbf\xaa\xe9\x5d\x80\xdf\x81\xbb\x2c\xd3\xb8\x2d\xdd\x38\x52\xf4\ \xc8\x02\x20\x87\xa9\x9a\x7e\x0e\xee\x27\xfe\x8d\x42\x4e\x25\x48\ \x0e\x50\x89\xbb\x1a\xba\x1c\xf7\x24\x35\x61\x8f\x38\x92\x4e\x72\ \x94\x25\x8f\x01\x96\xc4\x3b\x01\xf8\x0e\xb8\x10\x50\x5b\x79\xed\ \x68\xcb\x34\xca\x3d\xdc\xfb\x55\x60\x7d\x60\xb4\xaa\xe9\x27\x00\ \xfb\x59\xa6\x91\xf0\x10\x4f\x8a\x08\xf9\x08\x20\xc7\xa4\x4e\x41\ \xbb\x13\xb7\x3b\x5f\x43\x47\xa2\x66\x83\x1a\x60\x05\x60\x03\xf3\ \x81\x1f\x81\xaf\x80\x69\x6b\x1f\x95\xaa\xee\x32\x7c\x26\x8e\xd2\ \x5f\xd8\x5d\x15\x26\x59\xd3\x8d\xd6\xb6\x67\x95\xa4\x56\x51\x35\ \x5d\xc3\x5d\x9f\x33\x88\xe6\x0f\xcb\x5a\x64\x99\x46\xcc\xc3\xbd\ \x06\x00\x33\xd6\xf9\x76\x2d\x70\x9d\x9c\x0d\xc8\x7c\xb2\x00\xc8\ \x11\xa9\x2d\x7c\x8f\x00\x47\x91\x3d\xd3\xfc\x35\xb8\x83\xfc\x3c\ \xe0\x73\xe0\x3d\x60\x86\x65\x1a\xcd\xee\xb9\x2f\xda\x45\x1f\xad\ \x38\x5c\x25\x2e\x15\xc5\x2e\x9d\x61\xf4\x92\x53\xff\x52\x50\x52\ \x7f\xa7\xef\xc1\xed\x3c\xd8\xd8\xdf\xe9\xfd\x2c\xd3\xf8\xd0\xc3\ \x3d\xe2\x34\xbe\xe5\x77\x2e\x72\x36\x20\xa3\xc9\x02\x20\xcb\xa5\ \x1a\xf6\x3c\x01\x0c\x25\xb3\x57\xf3\x97\x03\x0b\x80\x6f\x81\x29\ \xc0\x04\xcb\x34\xec\x74\x02\x15\x69\x87\xee\x01\x05\x53\x14\x71\ \x5b\x1a\x6b\xdb\xb4\xa9\xee\x27\x8f\xfb\x95\xc2\x90\x3a\x1b\xe0\ \x71\xe0\x18\xfe\xf9\x58\x77\xba\x65\x1a\x83\x3c\xc4\x3d\x0f\x68\ \x6e\x27\x8b\x9c\x0d\xc8\x60\xb2\x00\xc8\x52\xa9\x93\xf7\x9e\xc2\ \xdd\xc6\x97\x69\x7b\xf7\x1d\xdc\x23\x4c\xbf\x02\x26\x02\xe3\x3c\ \x3e\xc3\xfc\xcb\x36\xdb\x8c\xec\xb4\xa4\x63\x4d\x29\x28\x5e\x5a\ \xa9\xfe\x53\xd2\x39\x45\x1e\xf3\x2b\x85\x2d\x35\x23\xf0\x3f\xdc\ \xee\x9c\x0e\xd0\xcb\x32\x8d\x45\x69\xc6\x6a\x83\xfb\x18\xad\xa5\ \x27\x76\xca\xd9\x80\x0c\x24\x0b\x80\x2c\x93\x3a\x9e\xf4\x59\x60\ \xe7\xb0\x73\x69\x85\x3a\x20\x01\x4c\xc7\x5d\x70\x34\xa1\x25\xd3\ \xf8\xe9\x50\x77\x19\x3e\x1b\x47\xd9\x46\x54\x3c\x47\x71\xc6\x97\ \x4e\x1f\xaf\x8b\x8a\x27\x49\x5e\xa5\x0e\xe4\xda\xdd\x32\x8d\x89\ \x1e\x62\xbc\x8c\x7b\xa0\x51\x6b\xc8\xd9\x80\x0c\x23\x0b\x80\x2c\ \xa1\x6a\xba\x0a\xbc\x04\xec\x4e\x66\x7c\xe2\x2f\x03\x3e\x06\x1e\ \xb5\x4c\xe3\xe3\x20\x6e\x58\x34\xf0\xf0\xfb\x15\xc5\xb9\x40\x58\ \x40\x85\x85\xd6\xf4\xf4\x7a\xba\x4b\x52\x54\xa9\x9a\xbe\x19\xee\ \xba\x9a\x74\xdf\x47\xe4\x6c\x40\x86\x90\xdb\x00\x33\x5c\x6a\x8f\ \xee\x33\xc0\xa1\x34\xbf\x22\x38\x4c\x75\xc0\xcf\xc0\x78\xe0\xfe\ \x74\xa7\x26\xd3\xd5\x5b\xd3\x0f\x50\x14\xce\x17\x18\xb2\xa6\xaa\ \xb6\x60\x17\x81\xf1\x24\x29\x2a\x26\xe0\xed\x43\xc4\xe6\xb8\x47\ \x0e\xcb\x02\x20\xe2\x64\x01\x90\xa1\x54\x4d\x2f\xc0\x3d\x15\xec\ \x24\xa2\xfb\xe7\xb8\x1a\x30\x81\xa7\x2c\xd3\x78\x21\xac\x24\xfa\ \x0c\x1e\xd9\xad\xce\x61\x22\x8a\xb8\x99\x91\xbc\x3c\xe5\xa4\xa5\ \xe6\x2b\x0b\x9a\x7f\xa5\x24\x65\x0e\x55\xd3\x8f\x06\xb6\xf2\x18\ \xe6\x29\xcb\x34\xa6\x8b\xc8\x47\xf2\x57\x54\x07\x0e\xa9\x09\xaa\ \xa6\xdf\x0c\x5c\x4a\xcb\x17\xe8\x04\xa9\x0e\xf8\x02\xf7\x59\x60\ \x20\x53\xfb\xcd\xa9\xad\xad\x9d\x8e\x22\xf0\xff\x95\xa3\xbc\x9c\ \xf8\xe2\xf5\xd0\x0a\x1a\x49\xf2\xd1\x63\x1e\xaf\xb7\x2c\xd3\x38\ \x5d\x48\x26\x92\xef\x64\x01\x90\x41\x54\x4d\x3f\x05\xb8\x1f\xe8\ \x1c\x76\x2e\x0d\xf8\x03\x77\x2b\xd2\x9d\x7e\x2d\xe0\x4b\x87\x3a\ \x70\xf8\x58\x14\x65\x33\x61\x01\x15\xe7\x0f\xcb\x34\x8e\x12\x16\ \x4f\x92\x22\x42\xd5\xf4\x47\x81\x2e\x1e\x42\x24\x81\x7d\x04\xa5\ \x23\x05\x40\x16\x00\x19\x20\xd5\xab\xff\x4d\xa0\x5f\xd8\xb9\xac\ \xa3\x02\x98\x04\x5c\x65\x99\xc6\xaf\x61\x27\xb3\xae\xa2\x01\xfa\ \x30\x25\x4f\x39\x55\x54\x3c\x05\x6a\x6a\x0a\x92\xf2\xb9\xbf\x94\ \x75\x52\xfd\x42\xce\xf0\x18\xe6\x0e\xcb\x34\xe6\x8a\xc8\x47\x0a\ \x86\x2c\x00\x22\x2c\xf5\x9c\xff\xff\x70\x1b\x7c\x44\x65\x65\xbf\ \x83\xdb\x93\xfc\x56\xcb\x34\x5e\x0d\x3b\x99\xc6\xf4\xdc\x7b\x64\ \x2c\x3f\x8f\x97\x45\xc6\xac\x83\x63\x17\x4f\x9d\x68\x89\x8c\x29\ \x49\x11\x71\x03\xde\x16\x11\xff\x62\x99\xc6\xd5\x82\x72\x91\x02\ \x12\xe5\x55\xe3\x39\x4d\xd5\xf4\x13\x81\xe5\xc0\xb1\x44\x63\xf0\ \x5f\x8c\xdb\x76\xb4\x8b\x65\x1a\x3b\x44\x79\xf0\x07\x28\x58\x53\ \x6b\x02\x6d\x44\xc5\x73\x50\x9e\xb5\x23\xfe\x7b\x96\xa4\x74\x59\ \xa6\x71\x36\x70\x13\xee\x1a\x9e\xd6\xaa\x05\xf6\x12\x9a\x90\x14\ \x08\xd9\x07\x20\x62\x52\x1d\xfc\xde\x04\xb6\x0c\x3b\x17\xdc\x5e\ \xfb\x53\x70\xa7\xf8\xbf\x0a\x39\x97\x16\x53\x07\x0e\x7f\x11\x45\ \x11\xf6\x9c\xde\x51\x98\x5f\x3a\xdd\xd8\x58\x54\x3c\x49\x8a\x2a\ \x55\xd3\x8b\x81\xc9\xb4\x6e\x27\xc0\xc5\x96\x69\xdc\xe7\x53\x4a\ \x92\x8f\x64\x01\x10\x11\xaa\xa6\xe7\xe1\x4e\xf7\x1f\x47\xf8\x9f\ \xf8\x7f\xc1\xdd\xab\x3f\x26\xe4\x3c\x5a\xad\x78\xd0\xe1\xc7\x24\ \x93\xce\x38\x81\x21\xab\x9c\xca\xd5\x1b\x96\x7e\xfb\x5e\xa0\x7d\ \x0b\x24\x29\x4c\xaa\xa6\x8f\x02\xee\xa5\xf9\x59\xb4\xaf\x2d\xd3\ \xd8\x49\xc0\xfd\xba\x59\xa6\xb1\xd4\x6b\x1c\xa9\x75\xe4\x23\x80\ \x08\x50\x35\x7d\x4f\x60\x29\x70\x3c\xe1\x0e\xfe\xdf\x02\x3b\x5a\ \xa6\xb1\x59\x26\x0e\xfe\x00\xc9\xa4\xf3\x88\xd0\x80\x4e\xde\x91\ \x72\xf0\x97\x72\x4d\xea\xef\x7f\x0c\x77\x4b\x6f\x63\xaa\x10\xb0\ \xea\x5f\xd5\xf4\xd3\x81\xc5\xaa\xa6\xdf\xeb\x35\x96\xd4\x3a\x72\ \x06\x20\x64\xaa\xa6\x3f\x4f\xf8\x8b\xfc\xbe\x03\x4e\xb2\x4c\xe3\ \xeb\x10\x73\x10\xa2\xb8\xff\xa1\xfd\x92\x05\x05\x53\x71\xe8\x21\ \x20\xdc\x58\xb9\xa7\x59\xca\x75\xaa\xa6\x1f\x89\x7b\xc8\x50\x87\ \x75\x7e\xe9\x78\xcb\x34\x9e\xf7\x18\x7b\x6f\xe0\x03\xfe\xfe\x30\ \x3a\x13\xd8\xcd\x32\x8d\x6a\x2f\x71\xa5\x96\x91\x05\x40\x48\x54\ \x4d\xdf\x19\x78\x17\xe8\x1e\x62\x1a\xdf\xe3\x0e\xfc\x19\xf3\x7c\ \xbf\x25\x14\x45\xc9\x2b\x1a\x38\x7c\x12\xf0\x9f\xb4\x83\x38\xfc\ \x6c\xcd\x30\xa2\xb6\xed\x52\x92\x42\x91\x3a\x1d\x70\x3c\x30\x24\ \xf5\xad\x29\x96\x69\xec\xed\x31\xe6\x26\xc0\x1c\xfe\xfd\x98\x61\ \x29\xb0\x65\xd0\xed\xc2\x73\x91\x7c\x04\x10\x82\x54\xc3\x8d\x99\ \x84\x37\xf8\xff\x00\xec\x62\x99\xc6\xb6\xd9\x36\xf8\x03\x38\x8e\ \x93\xb4\x4c\x63\x48\x5e\x52\x39\x9b\xf4\x56\x35\x57\x16\x14\xc8\ \x3e\xff\x92\x54\xcf\x32\x8d\x6a\xcb\x34\x86\x02\xfb\x01\xb3\xf1\ \x52\x5c\xf3\xd7\x19\x26\xb3\x68\x78\x8d\x41\x37\xe0\x17\x55\xd3\ \xfb\x78\xb9\x87\xd4\x3c\x39\x03\x10\x20\x55\xd3\xb7\x00\x3e\x04\ \x7a\x85\x94\xc2\x1c\xe0\xd4\x5c\xea\xd3\xdd\x5b\xd3\x37\xab\xc3\ \xf9\x1c\x94\x96\x3e\x12\x70\xf2\x92\x75\x43\x12\x33\x27\xbe\xeb\ \x6b\x62\x92\x94\xa3\x52\x0b\x9e\xe7\x03\x1b\x36\xf3\xd2\xd5\xc0\ \xf6\x51\x6c\x32\x96\x2d\xe4\x0c\x40\x40\x54\x4d\xbf\x1d\xf7\x93\ \x77\x18\x83\xff\x5c\x60\x57\xcb\x34\xb6\xce\xa5\xc1\x1f\xe0\x4f\ \xd3\xf8\xb9\x74\xc6\x84\x22\xe0\xad\x96\xbc\xde\x41\x79\x44\x0e\ \xfe\x92\xe4\xab\xa9\x34\x3f\xf8\x03\x74\xc4\xfd\xc0\x24\xf9\x44\ \xce\x00\xf8\x2c\x35\xd5\xf5\x05\xde\x4f\xd8\x4a\xc7\x4f\xb8\x9f\ \xf8\xa7\x86\x70\xef\xc8\x89\x0d\x1c\x76\x66\x9e\x92\x37\x06\xc8\ \x6f\xe8\xd7\x1d\x98\x53\x6a\x1a\x5b\x07\x9c\x96\x24\xe5\x0c\x55\ \xd3\x9f\x01\x4e\x68\xc5\x25\x0e\x70\x8e\x65\x1a\x5e\x0f\x29\x92\ \x1a\x20\x67\x00\x7c\x94\x5a\xe1\x5a\x4a\xf0\x83\xff\xcf\xc0\x5e\ \x96\x69\x6c\x2e\x07\xff\xbf\xd9\x33\x26\x3c\x5e\x90\x5f\xb0\x39\ \x60\xaf\xfb\x6b\x0e\x54\xb4\xef\xd0\x75\xd7\x10\xd2\x92\xa4\x9c\ \xa0\x6a\xfa\xd5\xb4\x6e\xf0\x07\x77\x77\xd4\xa3\xa9\x6b\x25\xc1\ \xe4\x0c\x80\x4f\x54\x4d\xbf\x0b\xb8\x84\x60\xb7\xf7\x2d\x00\x4e\ \x8c\xca\x31\xbc\x51\xa5\x28\x4a\x5e\x91\x36\x7c\x22\x0e\x07\xa7\ \xbe\xe5\xd4\xe5\xd7\xed\xbf\x68\xda\x44\x39\xdd\x28\x49\x3e\x50\ \x35\x7d\x04\xf0\x0a\xde\xde\x0f\xef\xb1\x4c\xe3\x52\x41\x29\x49\ \xc8\x02\x40\x38\x55\xd3\x3b\xe1\x3e\xe3\xda\x3e\xc0\xdb\xd6\xe1\ \x1e\xce\x73\x7d\x80\xf7\xcc\x78\x31\x4d\x3f\x3d\x0f\xe7\x11\x50\ \x1e\xb2\x4c\xe3\xe2\xb0\xf3\x91\xa4\x6c\x94\xda\xf2\x6c\xd2\xc8\ \xa3\xb7\x56\x7a\xda\x32\x8d\x53\x04\xc4\x91\x90\x05\x80\x50\xaa\ \xa6\xef\x86\xbb\xb7\xbf\x63\x80\xb7\xfd\x16\x38\xd0\x32\x8d\x7f\ \x4d\x6b\x4b\xcd\xeb\x33\x78\x64\xb7\x05\xd3\x5e\x91\x2d\x48\x25\ \xc9\x07\xa9\x63\x86\xe7\x03\xed\x05\x86\x9d\x68\x99\xc6\x30\x81\ \xf1\x72\x96\x2c\x00\x04\x51\x35\xfd\x16\xe0\x6a\x82\x9b\xf2\xaf\ \x04\xce\xb3\x4c\x63\x6c\x40\xf7\x93\x24\x49\x6a\x15\x55\xd3\x2d\ \xa0\xc8\x87\xd0\x9f\x5a\xa6\xb1\xa7\x0f\x71\x73\x8a\x2c\x00\x3c\ \x4a\xed\x69\x9d\x0a\x0c\x0a\xf0\xb6\x1f\x02\x87\x5a\xa6\xb1\x26\ \xc0\x7b\x4a\x92\x24\xb5\x8a\xaa\xe9\x67\x02\x8d\xee\xbc\xf1\xe8\ \x5b\xcb\x34\x76\xf0\x21\x6e\xce\x90\x05\x80\x07\xaa\xa6\x77\xc7\ \x9d\x82\x0f\x6a\x6f\xff\x0a\xe0\x28\xcb\x34\xe4\x3e\x75\x49\x92\ \x32\x82\xaa\xe9\xdb\xe0\x7e\x48\xea\xea\x43\xf8\x59\x96\x69\xec\ \xec\x43\xdc\x9c\x20\xb7\x01\xa6\x49\xd5\xf4\x1d\x80\xdf\x09\x66\ \xf0\x77\x80\xe7\x81\x6e\x72\xf0\x97\x24\x29\x93\x58\xa6\xf1\x3d\ \xee\x63\x80\x9f\x7c\x08\xbf\x93\xaa\xe9\x9f\xfa\x10\x37\x27\xc8\ \x19\x80\x34\xa4\x4e\xc7\x1a\x87\x3f\xd3\x5a\xeb\x5a\x08\x0c\xb5\ \x4c\xe3\x9b\x00\xee\x25\x49\x92\xe4\x8b\xd4\xe3\xd2\x59\xf8\xb3\ \x43\xea\xed\xd4\x59\x05\x52\x2b\xc8\x02\xa0\x95\x52\x8b\xfd\xae\ \x09\xe0\x56\x75\xc0\x5d\x96\x69\x5c\x15\xc0\xbd\x24\x49\x92\x02\ \xa1\x6a\xfa\x17\x80\x1f\x87\x6d\xbd\x6c\x99\xc6\x51\x3e\xc4\xcd\ \x5a\xf2\x11\x40\x2b\xa8\x9a\xfe\x06\xc1\x0c\xfe\x73\x80\x12\x39\ \xf8\x4b\x92\x94\x85\x6e\xf7\x29\xee\x91\xaa\xa6\x3f\xe9\x53\xec\ \xac\x24\x67\x00\x5a\x40\xd5\xf4\x0e\xc0\x57\xc0\x16\x3e\xdf\xaa\ \x1a\xb8\xc8\x32\x8d\x47\x7c\xbe\x8f\x24\x49\x52\x68\x54\x4d\xff\ \x2f\x70\x93\x4f\xe1\x65\xc7\xc0\x16\x92\x05\x40\x33\x54\x4d\xef\ \x89\xfb\x89\x7c\x03\x9f\x6f\xf5\x13\x30\xc8\x32\x0d\xd9\x94\x46\ \x6a\xb1\x78\xc2\x6e\x0f\x74\x01\x3a\xa7\xbe\xd6\xfe\xf7\x86\xbe\ \x9a\xfa\xf5\x42\x60\x55\x13\x5f\x2b\x9b\xf9\xf5\xb5\x5f\xb3\xb2\ \xa4\x38\x26\xdf\x5c\xa4\x46\xa9\x9a\x7e\x3e\x70\x3f\xfe\xf4\x4e\ \xb9\xc1\x32\x8d\x1b\x7d\x88\x9b\x55\x64\x01\xd0\x04\x55\xd3\x4b\ \x80\xd9\xb8\x6f\x8e\x7e\x7a\xdc\x32\x8d\xb3\x7c\xbe\x87\x94\xa1\ \xe2\x09\xbb\x00\xd8\x18\xd8\x3c\xf5\xd5\x6f\xad\x7f\x8f\x85\x98\ \x5a\x53\x2a\x70\x0f\xa5\x9a\xb7\xd6\xd7\x4f\xc0\xbc\x92\xe2\xd8\ \x8a\x30\x13\x93\xa2\x43\xd5\xf4\x93\x81\xa7\xf0\xa7\x08\xb8\xc0\ \x32\x8d\x07\x7d\x88\x9b\x35\x64\x01\xd0\x88\xd4\xde\xd5\x99\x40\ \x3b\x1f\x6f\x53\x05\x1c\x6e\x99\x46\x8b\xce\xaa\x97\xb2\x5b\x3c\ \x61\xf7\xe4\xef\x81\x7d\xed\x81\x7e\x63\xdc\x4f\xe7\xd9\xc2\x66\ \x9d\xa2\x20\xf5\xf5\x5b\x49\x71\xac\x36\xcc\xc4\xa4\xe0\xa9\x9a\ \xae\x03\xaf\x22\x7e\x4d\x9a\x03\x0c\x91\x5b\xa7\x1b\x27\x0b\x80\ \x06\xa8\x9a\x3e\x18\x98\x82\xbf\x6f\xba\xbf\xe0\x4e\xf9\x97\xf9\ \x78\x0f\x29\x82\xe2\x09\xbb\x2f\xb0\x33\xff\x1e\xec\xd7\x0b\x33\ \xaf\x08\xa8\x01\x7e\xe3\x9f\x45\xc1\x0f\xc0\x97\x25\xc5\xb1\x9a\ \x30\x13\x93\xfc\xa5\x6a\xfa\xfe\xc0\x3b\x88\xdf\x5a\x5d\x03\x6c\ \x63\x99\x86\x1f\x3d\x08\x32\x9e\x2c\x00\xd6\xa1\x6a\xfa\x10\xe0\ \x0d\xfc\xdd\xe3\xff\x94\x65\x1a\xa7\xf9\x18\x5f\x8a\x90\x78\xc2\ \x56\x81\x7d\xd6\xfa\xda\x28\xd4\x84\x32\xcf\x6a\xdc\x4e\x72\x1f\ \xa5\xbe\x66\x95\x14\xc7\x92\xe1\xa6\x24\x89\xa6\x6a\xfa\x2e\xc0\ \xa7\x88\xff\xe0\xb5\x0a\xe8\x6d\x99\xc6\x4a\xc1\x71\x33\x9e\x2c\ \x00\xd6\xa2\x6a\xfa\x31\xc0\x73\xf8\xb7\x3d\xb2\x1a\x18\x69\x99\ \xc6\x44\x9f\xe2\x4b\x11\x10\x4f\xd8\x1b\x00\x7b\xf1\xf7\x80\xef\ \xf7\xee\x91\x5c\xb3\x1c\xf8\x84\xbf\x0b\x82\x1f\xe4\x82\xc3\xec\ \x90\xea\xb0\x3a\x03\xf1\x45\xc0\x1f\x40\x5f\xcb\x34\x64\xe1\xb8\ \x16\x59\x00\xa4\xa8\x9a\x3e\x0a\x78\x08\xff\x4e\xf3\x5b\x02\xec\ \x68\x99\xc6\x02\x9f\xe2\x4b\x21\x89\x27\xec\x2e\xc0\xee\xfc\x3d\ \xe0\x6f\x4f\x70\xa7\x42\x4a\xb0\x08\xf8\x98\x54\x41\x50\x52\x1c\ \xfb\x25\xe4\x7c\x24\x0f\x52\x33\x01\x9f\x01\x05\x82\x43\x7f\x6e\ \x99\xc6\x6e\x82\x63\x66\x34\x59\x00\x00\xaa\xa6\x5f\x81\x7f\xcd\ \x29\x00\xbe\x07\x06\x58\xa6\x51\xe9\xe3\x3d\xa4\x80\xa4\xb6\xde\ \xed\xca\xdf\x03\x7e\x7f\x82\x69\x0b\x2d\xb5\xcc\x02\xfe\x59\x10\ \xc8\xa2\x3b\xc3\xa4\xd6\x04\xbc\x8b\xf8\xd9\x58\xf9\xf8\x75\x2d\ \x39\x5f\x00\xa8\x9a\x7e\x1e\xe0\xe7\x56\x91\x57\x2d\xd3\x18\xe9\ \x63\x7c\x29\x00\xf1\x84\xdd\x0d\x38\x12\x18\x89\x7b\xf4\x73\xdb\ \x70\x33\x92\x5a\xe1\x17\x60\x12\xf0\x6c\x49\x71\xec\xeb\xb0\x93\ \x91\x5a\x46\xd5\xf4\x61\x80\x81\xf8\xd9\xb4\x8b\x2d\xd3\xb8\x4f\ \x70\xcc\x8c\x94\xd3\x05\x80\xcf\x7b\x50\x1d\xe0\x5a\xcb\x34\x46\ \xfb\x10\x5b\x0a\x40\x3c\x61\x17\x02\x43\x81\xe3\x81\x83\x81\x36\ \xe1\x66\x24\x09\xf0\x03\xf0\x2c\x30\xae\xa4\x38\x96\x08\x3b\x19\ \xa9\x69\xaa\xa6\x1f\x0f\x3c\x83\xd8\xf7\x68\x07\x38\xc8\x32\x8d\ \xc9\x02\x63\x66\xa4\x9c\x2d\x00\x54\x4d\x3f\x02\x78\x19\x7f\x06\ \xff\x1a\x60\xb8\xdc\xdf\x9f\x99\xe2\x09\x7b\x20\x70\x02\x70\x14\ \xfe\x77\x80\x94\xc2\x91\x04\x3e\xc4\x2d\x06\xc6\x97\x14\xc7\x56\ \x87\x9c\x8f\xd4\x08\x55\xd3\xcf\x01\xc6\x08\x0e\x5b\x85\xbb\x33\ \x20\xa7\xb7\x61\xe7\x64\x01\x90\xda\xea\xf7\x26\xfe\xac\xf6\x5f\ \x01\x0c\x94\xfb\x4e\x33\x4b\x3c\x61\x6f\x88\xfb\x49\xff\x78\xdc\ \x7d\xf9\x52\xee\x28\xc7\x9d\x6a\x7e\x16\xf8\x58\x6e\x31\x8c\x1e\ \x9f\xd6\x69\xcd\xb7\x4c\x63\x63\xc1\x31\x33\x4a\xce\x15\x00\xaa\ \xa6\xef\x81\xbb\x38\xc8\x8f\x45\x5b\x16\xb0\x85\xdc\x6f\x9a\x19\ \xe2\x09\xbb\x33\x30\x02\xf7\xd3\xfe\x9e\xc8\x95\xfb\x12\xfc\x09\ \x3c\x0f\x3c\x57\x52\x1c\x9b\x13\x76\x32\xd2\xdf\x54\x4d\xbf\x0b\ \x10\x7d\xc8\xcf\x8b\x96\x69\x1c\x23\x38\x66\xc6\xc8\xa9\x02\x40\ \xd5\xf4\x01\xc0\x34\xc4\x6f\x2f\x01\xf8\x15\xd8\xca\x32\x8d\x6a\ \x1f\x62\x4b\x82\xc4\x13\x76\x3e\xb0\x3f\xee\x27\xfd\xe1\x40\xfb\ \x70\x33\x92\x22\xec\x2b\xdc\x59\x81\x17\x4b\x8a\x63\x8b\xc3\x4e\ \x46\x02\x55\xd3\x27\xe1\xae\xcb\x11\xe9\x78\xcb\x34\x9e\x17\x1c\ \x33\x23\xe4\x4c\x01\x90\xea\xed\xff\x15\xfe\x2c\xe4\xfa\x06\xd8\ \x59\x36\x99\x88\xae\x78\xc2\xee\x03\x9c\x0f\x1c\x0b\xa8\x21\xa7\ \x23\x65\x96\x5a\xdc\x36\xb5\x8f\x96\x14\xc7\xde\x09\x3b\x99\x5c\ \xa7\x6a\xfa\x5c\xc4\x3e\xa6\xab\x05\xfa\x59\xa6\x31\x5f\x60\xcc\ \x8c\x90\x13\x05\x40\x9f\xc1\x23\x37\xa9\xad\xab\xf9\x14\x14\x15\ \xf1\xd3\xbc\x9f\x58\xa6\xb1\x97\xe0\x98\x92\x20\xf1\x84\xbd\x29\ \x70\x25\xee\x34\x7f\x36\x1d\xa8\x23\x85\x63\x16\x30\x1a\x30\x64\ \xf7\xc1\x70\xa8\x9a\xde\x0e\x48\x00\xdd\x04\x86\xb5\x81\x5e\xb9\ \xf6\x21\xce\xaf\x96\xb7\x91\xd1\xad\xff\xc8\x3e\xb5\x75\x35\xdf\ \x82\xd2\x4b\x71\x57\xe7\x8b\xfc\x03\x1e\x2f\x07\xff\x68\x8a\x27\ \xec\xad\xe3\x09\x7b\x1c\x30\x17\x38\x15\x39\xf8\x4b\x62\xec\x04\ \xbc\x06\x7c\x1f\x4f\xd8\xc7\xa5\x1e\x29\x49\x01\x4a\x35\x54\xdb\ \x09\x77\x25\xbf\x28\x31\xdc\x59\x9e\x9c\x92\xd5\x33\x00\x45\xdb\ \x1f\xd8\x33\xaf\x5d\xa7\x5f\x1c\x9c\xce\x6b\x7d\xbb\x2e\xf5\xe5\ \xf5\x51\xc0\x58\xcb\x34\x4e\xf7\x18\x43\x12\x2c\x9e\xb0\xfb\x03\ \xd7\x00\x87\x21\x17\xf5\x49\xfe\xfb\x0d\x77\x75\xfa\x33\x25\xc5\ \x31\xb9\xfe\x27\x40\xa9\x05\xdd\x1f\x23\xf6\x83\xec\x45\x96\x69\ \xdc\x2f\x30\x5e\xa4\x65\x6d\x01\xa0\x8c\x1c\xd9\x46\xfd\xa3\xc6\ \x72\x1c\xa5\xa1\x69\x22\x07\xa8\x00\x3a\xa4\x19\xfe\x0e\xcb\x34\ \xae\x4c\x3f\x3b\x49\xb4\x78\xc2\xde\x1d\x77\xe0\x3f\x30\xec\x5c\ \xa4\x9c\x94\x00\xee\x02\x9e\x2c\x29\x8e\xad\x09\x3b\x99\x5c\xa1\ \x6a\xfa\x99\xc0\x63\x02\x43\x26\x71\x77\x72\xfd\x2c\x30\x66\x64\ \x65\xed\x23\x80\xa2\xdf\x6b\xa7\x36\x32\xf8\x83\xfb\xc9\xb0\x03\ \xee\x9e\xfd\xd6\xba\x5b\x0e\xfe\xd1\x11\x4f\xd8\x07\xc4\x13\xf6\ \xa7\xb8\xc7\x88\xca\xc1\x5f\x0a\x4b\x31\x70\x3f\xf0\x7b\x3c\x61\ \x5f\x99\x3a\x20\x4a\xf2\x99\x65\x1a\x8f\x03\x0f\x0b\x0c\x99\x87\ \xbb\x4d\x3c\x27\x64\xe5\x0c\x80\xaa\xe9\xf7\x02\x17\xb5\xf0\xe5\ \xcb\x81\xf5\x5a\xf8\xda\x87\x2d\xd3\x38\x2f\xbd\xac\x24\x51\xe2\ \x09\x5b\xc1\x9d\xe2\xbf\x06\xf7\x20\x1e\x49\x8a\x9a\xe5\xb8\xa7\ \x8b\x3e\x50\x52\x1c\x5b\x12\x76\x32\xd9\x4e\xd5\xf4\xaf\x70\xd7\ \x05\x88\x32\xc6\x32\x8d\x73\x05\xc6\x8b\xa4\xac\x2b\x00\xfa\x0c\ \x1e\xd9\xad\xb6\xae\x76\x31\xad\x99\xdd\x70\x58\x85\x42\xe7\x66\ \x5e\x25\x4f\x91\x0a\x59\x6a\xc1\xd5\x48\xe0\x6a\x60\x9b\x90\xd3\ \x91\xa4\x96\x28\xc7\x9d\xa2\xbe\xa7\xa4\x38\x56\x1a\x76\x32\xd9\ \x4a\xd5\xf4\x0e\x40\x29\x34\xfb\x3e\xde\x52\x0e\xee\x09\xae\x5f\ \x09\x8a\x17\x49\x59\x57\x00\x00\xc4\x34\xfd\xf4\x3c\xf7\x2f\x5d\ \x6b\x1e\x71\x54\xe2\x9e\xf0\xd6\xd0\xc2\xb1\x9c\xee\x16\x15\x05\ \xf1\x84\x7d\x28\x70\x37\xb0\x59\xd8\xb9\x48\x52\x1a\x2a\x71\xfb\ \xd9\xdf\x58\x52\x1c\x5b\x15\x76\x32\xd9\x28\xd5\xe8\x6d\x3a\xe2\ \x1e\x6d\x2f\x01\x7a\x66\xf3\xd6\xc0\xac\x5c\x03\x60\x9b\xc6\x93\ \xc9\x3a\x67\x3f\xa0\x35\xab\x72\xdb\x29\xee\xee\x80\xda\x75\xbe\ \x3f\x5e\x0e\xfe\xe1\x89\x27\xec\xbe\xf1\x84\xfd\x26\x30\x11\x39\ \xf8\x4b\x99\xab\x1d\x70\x09\x30\x37\x9e\xb0\x8f\x0c\x3b\x99\x6c\ \x64\x99\xc6\x4c\xdc\xd9\x41\x51\x36\x00\x5e\x10\x18\x2f\x72\xb2\ \x72\x06\xa0\x9e\xdb\x00\xa8\x76\x16\xd0\x9a\x05\x39\x0e\xee\xfe\ \xd2\x76\xc0\x3b\x96\x69\x0c\xf1\x25\x39\xa9\x49\xf1\x84\xdd\x16\ \xb8\x1c\xb8\x0a\xd9\xae\x57\xca\x3e\x1f\x00\xe7\x96\x14\xc7\xe6\ \x85\x9d\x48\xb6\x51\x35\xfd\x63\x60\x2f\x81\x21\x0f\xb0\x4c\xe3\ \x7d\x81\xf1\x22\x23\xab\x0b\x00\x80\xcd\x36\x1b\xd2\xa5\x7c\xfd\ \x76\xb3\x51\xd8\xb0\x55\x17\x3a\xca\x44\x6b\xc6\xeb\xc3\x7c\x4a\ \x4b\x6a\x42\x3c\x61\x1f\x80\xbb\xb2\x57\x7e\xe2\x97\xb2\x59\x35\ \xee\x63\xad\x5b\xe5\xd6\x41\x71\x54\x4d\x2f\xc0\x5d\x0f\x20\xea\ \x28\xef\x72\x60\x83\x6c\x3c\xe7\x25\xeb\x0b\x00\x00\x45\x51\xf2\ \xd4\x01\xfa\x54\x47\x71\x06\xb5\xf0\x92\xe9\x96\x69\xb4\xf4\xb5\ \x92\x20\xf1\x84\xdd\x1b\xb8\x0f\xf7\x84\x3e\x49\xca\x15\x71\xe0\ \x82\x92\xe2\xd8\xc4\xb0\x13\xc9\x16\xaa\xa6\xf7\x03\xe6\x20\xee\ \xd4\xd7\x0f\x2c\xd3\xd8\x5f\x50\xac\xc8\xc8\x89\x02\xa0\x5e\x91\ \x76\xf8\x33\x0a\xce\x09\x4d\xbf\xca\xf9\xd6\x32\xc7\xef\x10\x4c\ \x46\x12\x40\x3c\x61\x17\x00\x17\x02\xd7\x03\x9d\x42\x4e\x47\x92\ \xc2\x32\x09\x38\xbf\xa4\x38\x96\x73\x87\xd2\xf8\xc1\x87\x26\x41\ \x07\x5a\xa6\x31\x59\x60\xbc\xd0\xe5\x54\x01\x00\xd0\x4b\x1b\x71\ \xb5\x43\xf2\x16\x1a\x58\xed\xaf\xa0\xfc\x64\xcd\x30\xb6\x74\x1c\ \x27\x6b\x57\x7d\x46\x4d\x3c\x61\xef\x01\x3c\x02\x6c\x1d\x76\x2e\ \x92\x14\x01\x15\xc0\x6d\xc0\x9d\x25\xc5\x31\x91\xbd\xee\x73\x92\ \xaa\xe9\x9f\x03\x83\x05\x85\x5b\x6a\x99\x86\xa8\xc7\x0a\x91\x90\ \x95\xbb\x00\x9a\xb2\xd0\x7c\x6d\x74\x52\xc9\x1b\x89\xbb\xe2\x7f\ \x6d\x2b\xac\x0e\x4b\xb7\x97\x83\x7f\x30\xe2\x09\x3b\x16\x4f\xd8\ \xcf\x02\x9f\x20\x07\x7f\x49\xaa\xd7\x1e\xb8\x09\x98\x9d\x5a\x0b\ \x23\x79\x73\x20\x6e\x51\x25\x42\x37\x55\xd3\x1f\x14\x14\x2b\x12\ \x72\x6e\x06\xa0\x5e\x9f\xc1\x23\x77\xae\xa9\xab\xfd\x4c\x81\xf6\ \x38\xd4\x25\xf3\xea\x76\xb0\xa7\x4f\xfc\x3e\xec\xbc\xb2\x5d\xaa\ \x99\xcf\xd9\xc0\x2d\x40\xd7\x90\xd3\x91\xa4\xa8\x7b\x0d\xb8\xa8\ \xa4\x38\xf6\x67\xd8\x89\x64\x2a\x55\xd3\x75\xe0\x75\x41\xe1\x92\ \xc0\x86\x96\x69\x24\x04\xc5\x0b\x55\xce\xcd\x00\xd4\x5b\x30\xed\ \x95\xaf\x92\x1d\x0a\xfa\x2a\x50\x9a\x24\x39\x4a\x0e\xfe\xfe\x8b\ \x27\xec\x1d\x80\x99\xb8\x2d\x52\xe5\xe0\x2f\x49\xcd\x1b\x01\xfc\ \x18\x4f\xd8\x17\xa6\x5a\x60\x4b\xad\x64\x99\x86\x81\xb8\xa3\x7e\ \xf3\x80\xb7\x04\xc5\x0a\x5d\xce\xce\x00\x48\xc1\x8a\x27\xec\xb3\ \x70\x57\xf8\xb7\x0b\x3b\x17\x49\xca\x50\x6f\x03\x27\xc8\xb3\x05\ \x5a\x2f\xb5\x35\x70\x29\xe2\x5a\x05\x1f\x6b\x99\x46\xc6\x37\x09\ \xca\x98\x02\x40\xd5\xf4\x3c\xe0\x20\xcb\x34\xde\x0e\x3b\x17\xa9\ \xe5\x52\xa7\xa2\x3d\x89\xdb\xc3\x5f\x92\x24\x6f\xfe\x04\x8e\x2e\ \x29\x8e\x4d\x0d\x3b\x91\x4c\xa3\x6a\xfa\xbe\xb8\x0d\x98\x44\x58\ \x0d\xac\x67\x99\xc6\xba\x9d\x63\x33\x4a\x26\x3d\x02\x78\x01\x78\ \x4b\xd5\xf4\x57\xc2\x4e\x44\x6a\x99\x78\xc2\xde\x09\x98\x85\x1c\ \xfc\x25\x49\x94\xde\xc0\xc7\xa9\x23\x87\xe5\x23\x81\x56\xb0\x4c\ \xe3\x43\xe0\x25\x41\xe1\x3a\x02\xcf\x0a\x8a\x15\x9a\x8c\x98\x01\ \x50\x35\x7d\x0f\xdc\xd5\xe2\xf5\x12\xc0\x20\xcb\x34\x16\x84\x94\ \x92\xd4\x8c\x78\xc2\x1e\x05\xdc\x83\x7b\xc0\x92\x24\x49\xe2\xbd\ \x8b\xfb\x48\x60\x71\xd8\x89\x64\x12\x55\xd3\x97\x00\xdd\x04\x84\ \x72\x80\x6d\x2c\xd3\x98\x23\x20\x56\x28\x22\x3f\x03\x90\x9a\xfa\ \x9f\xb0\xce\xb7\x8b\x81\x5f\x55\x4d\x3f\x2e\x84\x94\xa4\x26\xc4\ \x13\x76\xd7\x78\xc2\x7e\x0d\xb7\x95\xaf\x1c\xfc\x25\xc9\x3f\x07\ \x01\xdf\xa4\x7a\x69\x48\x2d\x77\x94\xa0\x38\x0a\x90\xd1\x33\xd2\ \x91\x2f\x00\x70\xa7\xfe\xd7\x6f\xe0\xfb\x85\xc0\x73\xaa\xa6\xbf\ \x1a\x70\x3e\x52\x23\xe2\x09\xbb\x3f\xee\x94\xff\xe1\x61\xe7\x22\ \x49\x39\xa2\x17\xf0\x51\x3c\x61\x5f\x13\x4f\xd8\x99\xf0\x7e\x1e\ \xba\xd4\xc1\x3e\x9f\x09\x0a\xb7\xb5\xaa\xe9\x19\xdb\x22\x38\xd2\ \x3f\x30\xa9\xa9\xff\xe6\x8e\xce\x1c\xa1\x6a\x7a\x42\xd5\xf4\x3e\ \x41\xe4\x24\x35\x2c\x9e\xb0\xcf\x07\x3e\x07\x36\x0e\x3b\x17\x49\ \xca\x31\xf9\xb8\x7d\x35\xde\x8d\x27\xec\x9e\x61\x27\x93\x21\x0e\ \x05\x6a\x04\xc5\xfa\x9f\xa0\x38\x81\x8b\x6c\x01\xd0\xc8\xd4\x7f\ \x63\x7a\x01\xbf\xa9\x9a\x7e\xbc\x8f\x29\x49\x0d\x88\x27\xec\xf5\ \xe2\x09\xdb\x00\x1e\x00\xda\x84\x9d\x8f\x24\xe5\xb0\xfd\x71\x1f\ \x09\xec\x15\x76\x22\x51\x67\x99\xc6\x72\xe0\x66\x41\xe1\x7a\xab\ \x9a\x7e\xb2\xa0\x58\x81\x8a\xec\x22\x40\x55\xd3\x5f\xa2\xf9\x4f\ \xff\x0d\x31\x2c\xd3\x90\x53\xd0\x01\x88\x27\xec\x81\xc0\xcb\xc0\ \x46\x21\xa7\x92\x33\x4a\x17\x2f\x65\x65\x79\xe6\x9c\x1c\xab\x28\ \xd0\xab\x67\x77\x3a\x76\x90\xed\x1f\x02\x54\x87\xdb\x4e\xf8\x96\ \x92\xe2\x98\x6c\x6d\xde\x04\x55\xd3\xff\xc4\x5d\x53\xe6\xd5\x72\ \xcb\x34\x1a\x7a\x54\x1d\x69\x91\x2c\x00\x1a\x58\xf5\xdf\x5a\x0b\ \x81\xc1\x96\x69\xc4\x05\xa5\x24\xad\x23\x9e\xb0\x2f\x02\xee\xc0\ \x5d\x8b\x21\xf9\x68\xca\xf4\xaf\x31\xde\xfb\x8c\xb9\xbf\xfe\xc1\ \xca\xf2\xd5\x61\xa7\xd3\x6a\x8a\xa2\xd0\x47\xed\xc9\x76\x5b\x6c\ \xcc\xe9\x47\x1d\x42\xac\x7b\xc6\xbd\x4f\x66\xaa\x0f\x81\x63\x4b\ \x8a\x63\x76\xd8\x89\x44\x95\xaa\xe9\x03\x00\x93\x06\x0e\x87\x4b\ \xc3\x75\x96\x69\x88\x9a\x55\x08\x44\xe4\x0a\x80\xd4\xd4\x7f\x19\ \x0d\x2f\xfc\x6b\x8d\x5a\xe0\x34\xcb\x34\x9e\xf1\x9e\x95\x54\x2f\ \x9e\xb0\xdb\xe0\xee\x7f\x4d\x67\x76\x46\x6a\x85\x25\xcb\x57\x72\ \xd7\x13\x2f\x31\x65\xfa\xd7\x61\xa7\x22\x4c\x87\xf6\xed\x18\x75\ \xfc\x30\x0e\x3f\x68\xcf\xb0\x53\xc9\x15\x16\x30\xa4\xa4\x38\xf6\ \x4d\xd8\x89\x44\x95\xaa\xe9\x6f\x00\x87\x08\x08\x55\x09\x74\xce\ \xa4\xe6\x40\x51\x5c\x03\xd0\xd8\xaa\xff\xd6\x2a\x00\xee\x17\x10\ \x47\x4a\x89\x27\xec\xce\xb8\xed\x48\xe5\xe0\xef\xb3\x8a\xca\x2a\ \xce\xbf\xe1\x81\xac\x1a\xfc\x01\xd6\x54\x54\x72\xd7\x13\x2f\xf1\ \xdc\xf8\xac\x3a\x56\x3d\xca\x54\xe0\x13\xb9\x2e\xa0\x49\x23\x71\ \x07\x6f\xaf\xda\x01\x63\x04\xc4\x09\x4c\xa4\x0a\x80\x16\xae\xfa\ \x6f\x0d\x39\x50\x09\x92\x5a\x5d\xfc\x31\xb0\x6f\xd8\xb9\xe4\x82\ \xdb\x1e\x1d\xc7\xaf\x7f\x2c\x0c\x3b\x0d\xdf\x3c\x3a\x6e\x22\x5f\ \xce\x9e\x17\x76\x1a\xb9\xa2\x0b\xee\x0e\x01\x3d\xec\x44\xa2\xc8\ \x32\x8d\x4a\xc4\x2d\x08\x3c\x45\xd5\xf4\x2e\x82\x62\xf9\x2e\x52\ \x05\x00\x70\xaf\xc0\x58\x13\x2c\xd3\x90\x1f\x33\x04\x88\x27\xec\ \xbe\xc0\x54\x60\xe7\xb0\x73\xc9\x05\xd3\x66\x7d\xcf\xe4\xcf\x66\ \x86\x9d\x86\xaf\x92\xc9\x24\xb7\x3c\xf4\x2c\xc9\x88\x3d\x82\xcc\ \x62\x6d\x81\x57\xe3\x09\xfb\xcc\xb0\x13\x89\x22\xcb\x34\x46\xe3\ \x1e\x16\xe4\x55\x01\xf0\x94\x80\x38\x81\x88\x5a\x01\x30\x10\x78\ \x1c\xf7\xcc\x65\x2f\x56\x20\x9b\xd1\x08\x11\x4f\xd8\xdb\xe1\xee\ \xef\xdf\x2c\xec\x5c\x72\xc5\x3b\x53\xcc\xb0\x53\x08\x44\x69\xd9\ \x52\xbe\x92\xb3\x00\x41\xca\x03\x1e\x8b\x27\xec\xeb\xc2\x4e\x24\ \xa2\xce\x13\x14\x67\xb8\xaa\xe9\x1d\x04\xc5\xf2\x55\xa4\x0a\x00\ \xcb\x34\x92\x96\x69\x9c\x85\x7b\xe0\x85\x97\x77\xc1\xc3\x2c\xd3\ \x90\xdb\x5f\x3c\x4a\xb5\x18\xfd\x14\xf7\x39\xa2\x14\x80\x8a\xca\ \x2a\x3e\x9b\xf9\x5d\xd8\x69\x04\x26\x57\x8a\x9d\x88\xb9\x31\x9e\ \xb0\x1f\x96\x9d\x03\xff\x29\x75\xbc\xef\xef\x02\x42\xe5\xe3\xb6\ \x42\x8f\xbc\x48\xfe\x00\x58\xa6\x61\x59\xa6\xb1\x0b\x70\x20\xd0\ \xda\x83\x2e\x9e\xb7\x4c\xc3\xcb\x16\x42\x09\x88\x27\xec\x61\xc0\ \x7b\x40\xd7\xb0\x73\xc9\x25\x73\x7f\xfd\x83\xca\xaa\xea\xb0\xd3\ \x08\xcc\xd7\x73\x7e\x0e\x3b\x85\x5c\x35\x0a\x78\x29\xb5\xab\x47\ \xfa\xdb\x89\x82\xe2\x1c\xab\x6a\x7a\x81\xa0\x58\xbe\x89\x64\x01\ \x50\xcf\x32\x8d\xc9\x96\x69\xf4\xc4\x6d\x6a\xd1\x92\xb6\x8d\xa5\ \x96\x69\xc8\x6e\x80\x1e\xc5\x13\xf6\xe9\xc0\x6b\xb8\xab\x5a\xa5\ \x00\x95\x96\x89\x78\x0c\x99\x39\x16\x2f\x59\x2e\xd7\x01\x84\xe7\ \x08\xe0\xed\xd4\xee\x1e\x09\xb0\x4c\xe3\x53\x40\xc4\xd6\x9b\x36\ \xc0\x5d\x02\xe2\xf8\x2a\xd2\x05\x40\x3d\xcb\x34\xae\x07\xba\x03\ \x4d\x2d\xea\x4b\x02\x7b\x07\x93\x51\xf6\x8a\x27\xec\x6b\x81\x27\ \x70\xa7\xb1\xa4\x80\xd9\x8b\x73\xab\x00\xa8\xad\xab\x63\xc9\xb2\ \x15\x61\xa7\x91\xcb\xf6\x05\xa6\xc8\x33\x04\xfe\xe1\x48\xdc\xa3\ \x7e\xbd\x8a\xfc\x82\xcb\x8c\x28\x00\x00\x2c\xd3\x58\x69\x99\xc6\ \x81\x40\x7f\xa0\xa1\x0e\x7f\x37\x59\xa6\x31\x37\xe0\xb4\xb2\x46\ \x3c\x61\xe7\xc5\x13\xf6\x43\x88\xdb\x0e\x23\xa5\xc1\xca\xb1\x02\ \x00\xdc\xf6\xc6\x52\xa8\x76\x02\x3e\x4f\xed\xf6\xc9\x79\x96\x69\ \xfc\x4c\xd3\x1f\x36\x5b\xaa\xbd\xaa\xe9\xd7\x0b\x88\xe3\x9b\x8c\ \x29\x00\xea\x59\xa6\xf1\x95\x65\x1a\x1b\x01\xe7\x02\x15\xa9\x6f\ \x7f\x6f\x99\xc6\x8d\xe1\x65\x95\xd9\x52\xcf\x01\x5f\xc0\xfd\x7f\ \x2a\x85\x28\xd7\x66\x00\x00\xec\x1c\x7b\xec\x11\x51\x9b\x02\xd3\ \xe2\x09\x7b\xfb\xb0\x13\x89\x88\x63\xf0\xbe\x1b\x0d\xe0\x62\x01\ \x31\x7c\x93\x71\x05\x40\x3d\xcb\x34\xc6\xe0\x36\xb8\x18\x0b\xc8\ \xbe\xa2\x69\x8a\x27\xec\x4e\xc0\x5b\xc8\xa6\x49\x91\x90\x6b\x6b\ \x00\x00\x4a\x17\x2f\x0b\x3b\x05\xc9\x55\x84\xdb\x35\x30\xe7\xdf\ \x4f\x2d\xd3\x58\x8a\xbb\x08\xda\xab\x2e\xaa\xa6\x8b\xda\x5e\x28\ \x5c\xe4\x57\x29\x36\x25\xd5\x73\xf9\xf4\xb0\xf3\xc8\x54\xf1\x84\ \xdd\x1e\xf7\x87\x7c\x70\xd8\xb9\x48\x2e\xbb\x2c\xf7\x06\x43\x39\ \x03\x10\x29\x5d\x71\xbb\x06\x1e\x54\x52\x1c\xcb\xf5\xdd\x54\xa7\ \x03\x0b\xf0\x7e\x50\xd0\x75\xc0\x43\xde\xd3\x11\x2f\x63\x67\x00\ \x24\x6f\xe2\x09\xbb\x00\x78\x05\x39\xf8\x47\xc6\x8a\x55\xab\xa9\ \xa8\xac\x0a\x3b\x8d\xc0\xc9\x35\x00\x91\xd3\x0e\x98\x98\xeb\x8f\ \x03\x2c\xd3\x48\x00\xd3\x04\x84\xea\xae\x6a\xfa\x01\x02\xe2\x08\ \x27\x0b\xa8\x1b\x34\xc8\x00\x00\x20\x00\x49\x44\x41\x54\x80\xdc\ \x35\x16\x38\x38\xec\x24\xa4\xbf\xe5\xea\x27\xe1\x5c\xfd\x7d\x47\ \x5c\xfd\x4c\x40\xae\x2f\x0c\x3c\x4d\x50\x9c\xdb\x04\xc5\x11\x2a\ \xf0\x47\x00\xa9\xf3\x97\xab\x2c\xd3\xc8\x9d\x76\x67\x11\x13\x4f\ \xd8\x77\x20\xae\xe1\x85\x24\x88\x88\x4f\xc2\xdd\xd7\xef\xca\x7f\ \xf6\xd2\x04\x64\xd3\x3a\x33\xbf\x9b\xcb\xdc\x5f\xff\x48\xeb\x5a\ \xb9\x06\x20\xb2\x8a\x80\xc9\xf1\x84\xbd\x6b\x49\x71\x6c\x51\xd8\ \xc9\x84\xc1\x32\x8d\xb9\xaa\xa6\x7f\x0b\x78\x9d\x0d\xd9\x51\xd5\ \xf4\x6e\xa9\xb5\x05\x91\x11\xc6\x1a\x80\xd7\x80\x0d\x55\x4d\xff\ \x1a\x38\x49\x16\x02\xc1\x8a\x27\xec\x8b\x81\xcb\xc3\xce\x43\xfa\ \x37\x11\x05\xc0\x4e\xdb\xf4\xe3\xce\x2b\xcf\x12\x90\x4d\xeb\x3c\ \xf0\xf4\x6b\xdc\xfe\xeb\x0b\x69\x5d\xbb\xb2\xdc\x7d\xf4\xd1\xbe\ \x5d\x5b\xc1\x59\x49\x02\x6c\x0a\xbc\x13\x4f\xd8\x7b\x95\x14\xc7\ \x56\x85\x9d\x4c\x48\xce\x04\xa6\x7b\x8c\xa1\x00\x77\x22\x6e\x46\ \x41\x88\x40\x1f\x01\xa8\x9a\x3e\x0c\xd8\x30\xf5\x9f\x3b\x02\xdf\ \xaa\x9a\xfe\xa5\xaa\xe9\xdb\x04\x99\x47\xae\x8a\x27\xec\xe3\x80\ \xbb\xc3\xce\x43\x6a\x98\x88\x02\xa0\x8f\xda\x43\x40\x26\xe9\xdc\ \xd7\x5b\x1f\x99\x5c\x5c\xfc\x98\x41\x76\x02\xc6\xe7\x6a\xdb\x60\ \xcb\x34\x4c\x40\x44\xcf\xea\xa3\x04\xc4\x10\x2a\xe8\x35\x00\x63\ \x1a\xf8\xde\xce\xc0\x6c\x55\xd3\x67\xaa\x9a\xbe\x55\xc0\xf9\xe4\ \x8c\x78\xc2\xfe\x0f\xf0\x34\xde\x57\xb4\x4a\x3e\x11\xf1\x2c\xdc\ \xeb\x40\x1c\xd6\x7d\x73\x71\xfb\x63\x86\xd9\x17\x78\x3e\x87\x0f\ \x10\x3a\x5f\x40\x8c\x8e\xaa\xa6\x1f\x23\x20\x8e\x30\x81\xfd\x61\ \xa6\x7e\xe3\xbd\x9a\x78\x49\x7f\xe0\x07\x55\xd3\x67\xc8\x42\x40\ \xac\x78\xc2\xde\x05\xf7\xd1\x4b\x46\x6f\xfb\xcc\x76\x22\xba\x00\ \x86\x56\x00\xf4\xf2\x38\x03\x20\x77\x02\x64\x82\x23\x80\x07\xc3\ \x4e\x22\x0c\x96\x69\xbc\x0b\xd8\x02\x42\x45\xea\x28\xe6\x20\xab\ \xb9\xfb\x5b\xf8\xba\x01\xb8\x85\x80\xa9\x6a\xfa\x16\x7e\x26\x94\ \x0b\xe2\x09\x7b\x4b\x60\x12\x90\x11\xe7\x53\xe7\x32\x11\x83\xa0\ \xd7\x81\x38\x5d\x3d\x37\x58\x9f\xc2\xc2\xf4\xeb\x4b\x39\x03\x90\ \x31\x46\xc5\x13\x76\xa4\x06\xb1\x00\x89\x38\xe2\x77\x73\x55\xd3\ \xfb\x08\x88\x23\x44\x20\x05\x80\xaa\xe9\xa7\x03\xad\x7d\x38\x39\ \x10\xf8\x51\xd5\xf4\xe9\xaa\xa6\xf7\xf3\x21\xad\xac\x17\x4f\xd8\ \xbd\x71\x1b\xfd\x6c\x10\x76\x2e\x7e\x71\x1c\x27\x2b\xf6\xce\xd7\ \xd4\xd4\xb2\x74\x85\xf7\x35\x56\x1b\x86\x54\x00\xe4\xe5\x29\xf4\ \x8e\xa5\xbf\xfe\xc0\x96\x3b\x01\x32\xc9\x8d\xf1\x84\x1d\xf9\x83\ \x6e\x7c\x30\x9a\x96\x9d\x4a\xdb\x9c\x7b\x05\xc4\x10\x22\xa8\x29\ \xe1\xd1\x1e\xae\xd5\x80\x79\xaa\xa6\x4f\x07\xfe\x63\x99\xc6\x72\ \x41\x39\x65\xb5\x78\xc2\xee\x86\x3b\xf8\x47\xa6\xda\x14\xe9\xc3\ \x69\xb3\xf8\xf8\x8b\xaf\xf9\xea\xfb\x79\x2c\x5b\xb1\x8a\x2e\x9d\ \x3a\x52\x1c\xeb\xce\xd0\x7d\x06\x31\xec\x80\xdd\x28\xc8\xcf\xac\ \xc3\x0c\xed\xb2\x65\x38\x1e\x8f\xc5\xed\xdc\xb1\x03\x5d\x3b\x77\ \x12\x94\x51\xeb\xf5\xe9\xd5\x83\xf9\x7f\x5a\x69\x5d\x2b\x67\x00\ \x32\xce\x23\xf1\x84\xbd\xb8\xa4\x38\x66\x84\x9d\x48\x50\x2c\xd3\ \x48\xaa\x9a\xfe\x2e\x70\x88\xc7\x50\x5e\xaf\x17\xc6\xf7\x02\x40\ \xd5\xf4\xa1\xb8\x47\xf9\x7a\xb5\x2d\xb0\x52\x40\x9c\xac\x17\x4f\ \xd8\x1d\x70\xa7\xfd\xb3\x6e\x2d\xc5\xaa\xf2\x35\xdc\xfe\xd8\x38\ \x3e\x9c\x36\xeb\x1f\xdf\x5f\x59\xbe\x9a\x95\xe5\xab\xf9\xf1\xd7\ \x38\x2f\xbe\xf1\x01\x17\x9e\x72\x04\xbb\x0f\xd8\x2e\xa4\x2c\x5b\ \x4f\xc4\x00\x18\xd6\x0e\x80\xbf\xef\x9f\xfe\xec\x43\x26\xaf\x01\ \xa8\xaa\xae\xe1\xd7\x78\x82\x85\x8b\xca\xb0\xcb\x96\xb1\x51\x6f\ \x95\x1d\xb6\xdc\x94\x8e\x1d\xda\x85\x9d\x9a\x9f\xf2\x80\x17\x52\ \x2d\x83\xa7\x84\x9d\x4c\x80\x2e\xc2\xfb\x00\xde\x56\xd5\xf4\x23\ \x2c\xd3\x78\x55\x44\x42\x5e\x04\x31\x03\x70\xbb\xa0\x38\x97\x5b\ \xa6\x21\xe2\x74\xa6\xac\xb6\x56\x8b\xdf\x41\x61\xe7\x22\xda\xaf\ \xf1\x04\x17\xdf\x3a\xa6\xd9\x2d\x63\x09\xbb\x8c\xcb\x6f\x7f\x8c\ \xb3\x8e\x39\x94\x13\x0f\x3f\x28\xa0\xec\xbc\x11\xf2\xfc\x3f\xa4\ \x05\x80\xf5\x7a\x17\xa5\x5f\x80\x2c\x5a\xb2\x1c\xc7\x71\x50\x94\ \xcc\xd9\xa4\x52\x51\x59\xc5\x6b\xef\x7c\xc2\x0b\x6f\x7c\xc0\xb2\ \x75\x1e\xdf\xe4\xe5\xe5\xb1\xfb\x80\x6d\xf9\xef\x79\x27\xd2\xa9\ \x43\xfb\x90\x32\xf4\x5d\x5b\xdc\x96\xc1\x7b\x96\x14\xc7\xbe\x09\ \x3b\x99\x20\x58\xa6\xf1\xab\xaa\xe9\x3f\x03\x9b\x79\x0c\x75\x09\ \x10\x7a\x01\xe0\xeb\x1a\x80\xd4\x62\x87\xad\x05\x84\xfa\xd3\x32\ \x8d\x47\x04\xc4\xc9\x05\x0f\x02\x43\xc3\x4e\x42\xb4\x5f\xe3\x09\ \x46\x5d\x7f\x7f\x8b\xf7\x8b\x3b\x8e\xc3\xa3\xe3\x26\x72\xcb\xc3\ \xcf\x52\x5b\x57\xe7\x73\x76\xde\x09\xd9\x01\x10\xd2\xf3\xff\xbf\ \xee\xef\xa1\x00\xa9\xa9\xad\x65\xc9\xf2\xcc\x99\xe0\xfb\x62\xd6\ \x0f\x0c\x3f\xeb\x5a\xc6\x3c\x37\xfe\x5f\x83\x3f\x40\x32\x99\xe4\ \x13\xf3\x5b\x4e\xbd\xe2\x0e\x16\x58\x59\xdd\x44\xaf\x0b\xf0\x76\ \x3c\x61\xc7\xc2\x4e\x24\x40\x37\x09\x88\xd1\x5f\xd5\xf4\xd0\xb7\ \x54\xfa\x9d\xc0\x43\x88\xd9\x77\x7e\xac\x80\x18\x59\x2f\x9e\xb0\ \x8f\x04\xce\x0e\x3b\x0f\xd1\xea\x07\xff\xe5\x2b\xcb\x5b\x7d\xed\ \xa4\x8f\xbe\xe0\xfc\x1b\x1f\x64\x55\xf9\x1a\x1f\x32\x13\x47\x44\ \x0f\x80\x0d\x7b\x85\xfb\x1e\x9c\x0b\x5b\x01\x1d\xc7\x61\xec\xcb\ \x6f\x71\xc9\xad\x63\x5a\xf4\xf3\x18\x4f\xd8\x9c\x7e\xd5\x5d\xfc\ \x1a\x4f\x04\x90\x5d\x68\x54\x60\x5c\xae\xf4\x08\xb0\x4c\xe3\x79\ \x60\xb5\xc7\x30\xf9\xc0\x28\x01\xe9\x78\xe2\xdb\x1f\x98\xaa\xe9\ \x05\xc0\x10\x01\xa1\x4c\xcb\x34\x3e\x15\x10\x27\xab\xc5\x13\xf6\ \xa6\xc0\x13\x61\xe7\x21\x9a\x97\xc1\xbf\xde\xac\xef\x7f\xe2\xd4\ \x2b\xef\xe4\x4f\x6b\xb1\xc0\xcc\xc4\xca\xe4\x2e\x80\x7f\xdf\xdf\ \x6b\x33\xa0\x68\xef\x04\x58\x55\xbe\x86\x8b\x6f\x1d\xc3\xd8\x97\ \x27\x91\x6c\xc5\x82\xcd\xe5\x2b\xcb\x19\x75\xfd\xfd\xd9\x5e\x04\ \xec\x0b\x5c\x1b\x76\x12\x01\x1a\x27\x20\x46\xf0\x3d\xbb\xd7\xe1\ \x67\xc5\xf6\x5f\xa0\xd0\x63\x8c\x24\x70\xb8\x80\x5c\xb2\x5a\x3c\ \x61\xb7\xc5\x7d\xee\xdf\x25\xec\x5c\x44\x12\x31\xf8\xd7\xfb\x63\ \xa1\xcd\xa9\x57\xde\xc1\x37\x73\x7e\x11\x90\x99\x78\x22\x5a\xe1\ \x86\xbd\x06\x20\xd6\xbd\x1b\x85\x05\xe9\xef\xbe\x88\xf2\xa9\x80\ \xf3\x7e\xfb\x83\x13\x2e\x1d\xcd\x17\xb3\x7e\x48\xeb\xfa\x1c\x29\ \x02\xae\x8b\x27\xec\xbd\xc2\x4e\x22\x20\x57\x01\xde\xb6\xed\xc0\ \x96\xaa\xa6\x87\xda\x9f\xc5\xcf\x02\x60\x36\xe0\xf5\xa7\xfd\xf5\ \xd4\x99\xcc\x52\xd3\xee\xc5\x3d\x5b\x21\x6b\x88\x1c\xfc\xeb\xad\ \x58\xb5\x9a\xf3\x6e\x78\x80\x77\x3f\x99\x21\x2c\xa6\x28\x62\x66\ \x00\xc2\x2d\x00\xf2\xf2\x14\x8a\x3d\x2c\x04\x14\xf1\xff\xc0\x0f\ \x6f\x7e\x38\x8d\xd3\xaf\xba\x1b\x6b\xd1\x12\x4f\x71\x72\xa0\x08\ \xc8\xc7\xdd\x19\x10\xee\x0f\x62\x00\x52\xa7\xfa\xfd\xee\x31\x8c\ \x02\x5c\xe1\x3d\x9b\xf4\xf9\x56\x00\x58\xa6\xf1\x9a\x65\x1a\xbd\ \x81\x3d\x81\x6f\x68\x7d\xb5\xe4\x00\xe7\x0a\x4f\x2c\xcb\xc4\x13\ \xf6\x08\xe0\x9c\xb0\xf3\x10\xc9\x8f\xc1\xbf\x5e\x4d\x6d\x2d\x37\ \x3c\xf0\x34\x4f\xbe\x34\x49\x78\xec\x74\x2d\x5b\xb1\x8a\xea\x1a\ \x6f\xfd\x45\xba\x74\xea\x40\x97\xce\x1d\x05\x65\x94\x3e\x4f\x5b\ \x01\x23\x36\x03\x50\x53\x53\xcb\xe8\x47\x9e\xe7\xd6\x31\xcf\x79\ \xfe\xf3\xa9\x97\x03\x45\x80\x4a\xee\x9c\x19\xf0\xb4\x80\x18\xa1\ \x1e\xcb\xee\xfb\x1f\x92\x65\x1a\x9f\x5a\xa6\xb1\x23\x50\x02\xbc\ \x09\xd4\xb6\xf0\xd2\xaf\x2d\xd3\xc8\xea\xe5\xb3\x5e\xc5\x13\xf6\ \xc6\xc0\xd8\xb0\xf3\x10\xc9\xcf\xc1\x7f\x6d\x4f\xbd\xf2\x16\xd7\ \xdd\xf7\x3f\x6a\x6a\x5a\xfa\xe3\xe8\x1f\x21\x3d\x00\x42\x5e\x00\ \x58\xcf\x4b\x01\x50\x1a\xa1\x6e\x80\xa5\x8b\x97\x72\xfa\xd5\x77\ \xf1\xc6\x07\x9f\x0b\x8f\x9d\x03\x45\xc0\xfe\xb8\x53\xe4\xd9\xee\ \x2e\xdc\xc7\xd4\x5e\x94\xa8\x9a\x1e\xda\x8c\x49\x60\x55\x9a\x65\ \x1a\x0b\x2c\xd3\x38\x14\xe8\x0c\x3c\x40\xf3\xab\x28\x2f\xf5\x3f\ \xab\xcc\x95\x3a\x9a\xf3\x15\xa0\x6b\xd8\xb9\x88\x12\xd4\xe0\x5f\ \x6f\xf2\x67\x33\x39\xe7\xfa\xfb\x02\xbb\x5f\x63\x4a\x17\x65\xfe\ \xf4\x7f\x3d\x2f\x0b\x11\xa3\x32\x03\x30\xfd\x9b\x39\x9c\x78\xe9\ \x68\xe6\xfe\xfa\x87\x6f\xf7\xa8\x2f\x02\x7e\xc9\xde\x22\xe0\xc6\ \x78\xc2\xde\x23\xec\x24\xfc\x64\x99\x46\x25\x30\x47\x40\xa8\xd0\ \x16\x4f\x06\x3e\x4d\x63\x99\x46\xa5\x65\x1a\x17\x5a\xa6\xd1\x09\ \x77\xcb\xda\xc2\x06\x5e\xb6\xc8\x32\x8d\x8f\x03\x4e\x2d\xd3\xdc\ \x8d\x7b\x94\x72\x56\x08\x7a\xf0\xaf\x37\x7b\xee\x6f\x9c\x7a\xc5\ \x1d\xfc\xfe\x67\x69\xa0\xf7\x05\x77\xea\xff\xd5\xb7\xa7\x30\xf6\ \x65\xef\x8f\x23\xc2\xde\x01\x50\xaf\xb7\x87\x42\x64\xf9\xca\x72\ \x6e\x7e\xf8\xd9\xd0\x16\x6a\x3a\x8e\xc3\xff\x5e\x7d\x9b\x8b\x6f\ \x7e\x98\x15\xab\xbc\xee\xf2\x6a\xde\xf2\x95\xe5\x9c\x9b\xbd\x45\ \x40\x3e\xf0\x62\x3c\x61\x47\xe3\x07\xd3\x3f\x0d\x1d\x71\xdf\x5a\ \xa1\xb5\x06\x56\xbc\xf6\x1f\x17\x41\xd5\xf4\x3d\x70\x67\x05\xb6\ \xc7\x5d\x18\x71\x8d\x65\x1a\x5e\xce\x0f\xc8\x6a\xf1\x84\xad\x03\ \xaf\x87\x9d\x87\x28\x61\x0d\xfe\x6b\xeb\xdc\xb1\x3d\xa3\x2f\x3b\ \x83\x01\xdb\xf9\x7b\x00\x65\x45\x65\x15\x53\xcc\x6f\x78\xef\xd3\ \x99\xcc\xf8\xf6\x47\x92\x49\x31\xcd\x2d\x6f\xba\xf8\x14\x4e\x3f\ \xf2\x60\x21\xb1\xbc\x30\xbf\x99\xc3\xb0\x33\xbd\x7f\xa0\xe9\xad\ \xf6\xe0\xe0\x7d\x06\x33\x74\xef\x5d\xe8\xd1\x6d\x3d\x01\x99\x35\ \x6d\x55\xf9\x1a\x6e\x78\xe0\x69\x3e\xff\xea\x7b\xdf\xef\xb5\xae\ \xf5\xba\x74\xe2\xe1\x1b\x2f\x64\xd3\x92\xe2\xc0\xef\x1d\x80\x77\ \x81\x21\x25\xc5\xb1\xf0\x07\x1a\x1f\xa4\x9a\xf9\x54\xe1\xad\xab\ \xae\x03\xb4\xb3\x4c\xa3\x5a\x4c\x56\x2d\x17\x89\x02\xa0\x5e\xaa\ \x73\xe0\x6d\xc0\x09\xb2\xed\x6f\xc3\xe2\x09\xbb\x2f\x30\x0b\xf0\ \xff\x5d\x31\x00\x51\x18\xfc\xeb\xe5\xe7\xe7\x71\xc5\x99\xc7\x70\ \xe8\x7e\xbb\x0a\x8d\x5b\x5b\x57\xc7\xf4\x59\x3f\xf0\xee\xa7\x33\ \xf9\x6c\xe6\xb7\x54\x55\x8b\x59\x50\xb6\xb6\xa7\xef\xba\x92\x83\ \xf6\x18\x28\x3c\x6e\x6b\x2d\xb4\xcb\xd8\xf9\xd0\x33\x84\xc5\xcb\ \xcb\xcb\x43\xdb\x61\x4b\x0e\xde\x67\x30\x7b\x0c\xdc\x8e\xc2\x02\ \xf1\xdd\xcb\x7f\x9a\xff\x27\x57\xdd\xf9\x38\x09\xbb\x4c\x78\xec\ \x96\xca\xf2\x22\xe0\xaa\x92\xe2\x98\xa8\x96\xf0\x91\xa3\x6a\xfa\ \x17\xc0\x2e\x1e\xc3\x9c\x6b\x99\x86\x88\xd9\x84\x56\x89\x54\x01\ \x20\x35\x2d\x9e\xb0\x0b\x81\xcf\x81\x01\x61\xe7\x22\x42\x94\x06\ \xff\xb5\x1d\x37\x6c\x7f\x46\x1d\x3f\xdc\x53\x5f\x7a\xc7\x71\xf8\ \xe6\xc7\x5f\x98\xfc\xe9\x4c\x3e\x9c\x36\x8b\x95\xe5\xfe\x4e\x29\ \x7f\x38\xee\x3e\xb6\xda\xb4\xc4\xd7\x7b\xb4\x44\x32\xe9\xb0\xd1\ \xee\x23\xa9\xa9\x15\xdf\x7e\xb9\x6b\xe7\x8e\x1c\xb8\xc7\x40\x0e\ \xde\x67\x30\xfd\xfa\xf6\x16\x12\xf3\xad\x8f\xbe\xe0\x8e\xc7\x5f\ \x14\xb6\xca\xdf\x8b\x2c\x2e\x02\x6a\x81\xbd\x4b\x8a\x63\x53\xc3\ \x4e\xc4\x0f\xaa\xa6\x8b\x98\x91\x35\x2d\xd3\xf0\x5a\x44\xb4\x9a\ \x2c\x00\x32\x48\x3c\x61\xdf\x07\x5c\x18\x76\x1e\x22\x44\x75\xf0\ \xaf\xb7\x97\xb6\x03\x37\x5c\x78\x32\xed\xda\xb6\x69\xd5\x75\x35\ \x35\xb5\xbc\xf3\x89\xc9\xb8\x89\xef\x13\x4f\xd8\x3e\x65\xf7\x6f\ \x3f\x7d\xf4\x3c\x9d\x3b\x86\xda\x53\xe4\x2f\xbb\xe8\x67\xfb\xfe\ \x7b\xef\xd7\xb7\x0f\x23\xfe\xb3\x27\x07\xed\x39\x90\x36\x85\xad\ \xef\x37\x56\x53\x53\xcb\x3d\x4f\xbd\xcc\x84\xc9\xd1\x1a\x93\xba\ \x76\xee\xc8\x98\x9b\x2e\xca\xc6\x22\xe0\x4f\x60\x87\x92\xe2\x98\ \xb7\x66\x0a\x11\xa5\x6a\x7a\x15\xd0\xba\x37\x8b\x7f\xaa\xb2\x4c\ \x23\xf0\xe3\x23\x65\x01\x90\x21\xe2\x09\xfb\x30\x60\x42\xd8\x79\ \x88\x10\xf5\xc1\xbf\xde\x96\x9b\x94\x70\xd7\xd5\x67\xd3\x7d\xfd\ \xe6\x37\x5a\x94\xaf\xa9\x60\xfc\x7b\x9f\xf1\xf2\xa4\x8f\x28\x5b\ \xb6\x22\x80\xec\xfe\xd6\xb5\x73\x27\xe6\x7e\xf0\x6c\xa0\xf7\x6c\ \xca\x11\xa3\xae\x67\xea\x97\xb3\x03\xb9\xd7\x7a\x5d\x3a\x31\xec\ \x80\xdd\x19\x71\xd0\x9e\x74\xef\xd6\xb2\x0d\x31\xa5\x65\x4b\xb9\ \xfa\xce\x27\x98\xf3\x4b\xdc\xe7\xec\xd2\xd3\xb5\x73\x47\x1e\xbe\ \xf1\x42\x36\xdb\x48\xcc\x2c\x47\x84\xbc\x0d\x1c\x9c\x8d\xeb\x01\ \x54\x4d\x9f\x09\xf4\xf7\x18\x66\x2f\xcb\x34\x3e\x11\x91\x4f\x4b\ \xe5\x42\xb3\x86\x8c\x17\x4f\xd8\xbd\x10\xd3\x74\x22\x74\x99\x32\ \xf8\x03\xfc\xf8\x6b\x9c\x53\xaf\xb8\xa3\xc9\x55\xda\x65\x4b\x57\ \xf0\xd0\x33\x06\x87\x9d\x71\x35\x63\x9e\x1b\x1f\xf8\xe0\x0f\xd0\ \xa7\x57\xb4\x16\x5a\x07\xb9\x25\x71\xf9\xca\x72\xfe\xef\xb5\x77\ \x18\x76\xe6\x35\x5c\x77\xdf\xff\x98\xf3\xf3\xef\x4d\xbe\x7e\xc6\ \xb7\x3f\x72\xe2\x25\xa3\x23\x3b\xf8\x83\xdb\xb1\xf2\xdc\xeb\xef\ \xe7\xe7\xdf\xff\x0c\x3b\x15\xd1\x86\x00\x17\x84\x9d\x84\x4f\x44\ \x9c\x0d\x70\xbe\x80\x18\xad\x22\x0b\x80\xcc\x70\x2f\xb0\x7e\xd8\ \x49\x78\x95\x49\x83\x7f\x3d\xbb\x6c\x19\x67\x5c\x7d\x37\xd3\x66\ \xfd\x73\x75\xf8\xef\x7f\x96\x72\xcb\xc3\xcf\x32\xfc\xac\x6b\x19\ \x37\xf1\x7d\x56\xaf\xa9\x0c\x29\xc3\xe8\xf4\x00\xa8\x17\x46\x3e\ \xb5\x75\x75\x4c\xfe\x6c\x26\xa7\x5c\x71\x07\xa7\x5d\x79\x27\xef\ \x4f\xfd\x92\xba\xba\xbf\xd7\x11\x3b\x8e\xc3\xff\xbd\xf6\x0e\x17\ \xde\xf4\x50\x20\x5b\xfc\xbc\xca\xe2\x22\xe0\xe6\x78\xc2\xce\xba\ \xa9\x0d\xe0\x31\xbc\x9f\x0d\xb0\xa7\x88\x44\x5a\x43\x3e\x02\x88\ \xb8\x78\xc2\xde\x17\xf8\x20\xec\x3c\xbc\xca\xc4\xc1\x7f\x6d\x79\ \x79\x79\x5c\x74\xca\x08\x36\xdf\x78\x43\x9e\x1b\x3f\x99\xa9\x5f\ \xce\x26\x2a\x7f\x77\x46\x1d\x3f\x9c\x6b\xcf\x3d\x3e\xec\x34\xfe\ \x32\xe1\xfd\xa9\x9c\x7d\xed\xbd\x61\xa7\x41\x8f\x6e\xeb\x31\xe2\ \x3f\x7b\xb2\xef\xe0\x9d\xb9\xff\xe9\x57\x03\x7b\x2c\x21\x52\x96\ \x3e\x0e\x78\xad\xa4\x38\x76\x44\xd8\x49\x88\xa6\x6a\x7a\x1c\xd8\ \xd0\x63\x98\x22\xcb\x34\x02\x5b\x3c\x24\x0b\x80\x08\x4b\x75\xfb\ \xfb\x0e\xd8\x3c\xec\x5c\xbc\x08\x6a\xf0\xbf\xe4\xb4\x23\x29\xea\ \xb1\x3e\x57\xdf\x3d\x36\x12\x2d\x7e\x83\x32\xe6\xc6\x0b\xd1\x0f\ \x8a\x4e\xd3\xb5\xdf\xfe\x58\xc8\xae\x47\xe4\xd6\x31\x1e\x67\x1d\ \x7b\x28\x9b\x6e\x58\xcc\xa5\xb7\x3d\x2a\x3c\x76\x96\x16\x01\x07\ \x96\x14\xc7\x26\x87\x9d\x84\x48\xaa\xa6\x3f\x0c\x8c\xf2\x18\xe6\ \x76\xcb\x34\x02\x6b\xa3\xec\xe9\x11\x80\xaa\xe9\x1d\x54\x4d\x3f\ \x5f\xd5\x74\x2f\xab\x1f\xa5\xc6\x5d\x82\x1c\xfc\x5b\xe4\x92\xd3\ \x8e\xe4\xd2\xd3\x8f\xe4\xb8\x61\x07\x60\x3c\x7a\x33\xb1\xee\x19\ \xff\xc4\xa4\x45\x0a\x0b\xf2\x19\xb0\xbd\xbf\xcd\x8b\x5a\xab\x6f\ \x1f\x95\xe2\xa2\xee\x61\xa7\x11\x88\x76\x6d\xdb\x30\xe6\xa6\x8b\ \xb8\xfe\xfc\x93\x38\x76\xd8\xfe\x5c\x70\xf2\x08\xe1\xf7\xc8\xd2\ \xc7\x01\x0f\xa7\x8e\x31\xcf\x26\xf7\x08\x88\x71\xa0\x80\x18\x2d\ \xe6\x75\x0d\xc0\x19\xb8\x1d\xfc\x2a\x54\x4d\x9f\xa7\x6a\xfa\x8d\ \xaa\xa6\x67\xd5\x99\xf4\x61\x89\x27\xec\x12\x42\xec\x11\x2d\x42\ \xd0\x83\x7f\xbd\xfe\xdb\x6e\xce\x7b\xcf\xdc\x4d\xff\x6d\x33\xba\ \x76\x6a\x91\x51\x27\xe8\x91\x5b\x03\xa0\x28\x0a\xb7\x5c\x7c\x6a\ \xd8\x69\xf8\xae\x8f\xda\x93\x49\x63\x6f\x43\x3f\x70\xf7\xbf\xbe\ \x77\xc5\x99\x47\x33\xfc\x80\xdd\x9b\xb8\x2a\x3d\xf5\x45\xc0\x4f\ \xf3\xb3\xa6\x08\xd8\x0c\xb8\x3c\xec\x24\x44\xb2\x4c\x63\x3e\xe0\ \x75\x15\x70\xa0\x6f\x5a\x5e\x0b\x80\xfa\x77\xdd\x3c\xa0\x1f\x70\ \x1d\xb0\x5c\xd5\xf4\x3f\x54\x4d\x7f\x50\xd5\xf4\xac\xdb\xcc\x1a\ \xa0\x07\x80\x68\x6c\xec\x4e\x43\x58\x83\x7f\xbd\x58\xf7\xf5\x31\ \x1e\xbd\x99\xe3\x86\x1d\xe0\xeb\xfd\xc3\xb4\xff\x6e\xfd\xb9\xc8\ \x87\x4f\x9c\x22\x1c\xb4\xa7\xc6\xd9\xc7\x1e\x16\x76\x1a\xbe\xd9\ \x7d\xc0\x76\xbc\xf7\xcc\x5d\x6c\xdd\xaf\xef\x3f\xbe\xaf\x28\x0a\ \xf7\xff\xf7\x5c\x06\x6e\xbf\xa5\xf0\x7b\xae\x58\xb5\x9a\xf3\x6e\ \xc8\xaa\x22\xe0\xaa\x54\x67\xd3\x6c\xe2\xb5\xb1\x44\x07\x55\xd3\ \x55\x21\x99\xb4\x80\xd7\x02\x60\xfb\x06\xbe\xa7\x00\x7d\x80\xf3\ \x80\x3f\x55\x4d\x5f\xa4\x6a\xfa\xb3\xaa\xa6\x6f\xe5\xf1\x5e\x39\ \x23\x9e\xb0\x87\x02\x19\xfb\xee\x19\xf6\xe0\x5f\xaf\xb0\xb0\x80\ \xbb\xae\x3a\x8b\xbb\xae\x3a\x8b\xc2\x42\xf1\x2d\x64\xc3\xd2\xb1\ \x7d\x3b\xae\x38\xf3\x68\x9e\xb9\xfb\x2a\xda\xb4\x69\x7d\x13\x9c\ \xa0\x5c\x77\xfe\x89\x3c\x72\xf3\x45\x81\xf4\xf2\x0f\xd2\x59\xc7\ \x1e\xca\x8b\x0f\x5e\xc7\xfa\x5d\x3b\x37\xf8\xeb\x6d\xda\x14\xf2\ \x7f\x77\x5d\xc9\xc6\x7d\xc4\xbf\x8f\x67\x59\x11\xd0\x1e\x78\x30\ \xec\x24\x04\x7b\x52\x40\x8c\x93\x05\xc4\x68\x91\xb4\x17\x01\xaa\ \x9a\xbe\x0d\xd0\xda\x65\xb5\x2b\x81\x29\xc0\x3d\x96\x69\x7c\x9a\ \xd6\x8d\xb3\x5c\x3c\x61\xb7\xc3\x3d\x62\x32\x23\x2b\xe3\xa8\x0c\ \xfe\xeb\xfa\x72\xf6\x3c\x4e\xbb\xf2\x4e\xec\xb2\xe8\x9c\x39\xdf\ \x1a\x85\x05\xf9\x68\x3b\x6c\xc5\xb0\xfd\x77\x63\xd8\x81\xbb\xd3\ \xb1\x7d\xe0\x4d\xc3\xd2\x56\x53\x5b\xc7\xfb\x9f\xcd\xe4\xd5\x77\ \x3e\xe1\xd3\x19\xdf\xb2\xa6\x22\xbc\x2d\x93\x5e\xb4\x6b\xdb\x86\ \x7b\xae\x19\xf5\x8f\x29\xff\xa6\xfc\xb6\xc0\xe2\xe0\x53\xaf\x64\ \xd9\x8a\x55\xc2\x73\xe9\xd2\xc9\x5d\x18\x28\xaa\x25\x72\xc8\x86\ \x95\x14\xc7\x26\x86\x9d\x84\x08\xa9\xc3\x81\x6a\xf0\xf6\xe1\x7a\ \x9a\x65\x1a\x62\x0f\x24\x69\x84\x97\x02\xe0\x51\xe0\x2c\x0f\xf7\ \xae\x00\xb6\xb7\x4c\xe3\x67\x0f\x31\xb2\x4e\x3c\x61\xdf\x04\xfc\ \x37\xec\x3c\xd2\x11\xd5\xc1\xbf\x9e\x5d\xb6\x8c\xd3\xae\xbc\x93\ \x2f\x67\xcf\xf3\x21\x2b\xf1\x62\xdd\xd7\x67\x9f\x41\x3b\xb1\xdf\ \xae\x3b\xb3\x87\xb6\x3d\x9d\x3a\xb4\x0f\x3b\x25\xcf\xaa\xab\x6b\ \x98\x36\xeb\x07\xde\x9f\xfa\x25\xef\x4f\xfd\x92\x05\xd6\xa2\xb0\ \x53\x6a\x91\x3e\x6a\x4f\x9e\xbe\xf3\x8a\x7f\x4d\xf9\x37\x67\xc6\ \xb7\x3f\x72\xc4\xb9\x37\x50\xed\xc3\x01\x50\x59\x54\x04\xc4\x81\ \xad\x4a\x8a\x63\x6b\xc2\x4e\x44\x04\x55\xd3\x13\x40\x2f\x0f\x21\ \x56\x58\xa6\x11\xc8\xb4\x99\x97\x02\xe0\x37\xbc\x7d\x4a\x75\x80\ \x02\x79\xea\xdf\xdf\xe2\x09\x7b\x33\xdc\x59\x95\x8c\x5b\x1d\x1b\ \xf5\xc1\xbf\x5e\x4d\x4d\x2d\x57\xdf\x3d\x96\xe7\x27\x44\x73\x07\ \xd2\x36\x9b\xf7\x65\xe8\x5e\xbb\xb0\xef\xae\x3b\xb3\x4d\xbf\xbe\ \x9e\x0e\x24\xca\x04\xf3\x7e\x5b\xc0\xfb\x53\xbf\xe4\xed\x29\xd3\ \xf9\xfa\x87\x68\x7e\x16\xd8\x7d\xc0\x76\x3c\x7e\xeb\x25\x8d\x4e\ \xf9\x37\x67\xfc\xe4\xcf\x18\x75\xdd\xfd\xbe\xf4\x8d\xc8\xa2\x22\ \x60\x74\x49\x71\xec\x9a\xb0\x93\x10\x41\xd5\xf4\xf1\xc0\x30\x8f\ \x61\xba\x5a\xa6\xb1\x52\x44\x3e\x4d\x49\xab\x00\x10\x34\xcd\x61\ \x5b\xa6\x51\xe4\xe1\xfa\xac\x13\x4f\xd8\xef\x12\xf0\x36\x10\x11\ \x32\x65\xf0\x5f\xdb\xf3\x13\x26\x47\xa6\x5f\x40\xf7\xf5\xbb\xa2\ \x1f\xb4\x07\x47\x1e\xbc\x4f\x24\x4e\xf4\x0b\xcb\x4f\xf3\x17\xf0\ \xe2\x9b\x1f\xf2\xda\xdb\x9f\x84\xd2\x52\xb9\x21\x67\x1d\x7b\x28\ \xd7\x9e\x7b\x02\xf9\x79\xde\x96\x4b\x3d\xf0\xf4\x6b\xdc\xfe\xd8\ \x0b\x82\xb2\xfa\xa7\x2c\x29\x02\xaa\x81\xed\x4a\x8a\x63\x99\x31\ \x3d\xd7\x04\x55\xd3\x8f\xc1\x7b\x6b\xe0\x40\x8e\x07\x4e\xb7\x00\ \x38\x1a\xf0\xfa\xd3\xfc\xb6\x65\x1a\x43\x3d\xc6\xc8\x1a\xf1\x84\ \x3d\x02\x78\x35\xec\x3c\x5a\x2b\x13\x07\xff\x7a\x61\xae\x0b\x28\ \x2c\x2c\x60\xff\xdd\xfa\x73\xe4\xd0\xbd\xd9\x67\xf0\x4e\x14\xe4\ \xe7\x07\x9e\x43\x54\xd5\xd4\xd6\xf1\xc1\xd4\x2f\x79\xf1\xcd\x0f\ \xf9\x68\xda\x2c\xea\x92\xc1\x4f\x12\xb6\xf6\x79\x7f\x4b\x5c\x7c\ \xcb\x18\x5e\x7c\xf3\x43\x61\xf1\xd6\xe6\x16\x01\x17\xd0\xaf\x6f\ \x1f\x5f\xe2\x07\xe4\x83\x92\xe2\xd8\xfe\x61\x27\xe1\x55\xaa\x2f\ \x4e\x25\xee\x82\xf8\x74\x7d\x60\x99\x86\xef\xff\x2f\xd2\x2d\x00\ \xde\x03\xbc\xee\xaf\x3a\xcb\x32\x8d\xc7\x3d\xc6\xc8\x0a\xf1\x84\ \xdd\x09\xf8\x11\xc8\xa8\x12\x3e\x93\x07\xff\x7a\x41\xaf\x0b\x50\ \x7b\x6e\xc0\xe9\x47\x1d\xcc\x91\x43\xf7\xa6\xdb\x7a\xb2\x65\x46\ \x73\xec\xb2\x65\x3c\x63\xbc\xcb\x53\x2f\xbf\xc5\xca\xf2\x60\x1e\ \x11\xa7\xfb\xbc\xbf\x39\x35\xb5\x75\x1c\x7b\xe1\xcd\x7c\x36\xf3\ \x3b\xa1\x71\xeb\x65\x49\x11\x70\x54\x49\x71\xec\xe5\xb0\x93\xf0\ \x4a\xd5\xf4\x45\x80\x97\x53\xba\xca\x2c\xd3\xf0\xfd\x94\xaf\x74\ \x0b\x80\x65\x80\xd7\x45\x0a\x9d\x2d\xd3\xc8\xcc\xc6\xf0\x82\xc5\ \x13\xf6\x9d\xc0\x65\x61\xe7\xd1\x1a\xd9\x30\xf8\xd7\x0b\x62\x5d\ \xc0\xd6\x9b\x6d\xc4\xd9\xc7\x1e\xc6\xa1\xfb\xef\x46\x61\x81\xfc\ \xb4\xdf\x5a\x2b\xcb\xd7\xf0\xbf\x57\xde\xe2\xf1\x17\xdf\xf4\xf5\ \x67\xce\xeb\xf3\xfe\xe6\xac\x2c\x5f\xc3\x21\xa7\x5d\xc5\x4f\xf3\ \x17\xf8\x12\x3f\x0b\x8a\x80\x85\xc0\x16\x25\xc5\x31\xf1\x5b\x27\ \x02\x24\xe0\x43\x72\xd2\x32\x0d\xdf\xdf\x28\x5a\x5d\x00\xa8\x9a\ \x1e\x03\x4a\x3d\xde\x37\xb0\x55\x8e\x51\x17\x4f\xd8\x5b\x02\xdf\ \x02\xd1\xdd\xd0\xbd\x8e\x6c\x1a\xfc\xd7\xe6\xc7\xba\x80\x3d\xb5\ \x1d\x38\xe7\xb8\x61\xec\x31\x70\x3b\x61\x31\x73\xd9\xea\x8a\x4a\ \xfe\xef\xb5\x77\x78\x6c\xdc\x1b\xc2\xd7\x09\x88\x7a\xde\xdf\x9c\ \x3f\x4b\x17\x33\xe4\xe4\x2b\x58\xbc\x74\xb9\x2f\xf1\xb3\xa0\x08\ \xb8\xa7\xa4\x38\x76\x69\xd8\x49\x78\xa1\x6a\xfa\x59\x80\xd7\x83\ \x21\x76\xb2\x4c\xe3\x6b\x11\xf9\x34\x26\x9d\x9f\xf4\xf3\x04\xdc\ \x77\x8e\x80\x18\xd9\xe2\x7a\x32\x68\xf0\xff\xfd\xcf\xd2\xac\x1c\ \xfc\x01\xa1\xe7\x08\x1c\xb4\xa7\xc6\x47\x2f\xdc\xc7\x4b\x0f\x5e\ \x27\x07\x7f\x81\x3a\xb6\x6f\xc7\xa8\xe3\x87\x33\x63\xc2\x63\xdc\ \x74\xd1\x29\x14\x75\xef\xe6\x39\xe6\xda\xfd\xfc\xfd\x1e\xfc\x01\ \x7a\x17\xf5\xe0\xd9\x7b\xae\xa6\x7d\x3b\x7f\x36\xfb\xac\x2c\x5f\ \xcd\xb9\xd7\x3f\xe0\xdb\x2c\x43\x00\x46\xc5\x13\x76\xa6\x2f\x10\ \x7f\x5e\x40\x8c\x83\x05\xc4\x68\x52\x3a\x3f\xed\x22\x3a\xd4\xbd\ \x27\x20\x46\xc6\x8b\x27\xec\x7e\x40\xc6\x1c\x8b\xb9\x62\xd5\x6a\ \x2e\xb9\x75\x4c\x56\x0e\xfe\xf5\xbc\x9e\x23\xb0\xf3\x36\xfd\x98\ \xf8\xc4\xad\x3c\x7d\xe7\x15\x6c\xb9\x49\xee\xae\xe8\xf7\x5b\xfb\ \x76\x6d\x39\xfd\xa8\x83\x31\xc7\x3f\xca\x6d\x97\x9d\x91\xf6\xe1\ \x43\x0d\xf5\xf3\x0f\xc2\x0e\x5b\x6d\xca\x23\x37\x5d\x48\x5e\x9e\ \x3f\xdb\x3c\x33\xbc\x08\x68\x87\x7b\x10\x5a\xc6\x4a\x3d\xde\xf6\ \xfa\x46\xe9\x7b\x33\xa0\x74\x0a\x00\x11\x87\x15\xfc\x9f\x80\x18\ \xd9\xe0\x4a\xbc\xb7\x63\x0e\x84\xe3\x38\x5c\x75\xd7\x13\x24\xec\ \x32\x5f\xef\x13\xe6\xe0\x5f\x2f\x9d\x73\x04\x36\xea\x5d\xc4\x13\ \xa3\x2f\x65\xd2\x53\xb7\xfb\xd2\x07\x5e\x6a\x58\x9b\x36\x85\x9c\ \x34\xe2\x20\xbe\x78\xfd\x51\xee\xbe\xfa\x1c\x4a\x8a\x63\x2d\xbe\ \xb6\xb1\x7e\xfe\x41\x39\x68\x4f\x8d\xeb\xcf\x3f\xc9\xb7\xf8\x2b\ \xcb\x57\x73\xde\x0d\x0f\xf8\xf6\xa8\xc1\x67\x67\xc5\x13\xf6\x06\ \x61\x27\xe1\x91\xd7\xea\xcb\xf7\x37\x92\x74\x06\x9f\x7d\x80\xa7\ \x80\x5f\x81\x74\x1e\x96\x56\x5a\xa6\x11\x4f\xe3\xba\xac\x92\x3a\ \xed\xef\xb8\xb0\xf3\x68\xa9\x5f\xff\x58\xc8\xac\xef\x7f\xf2\xf5\ \x1e\x51\x18\xfc\xeb\xd5\x9f\x23\x30\xe6\xa6\x8b\xe8\xd2\xa9\xf1\ \x33\x99\x7a\x74\x5b\x8f\x9b\x2e\x3e\x85\x4f\x5f\x7e\x88\x43\xf6\ \x1d\x1c\x60\x86\xd2\xda\x0a\x0b\xf2\x39\xf6\xb0\xfd\x98\xfa\xea\ \xc3\x3c\x78\xfd\xf9\x6c\xba\x51\xe3\xe7\x90\xb5\x69\x53\xc8\x35\ \xa3\x8e\x6f\xb2\x9f\x7f\x50\xce\x38\xfa\x10\x4e\x1e\xf1\x1f\xdf\ \xe2\xaf\x58\xb5\x9a\x1b\xee\x7f\x9a\xa4\x0f\x4d\x88\x7c\xd6\x09\ \xb8\x20\xec\x24\x3c\xfa\xd6\xe3\xf5\x2d\xaf\x66\xd3\x94\x76\x27\ \xc0\x7a\xaa\xa6\xef\x06\x9c\x04\xec\x05\x94\x00\xcd\x9d\xba\xf2\ \x83\x65\x1a\xdb\x78\xba\x69\x16\x88\x27\xec\x31\xc0\x39\x61\xe7\ \xd1\x52\x2f\x4f\xfa\x88\xfb\xfe\xe7\x5f\x9b\x82\x28\x0d\xfe\xeb\ \xfa\xb3\x74\x31\xe3\x26\x7e\xc0\x17\xb3\x7e\xa0\x74\xf1\x12\x7a\ \x6e\xb0\x3e\x1b\xf5\x2e\xe2\xb0\xfd\x77\x63\x4f\x6d\x7b\xb9\x87\ \x3f\x82\x1c\xc7\x61\xca\xf4\x6f\x78\x69\xd2\x47\x2c\xb0\x16\x51\ \xb6\x74\x05\xbd\xd5\x1e\x0c\xd8\x76\x0b\x0e\xff\xcf\x1e\x91\x5a\ \x20\x57\x97\x4c\x72\xd2\xa5\xb7\xf1\xc1\xe7\x5f\xf9\x76\x8f\xf3\ \x4f\x3a\x9c\x63\x0e\xdd\xcf\xb7\xf8\x3e\x59\x0e\x94\x94\x14\xc7\ \x7c\xef\x88\xe7\x07\x55\xd3\xcf\x04\x1e\xf3\x18\x66\x7d\xcb\x34\ \x7c\x9b\xc2\xf1\x5c\x00\xac\xab\x05\x05\xc1\x18\xcb\x34\xce\x15\ \x7a\xd3\x0c\x93\x5a\xe0\x32\x1f\xf7\x59\x57\x46\xb8\xfe\xfe\xa7\ \x79\xef\xd3\x19\xbe\xc4\x8e\xf2\xe0\x2f\x49\x41\x58\x5d\x51\xc9\ \xb0\x33\xaf\xe1\xfb\x79\xf3\x7d\x89\xbf\xc9\x86\xbd\x18\x77\x7f\ \x46\x1e\x31\x72\x55\x49\x71\xec\xf6\xb0\x93\x48\x87\xa0\x1d\x73\ \x27\x58\xa6\xf1\x5c\x0b\xee\xd5\x13\xb8\xd4\x32\x8d\xcb\x5b\x13\ \x5c\xf8\xf3\x67\xcb\x34\xa6\x5a\xa6\x71\x9a\x65\x1a\x9b\x5a\xa6\ \x51\x08\xec\xce\x3f\x1f\x19\x88\x58\x1d\x99\xe9\x2e\x25\x83\x06\ \x7f\x80\xae\x9d\x3b\xfa\x12\x57\x0e\xfe\x92\xe4\xee\x6e\x78\xee\ \xde\x6b\x50\x7b\xfa\xf3\xd8\xfb\xb7\x05\x96\xef\x8b\x77\x7d\x72\ \x71\x3c\x61\x37\xfe\x0c\x2e\xc2\x2c\xd3\xb0\x71\x5b\xe6\x7b\xb1\ \x6f\x0b\x5f\x67\x02\x97\xa9\x9a\x3e\x4f\xd5\xf4\x16\x6f\x8d\xf1\ \x7d\x01\xda\xba\x05\x81\x65\x1a\xd3\xfd\xbe\x67\x94\xa5\x16\xb6\ \x78\x39\x45\x31\x14\x6a\x0f\xef\xdb\xad\xd6\x75\xee\x09\xc3\xe5\ \xe0\x2f\x49\x29\x45\xdd\xbb\xf1\xfc\x7d\xd7\xfa\x72\xea\xa3\xe3\ \x38\xfc\xfc\xfb\x9f\xc2\xe3\x06\xa0\x07\x70\x7a\xd8\x49\x78\x60\ \x7b\xbc\x7e\x87\xe6\x5e\xa0\x6a\xfa\x73\xc0\x46\xa9\xff\xec\x07\ \x24\x54\x4d\x1f\xd2\x92\xe0\x19\xb1\x02\x3d\xcb\x5c\x00\xf8\xf3\ \x71\xda\x47\x9b\x6f\xbc\xa1\xf0\x98\xb3\xe7\xcd\x0f\xa5\xcf\xbb\ \x24\x45\xd5\x56\x9b\x96\xf0\xc4\xe8\x4b\x7d\xe9\x47\xd0\x73\x83\ \x8c\xed\xbd\x76\x59\x3c\x61\xb7\x09\x3b\x89\x34\x79\xed\x31\xde\ \xe4\x62\x95\xd4\xb9\x3c\xeb\x2e\x26\x6f\x07\xbc\xa5\x6a\x7a\xb3\ \xeb\x0f\x64\x01\x10\xa0\x78\xc2\xee\x82\x98\x46\x4a\x81\xdb\x69\ \x9b\x7e\x6c\xb7\xc5\x26\x42\x63\x7e\x62\x7e\xc3\x6d\x8f\x78\x3d\ \x34\x4b\x92\xb2\xcb\xde\x83\x76\xe4\xb6\xcb\xcf\x10\x1a\x33\x4f\ \x51\xe8\x15\x4b\xaf\x57\x42\x04\x14\x03\x27\x86\x9d\x44\x9a\x3e\ \xf7\x78\x7d\xa3\x07\x86\xa8\x9a\x5e\x0c\x3c\xd3\xc4\xb5\x67\x36\ \xf7\x48\x40\x16\x00\xc1\x1a\x85\xf7\x33\x14\x42\x73\xe6\x31\x87\ \x0a\x8f\x39\xe6\xb9\xf1\x4c\x7c\xdf\xeb\xdf\x11\x49\xca\x2e\x7b\ \x0c\xdc\x5e\x68\xa7\xc0\x41\x3b\x6d\x4d\x61\x41\x73\x1b\xb4\x22\ \xed\xca\x78\xc2\xce\xc4\xed\x36\x5e\x9b\xde\x15\xa8\x9a\xde\xd8\ \x1a\x08\x93\xe6\xbb\xc8\xf6\x03\x16\xaa\x9a\xde\xe0\xc9\xbb\x19\ \xfd\x13\x91\x49\x52\x0b\x59\x2e\x0a\x3b\x0f\x2f\x76\xde\xa6\x1f\ \x87\xee\xb7\x2b\x6f\x7c\x20\x76\xc0\xbe\xf8\xd6\x31\x6c\xd6\xb7\ \x37\x5b\x6d\x2a\x3b\xe7\x09\x55\x5b\x4b\x72\x71\x29\x75\x56\x82\ \x64\xe9\x42\x92\x65\x36\x4e\xc5\x1a\x9c\x8a\x0a\xa8\xac\xc0\x59\ \xeb\x8b\xca\x0a\x9c\xda\x3a\x94\xf6\xed\x51\xda\xb5\x43\x69\xd7\ \x1e\xda\xb5\x47\x69\xd7\x01\xa5\x5d\x7b\xf7\x6b\xbd\xf5\xc9\x2b\ \x52\xc9\x2f\x2a\x26\xaf\xa8\x18\xa5\x63\xa7\xb0\x7f\x87\x59\x69\ \x4d\x45\x25\xa7\x5c\x7e\x3b\x15\x95\x55\x42\xe2\x29\x8a\xc2\xd9\ \xc7\x0d\x13\x12\x2b\x44\x1b\x03\x47\x13\xc2\x22\x72\x55\xd3\xfb\ \x01\x33\x80\x73\x2c\xd3\x78\xa1\x95\x97\x8b\xd8\x3a\x35\x08\xf8\ \xc7\x39\xd2\xaa\xa6\x1b\xb8\x33\x23\x2d\xd1\x16\x98\xa4\x6a\xfa\ \x13\x96\x69\x9c\xb9\xf6\x2f\x08\xdf\x06\x28\x35\x2c\x9e\xb0\x2f\ \x00\xee\x0f\x3b\x0f\xaf\xaa\x6b\x6a\x38\xe3\xea\xbb\x99\xfb\xeb\ \x1f\x42\xe3\x96\x14\xc7\x78\xf7\xff\xee\x62\xbd\x2e\x72\x50\x49\ \x47\xb2\x6c\x11\xb5\xf3\xbe\x27\xb9\x20\x4e\x5d\x69\x82\x64\xa9\ \x45\xb2\xcc\x06\x1f\xd7\x58\x28\x9d\xba\x90\xa7\xf6\x22\x3f\xd6\ \x8b\xbc\x5e\xbd\x29\xd8\x74\x0b\xf2\xfb\x6e\x06\xb2\x2f\x82\x27\ \x67\x5d\x7b\x8f\xd0\x59\xb1\xa1\xfb\x0c\xe2\xbf\xe7\x9e\x20\x2c\ \x5e\x88\xe6\x00\xdb\x94\x14\xc7\x02\x1b\xb4\x54\x4d\xcf\xc3\xdd\ \xca\x57\x7f\x34\xef\x4b\x96\x69\x1c\xdd\xca\x18\xd5\x78\x3b\xef\ \xe5\x6a\xcb\x34\x6e\x5b\x2b\xde\x29\xb8\x3b\xeb\xd2\xf1\x33\x30\ \xd8\x32\x8d\x32\x90\x05\x40\x20\x52\x0b\x58\x7e\xa3\xe5\x15\x5b\ \xa4\x59\x8b\x96\x70\xe2\xa5\xb7\xb1\xb2\x7c\xb5\xd0\xb8\x7b\x6a\ \x3b\x30\xee\xfe\x6b\x03\x39\x90\x25\xd3\x25\x97\x2d\xa5\x6e\xee\ \x6c\x6a\xe7\x7e\x4f\xed\x8f\xdf\xbb\x83\x7d\x04\x28\x6d\xdb\x91\ \xbf\xd9\x16\x14\x6c\xb9\x2d\x05\x5b\x6c\x4b\x7e\xc9\xc6\x20\xff\ \x3c\x5b\x6c\xcc\x73\xe3\xb9\xe5\xe1\x66\xb7\x7d\xb7\xd8\x46\xbd\ \x8b\x78\xfa\xce\x2b\x7d\x3b\x78\x28\x04\x23\x4a\x8a\x63\xaf\x07\ \x75\x33\x55\xd3\xdf\x06\xd6\x6d\xd5\x18\x07\xb4\xd4\x36\xbf\x96\ \xc4\x58\x0c\x78\x59\x80\xf1\xa2\x65\x1a\xc7\xa4\x62\x6d\x02\xcc\ \xc5\xdb\xec\x7d\x15\x70\x84\x65\x1a\x6f\xca\x02\x20\x00\xf1\x84\ \x7d\x06\xf0\x78\xd8\x79\x88\x34\xfd\xeb\x1f\xb8\xf8\x96\x31\xc2\ \x5b\x8c\x8e\x3a\x7e\x38\xd7\x9e\x7b\xbc\xd0\x98\x59\xc1\x71\xa8\ \xfd\xf9\x47\x6a\xcc\xa9\xd4\xfe\xf8\x1d\xc9\xd2\x85\x61\x67\xd4\ \x22\x4a\xfb\x0e\x14\x6c\xbe\x35\x05\x3b\x0e\xa0\xb0\xff\x60\x94\ \xf6\x19\xb9\xa5\x3b\x10\x9f\x98\xdf\x70\xec\x85\xb7\x08\xdb\x19\ \xd3\xbe\x5d\x5b\x9e\xbe\xf3\x4a\x36\xea\x9d\xe9\x07\xeb\xfd\xc3\ \xac\x92\xe2\xd8\xce\x41\xdc\xa8\x99\x23\x7d\xab\x81\x23\x2d\xd3\ \x98\xd0\x82\x38\xdf\x03\x5b\x7b\x48\x65\xa6\x65\x1a\x03\x53\xb3\ \x11\x16\xd0\xd3\x43\xac\xb5\x8d\x95\x05\x80\xcf\x52\x0b\x57\x7e\ \xc2\x7d\x86\x95\x55\xc6\xbe\xfc\x16\x63\x5f\x9e\x24\x3c\xee\x63\ \xb7\x5c\xc2\x61\xfb\xfb\x7e\x10\x56\x46\x48\x2e\xb2\xa8\x9e\xf6\ \x09\x35\xd3\x3e\x89\xcc\xa7\xfc\xb4\x15\x16\x52\xb8\x93\x46\x9b\ \xc1\x7b\x51\xb0\xf5\x0e\x72\x66\x60\x2d\xf1\x84\xcd\x41\x27\x5d\ \x26\xb4\x59\xcf\xad\x97\x9c\xc6\xbe\xbb\x06\x32\x56\x06\x6d\x48\ \x49\x71\xec\x1d\x3f\x6f\xa0\x6a\xfa\x66\xc0\x8f\x40\x73\xcf\xb3\ \x9e\xb2\x4c\xe3\xb4\x66\x62\xbd\x89\xb7\xa3\x7d\x17\x5a\xa6\x51\ \xac\x6a\xfa\xbb\xc0\x81\x1e\xe2\xac\xeb\x17\x59\x00\xf8\x2c\x9e\ \xb0\x87\x00\x6f\x85\x9d\x87\x1f\x1c\xc7\xe1\x92\x5b\x1f\x61\xda\ \xac\xef\x85\xc6\xed\xd0\xbe\x1d\x6f\x8e\xbd\x2d\x67\x17\x05\x3a\ \xab\xcb\xa9\x99\x39\x8d\xea\x69\x53\xa8\xfb\x65\x6e\xd8\xe9\xf8\ \x42\xe9\xb2\x1e\x6d\x06\xed\x41\xe1\xe0\xbd\xc8\xef\xb3\x51\xd8\ \xe9\x84\x6a\x4d\x45\x25\x87\x9c\x76\x15\x73\x7e\x11\x77\x46\xda\ \xd1\x87\xec\xcb\x05\x27\x8f\x10\x16\x2f\x62\xde\x2c\x29\x8e\x89\ \xdf\x92\x94\xd2\xc0\x73\xff\xe6\xfc\x0c\xec\x62\x99\xc6\xd2\x46\ \xe2\xdd\x09\x5c\xe6\x21\xa5\x0a\xe0\x0a\xe0\x41\x0f\x31\xd6\x55\ \x09\xf4\x69\xb6\x00\x50\x35\x7d\x6f\xdc\xd5\xeb\xef\x01\xaf\x5a\ \xa6\xb1\x48\x60\x12\x59\x2f\x9e\xb0\x5f\x02\xb2\xb6\xdd\xdd\xaa\ \xf2\x35\x9c\x78\xd9\x6d\x2c\x14\x7c\x4c\x70\x2e\x2e\x0a\x4c\x2e\ \x2d\xa3\xea\x9d\x09\x54\x7f\xfa\x3e\xd4\x78\xed\x20\x9a\x39\xf2\ \x37\xdd\x82\x76\x87\x8c\xa0\x60\xdb\x9d\xc2\x4e\x25\x14\xa2\x17\ \xfd\x6d\xbf\xe5\xa6\x3c\x72\xd3\x45\xe4\xe7\x67\xed\x0c\x4b\x2d\ \xd0\xab\xa4\x38\xb6\xd8\x8f\xe0\xaa\xa6\x4f\x02\x1a\xdc\x36\xd7\ \x84\x4a\xe0\x30\xcb\x34\x26\x37\x10\xef\x48\xe0\x25\x0f\x29\x39\ \xa9\x2f\x91\x7f\xa0\x43\x2d\xd3\x78\xbb\x25\x05\xc0\xe3\xc0\xda\ \x5d\x29\x2a\x81\x3f\x70\xb7\x37\x4c\x02\x26\x5a\xa6\x51\x29\x30\ \xb1\xac\x11\x4f\xd8\x5d\x71\x2b\xc9\x8c\xea\xfb\xdf\x5a\x3f\xcd\ \x5f\xc0\x69\x57\xde\x45\xb5\xe0\x41\x2b\x57\x16\x05\x26\x17\x95\ \x52\xf5\xb6\x41\xf5\xe7\x1f\x43\x5d\x5d\xd8\xe9\x84\x26\xbf\x64\ \x63\xda\x1e\x3c\x82\xc2\x9d\x34\x50\x94\xb0\xd3\x09\x84\xe8\x45\ \x7f\x1b\xac\xd7\x85\x67\xee\xb9\x9a\xee\xeb\x77\x15\x16\x33\xa2\ \x2e\x28\x29\x8e\x89\xfc\x44\x0c\x78\x3e\xc1\xcf\x01\x1e\xb4\x4c\ \xe3\xc2\x75\x62\xf6\xc1\x1d\x33\xa3\xe2\x51\xcb\x34\xce\x81\x16\ \xec\x02\x50\x35\x7d\x3a\xa0\x35\x13\x70\x15\xf0\x0b\x6e\xd7\xa3\ \x09\x96\x69\x7c\xd8\xcc\xeb\x73\x42\x3c\x61\x9f\x06\x3c\x19\x76\ \x1e\x41\x98\xf4\xd1\x17\xdc\xf2\xf0\xb3\xc2\xe3\x66\xf3\xa2\xc0\ \xe4\xc2\x05\x54\x4e\x7a\x9d\x9a\x19\x53\x7d\xdd\xae\x97\x69\xf2\ \x8b\xfb\xd0\x76\xe8\x08\x0a\x07\xee\x9a\xd5\xeb\x04\x44\x2f\xfa\ \xcb\xcf\xcf\xe3\xe1\x1b\x2f\x64\xc7\xad\x36\x13\x12\x2f\xe2\xbe\ \x2a\x29\x8e\xf5\x17\x19\x30\xb5\xc2\x7e\x1e\xcd\x3f\xf7\x6f\xce\ \xf7\xc0\x20\xcb\x34\xfe\x5a\xd0\xa1\x6a\x7a\x12\x88\x42\x55\x3b\ \xd7\x32\x8d\x2d\xeb\xff\xa3\x25\x05\x80\x4d\xeb\x57\x1d\x3a\xc0\ \x12\x60\x8e\x65\x1a\x7b\xb6\x3a\xc5\x2c\x11\x4f\xd8\x9f\x00\x7b\ \x84\x9d\x47\x50\x6e\x7b\x74\x1c\x13\xdf\x9f\x2a\x3c\x6e\xb6\x2d\ \x0a\x4c\x2e\x5b\x4a\xe5\x2b\xcf\xb8\x03\xbf\x5c\x83\xd3\xa8\xbc\ \x98\x4a\xfb\xa3\x4e\xa6\x60\x7b\xa1\xef\xf3\x91\xe0\xc7\xa2\xbf\ \xf3\x4f\x3a\x9c\x63\x0e\xdd\x4f\x58\xbc\x0c\xb0\x75\x49\x71\x6c\ \x8e\x88\x40\xa9\xe7\xfe\x0b\x81\x98\x88\x78\xc0\x6a\x60\x88\x65\ \x1a\x9f\xa6\xe2\xaf\x01\xc4\x9f\xf2\xd4\x3a\x15\x40\x2f\xcb\x34\ \x96\xd7\x7f\xa3\x25\xe5\x75\x3a\xc7\xc0\x29\xb8\xfb\x1e\x77\x4f\ \xe3\xda\xac\x10\x4f\xd8\x1b\x91\x63\xbf\xff\x4b\x4f\x3b\x92\x2d\ \x37\x11\xbf\x70\xef\xe2\x5b\xc7\x08\x5d\x20\x15\x9a\x64\x1d\x55\ \xef\xbd\x41\xf9\xd5\xe7\x52\x63\x7e\x26\x07\xff\x66\x24\x6d\x8b\ \xd5\x0f\x8c\x66\xcd\x43\xb7\x93\x5c\xe2\xcb\xe3\xde\x50\xd4\x77\ \xfa\x13\x39\xf8\xef\x33\x68\xa7\x5c\x1b\xfc\x01\x44\x4e\x0d\x4e\ \x44\xdc\xe0\x0f\xee\x81\x6f\x53\x54\x4d\x1f\x9d\xfa\xef\x0a\x81\ \xb1\xd3\xe1\xe0\xae\x51\x58\xbe\xf6\x37\x9b\x2c\x00\x54\x4d\xef\ \x89\xb7\x86\x03\xb9\xb3\x92\xe9\xdf\x8e\x27\x1a\x53\x3e\x81\x29\ \x2c\x2c\xe0\xb6\xcb\xcf\xa0\x6b\x67\xb1\x87\x1d\xfa\xf1\x86\x19\ \xb4\xda\x9f\xe6\x50\x7e\xfd\x25\x54\xbe\xfc\x7f\x38\x55\x72\xc9\ \x4c\x6b\xd4\x7c\x3d\x83\xf2\x6b\xce\xa7\xea\xad\xd7\xb3\x62\x8d\ \x84\xe8\x82\xb6\xa4\xb8\x28\x6b\x1f\x93\x35\xe3\xb8\x78\xc2\xf6\ \xfc\x8c\x48\xd5\xf4\xd3\xf1\xb6\x4d\xaf\x31\x0a\x70\x95\xaa\xe9\ \x33\x81\xb0\xdf\xbc\x1e\xb0\x4c\xe3\xfd\x75\xbf\xd9\xdc\xff\x3c\ \xaf\x7b\x0e\xc5\x34\xb3\xce\x4c\x39\xf9\x37\xb2\xa8\x47\x37\x6e\ \xba\xe8\x54\xf2\x04\x2f\xe2\x8a\x27\x6c\xce\xba\xf6\xde\x8c\x3b\ \x3e\xd8\x59\xb9\x82\x8a\xb1\x0f\xb2\xfa\xf6\x6b\xa9\x4b\x44\x69\ \x1d\x50\x66\x71\xaa\xab\xa8\x7c\x7d\x1c\xab\xae\xbb\x90\xda\xb9\ \x62\xb7\x9d\x06\x49\xf4\xe1\x57\xed\xdb\xb5\xe5\xf6\xcb\xcf\xa0\ \x43\xfb\xac\x5e\x67\xdc\x98\xde\xc0\xde\x5e\x02\xa4\x4e\xca\x7b\ \x44\x4c\x3a\x8d\xea\x4f\xb8\x5d\x60\x67\x5b\xa6\xd1\xe0\x39\x34\ \xcd\x15\x00\x5e\x9f\x5f\x8b\xed\x15\x9b\x21\xe2\x09\x7b\x10\x90\ \x13\x2b\x71\x1a\xa2\xed\xb0\x25\xa7\x1d\x25\xbe\xa0\xce\xb4\xe3\ \x83\x6b\x66\x99\xac\xba\xe6\x3c\xaa\xa7\x4d\x09\x3b\x95\xac\x91\ \xb4\x12\xac\xbe\xf3\x3a\x2a\x9e\x7d\x2c\xe3\xb6\x4a\x7e\x62\x7e\ \xc3\xe8\x47\xc4\x9e\x65\x73\xcd\xa8\xe3\xe8\xdb\x47\x15\x1a\x33\ \xc3\x78\x3a\xe4\x20\xb5\x77\xff\x21\xdc\x29\x72\x3f\x85\x75\x40\ \xc6\x1a\x60\x70\x63\xbf\xd8\x5c\x01\xb0\x9d\xc7\x9b\xaf\xf4\x78\ \x7d\xa6\xca\x8a\x93\x37\xbc\x38\x79\xc4\x7f\xd8\x75\xe7\x6d\x84\ \xc7\xcd\x88\xe3\x83\x6b\x6b\xa9\x78\xe1\x29\xd6\x3c\x7c\x07\xce\ \xea\xb0\x67\xfe\xb2\x53\xf5\x94\xc9\x94\xdf\x72\x39\x49\x2b\x11\ \x76\x2a\x2d\x52\x3f\x83\x95\x4c\x8a\x1b\x67\x8e\x3c\x78\x1f\xf6\ \xdb\x35\xfb\x16\x48\xb6\x92\x1e\x4f\xd8\x9e\x9e\x39\x5a\xa6\x71\ \x31\xb0\x3f\xe1\x3f\xa7\x17\xcd\xc1\x5d\x88\xd8\xe8\x9b\x50\x73\ \x05\xc0\x46\x1e\x13\x58\xe6\xf1\xfa\x8c\x93\x3a\xf8\x27\x6b\x1b\ \xff\xb4\x94\xa2\x28\xdc\x70\xe1\x29\x14\xc7\xbc\x9c\x81\xd1\xb0\ \x28\x2f\x0a\x4c\x2e\xb6\x29\x1f\x7d\x15\xd5\x1f\x64\x65\xf3\xc7\ \x48\xa9\x5b\x10\xa7\xfc\xa6\xcb\x22\x3f\xc3\xe2\xc7\x1a\x96\xed\ \xb6\xd8\x84\xf3\x4e\xd4\x85\xc5\xcb\x60\x9d\x80\xe1\x5e\x83\xa4\ \xb6\xae\xf7\xc2\x3d\x71\x30\x5b\xdc\x69\x99\xc6\x27\x4d\xbd\xa0\ \xb9\x02\x20\x9d\x1d\x00\x6b\xfb\xdd\xe3\xf5\x99\xe8\x60\x60\xfd\ \xb0\x93\x88\x82\xce\x1d\xdb\x73\xdb\xe5\x67\xd2\xb6\x8d\x97\x93\ \x30\xff\xad\xfe\x0d\x75\xc5\xaa\x68\x7d\xba\xae\x99\x39\x8d\xf2\ \x1b\x2e\xa1\xee\xf7\x5f\xc3\x4e\x25\x67\x38\x55\x95\x54\x8c\x7d\ \x90\x8a\xa7\x1e\x8a\xec\xe2\xca\x8b\x6e\x11\x5b\xb0\x76\x5b\xaf\ \x0b\xa3\x2f\x3d\x9d\x02\x79\xec\x72\x3d\x21\x33\xae\x96\x69\x2c\ \xb7\x4c\x63\x6b\x60\x0c\xfe\x3f\x12\xf0\xdb\xd7\x96\x69\x5c\xd9\ \xdc\x8b\x1a\x2d\x00\x04\xec\x00\x00\xb7\x31\x50\xae\xc9\xf9\xe9\ \xff\xb5\xf5\xeb\xdb\x9b\xcb\xcf\x3c\x46\x78\xdc\x78\xc2\xe6\xca\ \x3b\x9e\x10\x1e\x37\x2d\xc9\x24\x15\xe3\xc6\xb2\xe6\xd1\xbb\x71\ \x2a\xd6\x84\x9d\x4d\x4e\xaa\xfe\xfc\x63\xca\x6f\xba\x2c\x72\xa7\ \x24\x8e\x79\x6e\x3c\x6f\x7c\x20\xee\x6d\x30\x3f\x3f\x8f\x5b\x2f\ \x39\x8d\xee\xdd\xb2\xbe\xd3\x5f\x6b\xec\x1b\x4f\xd8\xc2\x16\xd9\ \x59\xa6\x71\x2e\x30\x04\xb7\xeb\x6d\x26\x2a\x07\x76\x6b\xc9\x0b\ \x9b\x9a\x01\x58\xf7\x0c\xe4\x74\xbc\x2d\x20\x46\xc6\x88\x27\xec\ \x0d\x70\x7f\x70\xa4\xb5\x0c\xdd\x7b\x17\x86\x1f\x20\xbe\x25\xc2\ \x84\xf7\xa7\xf2\xd6\xc7\x5f\x08\x8f\xdb\x2a\x35\x35\xac\x79\xe4\ \x2e\xaa\x3f\xcc\xa9\x1f\xf5\x48\x4a\x5a\x09\xca\x6f\xbb\x3a\x32\ \x33\x30\x7e\x2c\x5a\x3d\xe7\xb8\x61\xec\xb8\x75\xce\xae\x2f\x6e\ \x4c\x1e\x70\xac\xc8\x80\x96\x69\xbc\x8b\xbb\x72\xff\x67\x91\x71\ \x03\xe0\x00\xfb\x5b\xa6\xd1\xa2\x4f\x22\x4d\x15\x00\x2d\xaa\x20\ \x9a\x90\xb4\x4c\x23\x1a\x7f\x13\x83\x73\x34\x20\x76\xbe\x18\x7f\ \x0e\xea\x00\x00\x20\x00\x49\x44\x41\x54\x3b\x4b\x5c\x7c\xea\x48\ \x5f\x4e\xf7\x7b\xe1\x8d\xf0\xba\x4e\x3b\x15\x6b\x58\x7d\xef\x4d\ \xd4\xcc\x32\x43\xcb\x41\xfa\x27\x67\xd5\x4a\x56\xdf\xf1\x5f\x6a\ \xe7\x7c\x17\x6a\x1e\xa5\x65\x4b\x39\xfb\xbf\xf7\x09\xdd\xb6\xba\ \xf7\xa0\x1d\x39\xf6\xb0\xfd\x85\xc5\xcb\x32\xc2\x67\x5e\x2d\xd3\ \x58\x6a\x99\x46\x3f\x60\xac\xe8\xd8\x3e\xba\xd9\x32\x8d\xe9\x2d\ \x7d\x71\x53\x05\x40\x0f\xc0\xcb\x4f\xef\xf2\xe6\x5f\x92\x75\x72\ \x72\xef\x7f\x4b\x14\x16\x16\x30\xfa\xf2\x33\x84\x9f\xee\xf7\xd5\ \xec\x9f\x08\xe3\x48\x6b\x67\xe5\x72\x77\xa0\x99\xf7\x43\xe0\xf7\ \x96\x9a\xe6\x54\x55\xb2\xfa\xfe\x5b\xa8\x99\x19\xde\x13\xc8\x8b\ \x6e\x7e\x98\x65\x2b\x56\x09\x8b\x57\x52\x1c\xe3\xbf\xe7\xca\xa7\ \x8b\x4d\xd8\x3a\x9e\xb0\x77\xf4\x23\xb0\x65\x1a\xa7\x03\xc3\x88\ \x7e\x5f\x9b\x19\x96\x69\x5c\xdf\x9a\x0b\x1a\x2d\x00\x2c\xd3\x18\ \x66\x99\x46\x3e\xd0\x19\x18\x04\x9c\x0e\xdc\x01\xbc\x82\xfb\x6c\ \xff\x67\xa0\x0c\xf7\x39\x49\x43\x85\x42\x34\x97\x69\xfb\x24\x9e\ \xb0\x37\x07\x06\x86\x9d\x47\x94\x15\x75\xef\xc6\x85\x27\x1f\x21\ \x34\xe6\x8a\x55\xe5\xac\x5a\x1d\xec\xee\x1d\x77\xa5\xff\xd5\xd4\ \xfd\x31\x3f\xd0\xfb\x4a\xad\x50\x5b\xcb\x9a\xc7\xee\xa5\xfa\xa3\ \x77\x03\xbf\xf5\xf4\xaf\xe7\x30\x65\xfa\x37\xc2\xe2\xb5\x6f\xd7\ \x96\xdb\x2e\x3f\x33\x57\x9b\xfd\xb4\x86\x6f\x15\x92\x65\x1a\x13\ \x81\x0d\x81\xa8\xfe\xa5\x5f\x09\xb4\xfa\xdc\x9d\x66\x17\xf9\xa5\ \xf6\x10\x4e\x4f\x7d\x35\x4a\xd5\xf4\x0e\xc0\xb6\xc0\xd6\xb8\x4d\ \x70\x5a\x3c\x0d\x91\x25\xfc\x68\x25\x99\x75\x66\xcf\xfb\x4d\x68\ \xbc\x36\x6d\x0a\xe9\xd2\xa9\x83\xd0\x98\x4d\x49\x2e\x5c\x40\xf9\ \x5d\xd7\xe3\xac\xc8\xc5\x09\xae\x0c\xe3\x38\x54\x3c\xff\x04\xce\ \x9a\xd5\xb4\x3d\xf8\xf0\xc0\x6e\xfb\xc5\x2c\xb1\xb3\x42\x57\x9d\ \x7d\x2c\x1b\xe7\x76\xb3\x9f\x96\x3a\x18\x68\xb0\xe3\x9d\x08\x96\ \x69\x2c\x02\x36\x56\x35\xfd\x19\xa2\xb5\xd8\x3b\x09\xec\x63\x99\ \x46\xab\x17\x2d\x7a\x5d\xe5\xff\x97\xd4\xa2\x03\x33\xf5\x95\x8b\ \xf6\x09\x3b\x81\xa8\x5b\xb5\xba\x82\xb7\xa7\x88\xad\x0b\x7b\x17\ \xf5\x10\x1a\xaf\x29\xc9\x25\x65\xac\xbe\xe7\x26\x39\xf8\x67\x98\ \x4a\x63\x1c\x4a\x87\x8e\xb4\xd9\xe7\xa0\x40\xee\x37\x6f\xbe\xb8\ \x96\xcf\x9d\x3a\xb4\x67\x4f\x6d\x07\x61\xf1\xb2\xdc\xa6\xf1\x84\ \xdd\xa7\xa4\x38\xb6\xc0\xcf\x9b\x58\xa6\x71\xa2\xaa\xe9\x93\x80\ \x71\x44\x63\xcd\xd7\x7f\x2d\xd3\xf8\x2a\x9d\x0b\xb3\xf7\xb0\xed\ \x00\xc5\x13\x76\x01\x39\x76\xf2\x5f\x3a\xde\xf8\x60\x2a\x15\x95\ \x62\x1f\xa3\x1d\x75\x70\x30\x75\x97\x53\xbe\x92\xd5\xf7\xde\x48\ \x72\xd9\x92\x40\xee\x27\x89\x55\x31\xee\xc9\xc0\xd6\x04\x74\xed\ \x2c\x6e\x9d\x4b\xf9\x9a\x0a\xde\xfc\x70\x9a\xb0\x78\x39\x20\x90\ \x37\x04\xcb\x34\x5e\x05\x4a\x80\xb0\x0f\xf8\xf8\xdc\x32\x8d\xd1\ \xcd\xbf\xac\x61\xb2\x00\x10\x63\x00\xee\x5a\x09\xa9\x11\xc9\x64\ \x92\x57\xdf\x9e\x22\x34\x66\xfb\x76\x6d\x39\x6e\x98\xff\xab\xa2\ \x9d\xaa\x4a\x56\xdf\x77\x6b\xc6\xb4\x9d\x95\x1a\xe0\x38\xac\x79\ \xf2\x81\x40\x76\x07\x14\x75\xf7\xda\x3f\xed\x9f\x5e\x78\xe3\x03\ \x92\x19\x76\x08\x56\x88\x02\x9b\x89\xb5\x4c\xc3\xb2\x4c\xa3\x04\ \x78\x39\xa8\x7b\xae\x63\x39\x1e\x7f\xbf\xb2\x00\x10\xc3\xd3\x89\ \x54\xb9\x60\x8a\xf9\x0d\xa5\x8b\x97\x0a\x8d\x79\xfc\xf0\x03\x58\ \xbf\xab\xcf\x75\x57\x5d\x1d\x6b\x1e\xbe\x93\xba\xf9\x99\xb6\x1d\ \x58\xfa\x97\xda\x5a\xd6\x3c\x74\xbb\xef\x7d\x02\x86\xee\xb3\x8b\ \xd0\x78\x0b\xed\x32\x3e\x9c\x36\x4b\x68\xcc\x2c\x16\xf8\x7b\xb1\ \x65\x1a\x47\xe1\xf6\x21\x08\xf2\x74\xaa\x24\xb0\xb7\x65\x1a\xd5\ \x5e\x82\xc8\x02\x40\x0c\xf9\xfc\xbf\x19\x2f\x4f\xfa\x58\x68\xbc\ \xb6\x6d\x0a\x39\xe7\xb8\x61\x42\x63\xfe\x8b\xe3\xb0\x66\xec\x03\ \xd4\xfe\x20\x6e\x45\xb7\x14\x2e\x77\x36\xe7\x66\x5f\x3b\x06\xf6\ \xeb\xdb\x87\x9d\xb6\xee\x27\x34\xe6\x73\xe3\x27\x0b\x8d\x97\xc5\ \xfa\xc4\x13\xf6\xa6\x41\xdf\xd4\x32\x8d\x17\x80\x4d\x80\xa0\x5a\ \x51\x5e\x61\x99\x86\xe7\x37\x26\x59\x00\x78\x14\x4f\xd8\x6d\x81\ \x5d\xc3\xce\x23\xca\xe6\xfe\xfa\x07\xdf\xfe\xf8\x8b\xd0\x98\xc7\ \x1c\xba\x1f\xb1\xee\xfe\x1e\xb9\x50\xf5\x96\x41\x8d\x39\xd5\xd7\ \x7b\x48\xc1\x73\x56\xad\x64\xf5\x43\xb7\xf9\x7a\x76\xc0\xb9\x27\ \x78\x3e\x9f\xe6\x1f\x7e\x9a\xbf\x80\x99\xdf\xcd\x15\x1a\x33\x8b\ \x85\xf2\x81\xcc\x32\x8d\x05\x96\x69\x14\x03\xe3\x7d\xbe\xd5\x14\ \xcb\x34\xee\x16\x11\x48\x16\x00\xde\x0d\x02\xe4\x06\xdd\x26\xbc\ \x34\x49\x6c\xb7\xbe\xc2\xc2\x02\xe1\x6f\xb0\xeb\xaa\xfd\xf9\x47\ \x2a\x27\xbc\xe8\xeb\x3d\xa4\xf0\x24\xad\x04\x95\xcf\x3f\xe9\x5b\ \xfc\xff\xec\xa5\x31\x60\xbb\x2d\x84\xc6\x7c\xd6\x78\x4f\x68\xbc\ \x2c\x16\xea\x8c\xac\x65\x1a\x3a\x70\x0a\x50\xeb\x43\xf8\xa5\xb8\ \x47\x17\x0b\x21\x0b\x00\xef\xe4\xf4\x7f\x13\xca\x96\xad\xe0\xc3\ \xcf\xc5\x3e\xbf\x1c\x39\x74\x6f\x7a\xf9\x70\xcc\x70\x3d\xa7\x7c\ \x15\x15\x8f\xdd\x0b\x72\xe1\x55\x56\xab\xfe\xfc\x63\x5f\x8f\x12\ \xfe\xef\x79\x62\xb7\x8a\xcf\xfc\x6e\x2e\xf3\x7e\x0b\x7b\xd1\x79\ \x46\xd8\x3b\x9e\xb0\x95\x30\x13\xb0\x4c\xe3\x69\xa0\x1f\x60\x0b\ \x0c\x9b\x04\x76\xb7\x4c\x43\x58\x61\x21\x0b\x00\xef\x64\x01\xd0\ \x04\xe3\xdd\x4f\xa9\xa9\x15\x57\x08\x17\xe4\xe7\x73\xde\x09\x3e\ \x9e\x83\xee\x38\xac\x79\xea\x21\xb9\xdd\x2f\x47\x54\x3e\xf7\x84\ \x6f\xbb\x3b\x06\x6c\xb7\x05\x43\xf6\x16\xbb\x20\xf0\xb9\xf1\xef\ \x0b\x8d\x97\xa5\x7a\xe2\x36\xa4\x0b\x95\x65\x1a\xf3\x81\x5e\xc0\ \x24\x41\x21\x2f\xb4\x4c\x63\x8e\xa0\x58\x80\x2c\x00\x3c\x89\x27\ \xec\x8e\xc8\xf6\xbf\x8d\xaa\xad\xab\xc3\x78\xef\x53\xa1\x31\xf5\ \x83\xf6\xa0\xa4\x38\x26\x34\xe6\xda\xaa\x26\xbf\x49\xed\xb7\x5f\ \xfa\x16\x5f\x8a\x16\xa7\xaa\x92\x35\x8f\xdd\x0d\x35\xfe\x2c\xe0\ \xbe\xe6\x9c\xe3\x28\xc8\xcf\x17\x16\xef\xa3\x2f\x66\xb1\xd0\x2e\ \x13\x16\x2f\x8b\x45\xe2\x83\x99\x65\x1a\x49\xcb\x34\x0e\x01\xce\ \x02\xea\x3c\x84\x7a\xdf\x32\x8d\x87\x04\xa5\xf5\x17\x59\x00\x78\ \xb3\x3b\xd1\xe8\x04\x15\x49\x53\x67\x7e\xc7\xf2\x95\xe5\xc2\xe2\ \xe5\xe5\x29\x5c\x70\x92\x7f\x2d\x5d\xeb\xe6\xff\x4c\xe5\x6b\xcf\ \xf9\x16\x5f\x8a\xa6\xba\x05\x71\x2a\x5e\x7c\xca\x97\xd8\x1b\x6f\ \xd8\x8b\xe3\x86\x8b\xeb\x55\x91\x4c\x26\x79\xe1\x8d\x0f\x84\xc5\ \xcb\x62\x91\x28\x00\xea\x59\xa6\xf1\x38\xb0\x15\xee\xf9\x39\xad\ \x55\x06\xf8\xd2\xc6\x52\x16\x00\xde\x44\xea\x87\x2c\x6a\x26\x7d\ \xf4\x85\xd0\x78\x87\xed\xb7\x1b\x1b\x6f\xd8\x4b\x68\xcc\xbf\xd4\ \xd5\x51\xf1\xbf\x87\xa1\xce\x4b\x91\x2e\x65\xaa\xea\x29\x93\xa9\ \x9d\xfb\xbd\x2f\xb1\x2f\x3e\x75\x24\x6d\xdb\x88\xfb\x9c\xf0\xd6\ \xc7\xd3\xa9\xaa\x0e\x72\xcb\x79\x46\xda\x33\x9e\xb0\x23\x35\xbe\ \x59\xa6\xf1\x13\x10\x03\x5a\xf3\x1c\xa7\x0e\xd8\xd5\x32\x0d\x5f\ \x16\x24\x45\xea\x7f\x50\x06\x92\x05\x40\x23\x96\x2c\x5f\xc9\x34\ \x81\x87\xa2\x28\x8a\xc2\x05\x27\x8f\x10\x16\x6f\x5d\x55\xef\xbd\ \x41\x5d\xc2\xd7\x16\xe2\x52\xc4\x55\x3c\xf7\xb8\x2f\x05\x60\x8f\ \x6e\xeb\x71\xc4\x10\x71\xfd\x69\x2a\x2a\xab\x98\x3a\xd3\xff\x8e\ \x86\x19\x6e\x3d\x60\xa7\xb0\x93\x58\x57\xea\x91\xc0\x01\xc0\x05\ \x34\x7c\x8a\xee\xba\x46\xa5\x0a\x07\x5f\x34\x78\x18\x50\xaf\x5d\ \x86\x3f\xe7\x38\x79\xc7\x81\x93\x54\xa0\xce\x71\xa8\x41\xa1\x1a\ \xa8\x52\xa0\x32\xe9\x28\x6b\x94\xbc\xe4\x6a\x1c\xca\x15\x94\x95\ \x38\xac\x48\xe6\xb1\x5c\x71\x94\xa5\x8a\xc3\x12\x25\x99\x3f\x33\ \xf1\xe5\x2b\x59\x7d\x1a\x60\x3c\x61\xaf\x07\xf8\x72\xfe\x74\x36\ \x78\x67\x8a\x29\xb4\x7d\xe9\x90\xbd\x76\x61\xf3\x8d\xfb\x08\x8b\ \xb7\xb6\xe4\x92\xc5\x54\xbd\xf1\x8a\x2f\xb1\xa5\xcc\x91\xb4\x12\ \x54\xbd\x3b\x81\xb6\x43\xc5\x3f\x66\x3a\xeb\x98\x43\x18\x37\xf1\ \x7d\x1c\xc7\x11\x12\x6f\xf2\xd4\x99\xec\xbb\xeb\xce\x42\x62\x65\ \xb1\x7d\x80\x48\x2e\xe8\xb1\x4c\xe3\x41\x55\xd3\x3f\x00\x3e\x03\ \x1a\xeb\x1d\x3d\x29\xf5\xe8\xc0\x37\x0d\x9f\x06\xe8\x28\xf9\xe0\ \x00\xe4\x39\x90\x87\x42\x21\xd0\x01\xdc\xef\x2a\x8a\x03\x8e\xbb\ \xcb\xc2\x01\x50\x40\x71\xdc\xff\x72\x14\x48\xe6\xd7\xce\x21\x02\ \xab\x30\x7d\xb6\x17\x72\x06\xa5\x51\x93\x3e\x12\x7b\x80\xc9\x45\ \xa7\xf8\xf7\xe9\xbf\x72\xdc\x58\x9c\x6a\xb1\x87\x14\x49\x99\xa9\ \xea\xcd\xd7\x28\xdc\x65\x0f\xf2\x36\x10\x7b\xca\xe4\x26\x25\xc5\ \x1c\xb8\xfb\x00\xde\xfd\x74\x86\x90\x78\xd3\x66\xfd\xc0\xaa\xd5\ \x15\x74\xee\xd8\x5e\x48\xbc\x2c\xb5\x0f\x70\x67\xd8\x49\x34\xc6\ \x32\x8d\x39\xaa\xa6\xd7\x3f\x12\xd8\x6b\x9d\x5f\xb6\x81\xc3\xfc\ \xce\x41\x0e\x60\xe9\x93\xfd\xff\x1b\xf1\xfd\x4f\xf3\xf9\xfd\xcf\ \x52\x61\xf1\x0e\xd8\x7d\x00\x5b\xf7\xeb\x2b\x2c\xde\xda\x6a\xbe\ \x99\x49\xcd\x37\x33\x7d\x89\x2d\x65\x1e\xa7\xba\x8a\xca\x17\xfc\ \x59\x10\x28\xb2\x75\x75\x4d\x4d\x2d\x53\xa6\x7f\x2d\x2c\x5e\x96\ \xda\x2d\x9e\xb0\x23\xbd\x48\xdb\x32\x8d\x5a\xcb\x34\xf6\x06\x2e\ \xe3\xef\x47\x02\xb5\xc0\x20\xbf\x9e\xfb\xaf\x4d\x16\x00\xe9\xdb\ \x2b\xec\x04\xa2\x4a\xf4\xa7\xff\x53\x46\x0e\x11\x1a\xaf\x9e\x53\ \x5d\x45\xe5\x38\xff\xba\xc1\x49\x99\xa9\xe6\xeb\x19\xbe\x6c\x05\ \x1d\xb0\xfd\x16\xec\xbc\x8d\xb8\x33\x02\x26\x7f\x26\x0b\xd7\x66\ \x74\x04\xfa\x87\x9d\x44\x4b\xa4\x5a\xfb\xee\x0c\x2c\x01\xce\x48\ \xf5\x10\xf0\x9d\x2c\x00\xd2\x10\x4f\xd8\xf9\x80\xd8\x3e\x9f\x59\ \xa2\xaa\xba\x86\xf7\xa7\x8a\x7b\xf3\x2c\x2e\xea\xce\xee\xfd\xb7\ \x13\x16\x6f\x6d\xd5\xef\xbd\x41\x72\x89\xdc\x53\x2d\xfd\x5b\xc5\ \x4b\x4f\xfb\xd2\x09\x52\xe4\x2c\xc0\x57\xb3\xe7\xb1\x64\xf9\x4a\ \x61\xf1\xb2\x54\xc6\x3c\x8a\xb6\x4c\xe3\x1b\xcb\x34\xba\xa7\xba\ \x08\x06\x42\x16\x00\xe9\xe9\x0b\xb4\x09\x3b\x89\x28\x9a\x32\xfd\ \x6b\x56\xaf\x11\x77\xc8\xca\x91\x43\xf7\x21\x2f\x4f\x7c\x57\x4f\ \xa7\xaa\x92\xaa\xf7\x45\x35\xe8\x92\xb2\x4d\xd2\xb6\xa8\x99\xf1\ \xb9\xf0\xb8\x07\xee\x39\x90\xa2\xee\x8d\xad\xf9\x6a\x9d\xa4\xe3\ \xf0\x81\xc0\x62\x3b\x4b\x6d\x1e\x76\x02\x51\x26\x0b\x80\xf4\xc8\ \x1f\xaa\x46\xbc\xf9\xa1\xb8\xe9\x7f\x45\x51\x38\xea\x10\x7f\x76\ \x5a\x56\x4f\x99\x8c\x53\xbe\xca\x97\xd8\x52\x76\xa8\x7a\xeb\x35\ \x10\xb4\x6a\xbf\x5e\x7e\x5e\x1e\xfa\x41\x7b\x08\x8b\x37\x59\x16\ \x00\xcd\x91\xef\xd5\x4d\x68\x78\x17\x80\xd4\x9c\x9c\xfe\xa1\xaa\ \xa8\xac\xc2\x2e\x5b\x46\x69\xd9\x52\xec\xc5\x4b\xb1\x16\xbb\xff\ \x2c\x2d\x5b\xca\x37\x73\xc4\x1d\xfb\xbb\x5b\xff\x6d\xe9\xa3\xf6\ \x14\x16\xef\x2f\xb5\x35\x54\xbd\x3b\x51\x7c\xdc\x88\x73\x80\x3f\ \xaa\xc1\xae\x81\xc5\xb5\xb0\xa8\x16\x16\xa5\xfe\x7d\x71\x2d\x54\ \x26\xa1\x47\x01\xf4\x2c\x74\xff\xd9\xa3\x00\x7a\xa4\xfe\x7d\xa3\ \x36\xd0\x21\xc7\x3e\x2e\xd4\x25\x16\x50\x33\xcb\xa4\x70\x67\xb1\ \xfd\xfc\x47\x0e\xdd\x9b\x47\x9e\x9f\x20\x24\xd6\x0f\x3f\xcd\x27\ \x51\xba\x98\xe2\x22\xb1\xbb\x16\xb2\x88\xb8\x45\x17\x59\xa8\xc1\ \x02\x60\xa1\x69\x1c\x03\x1c\x13\x70\x2e\x99\x24\x6b\x0b\x00\xc7\ \x71\x58\xba\x62\xd5\xdf\x03\x7b\xd9\x52\x4a\x17\xff\xfd\x65\x97\ \x2d\x65\xc5\xaa\xd5\x81\xe4\x72\xd4\x21\xfb\xfa\x12\xb7\x7a\xea\ \x47\x38\x2b\x96\xf9\x12\x3b\x6a\xaa\x1d\x98\xbe\x1a\x3e\x5c\x09\ \x1f\xad\x72\x07\xfa\x74\x14\x2a\xa0\x75\x84\x7d\x3b\xc3\xde\x9d\ \xa1\x28\xd2\x6b\xab\xc5\xa9\x9a\xf4\x9a\xf0\x02\x60\xf3\x8d\xfb\ \xb0\xed\xe6\x1b\x33\x7b\xde\x6f\x42\xe2\x19\xef\x7d\xc6\xf1\xc3\ \x0f\x60\xbd\x2e\x9d\x84\xc4\xcb\x32\x1b\xc7\x13\x76\x41\x49\x71\ \xcc\x8f\xa3\x79\x33\x9e\x22\xaa\x31\x45\x2e\x89\x27\xec\x4f\x00\ \x71\xf3\x78\x01\xaa\xae\xa9\x49\x0d\xe4\xcb\xfe\x1a\xd0\xd7\xfe\ \x04\x6f\x97\x2d\xa3\xa6\x26\xfc\xbf\x2b\x5d\x3a\x75\xe0\xbb\x77\ \x9e\x16\xda\x42\x15\x80\x64\x1d\xab\xae\x1c\x45\xb2\x6c\x91\xd8\ \xb8\x11\xb2\xaa\xce\x1d\xec\x3f\x5c\x05\x53\xcb\x61\x8d\x0f\x9b\ \x89\xb6\x6e\xef\x16\x03\xfb\x77\x81\xcd\xda\x8a\x8f\x1f\x25\x1d\ \x2f\xba\x96\x82\x6d\xc5\x36\x95\x7b\xf2\xe5\x49\x5c\x77\xef\xff\ \x84\xc6\x6c\xdb\xa6\x90\xa2\x1e\xdd\x88\x75\xef\x96\xfa\xe7\xfa\ \x14\x75\xef\x46\xac\x47\x37\x8a\xba\x77\xa3\x67\xf7\xf5\x68\x53\ \x98\x23\x95\xdb\x3f\x6d\x5e\x52\x1c\xf3\xad\x9b\x5e\x26\x93\x8f\ \x00\xd2\x93\x11\x33\x00\xa5\x65\x4b\xff\x9f\xbd\xf3\x0e\x73\xa2\ \x5a\xff\xf8\x27\xc9\x76\x96\x95\xb6\x64\x87\x00\x01\x11\xa4\x58\ \x40\xd1\xa1\xa9\x08\x0a\x88\xa0\x32\x8a\x8a\x05\x0b\x5e\xbd\x8a\ \xbd\x77\xc5\xde\xf5\x67\xbd\xf6\x6b\xbb\xf6\xd8\x00\x45\xa5\x88\ \x0a\xc4\xde\x40\x50\x11\x03\x84\x10\x7a\xdf\x85\x2d\xf9\xfd\x31\ \x01\x71\xd9\x96\x9d\x33\x2d\x39\x9f\xe7\xd9\x67\x77\xd9\xe4\x3b\ \x2f\x30\x7b\xce\x77\xce\x79\xcf\xfb\x32\xe5\xb3\xaf\x98\xff\xe7\ \x62\x96\xaf\xd0\x27\xf8\xb5\xeb\xdd\xb1\xef\x3d\xa8\xef\x7e\xe2\ \x27\x7f\x60\xdb\x9c\xcf\xd3\x76\xf2\x2f\xab\x82\x97\xd6\xc0\xd3\ \xab\x60\x83\xc9\x2d\x0d\xe6\x96\xea\x1f\x0f\xaf\x80\xc3\x9a\xc2\ \x25\x7e\xe8\x94\xa6\x46\xa0\xec\x83\xb7\x28\x14\x6c\x00\xb4\x21\ \x07\x73\xcb\xff\xbd\x40\x85\xc0\xd2\xc3\x5b\xb7\x95\x13\x89\xc6\ \x89\x44\x6b\x6e\x41\xef\xf1\x78\x68\x56\x54\xb8\x93\x29\x68\xbe\ \xc3\x1c\x6c\xff\xbe\xf9\x6e\x4d\xf1\x78\xc4\x27\xdd\xda\xcc\x9e\ \x80\x34\x00\x35\x20\x0d\x40\x8a\x44\xa2\xf1\xdd\xd0\x1b\x3a\x38\ \x96\x79\x7f\x44\x78\xec\xc5\x10\xdf\xcd\xfd\x5d\x58\xe9\x51\xab\ \x31\xab\xcc\xe9\xb6\xe9\x1f\x99\xa2\x6b\x27\x95\x09\x78\x77\x1d\ \x3c\xbc\x52\xdf\xdf\xb7\x9a\x4f\x37\xc2\xf4\x4d\xa0\x35\x83\x0b\ \x5a\x43\xeb\x34\x1b\x55\x2a\xff\x98\x4f\xe5\x92\xbf\xf0\xb5\xeb\ \x20\x4c\xb3\x65\xf3\x22\x06\xf5\xdb\xcf\xd2\xb3\xfc\x89\x44\x82\ \xb5\xeb\x37\xb2\x76\xfd\x46\x7e\x5d\x18\xa9\xf1\x35\xd9\xd9\x59\ \xbb\xac\x1c\xf8\x5b\x35\xff\xc7\xca\x82\x19\xc6\xdc\x64\xf6\x04\ \x3e\xb0\x3b\x08\x27\x92\x66\xbf\xaa\x96\xe0\xe8\xa7\xff\x37\x27\ \x4f\xe7\xe1\xff\x86\x28\xaf\xb0\x7f\x19\xbf\xb1\x78\xbd\x1e\x06\ \xf5\x15\xdf\x66\xa1\x6a\xf9\x32\x2a\x17\xa6\xd7\x83\xc0\xb4\x8d\ \xf0\x40\x1c\xfe\xb0\xb9\x92\x71\x65\x02\xde\x5c\x0b\x1f\xac\x87\ \xb1\x2d\xe0\x5f\xad\xa0\xa9\xcf\xde\x98\x44\x52\x3e\x6b\x06\xbe\ \x13\x4e\x17\xaa\x79\xd4\xe0\x7e\x8e\x2b\xe6\x53\x5e\x5e\xc1\xd2\ \xd8\x4a\x96\xc6\x56\xd6\xf8\x73\x8f\xc7\x43\xaf\x1e\x9d\x19\x3e\ \xb0\x0f\x83\xfa\xf6\xa2\x20\x3f\xcf\xe2\x08\x1b\x85\x4c\x04\xac\ \x85\x0c\xcb\xeb\x15\x82\x63\x0b\x00\x3d\xf3\xfa\x44\xee\x7f\xe6\ \x0d\x57\x4f\xfe\x00\xbd\xba\x77\xa6\x45\xb3\x22\xe1\xba\xdb\x66\ \x7f\x26\x5c\xd3\x2e\xca\xaa\xe0\xd2\xa5\x70\xde\x62\xfb\x27\xff\ \x9d\x29\xab\x82\xa7\x56\xc1\x88\x85\xf0\x73\xa9\xdd\xd1\x88\xa3\ \x3c\xfc\x85\xf0\x23\x81\x87\xf6\xed\x65\x4a\x8d\x0b\x33\x49\x24\ \x12\x7c\xf7\xcb\x6f\xdc\xf6\xe8\x8b\x1c\x7d\xce\x75\xcc\xfa\xce\ \x9c\x16\xca\x82\x71\xf4\x43\x9b\x9d\x48\x03\x90\x3a\x8e\xbc\x99\ \x16\x46\xa2\xfc\xf7\xad\xf4\x58\xde\x3e\xcc\x8c\xe5\xff\x44\x82\ \xf2\x59\x33\xc4\xeb\xda\xc0\xf2\x72\x38\x69\x11\x4c\x5e\x6f\x77\ \x24\xb5\x13\x2f\x87\x53\x16\xc1\x44\x07\xc7\x98\x0a\x55\xeb\xd6\ \x50\x31\x4f\x6c\x0b\xde\x16\xcd\x8a\xe8\xd5\xbd\xb3\x50\x4d\x2b\ \xd9\xb8\x69\x0b\x97\xdd\xfe\x38\xcf\xbc\xee\xf8\x82\x5a\x8e\x1c\ \xb3\x9d\x80\x34\x00\xa9\xe3\xc8\x9b\xe9\xde\xa7\x5f\x13\x9a\x50\ \x64\x27\x66\xec\xff\x57\xfc\x36\x8f\xaa\xd5\x35\x2f\x6b\xba\x89\ \x1f\xb6\xc0\xb1\x7f\xc2\x3c\x71\xc5\x16\x4d\x63\x6b\x02\x2e\x5f\ \x0a\xf7\xc7\x1b\xd6\xf8\xdc\xe9\x6c\x9b\x3d\x43\xb8\xa6\x29\x66\ \xd7\x42\x12\x89\x04\xcf\xbc\x3e\xc9\x71\x5b\x19\xd5\xf0\x27\x73\ \xb7\x24\xd5\x90\x06\x20\x75\x1c\x67\x00\xca\xb6\x6e\xe3\xa7\xf9\ \x62\xce\x14\xdb\x4d\x49\xab\x16\xec\x65\x42\xe7\xbf\x74\x78\xfa\ \x7f\x67\x1d\x8c\xfd\x0b\x56\xbb\x6c\x87\xe7\xe9\x55\xfa\x56\xc5\ \x26\x97\xbb\x80\x8a\x6f\xc3\x24\xb6\x8a\x75\x5e\x87\xf5\x77\x45\ \xaf\x9a\x7a\x79\xe0\xd9\x37\x2c\xab\x0f\xd2\x48\x1c\x37\x6e\x3b\ \x01\x69\x00\x52\x20\x12\x8d\x7b\x01\xc7\xad\xd9\xfd\xbe\x68\x29\ \x55\x26\x34\x2e\xb1\x83\xe3\x86\x1f\x22\xfc\x18\x52\x62\xdb\x36\ \xca\xbf\x16\xdb\xa1\xd0\x6a\x5e\x58\x0d\xd7\x44\xf5\xc2\x3e\x6e\ \x64\xc6\x46\x18\xbb\x48\xcf\x11\x70\x2b\x89\xad\x65\x54\x7c\x17\ \x16\xaa\xb9\xd7\x9e\x1d\x85\xf5\x06\xb0\x93\x75\x1b\x36\xf1\xf6\ \x47\x8e\xce\xb1\x91\x89\x80\x35\x20\x0d\x40\x6a\x74\x00\x1c\x77\ \xda\x79\xd1\xd2\x98\xdd\x21\x08\xc1\xeb\xf5\x70\xea\xa8\x21\xc2\ \x75\x2b\xe7\xff\x42\xa2\xcc\xbd\x19\x69\x5f\x6c\x82\x7b\x6a\x3e\ \xda\xed\x2a\xe6\x95\xc1\x55\x51\xbd\x24\xb1\x5b\x29\xff\xfe\x2b\ \xe1\x9a\x83\xfb\x8b\xad\x31\x60\x17\xf3\x7e\xff\xcb\xee\x10\xea\ \x42\xae\x00\xd4\x80\x34\x00\xa9\xe1\xc8\x9b\x28\x5d\xf6\xfe\xcf\ \x3d\xf9\x18\xda\xb7\x11\x5f\x62\xa1\xe2\x57\xb1\xc9\x5b\x56\xf2\ \xd7\x36\x3d\xdb\xbf\xd2\xcd\xb3\xe6\x4e\x4c\xd9\x00\x8f\xbb\x38\ \x15\xa3\x62\xfe\x2f\xc2\x4f\x03\x8c\x18\xd4\x4f\xa8\x9e\x5d\xcc\ \x5f\xb8\xd8\xee\x10\xea\xc2\x91\x63\xb7\xdd\x48\x03\x90\x1a\xf2\ \x26\x32\x89\x81\x7d\x7a\x72\xcd\x79\x27\x9b\xa2\x5d\x31\xdf\x15\ \x47\x95\x76\x61\x43\x25\xfc\x3b\x62\x7e\x55\x3f\xab\x79\x74\x05\ \x7c\xe2\xd2\x36\xf6\x89\x4d\x1b\xa9\x5c\xf2\x97\x50\xcd\x43\xd4\ \x7d\x4d\x31\xbe\x56\xb3\x6a\xad\xa3\x8f\x7c\xc8\xb1\xbb\x06\xa4\ \x01\x48\x0d\x79\x13\x09\xa6\x69\x93\x02\x6e\xbb\xec\x2c\x5e\x7e\ \xf0\x7a\x7c\x5e\xf1\xb7\x63\x62\xf3\x26\x2a\x17\x2f\x12\xae\x6b\ \x36\x95\x09\xfd\xc9\xff\xaf\x6d\x76\x47\x22\x9e\x04\x70\x65\x14\ \xe6\xbb\xe0\x24\x43\x4d\x54\xfc\xfa\xb3\x50\x3d\x8f\xc7\xc3\x79\ \xa7\x1c\x2d\x54\x53\xb2\x0b\x9d\x23\xd1\xb8\xbb\x8a\x2e\x58\x80\ \xac\x04\x98\x1a\x25\x76\x07\xe0\x46\xbc\x5e\x0f\xad\x5b\x36\xa7\ \x5d\x9b\xd6\xb4\x53\xf4\x8f\x0e\x6d\x4b\xd8\xbb\x4b\x47\xba\xec\ \xde\x9e\xec\x2c\xf3\x4a\xc6\x55\x2c\x98\x2b\x7c\xc9\xd6\x0a\x9e\ \x5e\xa5\xef\xfd\x9b\x85\xd7\xeb\x61\xaf\x2e\xbb\xd3\x4e\x69\x8d\ \xbf\x55\x73\xfc\xc5\xcd\xc9\xcf\xcd\x25\xbe\x6a\x2d\xf1\x64\x53\ \xa8\x1f\xe7\x2f\x64\x83\x49\x99\xdd\xa5\x55\x70\xe1\x12\x98\xb4\ \x87\xde\x69\xd0\x4d\x54\xfc\xfa\x13\xb9\x43\x8f\x12\xaa\x79\xda\ \xb1\xc3\xf8\xea\xc7\x5f\x09\x4d\xf9\x5c\xa8\xae\x64\x07\xf9\x40\ \x11\xe0\xe8\x65\x0a\xab\x91\x06\x20\x35\x9a\xda\x1d\x80\x13\xf1\ \x7a\x3d\xf8\x5b\xb5\xd0\x27\xf7\xe4\x24\xdf\xb6\xa4\x38\xf9\x7d\ \x31\x6d\xfd\xc5\x64\x67\xdb\x73\xab\xb9\x71\xf9\x7f\x4d\x85\x6e\ \x00\x44\xe3\xf5\x7a\x50\x7b\x76\x67\xe4\xe0\x7e\x0c\x1f\xd8\x07\ \x7f\xab\xe6\x75\xbe\xbe\xbc\xa2\x92\xcf\xbf\xfa\x91\x0f\xa6\xce\ \xe2\xc3\xcf\xbe\x62\xfd\x46\xb1\x8e\x64\xf1\x36\xf8\xdf\x1a\x38\ \xad\xa5\x50\x59\xd3\xa9\xfc\xed\x57\xa8\xaa\x04\xaf\x58\xe3\xfa\ \xc0\xf5\xe7\xd3\xa2\x59\x11\xcf\xbd\x39\x99\xaa\x2a\xf7\x99\x56\ \x17\xd0\x14\x69\x00\xfe\x81\x34\x00\xa9\x91\x91\x0d\xb7\xbd\x5e\ \x0f\x25\xc5\x2d\x93\x4f\xef\xc5\xb4\x4d\x7e\xde\xfe\x34\x1f\x28\ \x29\x36\xf5\x29\xde\x08\x95\x2e\x34\x00\x8f\xaf\x84\xcd\x82\x8f\ \xcb\x0d\xe8\xbd\x37\x37\x5f\x74\x3a\x3d\x52\xa8\xb1\x90\x9d\xe5\ \x63\x50\xbf\xfd\x18\xd4\x6f\x3f\x6e\xbb\xbc\x8c\x47\x5f\x7c\x87\ \xff\xbc\xf2\x1e\x65\x5b\xc5\xed\x4b\x3c\xb1\x12\x8e\x6d\x0e\x85\ \x2e\xda\x8c\x4c\x94\x95\x52\xf9\xe7\xef\xf8\xf6\x10\x5b\x15\x3c\ \x37\x27\x9b\x5b\x2f\x1d\xc7\xb1\xc3\x0e\xe1\xa3\xcf\xc2\xfc\xb4\ \xe0\x4f\xfe\xf8\x2b\x4a\x6c\xc5\xea\xb4\x49\xf4\xb5\x19\xf1\xf5\ \xc5\x5d\x8e\x34\x00\xa9\x91\xf6\x2b\x00\x2d\x9a\x15\x71\xda\xb1\ \x43\x77\x4c\xee\xed\x94\xd6\xb4\xf1\xb7\x72\xec\x04\x5f\x17\x89\ \xd2\x2d\x54\x46\x1d\x9d\x99\xbc\x0b\x4b\xb6\xc1\x6b\x6b\xc5\xe9\ \xb5\x53\x5a\x73\xdb\x65\xe3\x18\x72\xd0\x01\x86\x74\x9a\xe4\xe7\ \x71\xd5\x39\x63\x18\x3b\x6a\x08\x13\x1e\xfe\x2f\xef\x7d\xf2\xa5\ \x90\xf8\xd6\x55\xea\xab\x1d\x97\xb4\x16\x22\x67\x19\x15\x7f\xcc\ \x17\x6e\x00\xb6\xd3\xb3\xfb\x1e\xf4\xec\xbe\xc7\x8e\xef\x2b\xab\ \xaa\x88\xad\x58\xcd\x92\x65\x2b\x58\x12\xdb\xfe\xb1\x72\xc7\xf7\ \xd2\x20\x34\x98\xb4\x1f\xbf\x53\x45\x1a\x80\xd4\x48\xfb\x1b\x48\ \x29\x6e\xc1\x95\x67\x8f\xb1\x3b\x0c\x21\x54\xc5\x96\xba\x6e\xff\ \xff\xa1\x15\x50\x21\x28\xe4\x03\xf6\xe9\xca\xf3\xf7\x5c\x4d\xcb\ \xe6\xe2\x1e\x7c\x94\xd6\x2d\xf9\xcf\x6d\x97\xb1\x4f\xd7\x4e\xdc\ \xfe\xd8\x4b\x42\x96\xaa\x5f\x58\x0d\xa7\xb4\x80\x62\x17\x8d\x46\ \x55\xcb\x96\x5a\x76\x2d\x9f\xd7\x4b\xdb\x92\x62\xda\x96\x14\xd3\ \x97\x1e\xbb\xfc\xbc\xb2\xaa\x8a\xe5\x2b\xd6\xec\x64\x0e\x56\xec\ \x64\x16\x56\x12\x5b\xb1\x8a\xf2\x0a\x69\x10\xc8\x80\xf1\x3b\x55\ \x5c\xf4\x2b\xe7\x08\xe4\x0d\xe4\x22\x2a\x63\x51\xbb\x43\x48\x89\ \x79\x65\xe2\x1a\xfc\x8c\x1a\x72\x10\x0f\xdd\x70\x3e\x39\x26\xf5\ \x6e\x3f\xef\x94\x63\xe8\xd8\x56\x61\xfc\x4d\x0f\x51\x5a\x66\xac\ \x1d\x61\x59\x15\x3c\xb2\x02\x6e\x69\x23\x28\x38\x0b\xa8\x8c\x2f\ \xb3\x3b\x84\x1d\xf8\xbc\x5e\x02\x25\xad\x08\x94\xb4\xa2\x4f\xaf\ \xee\xbb\xfc\xbc\xb2\xaa\x8a\xf8\xca\x35\xbb\xac\x1c\x6c\xff\x58\ \x16\xcf\x18\x83\x20\xc7\xef\x6a\x48\x03\x90\x1a\x19\x99\x03\xe0\ \x56\xaa\x5c\x66\x00\x9e\x5f\x25\xa6\x4a\xde\xb0\x43\x54\x1e\xbb\ \xe5\x62\xe1\x25\x95\xab\x73\xc4\x40\x95\xa7\xef\xbc\x82\xb1\x97\ \xdd\x6e\x78\x25\xe0\xed\x75\x70\xb9\x1f\x8a\x5c\xb2\xd3\x54\x15\ \x73\x8e\x01\xa8\x0f\x9f\xd7\x4b\x1b\x7f\x2b\xda\xf8\x5b\xa1\xf6\ \xdc\xf5\xe7\x2f\x86\xa6\x70\xd5\xdd\x4f\x5a\x1f\x98\xf5\x48\x03\ \x50\x0d\x17\xa5\xde\xd8\x4b\x24\x1a\xcf\x43\x1a\x26\x57\x51\xb5\ \xdc\x3d\x06\xa0\x32\x01\x9f\x09\x48\xb2\xef\xd2\xb1\x1d\x8f\xdc\ \x7c\xa1\xe9\x93\xff\x76\x06\xf7\xdb\x8f\x2b\xcf\x39\xc9\xb0\x8e\ \xa8\xbf\xbf\x55\x24\x36\x6d\x20\xb1\xd9\x45\x01\x4b\x40\x1a\x80\ \x5d\x90\x06\xa0\xe1\xc8\x9b\xc7\x65\xb8\x69\x0b\xe0\x9b\x2d\xc6\ \x2b\xfe\x35\x6d\x52\xc0\x7f\xef\xbb\x9a\xc2\x82\x7c\x31\x41\x35\ \x90\x8b\x4e\x3f\x96\x23\x0f\xed\x6b\x58\x67\xda\x46\x01\xc1\x58\ \x88\x9b\x0c\xa6\x04\x90\x63\xf8\x2e\x48\x03\xd0\x70\xe4\xf2\xbf\ \x9b\xa8\xaa\xa4\x6a\x85\x7b\x9a\x24\x4d\x17\x30\xf9\x8d\x1f\x3b\ \x8a\x8e\x6d\x15\xe3\x42\x8d\xe0\xb6\xcb\xc6\x91\x97\x9b\x63\x48\ \xe3\xf3\x8d\xe2\x12\x20\xad\xa0\x52\x1a\x00\xb7\x21\x0d\x40\x35\ \xa4\x01\x68\x38\xf2\xe6\x71\x11\x55\x2b\xe2\xe0\xa2\xa3\x51\x46\ \x9f\x7e\x5b\xb7\x6c\xc6\xd9\x27\x8e\x10\x13\x4c\x23\x28\x29\x6e\ \xc1\x99\xa3\x87\x1b\xd2\xd8\x54\x05\x5f\x6d\x11\x14\x90\x05\x54\ \x2d\x77\x8f\xc1\x94\x00\x72\x0c\xdf\x05\x69\x00\x1a\x8e\xbc\x79\ \x5c\x44\xd5\x86\x75\x76\x87\xd0\x60\xfe\xd8\xaa\x57\xc5\x33\xc2\ \xc5\x67\x8e\x26\x3f\xcf\xde\x4e\xd5\x17\x9c\xa6\x51\x54\x58\x60\ \x48\x63\x9a\x8b\x9a\x04\x25\xd6\x09\x2c\xd8\x20\xb1\x02\x59\x08\ \xa8\x1a\xd2\x00\x34\x1c\xb9\x05\xe0\x26\xca\x4a\xed\x8e\xa0\xc1\ \xcc\x34\xf8\xf4\x9f\x93\x93\xcd\xe8\xe1\x03\x85\xc4\x62\x84\x66\ \x45\x85\x86\x73\x01\x66\xba\x28\xaf\x2e\xe1\xa2\x7b\x4c\x02\xc8\ \x87\xb8\x5d\x90\x06\xa0\xe1\xc8\x9b\xc7\x45\x24\xca\xdc\xd3\x6a\ \x6e\x49\xb9\xb1\xf7\x1f\xd4\x7b\x6f\xcb\x13\xff\x6a\x63\xd8\x21\ \x07\x1a\x7a\x7f\xb4\x1c\x04\x57\x41\x36\x0d\x69\x00\x5c\x87\x1c\ \xc3\xab\x21\x0d\x40\xc3\x91\x37\x8f\x8b\x48\x6c\x75\xcf\xe0\xbc\ \xd2\xa0\x01\x38\x62\x60\x1f\x31\x81\x08\xe0\x10\xb5\x27\x05\xf9\ \x79\x8d\x7e\x7f\x65\x02\xd6\x56\x08\x0c\xc8\x44\x12\x65\x2e\x4a\ \x58\x90\x80\x1c\xc3\x77\x41\x1a\x80\x86\x23\xb7\x00\x5c\x84\x9b\ \x56\x00\x56\x18\x9c\xf0\xfa\xef\xbf\x97\x98\x40\x04\x90\x9b\x93\ \x4d\xef\xbd\xbb\x18\xd2\x88\xbb\xc4\x00\xb8\x69\x9b\x49\x02\x48\ \x03\xb0\x0b\xd2\x00\x34\x1c\x79\xf3\xb8\x89\xad\xee\x31\x00\x2b\ \x0d\x4e\x78\x25\xc5\x2d\xc4\x04\x22\x08\x7f\x2b\x63\xf1\x18\xfd\ \xf7\xb0\x0a\xb9\x05\xe0\x3a\xe4\x18\x5e\x0d\x69\x00\x1a\x8e\xbc\ \x79\x5c\x84\x5b\x56\x00\x12\x18\x9b\xf0\x8a\x0a\x0b\x0c\x9f\xbf\ \x17\x8d\xbf\x55\x73\x43\xef\x37\xba\x25\x62\x15\x6e\xb9\xc7\x24\ \x3b\x90\x63\x78\x35\xa4\x01\x68\x38\x72\x0b\xc0\x45\x24\x5c\xb2\ \x02\xb0\xae\xd2\x58\xf1\x9b\xe2\x96\xc6\x26\x5b\x33\x68\x6d\x30\ \x26\xd7\xac\x00\x94\xca\x15\x00\x97\x21\x0d\x40\x35\xa4\x01\x68\ \x38\x2e\x19\x96\x24\x00\x1e\xaf\x3b\x6e\xed\x35\x06\xef\x2a\xa3\ \x9d\xf8\xcc\xa0\x74\xab\xb1\x98\xd6\xb8\xa4\x7e\x93\x27\xcb\x25\ \x9d\x8b\x24\xdb\x71\xc9\xda\x92\x75\xb8\x63\x94\x74\x06\x2e\xab\ \x54\x9e\xe1\xe4\x39\xe3\x58\x5c\x7d\x18\xed\x7e\xb7\x62\xd5\x5a\ \xc3\x9d\xf8\x44\xb3\x62\x95\xb1\x02\x39\xbb\xb9\x65\x5e\x75\xc9\ \x3d\x26\xd9\x81\x1c\xc3\xab\x21\x0d\x40\xc3\x91\x37\x8f\x8b\xf0\ \xe4\x36\xfe\x28\x9a\x95\xb4\xf0\x81\xcf\x40\xe3\xbe\x8a\xca\x4a\ \x56\xae\x71\x56\xd5\xc3\x15\xab\x8d\xc5\xe3\x77\x49\xcf\x4d\x8f\ \x34\x00\x6e\x43\x8e\xe1\xd5\x90\x06\xa0\xe1\xb8\xa8\x46\x99\xc4\ \x2d\x83\xb3\xcf\xa3\x9b\x00\x23\x2c\x5c\xec\xac\xa6\x34\x7f\x2e\ \x31\x56\x23\xdf\x9f\x2d\x28\x10\x93\x71\xcb\x3d\x26\xd9\x81\x34\ \x00\xd5\x90\x06\xa0\xe1\xc8\x9b\xc7\x4d\xe4\xb9\x63\x05\x00\xa0\ \xd8\xe0\x13\xef\xe4\xe9\x73\xc4\x04\x22\x80\x65\xf1\x55\xcc\xfd\ \x6d\x91\x21\x0d\xb9\x02\x20\x31\x09\x39\x86\x57\x43\x1a\x80\x86\ \x23\x6f\x1e\x17\xe1\x96\x2d\x00\x80\xd6\x06\x9f\x78\x27\x4d\x9b\ \xe3\x98\x3c\x80\x0f\x3f\xfb\xca\xb0\x46\x89\x4b\x56\x00\x64\x0e\ \x80\xeb\x90\x63\x78\x35\xa4\x01\x68\x38\xf2\xe6\x71\x11\x9e\x0c\ \x5a\x01\x58\xbe\x6a\x0d\xe1\x1f\xe6\x89\x09\xc6\x20\x93\xa6\xcf\ \x36\xf4\xfe\x5c\x8f\x7b\x92\x00\x3d\xf9\xd2\x00\xb8\x0c\x39\x86\ \x57\x43\x1a\x80\x86\x23\x73\x00\x5c\x84\x27\xcf\x58\x5b\x5a\x2b\ \x11\xf1\xc4\x7b\xcf\x53\xaf\x1a\x17\x31\xc8\xd7\x3f\xcd\x67\xf6\ \x77\x73\x0d\x69\x74\xb0\xb7\xa3\x71\x4a\x78\xf2\xdd\x73\x8f\x49\ \x00\x70\x51\xb3\x69\x6b\x90\x06\xa0\xe1\x48\xf7\xe8\x22\xbc\xc5\ \x7e\xbb\x43\x68\x30\xfd\x9b\x18\xd7\x98\xf3\xfd\x3c\xc3\x4f\xdf\ \x46\xb9\xe3\xf1\x97\x0d\x6b\x0c\x76\x51\xa9\x16\x6f\x2b\xf7\xdc\ \x63\x12\x40\x8e\xe1\xbb\x20\x0d\x40\xc3\x91\x37\x8f\x8b\xf0\x14\ \xed\x86\xa7\x89\x3b\x8a\x37\xee\x53\x00\x2d\x05\x24\xbe\xdd\xf2\ \xf0\x8b\x6c\xdd\x66\x4f\xad\x93\xa9\xb3\xbe\x63\xce\xf7\xc6\xb7\ \x21\x86\x14\x09\x08\xc6\x22\xbc\x25\x6d\xec\x0e\x41\x92\x1a\x72\ \x0c\xaf\x86\x34\x00\x0d\x47\x6e\x01\xb8\x0c\x6f\x49\xc0\xee\x10\ \x1a\x84\x17\x18\x28\xe0\xc9\x77\xf1\xb2\x38\x97\xde\xfe\x98\x71\ \xa1\x14\x89\xaf\x5a\xcb\xe5\xb7\x3f\x6e\x58\xa7\x7d\x0e\x74\x75\ \x4f\xea\x06\x3e\xc5\x1d\xf7\x97\x64\x07\xd2\x00\x54\x43\x1a\x80\ \x86\x23\x6f\x1e\x97\xe1\xa6\x01\x7a\x90\xa0\xa5\xef\xd0\x47\x33\ \x79\xe8\xb9\x37\xc5\x88\x35\x80\xf2\xf2\x0a\xc6\x5d\x75\x37\xcb\ \x57\xad\x31\xac\x75\xb8\x8b\x9e\xfe\xf1\x7a\xf1\x16\x97\xd8\x1d\ \x85\x24\x35\xe4\x18\x5e\x0d\x69\x00\x1a\x48\x30\xe0\xaf\x04\x64\ \xf7\x0f\x17\xe1\x75\x91\x01\xe8\xdf\x44\xcf\x80\x17\xc1\x3d\x4f\ \xbd\xc6\xdb\x1f\x7e\x26\x46\xac\x0e\xaa\xaa\x12\x5c\x76\xc7\xe3\ \x7c\xfb\xcb\x6f\x42\xf4\x5c\xb5\xfc\xdf\xca\x0f\x59\x2e\x29\x58\ \x20\xd9\x8e\x34\x00\xd5\x90\x06\x20\x35\xe4\x0d\xe4\x22\xdc\xb2\ \x05\x00\x90\xe7\x85\xbe\x82\x52\x16\x12\x89\x04\x17\x4c\x78\xd8\ \xd4\x95\x80\xcd\xa5\x65\x9c\x76\xf9\x1d\xbc\x39\x79\x86\x10\x3d\ \x25\x1b\xf6\x71\xd1\xa9\x3a\x6f\x89\x62\x77\x08\x92\xd4\x91\xe3\ \x77\x35\xa4\x85\x4d\x8d\x4d\x40\x6b\xbb\x83\x30\x93\x85\x8b\x97\ \x71\xe2\x85\xb7\xd0\x4e\x69\x4d\xbb\x36\xc5\xfa\x67\xa5\x35\xed\ \xdb\xf8\x29\x6e\xb1\x1b\x1e\x8f\xa0\xc7\x54\x0b\x70\xd3\x16\x00\ \xc0\x89\xcd\x61\x86\xa0\x21\x2a\x91\x48\x70\xf7\x93\xaf\xf2\x7b\ \x24\xca\x03\xd7\x8d\x27\x37\x47\x5c\x75\x9d\x65\xf1\x55\x8c\xbd\ \xec\x0e\xe6\xfe\xfe\x97\x30\xcd\xf3\x8a\xc1\x3d\x77\x16\xf8\x5c\ \x64\x2e\x25\x3b\x90\x06\xa0\x1a\xd2\x00\xa4\x46\xda\xdf\x40\x65\ \x5b\xb7\xf1\x59\xf8\x87\x1a\x7f\x96\x9b\x93\x4d\x5b\xa5\x35\xed\ \x94\xe2\x1d\xa6\x60\x67\xa3\x50\xdc\xa2\x99\xc5\xd1\xd6\x8d\xb7\ \x75\x09\x9e\xdc\x3c\x12\x5b\xcb\xec\x0e\xa5\x41\x0c\x6c\x0a\xbd\ \x0b\xe0\x9b\x2d\xe2\x34\x43\x1f\xcd\xe4\x9b\x9f\x16\x70\xe3\x85\ \x63\x39\xf2\xd0\xbe\x86\xb4\xb6\x6d\x2b\xe7\xc9\x57\x3f\xe0\xe1\ \xff\xbe\xcd\xa6\x2d\xe2\x76\xc3\xba\xe4\xc1\xb1\xcd\x85\xc9\x59\ \x82\xb7\x5d\xd0\xee\x10\x24\xa9\x23\xeb\x00\x54\x43\x1a\x80\xd4\ \x48\x7b\x03\x50\x17\x5b\xb7\x95\xb3\x30\x12\x65\x61\xa4\xe6\xe6\ \x33\x79\xb9\x39\x49\x43\xd0\x3a\xb9\x72\xf0\x4f\xa3\xd0\xb2\xb9\ \xc5\x9b\xbc\x5e\x1f\xbe\xce\x5d\xa9\xf8\xa5\x66\x43\xe3\x44\x2e\ \xf7\xc3\x89\xc6\x4a\xe9\xef\xc2\xe2\x65\x71\xce\xba\xfa\x5e\xfa\ \xf4\xea\xce\x95\x67\x8f\x41\xed\xd9\x1d\xaf\xb7\xe1\xcf\xdb\xa5\ \x65\x5b\xf9\x70\x46\x98\xbb\x9f\x7c\x95\xc5\xcb\xe2\x62\x83\x03\ \xae\xf2\xbb\x6f\x2f\x32\xab\xeb\xde\x76\x87\x60\x88\xf2\xf2\x0a\ \x96\xc6\x57\xb2\x64\xd9\x4a\x61\x39\x1c\x2e\x20\xa3\xc7\xef\x9a\ \x90\x06\x20\x35\xe4\x51\xc0\x3a\x28\xdb\xba\x8d\xdf\xff\x5a\xca\ \xef\x7f\x2d\xad\xf1\xe7\xf9\x79\xb9\x3b\x8c\x41\x87\xb6\x25\x74\ \xdb\xa3\x03\xbd\x7a\x74\xa6\xfb\x1e\xe6\x3d\x4d\x65\x75\xdb\xdb\ \x55\x06\xa0\x67\x01\x1c\xd6\x14\x3e\x35\x61\xa8\x9a\xf3\xfd\x3c\ \xb4\x73\x6f\xa0\xa4\x55\x0b\x8e\x1c\xd4\x87\xe1\x87\xf6\xa1\x53\ \xfb\x00\xc5\x2d\x9a\xfd\xc3\x10\x94\x96\x6d\x65\xf9\xaa\x35\x7c\ \xff\xcb\xef\x4c\x9a\x31\x87\xe9\xb3\xbf\xa7\xb4\x6c\xab\xf8\x80\ \x80\x83\x0a\xa1\xbf\x3b\xca\x35\xec\xc0\xdb\xba\x04\x6f\xcb\x62\ \xbb\xc3\xa8\x93\xf2\x8a\x4a\xa2\xcb\x57\xb2\x24\xb6\x22\xf9\xa1\ \x7f\xbd\x78\x59\x9c\x25\xcb\x56\xb0\x62\xf5\x5a\xc7\xf4\x8f\xb0\ \x10\x69\x00\xaa\x21\x0d\x40\x6a\xc8\x25\x24\x03\x94\x96\x6d\xe5\ \xb7\x45\x4b\xf8\x6d\xd1\x92\x7f\xfc\xf9\x71\x47\x1c\xc2\x84\x8b\ \xcf\xa0\x45\x33\xf1\x2b\x04\x6e\x7c\x52\xbb\xc4\x0f\xd3\x37\x41\ \xa5\x49\xe3\xf3\xf2\x55\x6b\x78\xf6\x8d\xc9\x3c\xfb\xc6\x64\x00\ \xb2\x7c\x3e\x5a\xb7\x6a\x4e\x7e\x5e\x2e\x2b\x56\xad\x65\xe3\x66\ \x81\x7b\x10\x75\xe0\xf3\xc0\x55\x2e\x3c\x49\x97\xd5\xcd\xfe\x7b\ \xaa\xa2\xb2\x92\x65\xf1\x55\xbb\x4c\xec\xdb\xbf\x5f\xbe\x72\x75\ \x26\x4e\xf0\xf5\x21\xc7\xef\x6a\x48\x03\x90\x1a\x82\x17\x67\x25\ \x00\x6f\x7d\xf8\x19\x3f\xfc\xfa\x07\x1f\x3e\x7f\x0f\x85\x05\x62\ \x53\xc1\x7d\xc1\xdd\xf1\xe4\x17\x90\x28\xb5\x66\x52\x13\x41\xa7\ \x5c\x18\xd5\x0c\xde\x5a\x6b\xcd\xf5\xb6\x4f\x26\x56\x33\xa6\x39\ \xec\xe1\xa2\xda\xff\xdb\xc9\xea\xb6\x8f\x25\xd7\x59\xb1\x7a\x1d\ \x7f\x44\x96\xfe\x63\x62\xdf\x3e\xd9\x2f\x5f\xb1\x86\xca\xaa\x2a\ \x4b\xe2\x48\x13\xe2\xc1\x80\x5f\x1e\xe3\xae\x86\x34\x00\xa9\x31\ \xdf\xee\x00\xd2\x95\x3f\xfe\x8a\x72\xf1\x2d\x8f\xf2\xcc\x5d\x57\ \x88\x15\xf6\x7a\xc9\xda\xb3\x07\xe5\x3f\x7c\x2d\x56\xd7\x64\xae\ \xf4\xc3\xb7\x5b\x60\x91\x39\x2b\xef\xb6\xd3\xbb\xc0\x9d\x4f\xff\ \x78\x3c\x64\x75\xdd\xcb\x34\xf9\xf5\x1b\x37\x71\xeb\x23\x2f\xf2\ \xd1\xcc\xaf\x58\xbd\x56\x3e\xb0\x0a\x64\x81\xdd\x01\x38\x11\xb7\ \xe5\xde\xd8\x8d\x23\x6f\xa2\xbc\xdc\x1c\xbb\x43\x10\xc2\xa4\xe9\ \xb3\xf9\x69\xfe\x42\xe1\xba\x3e\x13\x07\x6c\xb3\x28\xf2\xc1\x13\ \xed\xf5\xcf\xe9\x46\x20\x1b\x1e\x6e\x07\xd9\x6e\x3a\xf7\x97\xc4\ \x17\x68\x8f\xa7\x68\x37\x53\xb4\x7f\x5e\xf0\x27\x07\x1d\x7f\x21\ \xaf\xbc\xf7\xa9\x9c\xfc\xc5\xe3\xc8\xb1\xdb\x6e\xa4\x01\x48\x0d\ \x47\xde\x44\x9d\x3b\xb4\xb5\x3b\x04\x61\xbc\x18\x9a\x22\x5c\xd3\ \xaa\x25\x5b\xd1\x74\xc8\x81\x87\xda\xea\x7b\xe5\xe9\x42\x81\x57\ \x37\x36\x2d\x5c\xba\xf6\x98\xd5\xdd\x9c\x7b\x69\xcd\xba\x0d\x9c\ \x79\xe5\xdd\xac\x5c\xb3\xce\x14\x7d\x09\x19\x73\xd4\x21\x15\xa4\ \x01\x48\x81\x60\xc0\xbf\x06\xb0\x7e\xb3\xb4\x1e\x76\x6f\xd7\x86\ \x9c\x6c\x71\x85\x5e\xec\xe4\x83\xa9\xb3\xa8\xa8\xac\x14\xaa\xe9\ \x6b\x17\xc4\xdb\xa6\x9d\x50\x4d\xab\xe8\x57\x08\xd7\xb8\x71\xa9\ \xbc\x06\xbc\xc0\x7d\x6d\xf5\x73\xff\x6e\x25\x5b\x1d\x60\x8a\xee\ \xad\x8f\xbc\xc8\xd2\xe5\x2b\x4d\xd1\xb6\x8a\x56\xcd\xcd\x59\x19\ \x11\x84\x23\x1f\xde\xec\x46\x1a\x80\xd4\x71\x5c\x1e\x80\xcf\xe7\ \x65\x60\x9f\x9e\x76\x87\x21\x84\x0d\x9b\xb6\xf0\xcd\x4f\xe2\x7f\ \x57\x73\xfa\x0d\x14\xae\x69\x15\xa7\xb4\x80\xe3\x5d\x56\x28\xa7\ \x26\xae\x28\x11\xd7\xf4\xc8\x0e\xbc\x25\x6d\xf0\x75\xec\x2c\x5c\ \x77\xdd\x86\x4d\xbc\xf3\xf1\xe7\xc2\x75\xad\xa6\x6b\xa7\xf6\x76\ \x87\x50\x17\xd2\x00\xd4\x80\x34\x00\xa9\xe3\xc8\x1b\xe9\x92\x33\ \x47\x53\x54\xd8\xc4\xee\x30\x84\x30\x6d\xf6\x77\xc2\x35\xb3\xfb\ \x1e\x0c\x2e\x2a\x63\x5c\x9d\x9b\x14\x38\xb5\xa5\xdd\x51\x34\x8e\ \x1c\x0f\xdc\x1d\x80\x33\x5c\x1a\xff\x76\x72\xfa\x1e\x62\x8a\x6e\ \x68\xca\x4c\xb6\x6e\x2b\x37\x45\xdb\x4a\xba\x77\xee\x60\x77\x08\ \xb5\x51\x0e\xfc\x69\x77\x10\x4e\x44\x1a\x80\xd4\x71\xa4\x01\x68\ \xbe\x5b\x53\xae\x3a\x67\x0c\x3e\x9f\xfb\xff\x4b\xa7\x7e\xf9\xad\ \x70\x4d\x6f\xf3\x96\x8e\x38\xbf\xdd\x58\x7c\x1e\xb8\xae\x04\x6e\ \x69\x03\x59\x2e\xf2\x31\x2d\xb3\xe0\xa5\x8e\x70\xb4\xb3\xaa\x44\ \xa7\x8e\xc7\xa3\x9b\x48\x13\x98\x32\xf3\x2b\x53\x74\xad\xa4\x59\ \x51\x21\xc7\x0e\x33\xc7\x20\x09\xe0\xcf\x60\xc0\x5f\x61\x77\x10\ \x4e\xc4\xfd\xb3\x85\xf5\x38\xd2\x00\x00\x0c\xee\xbf\x3f\x8f\xdf\ \x72\x89\xd3\xf7\xe2\xea\x65\xde\x1f\x11\x96\xaf\x34\xde\x5f\xbe\ \x3a\x39\xfd\x0e\x15\xae\x69\x35\xc7\x37\x87\xe7\x3b\x40\x73\x17\ \x9c\x0e\xe8\x96\x07\x6f\xed\x0e\xfb\xba\xa8\xcb\x5f\x6d\x64\xed\ \xd1\x55\x6f\x01\x2c\x98\x4d\x5b\x4a\x99\xfd\xfd\x3c\xe1\xba\x56\ \x73\xe9\xb8\xe3\xd9\xad\xa9\x63\x57\x20\x1d\x3b\x66\xdb\x8d\x34\ \x00\xa9\xe3\xb8\x1c\x80\x9d\xd9\xb7\xdb\x1e\xbc\x78\xff\xb5\x8c\ \x19\x39\xd8\x94\xca\x7a\x56\x31\x75\x96\xf8\x6d\x80\xac\xfd\x55\ \x3c\xb9\x2e\xce\x40\x4b\x72\x40\x01\xbc\xb9\x3b\x74\x76\x70\x11\ \x9d\xc3\x8b\xe0\x7f\x1d\xf5\x36\xbf\xe9\x40\x76\x3f\x73\x9e\x6e\ \x67\x86\x7f\xa4\xbc\xdc\xbd\x0f\xa7\x1e\x8f\x87\xb3\x4e\x38\x92\ \x21\x07\x1d\x60\x77\x28\x75\x21\x4f\x00\xd4\x82\x4b\x0f\xe3\xd8\ \xca\x9f\xe8\x7b\x4a\x8e\x1d\xda\x5a\x34\x2b\xe2\xa2\x33\x8e\xe3\ \xfc\xb1\x1a\x5f\xfd\xf8\x2b\xf3\x17\x2e\x66\xf9\xaa\x35\xc4\x57\ \xae\xd1\x3f\xaf\x5a\x6b\x5a\x6d\x77\x51\x4c\x9b\xfd\x1d\x27\x1f\ \x7d\x98\x50\x4d\x4f\x6e\x1e\xd9\xbd\xfb\xb2\xed\xcb\xe9\x42\x75\ \xed\xa0\x6d\x0e\xbc\xbe\x3b\x3c\xb9\x0a\x5e\x58\x0d\x65\x0e\x29\ \x0a\xd7\x36\x47\x6f\x68\x34\xcc\xbd\xde\x73\x57\xb2\xb3\xc9\x3e\ \xa0\xbf\x29\xd2\x9f\x7c\xf1\x8d\x29\xba\x56\xd0\xb4\xb0\x80\x09\ \x17\x9f\x41\xbf\xfd\x1c\x5f\x67\x43\xae\x00\xd4\x82\x27\x91\x90\ \xf5\xa2\x53\x25\x12\x8d\xcf\x07\xf6\xb4\x3b\x0e\x23\x6c\xd8\xb4\ \x99\xe5\x2b\xd7\x12\x5f\xb5\x86\xe5\x2b\xd7\x24\x3f\xff\xfd\xfd\ \xea\xb5\xeb\xa9\xb2\xf1\xde\x68\x92\x9f\xc7\x4f\x1f\x3e\x47\x41\ \xbe\xd8\x27\xf6\xca\xa5\x11\x36\xdd\x74\x29\xa4\xd1\x7d\xbf\xb2\ \x02\x1e\x5b\x09\x6f\xae\x35\xaf\x7f\x40\x7d\x14\xf9\xe0\xdf\xad\ \xf4\x44\x45\x37\x16\xf8\xa9\x8b\x9c\xc1\xc3\xc9\x3f\xf9\x2c\xe1\ \xba\x89\x44\x82\x7d\x87\x8f\x73\xd5\xd9\x7f\x8f\xc7\x43\xaf\x1e\ \x9d\x19\x3e\xb0\x0f\x83\xfa\xf6\x12\xfe\xfb\x69\x12\x07\x07\x03\ \x7e\xf7\x1f\xb3\x30\x01\xb9\x02\xd0\x38\x16\xe0\x72\x03\x50\x54\ \xd8\x84\xa2\xc2\x26\x74\xe9\x58\x73\x11\xa1\x8a\xca\x4a\x56\xae\ \x5e\x97\x5c\x39\x58\xfb\xcf\x15\x84\x95\x6b\x58\xbe\x6a\x2d\x5b\ \x4a\xcb\x4c\x8b\x6f\x73\x69\x19\x93\xa6\xcf\x61\xf4\xf0\x81\x42\ \x75\x7d\x6d\x83\x64\xef\xdb\xdb\x75\xa5\x81\xeb\xa2\x38\x0b\x6e\ \x56\xf4\x2c\xfb\x87\x56\xc0\x47\xeb\xc1\x2a\x1f\x90\xe5\x81\x13\ \x9b\xc3\xf9\xad\xa1\x99\x0b\xf2\x12\x52\xc6\xe7\x23\xf7\x88\x63\ \x4c\x91\xfe\x61\xde\x1f\x8e\x9b\xfc\xb3\xb3\xb3\xf0\xb7\x6a\x4e\ \x49\xab\x16\xf8\x8b\x5b\xe8\x9f\x5b\x35\xa7\xa4\xb8\x05\xfe\x56\ \x2d\x28\x29\x6e\x41\x6e\x8e\x63\x17\x3f\x6b\xc3\xf5\x2b\x00\x25\ \xaa\x36\xd7\x03\xdd\x1b\xfb\x7e\x0f\xbc\xba\x2c\x1c\x3a\xa9\xfa\ \x9f\x4b\x03\xd0\x38\xe6\x03\x47\xd9\x1d\x84\x99\x64\xf9\x7c\x28\ \xad\x5b\xa2\xb4\xae\xfd\xec\xd6\xc6\xcd\xa5\xd5\x56\x10\xd6\xf0\ \xda\xc4\x69\xc2\xf6\x34\x5f\x9f\x38\x4d\xb8\x01\x00\xc8\x1d\x71\ \x6c\x5a\x19\x80\xed\x04\x73\xe0\xc1\xb6\x70\x76\x2b\x78\x7f\x1d\ \x4c\xdd\x08\x8b\xb7\x99\x73\xad\xae\x79\x30\xa4\x08\x46\xec\x06\ \xed\xd3\xa3\x12\x75\x8d\xe4\xf4\x3f\x14\x6f\x8b\x56\xa6\x68\x5b\ \x9d\xfd\xef\xf1\x78\x68\x56\x54\xb8\xd3\xe4\xde\xfc\xef\x49\x3e\ \xf9\x7d\xf3\xdd\x9a\xe2\x71\xf1\x71\xd9\x1a\x58\x17\x0c\xf8\x57\ \xd8\x1d\x84\x53\x91\x06\xa0\x71\xb8\xde\x51\x8a\xa0\x69\x93\x7c\ \x9a\x36\x09\xb0\x47\x30\xb0\xe3\xcf\x96\x2c\x5b\xc1\x8c\xf0\x0f\ \x42\xf4\x67\x7d\x37\x97\xa5\xcb\x57\xd2\xb6\x44\x6c\xef\x75\xdf\ \xee\x5d\xc8\xea\xbe\x0f\x15\xf3\x7e\x12\xaa\xeb\x14\xba\xe5\x41\ \xb7\x12\xbd\xd9\xce\x1f\x5b\x61\xda\x46\xd5\xde\x32\x13\x00\x00\ \x20\x00\x49\x44\x41\x54\x98\xba\x01\x7e\x2a\x6d\xfc\xca\x80\x07\ \xd8\x3b\x5f\x9f\xf4\x87\x14\xa5\xf7\xa4\xbf\x03\xaf\x97\xdc\xe1\ \x9a\x29\xd2\x55\x55\x09\xde\xfa\xe8\x33\xa1\x9a\xb9\x39\xd9\xff\ \x78\x52\xaf\xfe\x24\xdf\xba\x55\xb3\xb4\xa9\x18\x9a\x02\x32\x01\ \xb0\x0e\xa4\x01\x68\x1c\xd2\x00\xd4\xc2\xd0\x83\x0f\x14\x66\x00\ \x12\x89\x04\x6f\x4c\x9a\xce\xa5\xe3\x8e\x17\xa2\xb7\x33\xb9\x23\ \x8e\x4b\x5b\x03\xb0\x33\x7b\xe4\xea\x1f\x67\xb7\xd2\x73\x05\xbe\ \xdd\x02\xf1\x72\xfd\xeb\x95\x15\xb0\x22\xf9\xf5\x8a\x0a\xd8\x96\ \x80\xd6\x59\xe0\xcf\x82\xd6\xd9\x50\x92\xad\x7f\xed\xcf\x86\x7d\ \xf2\xd3\x27\xa3\xbf\xa1\x64\x1f\x38\x00\x6f\x6b\x73\xea\x30\x7f\ \xfe\xcd\x4f\x44\x97\x8b\xa9\x2a\x7e\xea\xa8\x21\x9c\x7c\xf4\xe1\ \x34\x2b\x2a\x14\xa2\x97\x66\xc8\xb1\xba\x0e\x2c\x33\x00\x8a\xaa\ \x9d\x01\xdc\x0b\x1c\x16\x0b\x87\xc4\xcc\x10\xf6\x21\x6f\xaa\x5a\ \xe8\xdf\x7b\x2f\x9a\x14\xe4\xb1\x79\x8b\x98\xfc\x80\x37\x27\xcf\ \xe0\x92\x33\x47\x0b\x5f\x96\xcc\xea\xba\x17\xbe\x4e\x5d\xa8\x5c\ \x98\x39\x0f\x08\xc5\x59\x69\x96\x9d\x6f\x26\x1e\x0f\x79\x23\x8e\ \x35\x4d\xfe\xf5\x0f\xa6\x09\xd1\xf1\x7a\x3c\x1c\x7f\xe4\xa1\x72\ \xf2\xaf\x1d\x39\x56\xd7\x81\x25\x75\x00\x14\x55\xeb\x08\x3c\x05\ \xb4\x04\xbe\x55\x54\xed\x72\x2b\xae\x6b\x16\xc1\x80\x7f\x15\xb0\ \xda\xee\x38\x9c\x48\x4e\x76\x36\x03\xfb\xf4\x12\xa6\xf7\xd7\xd2\ \xe5\x84\x7f\xf8\x55\x98\xde\xce\xe4\x1d\x73\xa2\x29\xba\x12\xf7\ \x93\x7d\xe0\x00\xd3\x1a\x48\x6d\xd8\xb4\x85\xc9\x33\xe6\x08\xd1\ \x3a\xb0\x67\x77\x8a\x5b\xb8\xbd\xcc\xa2\xa9\x48\x03\x50\x07\xa6\ \x1b\x00\x45\xd5\xbc\xc0\x6c\xfe\x5e\x6d\xf0\x02\xf7\x2a\xaa\x36\ \x5d\x51\x35\x37\x6f\x41\x88\xaf\x57\x9b\x26\x0c\x15\x5c\x14\xe4\ \xa5\x77\x3f\x16\xaa\xb7\x9d\xac\x1e\x3d\xc9\xde\xbf\xaf\x29\xda\ \x12\xf7\xe2\xc9\xcd\x23\xef\xf8\xd3\x4c\xd3\x7f\xf7\xe3\xcf\x85\ \xd5\xfe\x1f\x39\x48\xde\xbf\xf5\x20\xc7\xe9\x3a\xb0\x62\x05\xe0\ \x3d\xa0\xa6\x1a\x9a\x03\x81\xb8\xa2\x6a\x8d\x3e\xda\x60\x33\x62\ \xd6\xf0\xd2\x90\xde\x7b\xef\x49\x4b\x81\x55\x08\xdf\xff\xe4\x4b\ \x96\xc5\xcd\xe9\xc2\x9c\x77\xd2\x99\x69\x51\x1d\x50\x22\x8e\xdc\ \x63\x4e\xc4\xdb\xbc\x85\x69\xfa\xaf\x4d\x14\x33\x74\x34\x2d\x2c\ \xe0\xe0\x03\xf7\x15\xa2\x95\xa6\xfc\x15\x0c\xf8\x17\xd9\x1d\x84\ \x08\x7c\x95\x59\xe3\x3c\x09\xcf\x85\xe0\x99\x90\xf0\xf0\x88\x27\ \xc1\x4b\x1e\x78\x1f\x12\x33\xf0\x24\xbe\x49\x24\x3c\xbf\x7a\x20\ \x02\xc4\x81\x75\x24\xd8\xe2\xd1\x0b\xd6\x55\x81\x07\x3c\x89\x1a\ \x7b\xac\x9b\xfa\x04\xae\xa8\xda\x39\xc0\x88\x3a\x5e\xd2\x02\xf8\ \x59\x51\xb5\x4b\x62\xe1\xd0\xc3\x66\xc6\x62\x02\xd2\x00\xd4\x82\ \xd7\xeb\xe5\xb0\x01\xbd\x79\x5d\xd0\x40\x57\x51\x59\xc9\xd3\xaf\ \x4f\xe4\xa6\x0b\x4f\x17\xa2\xb7\x33\xde\xe6\x2d\xc9\x3d\xfa\x04\ \xca\xde\x78\x41\xb8\xb6\xc4\x7d\xf8\x02\xed\xc9\x3d\xfc\x48\xd3\ \xf4\x7f\x59\xb0\x88\xef\xe7\xfe\x2e\x44\x6b\xc8\x80\x03\xc8\xce\ \x76\xf3\x22\xaa\xe9\xa4\xcd\x18\x1d\xfd\xe6\x8d\x39\x80\x98\x7d\ \xa3\x9d\x30\x6d\x05\x40\x51\xb5\x2e\xc0\x63\x0d\x8c\xe1\xff\x14\ \x55\xfb\x38\xb9\x5d\xe0\x16\xbe\x03\xd6\xdb\x1d\x84\x53\x11\xbd\ \x0d\xf0\xca\xbb\x9f\xb2\x71\xf3\x16\xa1\x9a\xdb\xc9\x1d\x32\x02\ \x5f\xc0\xd1\xbd\xcc\x25\x16\x91\x77\xea\xd9\xe0\x35\xaf\xa2\xd1\ \x43\xcf\xbf\x25\x4c\x6b\xc4\x60\xb9\xfc\x5f\x0f\x69\x63\x00\xcc\ \xc2\x94\x09\x37\x39\x91\x7f\x09\xa4\xf2\x9b\x74\x38\xfa\x96\x40\ \x17\x33\x62\x12\x4d\x30\xe0\xaf\x04\xc4\x1e\xe4\x4d\x23\xba\x77\ \xee\x40\x5b\x45\xdc\xf9\xfd\x8d\x9b\xb7\xf0\xf2\xbb\x9f\x08\xd3\ \xfb\x07\x5e\x1f\x79\x63\xcf\x81\xf4\x2a\x80\x22\x49\x91\x9c\x7e\ \x03\xc9\xea\x62\xde\x8e\xe4\x82\x3f\x97\x08\x4b\xfe\xeb\xd4\xbe\ \x0d\xdd\x3a\x05\x85\x68\xa5\x31\xd2\x00\xd4\x83\x59\x4f\xdc\x1f\ \x02\x8d\x29\x9f\xd5\x0a\x98\x97\xdc\x3a\x70\x03\xf2\x06\xab\x83\ \xa1\x07\x1d\x28\x54\xef\xe9\xd7\x26\x52\x5e\x51\xe3\x56\x96\x61\ \xb2\x3a\x77\x23\xa7\xbf\xfb\xdb\x05\x4b\x1a\x87\xa7\x49\xa1\xa9\ \x89\x7f\x00\x0f\x3d\xf7\x26\xa2\x7a\xaf\x8c\x90\xc9\x7f\xf5\x31\ \x3f\x18\xf0\xc7\xec\x0e\xc2\xe9\x08\x37\x00\x8a\xaa\x5d\x00\x0c\ \x31\x20\xe1\x03\xfe\xa3\xa8\xda\x07\x2e\xd8\x12\x90\x06\xa0\x0e\ \x8e\x38\x44\xc5\x2b\xf0\xa9\x3a\xb6\x62\x35\xef\x7d\xf2\x85\x30\ \xbd\xea\xe4\x9d\x34\x0e\x6f\x6b\xc5\x34\x7d\x89\x73\xc9\x3f\x63\ \x3c\x9e\xa2\xdd\x4c\xd3\x5f\x18\x89\xf2\xfe\xd4\x2f\x85\x68\xf9\ \x7c\x5e\x86\x1d\xa2\x0a\xd1\x4a\x63\xe4\xd8\xdc\x00\x84\x4e\xb0\ \xc9\x8c\xfe\x87\x04\xc9\x8d\x00\x96\x25\x6b\x08\x38\x95\x5f\x80\ \x95\x76\x07\xe1\x54\xda\x2a\xc5\xc2\xb3\x94\x1f\x7c\xf6\x0d\xd3\ \x56\x01\x3c\x79\xf9\x14\x9c\x77\x39\x64\x65\x58\xc9\xbb\x0c\x27\ \xe7\xb0\x23\xc9\xde\xcf\xdc\x09\xf5\xff\xfe\xfb\x36\x55\x55\x62\ \x9e\xfe\xfb\xef\xbf\x37\xcd\x77\x6b\x2a\x44\x2b\x8d\x91\x06\xa0\ \x01\x08\x33\x00\xc9\x33\xfd\x9f\x8b\xd4\x44\x3f\x3e\xf8\x5b\xb2\ \x8a\xa0\xe3\x08\x06\xfc\x09\xc0\xfd\xcd\xe5\x4d\xe4\xd4\x51\x46\ \x16\x83\x76\xe5\xcf\x25\x31\x5e\x7a\x67\x8a\x50\xcd\x9d\xf1\xb5\ \xef\x48\xfe\x89\x8e\xbc\xdd\x24\x26\xe0\xeb\xd0\x89\x7c\x93\x97\ \xfe\xff\x5a\xba\x9c\xd0\x47\x33\x85\xe9\x69\x43\x0f\x12\xa6\x95\ \xa6\x24\x80\x19\x76\x07\xe1\x06\x44\x4e\xd6\x9f\xa0\x1f\xeb\x13\ \x4d\x16\xf0\x9c\xa2\x6a\x21\x13\xb4\x45\x20\x9d\x66\x1d\xf4\xe8\ \xd2\x91\x5e\x3d\x3a\x0b\xd5\x7c\xe0\xd9\x37\x4c\x3b\x11\x00\x90\ \x33\x68\x18\xd9\xbd\xe5\x1e\x6b\xba\xe3\xc9\x2f\xa0\xe0\xdc\xcb\ \x21\xcb\xdc\xa3\x74\x8f\xbc\x10\xa2\xb2\xaa\x4a\x88\x56\x30\xe0\ \x47\xed\xe9\xd6\xd2\x29\x96\xf1\x63\x30\xe0\x97\x95\x5a\x1b\x80\ \x10\x03\x90\x2c\xed\x3b\x50\x84\x56\x1d\x8c\x52\x54\x2d\xaa\xa8\ \x9a\x39\xf5\x39\x1b\x8f\x34\x00\xf5\x30\x76\xd4\x50\xa1\x7a\xab\ \xd7\x6e\xe0\xb1\x17\xdf\x11\xaa\x59\x9d\xfc\x33\xc6\xe3\x2d\xae\ \xa9\x7e\x95\x24\x5d\xc8\x3f\xfd\x3c\xd3\xff\x8f\x97\x2e\x5f\xc9\ \x9b\x93\xc5\x2d\x12\x1e\x7f\xe4\xa1\xe9\xd6\xae\xd7\x0c\xe4\x98\ \xdc\x40\x0c\x1b\x00\x45\xd5\x7a\x02\x77\x0b\x88\xa5\x21\xb4\x01\ \x16\x2a\xaa\x76\x92\x45\xd7\xab\x97\x60\xc0\xff\x3b\xb0\xd4\xee\ \x38\x9c\x4c\xdf\xfd\x7a\xd0\x69\xa7\x96\xc1\x22\x78\xf2\xd5\x0f\ \x88\xad\x30\xcf\xe4\xef\x78\x3a\xcc\xbc\xf6\xa9\x19\x41\xce\xe0\ \xe1\x64\x1f\xd0\xcf\xf4\xeb\x3c\xf2\x42\x48\x58\xce\x4a\xd3\x26\ \xf9\x0c\x1f\xd8\x47\x88\x56\x9a\x23\x0d\x40\x03\x31\x64\x00\x14\ \x55\xcb\x41\xdf\x03\xb7\x32\x5b\x3f\x1b\x78\x45\x51\xb5\xd7\x2c\ \xbc\x66\x7d\xc8\x3c\x80\x7a\x38\xf5\x18\xb1\xb9\x00\x65\x5b\xb7\ \x71\xf7\x93\xaf\x0a\xd5\xac\x8e\xaf\x43\x27\xdd\x04\x78\x9d\x7e\ \x18\x45\x92\x0a\xd9\xfb\xa9\xe4\x8f\x39\xd3\xf4\xeb\x2c\x5f\xb9\ \x46\x58\xd9\x5f\x80\x91\x83\xfb\x93\x9f\x97\x2b\x4c\x2f\x4d\xa9\ \x44\xcf\x45\x93\x34\x00\xa3\x23\xdb\x34\xc0\xae\x56\x54\x27\x28\ \xaa\x16\x51\x54\xcd\x09\xe7\xb6\xa4\xe3\xac\x87\xc3\x07\xf4\xa6\ \xa4\x95\xd8\x14\x91\x37\x27\x4f\x17\xd6\x53\xbd\x36\xb2\x7b\x1e\ \x40\xfe\xe9\xe7\x99\x7a\x0d\x89\x75\x64\xed\xd9\x83\x82\x73\x2e\ \xb5\xc4\xd4\x3d\xf6\xd2\x3b\x6c\x13\xd4\xf4\xc7\xeb\xf5\x32\x7a\ \xf8\x40\x21\x5a\x69\xce\x37\xc1\x80\x7f\x83\xdd\x41\xb8\x85\x46\ \xff\x16\x28\xaa\x76\x2d\xd0\x5f\x60\x2c\x8d\xa1\x3d\x10\x51\x54\ \x6d\xb4\xcd\x71\x48\x03\x50\x0f\x3e\x9f\x97\x31\x47\x0d\x16\xaa\ \x59\x55\x95\xe0\xad\x8f\xcc\x2f\xc6\x98\x33\x60\x10\x79\xa3\x4f\ \x35\xfd\x3a\x12\x73\xf1\xb5\xef\x48\xc1\x85\xd7\x58\xb2\xad\xb3\ \x62\xf5\x3a\xa1\x95\x2b\x0f\x3e\x60\x1f\x94\xd6\x2d\x85\xe9\xa5\ \x31\x69\x39\x16\x2b\xaa\xb6\x8f\xa2\x6a\x5d\x44\xd7\xc6\xf1\x34\ \xa6\x32\x95\xa2\x6a\xfb\x03\x5f\x61\xed\xd2\x7f\x7d\xbc\x18\x0b\ \x87\xcc\x3d\xcf\x53\x07\x91\x68\xfc\x0f\xa0\x93\x5d\xd7\x77\x03\ \xa5\x65\x5b\x39\xfa\xec\xeb\xd8\xb0\x69\xb3\x30\xcd\xee\x7b\x04\ \x99\xfa\xca\x83\xc2\xf4\xea\xa2\xec\xf5\xff\xb2\x75\xca\xfb\x96\ \x5c\x4b\x22\x16\x6f\xeb\x12\x0a\xaf\xbd\x03\x4f\x91\x35\x0b\x96\ \xb7\x3c\xfc\x02\x4f\xbc\xf2\x9e\x30\xbd\x27\x6e\xbd\x54\xf8\x69\ \x9a\x34\xe5\xf0\x60\xc0\xff\xa9\xdd\x41\x88\x46\x51\xb5\x95\xfc\ \x5d\x5d\xb7\x02\x28\x03\x36\x00\xab\xd1\x3b\x00\x2e\x06\x16\x01\ \xf3\xd1\xeb\xd3\xfc\x16\x0b\x87\xea\x3d\x7a\x92\xf2\xf9\x17\x45\ \xd5\xf2\xd0\x5d\x96\x93\x26\x7f\x80\xb1\x8a\xaa\x1d\x04\xf4\x89\ \x85\x43\x2b\x6c\xb8\xfe\x34\xa4\x01\xa8\x93\xfc\xbc\x5c\x46\x0f\ \x1f\xc8\xb3\x6f\x4c\x12\xa6\xb9\x68\xe9\x72\x61\x5a\xf5\x91\x77\ \xfc\x69\x24\x36\x6e\x60\xdb\xac\x19\x96\x5d\x53\x62\x1c\xcf\x6e\ \xcd\x68\x72\xd9\x4d\x96\x4d\xfe\x9b\xb6\x94\xf2\xca\x7b\xe2\x9e\ \xfe\x3b\x77\x68\x2b\x27\xff\x86\xb1\x15\xbd\x07\x4d\x3a\xd2\x7c\ \xa7\xaf\xb3\x80\xc2\xe4\x47\x1b\x60\xef\x9a\xde\xa0\xa8\x5a\x25\ \x50\x0a\x6c\x04\xae\x8a\x85\x43\x2f\x55\x7f\x4d\x63\x26\xf1\xcf\ \x00\x71\xcd\xde\xc5\xd2\x11\x58\xac\xa8\xda\xd1\x36\x5c\x7b\xaa\ \x0d\xd7\x74\x1d\x4d\x0a\xf2\x84\xea\x95\x96\x6d\x65\xd3\x96\x52\ \xa1\x9a\xb5\xe2\xf1\x90\x7f\xe6\x78\x72\xfa\x0d\xb4\xe6\x7a\x12\ \xc3\x78\x9b\xb7\xa4\xf0\x8a\x09\x96\x1e\xe9\x0c\x7d\x34\x93\x0d\ \x9b\xc4\xd5\xa9\x38\x61\xc4\x20\x61\x5a\x69\xce\xec\x60\xc0\x6f\ \xd1\x60\x60\x1d\x8a\xaa\x75\x22\xb5\xc6\x7a\xdb\xf1\xa1\x9b\x04\ \x05\x58\x56\xd3\x0b\x52\x32\x00\x8a\xaa\x4d\x00\xc4\x76\x78\x11\ \x4f\x2e\xf0\xae\xa2\x6a\x4f\x5b\x7c\xdd\x49\x80\x79\xd5\x69\xd2\ \x80\x9f\xe7\xff\xc9\xe3\x2f\xbd\x2b\x54\xb3\xa8\x69\x13\x0a\xf2\ \xc4\x9a\x8a\x3a\xf1\xfa\xc8\x1f\x77\x01\xb9\x43\x8f\xb2\xee\x9a\ \x92\x46\xe1\x55\x02\x34\xb9\xf6\x4e\xbc\x6d\xac\x2d\x1d\xf2\xfb\ \x5f\xe2\x4e\x05\x17\x16\xe4\x33\xe4\xa0\xde\xc2\xf4\xd2\x9c\x37\ \xec\x0e\xc0\x24\x8e\x34\xf8\xfe\xaa\x58\x38\x54\xe3\x03\x6a\x83\ \x0d\x80\xa2\x6a\x7d\x80\x1b\x0c\x06\x62\x25\x67\x29\xaa\xf6\x9b\ \xa2\x6a\x66\x54\x27\xdc\x85\x60\xc0\xbf\x09\x70\x6a\xb5\x42\xdb\ \x59\xb3\x6e\x03\xd7\xdc\xf7\x14\x15\x95\x62\xeb\xf8\xab\xfb\x76\ \xc3\xeb\xb5\xb8\x30\x8a\xc7\x43\xde\x09\xa7\xcb\xc4\x40\x07\xe3\ \xeb\xd8\x99\xc2\x6b\x6e\xc7\xdb\xb2\x31\x4d\x49\x8d\xb1\x66\x9d\ \xb8\x24\xf4\x4d\x5b\x4a\x99\x31\xe7\x07\x61\x7a\x69\xcc\x36\xe0\ \x75\xbb\x83\x30\x89\x01\x06\xdf\x1f\xad\xed\x07\x0d\x32\x00\x8a\ \xaa\x15\xa0\x97\xfa\x75\x5b\x09\xaa\xce\x40\x54\x51\xb5\x61\x16\ \x5d\xef\x45\x8b\xae\xe3\x2a\xaa\xaa\xaa\xb8\xfe\x81\x67\x59\xb5\ \x66\xbd\x50\x5d\x8f\xc7\xc3\xd9\x63\x46\x0a\xd5\x4c\x85\xdc\x23\ \x46\x91\x7f\xe6\xf9\xb2\x4e\x80\xc3\xc8\xea\xd1\x93\x26\x57\x4e\ \xc0\x53\x68\xcf\x4e\xa5\xe8\x46\x3d\x77\x3e\xf1\x0a\x7f\x2e\x91\ \x9d\x6d\xeb\x61\x62\x30\xe0\x5f\x63\x77\x10\x26\xb1\x97\xc1\xf7\ \xcf\xae\xed\x07\x0d\x1d\xb9\xbe\x40\xdf\x4b\x70\x23\x79\xc0\x64\ \x45\xd5\x1e\xb5\xe0\x5a\x53\xa9\x65\xaf\x25\x93\x79\xfc\xe5\x77\ \xf9\xee\x97\xdf\x84\xeb\x9e\x7b\xf2\xd1\x0c\xe8\x5d\x63\xfe\x8b\ \x65\xe4\x0c\x18\x44\xc1\xf9\x57\xc9\x8a\x81\x0e\x21\x5b\x1d\x40\ \x93\x8b\xaf\xc3\x93\x6b\xe1\xb6\x50\x35\x7a\xef\xd3\x55\xa8\x5e\ \x69\xd9\x56\xae\xb9\xe7\x49\xb6\x94\x96\x09\xd5\x4d\x33\x76\x49\ \x70\x4b\x23\x8c\xee\x61\xd5\xba\x32\x52\xaf\x01\x50\x54\xed\x2e\ \xa0\x97\xc1\x00\xec\xc6\x03\x8c\x57\x54\x6d\xae\xa2\x6a\xa6\xa5\ \x02\x07\x03\xfe\x2a\xe0\x15\xb3\xf4\xdd\xc8\x8c\x39\xdf\x0b\x3d\ \x0f\xbd\x9d\x03\xf7\xed\xc6\xd5\xe7\x9e\x2c\x5c\xb7\x31\x64\xf7\ \x3c\x80\xc2\x6b\xee\x90\xbd\x03\xec\xc4\xeb\x25\x4f\x3b\x99\x82\ \xb3\x2f\x01\x5f\x63\xf2\xa5\xc4\x71\x50\xef\x7d\x68\xda\xa4\x40\ \xa8\x66\x24\x1a\xe7\xd6\x47\xe5\x02\x63\x2d\xac\x46\xcf\xc1\x4a\ \x3b\x92\xe7\xfe\x9b\x18\x90\x48\x00\xb5\x26\x5e\xd5\x69\x00\x14\ \x55\x3b\x04\xb8\xd2\xc0\xc5\x9d\x46\x77\x60\x99\xa2\x6a\x62\x2b\ \xd2\xfc\x13\xf9\x5b\x9a\x64\xf1\x32\x73\x06\xad\x92\xe2\x16\x3c\ \x7d\xe7\x15\x64\x67\xd9\x3b\xd0\xef\x8c\xaf\x43\x27\x0a\x6f\xbe\ \x5f\x76\x11\xb4\x01\x6f\xf3\x96\x34\xb9\xea\x56\x72\x47\x1c\x0b\ \x0e\x68\x94\xd3\xb2\x79\x11\x37\x5c\x30\x56\xb8\xee\xf4\xd9\xdf\ \x0b\x3d\x5e\x98\x46\xbc\x16\x0c\xf8\xc5\x94\x5c\x74\x1e\x03\x30\ \xb6\xf5\xbe\xa2\xae\x7a\x00\xb5\x1a\x00\x45\xd5\x0a\x81\xc9\x06\ \x2f\xee\x44\xf2\x81\x4f\x14\x55\x7b\xc0\x0c\xf1\x60\xc0\xff\x0b\ \xf0\xbd\x19\xda\x6e\xa2\xb4\x6c\x2b\x57\xdf\xfd\x24\x9b\xb7\x88\ \x5d\xb6\xcc\xc9\xc9\xe6\xd9\xbb\xaf\xa4\x75\x4b\xbb\x2a\x50\xd7\ \x8e\x27\xbf\x80\x82\xf3\xae\x20\xff\x94\xb3\x21\x4b\x6e\x09\x58\ \x41\xd6\xbe\xbd\x29\x9c\xf0\x00\x59\x9d\xbb\xd9\x1d\xca\x3f\x38\ \xe5\x98\xc3\x19\xd8\xa7\xa7\x70\xdd\xc7\x5f\x7e\x97\xef\xe7\xfe\ \x2e\x5c\xd7\xe5\xa4\xf3\x43\x97\xd1\x26\x2a\x75\x66\x90\xd6\xb5\ \x02\x30\x0b\x10\xbb\x8e\xd5\x70\xc4\xa6\x8a\xef\x8a\x07\xb8\xc0\ \xc4\x13\x02\xe9\x7c\x43\x36\x08\xb3\x12\x97\xee\xbc\xe2\x5f\xec\ \xd7\xa3\x8b\x70\x5d\x91\xe4\x0c\x1a\x46\xe1\xf5\x77\xe1\x6d\xed\ \x84\x36\x15\x69\x8a\xcf\x47\xde\x09\xa7\xd3\xe4\xc2\x6b\xf0\x14\ \x8a\x4d\xba\x13\x81\xc7\xe3\xe1\x89\x5b\x2f\x25\x18\x10\xbb\x2d\ \x54\x59\x59\xc5\x75\xf7\x3f\x23\x3c\xa1\xd6\xc5\x2c\x08\x06\xfc\ \x5f\xd9\x1d\x84\x89\x18\x6d\xff\x58\x67\x61\xa4\x1a\x0d\x80\xa2\ \x6a\x0f\x52\x4b\x75\x21\x8b\x88\x02\xdf\x98\x7c\x8d\xf3\x62\xe1\ \x90\x59\x59\xa3\xaf\xa2\x97\x6b\xcc\x48\xde\x9c\x3c\x9d\x8f\x3f\ \xff\x5a\xb8\xee\x69\xc7\x0e\xe3\xa4\xa3\x0e\x13\xae\x6b\x06\xbe\ \xf6\x1d\x29\xbc\xf9\x3e\x72\x06\x0c\x72\xc4\xb2\x74\x3a\xe1\x0b\ \xb4\xa3\xf0\xda\x3b\xf4\x5a\x0c\x0e\xfe\xb7\x6d\x56\x54\xc8\x73\ \xf7\x5c\x4d\x41\xbe\xd8\x84\xc4\x35\xeb\x36\x70\xed\x7d\x4f\x0b\ \x3f\x52\xeb\x52\xd2\x39\xf9\x0f\xc0\xe8\xd3\xce\xe4\xba\x7e\xb8\ \x8b\x01\x50\x54\xed\x70\xe0\x22\x83\x17\x35\x4a\x61\x2c\x1c\x3a\ \x00\xb8\x13\x3d\x89\x41\x34\x13\x63\xe1\x90\x69\x85\x82\x82\x01\ \x7f\x1c\xf8\xd8\x2c\x7d\x27\xf3\xf3\xfc\x3f\xf9\xbf\xe7\xdf\x16\ \xae\x7b\xe0\xbe\xdd\xb8\xf5\xd2\x71\xc2\x75\xcd\xc4\x93\x97\x4f\ \xfe\x99\xe7\xd3\xe4\xea\xdb\xf0\x05\xda\xdb\x1d\x8e\xeb\xf1\xe4\ \xe4\x92\x77\xdc\xa9\x14\xde\xfc\x00\xbe\x8e\xee\x28\x8d\xdb\x7d\ \x8f\x20\x0f\x5c\x37\x5e\xb8\xee\x4f\xf3\x17\xf2\xc8\x0b\x19\x5f\ \x76\x24\x41\xfa\x1b\x80\xd6\x06\xde\x9b\x88\x85\x43\xdf\xd6\xf5\ \x82\x7f\x18\x80\x64\x86\xfc\x7b\xd8\xbf\xef\x9f\x0f\x10\x0b\x87\ \xae\x05\x06\x02\xe2\xba\xc7\xe8\x8d\x13\xac\x28\x15\x9c\x71\xdb\ \x00\x6b\xd7\x6f\x34\xe5\xc9\xc4\x89\x49\x7f\xa9\x90\xd5\xb9\x1b\ \x85\x13\xee\x27\xef\xf8\xd3\x6c\x3d\x9e\xe6\x66\xb2\x7b\x1e\x40\ \xe1\xed\x0f\x93\x3b\x7c\x94\xed\x59\xfe\xa9\x72\xf4\xe1\xfd\x19\ \x7f\xea\x28\xe1\xba\xaf\x4f\x9c\xc6\xa7\x5f\x9a\xbd\x50\xea\x68\ \x3e\x0b\x06\xfc\x8b\xed\x0e\xc2\x64\x66\x03\xab\x68\xdc\x83\xf0\ \xba\xfa\x5e\x50\x7d\x05\x60\x36\xc9\xc9\xd7\x66\x76\x8c\x92\xb1\ \x70\x68\x26\x50\x82\xde\xe1\xc8\x28\x95\x40\xff\x86\x74\x49\x12\ \xc0\x7b\x40\xc6\x6c\xd4\x55\x55\x55\x71\xfd\xfd\xcf\xb0\x72\x4d\ \xbd\xf7\x5c\x4a\x38\x39\xe9\x2f\x25\xbc\x3e\x72\x87\x1d\x4d\xe1\ \x1d\x8f\x90\xbd\xbf\x3c\x29\xd0\x50\xbc\x2d\x5b\x51\x70\xe1\x35\ \x14\x5c\x78\x0d\xde\x96\xc5\x76\x87\xd3\x68\xae\x39\xef\x64\x0e\ \x51\xc5\x27\x05\xde\xfe\xd8\xcb\x2c\xca\xdc\x22\x41\x69\xff\x90\ \x15\x0b\x87\x0e\x8d\x85\x43\xc5\xb1\x70\xc8\x0b\x1c\x06\x3c\x8a\ \x9e\x64\xbe\xb1\x01\x6f\x8f\xd4\xf7\x82\x1d\xed\x80\x15\x55\x7b\ \x1c\x38\xd7\x40\xac\xa2\x69\x1f\x0b\x87\x96\xec\xfc\x07\x8a\xaa\ \x3d\x04\x5c\x48\xe3\x57\x28\xfe\x1d\x0b\x87\x9e\x34\x1c\x59\x03\ \x89\x44\xe3\x4f\x03\x67\x59\x75\x3d\x3b\x79\xec\xa5\x77\x78\xe9\ \x1d\xf1\xbb\x1e\xf7\x5f\x77\x9e\x6b\xf6\xfd\x53\xa1\x62\xee\x0f\ \x94\xbd\xfb\x1a\x95\x0b\xc5\x17\x48\x4a\x07\x3c\x85\x4d\xc9\x3d\ \x7c\x04\x39\x43\x8f\xc2\x93\x93\x6b\x77\x38\x42\x58\xb7\x61\x13\ \xc3\x4e\xbf\x82\x48\x34\x2e\x54\x37\x18\x28\xe1\xf9\x7b\xae\x12\ \x9e\x6b\xe0\x70\x4a\x01\x7f\x30\xe0\x6f\xc8\x44\x98\x96\x24\x3b\ \xf3\x1e\x0d\x8c\x40\xef\xd1\xd3\x9e\x9d\x1e\x9e\x81\xe7\x63\xe1\ \xd0\x99\x75\x69\x78\x12\x89\x04\x8a\xaa\x0d\x47\x6c\x21\x85\x2a\ \xf4\x49\xda\xc8\x56\xc2\x89\xb1\x70\x68\x97\x0a\x46\x8a\xaa\x0d\ \x41\x7f\xba\x4e\xf5\x6e\x9f\x14\x0b\x87\x46\x18\x88\x27\x65\x22\ \xd1\xf8\x41\xc0\x4c\x2b\xaf\x69\x07\x33\xc2\x3f\x70\xf5\xdd\xe2\ \x7d\xd5\x69\xc7\x0e\xe3\xae\x2b\xcf\x16\xae\xeb\x24\x2a\xe6\xff\ \xc2\xd6\x89\x6f\x51\x31\xef\x27\xbb\x43\x71\x04\x9e\xdd\x9a\x93\ \x3b\xec\x68\x72\x06\x0e\x49\xcb\xed\x92\x79\x7f\x44\x18\x79\xd6\ \x35\xc2\xab\xfa\x0d\xea\xbb\x1f\x77\x5c\xf1\x2f\xa1\x9a\x0e\xe7\ \x7f\xc1\x80\xdf\x19\x95\xc0\x1c\x84\xa2\x6a\xad\x81\xd1\xc0\x50\ \xe0\xc1\x58\x38\x34\xbd\xae\xd7\x7b\x4a\x0e\x1c\xd5\x0a\x58\x42\ \xea\x13\x6a\x5d\x5c\x08\xdc\x63\x50\xf3\xde\x58\x38\x54\x63\x11\ \xa2\xe4\xf1\xbd\x39\xe8\xb5\xfe\x1b\xc2\x4a\xa0\xc4\xa2\xa5\xff\ \x1d\x44\xa2\x71\x0f\xb0\x10\xbd\x4d\x71\x5a\xb2\x78\x59\x9c\x33\ \xae\xbc\x4b\xf8\x79\xff\x03\xf7\xed\xc6\x5b\x8f\xdf\xe2\xda\x7d\ \xff\x54\xa9\xfc\xf3\x37\xb6\x4e\x7c\x9b\xf2\x1f\xbf\x81\x84\x19\ \x79\xaf\xce\xc6\xdb\xaa\x35\xb9\xc3\x47\xe9\xa7\x26\xd2\xbc\x86\ \xc2\x7b\x9f\x7c\xc9\xbf\xaf\xbf\x5f\xb8\xee\x85\xa7\x1f\x9b\x96\ \xab\x65\xb5\x70\x44\x30\xe0\xff\xc8\xee\x20\xdc\x8e\x17\x7d\xdf\ \x5f\xe4\xe4\x3f\x25\x16\x0e\x3d\x02\xac\x35\xa8\x53\x6b\x65\x8f\ \x58\x38\xb4\x26\x16\x0e\x75\x01\x9e\x6d\x80\x8e\x95\xfb\xfe\xff\ \x20\x18\xf0\x27\x80\x97\xad\xbe\xae\x55\xe8\x35\xca\x9f\x12\x3e\ \xf9\xbb\x3d\xe9\xaf\x31\xf8\x76\xef\x42\xc1\x85\xd7\x50\x38\xe1\ \x01\x72\xfa\x1f\x9a\x96\x4f\xbf\x35\xe1\xeb\xd4\x85\xfc\xb3\x2e\ \xa4\xe9\x5d\x8f\x91\x33\x70\x68\xda\x4f\xfe\x60\x5e\x52\xe0\x63\ \x2f\xbd\xc3\xf7\xf3\x32\xa2\x48\x50\x0c\xbd\x39\x9d\xc4\x20\x5e\ \x60\x86\x40\xbd\x15\xc0\xf0\xe4\xd7\x46\x33\x53\xea\x7d\x6a\x8e\ \x85\x43\x67\x01\xa3\xd0\x5b\x41\xd6\xc6\xf9\xb1\x70\xc8\xce\xdf\ \x8a\x17\x31\xe7\x28\xa3\xed\xdc\xf5\xc4\x2b\x2c\x5c\x2c\xb6\xf7\ \x51\xda\x24\xfd\x35\x12\x5f\xdb\x20\xf9\xe3\x2e\xa0\xe9\x43\xcf\ \x51\x70\xd6\x45\x64\x75\xdf\xc7\xd1\x67\xdd\x1b\x83\xb7\x65\x31\ \xb9\x23\x47\xd3\xf4\x8e\x47\x29\xbc\xee\x2e\x72\xfa\x0d\x04\x6f\ \xe6\x98\x3d\x30\x27\x29\xb0\xb2\xb2\x8a\xeb\xef\x7b\x86\x55\x6b\ \xd3\x3e\xf7\xf8\x95\x60\xc0\x2f\x8b\x20\x08\x60\x7b\x0e\xc0\x48\ \xe0\x4d\xc0\x48\xb6\x4d\x05\xd0\x35\x16\x0e\x2d\x04\x50\x54\xed\ \x0d\xf4\xbd\x88\xc6\xb2\x2a\x16\x0e\x35\x28\xed\x57\x51\x35\x3f\ \x10\x06\x82\xd5\x7e\xf4\x61\x2c\x1c\x1a\x5e\xc3\x5b\x2c\x25\x12\ \x8d\xbf\x03\x1c\x63\x77\x1c\x22\x79\x73\xf2\x0c\xee\x7f\x46\x7c\ \xfb\xed\x74\x4d\xfa\x33\x42\xd5\xda\xd5\x94\xcf\x9e\xc9\xb6\x59\ \x33\xa8\x5a\xb6\xa4\xde\xd7\x3b\x11\x4f\x5e\x3e\xd9\x07\xf4\x23\ \xbb\xdf\x40\xb2\xba\x74\x4f\x3b\x53\xd3\x18\xcc\x4a\x0a\xdc\xb7\ \xdb\x1e\x3c\x7e\xcb\x25\xf8\x7c\x69\xd9\xa6\xba\x1c\xe8\x14\x0c\ \xf8\xdd\xf9\x8b\xe0\x30\x76\x3e\x05\xd0\x0a\xbd\xfc\x6f\x63\x2b\ \x6c\x8c\x8b\x85\x43\xcf\x6d\xff\x46\x51\xb5\x9b\x81\x9b\x0c\xc4\ \x56\x1e\x0b\x87\x72\x52\x79\x83\xa2\x6a\xaf\x02\x27\x26\xbf\xb5\ \x65\xdf\xbf\x26\x22\xd1\x78\x6f\x40\x7c\x69\x3c\x9b\xf8\x79\xc1\ \x9f\x9c\x7b\xfd\x03\xc2\xcf\xfb\x67\x42\xd2\x9f\x51\x2a\x97\x44\ \xa8\xf8\xf5\x27\x2a\xe7\xff\x42\xc5\x82\xb9\x24\x4a\xb7\xd8\x1d\ \x52\xcd\x78\x3c\xf8\xda\x77\x24\xab\xeb\x5e\x64\x75\xdb\x07\x5f\ \xd7\xbd\xf0\xe4\xa4\xf4\xeb\x9c\x11\x98\x95\x14\x38\x66\xe4\x60\ \x2e\x3a\xe3\x38\xa1\x9a\x0e\xe1\xd9\x60\xc0\x9f\x11\x27\xab\xac\ \x60\x87\x01\xd8\x8e\xa2\x6a\x4f\x02\xa9\x8e\xc2\xef\xc4\xc2\x21\ \xad\x9a\xce\x91\xc0\x44\x63\xe1\x91\x1d\x0b\x87\x52\x2a\xa9\xab\ \xa8\xda\x49\xc0\xe3\xc0\x81\xb1\x70\xc8\x31\x67\xac\x22\xd1\xf8\ \x14\x8c\x37\x76\xb0\x9d\xb5\xeb\x37\x32\xf6\xb2\x3b\x84\x9f\xf7\ \xcf\xb4\xa4\x3f\x21\x54\x55\x51\x19\xf9\x93\x8a\xf9\x3f\x53\xf1\ \xeb\xcf\x54\xfe\x3e\x9f\xc4\x56\x9b\x7a\xc6\x7b\x3c\xf8\x02\xed\ \xf1\x75\xdd\x4b\x9f\xf4\xf7\xec\x81\xa7\x49\xa1\x3d\xb1\xb8\x0c\ \xb3\x92\x02\x6f\xbf\xec\x2c\x06\xf7\xdf\x5f\xb8\xae\x8d\x54\x02\ \x5d\x83\x01\xff\x1f\x76\x07\x92\x2e\xec\x62\x00\x60\xc7\xe4\xfd\ \x36\x0d\xdb\x12\x88\xc6\xc2\xa1\xb6\x35\x68\xb4\x40\xef\xd3\x6c\ \x84\xfe\xb1\x70\x68\x96\x41\x0d\x47\x90\x0e\x47\x02\xab\x12\x09\ \x2e\xb8\xe9\x21\xbe\xfd\x45\xac\xaf\x2a\x29\x6e\xc1\x94\x17\xee\ \xcb\xd8\x7d\x7f\x61\x54\x55\x52\xb5\x22\x4e\xe5\xf2\x28\x55\xf1\ \x18\x55\xcb\xa3\x54\xc5\xa2\x54\x2e\x5f\x46\x62\x83\x18\xc3\xe6\ \xc9\xc9\xc1\xeb\x57\xf0\x96\x04\xf0\x96\x04\xf0\x95\xb4\xc1\x5b\ \xd2\x06\x6f\x49\x00\x4f\xbe\x5d\xbd\xc3\xdc\xcf\x6d\x8f\xbe\xc4\ \x63\x2f\xbd\x23\x54\x33\x3f\x2f\x97\xe7\xef\xb9\x9a\x0e\x6d\x4b\ \x84\xea\xda\x88\x3c\xfa\x27\x98\x1a\x0d\x00\xec\x98\xc0\x67\x53\ \x77\x33\x82\x72\xa0\x63\x2c\x1c\x8a\xd6\xa2\x51\x49\xdd\x1d\x07\ \xeb\xe3\x96\x58\x38\x64\x64\x1b\xc1\x51\x44\xa2\xf1\x99\xc0\x41\ \x76\xc7\xd1\x58\x26\xcf\x98\xc3\x2d\x0f\xbf\x20\x54\x33\x27\x27\ \x9b\x77\xfe\x73\xab\xe3\x3b\xfc\xb9\x9d\x44\xe9\x16\xaa\x56\xc6\ \xf5\x2d\x83\xb2\x52\x12\x65\xa5\x24\x4a\x93\x9f\xcb\x4a\xf5\x3f\ \xab\xac\xc4\x93\x97\x8f\x27\x2f\x0f\x4f\x5e\x3e\xe4\xe5\xe3\xc9\ \x2f\xf8\xfb\xcf\x76\x6b\x81\xb7\x45\x4b\xb9\x7f\x6f\x02\x95\x55\ \x55\x9c\x7c\xf1\x6d\x7c\x16\xae\xb3\x7b\x6b\xca\x74\x68\x5b\xc2\ \xf3\xf7\x5c\x4d\x7e\x9e\xeb\x8b\x29\x25\x80\xbd\x83\x01\xff\x5c\ \xbb\x03\x49\x27\x6a\x35\x00\xdb\x51\x54\xed\x3f\xc0\x39\xb5\xfc\ \xf8\xa4\x58\x38\xf4\x6a\x1d\xef\x5d\x0f\x14\x35\x3e\x3c\xa6\xc6\ \xc2\xa1\xb4\xc9\x08\x8b\x44\xe3\x43\x01\x57\x9e\x5d\x2d\x2f\xaf\ \x60\xf4\xf9\x37\xb1\x7c\xa5\xd8\x06\x8a\x32\xe9\x4f\x22\xd1\x31\ \x2b\x29\x70\xc4\xa0\xbe\x5c\x7f\xfe\x58\xa1\x9a\x36\xf0\x6e\x30\ \xe0\x17\x7f\x76\x32\xc3\xa9\xf7\xe9\x3c\x16\x0e\xfd\x1b\x38\x12\ \xa8\xbe\xb9\xf8\x72\x5d\x93\x7f\x12\xa3\x67\xc4\xf6\x34\xf8\x7e\ \x47\x11\x0c\xf8\xa7\x60\x7e\x9b\x63\x53\x98\x3e\xe7\x7b\xe1\x93\ \xbf\x9b\xda\xfb\x4a\x24\x66\x63\x56\xfb\xe0\xc9\xd3\xe7\xf0\xd7\ \xd2\xe5\x42\x35\x6d\xe0\x76\xbb\x03\x48\x47\x1a\xb4\x3c\x1f\x0b\ \x87\x26\x03\x01\x60\xfb\xe6\xef\x5f\xb1\x70\xe8\xd4\x06\xbc\xf5\ \xc7\xc6\x06\x96\xc4\x6f\xf0\xfd\x4e\xc4\x95\x37\xf2\x92\xd8\x0a\ \xe1\x9a\xab\xd7\xae\x97\x3d\xcd\x25\x92\x9d\x30\xa3\x7d\x70\x55\ \x22\xc1\xd3\xaf\x7d\x20\x54\xd3\x62\xa6\x04\x03\x7e\x57\x3e\x38\ \xa5\x82\xa2\x6a\x5e\x45\xd5\xba\x5b\x79\xcd\x06\xef\xcf\x27\xab\ \xef\xed\x09\xdc\x0b\xa8\x0d\x7c\x5b\x9d\x75\x88\x1b\x40\x76\xf2\ \x8c\x7f\x3a\xf1\x1e\x62\x3a\x1b\x5a\xca\xb2\x15\x46\xf3\x39\x77\ \x65\xe2\xb4\xd9\xa6\x1c\x27\x94\x48\xdc\x8c\x19\x95\x02\x67\x84\ \x7f\xa0\xb2\xd2\xf6\x13\xd1\x8d\xc5\x95\x0f\x4d\x8d\x40\x03\xe6\ \x2a\xaa\x56\xa1\xa8\x5a\x4c\x51\xb5\xa9\x8a\xaa\xdd\xa4\xa8\xda\ \x5e\x66\x5d\x30\xe5\x04\xbd\x58\x38\x74\x65\x2c\x1c\x6a\xe8\xe3\ \xe0\xbb\xa9\xea\xd7\x40\x5a\x15\xd0\x49\x96\x07\xbe\xd3\xee\x38\ \x52\xa5\x69\x81\x39\x5d\xa2\xdd\x66\x02\x36\x6c\xda\x42\x55\x55\ \x5a\x16\x76\x94\x38\x88\xb3\xc7\x8c\x14\x9a\xb8\x57\x59\x59\x45\ \x7c\x95\xd8\x2d\x3c\x8b\xf8\x3c\x18\xf0\x7f\x6e\x77\x10\x16\xb1\ \x7d\x55\xdd\x07\x94\x00\x83\x80\x9b\x81\x9f\x77\x32\x05\xd3\x14\ \x55\xbb\x59\x51\xb5\x7d\x44\x5c\x30\x4b\x84\x48\x6d\xc4\xc2\xa1\ \xb8\xa2\x6a\xe5\x80\x91\x02\xdf\x03\x01\xcb\x5a\xf8\x5a\xc4\xeb\ \xc0\x04\x60\x0f\xbb\x03\x69\x28\xbd\xf7\xde\x93\xd7\x26\x4e\x33\ \x45\x7b\xe2\xb4\xd9\x70\xfd\x03\x3c\x71\xdb\xa5\x64\xf9\x9c\x57\ \x07\xe0\xc7\x5f\x17\xf2\xf8\xcb\xef\xf2\xf5\x4f\xf3\x89\xad\x58\ \x4d\x96\xcf\x47\x71\xcb\x66\x8c\x1c\xdc\x8f\x33\x8e\x3b\x22\x9d\ \x8e\x59\x49\x1c\xc0\xea\xb5\x1b\x38\xf1\x82\x09\x94\x96\x6d\x15\ \xaa\xbb\x6c\xc5\x6a\xda\xf8\x5b\x09\xd5\xb4\x80\xdb\xec\x0e\xc0\ \x42\xfa\xd6\xf1\xb3\xed\xa6\xa0\x04\x38\x14\xb8\x29\x79\xca\x6e\ \x15\xf0\x2b\xfa\x11\xf3\x77\x62\xe1\x50\x4a\xc7\x48\xac\xa8\x15\ \x69\x34\xa5\x75\x5f\x21\x51\x38\x88\x64\x1d\xeb\xbb\xec\x8e\x23\ \x15\x7a\xf6\xe8\x4c\x6e\x8e\x79\x8d\x5a\x9c\xb8\x12\x50\x5e\x51\ \xc9\x5d\x4f\xbc\xc2\x88\x71\x57\xf3\xfe\xa7\x5f\x12\x4b\x6e\x83\ \x54\x54\x56\x12\x5b\xb1\x9a\xa7\x5e\xfd\x80\xfe\xa3\xc7\x73\xce\ \x75\xf7\xf3\xeb\xc2\x88\xcd\xd1\x4a\xd2\x81\xd5\x6b\x37\x30\x7a\ \xfc\x4d\xa6\xdc\x4f\xad\x9a\xef\x26\x5c\xd3\x64\xbe\x09\x06\xfc\ \x1f\xdb\x1d\x84\x15\x28\xaa\x56\x00\x34\xa8\xf4\xfd\x4e\xf8\xd0\ \xf3\xe4\x06\x02\x37\xa2\x77\xc8\x4d\x09\x53\x57\x00\x92\xcc\x07\ \x76\x29\x14\x94\x02\xed\x44\x05\xe2\x30\x5e\x44\x2f\x95\xec\x8a\ \xbf\x5f\x61\x41\x3e\x17\x9d\x7e\x1c\xf7\x3c\x55\xdf\xc1\x8f\xc6\ \xe3\xa4\x95\x80\x15\xab\xd7\xf1\xaf\x6b\xee\xe5\xab\x1f\x7f\xad\ \xf3\x75\x55\x55\x09\xde\xff\xf4\x4b\x3e\x98\x3a\x8b\xa1\x07\x1f\ \xc8\xa5\xe3\x46\xb3\xf7\x9e\xbb\x5b\x14\xa5\xa4\x36\xca\x2b\x2a\ \x99\x3a\xeb\x5b\xbe\xfe\x71\x3e\xab\xd7\x6d\x20\x91\x48\x70\xe0\ \x3e\x5d\x19\xd8\xa7\x17\x81\x12\x67\x3e\x05\x9b\x39\xf9\xb7\x68\ \x56\xe4\xc6\x95\xaa\x4c\xd9\xfb\x07\x38\x43\x80\xc6\xec\x54\xdf\ \x50\x6f\x1d\x00\xa3\x08\xe8\x09\x00\xd0\x34\x16\x0e\x6d\x12\x10\ \x8e\xa3\x88\x44\xe3\xe7\x03\x8f\xd8\x1d\x47\x2a\x5c\x75\xf7\x7f\ \xf8\x2c\x6c\xf4\x70\x47\xdd\x8c\x18\xd4\xd7\x56\x13\xf0\xdd\xdc\ \xdf\x18\x77\xd5\x3d\x8d\x3e\xf6\x78\x58\xff\xfd\xb9\x64\xdc\x68\ \x59\xdc\xc8\x06\x36\x6c\xdc\xcc\xa3\x2f\xbd\xc3\xff\xde\xff\x94\ \xd5\x6b\x37\xec\xf2\xf3\xdc\x9c\x6c\xae\x1b\x7f\x2a\x67\x9d\x70\ \x24\x1e\x07\x15\x34\x32\x73\xf2\x07\x18\x39\xb8\x1f\xd7\x8d\x6f\ \xc8\xc1\x2d\xc7\xf0\x0b\xb0\x4f\x32\x67\x2a\xed\x51\x54\xed\x33\ \xe0\x60\x83\x32\x47\xc5\xc2\xa1\x94\x8e\x7b\x58\x61\x00\xf6\xc7\ \xf8\xd9\xf7\x73\x63\xe1\xd0\x7f\x44\xc4\xe3\x24\x22\xd1\x78\x3e\ \xb0\x08\x17\x1d\x77\xdc\xb8\xb9\x94\xf1\x37\x3e\xc8\x6f\x8b\xcc\ \x6d\xc6\x65\x97\x09\xf8\xdf\xfb\x9f\x72\xcd\xbd\x4f\xb3\x6d\x5b\ \xb9\x61\xad\x43\x0e\xdc\x97\x4b\xcf\x3a\x9e\x03\xf7\xed\x26\x20\ \x32\x49\x5d\x6c\xdb\x56\xce\xf3\x6f\x7d\xc8\x43\xcf\xbf\xc5\xba\ \x0d\xf5\x3f\x2b\x0c\xec\xd3\x93\x27\x6e\xbd\x94\x66\x45\xf6\xf7\ \x2b\x30\x7b\xf2\x0f\x06\x4a\x78\xf6\xee\x2b\x29\x34\x29\x91\xd7\ \x24\x4e\x0a\x06\xfc\xe6\x2d\x37\x3a\x0c\x45\xd5\x36\x03\x46\x6a\ \x69\x6f\x8d\x85\x43\x29\x17\x90\x30\xdd\x00\x80\x90\x92\xc0\x1f\ \xc7\xc2\xa1\xa1\xa2\xe2\x71\x12\x91\x68\xfc\x0a\xe0\x1e\xbb\xe3\ \x48\x85\x0d\x9b\x36\x73\xfe\x4d\xff\x97\x56\x26\xa0\xbc\xa2\x92\ \x1b\x1e\x78\x96\x17\xde\x16\x5f\xa8\xb1\xdf\x7e\x7b\x71\xc9\xb8\ \xd1\x0c\xe8\xbd\xb7\x70\xed\x4c\x27\x91\x48\xf0\xce\xc7\x5f\x70\ \xd7\x13\xaf\xa4\x5c\xab\x22\x18\xf0\xf3\xdc\x3d\x57\xd3\x7d\x8f\ \xea\x5d\xc4\xad\xc3\xec\xc9\xbf\xa8\xb0\x09\xcf\xdd\x7d\x15\x6d\ \x95\x54\xb7\x97\x6d\xe5\x77\xa0\x5b\x32\x57\x2a\xed\x11\xd4\x38\ \x6f\x46\x2c\x1c\x3a\x34\xd5\x37\x59\xd5\x30\xda\xe8\xf9\x93\x5e\ \x42\xa2\x70\x26\x8f\xa0\xaf\x02\xb8\x86\xa2\xc2\x26\x3c\x3a\xe1\ \x22\xba\x74\x34\x37\x7d\xc1\xaa\xc4\xc0\x15\xab\xd7\x71\xdc\x79\ \x37\x9a\x32\xf9\x03\xcc\xfa\xee\x17\x46\x8f\xbf\x89\xa3\xce\xbe\ \x96\x19\x73\xc4\xd6\x7a\xcf\x64\x3e\xff\xfa\x27\x86\x9d\x7e\x25\ \xe3\x6f\x7c\xb0\x51\x85\xaa\x22\xd1\x38\x23\xcf\xba\x86\xf7\x3e\ \xf9\xd2\x84\xe8\xea\xc7\x8a\xc9\xff\xd1\x09\x17\xb9\x6d\xf2\x07\ \xb8\x3c\x53\x26\xff\x24\xd7\x0a\xd0\xb8\xaf\x31\x6f\xb2\x6a\x05\ \xe0\x53\x60\xb0\x01\x89\x04\x90\x17\x0b\x87\xb6\x09\x0a\xc9\x51\ \x44\xa2\x71\x11\x0e\xd0\x72\xd2\x61\x25\xc0\xe8\x7e\x7f\x63\xe8\ \xd9\x7d\x0f\xce\x39\xe9\x28\x86\x1f\xa2\x92\x63\xe2\xc9\x8a\x74\ \xa4\xaa\x2a\xc1\xe4\x19\x73\x78\xfc\xe5\x77\xf9\x7e\xee\xef\xc2\ \x74\xc7\x9f\x3a\x8a\x6b\xce\x3b\x19\x9f\xd7\x9a\x67\x22\xab\x26\ \x7f\xb3\x4d\xba\x09\x4c\x0c\x06\xfc\x23\xed\x0e\xc2\x2a\x14\x55\ \xf3\x02\x5b\x31\x96\x90\xdf\xa8\xe5\x7f\xb0\x6e\x05\xe0\x7d\x83\ \xef\xf7\x00\xc7\x89\x08\xc4\x89\x04\x03\xfe\x49\xe8\x15\x02\x5d\ \x85\xdb\x57\x02\xfe\xf7\xfe\xa7\x8c\xfa\xf7\x0d\x96\x4e\xfe\x00\ \x3f\xcc\xfb\x83\x73\xaf\x7f\x80\x7d\x86\x8f\xe3\xba\xfb\x9e\xe1\ \x97\x05\xae\x5a\x00\xb2\x85\xd2\xb2\xad\x3c\xff\xd6\x87\xf4\x1f\ \x3d\x9e\x7f\x5d\x73\xaf\xd0\xc9\x1f\xe0\xb1\x97\xde\xe1\xe4\x8b\ \x6f\x6b\x50\xfe\x80\x51\xe4\xe4\x5f\x2b\xa5\xc0\x85\x76\x07\x61\ \x31\xe3\x31\x7e\x1a\x6f\x56\x63\xdf\x68\xd5\x0a\x40\x0b\xc0\x68\ \x2d\xd9\x77\x63\xe1\x50\xda\x76\x83\x8a\x44\xe3\x41\x60\x1e\xc6\ \x12\x41\x6c\xc1\x6d\x2b\x01\x66\xee\xf7\x37\x96\x1e\x5d\x3a\x32\ \x66\xe4\x60\x8e\x1d\x76\xb0\x23\x12\xd3\x9c\xc2\xaa\xb5\xeb\x79\ \xfe\xcd\x0f\x79\xfe\xad\x0f\x59\xbb\x7e\xa3\xe9\xd7\x33\x3b\x2f\ \x40\x4e\xfe\x75\x72\x63\x30\xe0\xbf\xd5\xee\x20\xac\x44\x51\xb5\ \x5f\x81\xae\x06\x65\x46\xc4\xc2\xa1\x49\x8d\x79\xa3\x25\x06\x00\ \x40\x51\xb5\x0d\x40\x53\x03\x12\xcb\x62\xe1\x50\x40\x54\x3c\x4e\ \x24\x12\x8d\x5f\x03\xdc\x61\x77\x1c\x8d\x41\x37\x01\x0f\xf1\xdb\ \xa2\xa5\xa6\x5e\xc7\xa8\x09\x68\xe8\xf9\x7e\xbb\xc8\xc9\xc9\xe6\ \xa0\xde\x7b\x33\xb8\xff\xfe\x1c\xd6\x7f\x7f\xda\x29\xad\xed\x0e\ \xc9\x72\xca\xcb\x2b\xf8\xe4\x8b\x6f\x78\x73\xf2\x0c\xa6\xce\xfa\ \x96\xf2\x0a\x6b\xb7\x83\x0b\xf2\xf3\x78\xe0\xba\xf1\x1c\x7d\x78\ \x7f\xa1\xba\x72\xf2\xaf\x93\xdf\x81\xbd\x83\x01\xbf\xd8\xf2\x87\ \x0e\x47\x51\xb5\x18\x7a\x75\xbf\xc6\x52\x16\x0b\x87\x1a\x7d\xbc\ \xc3\x4a\x03\x30\x87\x86\x37\x11\xaa\x89\x2a\x20\x3b\x16\x0e\xb9\ \xb6\xa3\x45\x7d\x44\xa2\xf1\x1c\xe0\x27\x5c\xda\x06\xd9\xe9\x26\ \xc0\x8e\xfd\x7e\xa3\x74\xe9\xd8\x8e\xc3\xfa\xef\xcf\xe0\xfe\xfb\ \x71\xe0\xbe\xdd\x6c\x2f\x90\x64\x26\xdf\xcf\xfd\x9d\x37\x26\x4f\ \xe7\xdd\x8f\xbf\xb0\x64\x29\xbe\x3e\x44\xe6\x05\xc8\xc9\xbf\x5e\ \x86\x66\x4a\xd5\xbf\xea\x28\xaa\xd6\x05\xb8\x1a\x18\x4e\xea\x47\ \xc2\xa7\xc7\xc2\xa1\x41\x8d\xbd\xb6\x95\x06\x60\x02\x7a\xb9\x42\ \x23\x1c\x13\x0b\x87\x5c\xb7\x57\x9e\x0a\x91\x68\x7c\x30\xf0\xa9\ \xdd\x71\x34\x16\xa7\x9a\x00\x91\xe7\xfb\xed\xa2\xa8\xb0\x80\x91\ \x83\xfb\x31\x56\x1b\xca\x3e\x5d\x3b\xd9\x1d\x8e\x10\xe6\xfe\xb6\ \x88\x8f\x3f\xff\x86\xb7\xa7\xcc\x64\x61\x24\x6a\x77\x38\xbb\x70\ \x88\xda\x93\xff\xdc\x66\xac\x5e\x80\x35\x93\xff\xc5\x74\xe9\x68\ \xa4\xe0\xaa\xad\xbc\x15\x0c\xf8\x47\xdb\x1d\x84\x13\x48\x76\xbf\ \xbd\x1a\xbd\x33\x60\x3b\xf4\xfc\xb7\xba\x38\x32\x16\x0e\x4d\x6e\ \xec\xf5\xac\x34\x00\x1d\x81\x3f\x0d\xca\x4c\x8a\x85\x43\x23\x44\ \xc4\xe3\x64\x22\xd1\xf8\xab\xc0\x89\x76\xc7\xd1\x58\x9c\x64\x02\ \x9c\xb8\xdf\x2f\x82\x23\x0f\xed\xcb\x43\x37\x9e\xef\xb6\xe2\x2e\ \x6c\x29\x2d\x63\xe6\xd7\x3f\xf1\xe9\x97\xdf\x32\xf5\xcb\x6f\x5d\ \xb1\x1a\x63\x24\x2f\x40\x4e\xfe\xf5\xb2\x09\xfd\xcc\xbf\xb9\x83\ \x85\x0b\x51\x54\xad\x10\xb8\x04\x38\x09\xe8\xc2\xae\x49\xfb\x86\ \x96\xff\xc1\x42\x03\x00\xa0\xa8\x5a\x29\xd0\xa8\xe3\x0a\x49\xd6\ \xc7\xc2\xa1\x66\xa2\xe2\x71\x2a\x91\x68\xbc\x0d\x7a\x0f\x05\x23\ \x39\x13\xb6\xe2\x04\x13\xe0\xf4\xfd\x7e\xa3\xec\xd1\x21\xc0\x7b\ \x4f\xde\x4e\x8b\x66\x45\x76\x87\x52\x27\xeb\x36\x6c\x22\x34\x65\ \x26\x1f\x7f\xfe\x0d\xb3\xbf\x9f\xeb\xca\x55\x98\xc6\xe4\x05\xc8\ \xc9\xbf\x41\x5c\x11\x0c\xf8\x1b\x75\x86\x3d\x93\x50\x54\x2d\x0b\ \x38\x1b\x38\x13\xbd\x41\x5e\x16\x30\x2d\x16\x0e\x19\x39\x5e\x6f\ \xb9\x01\xf8\x05\xe8\x61\x50\x66\xf7\x58\x38\x94\xf6\xe7\xa6\x22\ \xd1\xf8\x25\xc0\x03\x76\xc7\x61\x84\xf5\x1b\x37\x73\xc1\xcd\xf6\ \x98\x00\x37\xee\xf7\x37\x86\xe3\x8e\x38\x84\x47\x6e\xbe\xc8\xee\ \x30\x6a\x64\xcd\xba\x0d\xdc\xfa\xc8\x8b\xbc\xf3\xf1\xe7\x6c\x75\ \xe1\xa4\x5f\x13\x0d\xcd\x0b\x90\x93\x7f\x83\x98\x0b\xf4\x0c\x06\ \xfc\x15\x76\x07\xe2\x36\x14\x55\x3b\x01\x58\x90\x6a\xfb\xdf\xea\ \x58\x6d\x00\x1e\x06\x2e\x30\x28\xf3\x58\x2c\x1c\x3a\x5f\x44\x3c\ \x4e\x26\x12\x8d\x67\x01\xdf\x01\xae\xae\x1f\x6b\x87\x09\x48\x87\ \xfd\xfe\x54\x98\xfa\xca\x83\xb6\x96\xb3\xad\x89\x9f\x17\xfc\xc9\ \x99\x57\xde\xcd\xd2\xe5\x2b\xed\x0e\x45\x38\xf5\xe5\x05\x98\x3d\ \xf9\xef\xd6\xb4\x09\x8f\xdc\xec\xfa\xc9\x1f\xe0\x90\x60\xc0\x3f\ \xd3\xee\x20\x32\x19\xab\x0d\x40\x27\xe0\x0f\x83\x32\x8b\x63\xe1\ \x90\xb3\x46\x3b\x93\x88\x44\xe3\x03\x80\x99\xd4\x9f\x08\xe2\x68\ \xd6\x6f\xd4\xb7\x03\x7e\xff\xcb\x7c\x13\xd0\xb2\xf9\x6e\x69\xb7\ \xdf\x5f\x1f\xf7\x5d\x7b\x1e\x27\x1f\x7d\x98\xdd\x61\xec\x60\xfd\ \xc6\x4d\x1c\x74\xfc\x85\xac\x5c\xb3\xce\xee\x50\x4c\xa3\xb6\xbc\ \x00\x39\xf9\x37\x98\x97\x82\x01\xff\x58\xbb\x83\xc8\x74\xac\xaa\ \x04\x08\x40\x2c\x1c\x5a\x08\xec\xda\xa3\x33\x35\xda\x29\xaa\x66\ \x24\x8f\xc0\x35\x04\x03\xfe\x2f\x80\x17\xec\x8e\xc3\x28\xbb\x35\ \xd5\x97\x2b\x3b\x77\x30\x77\xd0\x9a\x38\x6d\x76\xc6\x4d\xfe\x00\ \xf3\x4d\x9a\x6c\x1a\xcb\xad\x8f\xbc\x98\xd6\x93\x3f\xd4\xdc\x47\ \x40\x4e\xfe\x0d\x66\x3d\x70\x85\xdd\x41\x48\x2c\x36\x00\x49\x66\ \x1b\x7c\xbf\x07\xf8\xb7\x88\x40\x5c\xc2\x95\xc0\x5a\xbb\x83\x30\ \x8a\x55\x26\xc0\x4c\xf6\xee\xba\x3b\x47\x0e\xea\x4b\x76\xb6\xd1\ \xca\x9d\x62\x71\x5a\x9e\xc3\x47\x33\xbf\xb2\x3b\x04\x4b\xd8\x52\ \x5a\xc6\xbf\xaf\xbf\x9f\xdb\x1e\x7d\x89\x15\xab\xd7\x99\x3e\xf9\ \xa7\xc1\x9e\xff\x76\xae\x0f\x06\xfc\x71\xbb\x83\x90\xd8\x63\x00\ \x9e\x12\xa0\x71\xb2\x00\x0d\x57\x10\x0c\xf8\x57\x02\xd7\xd9\x1d\ \x87\x08\xdc\x6c\x02\x46\x0f\x3f\x94\x27\x6e\xbd\x94\x1b\xce\x1f\ \xcb\xfb\x4f\xdd\xc1\xd9\x63\x46\xd2\xaa\xf9\x6e\x76\x87\x05\xe8\ \xe5\x72\x9d\xc2\x8a\xd5\xeb\x58\xbd\xd6\xe8\x22\x9f\xbb\x78\xec\ \xa5\x77\xe8\xa3\x9d\x6b\xfa\xe4\xef\xc6\xdf\x9b\x1a\xf8\x1e\x78\ \xc2\xee\x20\x24\x3a\x96\x1b\x80\x58\x38\x14\x02\x8c\x66\x7d\xee\ \x23\x22\x16\x17\xf1\x24\x30\xcd\xee\x20\x44\xe0\xb6\xc1\x2c\x3f\ \x2f\x97\x5b\x2e\x39\x93\xcb\xce\x3a\x7e\xc7\x29\x83\xe6\xbb\x35\ \xe5\xcc\xd1\xc3\x79\xf7\xa9\xdb\x99\x70\xf1\x19\xb6\x27\xe0\x39\ \xc9\x00\xfc\x11\x71\xce\x71\xee\xa2\xc2\x26\x8c\x3b\xfe\x48\xde\ \x7c\x6c\x02\x03\x7a\x9b\x9b\x4b\x5b\x5a\x66\x4e\x05\x5b\xb7\xfd\ \xbe\xd4\x43\x19\x70\x66\x86\xb5\xfa\x75\x34\x96\x26\x01\x6e\x47\ \xd0\x71\xc0\x63\x93\x66\x22\x23\x88\x44\xe3\x25\xc0\x0f\xa4\x5e\ \x2a\xd2\x91\x58\x95\x18\x68\x84\xf6\x6d\xfc\xdc\x75\xd5\x39\xec\ \xde\x4e\xa9\xf7\xb5\x3f\x2f\xf8\x93\xd7\x27\x4e\x67\xfa\x9c\xef\ \xa8\xac\xb4\xb6\x5a\x75\xb3\xa2\x42\x7e\xfd\xe4\x45\x4b\xaf\x59\ \x1b\xaf\x4f\x9c\xc6\xc5\xb7\x3e\x6a\x6b\x0c\x25\xad\x5a\x30\xe6\ \xa8\xc1\x1c\x75\x58\x7f\xf2\xf3\x72\x01\x48\x24\x12\xbc\xf0\xf6\ \x47\x3c\xf5\xea\x07\x54\xd9\x30\xe6\x35\x86\x34\x9b\xfc\x01\xce\ \x0d\x06\xfc\xff\xb1\x3b\x08\xc9\xdf\xd8\xb5\x99\xf9\x16\xc6\x0d\ \xc0\x15\x40\xc6\x18\x80\x60\xc0\xbf\x3c\x12\x8d\x9f\x02\x4c\xc1\ \x9e\xad\x1b\xa1\x6c\x1f\xdc\xc6\xdf\xf8\x20\x7f\x38\xb0\x04\xec\ \xc0\x3e\xbd\xb8\xe1\xfc\xb1\x34\x29\x68\x58\xbe\xe9\xde\x7b\xee\ \xce\xde\x7b\xee\xce\x8a\xd5\x1a\x6f\x7f\x34\x93\x77\x3f\xfe\x9c\ \xf5\x1b\x37\x9b\x1c\xa5\xce\xfa\x8d\x9b\x29\xaf\xa8\x24\x3b\xcb\ \xfe\x3e\x01\x4b\x62\xf6\x1d\xfb\xeb\x14\x0c\x70\xea\x31\x43\x38\ \x7c\x40\x6f\x7c\xbe\x7f\xfe\x8a\x78\x3c\x1e\x4e\x3f\xee\x08\xba\ \x77\xee\xc0\x0d\x0f\x3c\x6b\xd9\xff\x4d\x63\x49\xc3\xc9\xff\x8d\ \x4c\x9e\xfc\x15\x55\xf3\x02\x2f\x02\xd7\xc4\xc2\x21\x73\xdb\xa6\ \xa6\x80\x5d\x2b\x00\x22\xda\x03\x57\x00\xb9\xe9\xdc\x1c\xa8\x26\ \x22\xd1\xf8\x2d\xc0\x0d\x76\xc7\x21\x8a\xf5\x1b\x37\x3b\xca\x04\ \x78\xbd\x5e\xce\x3b\xe5\x18\x4e\x39\xe6\x70\x43\x3a\xdb\xca\xcb\ \x99\x3e\xe7\x07\x26\x4e\x9d\xc5\x37\x3f\x2f\xc0\xec\xdf\xb3\x1f\ \x26\x3d\x8b\xbf\x55\x73\x53\xaf\xd1\x10\x2e\xba\xe5\x11\xde\x98\ \x34\xdd\xd2\x6b\xf6\xea\xd1\x99\x53\x47\x0d\xa1\xdf\x7e\x7b\x35\ \xe8\xf5\xcb\x57\xad\xe1\xda\x7b\x9e\x62\xde\x1f\xce\x3a\x3d\xb1\ \x9d\x34\x9c\xfc\x17\x02\xfb\x05\x03\xfe\xcc\x4a\x0e\xd9\x09\x45\ \xd5\xae\x04\xee\x06\x12\xc0\x8f\xc0\x45\xb1\x70\xc8\xf6\x1a\x08\ \xb6\x18\x00\x00\x45\xd5\xe2\x80\xd1\x5e\xa7\xe7\xc6\xc2\xa1\x8c\ \x72\x95\x91\x68\xdc\x87\xde\x2c\x68\xa0\xcd\xa1\x08\x63\xdd\x86\ \x4d\x9c\x7f\xd3\x43\xb6\x9b\x80\x16\xcd\x8a\xb8\xfd\xb2\xb3\xe8\ \xd5\xa3\xb3\x50\xdd\xe5\x2b\xd7\x30\x69\xfa\x6c\x26\x4d\x9f\xc3\ \xb2\xf8\x2a\xa1\xda\xdb\x8b\x9b\x19\xc5\x00\x00\x20\x00\x49\x44\ \x41\x54\xf9\xf4\xe5\x07\xe8\xd1\xb9\x83\x29\xda\xa9\xa0\x9d\x7b\ \x03\xb3\xbf\x9b\x6b\xfa\x75\xbc\x1e\x0f\x07\x1f\xb8\x2f\xa7\x8e\ \x1a\x42\x8f\x2e\x1d\x53\x7e\x7f\x79\x79\x05\xf7\x3f\xfb\x3a\xef\ \x7e\xfc\x85\x09\xd1\x35\x9e\xdd\x9a\x36\xe1\xb1\x5b\x2e\x61\x8f\ \x60\xda\x74\x3e\xdf\x0a\xf4\x0b\x06\xfc\xdf\xd9\x1d\x88\x9d\x28\ \xaa\xb6\x0c\xa8\xbe\x97\xb8\x0c\xb8\xd5\xce\x39\xcc\x4e\x03\xf0\ \x3f\x60\x8c\x41\x99\x5f\x62\xe1\x90\xab\x2b\xe5\x35\x86\x48\x34\ \xae\xa0\xe7\x03\xa4\x4d\xb3\x78\xbb\x4d\xc0\x3e\x5d\x3b\x71\xc7\ \xe5\xff\xa2\x55\x0b\xf3\x32\xfb\x13\x89\x04\xdf\xcf\xfd\x9d\x0f\ \xa6\xce\x62\xfa\x9c\xef\x29\xdb\xba\x4d\x98\xf6\x6b\x8f\xdc\xc4\ \x21\x07\xee\x2b\x4c\xaf\xb1\xf4\x3e\xfa\x6c\xa2\xcb\xcd\x31\x39\ \x00\x9d\x3b\xb4\x65\xc8\x41\x07\x30\xe4\xa0\x03\x84\xac\x78\x4c\ \x9a\x36\x9b\xbb\x9f\x7c\x95\x6d\xe5\xf6\x57\x8d\x6c\x56\x54\xc8\ \xa3\x13\x2e\x4e\xa7\xc9\x1f\xe0\xfc\x60\xc0\xff\x98\xdd\x41\xd8\ \x89\xa2\x6a\x2a\x30\xa7\x8e\x97\x6c\x06\x9e\x01\xae\x8e\x85\x43\ \x65\xd6\x44\xa5\x63\xa7\x01\xe8\x0a\x18\xed\xd2\x52\x05\x34\xb1\ \xfa\x1f\xcd\x09\x44\xa2\xf1\x21\xc0\x47\xb8\xbc\x4a\xe0\xce\xd8\ \x65\x02\x4e\x18\x31\x88\x0b\x4e\xd3\x1a\xdc\x5a\x58\x04\x5b\x4a\ \xcb\xf8\xf4\xcb\x6f\xf9\x60\xda\x2c\x7e\x9e\x6f\xb4\x49\x26\x3c\ \x36\xe1\x62\xb4\x61\x07\x0b\x88\xac\xf1\x54\x54\x56\xd2\x61\xc0\ \x09\x54\x56\x89\xdd\x95\x6b\xe3\x6f\xc5\x90\x01\xbd\x19\x72\xf0\ \x81\x0d\x4a\xc8\x4c\x95\xdf\x16\x2d\xe5\x9a\x7b\x9e\x24\x6a\xd2\ \xea\x4c\x43\x48\xd3\xc9\xff\xed\x60\xc0\x7f\x9c\xdd\x41\xd8\x8d\ \xa2\x6a\x5f\x00\x0d\xe9\x22\x55\x01\x7c\x08\x8c\xb7\x2a\x4f\xc0\ \x36\x03\x00\xa0\xa8\xda\x0a\xa0\xd8\xa0\xcc\x8d\xb1\x70\xe8\x56\ \x11\xf1\xb8\x8d\x48\x34\x7e\x3b\x70\xad\xdd\x71\x88\xc4\x4a\x13\ \x90\x9f\x97\xcb\xb5\xe7\x9d\xc2\xe1\x03\x7a\x9b\x7e\xad\xba\x08\ \x7d\x34\x93\x7b\x9e\x7a\xd5\x90\xc6\x84\x8b\xcf\xe0\xec\x31\x23\ \x05\x45\xd4\x38\x16\x2f\x8b\xa3\x8e\x3a\x57\x88\x56\xb3\xa2\x42\ \x0e\xeb\xbf\x3f\x43\x0f\x3e\x90\xbd\xf7\xdc\x5d\x88\x66\x5d\x6c\ \xdc\xb4\x85\x9b\xff\xef\x79\xbe\xfc\xf6\x17\xd3\xaf\x55\x9d\x34\ \x9d\xfc\xff\x44\xdf\xf7\x77\xce\x19\x55\x1b\x48\xb6\xf4\x5d\x4f\ \x6a\x89\xdb\x96\xe5\x09\xd8\x9d\x4d\xfe\xb6\x00\x8d\x33\x04\x68\ \xb8\x95\x1b\x81\xcf\xed\x0e\x42\x24\xdb\x07\xc3\x4e\x26\x0f\x86\ \xc1\x80\x9f\xe7\xee\xbe\xca\xf6\xc9\x1f\xa0\x43\xdb\x12\xc3\x1a\ \x4e\xa8\x05\x20\xe2\x04\xc0\x11\x87\xa8\x3c\x74\xc3\xf9\x4c\x7a\ \xf6\x6e\x2e\xff\xd7\x89\x96\x4c\xfe\x00\x4d\x0b\x0b\xb8\xef\xda\ \xf3\x38\x7b\xcc\x48\xbc\x1e\xeb\x16\xd5\xd2\x74\xf2\xdf\x06\x9c\ \x90\xe9\x93\x7f\x92\xfb\x49\x7d\x9e\xf5\x00\x3d\x81\xcf\x14\x55\ \x5b\xaa\xa8\x9a\x69\xab\x28\x76\x1b\x80\x9b\x05\x68\x74\x48\x9e\ \x2a\xc8\x38\x92\x05\x35\xc6\x00\xf6\xad\x5d\x9a\x40\xb3\xa2\x42\ \x1e\x33\xd1\x04\x1c\xda\xb7\x17\xcf\xdf\x73\x35\x1d\x4d\x58\x4e\ \x6e\x0c\x25\xc5\xc6\x6f\xdf\x55\x6b\xec\x1f\x6b\x97\xc4\x56\x18\ \x7a\x7f\xb3\xa2\x42\x6e\xba\xe8\x74\xfa\xf4\xea\xb1\xcb\x31\x3e\ \x2b\xf0\x78\x3c\x9c\x39\x7a\x38\x0f\xdc\x70\x3e\xbb\x35\x6d\x62\ \xfa\xf5\xd2\x74\xf2\x07\xb8\x22\x18\xf0\x7f\x63\x77\x10\x76\x93\ \xec\x59\x63\xf4\x01\x35\x80\xf1\x23\xf3\xb5\x62\xab\x01\x88\x85\ \x43\x71\x60\xb1\x41\x19\x0f\x70\xa7\x80\x70\x5c\x49\x30\xe0\x8f\ \x02\xa7\xa2\x2f\x1b\xa5\x0d\x66\x98\x00\x9f\xcf\xcb\x85\xa7\x1f\ \xcb\x9d\x57\x9c\x4d\x41\xbe\x73\xfa\x49\xb5\x6e\xd5\xdc\xf0\x53\ \xa7\x13\x56\x00\x16\x2f\x33\x56\xde\xdd\xdf\xca\x19\x3e\xbe\x4f\ \xcf\xee\xbc\x70\xdf\xb5\x74\xed\xd4\xde\xb4\x6b\x6c\xbf\xbf\xd3\ \x70\xf2\x7f\x27\x18\xf0\x3f\x6c\x77\x10\x0e\xe1\x49\x20\xdb\xa0\ \xc6\x36\xc0\xb4\x2d\x6e\xbb\x57\x00\x00\x5e\x12\xa0\x91\x31\xbd\ \x01\x6a\x22\x18\xf0\x7f\x04\xdc\x63\x77\x1c\xa2\x11\x69\x02\x5a\ \x36\x2b\xe2\xd1\x09\x17\x73\xd2\x51\xce\x69\x9b\xbb\x9d\x2c\x9f\ \x8f\x16\xcd\x8b\x0c\x69\x38\xc1\x00\x2c\x59\x66\x6c\x05\xa0\xa4\ \xd8\xfe\x3a\x06\xdb\x29\x29\x6e\xc1\xd3\x77\x5c\xc1\x51\x87\x35\ \x24\x77\x2b\x35\xcc\x5e\xe1\xb2\x91\xbf\x80\x33\xed\x0e\xc2\x09\ \x24\xf7\xfe\x4f\x12\x20\xf5\x8e\x99\xb5\x6e\x9c\x60\x00\xee\xc2\ \xf8\xd3\x6b\x13\x45\xd5\x4e\x11\x11\x8c\x8b\xb9\x1e\xf8\xb2\xde\ \x57\xb9\x0c\x11\x83\xe5\xbe\xdd\xf6\xe0\x85\xfb\xaf\xa5\x57\x77\ \xb1\xe7\xfb\x45\x52\x62\xf0\xe9\xd7\x19\x5b\x00\xc6\x72\x00\x9c\ \xb2\x02\xb0\x9d\xec\xec\x2c\xae\x3d\xef\x14\xae\x1b\x7f\x2a\x39\ \xd9\x46\x1f\xe4\x74\xd2\x78\xf2\x2f\x47\xdf\xf7\x4f\xef\x3e\xd0\ \x0d\xe7\x39\x8c\x57\xda\x4d\x00\x17\x0a\x88\xa5\x56\x6c\x37\x00\ \xb1\x70\x68\x13\x30\x5f\x80\xd4\x8d\x02\x34\x5c\x4b\x30\xe0\xaf\ \x00\x4e\xc4\x78\x85\x45\xc7\x61\x64\xd0\x3c\x71\xc4\x20\x1e\xbf\ \xe5\x12\xc7\x74\xee\xab\x8d\x92\xe2\x96\x86\xde\xef\x88\x15\x00\ \x83\x39\x00\x22\x72\x21\xcc\x60\xe4\xe0\x7e\x3c\x7d\xe7\xe5\x28\ \xad\x8d\xfd\x1f\xa5\xf1\xe4\x0f\x70\x55\x30\xe0\xcf\x8c\x3e\xd0\ \xf5\x90\xcc\x49\x3b\x56\x80\xd4\xd7\xb1\x70\xc8\xd8\x2f\x55\x3d\ \xd8\x6e\x00\x92\x88\xa8\x84\xd4\x59\x51\xb5\x4e\x02\x74\x5c\x4b\ \x30\xe0\x5f\x8a\xbe\xec\x64\x7f\x55\x13\xc1\x6c\x1f\x3c\xbb\x37\ \xb0\xda\x5d\x7e\x5e\x2e\xb7\x5f\x76\x16\x17\x9f\x39\xda\x96\x84\ \xb2\x54\x31\xba\xfc\x5d\x5a\xb6\x95\x2d\xa5\xf6\x95\xc3\x28\xaf\ \xa8\x64\xf9\x4a\x63\xde\xd3\x69\x2b\x00\x3b\xb3\xe7\xee\xed\x79\ \xf1\xbe\x6b\xe9\xbb\x5f\xe3\xf2\xb1\xd2\x7c\xf2\x7f\x3d\x18\xf0\ \x3f\x68\x77\x10\x0e\xa2\x2f\xc6\x3b\xde\x02\x5c\x24\x40\xa3\x4e\ \x9c\x32\x32\x3e\x0a\x88\x68\x11\x99\xf1\x37\x61\x30\xe0\xff\x18\ \x7d\x1f\x2e\xad\x92\x02\x41\x1f\x44\xff\x73\xdb\xa5\x0c\x3d\xe8\ \x80\x5a\x5f\xe3\xf5\x78\x18\x7a\xd0\x01\xbc\xfc\xc0\x75\x0c\xee\ \xbf\xbf\x85\xd1\x19\x43\xc4\xe4\x67\xe7\x2a\x40\x74\xf9\x4a\xaa\ \xaa\x8c\xdd\x72\x25\x0e\xe8\x65\x50\x17\x4d\x0b\x0b\x78\xe0\xba\ \xf1\x9c\x75\xc2\x88\x94\x92\x36\xd3\x7c\xf2\x9f\x0a\x8c\xb5\x3b\ \x08\x27\x11\x0b\x87\x26\x01\x4d\x80\x27\xd0\x93\xf8\x1a\xc3\xd2\ \x58\x38\x54\x57\xf5\x40\x21\xd8\xd5\x0d\xf0\x1f\xc4\xc2\xa1\x2a\ \x45\xd5\x66\x02\x87\x1a\x94\x1a\xa6\xa8\x9a\x37\xd3\x1a\x04\x55\ \x27\x18\xf0\xbf\x1c\x89\xc6\x8b\x81\x07\xec\x8e\x45\x34\x39\xd9\ \xd9\x4c\xb8\xe4\x4c\x86\x1d\xa2\xf2\xf5\x4f\xf3\xf9\xf6\x97\xdf\ \xa8\xa8\xa8\x40\xf1\xb7\xa2\x9d\xd2\x9a\xa3\x0f\xeb\x2f\xe4\x5c\ \xbd\xd5\x08\x39\x0a\xb8\x76\x3d\xed\xdb\xd8\xd3\x2d\xda\xe8\xf2\ \x3f\x80\xdf\xa1\x5b\x00\x3b\xe3\xf1\x78\x38\xeb\x84\x23\xe9\xd1\ \xb9\x03\x13\x1e\xfe\x2f\xeb\x36\x6c\xaa\xf3\xf5\xfb\x74\xed\xc4\ \x84\x8b\xcf\x30\xbc\x7d\xe0\x50\xbe\x05\x46\x05\x03\x7e\x71\x35\ \xad\xd3\x84\x58\x38\x54\x01\x9c\xa7\xa8\xda\x85\xc0\x43\xc0\xbf\ \x80\x9c\x14\x24\x6e\x33\x25\xb0\x6a\x38\xc2\x00\x24\xb9\x0c\x30\ \xda\x30\x22\x1b\xbd\x32\x9e\x25\xff\x78\x4e\x26\x18\xf0\x3f\x18\ \x89\xc6\x4b\x80\x2b\xed\x8e\xc5\x0c\xfa\xee\xd7\xa3\xd1\xcb\xb1\ \x4e\xc4\xed\xb5\x00\x8c\x1a\x80\xec\xac\x2c\x5a\x36\x33\x76\x12\ \xc2\x4a\xfa\xee\xd7\x83\xd0\x13\xb7\xf2\xea\x07\x53\x79\xf5\xfd\ \xa9\x6c\xda\x52\xfa\x8f\x9f\x37\x29\xc8\x63\xcc\xc8\xc3\x38\x73\ \xf4\x11\x78\xbd\x4e\x59\x68\x15\xca\xef\xc0\xf0\x60\xc0\xbf\xd1\ \xee\x40\x9c\x4c\xd2\x08\x9c\xaf\xa8\xda\xc5\x34\xdc\x08\x6c\x8e\ \x85\x43\x4f\x9a\x1e\x1c\x0e\x32\x00\xb1\x70\xe8\xfb\x64\xc7\xa4\ \x36\x06\xa5\xce\x47\x1a\x00\x00\x82\x01\xff\x55\x91\x68\xbc\x35\ \x70\xba\xdd\xb1\x48\xea\xc6\xe8\x29\x00\xb0\x77\x0b\xc0\xe8\x09\ \x80\xd6\x2d\x9b\xe1\xb1\xb0\x02\x9f\x08\x0a\xf2\xf3\x18\x77\xfc\ \x91\x9c\x38\x62\x30\x0b\x17\x47\x59\x12\x5b\xc9\x86\x4d\x9b\xd9\ \x67\xcf\xdd\xe9\xb6\x47\x30\x5d\x27\x7e\x80\x18\x30\x34\x18\xf0\ \x9b\x9a\xa0\x96\x4e\x54\x33\x02\x0f\x02\x67\x53\xbb\x11\xf8\xaf\ \x55\x71\x39\xed\x0e\x15\x51\x40\xc2\xaf\xa8\xda\x30\x01\x3a\xe9\ \xc2\xbf\x80\x89\x76\x07\x21\xa9\x9b\xa6\x85\x05\xe4\xe7\xe5\x1a\ \xd2\xb0\xd7\x00\x18\x9b\x0b\xdc\xb0\xfc\x5f\x1b\x4d\x0a\xf2\xd8\ \xa7\x6b\x27\x8e\x3c\xb4\x0f\x63\x46\x0e\xa6\x47\x97\x8e\xe9\x3c\ \xf9\xaf\x07\x86\x05\x03\xfe\x45\x76\x07\xe2\x46\x62\xe1\x50\x45\ \x2c\x1c\xba\x00\x3d\x47\xe0\x51\xf4\x76\xc9\x3b\x53\x89\x85\xab\ \xb6\x4e\xbb\x4b\xef\x45\x4c\x06\xbb\xac\x44\x95\x24\x79\x3c\xf0\ \x78\xd2\xb0\x46\x40\xba\xa1\x18\x9c\x04\xed\xdc\x02\x30\x5a\x05\ \x50\xc4\x0a\x88\xc4\x74\xca\x80\xa3\x82\x01\xff\x4f\x76\x07\xe2\ \x76\x76\x32\x02\x85\xc0\x23\xfc\x6d\x04\xa6\xc5\xc2\xa1\x2d\x56\ \xc5\xe1\x28\x03\x90\x4c\xde\xfb\x58\x80\x54\xe7\x64\x0f\x66\x09\ \x10\x0c\xf8\x4b\x81\x91\xc0\x5c\xbb\x63\x91\xd4\x8e\xd1\xa7\xe0\ \xd5\x76\xae\x00\x18\xac\x02\xe8\x77\x50\x15\x40\x49\x8d\x54\x02\ \x63\x82\x01\xbf\xa9\xdd\xe9\x32\x8d\xa4\x11\xb8\x90\xbf\x8d\xc0\ \x78\x2b\xaf\xef\x98\x1c\x80\x9d\xb8\x14\x38\x52\x80\xce\x93\xe8\ \x1d\x95\x24\x40\x30\xe0\x5f\x1b\x89\xc6\x87\x02\xb3\x00\xf3\x8a\ \x9c\x4b\x1a\x8d\xe1\x6a\x80\x36\x19\x80\xf2\xf2\x0a\x56\xac\x5e\ \x6b\x48\x43\xae\x00\x38\x9e\x73\x83\x01\xff\xbb\x76\x07\x91\xae\ \x24\x73\x04\x4c\xad\xfa\x57\x13\x8e\x5a\x01\x00\x88\x85\x43\xbf\ \xa1\xd7\x94\x36\xca\xbe\x8a\xaa\x75\x15\xa0\x93\x36\x24\x1b\x07\ \x0d\x25\x0d\xab\x05\xa6\x03\x46\x57\x00\xec\xda\x02\x58\x1a\x37\ \x5e\x03\xc0\xcd\x39\x00\x19\xc0\x0d\xc1\x80\xff\x69\xbb\x83\x90\ \x88\xc7\x71\x06\x20\xc9\xbd\x82\x74\x9e\x11\xa4\x93\x36\x04\x03\ \xfe\xf9\xc0\x70\x60\xb3\xdd\xb1\x48\xfe\x89\xd1\x1c\x80\x95\x36\ \x19\x80\xc5\x06\x97\xff\x41\xae\x00\x38\x98\x47\x83\x01\xbf\x3c\ \x55\x95\xa6\x38\x71\x0b\x80\x58\x38\xf4\xb8\xa2\x6a\xf7\x01\xf9\ \x06\xa5\xfa\x29\xaa\x16\x88\x85\x43\x51\x11\x71\xa5\x0b\xc1\x80\ \xff\xab\x48\x34\x7e\x2c\xf0\x01\xc6\xdb\x55\x4a\x04\x61\xb4\x1a\ \xe0\x9a\x75\x1b\x78\x31\x34\x45\x50\x34\x0d\xe7\xdb\x5f\x7e\x33\ \xac\xe1\x77\x78\x15\xc0\x0c\xe5\x75\x2c\x28\x47\x2b\xb1\x0f\x47\ \x1a\x80\x24\xcf\x00\x17\x18\xd4\xf0\x00\xcf\x02\xf2\x58\x60\x35\ \x82\x01\xff\x94\x48\x34\x7e\x06\x7a\x3b\x66\x77\x1d\xc0\x4e\x53\ \x8c\x16\x03\xaa\xac\xaa\xe2\xaa\xbb\x2d\xa9\x1f\x22\x94\xa2\xc2\ \x26\x86\x8f\x40\x4a\x84\xf3\x29\x30\x36\x18\xf0\x67\x74\x55\xd5\ \xda\x50\x54\xed\x09\xe0\xe6\x58\x38\x64\xec\xf8\x8b\xcd\x38\x75\ \x0b\x00\xe0\x72\xc4\x1c\x09\x3c\x3c\xd9\x9d\x49\x52\x8d\x60\xc0\ \xff\x0a\xba\xc9\x4a\xbb\xbe\x01\x6e\xa4\xb8\x45\xb3\x74\x3e\x3f\ \x5e\x2b\x46\x1b\x21\x49\x84\x33\x0b\x59\xe2\xb7\x56\x14\x55\x9b\ \x00\xfc\x1b\x58\x96\x34\x02\xae\xc5\xb1\xa3\x4d\x2c\x1c\xda\x06\ \xbc\x26\x40\xca\x0b\xfc\x4f\x80\x4e\x5a\x12\x0c\xf8\x1f\x03\x4e\ \x25\x0d\x3b\x08\xba\x0d\x9f\xcf\x4b\x71\x0b\x67\xb7\x2d\x36\x03\ \x27\x77\x01\xcc\x40\x26\x02\x87\x05\x03\xfe\xba\x9b\x1c\x64\x28\ \x8a\xaa\x05\x80\xeb\x92\xdf\x7a\x81\x7f\x2b\xaa\xb6\x5e\x51\xb5\ \x31\x36\x86\xd5\x68\x1c\x6b\x00\x92\x9c\x87\x98\x2e\x81\x43\x14\ \x55\xeb\x2c\x40\x27\x2d\x49\xae\x04\x8c\x44\x26\x06\xda\x4e\x26\ \x4e\x86\x22\xfa\x20\x48\x84\xf0\x02\xfa\x93\x7f\x69\xbd\xaf\xcc\ \x5c\x3e\x06\x7c\xd5\xfe\xac\x08\xf8\x9f\xa2\x6a\x73\xdd\x36\xcf\ \x38\xda\x00\xc4\xc2\xa1\x4d\xc0\x24\x01\x52\x1e\xf4\x84\x16\x49\ \x2d\x04\x03\xfe\x29\xc0\x20\xe4\x11\x41\x5b\xc9\xc4\xc9\x30\x13\ \x4d\x8f\x03\xb9\x27\x18\xf0\x9f\x9e\xac\x1c\x2a\xa9\x01\x45\xd5\ \xc6\x03\xdd\xeb\x78\x49\x77\x60\x81\xa2\x6a\xaf\x2b\xaa\x96\x4a\ \xe7\x3f\xdb\x70\xb4\x01\x48\x72\x36\x62\xf6\xa8\x7b\x29\xaa\x76\ \xb0\x00\x9d\xb4\x25\x18\xf0\x7f\x05\x0c\x00\x16\xdb\x1d\x4b\xa6\ \x92\x89\x06\x40\xe6\x00\xd8\x4a\x02\xb8\x2c\x18\xf0\x5f\x65\x77\ \x20\x4e\x46\x51\xb5\x66\x34\xac\xbd\xba\x07\xbd\xf4\xfa\x7a\x45\ \xd5\x8c\x26\xb1\x9b\x8e\xe3\x0d\x40\x32\xcb\x52\x54\xf9\xc9\x17\ \x04\xe9\xa4\x2d\xc9\x3a\x01\xfd\x90\x65\x83\x6d\x21\x13\xcf\xc3\ \xcb\x15\x00\xdb\xa8\x40\xcf\xf4\x6f\xc8\xc4\x96\xe9\x4c\xa6\xfe\ \x36\xbe\x3b\x93\x07\x3c\xac\xa8\x5a\x44\x51\xb5\x03\x4c\x8a\xc9\ \x30\x8e\x37\x00\x49\xc6\x09\xd2\xe9\xa0\xa8\xda\x49\x82\xb4\xd2\ \x96\x64\xc5\xc0\x83\x90\x0d\x84\x2c\x27\x13\x2b\xe2\x65\xe2\xaa\ \x87\x03\xd8\x82\xde\xd8\xe7\x65\xbb\x03\x71\x3a\x8a\xaa\x9d\x00\ \xf4\x6d\xe4\xdb\xdb\x03\x5f\x29\xaa\x36\x45\x51\xb5\x22\x81\x61\ \x09\xc1\x15\x06\x20\x16\x0e\x2d\x04\xbe\x15\x24\xf7\x88\x20\x9d\ \xb4\x26\x18\xf0\xaf\x05\x0e\x47\xb6\x12\xb6\x94\x0e\x6d\x4b\xec\ \x0e\xc1\x52\xb2\x7c\x3e\x5a\x36\xcf\xbc\x93\x0f\x36\xb3\x1a\x18\ \x1c\x0c\xf8\x3f\xb4\x3b\x10\xa7\x93\xdc\xcb\x7f\x4e\x80\xd4\x10\ \x1c\xb8\xb5\xea\x0a\x03\x90\x64\x2c\x62\x72\x01\x5a\x28\xaa\x76\ \xad\x00\x9d\xb4\x27\x99\x0d\x3c\x0a\xf8\xaf\xcd\xa1\x64\x0c\x01\ \x7f\x2b\xba\x76\xca\x9c\x5e\x4d\xc5\x2d\x9b\xe1\xf5\xc8\x3a\x54\ \x16\xb2\x04\x38\x28\x18\xf0\xcf\xb1\x3b\x10\x97\xf0\x0e\x50\x20\ \x48\xcb\x71\x89\xe8\xae\x31\x00\xb1\x70\x68\x1e\xf0\xb9\x20\xb9\ \x1b\x14\x55\xcb\x13\xa4\x95\xd6\x04\x03\xfe\x8a\x60\xc0\x7f\x06\ \x70\x8f\xdd\xb1\x64\x0a\x43\x0f\x3e\xd0\xee\x10\x2c\xe3\xb0\xfe\ \xfb\xdb\x1d\x42\x26\x31\x0f\xe8\x17\x0c\xf8\x7f\xb5\x3b\x10\x37\ \xa0\xa8\xda\x60\xf4\xbe\x29\x22\xd8\x0c\x9c\x2b\x48\x4b\x18\xae\ \x31\x00\x49\x4e\x04\x44\x94\xa6\xcc\x03\xde\x10\xa0\x93\x31\x24\ \xb3\x84\x2f\x45\x56\x0d\x34\x9d\x23\x0f\xed\x93\x11\xb5\xf1\x9b\ \x15\x15\x32\x56\x93\x55\xba\x2d\x62\x36\xfa\x93\xff\x52\xbb\x03\ \x71\x11\xff\x27\x50\xeb\x92\x58\x38\xe4\xb8\xb2\xca\xae\x32\x00\ \xb1\x70\x28\x06\xbc\x2f\x48\x6e\x84\x93\xb3\x33\x9d\x48\x30\xe0\ \x7f\x10\x7d\x2b\x46\x56\x0d\x34\x91\xa2\xc2\x26\xdc\x79\xc5\xd9\ \x64\x67\x39\xb9\x55\x87\x31\x0a\xf2\xf3\xb8\xef\xda\xf3\x68\xda\ \xc4\x68\xbf\x2f\x49\x03\x98\x84\x5e\xdd\x6f\x8d\xdd\x81\xb8\x8c\ \x3e\xc0\x4f\x02\x74\xfe\x8a\x85\x43\x8e\x6c\xa7\xec\x2a\x03\x90\ \xe4\x34\xf4\xe3\x2b\x46\xf1\xa0\xef\xef\x48\x52\x20\x99\x35\x3c\ \x02\x59\x30\xc8\x54\xba\x77\xee\xc0\xf5\x17\x8c\x4d\xcb\x26\x39\ \xcd\x8a\x0a\x79\xe8\x86\xf3\xd9\xab\x4b\x47\xbb\x43\xc9\x04\x9e\ \x00\x8e\x09\x06\xfc\x5b\xec\x0e\xc4\x6d\xc4\xc2\xa1\x4d\xb1\x70\ \x68\x5f\xe0\x3e\x8c\xad\x7c\x1e\x2f\x28\x24\xe1\x78\x12\x09\xf7\ \xad\xe8\x2a\xaa\xf6\x34\x70\x96\x20\xb9\x1b\x63\xe1\xd0\xad\x82\ \xb4\x32\x86\x48\x34\xde\x16\xbd\x57\x43\x7f\xbb\x63\x49\x67\x62\ \x2b\x56\x73\xe7\x13\xaf\xf0\xd5\x8f\xee\xdf\xb6\xcd\xf2\xf9\x18\ \x3d\x7c\x20\xe3\x4e\x38\x92\xc2\x02\xf9\xe4\x6f\x32\x1b\x80\xb3\ \x83\x01\xbf\xe3\x12\xcf\xdc\x88\xa2\x6a\x87\xa0\xd7\x02\x48\x35\ \x21\x70\x5a\x2c\x1c\x1a\x6c\x42\x48\x42\x70\xab\x01\xc8\x02\x36\ \xa2\xef\xe5\x1b\xa5\x1c\x68\x1d\x0b\x87\xd6\x09\xd0\xca\x28\x22\ \xd1\x78\x16\x70\x1b\x70\x25\xb2\xa5\xb0\xa9\x44\xe3\xab\x98\xbf\ \x70\x31\x0b\xfe\x5c\xcc\xc6\x4d\xee\x79\x98\xf3\x78\x3c\x28\xad\ \x5b\xd2\xa5\x63\x3b\xf6\xdc\xbd\x1d\xcd\x8a\x0a\xed\x0e\x29\x13\ \xf8\x1e\x38\x3e\x18\xf0\xff\x61\x77\x20\xe9\x84\xa2\x6a\x85\xc0\ \x17\xc0\xbe\x0d\x7c\x4b\x19\x50\x9c\x2c\x69\xef\x48\x5c\x69\x00\ \x00\x14\x55\xbb\x15\xb8\x5e\x90\xdc\xe7\xb1\x70\x48\x96\x09\x6e\ \x24\x91\x68\x7c\x18\xf0\x12\xd0\xca\xee\x58\x24\x92\x0c\xe7\x71\ \xe0\xd2\x60\xc0\xbf\xd5\xee\x40\xd2\x15\x45\xd5\xee\x41\x6f\x57\ \x5f\xdf\x43\xcf\x49\xb1\x70\xe8\x55\x0b\x42\x6a\x34\xae\x35\x00\ \x00\x8a\xaa\x6d\x00\x9a\x0a\x92\x1b\x12\x0b\x87\x3e\x11\xa4\x95\ \x71\x44\xa2\xf1\x00\xf0\x2a\x7a\x05\x41\x89\x44\x62\x2d\xeb\x81\ \xb3\x82\x01\xff\x5b\x76\x07\x92\x09\x24\xfb\xca\x4c\x06\x9a\xd4\ \xf2\x92\xe9\xb1\x70\x68\x90\x85\x21\x35\x0a\x37\x26\x01\xee\xcc\ \xc5\x02\xb5\x5e\x13\xa8\x95\x71\x24\xcb\x07\x1f\x0a\xdc\x81\x3c\ \x2a\x28\x91\x58\xc9\xb7\xc0\x7e\x72\xf2\xb7\x8e\x58\x38\x34\x13\ \x28\x01\x7e\xac\xe1\xc7\x5b\x10\x57\x3f\xc0\x54\x5c\xbd\x02\x00\ \xa0\xa8\xda\x02\xa0\x8b\x20\xb9\xd7\x62\xe1\xd0\x18\x41\x5a\x19\ \x4b\x24\x1a\x1f\x82\xbe\x25\xd0\xda\xee\x58\x24\x92\x34\xe7\x11\ \xe0\xf2\x60\xc0\xbf\xcd\xee\x40\x32\x15\x45\xd5\xee\xe2\x9f\x79\ \x50\xc7\xc4\xc2\xa1\xf7\x6c\x0c\xa9\xc1\xa4\x83\x01\xe8\x02\xcc\ \x47\x5c\x12\xda\x61\xb1\x70\x68\xaa\x20\xad\x8c\x25\x12\x8d\x2b\ \xc0\xff\x80\x81\x36\x87\x22\x91\xa4\x23\xeb\x80\x71\xc1\x80\x3f\ \x64\x77\x20\x12\x50\x54\x6d\x00\xf0\x11\x30\x33\x16\x0e\xb9\xe2\ \xe9\x1f\xdc\xbf\x05\x40\x2c\x1c\xfa\x0d\x7d\xa2\x11\xc5\x3b\xc9\ \x53\x06\x12\x03\x04\x03\xfe\x18\x70\x18\x70\x2b\x62\xaa\x37\x4a\ \x24\x12\x9d\xaf\xd1\x97\xfc\xe5\xe4\xef\x10\x62\xe1\xd0\x17\xe8\ \x5b\x02\xc7\xd8\x1d\x4b\x2a\xb8\xde\x00\x24\x39\x1d\xbd\xd6\xb2\ \x08\x9a\x22\xae\xda\x60\x46\x13\x0c\xf8\x2b\x83\x01\xff\x8d\xc0\ \x50\x20\x6e\x77\x3c\x12\x49\x1a\xf0\x10\xd0\x3f\x18\xf0\x2f\xb2\ \x3b\x10\x37\xd3\xae\xdf\xf1\xc2\x7b\x50\x27\x0b\x07\xb9\x6a\x2b\ \x26\x2d\x0c\x40\x2c\x1c\xaa\x00\xc6\x0b\x94\x3c\x42\x51\x35\x4d\ \xa0\x5e\x46\x13\x0c\xf8\x3f\x05\x7a\x02\xd3\xec\x8e\x45\x22\x71\ \x29\x6b\xd1\x2b\xfa\x5d\x12\x0c\xf8\x65\x29\x6e\x03\x94\xf4\x39\ \xf6\xac\x8a\xca\x8a\x95\x25\x07\x8e\xba\xdc\xee\x58\xec\xc6\xf5\ \x39\x00\x3b\xa3\xa8\xda\x3c\xa0\x9b\x20\xb9\x52\xf4\x02\x41\x8e\ \x2d\xe2\xe0\x36\x22\xd1\xb8\x17\x38\x07\xb8\x1d\x48\xff\x6e\x37\ \x12\x89\x18\x5e\x47\x3f\xdb\xbf\xcc\xee\x40\xdc\x4e\x89\x7a\xd4\ \xc1\x1e\xb2\xa6\xb3\xfd\xe1\xd7\xc3\x73\xb1\x39\xa1\x71\xf6\x46\ \x65\x1f\x69\xb1\x02\xb0\x13\x23\x11\x77\x04\x2d\x1f\x98\x22\x48\ \x4b\x02\x04\x03\xfe\xaa\x60\xc0\xff\x04\xb0\x27\xf0\x5f\xe4\x71\ \x41\x89\xa4\x2e\x16\xa0\x37\xf1\x39\x51\x4e\xfe\xc6\xe9\xd8\x6b\ \x54\xd0\xe3\xc9\xfa\x84\x9d\xe7\xbd\x04\x67\x96\xf4\x39\x56\x54\ \x9b\x79\xd7\x91\x56\x2b\x00\x00\x8a\xaa\xbd\x08\x9c\x2a\x50\xf2\ \xdf\xb1\x70\xe8\x49\x81\x7a\x92\x24\x91\x68\x7c\x00\x7a\xe5\xb2\ \xbd\xed\x8e\x45\x22\x71\x10\x5b\xd0\x4b\x6c\xdf\x2f\x8f\xf7\x89\ \xc1\xd3\xfb\x9c\x82\x12\xdf\xca\xa5\xd4\xb2\xf2\x98\x80\xbf\x5a\ \x6d\xce\xda\xfb\x97\x5f\xde\xc8\xa8\x15\xdf\x74\x34\x00\x5e\x60\ \x0d\xb0\x9b\x20\xc9\x4a\xa0\x7b\xf2\xb4\x81\x44\x30\xc9\x7e\x02\ \x17\x00\x13\x10\x57\xd5\x51\x22\x71\x2b\xef\x01\x17\x05\x03\xfe\ \x88\xdd\x81\xa4\x0b\x8a\xaa\x1d\x8d\xc7\x73\x1f\x89\xc4\x1e\xf5\ \xbc\x74\x7d\x96\x2f\x6b\xff\x25\xb3\xde\x58\x68\x49\x60\x0e\x20\ \xed\x0c\x00\xec\xe8\xdc\x34\x1d\x71\xb5\x01\x56\x03\x25\xc9\x64\ \x43\x89\x09\x44\xa2\xf1\x36\xc0\xfd\xc0\x89\x76\xc7\x22\x91\xd8\ \xc0\x22\xe0\x82\x60\xc0\x3f\xc9\xee\x40\xd2\x09\x45\xd5\x6e\x00\ \x6e\x49\xe1\x2d\xdb\xaa\x2a\x13\xc3\xe2\xdf\xbc\x33\xdd\xac\x98\ \x9c\x44\xba\xe5\x00\x00\x10\x0b\x87\x3e\x43\x6c\x6d\x80\x96\x80\ \xec\x13\x60\x22\xc1\x80\x7f\x59\x30\xe0\x1f\x83\x5e\x3b\x60\x81\ \xdd\xf1\x48\x24\x16\xb1\x15\xbd\x56\x46\x77\x39\xf9\x8b\x45\x51\ \xb5\x0b\x49\x6d\xf2\x07\xc8\xf1\xfa\x3c\x9f\xfa\x55\xed\x5f\x66\ \xc4\xe4\x34\xd2\x72\x05\x60\x3b\x8a\xaa\xad\x44\x6c\x87\xba\xab\ \x63\xe1\xd0\xdd\x02\xf5\x24\x35\x10\x89\xc6\x73\x80\xcb\xd0\xbb\ \x3d\xa6\xda\x7f\x5b\x22\x71\x0b\x53\xd0\x9f\xfa\x7f\xb7\x3b\x90\ \x74\x43\x51\xb5\x33\x80\x67\x31\xb2\x0a\xec\xf1\xdc\x1f\x9b\xf3\ \x76\x5a\x1f\x15\x4c\x77\x03\xb0\x3f\x7a\xd5\x2c\x51\x5b\x01\x55\ \x40\x9f\x58\x38\xf4\xb5\x20\x3d\x49\x1d\x44\xa2\xf1\x20\xf0\x7f\ \xc0\xd1\x76\xc7\x22\x91\x08\x64\x29\x70\x89\x6c\xde\x63\x0e\xc9\ \x1a\x2e\x6f\x21\x66\xdc\x9f\x14\x0b\x87\x46\x08\xd0\x71\x24\x69\ \x6d\x00\x00\x14\x55\x7b\x02\xf8\xb7\x40\xc9\x8d\xe8\xf9\x00\x5b\ \x04\x6a\x4a\xea\x20\x12\x8d\x1f\x89\xde\xf4\xa4\xa3\xdd\xb1\x48\ \x24\x06\x28\x47\xaf\xe4\x77\x4b\x30\xe0\xcf\xa8\x6c\x73\xab\x50\ \x54\xed\x70\xf4\x9a\xfc\xc2\xb6\xb7\x13\x30\x2f\x1e\xcc\xea\x95\ \x78\xe3\x8d\xb4\x3b\x91\x91\x96\x39\x00\x3b\x13\x0b\x87\xce\x05\ \x44\x9e\xa1\x6d\x0a\x64\xec\xb9\x51\x3b\x48\xee\x8d\x76\x47\xef\ \xb8\x25\x4b\x0a\x4b\xdc\x46\x15\x7a\x31\x9f\x7d\x83\x01\xff\x95\ \x72\xf2\x37\x07\x45\xd5\xfa\x00\x1f\x22\x78\x5e\xf3\xe0\xe9\xde\ \x66\xd1\xd6\x41\x22\x35\x9d\x42\xda\x1b\x80\x24\x83\x11\xdb\x90\ \x66\x3f\x45\xd5\x1e\x11\xa8\x27\xa9\x87\x60\xc0\x5f\x16\x0c\xf8\ \xef\x45\x5f\x05\xb8\x00\x58\x62\x73\x48\x12\x49\x7d\x94\x03\xcf\ \x03\xdd\x92\xc5\x7c\x7e\xb5\x3b\xa0\x74\x45\x51\xb5\x9e\xc0\x4c\ \xc0\x27\x5a\xdb\x4b\xd5\x5d\xd1\xaf\xdf\xfb\x48\xb4\xae\x13\x48\ \xfb\x2d\x80\xed\x24\x7b\x36\x5f\x25\x58\x56\x16\x09\xb2\x89\x48\ \x34\x9e\x0d\x8c\x05\xae\x06\xea\x3b\xdf\x2b\x91\x58\x49\x19\xf0\ \x1c\x70\x8f\x3c\xcf\x6f\x3e\xc9\x27\xff\x99\x40\xb6\x09\xf2\x1f\ \xba\xa9\xbd\x6f\xaa\x64\x8c\x01\x00\x50\x54\x6d\x2e\xfa\x52\xb2\ \x28\xaa\x80\x43\x63\xe1\xd0\x4c\x81\x9a\x92\x14\x88\x44\xe3\x3e\ \xe0\x04\xe0\x1a\x60\x2f\x9b\xc3\x91\x64\x36\x9b\x81\xff\x00\xf7\ \x05\x03\xfe\xe5\x76\x07\x93\x09\x24\xf7\xfc\x27\x03\xc2\x5b\xb8\ \x27\x3c\xcc\x5f\x3e\x27\x24\xaa\xb7\x8c\x23\xc9\x94\x2d\x80\xed\ \xf4\x45\x6f\xf2\x23\x0a\x2f\xf0\xb1\xa2\x6a\x41\x81\x9a\x92\x14\ \x48\xb6\x1c\xfe\x1f\xb0\x0f\x30\x0a\xf8\xc6\xe6\x90\x24\x99\xc7\ \x3a\xf4\xb3\xfc\xc1\x60\xc0\x7f\xb9\x9c\xfc\xad\x41\x51\xb5\x63\ \xd0\x13\xfe\x84\x4f\xfe\x90\x58\x15\xcf\x5f\xdb\x4b\xbc\xae\xb3\ \xc8\xa8\x15\x00\x00\x45\xd5\x06\xa3\x17\xf5\x11\x75\x34\x10\xf4\ \xd2\xc3\x81\x58\x38\x54\x26\x50\x53\xd2\x48\x22\xd1\xf8\x50\xe0\ \x3a\xe0\x20\xbb\x63\x91\xa4\x35\x2b\x81\x07\x81\xc7\x82\x01\xff\ \x06\xbb\x83\xc9\x24\x14\x55\x3b\x15\x78\x01\xb1\xe3\x38\x40\xc2\ \x93\x20\x52\x9e\x53\xd9\x6f\xe5\x17\xef\xc5\x04\x6b\x3b\x8e\x8c\ \x33\x00\x00\x8a\xaa\x3d\x00\x5c\x22\x58\x76\x41\x2c\x1c\xea\x2a\ \x58\x53\x62\x80\x48\x34\x7e\x10\x7a\x31\xa1\x21\x76\xc7\x22\x49\ \x2b\xa2\xc0\xbd\xc0\xd3\xc1\x80\x5f\x1e\x07\xb6\x18\x45\xd5\xce\ \x03\x1e\x45\xfc\xe4\x0f\x70\x6e\x2c\x1c\xfa\x8f\x09\xba\x8e\x24\ \x23\x0d\x00\x80\xa2\x6a\x3f\x21\xbe\x0b\x5d\x5a\x17\x8d\x70\x2b\ \x91\x68\xbc\x37\xfa\x8a\xc0\xd1\x98\x33\x68\x48\x32\x83\x3f\x81\ \xbb\x81\xff\xca\x2e\x7d\xf6\xa0\xa8\xda\x55\xc0\x5d\x26\xc9\x5f\ \x17\x0b\x87\xee\x30\x49\xdb\x91\x64\xb2\x01\x28\x02\x62\x88\x2f\ \x35\x7b\x5f\x2c\x1c\xba\x42\xb0\xa6\x44\x00\x91\x68\x7c\x0f\xf4\ \x93\x03\xa7\x20\x8b\x0a\x49\x1a\x46\x19\x7a\x87\xbe\x17\x81\x29\ \xc1\x80\xbf\xd2\xe6\x78\x32\x16\x45\xd5\xee\x05\xcc\x2a\xcd\x7b\ \x7f\x2c\x1c\x4a\xeb\xb2\xbf\x35\x91\xb1\x06\x00\x4c\xe9\x1a\xb8\ \x1d\xd9\x33\xc0\xc1\x44\xa2\x71\x0f\x30\x00\xdd\x0c\x8c\x46\x5c\ \xeb\x68\x49\x7a\x90\x40\x2f\xf6\xf5\x12\xf0\x66\x30\xe0\x5f\x6f\ \x73\x3c\x19\x8f\xa2\x6a\x13\x81\x23\x4d\x92\x7f\x3e\x16\x0e\x9d\ \x69\x92\xb6\xa3\xc9\x68\x03\x00\xa6\xba\xca\xf1\xb1\x70\xe8\x71\ \x13\x74\x25\x02\x89\x44\xe3\x79\xe8\x5b\x03\x63\xd1\x73\x05\x4c\ \xc8\x28\x96\xb8\x84\xdf\xd1\x27\xfd\x97\x82\x01\xff\x5f\x36\xc7\ \x22\x01\x14\x55\xcb\x03\x7e\x00\xf6\x34\xe9\x12\xef\xc5\xc2\xa1\ \x63\x4c\xd2\x76\x3c\x19\x6f\x00\x00\x14\x55\xfb\x1a\xe8\x2d\x58\ \x36\x01\x9c\x16\x0b\x87\x5e\x12\xac\x2b\x31\x89\x48\x34\xee\x07\ \xc6\xa0\x9b\x81\xb4\x3f\x02\x24\x01\x60\x2d\x7a\x99\xde\x17\x83\ \x01\xff\x6c\xbb\x83\x91\xfc\x4d\xf2\x78\xf5\x77\x40\x0b\x93\x2e\ \x31\x33\x16\x0e\x1d\x62\x92\xb6\x2b\x90\x06\x00\x50\x54\x2d\x0b\ \xbd\x43\x97\x5f\xb0\x74\x02\xd0\x62\xe1\xd0\xbb\x82\x75\x25\x26\ \x13\x89\xc6\xf7\x42\x37\x02\x27\x03\x6d\x6c\x0e\x47\x22\x96\x72\ \xf4\xe2\x31\x2f\x02\x13\x65\x42\x9f\xf3\x50\x54\xed\x60\xe0\x63\ \x20\xd7\xa4\x4b\xfc\x18\x0b\x87\x7a\x9a\xa4\xed\x1a\xa4\x01\x48\ \xa2\xa8\x5a\x6b\xe0\x2f\x20\x5f\xb0\x74\x15\x30\x2c\x16\x0e\x7d\ \x22\x58\x57\x62\x01\x91\x68\xdc\x8b\xde\x4b\x62\x2c\xa0\x21\x3e\ \x69\x54\x62\x1d\x5f\xa1\x2f\xf1\xbf\x1a\x0c\xf8\x57\xdb\x1d\x8c\ \xa4\x66\x14\x55\x3b\x07\x78\x1c\xf3\x0a\xd5\x7d\x17\x0b\x87\xf6\ \x37\x49\xdb\x55\x48\x03\xb0\x13\x8a\xaa\x1d\x00\xcc\x46\x7c\x43\ \x89\x0a\xe0\xa0\x58\x38\x34\x47\xb0\xae\xc4\x42\x22\xd1\x78\x21\ \x7a\x22\xd2\x60\x60\x10\xd0\xc9\xde\x88\x24\xf5\xb0\x11\x3d\x99\ \x6f\x1a\xfa\x93\xfe\x02\x9b\xe3\x91\xd4\x43\xb2\xc9\xda\xf9\x26\ \x5e\xe2\xf3\x58\x38\x74\xb0\x89\xfa\xae\x42\x1a\x80\x6a\x28\xaa\ \x76\x0a\xfa\x53\x82\x68\xca\x81\x03\x63\xe1\xd0\x0f\x26\x68\x4b\ \x6c\x20\x12\x8d\xb7\x47\x37\x02\x83\x80\x43\x81\xb6\xf6\x46\x94\ \xf1\x94\x01\x5f\xa2\x4f\xf8\xd3\x81\xaf\x83\x01\x7f\x85\xbd\x21\ \x49\x1a\x82\xa2\x6a\x05\xe8\x66\x6d\x3f\x13\x2f\x33\x39\x16\x0e\ \x99\x75\x92\xc0\x95\x48\x03\x50\x03\x8a\xaa\xdd\x89\xde\x65\x4e\ \x34\xe5\xc0\xc1\x72\x25\x20\x3d\x89\x44\xe3\x9d\xf9\xa7\x21\x28\ \xb6\x37\xa2\xb4\xa7\x1c\x7d\x59\x7f\x5a\xf2\x63\x76\x30\xe0\xdf\ \x6a\x6f\x48\x92\x54\x49\xae\xbc\x4e\x05\x9a\x9a\x78\x99\xd7\x63\ \xe1\xd0\x89\x26\xea\xbb\x12\x69\x00\x6a\xc1\xc4\x73\xa7\x95\xc0\ \x11\x32\x27\x20\xbd\x49\xd6\x1a\xd8\x8b\xbf\x0d\xc1\x21\xc8\x7a\ \x03\x46\xa9\x02\xbe\xe7\xef\x09\xff\xf3\x60\xc0\xbf\xd9\xde\x90\ \x24\x46\x48\x56\xf6\xbb\x03\x73\x1b\xd3\x3d\x13\x0b\x87\xfe\x65\ \xa2\xbe\x6b\x91\x06\xa0\x0e\x14\x55\x9b\x8f\x39\xe7\x4f\xab\x80\ \xd1\xb1\x70\x28\x64\x82\xb6\xc4\x81\x24\xdb\x16\xef\xc7\xdf\x86\ \x60\x7f\xa0\xa5\xad\x41\x39\x9f\x6d\xc0\x7c\x60\x06\xfa\x92\xfe\ \x8c\x60\xc0\xbf\xce\xd6\x88\x24\x42\x48\x9e\xbc\xfa\x04\x18\x68\ \xf2\xa5\x32\xb2\xc2\x5f\x43\x91\x06\xa0\x0e\x92\xfb\x52\x8b\x31\ \x67\xa0\x4e\x00\xe3\x62\xe1\xd0\xf3\x26\x68\x4b\x5c\x40\x24\x1a\ \x6f\x85\x6e\x30\xb7\x7f\x74\x4d\x7e\xde\x1d\xc8\xb6\x31\x34\xab\ \x89\x03\x0b\xd0\x27\xfb\x05\x3b\x7d\x2c\x92\xa5\x77\xd3\x0f\x45\ \xd5\xba\x00\xb3\x30\xdf\x00\xdf\x1c\x0b\x87\x26\x98\x7c\x0d\x57\ \x23\x0d\x40\x3d\x24\x8f\x07\xfe\x81\x39\xfb\x53\x09\xe0\xe2\x58\ \x38\xf4\xb0\x09\xda\x12\x97\x12\x89\xc6\xb3\xd0\x4d\xc0\x76\x43\ \xb0\xb3\x41\x68\x65\x63\x68\x46\xd8\x8a\x5e\x69\x6f\xe7\x09\x7e\ \x3e\xb0\x40\x96\xda\xcd\x1c\x92\x47\xfc\x1e\x43\xfc\x49\xab\x9d\ \x91\xe3\x6a\x03\x91\x06\xa0\x01\x24\x2b\x52\xcd\x07\xf2\x4c\xba\ \xc4\x8d\xb1\x70\xe8\x56\x93\xb4\x25\x69\x44\x24\x1a\x6f\xc1\x3f\ \x0d\x41\x47\xa0\x08\x28\x44\x37\xa9\x4d\x77\xfa\x5a\x74\x4d\x8b\ \xea\x54\x00\x9b\xd0\x8f\xdb\x6d\xff\xd8\xfe\xfd\x72\xfe\x39\xd9\ \xff\x15\x0c\xf8\xab\x4c\x8e\x47\xe2\x50\x14\x55\x2b\x04\xa6\x00\ \xfd\x4c\xbe\x54\x39\x70\x54\x2c\x1c\xfa\xc8\xe4\xeb\xa4\x05\xd2\ \x00\x34\x10\x45\xd5\xf6\x42\x2f\x4b\x69\xd6\xd2\xec\x51\xb1\x70\ \xe8\x03\x93\xb4\x25\x19\x48\x32\xef\x60\x67\x43\x50\xfd\xeb\xea\ \xdf\x67\xf1\xcf\x09\xbd\xce\xaf\x83\x01\x7f\x99\x85\x7f\x1d\x89\ \x4b\x51\x54\x4d\x03\x5e\xc6\x7c\x43\xba\x11\xe8\x1d\x0b\x87\x7e\ \x33\xf9\x3a\x69\x83\x34\x00\x29\xa0\xa8\x5a\x3f\x60\x26\xe6\x2c\ \x5f\xfd\x01\xec\x1b\x0b\x87\xb6\x98\xa0\x2d\x91\x48\x24\x96\x92\ \x4c\xf4\x7b\x1f\x38\xc2\x82\xcb\x2d\x06\xf6\x8e\x85\x43\x1b\x2c\ \xb8\x56\xda\x60\xe6\xd1\x8b\xb4\x23\x16\x0e\xcd\x02\x8e\x42\xcf\ \xe2\x17\xcd\x1e\xc0\xd2\xe4\x76\x83\x44\x22\x91\xb8\x16\x45\xd5\ \x06\x03\x6b\xb0\x66\xf2\xff\x12\xe8\x28\x27\xff\xd4\x91\x2b\x00\ \x8d\x40\x51\xb5\x93\xd0\x97\xb4\x3c\x06\xa5\x12\x35\x68\x6c\x03\ \x0e\x8f\x85\x43\x33\x0d\x6a\x4b\x24\x12\x89\xe5\x28\xaa\xf6\x2a\ \x60\x55\xd1\x9d\x67\x63\xff\xdf\xde\xbd\x07\xd9\x55\xd4\x09\x1c\ \xff\xf6\x9d\x4b\x12\x08\x42\x36\x40\xe6\x9e\x8c\x51\xb2\x2e\x4f\ \x41\xa0\x4c\xe6\x4c\x02\xa2\xa8\x31\x14\xaf\x30\x27\x21\x0a\x22\ \x5b\x71\x91\xc7\x82\xc8\x2e\x0f\x4b\x76\x91\x45\x5d\x95\x5a\x05\ \x2a\x80\x1b\xe4\x55\xc8\x82\x31\x4b\x7a\x10\x10\x91\x47\x01\x22\ \x49\x7a\x08\x65\x5c\x13\xd1\x00\xa6\x20\x8f\x9e\x40\x80\x80\x04\ \x92\x70\xe7\xf6\xfe\x71\x6e\xa8\x30\xdc\x49\xee\x3d\x8f\x7b\xee\ \xe3\xf7\xa9\xca\x3f\x33\xb7\xbb\x7f\x50\x33\xd3\xbf\xd3\xdd\xe7\ \xd7\x46\x9f\x59\xa7\xb1\x5a\x8e\x24\x00\x11\x79\x7e\x70\x1e\x70\ \x7d\x8c\x2e\x2a\x4d\xfe\xdb\x94\x80\xb3\xad\xd1\x37\xc7\xe8\x5f\ \x08\x21\xea\xc6\xf3\x83\x69\xc0\x7c\xd2\xbb\xbe\x77\x7b\x0e\xb8\ \xc8\x1a\x7d\x4d\x1d\xc6\x6a\x59\x92\x00\xc4\x50\xae\x62\xf5\xc3\ \x08\x4d\x4b\xec\x7c\xfb\xa5\x04\xec\x63\x8d\x7e\x2d\x42\xff\x42\ \x08\x51\x17\x9e\x1f\x8c\x21\xdc\xeb\xff\x54\x9d\x86\xdc\x42\x78\ \x68\xfa\xa1\x3a\x8d\xd7\xb2\xe4\x0c\x40\x0c\xd6\xe8\xab\x80\x0b\ \x08\xb3\xd1\x6a\x55\x33\xf9\x03\xdc\x24\x93\xbf\x10\xa2\x91\x79\ \x7e\x70\x39\xf0\x32\xf5\x9b\xfc\x57\x01\x1f\x96\xc9\x3f\x19\xb2\ \x02\x90\x00\xcf\x0f\xe6\x00\xb7\xb0\xf3\x33\x01\xd5\x4e\xfe\x2b\ \xad\xd1\x69\x94\x20\x16\x42\x94\x4d\x98\x3a\x7b\xec\xea\x45\x0b\ \x24\xc9\x8e\xa0\x7c\x81\x4f\x1f\xd0\x55\xc7\x61\x7f\x6e\x8d\x3e\ \xad\x8e\xe3\xb5\x3c\x59\x01\x48\x40\xb9\x9c\xef\x17\xd9\xf1\xdb\ \x01\xd5\x4e\xfe\x9b\x81\x29\x49\xc4\x25\x84\xa8\xcc\xf3\x83\xab\ \x8b\x83\xef\xae\xef\xf4\x03\xb9\x24\xa6\x06\x9e\x1f\x8c\xf2\xfc\ \xe0\x5e\xc0\x50\xbf\xc9\xbf\x08\x7c\x45\x26\xff\xe4\xc9\x0a\x40\ \x82\x3c\x3f\x38\x8e\x70\x2f\x6c\x68\x9d\x80\x6d\xff\x93\xab\x79\ \x6b\xe0\x78\x6b\xf4\x03\x89\x06\x26\x84\x78\xcf\xb8\xa9\x33\x3e\ \xd7\x31\xd8\xf1\x30\xdb\x7e\x1f\x15\xf7\x0f\x98\xbe\x19\xce\x39\ \xa9\x54\xb8\x03\x9e\x1f\x5c\x06\x5c\x4e\x7a\x15\x51\x2b\x59\x0f\ \x4c\xb1\x46\xaf\xaa\xe3\x98\x6d\x43\x12\x80\x84\x79\x7e\x70\x34\ \xe1\xdd\xd6\xf9\xf2\x97\x5c\xf9\x5f\x35\x4f\xff\x37\x5a\xa3\xcf\ \x49\x2b\x36\x21\xda\xdd\xc4\x63\xe6\x8c\x79\xe7\xed\x37\xd6\xa9\ \x0f\x56\xa5\x5b\x9f\xef\xc8\x1f\xb9\x7a\xd1\x82\x17\x32\x09\xac\ \x81\x95\x5f\x7b\xbe\x8e\xfa\x9c\xee\xdf\xde\x43\x84\x57\xa7\x4b\ \x62\x96\x12\x49\x00\x52\x50\xde\x1f\xfb\x1d\x30\x82\xb0\x36\x75\ \x35\xe5\x83\x65\xdf\x5f\x88\x94\x15\xfc\x60\x85\x82\x83\x87\xf9\ \xf6\x60\xc9\x95\xce\x5b\xdf\x7f\xcf\x8d\x75\x0d\xaa\x41\x95\x1f\ \x66\x6e\x07\xf6\xad\xf3\xd0\x25\xc2\x57\xfc\xae\xad\xf3\xb8\x6d\ \x47\x12\x80\x94\x94\xef\x0e\xf8\x0d\x30\xbe\x8a\x8f\x6f\x06\xba\ \xe4\xd4\xbf\x10\xe9\x29\xf8\x33\xaf\x57\xb8\xf3\xaa\xf8\xe8\xaf\ \x06\xfa\xfb\x4e\x6a\xd7\x2d\x01\xcf\x0f\xf6\x03\x7e\x01\x1c\x91\ \xc1\xf0\x6b\x80\xcf\x5a\xa3\x9f\xcb\x60\xec\xb6\x23\x09\x40\x8a\ \x3c\x3f\xf8\x18\xf0\x07\x60\xf4\x4e\x3e\x2a\xfb\xfe\x42\xa4\xa8\ \x6b\xf2\x8c\x63\x4b\xb9\x8e\x07\xa8\xba\x7a\xa7\x7b\xa5\x03\x75\ \xe4\x9a\x36\x9a\x88\x3c\x3f\x18\x0b\xdc\x05\x7c\x81\xf8\x55\x4e\ \x6b\xe5\x80\x9f\x58\xa3\xcf\xaf\xf3\xb8\x6d\x4d\x12\x80\x94\x79\ \x7e\x30\x01\x58\x41\x78\xdb\x5a\x25\xf3\xac\xd1\xe7\x26\x30\x4e\ \x0f\x70\x23\x61\x81\x8c\x17\xe3\xf6\x27\x44\xab\x98\x30\x75\xf6\ \xd8\xe2\x60\x71\x2d\xb5\x1f\x5e\x1b\xcc\x95\xd4\xf9\x6b\x9f\x5e\ \x38\x2f\x8d\xb8\x1a\x85\xe7\x07\x5d\x84\xaf\x31\x4f\x23\x9b\x37\ \xc3\x5e\x05\xa6\x5b\xa3\x9f\xc9\x60\xec\xb6\x26\x09\x40\x1d\x78\ \x7e\x30\x0e\x78\x96\x0f\x1e\xa2\x49\x64\xdf\xdf\xf3\x83\x51\x84\ \xc5\x38\x3e\x44\xb8\x7f\x76\xb5\x35\xfa\x92\xb8\xfd\x0a\xd1\x0a\ \xbc\xee\x60\x25\x8a\xfd\x62\x74\xf1\xeb\x81\xfe\xbe\x13\x5a\x6d\ \x4b\xc0\xf3\x83\x03\x81\x9b\x81\xa9\xd4\xff\x89\x7f\x9b\x5f\x00\ \xa7\xc9\x41\xbf\x6c\x48\x02\x50\x27\x9e\x1f\x8c\x20\x3c\x18\x38\ \xb9\xfc\xa5\xc4\xf6\xfd\x3d\x3f\xe8\xdf\xae\xdf\x6d\xd6\x11\x6e\ \x2d\x2c\x8b\xdb\xbf\x10\xcd\xca\xf3\x83\x9b\x80\xf8\x97\xc5\x28\ \x5e\xc9\x15\x8b\x47\xad\x5d\x7a\x6f\xd3\xdf\x35\xef\xf9\x81\x4f\ \xb8\x5a\x78\x58\x86\x61\xbc\x05\x04\xd6\xe8\x87\x33\x8c\xa1\xed\ \x49\x02\x50\x67\x9e\x1f\x5c\x0d\x7c\x03\x38\x31\x89\x7d\x7f\xcf\ \x0f\xae\x04\xbe\x3d\xcc\xb7\x1d\x70\x07\x30\x47\x32\x6c\xd1\x6e\ \xbc\xee\x59\x33\x50\xa5\x7b\x12\xec\xf2\x0d\x6b\xf4\x98\x04\xfb\ \xab\x2b\xcf\x0f\x8e\x05\xe6\x42\xac\xd5\x90\x24\x3c\x42\xf8\x70\ \xb2\x35\xe3\x38\xda\x9e\x24\x00\x19\xf0\xfc\x60\x6c\x42\x4f\xfe\ \x3e\xb0\x98\x9d\x2f\xdf\x6d\x04\x66\x59\xa3\x1f\x8d\x3b\xa6\x10\ \xcd\xa0\x70\xd8\xf4\x71\x6a\xd4\xe8\x97\x80\x91\x49\xf5\x99\xcb\ \xa9\x2f\xaf\x5d\xbc\xf0\xae\xa4\xfa\xab\x07\xcf\x0f\x72\xc0\x65\ \xc0\xf9\x40\x67\xc6\xe1\xbc\x06\x9c\x2a\x75\xfc\x1b\x87\x24\x00\ \x4d\x6a\xc8\xbe\x7f\xb5\x1e\x00\x66\x5a\xa3\x37\xa7\x13\x95\x10\ \x8d\xa1\xd0\x13\xfc\x55\x39\x26\x26\xd6\xa1\x73\xf3\x6d\x7f\xdf\ \xa9\x89\xf5\x97\xb2\xf2\x1b\x48\xd7\x00\xc7\x52\x5d\x1d\x92\x34\ \x95\x80\x1b\xac\xd1\x17\x64\x1c\x87\x18\x42\xee\x02\x68\x5e\x4f\ \x50\xdb\xe4\x0f\x70\x1c\xf0\xaa\xe7\x07\x4d\xf3\x87\x4c\x88\x5a\ \x15\xfc\x99\xb7\x27\x39\xf9\x2b\x78\xb1\x59\x26\x7f\xcf\x0f\x4e\ \xf7\xfc\x60\x25\xf0\x3c\x70\x22\xd9\x4f\xfe\x7f\x00\x3e\x22\x93\ \x7f\x63\xca\xef\xfc\x23\xa2\xd1\x78\x7e\x70\x05\xd0\x1d\xb1\xf9\ \x6e\xc0\x5d\x9e\x1f\xbc\x6b\x8d\xbe\x3b\xc1\xb0\x84\xc8\x5c\xa7\ \x1f\x9c\x92\x83\x33\x12\xec\x72\x6b\x71\xb7\xbc\x9f\x60\x7f\x89\ \x2b\xbf\xbf\xff\x03\xe0\xcb\xec\xbc\xe6\x48\xbd\x6c\x02\xce\xb2\ \x46\x37\xd5\x96\x49\xbb\x91\x2d\x80\x26\x53\x2e\x33\x6c\x88\xf7\ \xda\xce\x7a\x6b\x74\x21\xa1\x90\x84\x68\x08\xfb\x1c\x35\xc3\xdb\ \xe5\xdd\x8e\x17\x5d\x82\x4f\xbd\xae\x44\xef\xc0\xd3\x3a\xc9\x83\ \x84\x89\x28\x6f\x01\x5e\x02\xcc\x21\x2c\xd5\x9b\xd5\x6b\x7c\x43\ \x39\x60\x3e\x70\x86\x35\xba\x98\x75\x30\x62\xc7\x64\x05\xa0\x89\ \x94\x7f\xe9\x1f\x21\xde\x2f\xbb\x03\x8e\x4f\x26\x22\x21\x1a\x47\ \xbe\x98\x5b\x92\xe4\xe4\x8f\x73\xb7\x0c\x3c\xdd\xd7\x30\x93\x7f\ \xf9\x40\xdf\x59\xc0\x79\x84\xf7\x19\x34\xda\x16\xee\x0a\x60\xb6\ \x35\xfa\x4f\x59\x07\x22\xaa\x23\x09\x40\x73\x79\x0c\xd8\x23\x66\ \x1f\x77\x4a\xc5\x2d\xd1\x6a\xbc\xee\x99\xf3\x51\xea\x23\x89\x75\ \xe8\x78\xce\xf6\xf7\xc5\xaf\x1f\x90\x00\xcf\x0f\x02\xc2\xa7\xfd\ \x49\x34\xe6\xdf\xec\x35\xc0\x57\xe5\x9d\xfe\xe6\xd3\x88\x3f\x4c\ \xa2\x02\xcf\x0f\x2e\x07\x7a\x62\x76\xb3\x11\xf8\xc7\x04\xc2\x11\ \xa2\x61\x74\x4d\x99\x79\x1a\xca\x7d\x31\xb1\x0e\x1d\x9b\xf3\xf9\ \x7c\xdc\xdf\xb5\xc8\xca\x2b\x7d\xe7\x10\xee\xe9\x7f\x82\xf0\x56\ \xd1\x46\xb4\x11\xf8\x57\x6b\xf4\x6d\x59\x07\x22\xa2\x91\x33\x00\ \x4d\xa0\xbc\xef\xbf\x84\xf8\x4b\x7e\x9f\x97\x5a\x00\xa2\x95\x8c\ \x9d\x34\x7b\xc2\xc8\x8e\xe2\x0b\x24\xb7\xf4\xef\x3a\xe0\xd8\x35\ \x75\x7e\x57\xdd\xf3\x83\x89\xc0\x45\x84\x27\xf7\x27\xd0\x38\x7b\ \xfa\x95\x6c\x06\xbe\x6f\x8d\xfe\x6e\xd6\x81\x88\x78\x64\x05\xa0\ \x39\xac\x03\x56\x02\x07\xc6\xe8\xe3\xfe\xa8\x93\xbf\xe7\x07\x7b\ \x5b\xa3\x37\xc4\x18\x5b\x88\x54\x8c\xcc\x17\x97\xe0\x12\x3c\xf4\ \xe7\xd4\xdc\x35\xfd\x0b\x53\x9f\xfc\xcb\xfb\xf9\x27\x02\x5f\x03\ \x8e\x02\xf6\x4c\x7b\xcc\x04\x14\x81\x5b\x81\xf3\xe4\x80\x5f\x6b\ \x90\x15\x80\x26\xe2\xf9\xc1\xb7\x80\xef\x50\x7b\xe2\xb6\x09\x18\ \x1b\xb5\xf4\xa6\xe7\x07\xaf\x13\xfe\xf2\x5f\x6c\x8d\xbe\x3d\x4a\ \x1f\x42\x24\xad\xd0\xd3\xab\x95\x53\xbd\x89\x75\xa8\xdc\x72\xbb\ \xa4\xef\xd0\xc4\xfa\xdb\x4e\xf9\x2e\x90\x59\xc0\x29\x84\xaf\xf0\ \x16\x68\xbc\x43\x7c\xc3\x19\x04\xfa\x80\x7f\xb2\x46\xbf\x99\x75\ \x30\x22\x39\x92\x00\x34\x99\xf2\xd5\x9d\x8f\x50\xdb\x6a\xc0\x29\ \x51\xdf\xf9\xf7\xfc\xe0\x42\xc2\x8a\x62\xdb\x0c\x00\x5f\x97\x1a\ \x02\x22\x4b\xde\xe4\xde\x39\xe4\xd4\xad\xc9\xf5\xe8\x36\xed\xb5\ \x69\x97\xc2\xf2\xe5\x0b\xde\x4a\xa2\x37\xcf\x0f\x76\x07\x4e\x07\ \x7a\x81\x23\x80\xbd\x69\xec\x65\xfd\x4a\xb6\x02\x77\x02\xe7\x5b\ \xa3\xdf\xce\x3a\x18\x91\x3c\x49\x00\x9a\x54\x0d\xab\x01\x4f\x5a\ \xa3\x8f\x8e\x31\xce\xeb\x40\xa5\x0b\x50\x5e\x02\xce\x4d\xe2\x42\ \x23\x21\x6a\xf1\xd1\x4f\x9d\x30\x71\xeb\xd6\x11\x2b\x49\x68\x0b\ \xd3\x81\x83\xe2\x67\x06\xcc\xbd\xbf\x8d\xd2\xde\xf3\x83\x4e\xe0\ \x64\xe0\x33\x84\x37\xec\x4d\x00\x76\x4f\x22\xb6\x8c\xbc\x43\x78\ \x5b\xe0\x25\xb2\xd4\xdf\xda\x24\x01\x68\x62\x55\xac\x06\x6c\x01\ \xf6\xb6\x46\x47\x7a\xaa\xa9\xf0\xf4\x5f\xc9\x06\xe0\x27\xc0\x77\ \xe5\x8f\x85\x48\x9b\x52\x2a\x57\xe8\x0e\xd6\x81\x4b\xec\x62\x1b\ \xa7\xf8\xc1\xc0\x12\x7d\xd9\xce\x3e\xe7\xf9\x41\x9e\x70\xf9\x7e\ \x3a\x70\x24\x70\x00\xe1\x05\x3b\x59\x97\xdb\x4d\xca\x9b\xc0\xd5\ \xd6\xe8\x2b\xb3\x0e\x44\xd4\x87\x24\x00\x2d\x60\x07\xab\x01\x67\ \x59\xa3\x6f\x8a\xd1\xef\x70\x4f\xff\x95\x14\x81\x87\x81\x0b\xad\ \xd1\x4d\x7f\x67\xba\x68\x4c\x5e\x4f\x70\x1f\x8e\x13\x12\xeb\x50\ \xb9\xa5\x76\x49\xdf\xe4\xf7\xfa\xf7\x83\x09\xc0\x54\xe0\x93\xc0\ \x41\xc0\x75\x10\xe8\x65\x00\x00\x08\x1c\x49\x44\x41\x54\x44\xc2\ \x49\x7e\x4f\x5a\x67\xa2\x1f\x6a\x03\x61\x02\x3f\x37\xeb\x40\x44\ \x7d\x49\x02\xd0\x22\x2a\xac\x06\x2c\xb3\x46\x1f\x11\xa3\xbf\x6a\ \x9e\xfe\x87\x33\xcf\x1a\x7d\x6e\xd4\xb1\x85\xa8\xa4\xb3\xfb\xe4\ \xb3\x73\x2a\x37\x2f\xc1\x2e\x07\x81\xb5\x84\xcb\xf5\xbb\x02\xa3\ \x68\xbe\x7d\xfa\xa8\x1c\xf0\x7b\xe0\x5b\x72\x3d\x6f\xfb\x92\xd7\ \x00\x5b\x84\x35\x7a\x2d\x70\x50\x79\x35\xe0\x9b\x84\xcb\x94\x71\ \x5c\x11\xa3\xed\xe3\x31\xc7\x16\xe2\x7d\xba\x26\x9d\xb4\x7f\xae\ \x23\x7f\x43\xc2\xdd\x76\x00\xc9\x55\x0f\x6c\x0e\x9b\x08\x6b\xf5\ \x5f\x6a\x8d\x7e\x2d\xeb\x60\x44\xb6\x64\x05\x40\x7c\x40\xcc\xa7\ \xff\xcd\xd6\xe8\x5d\x93\x8c\x47\xb4\xb7\x70\xdf\xbf\x77\x3d\xe1\ \x49\x7a\x11\xcd\x5f\x80\xef\xc8\xed\x7c\x62\x7b\xb2\x02\x20\x2a\ \x89\xf3\xf4\xff\x48\x62\x51\x08\x01\x74\x76\x07\x0f\x82\x93\xc9\ \xbf\x76\x5b\x80\xfb\x08\xcb\xf5\xae\xce\x3a\x18\xd1\x78\x24\x01\ \x10\xef\x53\x7e\xfa\xaf\xf6\xe0\x5f\x25\x97\x27\x15\x8b\x10\x5e\ \x77\x70\x81\x52\x4c\xcb\x3a\x8e\x26\x32\x08\x2c\x05\x7e\x6c\x8d\ \xfe\xdf\xac\x83\x11\x8d\x4d\xb6\x00\xc4\xfb\xd4\x78\xf2\x7f\xa8\ \x0d\xd6\xe8\x7d\x92\x8c\x47\xb4\xaf\xc2\x91\xc1\xc1\xaa\xc8\x1f\ \x69\x9e\x8a\x79\x59\x71\xc0\xb3\xc0\x3c\xe0\x06\x6b\x74\x29\xe3\ \x78\x44\x93\x90\x15\x00\xf1\x9e\x04\x9e\xfe\xe7\xc7\x18\xbb\xab\ \x7c\x90\x51\x08\x94\xba\x32\xef\xf9\xee\x49\x87\x92\xc9\x7f\x78\ \x2f\x02\xb7\x03\x57\x49\xa5\x3e\x11\x85\x24\x00\x62\x7b\x71\xf6\ \xfe\x5d\xcc\xf6\xcf\x79\x7e\xe0\x08\x6b\x09\xfc\x87\x35\x7a\x59\ \x8c\xbe\x44\x93\x2b\x74\x2f\x7b\xd8\x39\x35\x36\xeb\x38\x1a\x8c\ \x23\x9c\xf4\xef\x03\xbe\x67\x8d\x7e\x39\xe3\x78\x44\x93\x93\x2d\ \x00\x01\xc4\x3e\xf9\x0f\xb0\xd2\x1a\x7d\x40\xc4\xb1\x8f\x06\x9e\ \x18\xf2\xe5\x57\x09\x2f\x20\xf9\xb6\x35\xda\xc6\x88\x4b\x34\x99\ \x42\x77\xef\xc5\x4a\xa9\xff\xca\x3a\x8e\x06\xb1\x05\x58\x06\xdc\ \x01\xdc\x14\xf5\x42\x2f\x21\x2a\x91\x15\x00\xb1\xcd\x7a\x60\x23\ \xd1\xb7\x00\xae\x8f\x31\xf6\x45\x15\xbe\xb6\x17\x70\x26\x70\xa6\ \xe7\x07\x1b\x80\xc5\xc0\xcf\x00\x2d\x7b\x9c\xad\x6b\x9f\x49\x33\ \x0f\xcf\x77\xa8\xab\xb2\x8e\x23\x63\xaf\x12\x26\xc4\x73\xad\xd1\ \x43\x13\x63\x21\x12\x23\x2b\x00\xe2\x7d\x3c\x3f\xb8\x94\xf0\x24\ \x7f\x2d\x97\x99\x14\x81\x91\x51\x27\x66\xcf\x0f\xde\x00\xf6\xa8\ \xf2\xe3\x25\xc2\x8b\x88\x1e\x01\xbe\x29\xc5\x4c\x5a\xcb\xf8\xee\ \x60\x83\x53\xec\x95\x75\x1c\x75\xf6\x36\xe1\x7b\xfa\xbf\x01\xae\ \xb5\x46\xaf\xcf\x38\x1e\xd1\x26\x24\x01\x10\x15\x79\x7e\x70\x25\ \x70\x09\x61\x89\xd4\x9d\xf9\xad\x35\xfa\xd3\x11\xc7\x39\x18\x58\ \x11\xa5\x2d\x30\x5e\xb6\x07\x5a\x4b\xf9\x9a\xdf\x9f\xd2\xda\xab\ \x93\x6f\x10\xfe\xcc\xff\x0a\xb8\x4d\x7e\x86\x45\x56\x24\x01\x10\ \xc3\xf2\xfc\x20\x07\xfc\x08\x38\x97\xb0\x4e\xfa\x70\x3e\x6f\x8d\ \x7e\x34\xe2\x18\x3f\x03\xbe\x12\xa1\xe9\x16\x6b\xf4\x8e\x62\x12\ \x4d\x2a\xbc\xee\x77\xe4\xe2\x24\x6f\xfc\xcb\x50\x09\x78\x8d\x70\ \x1f\xff\x1e\xe0\x0e\x6b\xf4\x9b\xd9\x86\x24\x44\x48\x12\x00\x51\ \x15\xcf\x0f\x2e\x00\x2e\x05\xba\x86\x7c\xeb\x6f\xd6\xe8\x6a\x97\ \xef\x2b\xf5\xfb\x32\x10\xa5\x76\xc0\xf3\xd6\xe8\xfd\x22\x8e\x79\ \x2b\xf0\x59\xc2\x65\xd7\x25\xc0\xaf\xad\xd1\x4b\xa2\xf4\x25\xd2\ \xa1\x94\xca\x15\xfc\xde\x5f\x26\x7a\xf3\x5f\xfa\xb6\x10\x9e\xa5\ \x79\x16\x78\x0a\xb8\xdf\x1a\xfd\xfb\x6c\x43\x12\x62\x78\x92\x00\ \x88\x9a\x78\x7e\xe0\x13\xbe\x2d\xe0\x13\x16\x68\xb9\xd3\x1a\x7d\ \x7a\xc4\xbe\xba\x80\x35\x11\x43\x99\x6f\x8d\x3e\x35\xe2\xb8\x6b\ \x81\xf1\x43\xbe\xec\x80\xbf\x95\xe3\xf9\x3f\xe0\x49\xe0\x3e\x29\ \xa1\x9a\xad\xf2\x0d\x80\x37\x10\x5e\xdc\xd3\x28\x8a\xc0\x9b\xc0\ \x6a\xc2\x27\xfb\x47\x09\x7f\x56\x36\x66\x1a\x95\x10\x35\x92\x04\ \x40\x44\xe2\xf9\xc1\x18\xe0\xc7\x84\x17\x8c\xbc\x18\xb1\x8f\xb9\ \xc0\xd7\x23\x86\x70\x86\x35\xfa\x8e\x88\xe3\x16\xa9\x7e\x42\x29\ \x12\x2e\xe1\xfe\x15\xf8\x52\xd4\xff\x56\x11\x5d\xd7\xa4\x93\xf6\ \x2f\x75\xe4\x9f\xa2\x7e\x97\x01\x39\x60\x33\xf0\x3a\xe1\x75\xc1\ \xcf\x03\x7f\x04\xfa\x81\xc5\x52\x74\x47\xb4\x0a\x49\x00\x44\x66\ \x3c\x3f\x78\x09\x98\x10\xb1\xf9\xe8\x28\x7f\x88\x3d\x3f\x38\x9c\ \xf0\x1e\xf4\x28\x0a\xb5\x9e\xd0\xee\x9a\x34\xbb\x67\xb0\xa3\x78\ \xcb\x70\xdf\x1f\x30\xfa\xe3\x11\x63\x69\x2b\x4a\xa9\x5c\x67\x77\ \xf0\xa0\xc2\xd5\xe3\x5e\x80\x92\x72\xea\xc2\x75\xfd\x0b\xaf\xab\ \xc3\x58\x42\x64\x46\xca\x6c\x8a\x4c\x78\x7e\xb0\x07\xf0\xe1\x88\ \xcd\xdf\x8a\xf1\x14\x36\x3b\x62\xbb\xc1\x28\xaf\x67\xb9\xdc\xe0\ \x64\x05\x07\x0f\xf7\x2f\x62\x2c\x6d\xc7\x39\x57\x1a\x30\x0b\xbf\ \xa0\x9c\xba\x80\xf0\x60\x5d\x9a\x72\x4e\xb9\xb9\x85\xee\xe0\x41\ \xa5\xa4\x14\xb1\x68\x5d\xf2\xc3\x2d\xb2\x72\x11\xa0\x22\xb6\x7d\ \x21\xc6\xb8\x47\x47\x6c\xf7\x46\x94\x46\x6d\xf8\x4e\x7b\xaa\xd6\ \xf5\x2f\xbc\xce\xe5\x39\x54\x29\x97\x7a\xfd\x07\xa5\x98\x5e\xe8\ \xee\xb5\x13\xa6\xce\xfe\x58\xda\x63\x09\x91\x05\x49\x00\x44\x56\ \xbe\x14\xa3\x6d\x9c\x13\xfb\x07\x46\x6c\x17\xe9\xb0\xa2\x53\x4e\ \xea\xd9\x27\x6c\xe0\x29\xfd\x27\x6b\x0e\xef\x04\xf7\x78\x1d\x86\ \x1b\x57\x1c\x7c\xf7\xcf\x85\x29\x27\x7f\xb5\x0e\x63\x09\x51\x57\ \x92\x00\x88\xba\xf3\xfc\x60\x04\xf0\x0f\x31\xba\xb8\x27\xe2\xb8\ \x39\x20\xea\x84\xfc\xe7\x28\x8d\x72\xa5\x58\xb7\x2b\x8a\x61\x38\ \x77\x45\xd1\x9a\xbe\x63\x9c\x73\x97\x90\xfa\x96\x80\xca\xab\x52\ \xee\x96\x42\x4f\xaf\x4e\x77\x1c\x21\xea\x4b\x12\x00\x91\x85\x73\ \x88\xfe\xb3\xe7\x80\x87\x22\xb6\xfd\x1c\xd1\xb7\x1d\x9e\x89\xd4\ \x4a\xb1\x67\xc4\xf1\x44\x15\x06\xfa\xfb\x7e\x54\x1c\x54\x9f\xc4\ \x91\xfa\x2b\x78\xca\xa9\x5e\xaf\x7b\xe6\x9a\xbd\x7a\x8e\x1b\x5a\ \x0b\x43\x88\xa6\x24\x09\x80\xc8\xc2\xcd\xc0\xbf\x10\x2e\xe5\xbf\ \x53\x63\xdb\xd7\x63\x5c\x06\xd4\x1b\xb1\x1d\xc0\x63\x51\x1a\x39\ \x5c\xe4\x22\x49\xa2\x3a\xaf\x2c\x5d\xb8\x6c\x60\xdf\x7c\xa7\x0b\ \x8b\xef\xa4\x4b\xb9\xae\x11\x6e\xd4\xaa\xae\xc9\xb3\x22\xd5\xa0\ \x10\xa2\x91\x48\x02\x20\xea\xce\x1a\xfd\xb6\x35\xfa\x5a\x6b\xf4\ \x14\x6b\xf4\x6e\xc0\xa1\xc0\x3c\x60\x15\x3b\x5f\xce\xfd\x4b\x8c\ \xa1\xa7\x44\x6c\xe7\xac\xd1\x4f\x47\x6a\xa9\x6a\xba\x54\x49\x44\ \xe4\x16\x2c\xd8\x3a\x60\xf4\x51\x8a\xdc\xbf\x91\xfe\x5b\x02\xbb\ \x94\x72\xa5\xbb\xc6\xf7\xf4\x46\xaa\x43\x21\x44\xa3\x90\x04\x40\ \x64\xce\x1a\xbd\xdc\x1a\x7d\xae\x35\xfa\xef\x81\x5d\x80\xd3\x08\ \x97\xf9\x2b\x2d\xeb\xc6\xb9\x1e\x35\xea\x69\xee\x5a\x57\x29\xde\ \xe3\x4a\xb9\xd1\x51\xdb\x8a\xda\xad\x33\x77\x7f\x3f\xdf\x91\xef\ \x76\x8a\xd4\xeb\xed\x3b\xa7\x4e\x2f\xf8\xc1\xaa\xc2\x61\xd3\xc7\ \xa5\x3d\x96\x10\x69\x90\x04\x40\x34\x14\x6b\x74\xc9\x1a\xfd\x73\ \x6b\xf4\x74\x6b\xf4\xdf\x01\x05\xe0\x3f\x81\xe5\xc0\xbb\xc0\x82\ \x28\xfd\x7a\x7e\x30\x0a\xf8\x50\xc4\xb0\x5e\x8e\xd8\x8e\x9c\x72\ \xbb\x45\x6d\x2b\xa2\x59\xbd\x68\xc1\x33\xeb\x77\x7d\xbd\x93\xb0\ \x72\x5f\xaa\x14\xec\x9b\x1b\x39\xfa\xe2\xb4\xc7\x11\x22\x0d\xad\ \x7c\xe5\xa6\x68\x01\xe5\xe2\x3b\xff\x5e\xfe\x17\x47\x9c\xfd\xff\ \xc8\x75\x07\xdc\x8e\x6f\x51\x14\x29\x71\x8f\x3d\xb6\x19\xf0\x0b\ \x7e\x70\xa5\x82\xcb\x89\x7e\xf8\x73\x87\x14\x6a\xe5\xba\xfe\x85\ \x97\xa6\xd1\xb7\x10\x69\x93\x15\x00\xd1\x2e\x8e\x8f\xd1\x76\x59\ \x8c\xb6\x23\x63\xb4\x15\x31\x0d\x18\x7d\x45\x6e\x30\x3f\x15\xd4\ \x5b\x29\x74\xbf\xb9\xa3\xa3\x23\xea\xb9\x12\x21\x32\x27\x09\x80\ \x68\x17\x4b\x81\x15\x84\x15\xfd\x6a\xbd\x00\xe3\x77\x91\x47\x75\ \x8c\x88\xdc\x56\x24\x62\xed\xd2\x05\x4b\x06\x06\xf7\xee\x74\xce\ \x25\x78\x35\xaf\x22\x37\x98\x9b\xb9\x7a\xd1\x82\xd4\x2b\x12\x0a\ \x91\x16\xb9\x0c\x48\xb4\x25\xcf\x0f\x0e\x01\xa6\x11\xbe\x19\xf0\ \x71\xa0\x0b\xd8\x83\xca\x4b\xc5\x7b\x5a\xa3\x23\x1d\x2a\x1b\xef\ \x07\x5b\x5d\x78\xb0\xb1\x22\x6b\x74\x2a\x4b\xd3\xa2\xb2\xf1\xfe\ \xcc\x1f\x96\x70\x97\xaa\x98\x5b\x02\x4a\xa9\x1b\xd7\x2d\x59\x78\ \x4e\x52\x71\x09\x91\x05\x49\x00\x84\xd8\x4e\x39\x31\x98\x0e\xf4\ \x10\x5e\xd6\xb3\xbb\x35\xfa\xa3\x31\xfa\x1b\x64\x07\x2b\x6d\x92\ \x00\xd4\x5f\xa1\x7b\xd6\xa7\x95\x2a\x3d\x00\x44\x3d\xa0\xb9\xd2\ \x1a\x7d\x40\x92\x31\x09\x91\x05\x39\x04\x28\xc4\x76\xac\xd1\xcb\ \x09\xdf\x38\x48\x88\xca\xd5\xbe\xe3\x20\xd2\x34\xd0\x7f\xf7\x13\ \x87\x1c\x32\xbb\xf3\xd5\xdd\x8a\x8b\x50\x1c\x5a\x63\xf3\x2d\xf9\ \x8e\xbc\xec\xfb\x8b\x96\x20\x09\x80\x10\x29\x52\xaa\xf4\x3f\x38\ \xd5\x91\x75\x1c\xe2\xfd\x96\x2f\x5f\xf0\x16\xf0\x09\xaf\xbb\xf7\ \x1a\x94\xfa\x06\x55\x6d\x09\x28\x54\xce\xc9\xbe\xbf\x68\x19\xb2\ \x05\x20\x84\x68\x6b\xe3\x7a\x66\x4d\xcb\xbb\xd2\x2f\x1d\xec\xba\ \x93\x8f\xfe\xd4\x1a\x7d\x76\x5d\x82\x12\xa2\x0e\x24\x01\x10\x42\ \xb4\xbd\x89\xc7\xcc\x19\xf3\xce\xa6\x37\x17\x29\xe5\x0e\xaa\xf8\ \x01\xc7\x73\xb6\x5f\xef\x5f\xe7\xb0\x84\x48\x95\xbc\x06\x28\x84\ \x68\x7b\xab\x1e\xbb\x6d\xe3\x40\xff\xc2\x83\x95\xe3\xbf\x2b\xec\ \x06\x6c\xc9\x95\x8a\x53\xb3\x88\x4b\x88\x34\x49\x02\x20\x84\x10\ \x65\xeb\xfa\xf5\x3f\xe7\x06\xd5\xf1\xc0\xe6\xf7\xbe\xa8\x4a\xa7\ \xac\x5d\x7a\xef\x86\xec\xa2\x12\x22\x1d\xb2\x05\x20\x84\x10\x43\ \x74\x4d\x3a\x69\xef\x52\x7e\x97\xc5\x38\xf7\xb8\x35\xfa\x6b\x59\ \xc7\x23\x44\x1a\xfe\x1f\xca\x26\xfb\x64\x6d\x29\x28\xe6\x00\x00\ \x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x26\x8c\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ \x01\x00\x9a\x9c\x18\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xed\xdd\x79\x94\x5d\x65\x99\xef\xf1\xdf\x73\x4e\ \x4d\xa9\x4c\x10\x32\x87\x4c\xa4\x0a\x30\x06\x0c\x01\x94\x79\x30\ \xa2\x8c\x69\x19\x25\xd2\x0a\x0e\x0c\x82\x57\x14\x15\x69\x6c\x65\ \x6a\x44\x65\x10\x85\x00\x81\x16\x45\x45\x68\x42\x18\x03\xe1\xb6\ \xed\x65\xd0\x25\xe4\x36\x72\xf1\x12\xbd\x0a\x0a\x98\x60\x20\x21\ \x88\x40\x02\x49\xaa\xea\xbc\xf7\x8f\xaa\x60\x24\x90\x54\xd5\x7e\ \xdf\xf3\xee\xbd\xdf\xef\x67\xad\x2c\x97\x2e\xf3\xe4\x29\x48\x9d\ \xfd\xad\xbd\xf7\xd9\xc7\x9c\x73\x02\x8a\xcc\xcc\xb6\x95\x74\x88\ \xa4\xed\x24\x8d\x94\x34\x6a\x83\xff\x1c\x1c\x71\x35\x20\xb6\xe5\ \x92\x16\x49\x7a\x58\xd2\x83\xce\xb9\x87\x23\xef\x83\x1c\x31\x02\ \x00\x45\x63\x66\x0d\x92\xf6\x96\x74\x98\xa4\x43\x25\xb5\xc7\xdd\ \x08\x28\x8c\x6b\x24\x7d\xc1\x39\xb7\x26\xf6\x22\x88\x8f\x00\x40\ \x61\x98\x99\x49\x9a\x2d\xe9\x7c\x49\x53\x22\xaf\x03\x14\xd5\xff\ \x95\x74\x8c\x73\xee\x0f\xb1\x17\x41\x5c\x04\x00\x0a\xc1\xcc\x0e\ \x95\x74\xa1\xa4\x1d\x63\xef\x02\x94\xc0\x8b\x92\x76\x73\xce\x3d\ \x1d\x7b\x11\xc4\x43\x00\x20\xd7\xcc\x6c\x9c\xa4\x1b\x25\xed\x1b\ \x7b\x17\xa0\x64\xfe\x20\x69\x77\xe7\xdc\xcb\xb1\x17\x41\x1c\x95\ \xd8\x0b\x00\xef\xc4\xcc\xf6\x94\xf4\xa8\x38\xf8\x03\x21\x6c\x27\ \xe9\x76\x33\x6b\x8a\xbd\x08\xe2\x20\x00\x90\x4b\x66\x76\x8a\xa4\ \xfb\x25\x8d\x8e\xbd\x0b\x50\x62\xfb\x4a\xfa\x7e\xec\x25\x10\x07\ \x01\x80\xdc\x31\xb3\x2b\x24\x5d\x2d\xa9\x31\xf6\x2e\x40\x02\xfe\ \xd9\xcc\xce\x8b\xbd\x04\xea\x8f\x7b\x00\x90\x2b\x66\xf6\x15\x49\ \xdf\x8c\xbd\x07\x90\xa0\xe3\x9d\x73\x3f\x8a\xbd\x04\xea\x87\x00\ \x40\x6e\x98\xd9\xe1\x92\xe6\x4b\xb2\xd8\xbb\x00\x09\xea\x90\xf4\ \x21\xe7\xdc\xfd\xb1\x17\x41\x7d\x10\x00\xc8\x05\x33\x9b\x21\xe9\ \x17\x92\x5a\x63\xef\x02\x24\xec\x6f\x92\xf6\x70\xce\xfd\xbf\xd8\ \x8b\x20\x3c\x02\x00\xd1\x99\xd9\x40\x49\xbf\x97\xb4\x75\xec\x5d\ \x00\xe8\x59\x49\xef\x73\xce\xad\x88\xbd\x08\xc2\xe2\x26\x40\xe4\ \xc1\x99\xe2\xe0\x0f\xe4\xc5\x24\x49\x77\x9b\xd9\x80\xd8\x8b\x20\ \x2c\xce\x00\x20\x2a\x33\x1b\x2b\xe9\x29\x71\xea\x1f\xc8\x9b\xdb\ \x25\x1d\xe5\x9c\xab\xc5\x5e\x04\x61\x70\x06\x00\xb1\x5d\x20\x0e\ \xfe\x40\x1e\x1d\x2e\xe9\xe2\xd8\x4b\x20\x1c\xce\x00\x20\x1a\x33\ \xdb\x41\xd2\xe3\x22\x44\x81\x3c\x3b\xcd\x39\x77\x55\xec\x25\xe0\ \x1f\x2f\xbc\x88\xe9\x93\xe2\xef\x20\x90\x77\xdf\x33\xb3\x43\x62\ \x2f\x01\xff\x38\x03\x80\x28\x7a\x3e\xda\x77\x89\x3c\xdf\xfc\x77\ \xe8\x1e\x15\xbd\xf7\x5d\x15\x4d\x9d\x64\x9a\x3a\xa9\xa2\xd1\xc3\ \x7c\x4e\x07\xfa\xa6\x73\x59\x4d\x9d\x7f\xe8\xc8\x34\xe3\x96\xdf\ \x4a\x9f\x5f\xe8\x69\xa1\xfe\x5b\x25\x69\x1f\xe7\xdc\xff\x89\xbd\ \x08\xfc\x69\x88\xbd\x00\x92\xb5\x9b\x3c\x1e\xfc\xdb\xb7\x36\x5d\ \x75\x46\xa3\x66\xee\xcc\x09\x05\xe4\x47\x67\xab\xd4\xd1\x92\x6d\ \xc6\xa0\x7c\x7c\x54\xcf\x20\x49\x0b\xcc\xec\x7d\xce\xb9\xe7\x62\ \x2f\x03\x3f\x78\xb5\x44\x2c\x47\xf9\x1a\x74\xea\x87\xab\xfa\xcd\ \x0f\x9a\x39\xf8\x23\x7f\x3c\x3c\xd3\xb2\x92\x9f\xe7\x62\x8e\x95\ \x74\x8f\x99\x0d\x8e\xbd\x08\xfc\xe0\x15\x13\xb1\x1c\xe1\x63\xc8\ \x3e\xef\xa9\xe8\x7b\xa7\x37\xaa\x25\x1f\x3f\x25\x01\xff\xc0\xc7\ \xb1\xdb\xf2\x13\x00\x92\xb4\xa3\xa4\x79\x66\xc6\xd9\xe3\x12\x20\ \x00\x50\x77\x66\xd6\xa2\xee\x87\x8d\x64\x32\x6c\x88\xe9\x27\x5f\ \x6b\x54\x85\xbf\xc5\xc8\xab\x72\x9d\x01\x58\xef\x43\x92\xe6\xc4\ \x5e\x02\xd9\xf1\xd2\x89\x18\xc6\xfb\x18\xf2\x6f\x9f\x6e\xd0\xd6\ \x23\xf2\xf7\xea\x08\xf8\x94\xc3\x00\x90\xa4\x93\x7a\x3e\xb9\x13\ \x05\x46\x00\x20\x06\x2f\x37\xff\x7d\xe8\xbd\xfc\xf5\x45\xce\x95\ \xf3\x0c\xc0\x7a\x17\x99\xd9\xd1\xb1\x97\x40\xff\xf1\x0a\x8a\x18\ \x32\x9f\x01\x18\x3f\xd2\x34\x79\x4c\x7e\x5f\x19\x01\x5f\x7c\xfc\ \x2d\x1f\x3c\xb0\x1a\xe2\x5e\x02\x93\xf4\x23\x33\xdb\xdd\xfb\x64\ \xd4\x05\x01\x80\x18\x32\x07\xc0\xbe\xd3\xf9\xab\x8b\x02\xc8\xc9\ \x19\x80\x77\x4d\x69\xd1\x45\x5f\x0c\xf2\x79\x5b\x2d\x92\xee\x32\ \xb3\x29\x21\x86\x23\x2c\x5e\x45\x11\x43\xe6\xb7\x11\x8d\x1b\xce\ \x4f\xff\x48\x83\x8f\x00\xa8\xd5\xa4\x2f\x7f\x7a\xb4\x4e\x3c\x66\ \x44\xf6\x61\x1b\x1b\x2e\xe9\x5e\x33\xe3\xb1\x5b\x05\x43\x00\x00\ \x40\x8e\xf9\x09\x80\xee\x27\xbe\x5e\x79\xce\x04\x7d\x70\xaf\x21\ \xd9\x07\x6e\x6c\x5b\x49\x77\x98\x19\x6f\xc8\x2d\x10\x02\x00\x00\ \x42\xc9\xc9\x25\x80\xf5\x0f\x7c\x6f\xa8\x9a\x6e\xf9\xee\x14\xed\ \xb8\xdd\x80\xec\x43\x37\xb6\xb7\xa4\x1f\x84\x18\x8c\x30\x08\x00\ \x00\xc8\x31\x5f\x97\x00\xd6\x1b\x3c\xb0\xaa\xbb\xe7\xb6\x6b\xec\ \xc8\xc6\xec\x83\x37\xf6\x51\x33\xbb\x20\xc4\x60\xf8\x47\x00\x00\ \x40\x28\x39\x39\x03\xb0\xfe\x12\xc0\x7a\x5b\x8f\x6e\xd2\x5d\xd7\ \xb4\x6b\x50\x6b\x90\x43\xc0\xbf\x9a\xd9\x27\x42\x0c\x86\x5f\x04\ \x00\x00\xe4\x98\xef\x33\x00\xeb\xed\x34\xb5\x55\x37\x5d\x36\x45\ \xd5\x6a\x90\x1b\x6a\xe7\x9a\xd9\xcc\x10\x83\xe1\x0f\x01\x00\x00\ \xa1\x78\x78\xf3\xbd\x8f\xc3\xf3\x3b\x7d\xe8\xfb\xc1\xfb\x0d\xd5\ \xe5\x67\x7b\x79\x30\xe7\x5b\x35\x4a\x9a\x6f\x66\x53\x43\x0c\x87\ \x1f\x04\x00\x00\xe4\x58\x88\x4b\x00\x1b\x3a\xf5\xb8\x91\xfa\xfc\ \x09\xa3\xb2\xff\x21\x1b\x1b\xaa\xee\xb7\x07\x06\x19\x8e\xec\x08\ \x00\x00\x08\xc5\xc3\xc1\xdb\xc7\x13\xfc\xde\xee\x12\xc0\x86\x2e\ \x3e\x73\xbc\x3e\x7c\xc0\x96\xd9\xff\xa0\x8d\x4d\x94\x74\xb7\x99\ \xb5\x86\x18\x8e\x6c\x08\x00\x00\xc8\xb1\xd0\x67\x00\x24\xa9\x52\ \x91\x7e\x7c\xf1\x64\xbd\x77\xc7\x81\xd9\xff\xb0\x8d\xed\x2a\xe9\ \xa7\x66\xc6\xf1\x26\x67\xf8\x17\x02\x00\xa1\xe4\xe4\x5d\x00\x9b\ \x3e\xfc\x77\x6b\x6d\xa9\xe8\x8e\xab\xdb\x34\x69\x5c\x73\xf6\x3f\ \x70\x63\xff\x24\xe9\xd2\x10\x83\xd1\x7f\x04\x00\x00\x04\xe2\xe3\ \x06\xbe\x50\xef\x02\x78\x3b\xa3\xb6\x6a\xd4\xdd\x73\xdb\xb4\xc5\ \x90\x6a\xf6\x3f\x74\x63\x9f\x37\xb3\xcf\x86\x18\x8c\xfe\x21\x00\ \x00\x20\x94\x9c\x9c\x01\xd8\xdc\x25\x80\x0d\x4d\x6d\x1b\xa0\x5b\ \xbf\xd7\xa6\xc6\x86\x20\x6f\x0f\xbc\xdc\xcc\x0e\x0b\x31\x18\x7d\ \x47\x00\x00\x40\x8e\x79\xb9\x09\xb0\xf7\xc7\x7f\x49\xd2\xfe\xbb\ \x0d\xd6\xdc\x0b\x26\x66\xff\x83\x37\x56\x95\x74\x93\x99\xcd\x08\ \x31\x1c\x7d\x43\x00\x00\x40\x8e\x79\xb9\x07\xa0\x8f\x01\x20\x49\ \xc7\x1f\x3e\x5c\xff\x7a\xea\x98\xec\x7f\xf8\xc6\x06\x4a\x5a\x60\ \x66\x41\x1e\x40\x80\xde\x23\x00\x00\x20\x94\x02\x5e\x02\xd8\xd0\ \x79\x9f\x1b\xa7\x8f\x1e\xb6\x55\xf6\x05\x36\x36\x46\xdd\xcf\x08\ \x08\xf2\xd1\x84\xe8\x1d\x02\x00\x00\x72\xac\x9e\x37\x01\xbe\x9d\ \xef\x7f\x63\x92\xf6\xd9\x75\x70\xf6\x25\x36\x36\x4d\xd2\xad\x66\ \xd6\x10\x62\x38\x36\x8f\x00\x00\x80\x50\xf2\x72\x06\xa0\x3f\xd7\ \x00\x7a\x34\x35\x9a\xe6\x5f\x39\x45\xdb\x4e\x6a\xc9\xbe\xc8\xc6\ \x0e\x90\x74\x75\x88\xc1\xd8\x3c\x02\x00\x00\x72\x2c\xd6\x3d\x00\ \x1b\x1a\x36\xb4\x41\x0b\xae\x6d\xd7\xf0\x2d\x83\xfc\xb0\xfe\x69\ \x33\xfb\x97\x10\x83\xb1\x69\x04\x00\x00\x84\x92\x97\x33\x00\x19\ \x2e\x01\xac\x37\x65\x42\xb3\xee\xb8\xba\x4d\x2d\xcd\x41\x0e\x1b\ \x17\x9a\xd9\x47\x42\x0c\xc6\x3b\x23\x00\x00\x20\xc7\x62\xde\x04\ \xf8\x56\xbb\x4f\x1f\xa4\x1b\xbe\x35\xd9\xcb\x5b\x13\xdf\xc2\x24\ \xdd\x60\x66\x7b\x7a\x9f\x8c\x77\x44\x00\x00\x40\x28\x3e\x3e\x0c\ \x28\xfb\x88\x3e\x3f\x07\x60\x53\x8e\x3a\x70\x4b\x7d\xe3\x8c\xad\ \xfd\x0d\xfc\xbb\x66\x49\x77\x9a\x59\x5b\x88\xe1\xd8\x18\x01\x00\ \x00\x39\xe6\xe3\xa7\xed\xac\xf7\x00\xbc\xd5\x99\x27\x8e\xd6\xa7\ \x8f\x19\xe1\x77\x68\xb7\xad\xd4\xfd\xf6\xc0\x20\xef\x3d\xc4\x3f\ \x22\x00\x00\x20\x94\xdc\xdc\x03\xe0\xb9\x00\x24\xcd\x39\x67\x82\ \x3e\xb8\x57\x90\xb7\xf1\xb7\x4b\xba\xc3\xcc\x82\x7c\x2a\x11\xfe\ \x8e\x00\x00\x80\x1c\xcb\xcb\x4d\x80\x6f\xd5\x50\x35\xdd\xf2\xdd\ \x29\xda\x61\xdb\x01\xfe\x87\x4b\x7b\x49\xfa\xa1\x59\x80\xbb\x0d\ \xf0\x26\x02\x00\x00\x42\xf1\x70\xfc\xf2\xf3\x1c\x80\xec\x33\xde\ \xce\xe0\x81\x55\xdd\x3d\xb7\x5d\x63\x47\x36\x86\x18\x7f\xac\xa4\ \x7f\x0b\x31\x18\xdd\x08\x00\x00\xc8\x31\x3f\xcf\x01\x08\x54\x00\ \x92\xc6\x8f\x69\xd2\x5d\xd7\xb4\x6b\xe0\x80\x20\x87\x93\xb3\xcd\ \xec\x53\x21\x06\x83\x00\x00\x80\x5c\xcb\xeb\x25\x80\x0d\xed\x34\ \xb5\x55\x37\x7d\x67\x8a\xaa\xd5\x20\x67\xec\xaf\x31\xb3\x0f\x84\ \x18\x9c\x3a\x02\x00\x00\x02\xf1\x71\x05\x3b\xcf\x97\x00\x36\x74\ \xc8\x7e\x43\x75\xf9\xd9\x41\x3e\xe0\xaf\x41\xdd\x9f\x19\x30\x2d\ \xc4\xf0\x94\x11\x00\x00\x90\x63\x5e\x9e\x03\x50\x8f\x02\x90\x74\ \xea\x71\x23\xf5\xf9\x13\x46\x85\x18\x3d\x54\xd2\x3d\x66\x36\x3a\ \xc4\xf0\x54\x11\x00\x00\x10\x4a\x4e\xce\x00\x04\xbc\x05\x60\x23\ \x17\x9f\x39\x5e\xff\xf4\x81\x2d\x42\x8c\x9e\x20\x69\x81\x99\x0d\ \x0c\x31\x3c\x45\x04\x00\x00\xe4\x98\x8f\x00\x90\xea\x17\x01\x95\ \x8a\xf4\x93\x4b\xb6\xd1\xae\x3b\x04\x39\x4e\xef\x2c\xe9\xa7\x66\ \xc6\xb1\xcb\x03\xfe\x21\x02\x40\x28\x39\x39\x03\x20\xd5\xef\x32\ \x80\x24\xb5\xb6\x54\x74\xe7\x35\x6d\x9a\x38\xb6\x29\xc4\xf8\x59\ \x92\xbe\x13\x62\x70\x6a\x08\x00\x00\xc8\x31\x6f\x01\x50\xc7\xcb\ \x00\x92\x34\x6a\xab\x46\x2d\xb8\xb6\x5d\x43\x07\x57\x43\x8c\xff\ \x9c\x99\x9d\x1e\x62\x70\x4a\x08\x00\x00\x08\x25\x47\x67\x00\xea\ \x79\x1f\xc0\x7a\x53\xdb\x06\x68\xfe\x15\x6d\x6a\x6c\x08\xf2\xf6\ \xc0\xcb\xcc\x6c\x56\x88\xc1\xa9\x20\x00\x00\x20\xc7\x7c\x3d\x0c\ \xb7\x9e\x97\x00\x36\xb4\xff\x6e\x83\x35\xf7\x82\x89\x21\x46\x57\ \x24\xdd\x64\x66\xbb\x84\x18\x9e\x02\x02\x00\x00\x42\xc9\xd1\x19\ \x80\x48\xc7\x7f\x49\xd2\xf1\x87\x0f\xd7\x57\x3f\x33\x26\xc4\xe8\ \x56\x49\x77\x9b\x59\x90\xc2\x28\x3b\x02\x00\x00\x72\xcc\xdf\x19\ \x00\x3f\x73\xfa\xeb\xfc\xd3\xc7\x69\xf6\xa1\xc3\x42\x8c\x1e\xad\ \xee\x67\x04\x0c\x0d\x31\xbc\xcc\x08\x00\x00\x08\x25\x47\x67\x00\ \x42\x7e\x1e\x40\x6f\x7d\xff\x1b\x93\xb5\xf7\x2e\x83\x42\x8c\x7e\ \xb7\xba\x9f\x16\x18\xe4\x53\x89\xca\x8a\x00\x00\x80\x1c\xf3\xf7\ \x36\x40\x3f\x73\xb2\x68\x6e\x32\xdd\x36\xa7\x4d\xdb\x4e\x6a\x09\ \x31\xfe\x03\x92\xae\x09\x31\xb8\xac\x08\x00\x00\x08\x25\x47\x67\ \x00\x62\xde\x03\xb0\xa1\x61\x43\x1b\xb4\xe0\xda\x76\x0d\xdf\xb2\ \x21\xc4\xf8\x4f\x9a\xd9\x57\x43\x0c\x2e\x23\x02\x00\x00\x72\xac\ \x88\x0f\x02\xda\x9c\x29\x13\x9a\x75\xfb\x55\x6d\x6a\x69\x0e\x72\ \x08\xba\xc0\xcc\x66\x87\x18\x5c\x36\x04\x00\x00\xe4\x98\xaf\x77\ \xd0\xe7\xe1\x12\xc0\x86\xf6\xd8\x69\x90\x7e\xf8\xcd\x49\xde\x6e\ \x72\xdc\x80\x49\xfa\x81\x99\xed\xed\x7d\x72\xc9\x10\x00\x00\x10\ \x8a\xa7\xa3\x5b\xd1\x3e\x10\xa8\xb7\x8e\x3e\x68\x98\x2e\xfc\xc2\ \xd6\x21\x46\x37\x4b\xba\xc3\xcc\xda\x43\x0c\x2f\x0b\x02\x00\x00\ \x02\xf1\xf5\xc3\xad\x8f\x00\xa8\xe5\xb1\x00\x24\x7d\xe5\xa4\xd1\ \xfa\xf4\x31\x23\x42\x8c\x1e\x26\xe9\x5e\x33\x1b\x1e\x62\x78\x19\ \x10\x00\x00\x10\x8a\xa7\x02\xf0\x31\x26\x6f\x97\x00\x36\x34\xe7\ \x9c\x09\x3a\x60\xcf\x21\x21\x46\xb7\x49\xba\xd3\xcc\x82\xbc\xed\ \xa0\xe8\x08\x00\x00\xc8\x39\x2f\x67\x00\x72\x74\x13\xe0\x5b\x35\ \x54\x4d\xb7\x7c\x77\x8a\x76\xd8\x76\x40\x88\xf1\x7b\x48\xba\xc1\ \x2c\xc0\xdd\x06\x05\x47\x00\x00\x40\x28\x9e\x0e\x39\x65\xbd\x07\ \x60\x43\x43\x06\x55\x75\xf7\xdc\x76\x8d\x19\x11\xe4\x59\x3e\xc7\ \x48\xfa\x46\x88\xc1\x45\x46\x00\x00\x40\xce\xf9\xb9\x07\x20\xfb\ \x8c\xd0\xc6\x8f\x69\xd2\x5d\x73\xdb\x35\x70\x40\x90\x43\xd3\x59\ \x66\x76\x62\x88\xc1\x45\x45\x00\x00\x40\x28\xbe\xee\x01\x28\xf9\ \x25\x80\x0d\xcd\x98\xda\xaa\x9b\xbe\x33\x45\xd5\x6a\x90\x33\xf6\ \x57\x99\xd9\x07\x43\x0c\x2e\x22\x02\x00\x00\x72\xce\xcf\x3d\x00\ \xd9\x67\xd4\xcb\x21\xfb\x0d\xd5\x77\xce\x1e\x1f\x62\x74\x83\xa4\ \x79\x66\xb6\x43\x88\xe1\x45\x43\x00\x00\x40\xce\x79\xb9\x07\x20\ \xfb\x88\xba\x3a\xed\xb8\x91\x3a\xfd\xf8\x51\x21\x46\x0f\x51\xf7\ \xa7\x07\x06\xf9\x7c\xe2\x22\x21\x00\x00\x20\x94\x1c\xdd\x04\x58\ \x94\x4b\x00\x1b\xba\xe4\x2b\xe3\x35\x6b\xe6\x16\x21\x46\x8f\x97\ \xb4\xc0\xcc\x06\x86\x18\x5e\x14\x04\x00\x00\xe4\x9c\x9f\x7b\x00\ \xb2\xcf\xa8\xb7\x4a\x45\xba\xf1\xd2\x6d\xb4\xcb\xb4\x20\xc7\xe9\ \x19\x92\x6e\x36\xb3\x6a\x88\xe1\x45\x40\x00\x00\x40\x48\x39\xf9\ \x44\xc0\x22\x9e\x01\x90\xa4\xd6\x96\x8a\xee\x9a\xdb\xa6\x89\x63\ \x9b\x42\x8c\x3f\x54\xd2\x77\x43\x0c\x2e\x02\x02\x00\x00\x72\x2e\ \xc5\x7b\x00\x36\x34\x6a\xab\x46\xdd\x7d\x6d\xbb\x86\x0e\x0e\xf2\ \xc3\xfa\x69\x66\xf6\x85\x10\x83\xf3\x8e\x00\x00\x80\x90\x72\x73\ \x06\x20\xfb\x8c\x98\xde\xdd\x36\x40\xb7\x7e\x6f\x8a\x1a\x1b\x82\ \xbc\x3d\xf0\x12\x33\xfb\x70\x88\xc1\x79\x46\x00\x00\x40\xce\xa5\ \x7c\x09\x60\x43\xef\xdf\x7d\x88\xae\x39\x7f\x62\x88\xd1\x15\x49\ \x37\x9a\xd9\xae\x21\x86\xe7\x15\x01\x00\x00\x39\xc7\x19\x80\xbf\ \x3b\xe1\x88\xe1\x3a\xfb\x94\x20\xef\xe0\x6b\x95\x74\xb7\x99\x4d\ \x0a\x31\x3c\x8f\x08\x00\x00\x08\x29\x27\x97\x00\x8a\xff\xf3\xff\ \xdf\x9d\x7f\xfa\x38\x1d\x7b\xc8\xb0\x10\xa3\x47\xa9\xfb\x19\x01\ \x41\xde\x7b\x98\x37\x04\x00\x00\x84\xe4\xe1\xe0\xed\xe7\xe3\x80\ \xcb\x93\x00\x66\xd2\xf5\x17\x4d\xd6\xde\xbb\x0c\x0a\x31\x7e\xaa\ \xa4\xf9\x66\x16\xe4\x53\x89\xf2\x84\x00\x00\x80\x80\x7c\x1c\xbc\ \xb9\x04\xb0\xb1\xe6\x26\xd3\x6d\x73\xda\xd4\x3e\xb1\x25\xc4\xf8\ \xf7\x4b\xba\x36\xc4\xe0\x3c\x21\x00\x00\x20\xa8\xec\x47\xef\x54\ \x3e\x0d\xb0\xaf\x86\x0d\x6d\xd0\x82\xeb\xda\x35\x7c\xcb\x86\x10\ \xe3\x4f\x30\xb3\xaf\x85\x18\x9c\x17\x04\x00\x00\x84\xe4\xe3\x12\ \x80\x8f\x7b\x00\x5c\x09\x0b\x40\x52\xdb\x84\x66\xdd\x7e\x55\x9b\ \x5a\x9a\x83\x1c\xce\xce\x37\xb3\xe3\x42\x0c\xce\x03\x02\x00\x00\ \x72\x8e\x4b\x00\x9b\xb6\xc7\x4e\x83\xf4\x83\x8b\x26\x79\x09\xa5\ \xb7\x71\xbd\x99\xed\x13\x64\x72\x64\x04\x00\x00\x84\x94\x93\x77\ \x01\x94\x39\x00\x24\xe9\x98\x83\x87\xe9\xc2\x2f\x6c\x1d\x62\x74\ \x93\xa4\xdb\xcd\x6c\xbb\x10\xc3\x63\x22\x00\x00\x20\xe7\xfc\xdc\ \x03\x50\xce\x4b\x00\x1b\xfa\xca\x49\xa3\xf5\xa9\xa3\x87\x87\x18\ \x3d\x4c\xd2\xbd\x66\x36\x22\xc4\xf0\x58\x08\x00\x00\x08\x29\x27\ \x67\x00\x4a\xf5\x20\x80\x4d\xb8\xea\xdc\x89\xfa\xc0\x1e\x43\x42\ \x8c\xde\x46\xd2\x9d\x66\x16\xe4\x6d\x07\x31\x10\x00\x00\x90\x73\ \x7e\x9e\x03\xe0\x61\x48\x01\x34\x54\x4d\xf3\xbe\x37\x45\xd3\xda\ \x07\x84\x18\xbf\xbb\xa4\x1f\x9b\x05\xba\xdb\xa0\xce\x08\x00\x00\ \x08\x29\x27\x67\x00\xca\xf4\x20\xa0\xcd\x19\x32\xa8\xaa\x05\xd7\ \xb6\x6b\xcc\x88\x20\xcf\xf2\x39\x4a\xd2\x37\x43\x0c\xae\x37\x02\ \x00\x00\x72\x8e\xe7\x00\xf4\xdd\xf8\x31\x4d\xba\x6b\x6e\xbb\x06\ \x0e\x08\x72\x98\x3b\xd3\xcc\x4e\x0e\x31\xb8\x9e\x08\x00\x00\x08\ \x29\x27\x67\x00\x12\xb8\x07\x70\x23\x33\xa6\xb6\xea\xa7\x97\x6d\ \xa3\x4a\x98\x23\xdd\x95\x66\x76\x60\x90\xc9\x75\x42\x00\x00\x40\ \xce\x71\x09\xa0\xff\x0e\xdd\x7f\x0b\x7d\xe7\xec\x09\x21\x46\x37\ \x48\xba\xc5\xcc\x76\x0c\x31\xbc\x1e\x08\x00\x00\xc8\x39\x9e\x03\ \x90\xcd\x67\xff\x79\xa4\x3e\xf7\xf1\x51\x21\x46\x0f\x56\xf7\xa7\ \x07\x8e\x0d\x31\x3c\x34\x02\x00\x00\x42\xca\xc9\x25\x80\x14\x9e\ \x03\xb0\x29\x97\x9e\x35\x5e\xb3\x66\x06\xf9\x94\xdf\xad\xd5\x1d\ \x01\x41\x3e\x9a\x30\x24\x02\x00\x00\x42\xca\x49\x00\x24\x7e\xfc\ \x57\xa5\x22\xdd\x78\xe9\x36\xda\x65\xda\xc0\x10\xe3\xa7\x4b\xfa\ \x0f\x33\xab\x86\x18\x1e\x0a\x01\x00\x00\x39\xe7\xe3\x5d\xe7\x29\ \x5f\x02\x58\xaf\xb5\xa5\xa2\x3b\xaf\x69\xd3\xc4\xb1\x4d\x21\xc6\ \x1f\x2c\xe9\x8a\x10\x83\x43\x21\x00\x00\x20\xe7\xbc\x04\x40\xea\ \xa7\x00\x7a\x8c\x1e\xde\xa8\xbb\xaf\x6d\xd7\xd0\xc1\x41\x7e\x58\ \xff\x8c\x99\x7d\x31\xc4\xe0\x10\x08\x00\x00\x08\xc8\xc7\xc1\x9b\ \x9b\x00\xfd\x7a\x77\xdb\x00\xcd\xfb\xee\x14\x35\x36\x04\x79\xa0\ \xdf\xb7\xcd\xec\x88\x10\x83\x7d\x23\x00\x00\x20\xe7\xb8\x07\xc0\ \xbf\x99\x7b\x0c\xd1\xd5\xe7\x4d\x0c\x31\xba\x22\xe9\x27\x66\x36\ \x2d\xc4\x70\x9f\x08\x00\x00\x08\xc9\xc3\x29\x00\x1f\x01\xd0\xd1\ \x49\x01\xbc\xd5\x27\x8e\x1c\xae\xb3\x4f\x19\x13\x62\xf4\x00\x49\ \x57\x86\x18\xec\x13\x01\x00\x00\x21\x79\xb8\xdf\x6c\x2b\x0f\x9f\ \x6b\xf3\xe4\xb3\x6b\xb2\x0f\x29\xa1\xf3\x4f\x1f\xa7\x63\x0f\x19\ \x16\x62\xf4\xbe\x66\xf6\x91\x10\x83\x7d\x21\x00\x00\x20\x20\x6b\ \xce\xfe\xe3\xfb\x38\x0f\x9f\x6e\x7b\xef\x03\xaf\x70\x1f\xc0\xdb\ \x30\x93\xae\xbf\x68\xb2\xf6\xda\x39\xc8\xdb\xf8\x4f\x0a\x31\xd4\ \x17\x02\x00\x00\x02\xaa\x0c\xf4\x10\x00\x83\xb3\xef\xf1\xe8\xe2\ \xd5\x3a\x7f\xce\xb2\xec\x83\x4a\xa8\xb9\xc9\x74\xdb\x9c\x36\xb5\ \x4f\x6c\xf1\x3d\x7a\x07\xdf\x03\x7d\x6a\x88\xbd\x00\x00\x94\x59\ \x75\x44\x55\x1d\x4f\x75\x66\x9a\xe1\xe3\x0c\x80\x24\x5d\x30\x67\ \x99\x1e\xfb\xed\x6a\x7d\x66\xf6\x48\x4d\x9f\xda\xaa\xd6\x16\x7e\ \x06\x5c\xaf\xa1\x6a\xfa\xc9\xa5\x93\x75\xc0\x09\x4f\xea\xd5\x55\ \x5d\xbe\xc6\x8e\x30\xb3\x51\xce\xb9\xe5\xbe\x06\xfa\x44\x00\x00\ \x40\x40\x36\xd0\x64\x03\x4d\x6e\x75\xff\x6f\xc2\x7b\xcf\x68\x7f\ \xfb\xdc\xf3\xc0\x2b\xba\xe7\x81\x57\xfc\x0d\xc4\xe6\x8c\x96\x94\ \xcb\x00\x20\xff\x00\x20\xb0\xa6\xed\x1b\x33\xfd\xfe\x09\x43\xfd\ \x46\x00\xea\x2a\xc8\xc3\x06\x7c\x20\x00\x00\x20\xb0\xca\xb0\x8a\ \x1a\x26\x64\x7b\xf2\xdc\xac\xed\x3c\x2d\x03\xf4\x20\x00\x00\xa0\ \x0e\x1a\xdb\x1b\x65\x19\x6e\x08\x3c\x8c\x00\x80\x67\x04\x00\x00\ \xd4\x43\x45\x6a\x7a\x77\xa3\xd4\xcf\x13\x01\xef\x1e\x29\xed\x39\ \xc1\xef\x4a\x48\x1b\x01\x00\x00\x75\x52\x19\x5a\x51\xcb\x6e\xcd\ \xaa\x6c\xd1\xbf\x97\xde\x0b\x67\x7a\x5e\x08\x49\x23\x00\x00\xa0\ \x8e\xac\xd5\xd4\xbc\x4b\x93\x1a\xb7\x6d\xe8\xf3\x2b\xf0\xae\xe3\ \xa4\x23\xde\x15\x66\x2f\xa4\x87\x00\x00\x80\x7a\x33\xa9\x61\x62\ \x83\x5a\x76\x6f\x56\x75\x5c\x55\xd6\xd4\xfb\x7b\x03\xce\x7b\xbf\ \xd4\x9a\xed\x4d\x05\x80\x24\x9e\x03\x00\x00\xd1\x58\xab\xa9\x69\ \x6a\xa3\xe4\xa4\xda\x6b\x35\xb9\x35\x4e\x6e\xad\xa4\xae\x77\x7e\ \x66\xc0\x76\x92\xae\x37\xa7\xd9\x73\xba\xf8\x84\x3f\x64\x42\x00\ \x00\x40\x6c\x26\x55\x86\x54\xa4\x5e\x3e\xf1\xef\x98\x49\xd2\x53\ \x6b\x4c\x5f\xfb\xf7\x6c\x4f\x18\x44\xda\xb8\x04\x00\x00\x05\xf4\ \xd5\x8f\x35\xe8\xe3\x1f\xca\xf6\x6c\x01\xa4\x8d\x00\x00\x80\x82\ \xba\xfe\xac\x46\x7d\xe5\xa3\x9c\xc8\x45\xff\x10\x00\x00\x50\x50\ \x95\x8a\x74\xd1\xc9\x0d\xba\xe1\xab\x8d\x6a\xe6\xc6\x40\xf4\x11\ \x01\x00\x00\x05\xf7\xb1\x0f\x56\xf5\xe0\x15\x4d\xda\x75\x7b\x5e\ \xd2\xd1\x7b\xfc\x6d\x01\x80\x12\x78\xef\xbb\x2a\x5a\x34\xb7\x49\ \xf3\xce\x6f\xd4\x76\x13\x72\xfb\xf9\x33\xc8\x11\x02\x00\x00\x4a\ \xe4\xc8\x7d\xab\x5a\x7c\x43\xb3\x6e\xfc\x7a\xa3\x8e\xd8\xa7\xaa\ \x81\x2d\xb1\x37\x42\x5e\x71\xf7\x08\x00\x94\x4c\xb5\x22\xcd\x9e\ \x59\xd5\xec\x99\x55\xbd\xb1\xb6\x51\x3f\x7b\xb4\xa6\x9f\x3f\xda\ \xa5\xa5\x2f\x4a\xcb\x56\x3a\x2d\x5b\xe9\xf4\xc2\x5f\x9d\x3a\xbb\ \x62\x6f\x8a\x98\x08\x00\x00\x28\xb1\x01\xcd\xd2\xac\x3d\x2b\x9a\ \xb5\x67\x5a\x27\x7c\xd7\xdc\xbf\x56\xae\x33\xdb\x93\x92\xde\x75\ \x85\xb4\xe4\x15\x4f\x0b\xe5\x50\x5a\x7f\x23\x00\x00\x80\x24\x02\ \x00\x00\x80\x24\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\ \x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\ \x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\ \x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\ \x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\ \x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\ \x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\ \x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\ \x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\ \x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\ \x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\ \x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\ \x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\ \x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\ \x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\ \x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\ \x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\ \x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\ \x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\ \x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\ \x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\ \x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\ \x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\ \x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\ \x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\ \x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\ \x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\ \x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\ \x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\ \x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\ \x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\ \x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\ \x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\ \x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x10\xc3\x1b\x59\x07\xb4\ \x34\xfb\x58\x03\x00\xd2\x45\x00\x20\x86\xdf\x64\x1d\xf0\x9e\x29\ \xe6\x63\x0f\x00\x48\x16\x01\x80\x18\x7e\x9d\x75\xc0\xce\xdb\xf1\ \x57\x17\x00\xb2\xe0\x55\x14\x75\xe7\x9c\x5b\x2a\xe9\xf9\xfe\xfe\ \xfe\x31\x5b\x99\xc6\x8f\xe4\x0c\x00\x00\x64\x41\x00\x20\x96\x33\ \xfa\xfb\x1b\x2f\x3d\xad\xc1\xe7\x1e\x00\x90\x24\x02\x00\x51\x38\ \xe7\x6e\x96\x34\xaf\xaf\xbf\xef\xe8\xfd\xaa\x3a\x76\x66\x35\xc0\ \x46\x00\x90\x16\x02\x00\x31\x9d\x2a\xe9\x91\xde\xfe\x9f\x77\x9b\ \x5a\xd1\x9c\x33\xf8\xe9\x1f\x00\x7c\x20\x00\x10\x8d\x73\x6e\xa5\ \xa4\xbd\x24\x9d\x29\x69\xcd\x3b\xfd\xff\x5a\x9a\xa4\x6f\x9d\xd2\ \xa0\x5f\xcc\x69\xd2\xf0\xa1\x5c\xfb\x07\x00\x1f\xf8\x71\x0a\x51\ \x39\xe7\xba\x24\x5d\x6c\x66\xf3\x25\x1d\x24\x69\x57\x49\xbb\x4e\ \x9d\x64\x53\x77\xdd\xbe\xa2\x5d\xb6\xaf\xe8\xa0\xf7\x55\xb4\xcd\ \x58\x0e\xfc\x00\xe0\x13\x01\x80\x5c\x70\xce\x3d\x2d\x69\xce\x9b\ \xff\xfd\xa1\x01\x2e\xe2\x3a\x00\x50\x7a\x5c\x02\x00\x00\x20\x41\ \x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\ \x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\ \x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\ \x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\ \x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\ \xa8\x21\xf6\x02\x28\x06\x33\x6b\x96\x34\x53\xd2\x01\x92\x26\x48\ \x1a\xdb\xf3\x6b\x8c\xa4\xc6\x88\xab\xf5\x5a\x63\x83\x34\x66\x2b\ \xd3\xd8\xad\x4c\x63\x87\x9b\x26\x8c\x32\x7d\x60\x97\x8a\x66\xee\ \x5c\x51\x73\x21\xbe\x02\x00\xf0\x87\x00\xc0\x3b\x32\xb3\x8a\xa4\ \x23\x25\x1d\x2d\xe9\x40\x49\x83\xe3\x6e\x94\x4d\x47\xa7\xb4\x64\ \xb9\xd3\x92\xe5\xee\xcd\xff\xed\xf2\x79\xd2\xe0\x56\xe9\xc0\xf7\ \x56\x75\xd4\xfe\x15\x1d\xb9\x4f\x55\x15\xce\x8b\x01\x48\x00\x2f\ \x75\x78\x5b\x66\x76\x88\xa4\xdf\x48\xba\x45\xdd\x01\x50\xe8\x83\ \xff\xa6\xbc\xf6\xba\x34\xef\x81\x2e\x7d\xe4\x9c\x0e\x4d\xff\xe4\ \x5a\xdd\xf3\x70\x2d\xf6\x4a\x00\x10\x1c\x01\x80\x7f\x60\x66\xd3\ \xcc\xec\x01\x49\x0b\x24\x4d\x8b\xbc\x4e\xdd\x2d\x7e\xc6\xe9\xb0\ \xb3\xd6\x69\xff\xd3\xd7\x69\xf1\x33\x6e\xf3\xbf\x01\x00\x0a\x8a\ \x00\xc0\x9b\xcc\xec\x08\x49\x8f\x48\xda\x37\xf6\x2e\xb1\x3d\xf8\ \x78\x4d\xbb\x9f\xb2\x56\xb7\x3d\xd4\x15\x7b\x15\x00\x08\x82\x00\ \x80\xac\xdb\xd7\x25\xdd\x2a\x69\x60\xec\x7d\xf2\x62\xf5\x1a\xe9\ \xe8\xaf\x77\xe8\xfc\x1b\x3a\xe5\x38\x19\x00\xa0\x64\x08\x00\x48\ \xd2\x5c\x49\xe7\x49\xb2\xd8\x8b\xe4\x8d\x73\xd2\xb9\xd7\x77\xea\ \x94\x4b\x3a\x62\xaf\x02\x00\x5e\x11\x00\x89\x33\xb3\x33\x24\x9d\ \x18\x7b\x8f\xbc\xbb\x6e\x41\x97\x2e\xbb\xa5\x33\xf6\x1a\x00\xe0\ \x0d\x01\x90\x30\x33\x3b\x48\xd2\xc5\xb1\xf7\x28\x8a\x33\xaf\xee\ \xd4\xc2\x45\xbc\x43\x00\x40\x39\x10\x00\x89\x32\xb3\xf1\x92\x6e\ \x16\x7f\x07\x7a\xad\x56\x93\x66\x9f\xb7\x4e\x4b\x57\x70\x43\x00\ \x80\xe2\xe3\xc5\x3f\x5d\x17\x48\x1a\x12\x7b\x89\xa2\x79\x75\xb5\ \xf4\xf5\xef\x73\x29\x00\x40\xf1\x11\x00\x09\x32\xb3\x1d\x24\x7d\ \x2c\xf6\x1e\x45\xf5\xe3\xff\xec\xd2\x13\x4f\x73\x16\x00\x40\xb1\ \x11\x00\x69\xfa\x96\xf8\x77\xdf\x6f\xb5\x9a\x74\xd6\x35\xbc\x2b\ \x00\x40\xb1\x71\x10\x48\x8c\x99\xb5\x49\x3a\x28\xf6\x1e\x45\xb7\ \x70\x51\x4d\x4f\x3d\xc7\x59\x00\x00\xc5\x45\x00\xa4\x67\x56\xec\ \x05\xca\xe2\x8e\x5f\xf0\x94\x40\x00\xc5\x45\x00\xa4\x87\x00\xf0\ \xe4\xce\x5f\xf2\x96\x40\x00\xc5\x45\x00\x24\xc4\xcc\x86\x49\xda\ \x2b\xf6\x1e\x65\xf1\xc8\xef\x6a\x5a\xfe\x32\x97\x01\x00\x14\x53\ \x43\xec\x05\x50\x57\x33\x24\x55\x7d\x0c\xb2\x69\xfb\x4a\x07\x9f\ \x26\x9b\x3c\x5d\x6a\x19\xe4\x63\x64\xaf\x55\xd6\xae\xd3\x16\x8f\ \xfc\xb6\xcf\xbf\xcf\x75\xbc\xa1\xce\x95\x4f\xea\xf5\x27\x6e\x55\ \xc7\xb2\xc7\x32\xef\x51\xab\x49\x8f\xfe\xde\xe9\x90\xdd\x79\x82\ \x32\x80\xe2\x21\x00\xd2\x32\xd6\xc7\x10\x3b\xe8\x33\xb2\xe3\xbf\ \x2d\x59\x9c\x03\x5f\xad\x55\xea\xda\x6a\x84\x1a\x5e\x7b\xbd\x4f\ \xbf\xcf\x9a\x06\xaa\x69\xe0\x70\x35\x4d\xdc\x5d\xab\x7e\x35\x47\ \x6f\x2c\xbe\x35\xf3\x2e\x2f\xfc\x95\x33\x00\x00\x8a\x89\x4b\x00\ \x69\xc9\x1e\x00\xa3\x26\xcb\x8e\xbb\x20\xda\xc1\x7f\xbd\xae\x81\ \x2d\x19\x7e\xb7\x69\xd0\x6e\x27\xab\xba\xc5\xf8\xcc\x7b\x10\x00\ \x00\x8a\x8a\x00\x48\x4b\xe6\x00\xb0\xe9\x07\x48\x8d\x59\x0e\xbe\ \x7e\xd4\x9a\x1a\xb3\x0d\xa8\x34\xaa\x69\xeb\xf7\x65\xde\x63\x39\ \x01\x00\xa0\xa0\x08\x80\xb4\x0c\xcf\x3c\x61\xdc\xf6\x1e\xd6\xc8\ \xce\x35\x66\xbf\x7a\x55\xdd\x62\xeb\xcc\x33\x5e\x7a\x25\xf3\x08\ \x00\x88\x82\x00\x48\x4b\xf6\x7f\xdf\x95\x9c\xfc\x95\xf1\x72\x09\ \x22\xfb\xd7\x52\xe3\x04\x00\x80\x82\xca\xc9\xab\x39\x00\x00\xa8\ \x27\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\ \x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\ \x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\ \x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\ \x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\ \x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\ \x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\ \x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\ \x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\ \x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\ \x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\ \x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\ \x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\ \x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\ \x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\ \x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\ \x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\ \x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\ \x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\ \x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\ \x00\x00\x09\x22\x00\x00\x00\x48\x50\x43\xec\x05\x42\x31\xb3\x61\ \x92\x66\x48\x1a\xbb\xc1\xaf\xe1\x4a\x3b\x7a\x76\x8f\xbd\x40\xd9\ \x3c\xfc\xdb\x9a\x66\x9f\xd7\x11\x7b\x8d\x68\x2a\x26\x0d\x1f\x2a\ \x8d\x19\x6e\x1a\xdb\xf3\x6b\x46\xbb\x69\xd8\x10\x8b\xbd\x1a\x80\ \xcd\x28\x55\x00\x98\x59\x9b\xa4\x59\x3d\xbf\xf6\x92\x54\x8d\xbb\ \x11\xca\x6e\xc9\x72\xa7\x25\xcb\xbb\x62\xaf\x91\x2b\xd5\x8a\xb4\ \xd7\x8e\x15\x1d\xb6\x67\x45\xb3\xf6\xac\xaa\x6d\x1c\x31\x00\xe4\ \x51\x29\x7e\x1a\x36\xb3\x1d\xcc\xec\x5e\x49\x4f\x49\xba\x54\xd2\ \xbe\xe2\xe0\x0f\x44\xd1\x55\x93\x1e\x7c\xbc\xa6\x2f\xcd\xe9\xd4\ \xb6\x1f\x5d\xab\x43\xce\x5c\xa7\x27\x9e\x76\xb1\xd7\x02\xf0\x16\ \x85\x0e\x00\x33\x1b\x6f\x66\x3f\x94\xf4\xb8\xa4\x83\x22\xaf\x03\ \xe0\x6d\x2c\x5c\x54\xd3\x4e\x9f\x5a\xab\x4f\x5c\xd4\xa1\xa5\x2b\ \x08\x01\x20\x2f\x0a\x1b\x00\x66\x76\x90\xa4\xc5\x92\x8e\x57\x81\ \xbf\x0e\x20\x05\xb5\x9a\x74\xc3\x7d\x5d\xda\xe1\x84\xb5\x5a\xb8\ \xa8\x16\x7b\x1d\x00\x2a\xe8\x81\xd3\xcc\xce\x90\xb4\x40\xd2\x90\ \xd8\xbb\x00\xe8\xbd\x57\x57\x4b\x87\x9d\xb5\x4e\x97\xdd\xd2\x19\ \x7b\x15\x20\x79\x85\x0a\x00\xeb\x76\xad\xba\xaf\xf3\x17\x6a\x77\ \x00\xdd\x6a\x35\xe9\x4b\x73\x3a\x75\xf2\xc5\x1d\x72\x5c\x11\x00\ \xa2\x29\xda\x41\xf4\x6b\x92\x4e\x8c\xbd\x04\x80\xec\xae\x5b\xd0\ \xa5\x0b\x7e\xc4\x99\x00\x20\x96\xc2\xbc\x0d\xd0\xcc\x8e\x90\x74\ \x6e\xec\x3d\x92\x67\xf9\x78\x4b\x97\x6b\xa8\xaa\xd6\xd2\x9c\x6d\ \x46\x53\xa3\xa7\x6d\xd0\x5f\xe7\xfd\xa0\x53\xd3\x26\x9b\x8e\xd8\ \x87\x37\xed\x00\xf5\x56\x88\x00\x30\xb3\x69\x92\x7e\x24\x29\x1f\ \x47\x9f\x94\x8d\x9c\x14\x7b\x03\x49\xd2\x9a\x71\x23\xb4\x66\xdc\ \x88\x4c\x33\xdc\xe0\x15\xd2\xff\xf2\xb4\x10\xfa\xc5\x39\xe9\xf8\ \x0b\x3b\xb4\xed\xf8\x8a\xa6\x4d\xe6\xdb\x1b\xa8\xa7\xa2\x5c\x02\ \xb8\x52\xd2\xc0\xd8\x4b\x40\xb2\x6d\x66\xc4\x5e\xc1\x9b\x32\x7d\ \x2d\x45\xb6\x7a\x8d\xf4\x3f\x2e\x4f\xf7\x69\x8a\x40\x2c\xb9\x0f\ \x00\x33\x3b\x44\xdd\x0f\xf6\x41\x6c\xa3\x26\x4b\x83\xb6\x8c\xbd\ \x85\x3f\x83\xb6\xec\xfe\x9a\x10\xdd\x83\x8f\xd7\x74\xcf\xc3\xbc\ \x3d\x10\xa8\xa7\x5c\x07\x80\x99\x55\x24\x7d\x33\xf6\x1e\xe8\x66\ \x7b\xcf\x8e\xbd\x82\x77\x65\xfc\x9a\x8a\xea\x5f\xe6\x76\xa8\x46\ \x03\x00\x75\x93\xeb\x00\x90\x74\xa4\xa4\x69\xb1\x97\x80\xa4\x09\ \xd3\x64\x87\x7f\x29\xf6\x16\xde\xd9\xe1\x5f\x92\x26\xf0\x57\x2c\ \x0f\x16\x3f\xe3\x34\xff\x21\x3e\x57\x01\xa8\x97\xbc\x07\xc0\xd1\ \xb1\x17\x80\xa4\x6a\xa3\x2a\xa7\x5e\x23\x35\x34\xc5\xde\xc4\xbf\ \x86\xa6\xee\xaf\xad\xca\x3b\x02\xf2\xe0\xd6\xfb\x39\x05\x00\xd4\ \x4b\x6e\x03\xc0\xcc\x9a\x25\x1d\x18\x7b\x8f\xe4\x4d\x98\xa6\xca\ \x85\xf7\x4b\x93\xa7\xc7\xde\x24\x9c\xc9\xd3\xbb\xbf\x46\xce\x04\ \x44\x77\xdf\xff\xee\xd2\x5a\xee\x07\x04\xea\x22\xb7\x01\x20\x69\ \xa6\xa4\xc1\xb1\x97\x48\xd6\xa8\xc9\xb2\xa3\xce\x56\xe5\xa2\x87\ \xca\x7d\xf0\x5f\x6f\xf2\x74\x55\x2e\x7a\x48\x76\xd4\xd9\xdc\x18\ \x18\xd1\x6b\xaf\x4b\x3f\xff\x35\x67\x01\x80\x7a\xc8\xf3\x73\x00\ \x0e\xf0\x36\x69\xd4\x64\xd9\xf4\x03\xa4\x71\xdb\x4b\x55\x1e\x38\ \xb2\x49\x23\x27\x75\xbf\x3d\xae\x4c\x77\xfb\xf7\x56\x43\x93\xec\ \xe8\xb3\x65\x47\x9f\x2d\xad\x7a\x59\xee\xe9\xc7\xa4\x15\xcf\x2a\ \x95\xe7\xd5\xb6\xfe\xe9\x2f\xb2\x8e\x3e\x5e\x83\x77\x5d\xea\xfa\ \xdb\x12\xad\x5b\xba\x48\x5d\xaf\x2e\xf3\xb2\xc7\x7f\x3d\x5a\xd3\ \xc1\xbb\xe5\xf9\x67\x13\xa0\x1c\xf2\x1c\x00\x13\x7c\x0c\xb1\x83\ \x3e\x23\x3b\xee\x02\xa9\xb1\xc5\xc7\x38\xa4\x62\xd0\x96\xb2\x1d\ \x67\xc6\xde\xa2\xae\x2a\x13\x96\xa8\xe5\xb9\x15\xfd\xfa\xbd\xae\ \x6b\x9d\x56\x2f\x9a\xab\x37\x16\xcf\xcf\xbc\xc7\x92\xe5\x69\x04\ \x17\x10\x5b\x9e\x33\x7b\x6c\xd6\x01\x36\x6d\x5f\xd9\xf1\xdf\xe6\ \xe0\x0f\xf4\x42\xe7\xd0\xfe\x3f\x6b\xcb\xaa\x4d\x1a\xb4\xc7\x67\ \xd5\x38\x36\xfb\xc3\x95\x96\xad\x24\x00\x80\x7a\x28\x75\x00\xe8\ \xe0\xd3\x72\xf3\xec\x7a\x20\xef\x6a\xcd\x59\xdf\xe5\x61\x6a\xdd\ \xe1\xa8\xcc\x7b\x2c\x7b\x89\x00\x00\xea\x21\xcf\x01\x30\x26\xeb\ \x00\x4b\xe1\xe6\x35\xc0\x93\x5a\x73\xf6\xb7\x42\x36\x0c\xdf\x36\ \xf3\x8c\xe7\x09\x00\xa0\x2e\xf2\x1c\x00\xd9\x5f\x8d\x9a\xf9\xf8\ \x00\xa0\xb7\x5c\x25\xfb\xcb\x81\x79\xb8\xdc\xd6\xc1\x27\x04\x03\ \x75\x91\xe7\x00\x00\x00\x00\x81\x10\x00\x00\x00\x24\x88\x00\x00\ \x00\x94\x8e\x53\xf6\x7b\x49\x3a\xfc\x3c\x93\x2a\xb7\x1f\x70\x41\ \x00\x00\x00\xca\xa5\x4b\x52\xc6\x7b\x49\x56\xac\x96\x9e\x7f\xcd\ \xcb\x36\x2f\x78\x99\x12\x00\x01\x00\x00\x28\x95\xda\x1b\xd9\x7f\ \xfa\xff\xd5\x52\x0f\x8b\x48\x6b\x9d\x73\x2f\x7a\x99\x14\x00\x01\ \x00\x00\x28\x15\xb7\xc6\x43\x00\x2c\xf1\xb0\x88\xf4\x9c\x97\x29\ \x81\x10\x00\x00\x80\x52\x71\xaf\x66\xbb\x78\xff\xd2\xeb\xd2\xfc\ \xdf\x79\x59\xc5\xcf\x79\x84\x40\x08\x00\x00\x40\xa9\x74\x2d\xef\ \xff\x7d\x77\x4e\xd2\x49\x77\x49\x2f\xac\xf2\xb2\x0a\x01\x00\x00\ \x40\x3d\xb8\xd7\x9d\x6a\xab\xfa\x7f\x09\xe0\xca\x45\xd2\x7d\x7f\ \xf4\xb6\xce\x43\xde\x26\x05\x90\xe7\x4f\x03\x04\x00\xa0\x4f\x3a\ \x9f\xef\xdf\x4f\xff\xab\xd6\x49\xe7\xde\x2f\xcd\x7d\xd4\xdb\x2a\ \x5d\x92\xee\xf0\x36\x2d\x00\x02\x00\x00\x50\x0a\x6e\xad\x53\xe7\ \x9f\xfb\xf6\xfe\xbf\x75\x5d\xd2\x3d\x4f\x4a\x67\xfe\xa7\xb4\xcc\ \xcf\xdb\xfe\xd6\x7b\xd0\x39\xb7\xd2\xeb\x44\xcf\x08\x00\x00\x49\ \x59\xba\xc2\xe9\xd7\x7f\xa8\xe9\x37\x7f\x72\x5a\xb3\x36\xf6\x36\ \xf0\xa9\x6b\x65\x97\x6a\xbd\xb8\x76\xdf\x59\x93\x9e\x79\x59\xfa\ \xfd\x8b\xd2\xd3\x2f\x4b\x5d\x61\x3e\x7f\x6a\x7e\x90\xa9\x1e\x11\ \x00\x00\x92\x70\xf3\xcf\xbb\xf4\xc5\x39\x9d\x7c\xda\x20\xea\xa1\ \x4b\xd2\xed\xb1\x97\xd8\x1c\x02\x00\x40\xa9\xad\x7c\xc5\xe9\xb4\ \xcb\x3a\x35\xef\x81\xdc\x3e\x91\x15\xe5\xf3\xef\xce\xb9\xe7\x63\ \x2f\xb1\x39\x04\x00\x80\xd2\xea\xaa\x49\xb3\xce\xea\xd0\x23\xbf\ \xf3\xf3\x50\x77\xa0\x17\x5e\x95\xf4\xf5\xd8\x4b\xf4\x06\x6f\x03\ \x04\x50\x5a\x97\xfd\x47\x27\x07\x7f\xd4\xdb\x37\x9c\x73\x2b\x62\ \x2f\xd1\x1b\x04\x00\x80\x52\x7a\x7a\x99\xd3\x39\xd7\x67\xfc\x44\ \x18\xa0\x6f\x9e\x95\x74\x79\xec\x25\x7a\x8b\x00\x00\x50\x4a\x0b\ \x17\xd5\xb4\x66\x5d\xec\x2d\x90\x90\x2e\x49\x27\x39\xe7\x0a\xf3\ \xde\x12\x02\x00\x40\x29\x3d\xfa\x7b\x4e\xfd\xa3\xae\x3e\xe7\x9c\ \xfb\x59\xec\x25\xfa\x82\x00\x00\x50\x4a\xff\x4d\x00\xa0\x7e\xae\ \x70\xce\x5d\x15\x7b\x89\xbe\xe2\x5d\x00\x00\x72\xc7\xf6\x79\xc3\ \xb2\xce\xf8\xdd\xb3\xf6\x5b\x49\x53\x3d\xac\x03\x6c\xca\x42\x49\ \x5f\x88\xbd\x44\x7f\x70\x06\x00\x40\x59\xfd\x77\xec\x05\x50\x7a\ \xb7\x48\x3a\xca\x39\x57\xc8\x87\x4c\x10\x00\x00\xca\x8a\x00\x40\ \x28\x35\x49\x67\x39\xe7\x3e\xe2\x9c\x7b\x3d\xf6\x32\xfd\xc5\x25\ \x00\x00\x65\xb5\x50\xd2\x1a\x49\x2d\xb1\x17\x41\xa9\xbc\x2c\x69\ \xb6\x73\xee\x7f\xc6\x5e\x24\x2b\xce\x00\x00\x28\x25\xe7\xdc\xd3\ \x2a\xc8\x13\xd9\x50\x08\x4e\xd2\x4d\x92\x76\x2a\xc3\xc1\x5f\x22\ \x00\x00\x94\xdb\x65\x92\x1e\x89\xbd\x04\x0a\x6f\xa1\xa4\x19\xce\ \xb9\x8f\x3a\xe7\xfe\x1c\x7b\x19\x5f\x08\x00\x00\xa5\xd5\x73\x73\ \xd6\x61\x92\xe6\xc5\xde\x05\x85\xf3\xba\xa4\xbb\x24\xed\xeb\x9c\ \x3b\xd8\x39\xf7\x78\xec\x85\x7c\xe3\x1e\x00\x00\xa5\xe6\x9c\x5b\ \x29\xe9\x18\x33\x3b\x56\xdd\x67\x04\xc6\x44\x5e\x09\xf9\xf5\x67\ \x49\xf7\x48\x5a\x20\xe9\x7e\xe7\xdc\x9a\xc8\xfb\x04\x45\x00\x00\ \x48\x82\x73\xee\x66\x49\x37\x9b\xd9\x78\x49\x3b\x4b\x7a\x8f\xa4\ \x01\x71\xb7\x42\x24\x5d\x92\x5e\x92\xb4\x42\xd2\xf2\xf5\xff\xe9\ \x9c\x7b\x21\xea\x56\x75\x46\x00\x00\x48\x8a\x73\x6e\xa9\xa4\xa5\ \x92\xee\x88\xbd\x0b\x10\x13\xf7\x00\x00\x00\x90\x20\x02\x00\x00\ \x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\ \x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\ \x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\ \x00\x24\x28\xcf\x01\xd0\x91\x79\xc2\xda\xd5\x1e\xd6\x00\xd2\x60\ \xb5\x5a\xe6\x19\xae\xc3\xcb\x87\xa7\x65\xff\xde\x07\xb0\x59\x79\ \x0e\x80\xe7\xb3\x0e\x70\xcf\x94\xee\xe3\x9b\x81\x60\x2a\x6b\xb3\ \x1f\x77\x3b\x57\x3e\xe9\x61\x93\xec\xdf\xfb\x00\x36\x2f\xcf\x01\ \xb0\x2c\xf3\x84\x7b\xe7\x48\xce\x79\x58\x05\x28\xbf\xca\xda\x75\ \x19\x27\x38\xbd\xfe\xc4\xad\x3e\x56\xc9\xfe\xbd\x0f\x60\xb3\x4a\ \x1d\x00\x6e\xf1\x83\x72\x37\x9c\x29\xf9\x39\x2d\x09\x94\x5a\xc3\ \x2b\xfd\xbf\x64\xe6\xba\xd6\x69\xd5\xaf\xae\x54\xc7\xb2\xc7\x7c\ \xac\x42\x00\x00\x75\xd0\x10\x7b\x81\x4d\x58\xe2\x63\x88\x5b\x78\ \xb5\xdc\x63\xf7\xc9\xa6\x1f\x20\x8d\xdb\x5e\xaa\x56\x7d\x8c\x2d\ \xaf\x91\x93\x64\xdb\xcc\x90\x06\x6d\x19\x7b\x93\xb8\x56\xbd\x2c\ \xf7\xf4\x63\xd2\x8a\x67\x93\x39\x8b\x54\xfb\xd3\x5f\xf4\x46\x47\ \x57\xdf\x7e\x93\xeb\x52\xd7\xdf\x96\x68\xdd\xd2\x45\xea\x7a\xd5\ \xdb\x71\xdb\xcb\xf7\x3e\x80\x4d\x33\x97\xd3\x17\x37\x33\x3b\x58\ \xd2\x3d\xb1\xf7\x48\xd6\xa8\xc9\xb2\xbd\x67\xcb\x0e\xff\x92\xd4\ \xd0\x14\x7b\x9b\xfa\xe8\x5c\x27\x77\xfb\x25\x72\xbf\xb8\x49\x5a\ \xfe\x4c\xec\x6d\x52\x76\x88\x73\xee\xde\xd8\x4b\x00\x65\x97\xe7\ \x00\x68\x96\xf4\xa2\xa4\xc1\xb1\x77\x49\xda\x84\x69\xaa\x9c\x7a\ \x8d\x34\xdd\xa1\xf0\x08\x00\x00\x05\xfd\x49\x44\x41\x54\x79\x7a\ \xec\x4d\xc2\x7a\xe6\x71\xd5\xae\x3a\x45\x5a\xb2\x38\xf6\x26\xa9\ \x7b\x4d\xd2\x08\xe7\xdc\xda\xd8\x8b\x00\x65\x97\xdb\x7b\x00\x7a\ \x5e\x00\xee\x8b\xbd\x47\xf2\x96\x2c\x56\xed\xab\xfb\x4b\x65\x7e\ \x47\xc5\x33\x8f\x77\x7f\x8d\x1c\xfc\xf3\xe0\x3e\x0e\xfe\x40\x7d\ \xe4\x36\x00\x7a\xcc\x8b\xbd\x00\x24\x75\x75\x74\xff\x74\xdc\x99\ \xf5\x2e\xf1\x1c\xea\x5c\xd7\xfd\xb5\x75\xf1\xd6\xf3\x9c\xe0\x7b\ \x1e\xa8\x93\xbc\x07\xc0\x7c\x49\xfc\x58\x96\x07\x4b\x16\xcb\xdd\ \x7e\x49\xec\x2d\xbc\x73\xb7\x5f\xc2\x4f\xfe\xf9\xb1\x58\xdd\xdf\ \xf3\x00\xea\x20\xd7\x01\xe0\x9c\xab\x49\x3a\x2b\xf6\x1e\xe8\xe6\ \x7e\x71\x53\xec\x15\xbc\x2b\xe3\xd7\x54\x60\x67\xf5\x7c\xcf\x03\ \xa8\x83\x5c\x07\x80\x24\x39\xe7\xee\x91\xf4\x60\xec\x3d\xa0\xee\ \x3b\xe3\x57\xbd\x1c\x7b\x0b\x7f\x56\xbd\xcc\xdd\xfe\xf9\xf1\x60\ \xcf\xf7\x3a\x80\x3a\xc9\x7d\x00\xf4\xf8\xac\x24\x1e\xec\x9f\x03\ \xee\x69\x2f\x0f\x7a\xc9\x85\x32\x7d\x2d\x05\xb7\x5a\xdd\xdf\xe3\ \x00\xea\x28\xcf\x0f\x02\x7a\x93\x73\x6e\xb1\x99\x7d\x5c\xd2\xad\ \x92\x2c\xf6\x3e\x49\x5b\xf1\x6c\xec\x0d\x24\x49\x2d\x7f\x79\x51\ \x03\x9e\x7d\x21\xd3\x8c\x35\x8b\x7f\x45\x55\xc6\xe7\x24\x7d\xdc\ \x39\xc7\x8d\x18\x40\x9d\x15\x22\x00\x24\xc9\x39\x77\x9b\x99\x9d\ \x2b\xe9\xbc\xd8\xbb\x24\x2d\x27\xcf\x8d\xb0\xce\x2e\x55\xd6\x64\ \x7b\xb7\x98\xad\xe3\xce\xff\x1c\x38\xd7\x39\x77\x5b\xec\x25\x80\ \x14\x15\xe5\x12\xc0\x7a\x17\x48\xba\x2e\xf6\x12\x00\xbc\xb8\x4e\ \xdd\xdf\xd3\x00\x22\x28\x54\x00\xb8\x6e\x27\x49\xfa\xa2\x24\xee\ \x16\x06\x8a\xa9\x26\xe9\x8b\xce\xb9\x93\x5c\x5e\x1f\x45\x0a\x24\ \xa0\x50\x01\xb0\x9e\x73\xee\x32\x49\x87\x4a\x7a\x35\xf6\x2e\x00\ \xfa\xe4\x55\x49\x87\xf6\x7c\x0f\x03\x88\xa8\x90\x01\x20\x49\xce\ \xb9\x85\x92\xa6\x49\xba\x41\x9c\x0d\x00\xf2\xae\xa6\xee\xef\xd5\ \x69\x3d\xdf\xbb\x00\x22\x2b\x6c\x00\x48\x92\x73\x6e\xa9\x73\xee\ \x04\x49\xd3\x25\xf1\xa2\x02\xe4\xd3\x42\x49\xd3\x9d\x73\x27\x38\ \xe7\x96\xc6\x5e\x06\x40\xb7\xc2\xbc\x0b\x60\x53\x9c\x73\x4f\x48\ \x3a\xd8\xcc\xda\x24\xcd\xea\xf9\xb5\x97\xa4\x6a\xd4\xc5\x80\x34\ \x75\x49\xfa\xa5\xa4\xbb\x24\xdd\xe5\x9c\xfb\x63\xe4\x7d\x00\xbc\ \x8d\x52\x04\xc0\x7a\x3d\x2f\x34\x97\x49\xba\xcc\xcc\x86\x49\x9a\ \x21\x69\xec\x06\xbf\x86\xab\xe0\x67\x3d\x32\xda\x5d\xd2\x84\xd8\ \x4b\x94\xcc\x12\x49\x0f\xc7\x5e\x22\xa2\x9a\xa4\x95\x92\x96\x6d\ \xf0\xeb\x31\xe7\xdc\x5f\xa3\x6e\x05\x60\xb3\x4a\x15\x00\x1b\xea\ \x79\x01\xfa\xaf\xd8\x7b\xe4\x89\x99\xdd\x2c\x02\xc0\xb7\x87\x9d\ \x73\xc7\xc6\x5e\x02\x00\xfa\x2a\xe5\x9f\x86\x01\x00\x48\x16\x01\ \x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\ \x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\ \x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\ \x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\ \x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\ \x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\ \x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\ \x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\ \x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\ \x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\ \x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\ \x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\ \x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\ \x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\ \x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\ \x88\x00\x00\x00\x20\x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\ \x10\x01\x00\x00\x40\x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\ \x20\x02\x00\x00\x80\x04\x11\x00\x00\x00\x24\x88\x00\x00\x00\x20\ \x41\x04\x00\x00\x00\x09\x22\x00\x00\x00\x48\x10\x01\x00\x00\x40\ \x82\x08\x00\x00\x00\x12\x44\x00\x00\x00\x90\x20\x02\x00\x00\x80\ \x04\x11\x00\x00\x00\x24\x88\x00\x48\x4b\x2d\xfb\x84\xec\x23\xbc\ \x70\xce\xc3\x10\x2f\x5f\x4b\x4e\xfe\x81\x00\x40\xdf\x10\x00\x69\ \x59\x99\x79\xc2\x5f\x7e\xef\x61\x8d\xec\xac\xa3\x33\xf3\x8c\xae\ \xbf\x3d\xe7\x61\x13\xbd\xe4\x63\x08\x00\xd4\x1b\x01\x90\x96\x65\ \x59\x07\xb8\xc7\x7f\x26\x75\xac\xf1\xb1\x4b\x26\x95\x75\x1d\xd9\ \x06\xd4\x3a\xb4\xee\xb9\x45\x3e\x56\x79\xc1\xc7\x10\x00\xa8\x37\ \x02\x20\x2d\x99\x03\x40\xcb\x9f\x91\xbb\xf1\x6b\x9e\x4e\xc1\xf7\ \x5f\x75\x75\x96\x08\x71\x5a\xf5\xc8\x5c\x75\xfd\x6d\xa9\x8f\x55\ \x08\x00\x00\x85\xd4\x10\x7b\x01\xd4\x55\xf6\x00\x90\xe4\x16\x5e\ \x2d\x2d\xfd\x9d\x74\xf0\x69\xb2\xc9\xd3\xa5\x96\x41\x3e\xc6\xf6\ \x5a\x65\xed\x3a\x55\x5f\x7a\x51\x7d\x4d\x10\xd7\xf1\x86\x3a\x57\ \x3e\xa9\xd7\x9f\xb8\x55\x1d\xcb\x1e\xf3\xb5\x0e\x01\x00\xa0\x90\ \xcc\x45\xfe\x49\x0e\xf5\x63\x66\xc3\x24\xad\x90\x54\x8d\xbd\x4b\ \x49\xd4\x24\x8d\x75\xce\x2d\x8f\xbd\x08\x00\xf4\x15\x97\x00\x12\ \xe2\x9c\xfb\xab\xa4\x5f\xc6\xde\xa3\x44\x1e\xe1\xe0\x0f\xa0\xa8\ \x08\x80\xf4\xdc\x15\x7b\x81\x12\xb9\x23\xf6\x02\x00\xd0\x5f\x5c\ \x02\x48\x8c\x99\xb5\x49\x7a\x2a\xf6\x1e\x25\xb1\xad\x73\x8e\x7f\ \x96\x00\x0a\x89\x33\x00\x89\x71\xce\xfd\x51\xd2\xc2\xd8\x7b\x94\ \xc0\x42\x0e\xfe\x00\x8a\x8c\x33\x00\x09\x32\xb3\x1d\x24\x3d\x2e\ \x02\xb0\xbf\x6a\x92\xa6\x3b\xe7\x9e\x88\xbd\x08\x00\xf4\x17\x07\ \x80\x04\xf5\x1c\xb8\x7e\x1c\x7b\x8f\x02\xfb\x31\x07\x7f\x00\x45\ \xc7\x19\x80\x44\x99\xd9\x78\x49\x8b\x25\x0d\x89\xbd\x4b\xc1\xbc\ \x2a\x69\x9a\x73\xce\xcb\x53\x84\x00\x20\x16\xce\x00\x24\xaa\xe7\ \x00\x76\xac\xf8\x30\x9b\xbe\xa8\x49\x3a\x96\x83\x3f\x80\x32\x20\ \x00\x12\xe6\x9c\x5b\x28\xe9\xcb\xb1\xf7\x28\x90\x2f\xf7\xfc\x33\ \x03\x80\xc2\xe3\x12\x00\x64\x66\xd7\x4a\x3a\x31\xf6\x1e\x39\x77\ \x9d\x73\xee\xa4\xd8\x4b\x00\x80\x2f\x9c\x01\x80\x24\x9d\x2c\xe9\ \x1c\xa9\xcf\x8f\xd7\x4f\x81\x53\xf7\x3f\x9b\x93\x63\x2f\x02\x00\ \x3e\x71\x06\x00\x6f\x32\xb3\x23\x24\xfd\x48\xd2\xc0\xd8\xbb\xe4\ \xc4\x6a\x49\x1f\x77\xce\xdd\x16\x7b\x11\x00\xf0\x8d\x33\x00\x78\ \x53\xcf\x81\x6e\x37\x49\x0f\xc6\xde\x25\x07\x1e\x94\xb4\x1b\x07\ \x7f\x00\x65\x45\x00\xe0\x1f\x38\xe7\x16\x3b\xe7\xf6\x93\x74\xa8\ \xba\xdf\x26\x98\x9a\xc5\x92\x0e\x75\xce\xed\xe7\x9c\x4b\xf1\xeb\ \x07\x90\x08\x2e\x01\xe0\x1d\x99\x59\x45\xd2\x91\x92\x8e\x96\x74\ \xa0\xa4\xc1\x71\x37\x0a\xe6\x35\x49\xf7\x49\x9a\x27\x69\xbe\x73\ \x8e\xb7\x46\x02\x28\x3d\x02\x00\xbd\x62\x66\xcd\x92\x66\x4a\x3a\ \x40\xd2\x04\x49\x63\x7b\x7e\x8d\x91\xd4\x18\x71\xb5\xbe\xe8\x90\ \xf4\xbc\xa4\x65\x3d\xbf\x96\x48\xfa\x99\xa4\x9f\x3b\xe7\xd6\xc6\ \x5c\x0c\x00\xea\xed\xff\x03\xb1\x52\x60\xe5\x58\x52\xba\x01\x00\ \x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x28\xc5\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\ \x01\x95\x2b\x0e\x1b\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xed\xdd\x67\x94\x55\xe5\xdd\x86\xf1\xfb\x9c\xe9\ \x43\xef\x30\x74\x95\x26\x22\x0a\x88\xd2\x41\x11\xc1\x02\x2a\x82\ \x18\x15\x8c\x35\x96\x68\x10\x63\x22\x46\x0d\xb1\xc4\xe8\x6b\x8f\ \x44\x89\x46\xa2\x80\x3d\x8a\x8a\x15\x41\x88\x62\x09\xa2\x08\x88\ \xa8\x88\x80\x20\x7d\x68\xd3\xdb\xfb\x61\xc0\x05\x04\x0c\x33\xb3\ \xcf\xfe\x3f\xe7\x3c\xd7\x6f\xad\xf9\x92\xc8\x73\xee\x77\xbd\x66\ \xce\xc5\xde\xa7\x44\x04\x24\xb6\xc3\x25\xf5\x97\x74\x84\xa4\xb6\ \x92\x5a\x4a\xaa\x2b\xa9\x9a\xa4\x34\xbb\x59\x80\xd3\x8a\x24\xed\ \x94\xb4\x55\xd2\x2a\x49\x5f\x4b\x5a\x22\x69\xae\xa4\x85\x92\x4a\ \xed\xa6\x21\x28\x11\xeb\x01\x40\x0c\xf4\x94\x74\xbe\xa4\xd3\x25\ \x35\x36\xde\x02\x24\x9a\xad\x92\x5e\x91\x34\x55\xd2\xbb\x92\x4a\ \x6c\xe7\xa0\xb2\x08\x00\x24\x8a\x14\x49\xbf\x90\xf4\x3b\x49\x1d\ \x8c\xb7\x00\xbe\x58\x25\xe9\x1e\x49\x8f\x49\xca\x35\xde\x02\xc0\ \x43\xc3\x25\xad\x90\x54\xc6\x0f\x3f\xfc\x98\xfc\x6c\x90\x74\xb1\ \xa4\xa8\x10\x37\xb8\x02\x80\x78\xd6\x42\xd2\xa3\x92\x06\x5b\x0f\ \x01\x20\x49\xfa\x44\xd2\x85\x2a\x7f\xbd\x00\x1c\x97\x64\x3d\x00\ \xa8\xa4\xd3\x24\xbd\x29\xa9\x93\xf5\x10\x00\x3f\x69\xaa\xf2\x00\ \xd8\x29\xe9\x63\xe3\x2d\xf8\x1f\x08\x00\xc4\xa3\x9b\x55\xfe\x37\ \xff\x4c\xeb\x21\x00\xfe\x4b\xb2\xca\xaf\xca\x35\x52\x79\xa4\x97\ \xd9\xce\xc1\x81\x70\x0b\x00\xf1\x24\x2a\xe9\x41\x49\x57\x5a\x0f\ \x01\x70\x50\x5e\x94\x74\xae\xa4\x02\xeb\x21\xf8\x6f\x04\x00\xe2\ \xc9\xfd\x92\xae\xb1\x1e\x01\xa0\x42\xde\x96\x34\x4c\x52\xbe\xf5\ \x10\xec\x8d\x57\x6c\x22\x5e\xdc\x2c\x9e\xfc\x81\x78\x34\x48\xd2\ \x4b\x92\xd2\xad\x87\x60\x6f\x5c\x01\x40\x3c\x38\x45\xd2\xab\xe2\ \xdf\x57\x20\x9e\x71\x25\xc0\x31\xfc\x42\x85\xeb\x5a\x4a\x5a\xa0\ \xf2\x8f\xef\x05\x10\xdf\xde\x94\x74\x86\x88\x00\x27\x70\x0b\x00\ \xae\x9b\x28\x9e\xfc\x81\x44\x31\x58\xd2\x74\x71\x3b\xc0\x09\x04\ \x00\x5c\x36\x52\xd2\xc9\xd6\x23\x00\x04\x6a\x90\x88\x00\x27\x70\ \x0b\x00\xae\x4a\x91\xf4\xad\xca\x3f\xed\x0f\x40\xe2\xe1\x76\x80\ \x31\xae\x00\xc0\x55\xe7\x8b\x27\x7f\x20\x91\x71\x3b\xc0\x18\x57\ \x00\xe0\xa2\x88\xa4\xaf\x24\xb5\xb5\x1e\x02\x20\xe6\xb8\x12\x60\ \x84\x2b\x00\x70\x51\x1f\xf1\xe4\x0f\xf8\x82\x2b\x01\x46\x08\x00\ \xb8\xe8\x7c\xeb\x01\x00\x42\xc5\x0b\x03\x0d\x70\x0b\x00\xae\x89\ \x48\x5a\x2f\xa9\x81\xf5\x10\x00\xa1\xe3\x76\x40\x88\x08\x00\xb8\ \xe6\x48\x49\x0b\x63\x75\x78\x6a\x7a\xa6\x3a\x1e\x33\x50\x4d\x5a\ \xb5\x57\xb5\x9a\x7c\xbc\x00\xb0\x66\xf9\x62\xcd\x7b\x73\x8a\xf5\ \x8c\x3d\x11\x01\x21\x49\xb6\x1e\x00\xec\xa3\x7f\x2c\x0e\x8d\x44\ \x22\x3a\xf1\xec\x6b\x34\xec\xa2\x9b\x55\xad\x46\x9d\x58\x3c\x04\ \x10\x97\xe6\xcf\x7e\xd1\xb5\x00\x18\xac\xf2\xef\x0e\x20\x02\x62\ \x8c\x00\x80\x6b\x3a\x05\x7d\x60\x24\x12\xd1\xc5\x37\x4d\x56\xaf\ \x93\x47\x07\x7d\x34\x80\xd8\x20\x02\x42\xc0\x8b\x00\xe1\x9a\x76\ \x41\x1f\x78\xd2\xa8\xb1\x3c\xf9\x03\xf1\x67\x77\x04\xf0\xc2\xc0\ \x18\x21\x00\xe0\x9a\xd6\x41\x1e\x96\x9e\x51\x5d\x43\x2f\xbc\x29\ \xc8\x23\x01\x84\x87\x08\x88\x21\x02\x00\xae\xa9\x19\xe4\x61\x47\ \x1c\x77\x92\x32\x6b\xd4\x0e\xf2\x48\x00\xe1\x22\x02\x62\x84\x00\ \x80\x4b\x22\x92\xaa\x05\x79\x60\x56\xeb\xc3\x83\x3c\x0e\x80\x0d\ \x3e\x2c\x28\x06\x08\x00\xb8\x24\x45\x52\x52\x90\x07\x66\x64\xd6\ \x08\xf2\x38\x00\x76\x06\x89\x2b\x01\x81\x22\x00\x00\x00\xf1\x82\ \x2b\x01\x01\x22\x00\x00\x00\xf1\x84\x8f\x0d\x0e\x08\x01\x00\x00\ \x88\x37\x44\x40\x00\x08\x00\x00\x40\x3c\x22\x02\xaa\x88\x00\x00\ \x00\xc4\x2b\x22\xa0\x0a\x08\x00\x00\x40\xa0\xa2\xd1\x50\x9f\x5a\ \x78\x77\x40\x25\x11\x00\x00\x80\x40\xdd\x7e\xcf\x23\xca\xac\x56\ \x3d\xcc\x87\xe4\xdd\x01\x95\x40\x00\x00\x00\x02\x75\x4c\x8f\x3e\ \x9a\xfc\xec\xeb\x61\x47\x00\xb7\x03\x2a\x88\x00\x00\x00\x04\x8e\ \x08\x70\x1f\x01\x00\x00\x88\x09\x22\xc0\x6d\x04\x00\x00\x20\x66\ \x8c\x23\x20\x23\xcc\x07\x8d\x37\x04\x00\x00\x20\xa6\x0c\x23\xe0\ \x65\x11\x01\x07\x44\x00\x00\x00\x62\x8e\x08\x70\x0f\x01\x00\x00\ \x08\x05\x11\xe0\x16\x02\x00\x00\x10\x1a\x22\xc0\x1d\x04\x00\x00\ \x20\x54\x44\x80\x1b\x08\x00\x00\x40\xe8\x88\x00\x7b\x04\x00\x00\ \xc0\x04\x11\x60\x8b\x00\x00\x00\x98\x21\x02\xec\x10\x00\x00\x00\ \x53\x44\x80\x0d\x02\x00\x00\x60\x8e\x08\x08\x1f\x01\x00\x00\x70\ \x02\x11\x10\x2e\x02\x00\x00\xe0\x0c\x22\x20\x3c\x04\x00\x00\xc0\ \x29\x44\x40\x38\x08\x00\x00\x80\x73\x88\x80\xd8\x23\x00\x00\x00\ \x4e\x22\x02\x62\x8b\x00\x00\x00\x38\x8b\x08\x88\x1d\x02\x00\x00\ \xe0\x34\x22\x20\x36\x08\x00\x00\x80\xf3\x88\x80\xe0\x11\x00\x00\ \x80\xb8\x40\x04\x04\x8b\x00\x00\x00\xc4\x0d\x22\x20\x38\x04\x00\ \x00\x20\xae\x10\x01\xc1\x20\x00\x00\x00\x71\x87\x08\xa8\x3a\x02\ \x00\x00\x10\x97\x88\x80\xaa\x21\x00\x00\x00\x71\x8b\x08\xa8\x3c\ \x02\x00\x00\x10\xd7\x88\x80\xca\x21\x00\x00\x00\x71\x8f\x08\xa8\ \x38\x02\x00\x00\x90\x10\x88\x80\x8a\x21\x00\x00\xc0\x63\xd1\xa4\ \xe4\xc0\xcf\x2c\x2c\x28\x08\xfc\xcc\x83\x75\x4c\x8f\x3e\x7a\x6c\ \xda\x2b\xca\xc8\xc8\x0c\xf3\x61\x07\x49\xfa\x97\xa4\xf4\x30\x1f\ \xb4\xaa\x08\x00\x00\xf0\x58\x7a\x46\xf0\x7f\x5b\xfe\x71\xed\x0f\ \x81\x9f\x59\x11\x3d\x7a\x0f\xd0\xe3\xcf\xbc\x16\x76\x04\x0c\x96\ \xf4\x92\xe2\x28\x02\x08\x00\x00\xf0\x58\x7a\xb5\x1a\x81\x9f\x39\ \x77\xd6\x5b\x81\x9f\x59\x51\x44\xc0\xff\x46\x00\x00\x80\xc7\x6a\ \xd7\x6b\x12\xf8\x99\x2f\x3c\x3d\x59\x9b\x36\xae\x0f\xfc\xdc\x8a\ \x32\x8e\x80\xd4\x30\x1f\xb4\x32\x08\x00\x00\xf0\x58\x9d\x86\xcd\ \x94\x96\x51\x2d\xd0\x33\x73\x76\xee\xd0\xb8\x2b\xc6\xa8\xa4\xa4\ \x24\xd0\x73\x2b\xc3\x30\x02\x26\xcb\xf1\xe7\x58\xa7\xc7\x01\x00\ \x62\x2b\x12\x89\xa8\x71\x8b\x76\x81\x9f\x3b\x77\xd6\x5b\xba\xf8\ \x17\xa7\x69\xcb\xa6\x8d\x81\x9f\x5d\x51\x46\x11\x70\x8e\xa4\x3b\ \xc3\x7c\xc0\x8a\x0a\xfe\xe5\x9f\x00\x80\xb8\xd2\xe6\xc8\x5e\x5a\ \xb9\x6c\x41\xe0\xe7\xbe\x37\xf3\x0d\xf5\xeb\x76\x98\x46\x9d\x7f\ \xb1\xfa\x9f\x78\xb2\xb2\x9a\x36\x57\x52\x0c\xde\x75\x70\x30\x9a\ \x36\x6b\xa9\x5b\xee\x7c\x50\x37\x5e\x7b\x59\x98\x57\x26\xae\x93\ \xf4\x81\xa4\xe9\x61\x3d\x60\x45\x44\xac\x07\x00\x7b\x48\x95\x14\ \xe8\xfb\x87\xce\xbe\xea\x2e\x0d\x39\xef\xb7\x41\x1e\x09\x24\x9c\ \x4f\xdf\x7b\x49\x0f\xfd\xfe\x4c\xeb\x19\x89\x6a\x8b\xa4\xce\x92\ \x6c\xdf\x1a\xb1\x1f\xdc\x02\x00\x00\xcf\x75\xe8\x3a\x40\xc9\x29\ \x69\xd6\x33\x12\x55\x5d\x49\xf7\x5a\x8f\xd8\x1f\x02\x00\x00\x3c\ \x97\x59\xa3\xb6\x8e\xee\x73\x9a\xf5\x8c\x44\x36\x42\xd2\x40\xeb\ \x11\xfb\x22\x00\x00\x00\xea\x75\xf2\x68\xeb\x09\x89\xee\x76\xeb\ \x01\xfb\x22\x00\x00\x00\xea\xdc\xf3\x14\x35\x6e\x19\xfc\xbb\x01\ \xf0\x93\xee\x92\x8e\xb7\x1e\xb1\x27\x02\x00\x00\xa0\x48\x34\xaa\ \x53\x47\xdf\x60\x3d\x23\xd1\x8d\xb5\x1e\xb0\x27\x02\x00\x00\x20\ \x49\xea\x31\xf8\x5c\x35\x3d\xa4\xa3\xf5\x8c\x44\x76\x92\xa4\x06\ \xd6\x23\x76\x23\x00\x00\x00\x92\xa4\xa4\xa4\x64\x8d\xfe\xed\x44\ \x45\x22\xbc\x43\x3c\x46\x52\x54\xfe\x82\x40\x27\x10\x00\x00\x80\ \x9f\xb4\x3b\xba\xaf\xfa\x9e\x76\x91\xf5\x8c\x44\x36\xd8\x7a\xc0\ \x6e\x04\x00\x00\x60\x2f\xe7\x5d\xf7\x90\x9a\xb7\xe9\x6c\x3d\x23\ \x51\xf5\x95\x94\x64\x3d\x42\x22\x00\x00\x00\xfb\x48\x49\x4d\xd7\ \xe5\xb7\x3e\xad\xcc\x1a\xb5\xad\xa7\x24\xa2\x5a\x92\x0e\xb7\x1e\ \x21\x11\x00\x00\x80\xfd\xc8\x6a\xd5\x41\xe3\xee\x7b\x43\xa9\xe9\ \xa1\x7e\x81\x8e\x2f\x9c\x78\xbf\x25\x01\x00\x00\xd8\xaf\x43\x8f\ \x38\x4e\x57\xdc\xf6\x8c\x52\x52\xd3\xad\xa7\x24\x9a\xb6\xd6\x03\ \x24\x7f\xbe\x0d\x30\x43\x52\x1d\x49\xd5\x24\xd5\x34\xde\x82\x03\ \x4b\x09\xfa\xc0\xec\x8d\x6b\xf4\xfd\x57\x9f\x06\x7d\x6c\x42\x8a\ \x44\x22\xca\xac\x5e\x5b\x69\x19\xd5\x54\xad\x66\x5d\x25\x25\x07\ \xfe\xff\x0e\xc4\xa1\xa3\x7a\x9f\xa6\xeb\x1e\x78\x4b\x0f\x5c\x3f\ \x4c\xb9\x3b\xb6\x5a\xcf\x49\x14\x8d\xad\x07\x48\x89\xf9\x6d\x80\ \x99\x92\x7a\x4b\x1a\x20\xa9\xab\xca\x2f\xb5\x34\x57\x62\xfe\xdf\ \x0a\xc4\x44\x52\x72\x8a\x1a\x64\xb5\x56\xe3\x16\xed\x74\x58\xa7\ \x1e\x6a\xdf\xa5\x9f\x5a\x77\x38\x86\x28\xf0\xd8\xda\x15\x5f\xea\ \xaf\xe3\x47\x68\xed\x8a\x2f\xad\xa7\x24\x82\xc9\x92\x7e\x69\x3d\ \x22\x51\x9e\x14\x93\x55\xfe\x01\x0b\xa3\x25\x0d\x95\xc4\xf5\x2a\ \x20\x60\xd5\x6a\xd6\x55\xf7\x81\x23\xd5\x73\xf0\x79\x6a\x73\x64\ \x2f\xeb\x39\x30\x50\x90\x97\xa3\x29\xf7\x5e\xad\xf7\x5f\x7b\x42\ \x65\x65\x65\xd6\x73\xe2\xd9\x8b\x92\xce\xb2\x1e\x11\xef\x01\x90\ \x2a\x69\x94\xa4\x1b\xe5\xc8\x3d\x15\xc0\x07\x2d\xda\x1e\xa5\x93\ \x46\x8d\x55\x8f\xc1\xe7\x2a\x1a\x75\xe2\x1d\x4d\x08\xd1\xb2\xcf\ \xe6\xea\xc9\xbb\xaf\xd0\x9a\xef\x96\x58\x4f\x89\x57\x2f\x49\x3a\ \xd3\x7a\x44\x3c\xff\x2f\xf7\x74\x49\x33\x24\x5d\x20\xa9\x9e\xed\ \x14\xc0\x2f\xdb\x36\xaf\xd3\x82\x39\x2f\x6b\xd1\x87\x6f\xaa\x45\ \xdb\xa3\x55\xa7\x41\x96\xf5\x24\x84\xa8\x7e\x93\x96\xea\x3f\xec\ \x12\xd5\x6f\xdc\x52\x6b\xbe\x5b\xa2\x9c\x1d\xd9\xd6\x93\xe2\xcd\ \x57\x92\x9e\xb5\x1e\x11\x8f\x01\xd0\x50\xd2\x33\x92\x6e\x96\xc4\ \x9b\x54\x01\x43\xd9\x1b\xd7\x68\xee\xab\x8f\x2b\x67\xdb\x16\x75\ \xe8\x3a\x40\x49\x49\xbe\xbc\xae\x18\xd1\x68\x92\x5a\xb6\xeb\xa2\ \x13\x46\x5c\xa9\x16\x6d\x3a\xab\xa8\x20\x5f\x1b\xd7\x7e\xa7\xb2\ \xd2\x52\xeb\x69\xf1\xc0\x89\x00\x88\xb7\x5b\x00\xfd\x25\x4d\x93\ \xd4\xc4\x78\x07\x80\x7d\xb4\x6c\x7b\xb4\x2e\xbf\xed\x19\x35\x6e\ \xc1\xdd\x38\x5f\xed\xdc\xb6\x59\x4b\xfe\x33\x53\x4b\xe7\xcf\xd2\ \xd7\x0b\xdf\xd7\x86\x1f\xbe\x55\x71\x51\xa1\xf5\x2c\x17\x39\x71\ \x0b\x20\x9e\x02\xe0\x42\x49\x8f\xca\x9f\xb7\x2e\x02\x71\xa7\x5a\ \x8d\x3a\xfa\xcd\x3d\xaf\xf2\x22\x41\x48\x92\x4a\x4a\x8a\xb5\x69\ \xed\x0a\x65\x6f\x5c\xa3\xfc\xdc\x1d\xca\xcf\xdd\xa9\xfc\xdc\x1d\ \xd6\xb3\x2a\xec\xd5\xc9\x77\x68\xf3\xba\x95\x41\x1e\x49\x00\x54\ \xc0\xf5\x92\xee\x54\xfc\xec\x05\xbc\x95\x9a\x96\xa1\x2b\x6e\x7f\ \x4e\x47\xf5\x3e\xd5\x7a\x0a\x10\x88\x09\xbf\x3c\x46\x2b\x96\xce\ \x0f\xf2\x48\x27\x02\x20\x1e\x3e\x09\xf0\x72\x49\x7f\x11\x4f\xfe\ \x40\x5c\x28\x2c\xc8\xd3\x43\xbf\x3f\x53\x0b\xe6\xbc\x6c\x3d\x05\ \xc0\xcf\x70\x3d\x00\x46\x48\xfa\xab\xf5\x08\x00\x15\x53\x52\x5c\ \xa4\x89\x7f\x38\x5b\x0b\xe6\x4e\xb7\x9e\x02\xe0\x00\x5c\x0e\x80\ \x36\x92\x1e\x97\xdb\x1b\x01\x1c\x40\x71\x51\xa1\x1e\x1e\x3f\x82\ \x2b\x01\x80\xa3\x5c\x7d\x72\x4d\x57\xf9\x27\x25\xd5\xb0\x1e\x02\ \xa0\xf2\xb8\x12\x00\xb8\xcb\xd5\x00\xb8\x41\x52\x27\xeb\x11\x00\ \xaa\x8e\x2b\x01\x80\x9b\x5c\x0c\x80\xc3\x54\xfe\xaa\x7f\x00\x09\ \xa2\xa4\xb8\x48\x0f\xdf\x38\x92\x08\x00\x1c\xe2\x62\x00\xdc\x26\ \xbe\xcc\x07\x48\x38\x44\x00\xe0\x16\xd7\x02\xe0\x50\x39\xf0\x0d\ \x49\x00\x62\x83\x08\x00\xdc\xe1\x5a\x00\xfc\x56\xf1\xf9\xfd\x04\ \x00\x0e\x12\x2f\x0c\x04\xdc\xe0\x52\x00\xa4\x4b\x3a\xdb\x7a\x04\ \x80\xd8\xe3\x85\x81\x80\x3d\x97\x02\x60\xa8\xf8\x76\x3f\xc0\x1b\ \x5c\x09\x00\x6c\xb9\x14\x00\x7c\x70\x38\xe0\x19\xae\x04\x00\x76\ \x5c\xfa\x66\xbd\x01\xb1\x3a\xb8\x76\x9d\xba\x1a\x32\xf4\x2c\x75\ \xed\xde\x53\xf5\xea\x37\x54\x4a\x4a\x4a\xac\x1e\x0a\x88\x1b\x63\ \x46\x0c\x56\x49\x49\x89\xf5\x8c\x9f\xae\x04\x5c\x71\xfb\x73\xea\ \xd2\x77\x98\xf5\x1c\xc0\x1b\xae\x04\xc0\x21\x92\x9a\xc5\xe2\xe0\ \x51\xa3\x2f\xd1\x0d\x7f\xbc\x4b\x35\x6b\x71\x77\x01\xd8\x4b\xc4\ \x9d\xef\xd7\x2a\x2e\x2a\xd4\xc4\x1b\x47\x12\x01\x40\x88\x5c\xb9\ \x05\x70\x78\x2c\x0e\xbd\x72\xec\x78\xfd\xf9\xbe\x49\x3c\xf9\x03\ \x71\x60\x77\x04\xf0\x9a\x00\x20\x1c\xae\x04\x40\xbb\xa0\x0f\xec\ \x76\x5c\x6f\x8d\xbb\xf1\xb6\xa0\x8f\x05\x10\x43\x44\x00\x10\x1e\ \x57\x02\xa0\x79\xd0\x07\x5e\x7d\xdd\x4d\x8a\x38\x74\x89\x13\xc0\ \xc1\x21\x02\x80\x70\xb8\x12\x00\x81\x7e\xeb\x5f\xb5\xea\x35\xd4\ \xa3\x77\xcc\x5e\x53\x08\x20\xc6\x88\x00\x20\xf6\x5c\x09\x80\xea\ \x41\x1e\x96\xd5\xb4\xb9\x92\x79\xa5\x3f\x10\xd7\x88\x00\x20\xb6\ \x5c\x09\x80\x40\x9f\xad\xd3\x33\x32\x83\x3c\x0e\x80\x11\x3e\x27\ \x00\x88\x1d\x57\x02\x00\x00\xf6\x8b\x2f\x10\x02\x62\x83\x00\x00\ \xe0\x3c\x22\x00\x08\x1e\x01\x00\x20\x2e\x10\x01\x40\xb0\x08\x00\ \x00\x71\x83\x08\x00\x82\x43\x00\x00\x88\x2b\x44\x00\x10\x0c\x02\ \x00\x40\x20\xd2\x33\x03\xfd\x38\x8f\x9f\xc5\x57\x09\x03\x55\x47\ \x00\x00\x08\xc4\xa0\x51\xbf\x51\x8f\x93\xce\x0d\xed\xf1\x78\x8b\ \x20\x50\x35\x04\x00\x80\x40\x44\xa3\x49\xba\xe4\x96\x7f\x86\x1a\ \x01\xdc\x0e\x00\x2a\x8f\x00\x00\x10\x18\x22\x00\x88\x1f\x04\x00\ \x80\x40\x11\x01\x40\x7c\x20\x00\x00\x04\x8e\x08\x00\xdc\x47\x00\ \x00\x88\x09\x22\x00\x70\x1b\x01\x00\x20\x66\x88\x00\xc0\x5d\x04\ \x00\x80\x98\x22\x02\x00\x37\x11\x00\x00\x62\x8e\x08\x00\xdc\x43\ \x00\x00\x08\x05\x11\x00\xb8\x85\x00\x00\x10\x1a\x22\x00\x70\x07\ \x01\x00\x20\x54\x44\x00\xe0\x06\x02\x00\x40\xe8\x88\x00\xc0\x1e\ \x01\x00\xc0\x04\x11\x00\xd8\x22\x00\x00\x98\x21\x02\x00\x3b\x04\ \x00\x00\x53\x44\x00\x60\x83\x00\x00\x60\x8e\x08\x00\xc2\x47\x00\ \x00\x70\x02\x11\x00\x84\x8b\x00\x00\xe0\x0c\x22\x00\x08\x0f\x01\ \x00\xc0\x29\x44\x00\x10\x0e\x02\x00\x80\x73\x88\x00\x20\xf6\x08\ \x00\x00\x4e\x22\x02\x80\xd8\x22\x00\x00\x38\x8b\x08\x00\x62\x87\ \x00\x00\xe0\x34\x22\x00\x88\x0d\x02\x00\x80\xf3\x88\x00\x20\x78\ \x04\x00\x80\xb8\x40\x04\x00\xc1\x22\x00\x00\xc4\x0d\x22\x00\x08\ \x0e\x01\x00\x20\xae\x10\x01\x40\x30\x08\x00\x00\x71\x87\x08\x00\ \xaa\x8e\x00\x00\x10\x97\x88\x00\xa0\x6a\x08\x00\x00\x71\x8b\x08\ \x00\x2a\x8f\x00\x00\x10\xd7\x88\x00\xa0\x72\x08\x00\xc0\x53\x29\ \xc9\x29\x81\x9e\x57\x58\x90\x1b\xe8\x79\x15\x11\x8d\x26\xe9\xe2\ \x9b\x27\xab\xfb\x09\x23\x43\x7b\xcc\x92\xe2\x22\x4d\xfc\xc3\xd9\ \x5a\x30\x77\x7a\x68\x8f\x09\x04\x89\x00\x00\x3c\x55\xad\x7a\x8d\ \x40\xcf\xdb\xf0\xc3\xf2\x40\xcf\xab\xa8\xa4\xa4\x64\x5d\xf6\xa7\ \xa9\xa1\x46\x40\x71\x51\xa1\x26\xde\x38\x52\x9f\xfd\xfb\x95\xd0\ \x1e\x13\x08\x0a\x01\x00\x78\xaa\x7a\x8d\x60\x03\x60\xc9\x27\xef\ \xa8\x20\x2f\x27\xd0\x33\x2b\xca\x2a\x02\x1e\x1e\x3f\x82\x08\x40\ \xdc\x21\x00\x00\x4f\x65\x35\x6d\x11\xe8\x79\x79\x39\xdb\xf5\xe6\ \xb4\x7b\x02\x3d\xb3\x32\x2c\x23\xe0\x8b\x0f\xdf\x08\xed\x31\x81\ \xaa\x22\x00\x00\x4f\x1d\xd2\xa6\x5d\xe0\x67\xbe\xf2\xc4\x6d\x5a\ \xf2\x9f\x99\x81\x9f\x5b\x51\x96\x11\xb0\x7c\xc9\xc7\xa1\x3d\x26\ \x50\x15\x04\x00\xe0\xa9\x36\xed\x0e\x0f\xfc\xcc\x92\xe2\x22\xdd\ \x77\xed\xa9\x9a\xf9\xfc\x43\x2a\x29\x29\x0e\xfc\xfc\x8a\xb0\x88\ \x80\x82\xbc\x1c\xdd\x3f\xee\x54\x6d\x5e\xb7\x2a\xb4\xc7\x04\x2a\ \x2b\xd9\x7a\x00\x00\x1b\xdd\x7b\xf4\x8d\xc9\xb9\xc5\x45\x05\x9a\ \x72\xcf\xd5\x7a\xeb\x99\xfb\xd5\x6d\xc0\x70\x35\x3b\xe4\x08\xa5\ \xa6\x65\xc4\xe4\xb1\x0e\x46\x97\x7e\xa7\x6b\xf9\x92\x8f\x42\x7b\ \x52\xde\xb1\x75\x93\xfe\x76\xd3\x39\xba\xe1\x6f\xef\x29\x29\xe0\ \x77\x5a\x00\x41\x22\x00\x00\x4f\xb5\x3b\xbc\x93\xea\xd4\xab\xaf\ \xec\xcd\x9b\x62\x72\xfe\xc6\x35\xdf\xe9\x8d\x29\x77\xc7\xe4\x6c\ \xd7\x7d\xbb\x68\x9e\xa6\xff\xe3\x56\x9d\x79\xe9\x9f\xac\xa7\x00\ \x07\xc4\x2d\x00\xc0\x53\xd1\x68\x54\xc7\x9f\x78\x8a\xf5\x8c\x84\ \xf5\xfa\x53\x77\x69\xdd\xaa\xaf\xad\x67\x00\x07\x44\x00\x00\x1e\ \x3b\x73\xd4\x68\xeb\x09\x09\xab\xb8\xa8\x40\x53\xef\xbd\xc6\x7a\ \x06\x70\x40\x04\x00\xe0\xb1\xe3\x7a\xf5\x57\xb3\x16\xad\xac\x67\ \x24\xac\x45\x1f\xbd\xa9\xe5\x8b\x3f\xb2\x9e\x01\xec\x17\x01\x00\ \x78\x2c\x1a\x8d\xea\x92\x2b\xc7\x59\xcf\x48\x68\x33\x9e\xbc\xd3\ \x7a\x02\xb0\x5f\x04\x00\xe0\xb9\x91\xe7\x5d\xa4\x06\x0d\x1b\x5b\ \xcf\x48\x58\x9f\xfd\xfb\x15\x6d\x5e\xb7\xd2\x7a\x06\xf0\x5f\x08\ \x00\xc0\x73\xe9\xe9\x19\x1a\x37\xfe\x56\xeb\x19\x09\xab\xac\xac\ \x4c\x1f\xbd\xfd\xb4\xf5\x0c\xe0\xbf\x10\x00\x00\x34\xe2\xdc\x0b\ \xd5\xe5\x98\x1e\xd6\x33\x12\x16\x01\x00\x17\x11\x00\x00\x14\x8d\ \x46\xf5\xe7\xfb\xff\xae\x8c\x8c\x4c\xeb\x29\x09\xe9\x87\xe5\x8b\ \xb4\x7d\xcb\x7a\xeb\x19\xc0\x5e\x08\x00\x00\x92\xa4\xb6\xed\x3b\ \xea\x96\x3b\x1f\xb4\x9e\x91\x90\xca\xca\xca\xf4\xd5\x67\x73\xac\ \x67\x00\x7b\x21\x00\x00\xfc\xe4\xec\xf3\x2e\xd2\xb9\xbf\xfc\x95\ \xf5\x8c\x84\xf4\xdd\x92\x4f\xac\x27\x00\x7b\x21\x00\x00\xec\x65\ \xc2\x5f\xfe\xaa\x21\x43\xcf\xb2\x9e\x91\x70\xf8\x54\x40\xb8\x86\ \x00\x00\xb0\x97\xa4\xa4\x24\xdd\xf7\xc8\x53\x1a\x38\x78\xa8\xf5\ \x94\x84\xb2\x7e\xf5\x37\xd6\x13\x80\xbd\x10\x00\x00\xfe\x4b\x5a\ \x5a\xba\xfe\xf6\xcf\x17\x35\xf2\xdc\x0b\xad\xa7\x24\x8c\x1d\x5b\ \x37\x5a\x4f\x00\xf6\x42\x00\x00\xd8\xaf\xe4\xe4\x64\xfd\xe5\xc1\ \xc7\x75\xc7\xbd\x8f\x2a\x35\x2d\xcd\x7a\x4e\xdc\xcb\xcf\xdd\x69\ \x3d\x01\xd8\x0b\x01\x00\xe0\x67\x9d\x33\xe6\x52\xbd\xf0\xc6\x07\ \x6a\xdb\xe1\x08\xeb\x29\x71\xad\xb8\xa8\x40\x25\xc5\x45\xd6\x33\ \x80\x9f\x10\x00\x00\xfe\xa7\x4e\x9d\xbb\x6a\xc6\xec\x05\x1a\x3f\ \xe1\x6e\x65\x56\xab\x6e\x3d\x27\x6e\x95\x95\x95\x59\x4f\x00\x7e\ \x42\x00\x00\x38\x28\xc9\x29\x29\xba\xe4\xaa\xeb\xf4\xfe\xe7\xdf\ \xeb\x9a\xeb\x6f\x51\xad\xda\x75\xac\x27\x01\xa8\x02\x02\x00\x40\ \x85\xd4\xa9\x5b\x4f\xbf\xf9\xdd\x1f\x35\xef\x8b\x55\xfa\xbf\x87\ \x27\xab\x67\x9f\xe3\x15\x8d\xf2\xab\x04\x88\x37\xc9\xd6\x03\x00\ \xc4\xa7\xcc\x6a\xd5\x35\x7c\xd4\x18\x0d\x1f\x35\x46\xdb\xb6\x66\ \xeb\xa3\x0f\xde\xd3\x87\xff\x9e\xad\xaf\x97\x2e\xd6\x77\xdf\x2e\ \xd3\xfa\x75\x6b\xad\x27\x02\xf8\x19\x04\x00\x80\x2a\xab\x55\xbb\ \x8e\x4e\x3a\xe5\x0c\x9d\x74\xca\x19\x3f\xfd\x67\xf9\xf9\x79\xca\ \xdd\xb9\x53\x3b\x77\xee\xd0\xb6\x6d\xd9\x86\xeb\x2a\xe7\xa5\x67\ \x9f\xd2\x13\x8f\x3e\x60\x3d\x03\x88\x19\x02\x00\x40\x4c\xa4\xa7\ \x67\x28\x3d\x3d\x43\x75\xeb\x37\xb0\x9e\x52\x29\x1f\xce\x9d\x65\ \x3d\x01\x88\x29\x6e\xdc\x01\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\ \x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\ \x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\ \x00\x00\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\ \x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\ \x01\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x94\x6c\x3d\x00\xd2\xca\ \x15\xdf\xea\xb5\x97\x9f\xd3\xec\xb7\x67\xe8\x87\x55\xdf\x6b\xd3\ \xa6\x0d\x2a\x29\x2e\xb6\x9e\xe5\xac\x3a\x75\xeb\xa9\x41\xa3\x26\ \x3a\xb6\x67\x5f\x0d\x19\x7a\x96\x8e\xeb\xd5\x5f\x91\x48\xc4\x7a\ \x16\x00\xc4\x15\x02\xc0\xd0\xce\x1d\xdb\x75\xcf\x1d\x37\xe9\xa9\ \x7f\x4c\xe4\x09\xbf\x02\xb2\xb7\x6c\x56\xf6\x96\xcd\xfa\x7a\xe9\ \x62\x3d\xf5\xf8\x44\x75\xef\xd9\x57\xb7\xde\xf5\xb0\xda\x76\x38\ \xc2\x7a\x1a\x00\xc4\x0d\x6e\x01\x18\xd9\xbc\x69\x83\xce\x3e\xad\ \x9f\x26\x4f\x7a\x90\x27\xff\x2a\xfa\x64\xde\x5c\x9d\x31\xe8\x38\ \xfd\x7b\xf6\xdb\xd6\x53\x00\x20\x6e\x10\x00\x06\x8a\x0a\x0b\x75\ \xc1\x88\x21\xfa\x72\xd1\xe7\xd6\x53\x12\x46\x6e\x6e\x8e\x2e\x39\ \x77\x98\x96\x2e\x5e\x68\x3d\x05\x00\xe2\x02\x01\x60\xe0\x81\xbb\ \x26\x68\xf1\x17\x0b\xac\x67\x24\x9c\x82\x82\x7c\x8d\xbd\xfc\x7c\ \x15\x17\x15\x59\x4f\x01\x00\xe7\x11\x00\x21\xdb\x9a\xbd\x45\x4f\ \x3c\xfa\x80\xf5\x8c\x84\xb5\xec\xcb\x45\x9a\x31\xfd\x79\xeb\x19\ \x00\xe0\x3c\x02\x20\x64\xcf\x4f\x7b\x42\xb9\xb9\x39\xd6\x33\x12\ \xda\x94\x7f\x4c\xb4\x9e\x00\x00\xce\x23\x00\x42\xf6\xfe\x7b\xef\ \x58\x4f\x48\x78\x9f\x7d\xfa\xb1\x72\x76\xee\xb0\x9e\x01\x00\x4e\ \x23\x00\x42\xb6\xe8\xf3\xf9\xd6\x13\x12\x5e\x49\x71\xb1\x96\x7c\ \xf1\x99\xf5\x0c\x00\x70\x1a\x01\x10\xa2\xe2\xa2\x22\x6d\xcd\xde\ \x62\x3d\xc3\x0b\x9b\x36\xae\xb7\x9e\x00\x00\x4e\x23\x00\x42\x54\ \x58\x54\xa8\xb2\xb2\x32\xeb\x19\x5e\xc8\xcf\xcf\xb3\x9e\x00\x00\ \x4e\x23\x00\x42\x94\x99\x59\x4d\xe9\xe9\x19\xd6\x33\xbc\x50\xaf\ \x7e\x43\xeb\x09\x00\xe0\x34\x02\x20\x64\x2d\x0f\x39\xcc\x7a\x82\ \x17\x5a\x1d\xd2\xc6\x7a\x02\x00\x38\x8d\x00\x08\xd9\xb1\x3d\xfb\ \x59\x4f\x48\x78\x8d\xb3\x9a\xa9\x65\xeb\x43\xad\x67\x00\x80\xd3\ \x08\x80\x90\x0d\x1f\x35\xda\x7a\x42\xc2\x3b\x63\xe4\x79\xd6\x13\ \x00\xc0\x79\x04\x40\xc8\x8e\x3c\xfa\x18\x75\x3b\xae\xb7\xf5\x8c\ \x84\x95\x96\x96\xae\xd1\x17\x5d\x69\x3d\x03\x00\x9c\x47\x00\x18\ \xf8\xf3\x7d\x93\x78\x31\x60\x8c\xfc\xf6\xa6\x3b\xd4\x38\xab\x99\ \xf5\x0c\x00\x70\x1e\x01\x60\xe0\xb0\xb6\x1d\xf4\x97\x07\x1f\x57\ \x52\x72\xb2\xf5\x94\x84\x72\xfa\x88\x73\xf5\xcb\xcb\xae\xb1\x9e\ \x01\x00\x71\x81\x00\x30\x32\x74\xf8\x39\x7a\xe4\x9f\x2f\xaa\x4e\ \xbd\xfa\xd6\x53\xe2\x5e\x52\x52\x92\x2e\xb9\xea\x3a\xdd\x33\xf1\ \x49\x45\xa3\xfc\x2b\x0d\x00\x07\x83\xdf\x96\x86\x06\x0e\x1e\xaa\ \x59\x1f\x2f\xd3\xc5\x57\x5c\xab\x46\x8d\xb3\xac\xe7\xc4\x9d\xf4\ \xf4\x0c\x9d\x74\xca\x19\x9a\x3e\xf3\x3f\x1a\x3f\xe1\x6e\x9e\xfc\ \x01\xa0\x02\xb8\x06\x6d\xac\x76\x9d\xba\xba\xf1\xd6\x7b\x74\xc3\ \x84\xbb\xb5\x64\xd1\x67\x5a\xb3\x7a\xa5\xd6\xff\xb8\x46\x79\xb9\ \xb9\xd6\xd3\x9c\x94\x94\x9c\xac\x06\x0d\x1a\xa9\x51\x56\x53\x75\ \xee\xd2\x5d\x99\x99\xd5\xac\x27\x01\x40\x5c\x22\x00\x1c\x11\x8d\ \x46\xd5\xa9\x73\x57\x75\xea\xdc\xd5\x7a\x0a\x00\xc0\x03\x5c\x33\ \x05\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\ \x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\ \x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\ \x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\ \x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\ \x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\ \x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x92\xad\x07\x60\x6f\xa5\ \xa5\xa5\xda\xb4\x71\xbd\xf2\xf3\xf2\xac\xa7\x00\x95\x96\x9a\x9a\ \xaa\x7a\xf5\x1b\x2a\x25\x35\xd5\x7a\x0a\x80\x03\x20\x00\x1c\xf0\ \xe9\x27\xf3\xf4\xca\x0b\xd3\x34\xeb\x9d\x19\xfa\x71\xcd\x6a\x95\ \x94\x94\x58\x4f\x02\x02\x51\xbf\x41\x23\xf5\xea\x77\x82\x4e\x1e\ \x36\x42\x03\x07\x0f\x55\x34\xca\x45\x47\xc0\x15\x04\x80\xa1\x0d\ \xeb\x7f\xd4\x84\x1b\xae\xd1\xeb\xd3\x9f\xb7\x9e\x02\xc4\xc4\xa6\ \x8d\xeb\x35\xfd\x85\x69\x9a\xfe\xc2\x34\x1d\xd5\xf5\x58\xdd\x71\ \xef\xa3\xea\x70\x44\x67\xeb\x59\x00\xc4\x6b\x00\xcc\xfc\xb0\xea\ \x7b\x8d\x3c\xa5\x2f\x4f\xfe\xf0\xc6\xe7\x9f\x7e\xac\xb3\x86\xf4\ \xd2\xfb\xef\xbd\x63\x3d\x05\x80\x08\x00\x13\xb9\x39\x3b\x75\xfe\ \xf0\x41\x5a\xb9\xe2\x5b\xeb\x29\x40\xa8\x72\x73\x73\x74\xe9\x79\ \xa7\xeb\xbb\x6f\x97\x59\x4f\x01\xbc\x47\x00\x18\xb8\x73\xc2\xef\ \xf4\xfd\x77\xdf\x58\xcf\x00\x4c\xe4\xe5\xe5\xea\xda\xcb\x47\xab\ \xac\xac\xcc\x7a\x0a\xe0\x35\x02\x20\x64\xeb\xd7\xad\xd5\x33\x4f\ \x3d\x66\x3d\x03\x30\xb5\x70\xc1\x27\x9a\xf3\xee\x9b\xd6\x33\x00\ \xaf\x11\x00\x21\x7b\x7e\xda\x13\x2a\x2a\x2c\xb4\x9e\x01\x98\x9b\ \x36\xf9\x51\xeb\x09\x80\xd7\x08\x80\x90\xcd\x9b\xf3\xae\xf5\x04\ \xc0\x09\x1f\x7d\xf0\x1e\x6f\x79\x05\x0c\x11\x00\x21\x5b\xb2\xe8\ \x33\xeb\x09\x80\x13\x76\x6c\xdf\xa6\x1f\x56\xad\xb0\x9e\x01\x78\ \x8b\x00\x08\x51\x51\x61\xa1\x76\x6c\xdf\x66\x3d\x03\x70\xc6\xa6\ \x8d\x1b\xac\x27\x00\xde\x22\x00\x42\x54\x5c\x52\xcc\x2b\x9f\x81\ \x3d\x14\x17\x15\x59\x4f\x00\xbc\x45\x00\x84\x28\x23\x23\x53\x19\ \x19\x99\xd6\x33\x00\x67\xd4\x6b\xd0\xd0\x7a\x02\xe0\x2d\x02\x20\ \x64\x87\xb5\xed\x60\x3d\x01\x70\x42\x6a\x5a\x9a\x9a\xb5\x68\x65\ \x3d\x03\xf0\x16\x01\x10\xb2\xe3\x7a\xf7\xb7\x9e\x00\x38\xa1\x4b\ \xb7\x1e\x4a\x4f\xcf\xb0\x9e\x01\x78\x8b\x00\x08\xd9\x59\xe7\x5c\ \xa0\x48\x24\x62\x3d\x03\x30\x37\xfc\x9c\x31\xd6\x13\x00\xaf\x11\ \x00\x21\x6b\xdb\xe1\x08\xf5\x3b\x61\xb0\xf5\x0c\xc0\x54\x93\xa6\ \xcd\x35\xf4\xcc\x73\xac\x67\x00\x5e\x23\x00\x0c\xfc\xf9\xbe\x49\ \xaa\x55\xbb\x8e\xf5\x0c\xc0\x44\x24\x12\xd1\x1d\xf7\x3e\xaa\xd4\ \xb4\x34\xeb\x29\x80\xd7\x08\x00\x03\x8d\xb3\x9a\xe9\xc1\xbf\x3f\ \xcd\x3b\x02\xe0\x9d\x48\x24\xa2\x1b\x6f\xbd\x47\xfd\x07\x0e\xb1\ \x9e\x02\x78\x8f\x00\x30\xd2\xf7\xf8\x93\xf4\xe4\x8b\x6f\xab\x65\ \xeb\x43\xad\xa7\x00\xa1\xa8\x55\xbb\x8e\xee\x9d\xf8\xa4\x2e\xba\ \x7c\xac\xf5\x14\x00\x22\x00\x4c\x75\x3b\xb6\x97\xde\xfa\x60\xb1\ \xc6\xff\xe9\xff\xd4\xf1\xc8\xa3\xad\xe7\x00\x31\xd1\xbc\x65\x6b\ \x5d\xfa\xeb\xdf\x6a\xd6\xc7\xcb\x74\xfa\xc8\xf3\xac\xe7\x00\xd8\ \x25\xd9\x7a\x80\xef\xd2\xd2\xd2\x75\xc9\x95\xe3\x74\xc9\x95\xe3\ \xb4\x7e\xdd\x5a\xad\x5e\xb9\x42\x9b\x37\x6d\x50\x49\x71\xb1\xf5\ \x34\xa0\x4a\xea\x37\x68\xa4\x46\x4d\xb2\xd4\xb2\xf5\x61\xd6\x53\ \x00\xec\x07\x01\xe0\x90\x46\x8d\xb3\xd4\xa8\x71\x96\xf5\x0c\x00\ \x80\x07\xb8\x05\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\ \x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\ \x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\ \x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\ \x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\ \x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\ \x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\ \x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x4a\xb6\ \x1e\x80\x72\xb9\xb9\x39\xfa\x70\xee\x2c\xad\x5e\xb5\x42\x9b\x37\ \x6e\x50\x71\x49\xb1\xf5\x24\xa0\x4a\xea\x37\x68\xa4\x46\x8d\xb3\ \xd4\xa3\xcf\x00\xd5\xab\xdf\xd0\x7a\x0e\x80\x7d\xb8\x12\x00\x65\ \x41\x1e\x16\x89\x44\x82\x3c\x2e\xa6\x56\xaf\x5c\xa1\xbb\x6f\x1b\ \xaf\x77\x5e\x9f\xae\xfc\xfc\x3c\xeb\x39\x40\xe0\x92\x92\x92\xd4\ \xbd\x47\x5f\x8d\xbb\xf1\x36\x75\xed\xde\xd3\x7a\x0e\x80\x5d\x5c\ \xb9\x05\xb0\x25\xc8\xc3\xea\xd6\xab\x1f\xe4\x71\x31\xf3\xf4\x3f\ \x27\xe9\xc4\x1e\x87\xeb\xd5\x7f\x3d\xc3\x93\x3f\x12\x56\x49\x49\ \x89\x3e\x7c\x7f\xb6\x46\x9c\xdc\x5b\x13\x6e\xb8\x46\xa5\xa5\xa5\ \xd6\x93\x00\xc8\x9d\x00\xf8\x31\xc8\xc3\x1a\x35\xce\x0a\xf2\xb8\ \x98\x98\x3c\xe9\x41\xdd\x38\xee\x57\x2a\x28\xc8\xb7\x9e\x02\x84\ \xa2\xac\xac\x4c\x93\x27\x3d\xa8\x71\x57\x8e\x51\x59\x59\xa0\x17\ \xfd\x00\x54\x82\x2b\x01\x30\x3f\xc8\xc3\x8e\xe8\xdc\x35\xc8\xe3\ \x02\xb7\xe8\xf3\xf9\xba\xfd\xe6\xeb\xf8\x25\x08\x2f\xbd\xfc\xdc\ \x14\x4d\xf9\xc7\xdf\xac\x67\x00\xde\x73\x25\x00\xde\x92\xb4\x23\ \x88\x83\xa2\xd1\xa8\x06\x9d\x72\x7a\x10\x47\xc5\x44\x59\x59\x99\ \x7e\x77\xcd\xc5\x2a\x2e\x2a\xb2\x9e\x02\x98\xb9\x73\xc2\xef\xb4\ \x35\x3b\xd0\x3b\x7f\x00\x2a\xc8\x95\x00\x28\x90\x14\xc8\x5f\x09\ \x86\x9e\xf5\x0b\x35\x6c\xd4\x24\x88\xa3\x62\xe2\x83\x39\x33\xb5\ \x74\xf1\x42\xeb\x19\x80\xa9\xdc\x9c\x9d\x9a\x3a\xf9\x11\xeb\x19\ \x80\xd7\x5c\x09\x00\x49\xba\x55\xd2\xaa\xaa\x1c\x50\xab\x76\x1d\ \x8d\x9f\x70\x77\x40\x73\x62\x63\xc6\xf4\xe7\xad\x27\x00\x4e\x78\ \xe3\x95\x17\xac\x27\x00\x5e\x73\x29\x00\x76\x4a\x1a\x28\x69\x7d\ \x65\xfe\x70\x46\x46\xa6\xfe\x3e\x65\xba\x1a\x34\x6c\x1c\xec\xaa\ \x80\x7d\x32\x6f\xae\xf5\x04\xc0\x09\x4b\x17\x2f\xd4\x8e\xed\xdb\ \xac\x67\x00\xde\x72\x29\x00\x24\xe9\x1b\x49\xfd\x54\xc1\x17\x05\ \x1e\xda\xa6\xbd\x9e\x7d\x6d\x8e\x8e\xe9\xd1\x27\x36\xab\x02\xb4\ \x7a\xd5\x0a\xeb\x09\x80\x13\x4a\x4b\x4b\xb5\x66\xf5\x4a\xeb\x19\ \x80\xb7\x5c\x0b\x00\x49\x5a\x26\xa9\xa7\xa4\xcb\x24\x7d\xf5\x73\ \xff\x60\xb3\x16\xad\x74\xd3\xed\xf7\xe9\xb5\xf7\x16\xa8\xd3\x51\ \xdd\x42\x19\x57\x15\xb9\x39\x3b\x55\x54\x58\x68\x3d\x03\x70\xc6\ \x96\x2d\x9b\xac\x27\x00\xde\x72\xe5\x93\x00\xf7\x55\x24\x69\xd2\ \xae\x9f\x76\x92\xfa\x48\x6a\x7e\x6c\xcf\x7e\xc7\x77\xef\xd9\xb7\ \x77\xc3\x46\x4d\xd4\xbd\x47\x1f\xb5\x69\xdf\x31\xae\x3e\xf5\x2f\ \x2d\x3d\x43\xd1\x68\x94\x0f\x42\x01\x76\xa9\x5e\xbd\x86\xf5\x04\ \xc0\x5b\xae\x06\xc0\x9e\x96\xed\xfa\xd1\x33\xaf\xbe\xb7\x55\x52\ \x6f\xdb\x39\x95\x97\x94\x94\xa4\xba\xf5\x1a\x68\xd3\xc6\x4a\xbd\ \xcc\x01\x48\x38\xae\xbf\x66\x07\x48\x64\x2e\xde\x02\x48\x68\x47\ \x77\x3b\xce\x7a\x02\xe0\x84\x46\x8d\xb3\xd4\xa4\x69\x73\xeb\x19\ \x80\xb7\x08\x80\x90\xf5\x3d\xfe\x24\xeb\x09\x80\x13\xfa\x0f\x1c\ \x62\x3d\x01\xf0\x1a\x01\x10\xb2\x33\x47\x8d\x56\xed\x3a\x75\xad\ \x67\x00\xe6\x46\x5f\x7c\x95\xf5\x04\xc0\x6b\x04\x40\xc8\x32\x33\ \xab\xe9\x8a\xb1\xe3\xad\x67\x00\xa6\x4e\x3b\x73\x94\x0e\xef\x74\ \x94\xf5\x0c\xc0\x6b\x04\x80\x81\x8b\x2e\x1f\xab\x5e\x7d\x4f\xb0\ \x9e\x01\x98\xc8\x6a\xd6\x42\x7f\xba\xeb\x61\xeb\x19\x80\xf7\x08\ \x00\x03\xd1\x68\x54\x93\xa6\x4e\x57\xef\xfe\x27\x5a\x4f\x01\x42\ \xd5\xbc\x65\x6b\x4d\x7b\x79\x16\xb7\xc1\x00\x07\x10\x00\x46\x32\ \x33\xab\xe9\x89\x67\x66\xe8\xe6\x3b\xee\x57\xf5\x1a\x35\xad\xe7\ \x00\x31\x15\x8d\x46\x75\xc6\xc8\xf3\x35\xfd\x9d\x4f\xd4\xb2\xf5\ \xa1\xd6\x73\x00\x28\x3e\x3e\x07\x20\x61\x25\xa7\xa4\xe8\x97\x97\ \x5d\xa3\x33\xcf\x1e\xad\x99\x6f\xbe\xa2\x77\xdf\x7a\x4d\x6b\x56\ \xaf\xd4\xfa\x1f\xd7\x28\x3f\x3f\xcf\x7a\x1e\x50\x69\x29\x29\xa9\ \xaa\xdf\xb0\x91\xb2\x9a\xb5\x50\xaf\xbe\x27\x68\xf0\xa9\x67\x2a\ \xab\x59\x0b\xeb\x59\x00\xf6\x40\x00\x38\xa0\x56\xed\x3a\x1a\x3e\ \x6a\x8c\x86\x8f\x1a\x63\x3d\x05\x00\xe0\x09\x6e\x01\x00\x00\xe0\ \x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\ \x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\ \x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\ \x0f\x11\x00\x00\x00\x78\xc8\xf5\xef\x02\x48\x96\x34\x50\x52\x2f\ \x49\x87\x0d\xe9\x7b\x54\x87\xce\x47\x77\xd3\xa1\x6d\x3b\xa8\x4f\ \xff\x13\xd5\xbe\xe3\x91\xc6\xf3\x00\x00\x88\x4f\xae\x06\x40\xb2\ \xa4\x4b\x25\xdd\x24\xa9\xf1\xee\xff\xf0\xab\x25\x0b\xf5\xd5\x92\ \x85\x3f\xfd\x43\x9d\x8e\xea\xa6\x5f\x5f\xf7\x07\x9d\x38\x64\x58\ \xf8\x0b\x01\x00\x88\x63\x2e\xde\x02\x68\x20\x69\xa6\xa4\x87\xb5\ \xc7\x93\xff\xfe\x2c\xfa\x7c\xbe\x2e\x3d\xef\x74\xfd\x6a\xf4\x99\ \xda\xb9\x63\x7b\x28\xe3\x00\x00\x48\x04\xae\x05\x40\x3d\x49\x73\ \x24\xf5\xab\xc8\x1f\x7a\x6b\xc6\x4b\x1a\x71\x4a\x1f\x6d\xcd\xde\ \x12\x9b\x55\x00\x00\x24\x18\x97\x02\x20\x22\xe9\x39\x49\x1d\x2a\ \xf3\x87\xbf\x5a\xf2\x85\x2e\x1b\x7d\x86\x4a\x4a\x4a\x82\x5d\x05\ \x00\x40\x02\x72\x29\x00\x2e\x90\x74\x7c\x55\x0e\xf8\x64\xde\x5c\ \x4d\x9e\xf4\x60\x30\x6b\x00\x00\x48\x60\xae\x04\x40\x44\xd2\xf5\ \x41\x1c\xf4\xf0\xbd\xb7\x2b\x37\x37\x27\x88\xa3\x00\x00\x48\x58\ \xae\x04\x40\x17\x49\xed\x83\x38\x28\x7b\xcb\x66\xbd\xf7\xce\xeb\ \x41\x1c\x05\x00\x40\xc2\x72\x25\x00\x7a\x07\x79\xd8\xbc\x7f\xcf\ \x0a\xf2\x38\x00\x00\x12\x8e\x2b\x01\xd0\x32\xc8\xc3\x56\xaf\x5c\ \x11\xe4\x71\x00\x00\x24\x1c\x57\x02\x20\x25\xc8\xc3\x72\x76\xee\ \x08\xf2\x38\x00\x00\x12\x8e\x2b\x9f\x04\x98\x1d\xe4\x61\x35\x6b\ \xd5\x0e\xf2\xb8\xd0\x64\x6f\xde\xa4\xb5\x6b\x56\x6b\xfd\xba\xb5\ \xca\xcf\xcb\xb5\x9e\x03\x54\x5a\x4a\x6a\xaa\xea\x37\x68\xa4\x26\ \x4d\x9b\xab\x71\x93\xa6\xd6\x73\x00\xec\x87\x2b\x01\xb0\x38\xc8\ \xc3\xda\xb4\xef\x18\xe4\x71\x31\x55\x5c\x54\xa4\x69\x4f\x4e\xd2\ \xf4\xe7\xa7\xea\xf3\x4f\x3f\x56\x69\x69\xa9\xf5\x24\x20\x50\x87\ \xb6\x69\xaf\x93\x87\x8d\xd0\x45\x97\x8f\x55\xad\xda\x75\xac\xe7\ \x00\xd8\xc5\x95\x5b\x00\xef\x4a\x2a\x0e\xea\xb0\x9e\x7d\xaa\xf4\ \x71\x02\xa1\x59\xb8\xe0\x13\x0d\xee\x73\xa4\x6e\xb9\xfe\x2a\x2d\ \xf8\xcf\x87\x3c\xf9\x23\x21\x2d\xff\xe6\x2b\x3d\xf4\x7f\xb7\xea\ \xf8\x63\xdb\xe9\xb5\x97\x9e\xb5\x9e\x03\x60\x17\x57\x02\x60\xb3\ \xa4\xd7\x82\x38\xa8\x59\x8b\x56\xea\xd5\x6f\x60\x10\x47\xc5\xd4\ \x47\x1f\xbc\xa7\x5f\x9c\x7e\x82\x96\x7f\xf3\x95\xf5\x14\x20\x14\ \x5b\x36\x6d\xd4\xd5\x97\x9c\xa3\x27\x1f\x7f\xd8\x7a\x0a\x00\xb9\ \x13\x00\x92\x74\x9b\xa4\x2a\x7f\x8e\xef\x95\x63\xc7\x2b\x39\xd9\ \x95\x3b\x1b\xfb\xb7\xee\xc7\x35\xba\x7c\xcc\x70\xe5\xe6\xec\xb4\ \x9e\x02\x84\xaa\xac\xac\x4c\x13\x7e\x7f\x35\x6f\xd5\x05\x1c\xe0\ \x52\x00\x7c\x2a\xe9\xfe\xaa\x1c\xd0\x67\xc0\x20\x9d\x7d\xfe\xc5\ \x01\xcd\x89\x9d\x9b\xae\xbb\x82\x2f\x2e\x82\xb7\x4a\x4b\x4b\x75\ \xfd\xaf\x2f\x54\x51\x61\xa1\xf5\x14\xc0\x6b\x2e\x05\x80\x24\xfd\ \x5e\x52\xa5\x3e\xc6\xaf\xe3\x91\x47\xeb\xa1\xc7\x9e\x51\x24\x12\ \x09\x78\x52\xb0\xbe\x5e\xba\x58\xef\xbe\xf5\xaa\xf5\x0c\xc0\xd4\ \x9a\xd5\x2b\xf5\xca\xbf\x9e\xb6\x9e\x01\x78\xcd\xb5\x00\x28\x96\ \x74\x86\xa4\x7f\x56\xe4\x0f\x0d\x1c\x3c\x54\x53\xfe\x35\x33\x2e\ \x5e\x61\xfc\xe2\xb3\x4f\xaa\xac\xac\xcc\x7a\x06\x60\xee\x85\x69\ \x93\xad\x27\x00\x5e\x73\x2d\x00\x24\xa9\x50\xe5\xdf\x0c\x38\x54\ \xd2\xc2\x9f\xfb\x07\x0f\x6b\xdb\x41\xf7\x3f\x3a\x55\x93\xa6\xbc\ \xac\xda\x75\xea\x86\xb1\xad\xca\x3e\xfc\xf7\x6c\xeb\x09\x80\x13\ \x3e\x9b\xff\x91\x0a\x0a\xf2\xad\x67\x00\xde\x72\xf9\xd5\x72\xaf\ \xee\xfa\xe9\x26\x69\x80\xa4\xf6\xed\x3b\x76\xee\xda\xb9\xcb\x31\ \x9d\x5b\xb4\x3a\x44\x7d\xfa\x9f\xa8\x8e\x47\x76\x51\x34\xea\x62\ \xc3\x1c\xd8\xb7\xcb\xbe\xb4\x9e\x00\x38\xa1\xa0\x20\x5f\xab\x57\ \xae\xd0\x61\x6d\x3b\x58\x4f\x01\xbc\xe4\x72\x00\xec\x36\x7f\xd7\ \x8f\xde\x98\xfb\xf9\x58\x49\xf7\xda\xce\xa9\xbc\xfc\xfc\x3c\xe5\ \xf1\x09\x7f\xc0\x4f\x36\x6f\xdc\x40\x00\x00\x46\xe2\xeb\xaf\xcf\ \x71\x2e\x29\x9a\xe4\xfc\x8b\x14\x81\x30\x25\xa7\x04\xfa\x35\x20\ \x00\x2a\x80\x00\x08\x51\x4a\x6a\xaa\xaa\xd7\xa8\x69\x3d\x03\x70\ \x46\xbd\xfa\x0d\xac\x27\x00\xde\x22\x00\x42\xd6\xb1\xd3\xd1\xd6\ \x13\x00\x27\xd4\xa8\x59\x4b\xcd\x5b\x1e\x62\x3d\x03\xf0\x16\x01\ \x10\xb2\x9e\x7d\xe3\xe3\x7b\x0a\x80\x58\x3b\xb6\x67\x3f\x25\x25\ \x25\x59\xcf\x00\xbc\x45\x00\x84\x6c\xc4\xb9\x17\x2a\x25\x35\xd5\ \x7a\x06\x60\xee\xdc\x5f\xfe\xca\x7a\x02\xe0\x35\x02\x20\x64\x8d\ \x9b\x34\xd5\x59\xe7\x5c\x60\x3d\x03\x30\xd5\xe9\xa8\x6e\xea\x77\ \xc2\x60\xeb\x19\x80\xd7\x08\x00\x03\xe3\x27\xdc\xad\xe6\x2d\x5b\ \x5b\xcf\x00\x4c\xa4\xa7\x67\xe8\xde\xbf\x3d\xc9\x3b\x62\x00\x63\ \x04\x80\x81\xea\x35\x6a\x6a\xea\x4b\xef\xaa\x45\x2b\x5e\x00\x05\ \xbf\x64\x64\x64\xea\x91\x27\xff\xc5\x7b\xff\x01\x07\x10\x00\x46\ \x9a\xb7\x6c\xad\x67\x5f\x9d\xa3\x13\x06\x9f\x66\x3d\x05\x08\xc5\ \x11\x47\x76\xd1\xb3\x33\xe6\x72\xe9\x1f\x70\x44\x3c\x7c\x12\x60\ \xc2\x6a\x9c\xd5\x4c\x8f\x4d\x7d\x45\x1f\xbe\x3f\x5b\xd3\x5f\x98\ \xa6\xd9\x6f\xcf\xd0\x86\xf5\x3f\x5a\xcf\x02\x02\x53\xa3\x66\x2d\ \xf5\xee\x37\x50\x27\x0f\x1b\xa1\x21\x43\xcf\xe2\x55\xff\x80\x43\ \x08\x00\x07\xf4\xe8\x3d\x40\x3d\x7a\x0f\x90\x54\xfe\xf9\xe8\x9b\ \x37\x6e\x50\x71\x71\xb1\xf1\x2a\xa0\x6a\xea\x37\x6c\xa4\xcc\xcc\ \x6a\xd6\x33\x00\x1c\x00\x01\xe0\x98\xb4\xb4\x74\x65\x35\x6b\x61\ \x3d\x03\x00\x90\xe0\x78\x0d\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\ \x10\x01\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\ \x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\ \x43\xf1\x12\x00\x59\x92\x8e\x7b\xec\xe1\x7b\xda\x7e\xfa\xc9\x3c\ \xad\x59\xbd\xd2\x7a\x0f\x00\x00\x71\xcd\xe5\x4f\x02\x6c\x25\xe9\ \xd7\x92\x86\x49\x3a\x54\x92\x6e\xbf\xf9\xba\x9f\xfe\xcb\xc6\x59\ \xcd\x74\xc2\x49\xa7\xea\x82\x4b\xaf\xe6\x9b\xc5\x00\x00\xa8\x20\ \x17\xaf\x00\xa4\x48\xba\x43\xd2\x37\x92\xae\xd5\xae\x27\xff\x7d\ \xad\x5b\xfb\x83\xa6\x3e\xf1\x88\x06\xf5\xec\xa8\x1b\xc7\xfd\x4a\ \xb9\xb9\x39\x61\x6e\x04\x00\x20\xae\xb9\x16\x00\x99\x92\x66\x4a\ \xba\x41\x07\x79\x75\xa2\xac\xac\x4c\xd3\x26\x3f\xaa\x33\x06\x1d\ \xa7\xec\xcd\x9b\x62\x3a\x0e\x00\x80\x44\xe1\x52\x00\x44\x24\xbd\ \x20\xa9\x6f\x65\xfe\xf0\xd7\x4b\x17\x6b\xcc\xc8\x21\x2a\x2a\x2c\ \x0c\x76\x15\x00\x00\x09\xc8\xa5\x00\x38\x5f\xd2\x90\xaa\x1c\xb0\ \xe8\xf3\xf9\x7a\x6c\xe2\xbd\x01\xcd\x01\x00\x20\x71\xb9\x12\x00\ \x11\x49\x7f\x0a\xe2\xa0\x87\xef\xbb\x43\x79\x79\xb9\x41\x1c\x05\ \x00\x40\xc2\x72\x25\x00\xba\x4b\x6a\x19\xc4\x41\x39\x3b\x77\x68\ \xee\xac\xb7\x82\x38\x0a\x00\x80\x84\xe5\x4a\x00\x1c\x1f\xe4\x61\ \xf3\xe6\xbc\x1b\xe4\x71\x00\x00\x24\x1c\x57\x02\xa0\x59\x90\x87\ \xad\xfb\x71\x4d\x90\xc7\x01\x00\x90\x70\x5c\x09\x80\x06\x41\x1e\ \xb6\x71\xc3\xba\x20\x8f\x03\x00\x20\xe1\xb8\x12\x00\x81\x7e\x22\ \x61\x71\x71\x71\x90\xc7\x01\x00\x90\x70\x5c\x09\x00\x00\x00\x10\ \x22\x97\xbf\x0b\xc0\x5b\x39\x3b\x77\x70\x15\x03\x71\xaf\x56\xed\ \x3a\xd6\x13\x00\xfc\x0c\x02\xc0\x01\x4b\xbe\xf8\x4c\xd3\x5f\x9c\ \xa6\xd9\x6f\xcf\xd0\x0f\xab\xbe\x57\x7e\x7e\x9e\xf5\x24\xa0\xca\ \x52\x52\x53\xd5\xb0\x51\x13\xf5\xee\x37\x50\x27\x0f\x1b\xa1\x3e\ \x03\x06\x29\x12\x89\x58\xcf\x02\xb0\x0b\x01\x60\x68\xcb\xa6\x8d\ \xba\xed\xa6\x71\x7a\xf9\xf9\x29\x2a\x2b\x2b\xb3\x9e\x03\x04\xaa\ \xa8\xb0\x50\x6b\x56\xaf\xd4\xb3\x53\x1e\xd7\xb3\x53\x1e\xd7\xb1\ \xbd\xfa\xe9\xd6\xbb\x27\xaa\x4d\xbb\xc3\xad\xa7\x01\x10\xaf\x01\ \x30\xb3\xc9\xec\x64\xe4\x00\x00\x08\x36\x49\x44\x41\x54\xf6\x87\ \x55\x3a\xeb\xe4\xde\x7a\xe9\xb9\xa7\x78\xf2\x87\x17\x3e\xfe\x60\ \x8e\x86\x0f\xee\xa9\xf9\x1f\xbd\x6f\x3d\x05\x80\x08\x00\x13\xf9\ \xf9\x79\x1a\x33\x62\xb0\x56\x2c\xff\xda\x7a\x0a\x10\xaa\x1d\xdb\ \xb7\x69\xcc\xc8\x21\x5a\xb9\x62\xb9\xf5\x14\xc0\x7b\x04\x80\x81\ \xbb\x6f\x1d\xaf\x6f\xbf\x5e\x6a\x3d\x03\x30\x91\x9b\xb3\x53\xd7\ \x5d\x39\x86\x2b\x5f\x80\x31\x02\x20\x64\x9b\x37\x6d\xd0\xd4\x27\ \x1e\xb1\x9e\x01\x98\x9a\xff\xf1\x07\xfa\x60\xce\x4c\xeb\x19\x80\ \xd7\x08\x80\x90\x3d\x37\xe5\x1f\x2a\x28\xc8\xb7\x9e\x01\x98\x23\ \x84\x01\x5b\x04\x40\xc8\xf8\x5b\x0f\x50\xee\xc3\xf7\x67\xab\xb4\ \xb4\xd4\x7a\x06\xe0\x2d\x02\x20\x64\x8b\xbf\x58\x60\x3d\x01\x70\ \xc2\xb6\xad\xd9\x5a\xbd\x72\x85\xf5\x0c\xc0\x5b\x04\x40\x88\x8a\ \x0a\x0b\xb5\x7d\xdb\x56\xeb\x19\x80\x33\x36\x6d\x5c\x6f\x3d\x01\ \xf0\x16\x01\x10\xa2\xe2\x92\x62\x5e\xf9\x0c\xec\xa1\xa8\xa8\xd0\ \x7a\x02\xe0\x2d\x02\x20\x44\x19\x19\x99\xca\xc8\xc8\xb4\x9e\x01\ \x38\xa3\x5e\xfd\x86\xd6\x13\x00\x6f\x11\x00\x21\x3b\xa4\x4d\x3b\ \xeb\x09\x80\x13\x52\xd3\xd2\xd4\xbc\x65\x6b\xeb\x19\x80\xb7\x08\ \x80\x90\x1d\xd7\xab\xbf\xf5\x04\xc0\x09\x9d\xbb\x74\x57\x7a\x7a\ \x86\xf5\x0c\xc0\x5b\x04\x40\xc8\xce\x3a\xe7\x02\xbe\x11\x0d\x90\ \x34\x7c\xd4\x18\xeb\x09\x80\xd7\x08\x80\x90\xb5\xef\x78\xa4\x7a\ \xf5\x1b\x68\x3d\x03\x30\xd5\xa8\x71\x96\x4e\x1f\x71\xae\xf5\x0c\ \xc0\x6b\x04\x80\x81\x3b\xee\x7d\x54\xd5\x6b\xd4\xb4\x9e\x01\x98\ \x88\x44\x22\xba\xe3\xbe\x49\x4a\x4b\x4b\xb7\x9e\x02\x78\x8d\x00\ \x30\xd0\xbc\x65\x6b\x3d\xf0\xe8\x54\x7e\x01\xc2\x4b\xd7\xfd\xe1\ \x76\x1d\x3f\xe8\x14\xeb\x19\x80\xf7\x08\x00\x23\xc7\x9f\x74\xaa\ \x9e\x78\xee\x75\x35\x69\xda\xdc\x7a\x0a\x10\x8a\xea\x35\x6a\xea\ \xce\xfb\xff\xae\x2b\x7e\x73\x83\xf5\x14\x00\x22\x00\x4c\xf5\xe8\ \x3d\x40\x33\x3f\x5a\xaa\x71\xe3\x6f\xd5\x61\x6d\x3b\x58\xcf\x01\ \x62\xa2\x51\xe3\x2c\x8d\xb9\xe4\xd7\x7a\xf7\xe3\xaf\x74\xf6\xf9\ \x17\x5b\xcf\x01\xb0\x4b\xb2\xf5\x00\xdf\x65\x66\x56\xd3\x55\xe3\ \xfe\xa0\xab\xc6\xfd\x41\xab\xbe\xff\x4e\x3f\xac\xfe\x5e\x1b\x7e\ \x5c\xab\xbc\xbc\x5c\xeb\x69\x40\xa5\xa5\xa4\xa6\xaa\x7e\x83\x46\ \xca\x6a\xd6\x42\x87\xb5\xed\xa0\x68\x94\xbf\x6b\x00\xae\x21\x00\ \x1c\xd2\xa2\xd5\x21\x6a\xd1\xea\x10\xeb\x19\x00\x00\x0f\x90\xe5\ \x00\x00\x78\x88\x00\x00\x00\xe0\x67\x14\xe4\xe5\x04\x7d\x64\x51\ \xd0\x07\x56\x06\x01\x00\x00\xc0\x01\x94\x14\x17\x69\xf3\xfa\x55\ \x41\x1f\xbb\x3d\xe8\x03\x2b\x83\x00\x00\x00\xe0\x00\x96\xfc\x67\ \x66\x2c\xae\x00\xec\x08\xfa\xc0\xca\x20\x00\x00\x00\xd8\x8f\xb2\ \xd2\x52\x4d\x7f\xfc\x4f\xb1\x38\x3a\xf0\x4b\x0a\x95\x41\x00\x00\ \x00\xb0\x1f\x2f\xfc\x6d\xbc\x96\x2f\xfe\x28\x16\x47\x2f\x8b\xc5\ \xa1\x15\xc5\xdb\x00\x01\x00\xd8\x43\xce\xf6\x2d\x7a\xfa\x81\x71\ \x7a\x7f\xc6\xe4\x58\x3d\xc4\xd2\x58\x1d\x5c\x11\x04\x00\x00\x84\ \x64\xe9\xa7\xb3\x14\x4d\xe2\xd7\xae\x8b\x4a\x8a\x8b\xb4\x6d\xf3\ \x3a\x7d\xfb\xc5\x3c\xfd\x67\xf6\x0b\xca\xdd\xb1\x35\x56\x0f\xb5\ \x52\xd2\xf7\xb1\x3a\xbc\x22\xf8\x37\x11\x00\x42\x72\xcf\x6f\x86\ \x58\x4f\x80\xbd\x59\xd6\x03\x76\xe3\x35\x00\x00\x00\x84\xe7\x35\ \xeb\x01\xbb\x11\x00\x00\x00\x84\x23\x5b\xd2\x0c\xeb\x11\xbb\x11\ \x00\x00\x00\x84\xe3\x69\x49\x05\xd6\x23\x76\x23\x00\x00\x00\x88\ \xbd\x12\x49\xf7\x5b\x8f\xd8\x13\x01\x00\x00\x40\xec\x4d\x95\xf4\ \x8d\xf5\x88\x3d\x11\x00\x00\x00\xc4\x56\x9e\xa4\x3f\x5a\x8f\xd8\ \x17\x01\x00\x00\x40\x6c\xdd\x26\x69\x85\xf5\x88\x7d\x11\x00\x00\ \x00\xc4\xce\x02\x49\xf7\x58\x8f\xd8\x1f\x02\x00\x00\x80\xd8\xd8\ \x29\xe9\x17\x72\xe8\x95\xff\x7b\x22\x00\x00\x00\x08\x5e\x89\xa4\ \xf3\xe4\xc8\x17\xff\xec\x0f\x01\x00\x00\x40\xf0\xc6\x4a\x9a\x6e\ \x3d\xe2\xe7\x10\x00\x00\x00\x04\xa7\x4c\xd2\xb5\x92\x1e\xb2\x1e\ \xf2\xbf\xf0\x65\x40\x00\x00\x04\xa3\x58\xd2\x65\x92\xfe\x61\x3d\ \xe4\x60\x10\x00\x00\x00\x54\xdd\x0f\x92\xce\x91\xf4\xbe\xf5\x90\ \x83\xc5\x2d\x00\x00\x00\xaa\xe6\x45\x49\x47\x29\x8e\x9e\xfc\x25\ \x02\x00\x00\x80\xca\x5a\x2e\xe9\x14\x49\x67\x49\xda\x6c\xbc\xa5\ \xc2\xb8\x05\x00\x00\x40\xc5\xac\x90\xf4\x80\xa4\x47\xe4\xe8\x7b\ \xfc\x0f\x06\x01\x00\x00\xc0\xff\x96\x2b\xe9\x65\x49\x4f\x49\x7a\ \x47\xe5\xef\xf3\x8f\x6b\x04\x00\x00\x00\x7b\x2b\x95\xb4\x52\xd2\ \xd7\x92\xe6\x4b\x9a\x25\x69\x9e\xa4\x7c\xcb\x51\x41\x23\x00\x00\ \x20\x3c\x3d\x24\x15\x59\x8f\xc0\x01\x6d\x53\xf9\xc7\xf7\x6e\x55\ \x82\x3d\xd9\xef\x0f\x01\x00\x00\xe1\x59\x20\xa9\xd0\x7a\x04\x20\ \xf1\x2e\x00\x00\x00\xbc\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\ \x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\ \x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\x00\x00\ \x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\ \x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\ \xf0\x10\x01\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\ \xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\ \xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\ \x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\ \x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\ \x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\x00\ \x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\ \x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\ \x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\ \x00\xe0\x21\x02\x00\x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\ \x00\xc0\x43\x04\x00\x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\ \x00\x80\x87\x08\x00\x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x02\x00\ \x00\x00\x0f\x11\x00\x00\x00\x78\x88\x00\x00\x00\xc0\x43\x04\x00\ \x00\x00\x1e\x22\x00\x00\x00\xf0\x10\x01\x00\x00\x80\x87\x08\x00\ \x00\x00\x3c\x44\x00\x00\x00\xe0\x21\x57\x02\xa0\x20\xc8\xc3\x76\ \x6c\xdf\x16\xe4\x71\x00\x3c\xb4\x7d\xdb\xd6\xa0\x8f\x2c\x91\x54\ \x14\xf4\xa1\x40\x65\xb9\x12\x00\x3b\x82\x3c\x6c\xed\x9a\x55\xca\ \xcd\xd9\x19\xe4\x91\x00\x3c\xf3\xcd\xb2\x2f\x83\x3e\x72\xa7\xa4\ \xb2\xa0\x0f\x05\x2a\xcb\x95\x00\xd8\x1e\xe4\x61\x85\x05\x05\x7a\ \x7b\xc6\xcb\x41\x1e\x09\xc0\x23\x5b\xb3\xb7\xe8\xfd\xf7\xde\x09\ \xfa\x58\x2e\x4d\xc2\x29\xae\x04\xc0\x8a\xa0\x0f\xbc\xff\xae\x09\ \xca\xcd\xcd\x09\xfa\x58\x00\x1e\xb8\xff\x2f\x7f\x8c\xc5\xef\x8f\ \xef\x82\x3e\x10\xa8\x0a\x57\x02\x60\x59\xd0\x07\xae\x5c\xf1\xad\ \xc6\x5e\x76\x9e\x0a\x0b\x02\x7d\x79\x01\x80\x04\xf7\xfc\xb4\x27\ \xf4\xe4\x63\x7f\x8d\xc5\xd1\x81\xff\x9e\x03\xaa\xc2\x95\x00\x58\ \xac\x18\xdc\x1b\x7b\xfb\xf5\x97\x75\xf6\x69\xfd\xb4\x68\xe1\xa7\ \x41\x1f\x0d\x20\xc1\x64\x6f\xd9\xac\x5b\xae\xbf\x4a\xbf\xbb\xfa\ \x22\x95\x95\xc5\xe4\x56\xfd\xe2\x58\x1c\x0a\x54\x56\xc4\x7a\xc0\ \x1e\xbe\x94\xd4\x21\x56\x87\x77\xea\xdc\x55\x5d\xba\xf7\x54\xfd\ \x86\x8d\x94\x9c\x94\x1c\xab\x87\x01\x10\x67\xb2\xb3\x37\xeb\xdb\ \xaf\x97\x6a\xde\x9c\x77\x95\x9f\x9f\x17\xcb\x87\x3a\x42\xd2\x92\ \x58\x3e\x00\x50\x11\x2e\x05\xc0\x5f\x25\x5d\x69\x3d\x02\x00\x62\ \x60\x9d\xa4\x2c\xf1\x2e\x00\x38\xc4\x95\x5b\x00\x92\xc4\xcb\xf6\ \x01\x24\xaa\x97\xc4\x93\x3f\x1c\xe3\xd2\x15\x80\xa8\xa4\xef\x25\ \x35\x37\xde\x01\x00\x41\xeb\x29\xe9\x43\xeb\x11\xc0\x9e\x5c\xba\ \x02\x50\x2a\x69\xb2\xf5\x08\x00\x08\xd8\x52\x49\x1f\x59\x8f\x00\ \xf6\xe5\x52\x00\x48\xd2\x03\x2a\xff\xb4\x2c\x00\x48\x14\x7f\x16\ \x97\xff\xe1\xa0\x24\xeb\x01\xfb\xc8\x93\x54\x5f\x52\x0f\xeb\x21\ \x00\x10\x80\xe5\x92\x7e\xa5\xf2\x2b\x9c\x80\x53\x5c\x7a\x0d\xc0\ \x6e\x75\x24\x7d\x25\xa9\xa1\xf5\x10\x00\xa8\xa2\x61\x92\x5e\xb1\ \x1e\x01\xec\x8f\x6b\xb7\x00\x24\x29\x5b\xd2\xef\xad\x47\x00\x40\ \x15\xbd\x29\x9e\xfc\xe1\x30\xd7\x6e\x01\xec\xb6\x50\xd2\x51\x92\ \xda\x5b\x0f\x01\x80\x4a\xd8\x22\xe9\x54\xf1\x05\x40\x70\x98\x8b\ \xb7\x00\x76\xab\x23\x69\x81\xa4\x56\xc6\x3b\x00\xa0\x22\xca\x24\ \x9d\x2e\xfe\xf6\x0f\xc7\xb9\x78\x0b\x60\xb7\x6c\x49\xc3\x15\xf0\ \x57\x05\x03\x40\x8c\x8d\x17\x4f\xfe\x88\x03\x2e\x5f\x01\xd8\x6d\ \x80\xa4\x37\x24\xa5\x59\x0f\x01\x80\xff\x61\xa2\xf8\x48\x73\xc4\ \x09\x97\xaf\x00\xec\x36\x5b\xe5\x97\xd3\x02\xff\x72\x6e\x00\x08\ \xd0\x03\x92\x7e\x6d\x3d\x02\x38\x58\xf1\x70\x05\x60\xb7\x63\x25\ \xbd\x2a\xa9\x81\xf5\x10\x00\xd8\x43\xa9\xca\x2f\xfb\xff\xc5\x7a\ \x08\x50\x11\xf1\x14\x00\x92\xd4\x4c\xd2\x34\x49\x7d\xac\x87\x00\ \x80\xa4\x4d\x92\x46\xab\xfc\x36\x25\x10\x57\x5c\x7d\x1b\xe0\x81\ \x6c\x97\xf4\x94\xa4\x62\x49\xc7\x49\x4a\xb1\x9d\x03\xc0\x63\xaf\ \x48\x3a\x4d\xe5\xef\x56\x02\xe2\x4e\xbc\x5d\x01\xd8\xd3\xa1\x92\ \xee\x53\xf9\xff\x00\x01\x20\x2c\xdf\x48\xba\x56\xd2\x6b\xd6\x43\ \x80\xaa\x88\x87\x17\x01\x1e\xc8\x72\x49\x43\x25\x75\x95\xf4\x2f\ \x49\x25\xb6\x73\x00\x24\xb8\xc5\x92\xce\x93\xd4\x41\x3c\xf9\x23\ \x01\xc4\xf3\x15\x80\x7d\x65\x49\xfa\x85\xa4\x73\x54\xfe\x29\x82\ \xf1\x1c\x37\x00\xdc\xb0\x46\xd2\x4b\x2a\xbf\xf5\xf8\x89\xf1\x16\ \x20\x50\x89\x14\x00\x7b\xaa\x27\xa9\xbf\xa4\x6e\x92\xda\xee\xfa\ \xa9\x2b\xa9\xc6\xae\x1f\x00\xd8\x2d\x5f\xe5\x5f\x43\x9e\x2d\xe9\ \x7b\x49\x5f\x4b\xfa\x42\xd2\x1c\x49\xcb\xec\x66\x01\xb1\xf5\xff\ \xef\x33\xc4\x90\xe1\x3a\x46\xfb\x00\x00\x00\x00\x49\x45\x4e\x44\ \xae\x42\x60\x82\ \x00\x00\x58\xed\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x06\x00\x00\x00\xf4\x78\xd4\xfa\ \x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ \x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ \x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ \x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ \x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ \x41\x54\x78\x9c\xec\xdd\x79\x7c\x1d\x65\xbd\x3f\xf0\xcf\x33\xcb\ \x59\x93\x9c\xa4\x4d\x7b\xd2\x96\x26\x6d\x93\xb6\xd0\x22\x08\xb2\ \xef\x8a\xb2\x78\x71\x61\x51\xbc\x8a\xb8\xe0\x86\x80\x0b\x17\x2f\ \x7a\x97\x1f\x6e\x17\x45\x11\xae\xa2\x5e\xf0\x72\xd5\x8b\xdc\x9f\ \xa0\x28\x3f\x15\x01\x17\x94\x1d\x11\x2c\xb4\xb7\x94\xd2\x36\xb4\ \x4d\xd7\xb4\xa7\x4d\xa7\x49\xe6\xac\x33\xf3\xfb\x23\xe9\x16\xb2\ \xe7\x9c\xf3\x9d\x99\xf3\x79\xbf\x5e\x7d\x35\x4d\xce\x99\xf9\xbc\ \xa0\xf0\x7c\xce\x33\xcf\x3c\xa3\x3c\xcf\x03\x11\xf9\x9b\x6d\x65\ \x12\x00\xa6\x0f\xf3\x6b\xda\x41\x5f\x37\x02\x88\x00\x88\x0e\xfe\ \x1e\x19\xe6\xcf\x87\xfc\x6c\x5b\x57\x97\xae\x94\x02\x94\xf2\x14\ \xe0\x41\x29\x4f\x29\xe5\x02\xd8\xf7\xbb\xa3\x94\x72\x00\x38\x50\ \xca\x51\x40\x49\x29\x65\x2b\xa5\x2c\x28\xb5\x5b\x29\xb5\x53\x29\ \xb5\x5d\x29\xb5\x05\xc0\x26\xa5\xd4\x06\x28\xd5\x99\x6e\x6d\xcf\ \x54\xed\x1f\x0e\x11\x4d\x8a\x62\x01\x20\x92\x63\x5b\x19\x03\xc0\ \x5c\x00\x6d\x83\xbf\xe6\x0d\xfe\xde\x0a\x60\x06\x0e\x0c\xee\xb1\ \x4a\x9c\x7f\x5b\x57\x57\x25\x0e\x0b\xa5\x14\x94\xa6\x39\x9a\xa6\ \x15\x95\x52\xb6\xa6\x69\xbb\x94\xa6\x6d\xd1\x34\xad\x53\x29\xb5\ \x52\x29\xb5\x0c\x4a\x3d\x9f\x6e\x6d\xb7\x2b\x12\x80\x88\xc6\xc4\ \x02\x40\x54\x41\xb6\x95\x51\x18\x18\xcc\x17\xe1\xc0\xe0\x7e\xf0\ \x40\x3f\x1b\x80\x2e\x14\xaf\x62\x05\x60\xbc\x34\x5d\x77\x74\x5d\ \xef\xd7\x34\x6d\xb7\xd2\xb4\xad\x4a\xa9\x4e\x4d\xd3\x5e\x56\x4a\ \x3d\x01\xa5\x9e\x4e\xb7\xb6\xbb\xa2\x01\x89\x42\x8c\x05\x80\xa8\ \x4c\x6c\x2b\xd3\x02\xe0\x48\x00\x4b\x07\x7f\xdf\xf7\x75\xbd\x64\ \xae\xd1\x48\x17\x80\xd1\x28\xa5\x3c\xdd\x30\xfa\x75\x5d\xdf\xaa\ \xe9\xfa\x2a\x4d\xd3\x9e\x51\x4a\x3d\x9c\x6e\xeb\x58\x21\x9d\x8d\ \x28\x0c\x58\x00\x88\x26\xc8\xb6\x32\x29\x00\xaf\xc3\x81\x41\x7e\ \xdf\xaf\xe9\x92\xb9\x26\xc3\xcf\x05\x60\x24\x9a\xa6\x79\xba\x61\ \x58\x9a\xae\x6f\xd6\x34\x6d\xa5\xa6\x69\x4f\x2a\x4d\xfb\x75\xba\ \xb5\x7d\x93\x74\x36\xa2\x20\x61\x01\x20\x1a\xc5\xe0\x14\xfe\x22\ \x00\xa7\x1c\xf4\xeb\x08\x00\x4a\x32\x57\xb9\x04\xb1\x00\x8c\xc4\ \x30\x8c\xbc\x6e\x18\x1b\x74\x5d\x7f\x5a\xe9\xfa\x7d\x4a\xa9\x87\ \x79\x09\x81\x68\x64\x2c\x00\x44\x07\xb1\xad\x4c\x12\xc0\xf1\x38\ \x30\xd8\x9f\x8c\x81\x95\xf6\xa1\x14\xa6\x02\x30\x94\xa6\x69\x9e\ \x61\x9a\x19\x5d\xd7\x97\x6b\xba\xfe\xb0\xd2\xb4\xbb\xd3\xad\xed\ \xdd\xd2\xb9\x88\xfc\x82\x05\x80\x6a\x9a\x6d\x65\x66\x00\x38\x1b\ \xc0\xa9\x18\x18\xf0\x8f\x02\x60\x88\x86\xaa\xa2\x30\x17\x80\xe1\ \x18\xa6\x99\xd5\x0d\xa3\x53\xd7\xf5\xc7\x34\x4d\xbb\x3d\xdd\xd6\ \xb1\x52\x3a\x13\x91\x14\x16\x00\xaa\x29\xb6\x95\x31\x31\x30\xd8\ \x9f\x03\xe0\x5c\x00\xc7\x20\x24\xd3\xf9\x93\x51\x6b\x05\x60\x28\ \xc3\x34\xb3\x86\x69\x2e\xd7\x75\xfd\x3e\xa5\x69\x77\xa4\x5b\xdb\ \xfb\xa4\x33\x11\x55\x0b\x0b\x00\x85\x9e\x6d\x65\x16\xe1\xc0\x80\ \x7f\x16\x80\x3a\xd1\x40\x3e\x52\xeb\x05\xe0\x60\x4a\x29\x98\x91\ \xc8\x4e\xdd\x30\x9e\xd4\x74\xfd\xce\x96\xb6\x8e\x07\xa5\x33\x11\ \x55\x12\x0b\x00\x85\x8e\x6d\x65\x1a\x01\xbc\x09\x03\x03\xfe\x39\ \x18\xb8\xe7\x9e\x86\xc1\x02\x30\x32\x5d\xd7\x4b\x86\x69\x76\xea\ \x86\xf1\xa0\xa6\x69\xb7\xa5\xdb\x3a\xd6\x4b\x67\x22\x2a\x27\x16\ \x00\x0a\x05\xdb\xca\x34\x03\x78\x27\x80\x4b\x30\x70\x4d\xbf\x66\ \xae\xe3\x4f\x05\x0b\xc0\xf8\x99\x91\xc8\x6e\xc3\x34\x1f\xd4\x75\ \xfd\xdf\xd2\x6d\x1d\xab\xa5\xf3\x10\x4d\x15\x0b\x00\x05\xd6\xe0\ \x02\xbe\x8b\x30\x30\xe8\x9f\x05\x0e\xfa\x13\xc6\x02\x30\x39\x66\ \x24\xd2\x63\x98\xe6\xc3\xba\xae\x7f\x35\xdd\xd6\xb1\x4a\x3a\x0f\ \xd1\x64\xb0\x00\x50\xa0\xd8\x56\x26\x8d\x81\x41\xff\x5d\x00\xce\ \x80\xe0\x36\xba\x61\xc0\x02\x30\x75\x66\x24\xb2\xc7\x30\xcd\xdf\ \xe9\xba\x7e\x23\x77\x29\xa4\x20\x61\x01\x20\xdf\xb3\xad\xcc\x2c\ \x00\x17\x63\xe0\x93\xfe\xe9\x00\x34\xd9\x44\xe1\xc1\x02\x50\x5e\ \x66\x24\x62\x19\xa6\xf9\xfb\xc1\x32\xf0\xa2\x74\x1e\xa2\xd1\xb0\ \x00\x90\x2f\x0d\xde\xae\x77\x01\x80\x2b\x00\x9c\x07\x7e\xd2\xaf\ \x08\x16\x80\xca\x89\x44\xa3\x3b\x0c\xd3\xfc\x91\xa6\xeb\x5f\xe6\ \x53\x0f\xc9\x8f\x58\x00\xc8\x57\x6c\x2b\xb3\x04\x03\x83\xfe\xfb\ \x31\xf0\x38\x5c\xaa\x20\x16\x80\xca\xd3\x34\xcd\x8d\x44\xa3\x2f\ \xe8\xa6\xf9\xa5\x96\xb6\x8e\xdf\x48\xe7\x21\xda\x87\x05\x80\xc4\ \xd9\x56\xa6\x01\xc0\xa5\x18\x18\xf8\x4f\x14\x8e\x53\x53\x58\x00\ \xaa\xcb\x30\xcd\x3e\x33\x12\xb9\x5f\x37\x8c\x2f\xa4\x5b\xdb\xb7\ \x48\xe7\xa1\xda\xc6\x02\x40\x62\x6c\x2b\x73\x06\x06\x06\xfd\x4b\ \x00\x24\x84\xe3\xd4\x24\x16\x00\x19\x4a\x29\x44\xa2\xd1\x4e\xc3\ \x34\xbf\xdd\x32\x6f\xe1\x6d\xd2\x79\xa8\x36\xb1\x00\x50\x55\x0d\ \x7e\xda\xff\x08\x80\x2b\x01\x74\x08\xc7\xa9\x79\x2c\x00\xf2\x74\ \xc3\x28\x46\xa2\xd1\x87\x74\xc3\xf8\x24\x67\x05\xa8\x9a\x58\x00\ \xa8\x2a\x6c\x2b\x33\x0f\xc0\xa7\x30\x30\xf8\xd7\xcb\xa6\xa1\x7d\ \x58\x00\xfc\x43\x29\xe5\x45\x63\xb1\x17\x0c\xd3\xfc\x74\xba\xad\ \xe3\x49\xe9\x3c\x14\x7e\x2c\x00\x54\x51\xb6\x95\x39\x09\xc0\xb5\ \x18\xb8\x77\x9f\x2b\xf9\x7d\x86\x05\xc0\x9f\x22\xb1\xd8\x66\xd3\ \x34\xbf\xd4\x32\x6f\xe1\x9d\xd2\x59\x28\xbc\x58\x00\xa8\xec\x6c\ \x2b\xa3\x63\x60\xc0\xff\x2c\x80\x93\x85\xe3\xd0\x28\x58\x00\xfc\ \xcd\x34\xcd\x5e\x33\x1a\xbd\x53\xd3\xf5\xcf\xa7\x5b\xdb\x0b\xd2\ \x79\x28\x5c\x58\x00\xa8\x6c\x6c\x2b\x53\x8f\x81\x29\xfe\x4f\x81\ \x0f\xe0\x09\x04\x16\x80\x60\xd0\x75\xbd\x14\x89\xc5\x7e\xab\x1b\ \xc6\x95\xe9\xd6\xf6\x6d\xd2\x79\x28\x1c\x58\x00\x68\xca\x6c\x2b\ \x33\x13\xc0\x75\x00\x3e\x0e\xa0\x41\x38\x0e\x4d\x00\x0b\x40\xb0\ \x28\x4d\xf3\xa2\xd1\xe8\x73\x86\x69\x7e\x88\xcf\x20\xa0\xa9\x62\ \x01\xa0\x49\x1b\x7c\x18\xcf\xe7\x00\x5c\x05\xde\xc6\x17\x48\x2c\ \x00\xc1\xa4\x94\x42\x34\x16\xfb\xab\x61\x9a\x1f\xe0\x93\x09\x69\ \xb2\x58\x00\x68\xc2\x06\x1f\xbd\xbb\x6f\xe0\x4f\x0a\xc7\xa1\x29\ \x60\x01\x08\xb6\xc1\x22\xf0\xac\x61\x9a\x97\xa7\xdb\x3a\xd6\x48\ \xe7\xa1\x60\x61\x01\xa0\x71\xb3\xad\xcc\x74\x0c\x4c\xf5\x5f\x0d\ \xa0\x4e\x38\x0e\x95\x01\x0b\x40\x38\x28\xa5\xbc\x68\x3c\xfe\xac\ \x61\x18\x97\xa7\xdb\x3a\xd6\x4a\xe7\xa1\x60\x60\x01\xa0\x31\xd9\ \x56\x66\x1a\x06\x06\xfe\x6b\xc0\x81\x3f\x54\x58\x00\xc2\x65\xb0\ \x08\xfc\xc5\x30\x8c\xf7\xa7\xdb\x3a\x3a\xa5\xf3\x90\xbf\xb1\x00\ \xd0\x88\x06\x07\xfe\x6b\x31\xb0\xaa\x9f\x9b\xf7\x84\x10\x0b\x40\ \x38\x0d\x16\x81\xa7\x0d\xc3\xf8\x00\x8b\x00\x8d\x84\x05\x80\x5e\ \xc3\xb6\x32\x11\x0c\x7c\xda\xff\x57\x00\x29\xe1\x38\x54\x41\x2c\ \x00\xe1\xa6\x34\xcd\x8b\xc5\xe3\x0f\xe8\x86\xf1\xde\x74\x6b\x7b\ \x9f\x74\x1e\xf2\x17\x4d\x3a\x00\xf9\x8b\x6d\x65\xde\x09\xe0\x25\ \x00\x37\x83\x83\x3f\x51\xa0\x79\xae\xab\xb2\xfd\xfd\x6f\xcb\xf6\ \xf7\xef\xde\xb6\x7e\xcd\xd7\xa4\xf3\x90\xbf\x70\x06\x80\x00\x00\ \xb6\x95\x79\x3d\x80\x5b\x00\xbc\x51\x3a\x0b\x55\x0f\x67\x00\x6a\ \x8b\x19\x89\xf4\x44\xa2\xd1\x2b\x5b\xe6\x2d\xbc\x57\x3a\x0b\xc9\ \x63\x01\xa8\x71\xb6\x95\x69\x01\xf0\x55\x00\x1f\x02\x67\x84\x6a\ \x0e\x0b\x40\x6d\x8a\xc6\x62\x6b\xcc\x48\xe4\x5d\xe9\xb6\x8e\x15\ \xd2\x59\x48\x0e\x0b\x40\x8d\xb2\xad\x4c\x0c\x03\x7b\xf5\x7f\x01\ \x5c\xe0\x57\xb3\x58\x00\x6a\x97\x52\xca\x8b\xc5\xe3\x7f\xd0\x4d\ \xf3\xd2\x74\x6b\xfb\x1e\xe9\x3c\x54\x7d\xfc\xc4\x57\x83\x6c\x2b\ \x73\x29\x80\xd5\x00\x6e\x04\x07\x7f\xa2\x9a\xe4\x79\x9e\xca\xda\ \xf6\x39\xd9\xbe\xbe\x9d\xdb\xd6\xaf\xf9\x77\xe9\x3c\x54\x7d\x9c\ \x01\xa8\x21\xb6\x95\x39\x1c\xc0\x1d\x00\xce\x90\xce\x42\xfe\xc0\ \x19\x00\xda\xc7\x8c\x44\xac\x48\x2c\xf6\xde\x96\xb6\x8e\x07\xa5\ \xb3\x50\x75\xb0\x00\xd4\x80\xc1\xdb\xfa\xae\x07\xf0\xcf\x00\xa2\ \xc2\x71\xc8\x47\x58\x00\xe8\x60\x4a\x29\x44\xe3\xf1\x3f\x1b\xa6\ \xf9\x76\xde\x36\x18\x7e\xbc\x04\x10\x72\xb6\x95\x39\x05\xc0\x0b\ \x00\xbe\x0c\x0e\xfe\x44\x34\x0a\xcf\xf3\x90\xb3\xed\x37\x66\xfb\ \xfb\x33\xdb\x37\xac\xfd\x84\x74\x1e\xaa\x2c\xce\x00\x84\x94\x6d\ \x65\x1a\x00\x7c\x0d\xc0\x95\x00\x94\x70\x1c\xf2\x29\xce\x00\xd0\ \x68\xa2\xf1\xf8\x2a\x33\x12\x39\x2f\xdd\xda\xbe\x49\x3a\x0b\x95\ \x1f\x67\x00\x42\xc8\xb6\x32\xef\x00\xb0\x0a\xc0\x27\xc1\xc1\x9f\ \x88\x26\x29\x9f\xcd\x2e\xb1\xfb\xfa\x36\x6c\x5b\xbf\xe6\x9b\xd2\ \x59\xa8\xfc\x38\x03\x10\x22\xb6\x95\x99\x05\xe0\x36\x00\x17\x4b\ \x67\xa1\x60\xe0\x0c\x00\x8d\x57\x24\x1a\xdd\x1e\x89\x46\xdf\x9e\ \x6e\xeb\x78\x4e\x3a\x0b\x95\x07\x0b\x40\x08\xd8\x56\x46\x01\xf8\ \x18\x80\x9b\xc0\xed\x7b\x69\x02\x58\x00\x68\x22\x94\x52\x5e\x2c\ \x91\xb8\x4f\x37\x8c\xf7\xa4\x5b\xdb\x5d\xe9\x3c\x34\x35\xbc\x04\ \x10\x70\xb6\x95\x99\x0d\xe0\x61\x00\xb7\x83\x83\x3f\x11\x55\x90\ \xe7\x79\x2a\xdb\xdf\xff\xae\x7c\x36\x9b\xe9\xde\xb8\xee\x78\xe9\ \x3c\x34\x35\x2c\x00\x01\x66\x5b\x99\x8b\x01\xac\x00\x70\x8e\x74\ \x16\x22\xaa\x1d\xc5\x42\xa1\xa9\xbf\xaf\xef\x59\x6e\x20\x14\x6c\ \xbc\x04\x10\x40\xb6\x95\xa9\x07\xf0\x1d\x00\x1f\x14\x8e\x42\x01\ \xc7\x4b\x00\x34\x55\xd1\x58\x6c\xbd\x19\x8d\x9e\x9e\x6e\x6d\xdf\ \x22\x9d\x85\x26\x86\x33\x00\x01\x63\x5b\x99\x53\x01\x2c\x07\x07\ \x7f\x22\xf2\x81\x7c\x2e\x37\x3f\xdb\xd7\xb7\x61\xfb\x86\xb5\x57\ \x49\x67\xa1\x89\xe1\x0c\x40\x40\xd8\x56\xc6\x04\x70\x03\x80\xcf\ \x03\xd0\x85\xe3\x50\x48\x70\x06\x80\xca\x29\x96\x48\x3c\x63\x98\ \xe6\x9b\xd3\xad\xed\xb6\x74\x16\x1a\x1b\x67\x00\x02\xc0\xb6\x32\ \x8b\x01\x3c\x8d\x81\xad\x7c\x39\xf8\x13\x91\x2f\xe5\x6c\xfb\xe4\ \x9c\x6d\xef\xdc\xbe\x71\xdd\x79\xd2\x59\x68\x6c\x2c\x00\x3e\x67\ \x5b\x99\x2b\x01\x2c\x03\x70\x9c\x74\x16\x22\xa2\xb1\x94\x8a\xc5\ \x84\xdd\xdb\xfb\xd0\xd6\x57\x5f\xf9\xa9\x74\x16\x1a\x1d\x2f\x01\ \xf8\xd4\xe0\x56\xbe\x3f\x06\x70\xa1\x70\x14\x0a\x31\x5e\x02\xa0\ \x4a\x8a\x44\xa3\x5b\x23\xb1\xd8\x09\x5c\x20\xe8\x4f\x9c\x01\xf0\ \x21\xdb\xca\x2c\x01\xf0\x57\x70\xf0\x27\xa2\x00\x2b\xe4\xf3\xb3\ \xb3\xfd\xfd\xaf\x6e\xdf\xb8\xee\x6d\xd2\x59\xe8\xb5\x58\x00\x7c\ \xc6\xb6\x32\xef\x06\xf0\x2c\x80\xc5\xd2\x59\x88\x88\xa6\xca\x29\ \x95\x22\x76\x6f\xef\xaf\xb6\xad\x5f\x73\xab\x74\x16\x3a\x14\x2f\ \x01\xf8\x84\x6d\x65\x0c\x0c\x6c\xe5\x7b\xad\x74\x16\xaa\x1d\xbc\ \x04\x40\xd5\x14\x8b\xc7\xff\x66\x44\x22\xa7\xa5\x5b\xdb\x73\xd2\ \x59\x88\x33\x00\xbe\x60\x5b\x99\x34\x80\x47\xc0\xc1\x9f\x88\x42\ \x2c\x97\xcd\xbe\x21\x9f\xcd\x6e\xef\xde\xb8\xee\x48\xe9\x2c\xc4\ \x02\x20\xce\xb6\x32\xa7\x60\x60\x95\xff\x19\xd2\x59\x88\x88\x2a\ \xad\x58\x28\xa4\xec\xfe\xfe\x17\xb7\x6f\x58\xfb\x71\xe9\x2c\xb5\ \x8e\x05\x40\x90\x6d\x65\xae\x06\xf0\x28\x80\xd9\xc2\x51\x88\x88\ \xaa\xc6\x75\x1c\xbd\xbf\xaf\xef\xf6\xad\xaf\xbe\x72\xaf\x74\x96\ \x5a\xc6\x35\x00\x02\x6c\x2b\x13\x07\xf0\x03\x00\x97\x49\x67\xa1\ \xda\xc6\x35\x00\x24\x6d\xf0\x59\x02\xc7\xa5\x5b\xdb\x77\x4b\x67\ \xa9\x35\x9c\x01\xa8\xb2\xc1\xeb\xfd\x8f\x81\x83\x3f\x11\x11\xf2\ \xb9\xdc\xfc\x9c\x6d\x77\x71\x5d\x40\xf5\xb1\x00\x54\x91\x6d\x65\ \x96\x62\xe0\x16\x3f\x3e\x47\x9b\x88\x68\x50\xa9\x58\x4c\x66\xfb\ \xfb\x5f\xd8\xbe\x71\xdd\x3b\xa4\xb3\xd4\x12\x16\x80\x2a\xb1\xad\ \xcc\x9b\x01\x3c\x05\xa0\x4d\x3a\x0b\x11\x91\xdf\x38\x8e\x63\xd8\ \x7d\x7d\xf7\x6f\xdf\xb0\xf6\x1f\xa5\xb3\xd4\x0a\x16\x80\x2a\xb0\ \xad\xcc\x15\x00\x1e\x02\x90\x92\xce\x42\x44\xe4\x57\x9e\xeb\xaa\ \xfe\xde\xde\x9b\xb6\xbe\xfa\xca\x8f\xa5\xb3\xd4\x02\x2e\x02\xac\ \x20\xdb\xca\x28\x00\xff\x06\xe0\x0b\xd2\x59\x88\x86\xc3\x45\x80\ \xe4\x57\x83\x8f\x16\x3e\x2d\xdd\xda\xee\x4a\x67\x09\x2b\xce\x00\ \x54\x88\x6d\x65\x62\x00\xee\x01\x07\x7f\x22\xa2\x09\xcb\xd9\xf6\ \xc9\x85\x7c\x7e\x43\x77\x57\x67\xa3\x74\x96\xb0\x62\x01\xa8\x00\ \xdb\xca\xcc\x00\xf0\x27\x00\xef\x96\xce\x42\x44\x14\x54\x85\x5c\ \x6e\x6e\x7e\xe0\x0e\x81\xc3\xa5\xb3\x84\x11\x2f\x01\x94\x99\x6d\ \x65\x16\x03\x78\x10\xc0\x02\xe9\x2c\x54\x2b\x3c\x94\xbc\x1c\x1c\ \x37\x8b\x92\x67\xa3\xe4\xda\x28\x79\xd9\xc1\xdf\x6d\x94\xf6\x7f\ \x7f\xe0\x77\xe7\xa0\x9f\x3f\xba\xed\x21\x98\x2a\x36\xf8\x2b\x8e\ \xa8\x96\x40\x44\x25\x07\x7f\xd5\x23\xaa\xea\x11\x55\x0d\x88\xa9\ \x06\x44\xb5\x46\xc4\x54\x13\xe2\xaa\x11\x51\x95\x02\x3f\x3f\x50\ \xb5\xe8\x86\x51\x8c\x25\x12\x6f\x6f\x69\xeb\x78\x58\x3a\x4b\x98\ \xb0\x00\x94\x91\x6d\x65\x4e\xc0\xc0\x62\xbf\x69\xd2\x59\x28\xf8\ \x3c\xb8\xc8\x96\xba\xd1\x57\xda\x84\xbe\xe2\x46\xf4\x15\x37\xa1\ \xbf\xb4\x19\x45\xb7\xef\xc0\x20\x3f\x38\xb0\x03\x93\xfb\xef\xf8\ \xcf\xdd\xab\x26\x9d\x4f\x57\x3a\x0c\xa5\xc3\x50\x06\x0c\xcd\x44\ \x44\xc5\xd0\xa0\xcf\xc0\x34\xa3\x0d\x33\x8c\xc5\x48\xeb\x47\xa1\ \x59\x5f\x02\x05\x7d\xd2\xe7\x20\xda\x47\xd3\x34\x2f\x9e\x4c\x5e\ \xd1\x32\x6f\xe1\x8f\xa4\xb3\x84\x05\x0b\x40\x99\xd8\x56\xe6\x0c\ \x00\x0f\x00\xa8\x97\xce\x42\xc1\x52\x72\xfb\x07\x07\xf9\xae\x03\ \xbf\x17\xbb\xd0\x57\xda\x0c\xd7\x2b\x54\xf4\xdc\x53\x29\x00\xe3\ \xa1\x29\x85\xa4\x9e\x44\x83\xd1\x8c\x26\x7d\x36\xa6\x1b\xed\x98\ \xa9\x2f\x41\x8b\x71\x2c\xe2\xaa\xb9\xa2\xe7\xa6\xf0\x51\x4a\x79\ \x89\xba\xba\x4f\xb7\xcc\x5b\x78\x9b\x74\x96\x30\x60\x01\x28\x03\ \xdb\xca\x9c\x0b\xe0\x7e\x00\x71\xe9\x2c\xe4\x4f\xfb\x3f\xcd\x17\ \xbb\xd0\x57\xea\x42\x5f\x71\x13\xfa\x4a\x03\x9f\xea\x73\xce\x2e\ \xb1\x5c\x95\x2e\x00\xa3\x89\x6a\x26\xea\x8c\x14\x1a\xf5\x16\x4c\ \x33\x5a\xd1\xac\x2f\x42\xda\x38\x1a\x33\xf4\xa5\x9c\x35\xa0\x11\ \x29\xa5\x10\xaf\xab\xfb\xe7\x59\xf3\x16\xde\x28\x9d\x25\xe8\x58\ \x00\xa6\xc8\xb6\x32\x17\x62\x60\xb5\x7f\x44\x3a\x0b\xf9\x47\xc9\ \xb5\xb1\x2b\xbf\x1c\x99\xdc\x32\x64\xf2\x2f\xa2\xb7\xb8\xa1\xe2\ \x9f\xe6\x27\x43\xb2\x00\x8c\x44\x53\x0a\x75\x7a\x3d\x66\x45\x3a\ \x30\x2f\x72\x2a\x16\x45\x2e\xe0\x6c\x01\x1d\x42\x29\x85\x78\x32\ \x79\xd3\xac\xf9\x8b\x3e\x2f\x9d\x25\xc8\x58\x00\xa6\xc0\xb6\x32\ \xef\x03\xf0\x63\x00\x86\x70\x14\x12\xe6\x7a\x05\xec\xce\xff\x2f\ \x76\xe6\x96\x21\x93\x5f\x86\x3d\xf9\x57\xe0\xc1\x91\x8e\x35\x26\ \x3f\x16\x80\xa1\x14\x14\x52\x66\x0a\x73\x22\x87\x63\x7e\xe4\x4c\ \x74\x98\xe7\x23\xa2\x78\xa5\x8d\x80\x44\x5d\xdd\x7f\xcc\x9a\xbf\ \xe8\x93\xd2\x39\x82\x8a\x05\x60\x92\x6c\x2b\xf3\x31\x00\xff\x01\ \x2e\x85\xae\x49\xae\x57\xc2\x9e\xc2\x6a\x64\x72\x7f\x43\x26\xbf\ \x0c\xbb\xf3\x2f\xc1\xf5\x8a\xd2\xb1\x26\x2c\x08\x05\x60\x28\x4d\ \x29\x34\x99\xd3\x71\x58\x64\x29\x16\x44\xde\x88\x05\xe6\x39\xd0\ \x11\x95\x8e\x45\x42\xe2\xc9\xe4\xdd\xb3\x17\x2c\x7e\xbf\x74\x8e\ \x20\x62\x01\x98\x04\xdb\xca\x7c\x16\xc0\x2d\xd2\x39\xa8\x7a\x3c\ \xb8\xd8\x5b\x58\x87\x4c\x6e\x19\x76\xe6\x97\x61\x77\x6e\x05\x4a\ \x5e\x56\x3a\xd6\x94\x05\xb1\x00\x0c\xa5\x2b\x0d\xcd\x66\x1a\x87\ \x45\x5e\x87\xf6\xc8\x9b\xd1\x66\x9e\xc5\x35\x04\x35\x26\x9e\x4c\ \xfe\x6a\xf6\x82\xc5\xef\x94\xce\x11\x34\x2c\x00\x13\x64\x5b\x99\ \x7f\x05\xf0\x65\xe9\x1c\x54\x79\x7d\xc5\x2e\xec\xcc\x3d\x8f\x4c\ \x7e\x19\x32\xb9\x17\x51\x74\x7b\xa5\x23\x95\x5d\x18\x0a\xc0\x50\ \xa6\x66\x60\x86\x39\x1b\x73\x23\xaf\xc7\xa2\xc8\xf9\x98\x65\x9c\ \x20\x1d\x89\xaa\x20\x96\x48\xfc\x69\x4e\xfb\xe1\x67\x4b\xe7\x08\ \x12\x16\x80\x09\xb0\xad\xcc\x4d\x00\xf8\xa4\xaa\x10\xcb\x3b\xbb\ \xb1\xb9\xff\x0f\xd8\x64\xff\x1e\x7b\x0b\xeb\xa4\xe3\x54\x5c\x18\ \x0b\xc0\x50\x0d\x46\x3d\x16\xc5\x4f\xc5\xb1\xb1\x0f\xa3\x51\x6b\ \x97\x8e\x43\x15\x14\x8b\xc7\x9f\x9d\xd3\x71\xc4\x49\xd2\x39\x82\ \x82\x05\x60\x9c\x38\xf8\x87\x97\xe3\xe5\xb1\xcd\x7e\x02\x9b\xfb\ \x7f\x87\x9d\xb9\xe7\xe1\xa1\x76\x9e\x3d\x52\x0b\x05\x60\x1f\x05\ \x85\x19\x91\x34\x96\xc4\xcf\xc5\xd1\xd1\x0f\x22\xaa\x1a\xa4\x23\ \x51\x05\xb0\x04\x8c\x1f\x0b\xc0\x38\x70\xda\x3f\x8c\x3c\x64\x72\ \xcb\xb1\xb9\xff\x61\x6c\xcd\x3e\x86\x92\x6b\x4b\x07\x12\x51\x4b\ \x05\xe0\x60\xba\xd2\x31\x37\xd6\x81\xd7\xc5\x2e\xc2\xe1\x91\x0b\ \xb9\x66\x20\x64\x78\x39\x60\x7c\x58\x00\xc6\xc0\x05\x7f\xe1\xd2\ \x57\xec\xc2\xa6\xfe\xdf\x61\xb3\xfd\x07\x64\x4b\xdd\xd2\x71\xc4\ \xd5\x6a\x01\x38\x58\x4c\x8f\x62\x41\xec\x18\x1c\x13\xbb\x1c\x73\ \x8c\x13\xa5\xe3\x50\x99\x70\x61\xe0\xd8\x58\x00\x46\x31\x78\xab\ \xdf\x1d\xd2\x39\x68\x6a\x0a\xae\x85\x2d\xfd\x8f\x60\x53\xff\xef\ \xb0\xa7\xb0\x5a\x3a\x8e\xaf\xb0\x00\x1c\x2a\x65\xa6\xb0\x38\x76\ \x06\xde\x10\xbb\x02\xf5\xda\x5c\xe9\x38\x34\x45\xbc\x45\x70\x74\ \x2c\x00\x23\x18\xdc\xe4\xe7\x2e\xf0\x3e\xff\x40\x72\xbd\x22\xba\ \xb3\x4f\x63\x53\xff\xef\xb1\x23\xf7\x17\xb8\x5e\x49\x3a\x92\x2f\ \xb1\x00\x0c\x4f\x41\x21\x1d\x9d\x8d\xa5\xb1\xb7\xe2\x75\xd1\xf7\ \x23\xa2\x92\xd2\x91\x68\x92\xb8\x59\xd0\xc8\x58\x00\x86\x31\xb8\ \xbd\xef\xcf\xc0\x1d\xfe\x02\x27\xe7\xec\x42\xe7\xde\x7b\xd0\xd5\ \xff\x50\x28\x6f\xdb\x2b\x37\x16\x80\xb1\x19\x4a\xc7\x82\xf8\x51\ \x38\x23\xf1\x39\x4c\xd3\x17\x4b\xc7\xa1\x49\x48\xd4\xd5\x71\xdb\ \xe0\x61\xb0\x00\x0c\x31\xf8\x60\x9f\x5f\x83\x7b\xfb\x07\x4a\xb6\ \xd4\x8d\xb5\x7b\xff\x07\x5d\xfd\x0f\x06\x72\x47\x3e\x29\x2c\x00\ \xe3\xa7\x29\x85\x79\xb1\x25\x38\x33\xf9\x39\xcc\xd0\x5f\x27\x1d\ \x87\x26\x80\x0f\x10\x1a\x1e\x0b\xc0\x41\x06\x1f\xe9\xfb\x30\xf8\ \x54\xbf\xc0\xe8\x2f\x6d\xc6\x5a\xeb\x6e\x6c\xb6\xff\xc0\x69\xfe\ \x49\x60\x01\x98\x38\x05\x85\xd6\xd8\x42\x9c\x91\xfc\x2c\x37\x19\ \x0a\x10\xa5\x14\x12\x75\x75\x9f\xe2\xa3\x84\x0f\x60\x01\x18\x64\ \x5b\x99\x13\x00\xfc\x11\x00\x9f\x32\x12\x00\x7b\x8b\xaf\x62\xad\ \x75\x37\xb6\xda\x7f\xae\xa9\xfb\xf6\xcb\x8d\x05\x60\xf2\x14\x80\ \x39\xb1\xf9\x38\x3d\xf9\x69\xcc\x35\x4e\x97\x8e\x43\xe3\xa0\x94\ \xf2\x12\x75\x75\x57\xb4\xcc\x5b\xf8\x23\xe9\x2c\x7e\xc0\x02\x00\ \xc0\xb6\x32\x8b\x01\x3c\x0d\x60\x9a\x74\x16\x1a\xdd\x9e\xc2\x2b\ \x58\x63\xfd\x04\xdb\xb3\x4f\x02\xe0\xdf\xdd\xa9\x62\x01\x28\x8f\ \x59\xd1\xc3\x70\x6a\xf2\x93\x58\x60\x9e\x2b\x1d\x85\xc6\xa0\x69\ \x9a\x17\xaf\xab\x7b\x6b\x4b\x5b\xc7\xc3\xd2\x59\xa4\xd5\x7c\x01\ \xb0\xad\xcc\x0c\x00\x7f\x01\xb0\x40\x3a\x0b\x8d\x6c\x77\xfe\x7f\ \xb1\xc6\xba\x0b\x3b\x72\x7f\x95\x8e\x12\x2a\x2c\x00\xe5\x35\x23\ \x92\xc6\x29\xc9\x8f\x61\x71\x84\xb7\x9f\xfb\x99\x6e\x18\xc5\x78\ \x22\x71\x54\xba\xad\xa3\xa6\xef\x0b\xae\xe9\x02\x60\x5b\x99\x18\ \x80\x3f\x01\x38\x59\x3a\x0b\x0d\x6f\x67\xee\x79\xac\xb1\xee\xc2\ \xae\xfc\x72\xe9\x28\xa1\xc4\x02\x50\x19\xd3\x23\xd3\x71\x52\xf2\ \x43\x58\x1a\xf9\x7b\xe9\x28\x34\x02\xd3\x34\x7b\xa3\x89\x44\x6b\ \xba\xb5\x7d\x8f\x74\x16\x29\x35\x5b\x00\x6c\x2b\xa3\x00\xdc\x03\ \xe0\xdd\xd2\x59\x68\x28\x0f\xdb\xb3\x4f\x63\xad\xf5\x13\xf4\x14\ \x5e\x96\x0e\x13\x6a\x2c\x00\x95\xd5\x68\x36\xe2\xc4\xe4\x65\x38\ \x3a\xfa\x01\x70\x4b\x11\xff\x89\xc4\x62\x9b\x22\xd1\xe8\xbc\x74\ \x6b\x7b\x4d\x2e\x24\xaa\xe5\x02\x70\x23\x80\x2f\x48\xe7\xa0\x43\ \x65\x72\xcb\xb0\xb2\xe7\xbb\xd8\x5b\xec\x94\x8e\x52\x13\x58\x00\ \xaa\xa3\xc1\xa8\xc7\x99\xf5\x57\xe3\x88\xc8\x25\xd2\x51\x68\x88\ \x58\x22\xf1\xcc\x9c\xf6\xc3\x4f\x91\xce\x21\xa1\x26\x0b\x80\x6d\ \x65\xae\x00\x70\xa7\x74\x0e\x3a\x20\xef\xec\xc6\xca\x9e\xef\x62\ \x8b\xfd\x88\x74\x94\x9a\xc2\x02\x50\x5d\x73\x63\xed\x38\xbf\xfe\ \x26\x34\x6a\xf3\xa5\xa3\xd0\x41\xe2\xc9\xe4\x7f\xcf\x5e\xb0\xf8\ \x83\xd2\x39\xaa\xad\xe6\x0a\x80\x6d\x65\xde\x0c\xe0\x21\x70\x97\ \x3f\x5f\xf0\xe0\x62\x7d\xef\xfd\x58\x6d\xfd\x17\x4a\x6e\xbf\x74\ \x9c\x9a\xc3\x02\x50\x7d\x86\xd2\x71\x6c\xdd\x5b\x71\x46\xe2\x5f\ \xa0\xf1\x7f\x43\xbe\x91\xac\xaf\xbf\xbe\x65\xde\xc2\x6f\x48\xe7\ \xa8\xa6\x9a\x2a\x00\xb6\x95\x59\x0a\xe0\x29\x00\x29\xe9\x2c\x04\ \xf4\xe4\x57\x61\x45\xcf\xb7\x60\x15\xd6\x49\x47\xa9\x59\x2c\x00\ \x72\x1a\x8c\x06\xbc\xa5\xe1\x1f\xd1\x6e\x9e\x2f\x1d\x85\x00\x28\ \x4d\xf3\x12\x75\x75\x17\xb6\xb4\x75\xfc\x4a\x3a\x4b\xb5\xd4\x4c\ \x01\xb0\xad\x4c\x1a\xc0\xb3\x00\xda\xa4\xb3\xd4\xba\x82\xbb\x17\ \x2f\xef\xb9\x03\x1b\xfb\x7e\x0b\xde\xcb\x2f\x8b\x05\x40\xde\x82\ \xf8\x12\x9c\x57\x77\x13\xea\xb4\xd9\xd2\x51\x6a\x9e\xae\xeb\xa5\ \x78\x32\x79\x4c\xba\xad\x63\xa5\x74\x96\x6a\xa8\x89\x02\x60\x5b\ \x99\x38\x80\xc7\x00\x1c\x2f\x9d\xa5\xb6\x79\xe8\xea\x7b\x10\xab\ \xf6\xdc\x8e\x82\xbb\x57\x3a\x0c\x81\x05\xc0\x2f\x4c\xcd\xc0\x09\ \x75\x17\xe3\xd4\xf8\x75\xe0\xdd\x02\xb2\x0c\xd3\xec\x8f\x0d\xdc\ \x1e\xb8\x5b\x3a\x4b\xa5\xd5\xca\xdf\xb4\x1f\x80\x83\xbf\x28\xab\ \xb0\x0e\x4f\x74\x5f\x85\x17\x77\x7f\x83\x83\x3f\xd1\x10\x45\xb7\ \x84\xa7\xf6\xde\x8b\xff\xdc\x7d\x0e\xba\x4a\x8f\x4a\xc7\xa9\x69\ \xa5\x62\x31\x59\xcc\xe7\x9f\x97\xce\x51\x0d\xa1\x9f\x01\xb0\xad\ \xcc\xd5\x00\xf8\xf0\x07\x21\x25\xb7\x1f\xab\xad\x1f\x62\x7d\xef\ \x2f\xb9\x67\xbf\x0f\x71\x06\xc0\x7f\x14\x14\x16\x26\x5e\x8f\x73\ \xeb\xbe\x8e\xb8\x6a\x96\x8e\x53\xb3\xe2\xc9\xe4\xcf\x66\x2f\x58\ \x7c\xa9\x74\x8e\x4a\x0a\x75\x01\xb0\xad\xcc\x29\x00\x1e\x05\x60\ \x0a\x47\xa9\x49\x5b\xec\x47\xf0\x52\xcf\xf7\x90\x73\x76\x49\x47\ \xa1\x11\xb0\x00\xf8\x57\x54\x8b\xe0\x94\xfa\xf7\xe2\xf8\xd8\x35\ \xd2\x51\x6a\x93\x52\x48\xd6\xd5\x7d\xa2\x65\xde\xc2\x3b\xa4\xa3\ \x54\x4a\x68\x0b\xc0\xe0\xa2\xbf\x65\x00\xb8\xb2\xa6\xca\xfa\x8a\ \x5d\x58\xd1\x73\x2b\x32\xb9\x65\xd2\x51\x68\x0c\x2c\x00\xfe\xd7\ \x1c\x99\x89\xf3\xeb\xbf\x8c\x59\x06\xaf\x62\x56\x9b\xa6\xeb\x4e\ \x22\x99\x7c\x7d\x58\x17\x05\x86\xb2\x00\xd8\x56\xc6\x00\xf0\x08\ \x80\x33\xa4\xb3\xd4\x9a\x8d\x7d\x0f\x60\x65\xcf\x77\xe0\x78\x79\ \xe9\x28\x34\x0e\x2c\x00\xc1\xa0\x29\x0d\x27\xd7\x5f\x82\x53\xe3\ \xd7\x4b\x47\xa9\x39\x66\x24\x62\x45\xe3\xf1\x96\x74\x6b\x7b\x4e\ \x3a\x4b\xb9\x85\x75\x11\xe0\x4d\xe0\xe0\x5f\x55\x25\x2f\x8b\x65\ \xbb\xbe\x82\xe5\xbb\xbf\xc9\xc1\x9f\xa8\xcc\x5c\xcf\xc5\x53\x7b\ \x7f\x86\x7b\xac\x77\x23\xef\xf5\x48\xc7\xa9\x29\xc5\x42\x21\x55\ \x2a\x14\x9e\x94\xce\x51\x09\xa1\x2b\x00\xb6\x95\x79\x37\x80\x6b\ \xa5\x73\xd4\x92\xbd\x85\x75\x78\x7c\xdb\x47\xb1\xb9\xff\x8f\xd2\ \x51\x88\x42\xad\x2b\xd7\x89\x3b\x77\xbd\x1d\x5d\xa5\xc7\xa5\xa3\ \xd4\x94\x5c\x36\xfb\x86\x6d\xeb\xd7\xdc\x2a\x9d\xa3\xdc\x42\x75\ \x09\xc0\xb6\x32\x4b\x30\xb0\xd9\x4f\x9d\x74\x96\x5a\xb1\xa1\xef\ \x57\x58\xd9\xf3\x5d\xb8\x5e\x41\x3a\x0a\x4d\x02\x2f\x01\x04\x93\ \xa6\x14\x4e\xac\xbf\x10\xa7\xc7\xff\x59\x3a\x4a\xcd\x50\x4a\x79\ \x89\xfa\xfa\x77\xb4\xb4\x75\xfc\x46\x3a\x4b\xb9\x84\xa6\x00\xd8\ \x56\xa6\x01\xc0\x5f\x01\x2c\x96\xce\x52\x0b\x4a\x6e\x3f\x96\xef\ \xbe\x19\x5b\xec\x3f\x49\x47\xa1\x29\x60\x01\x08\xb6\xc3\x62\xf3\ \x71\x61\xc3\xed\xbc\x5d\xb0\x4a\x74\xc3\x28\xc4\x93\xc9\x05\xe9\ \xd6\xf6\x2d\xd2\x59\xca\x21\x4c\x97\x00\x7e\x0c\x0e\xfe\x55\x61\ \x15\xd6\xe2\xb1\xed\x1f\xe5\xe0\x4f\x24\x6c\x73\x6e\x3d\xfe\x6b\ \xd7\x3b\xb1\x91\x9b\x07\x55\x85\x53\x2a\x45\x0a\xb9\xdc\x5f\xa5\ \x73\x94\x4b\x28\x0a\x80\x6d\x65\xae\x04\x70\xa1\x74\x8e\x5a\xb0\ \xbe\xf7\x7e\x3c\xd1\x7d\x25\xfa\x4b\xa1\x28\xc0\x44\x81\x67\x3b\ \x59\xfc\x7c\xf7\x75\x78\xdc\xfe\x8a\x74\x94\x9a\x50\xc8\xe7\x67\ \x6f\x7d\xf5\x95\x9f\x4a\xe7\x28\x87\xc0\x5f\x02\xb0\xad\xcc\x62\ \x0c\xdc\xef\x9f\x90\xce\x12\x66\x45\xb7\x1f\xcb\x77\x7f\x03\x5b\ \xed\x47\xa5\xa3\x50\x19\xf1\x12\x40\xb8\xcc\x89\xcd\xc3\x85\x0d\ \xb7\x23\xa1\x66\x48\x47\x09\x35\xa5\x14\x12\xf5\xf5\xe7\xb7\xb4\ \x75\x3c\x2c\x9d\x65\x2a\x02\x3d\x03\x60\x5b\x19\x13\xc0\xdd\xe0\ \xe0\x5f\x51\x7b\x0a\xaf\xe0\xb1\xed\x1f\xe1\xe0\x4f\xe4\x73\x5b\ \x72\x1b\xf0\xc3\x5d\x17\x62\x7d\x91\x77\xe4\x54\x92\xe7\x79\xc8\ \x67\xb3\xf7\x75\x77\x75\x06\x7a\xec\x09\x74\x01\x00\x70\x03\x80\ \xe3\xa4\x43\x84\xd9\xab\xbd\xbf\xc0\x93\xdd\x57\xc1\x2e\x6d\x95\ \x8e\x42\x44\xe3\x60\x3b\x59\xfc\xa2\xe7\xf3\x78\xd4\xfe\xa2\x74\ \x94\x50\x2b\x15\x8b\xc9\x52\xb1\xf8\x7b\xe9\x1c\x53\x11\xd8\x4b\ \x00\xb6\x95\x39\x15\x03\x8f\xf8\xd5\xa5\xb3\x84\x51\xd1\xed\xc3\ \x8b\xbb\xbf\x8e\x6d\xf6\x13\xd2\x51\xa8\x82\x78\x09\x20\xdc\x66\ \x47\x5b\x71\x51\xea\x0e\x24\xd4\x4c\xe9\x28\xa1\x95\xac\xaf\xbf\ \xb2\x65\xde\xc2\xdb\xa5\x73\x4c\x46\x20\x0b\x80\x6d\x65\xea\x01\ \x2c\x07\x30\x5f\x3a\x4b\x18\xe5\x9c\x0c\x9e\xd9\x71\x1d\x7a\x8b\ \xeb\xa5\xa3\x50\x85\xb1\x00\x84\x5f\x9d\x51\x87\xf7\x34\xdd\x89\ \x69\xda\x42\xe9\x28\xa1\xa4\xeb\x7a\x29\x5e\x57\xd7\x9a\x6e\x6d\ \xdf\x26\x9d\x65\xa2\x82\x7a\x09\xe0\x3b\xe0\xe0\x5f\x11\x7d\xc5\ \x2e\x3c\xd1\xfd\x49\x0e\xfe\x44\x21\xd1\x57\xea\xc3\xdd\xbb\x3f\ \x80\x6d\xa5\xd0\xdc\xbd\xe6\x2b\x8e\xe3\x18\xc5\x7c\x3e\x90\x5b\ \x33\x06\xae\x00\xd8\x56\xe6\x62\x00\x1f\x94\xce\x11\x46\x3d\x85\ \x55\x78\xb2\xfb\x2a\x64\x4b\xdd\xd2\x51\x88\xa8\x8c\x72\x4e\x1e\ \xf7\xf4\x5c\x83\x57\x8b\x81\x5e\xb4\xee\x5b\xf9\x5c\xae\x63\xdb\ \xfa\x35\xdf\x94\xce\x31\x51\x81\x2a\x00\xb6\x95\x99\x0d\x20\xb4\ \xcf\x66\x96\xb4\x23\xfb\x2c\x9e\xee\xfe\x2c\x0a\xee\x5e\xe9\x28\ \x44\x54\x01\x45\xb7\x84\xfb\x7b\xfe\x15\x2b\xf3\x77\x4b\x47\x09\ \xa5\x9c\x6d\xff\x43\xf7\xc6\x75\xc7\x48\xe7\x98\x88\xc0\x14\x00\ \xdb\xca\x28\x00\x3f\x02\x30\x5d\x3a\x4b\xd8\x6c\xee\xff\x3d\x9e\ \xdd\xf9\x05\x38\x5e\xe8\x9e\x76\x49\x44\x07\x71\x3c\x17\x0f\xed\ \xf9\x77\x3c\x9b\xfb\x77\xe9\x28\xa1\xe3\xba\xae\xca\xe7\x72\x7f\ \xe8\xee\xea\x0c\xcc\xb8\x1a\x98\xa0\x00\x3e\x06\xe0\x1c\xe9\x10\ \x61\xd3\xb9\xf7\x5e\x2c\xdb\x75\x23\x3c\x38\xd2\x51\x88\xa8\x0a\ \x3c\x78\x78\xcc\xfa\x09\xfe\x64\xf3\x41\x42\xe5\x56\x2c\x14\xa6\ \x3b\xa5\xd2\x5d\xd2\x39\xc6\x2b\x10\x77\x01\xd8\x56\x66\x16\x80\ \x97\x01\xa4\xa4\xb3\x84\x87\x87\x97\xf6\xdc\x8e\xce\xbd\xf7\x48\ \x07\x21\x41\xbc\x0b\xa0\xb6\x1d\x9e\x38\x1e\x6f\xaf\xff\x3e\x82\ \xf5\x59\xd0\xdf\x94\xa6\x79\xc9\xba\xba\x63\xd3\x6d\x1d\x2f\x4a\ \x67\x19\x4b\x50\xfe\xad\xdf\x06\x0e\xfe\x65\xe3\xc1\xc1\x0b\xbb\ \xbe\xc6\xc1\x9f\xa8\xc6\xad\xb6\x9f\xc3\xbd\xd6\xfb\xe0\x80\x8f\ \xf3\x2e\x17\xcf\x75\x55\x21\x9f\x7f\x40\x3a\xc7\x78\xf8\xbe\x00\ \xd8\x56\xe6\x1d\x00\x2e\x96\xce\x11\x16\x8e\x97\xc3\x5f\x77\xfe\ \x13\x36\xf5\xff\x4e\x3a\x0a\x11\xf9\xc0\xc6\xdc\x1a\xdc\xbd\xe7\ \x62\xe4\x3d\x2e\x00\x2e\x97\x42\x3e\x3f\x67\xdb\xfa\x35\x37\x4a\ \xe7\x18\x8b\xaf\x2f\x01\xd8\x56\xa6\x01\xc0\x2a\x00\x73\xa4\xb3\ \x84\x41\xc1\xdd\x8b\x67\x77\x5e\x8f\x9e\x3c\xa7\x7d\x69\x00\x2f\ \x01\xd0\x3e\x4d\x66\x13\xfe\xbe\xf1\x2e\xd4\x69\xb3\xa5\xa3\x84\ \x82\xa6\xeb\x4e\xa2\xae\xae\x2d\xdd\xda\xee\xdb\x47\xa7\xfa\x7d\ \x06\xe0\x6b\xe0\xe0\x5f\x16\x59\x67\x07\x9e\xea\xbe\x9a\x83\x3f\ \x11\x0d\xab\xa7\xd8\x83\xbb\x7a\xde\x83\x5d\xce\x6a\xe9\x28\xa1\ \xe0\x3a\x8e\x5e\x2c\x14\x7c\xbd\xf1\x82\x6f\x0b\x80\x6d\x65\x4e\ \x01\x70\xa5\x74\x8e\x30\xe8\x2d\x6e\xc0\x93\xdb\x3f\x89\xde\xe2\ \x46\xe9\x28\x44\xe4\x63\x7d\xa5\x7e\xfc\x4f\xcf\x87\xb1\xa5\xf4\ \x17\xe9\x28\xa1\x90\xcf\x66\x8f\xdc\xbe\x61\xed\xc7\xa5\x73\x8c\ \xc4\x97\x05\xc0\xb6\x32\x11\x00\xff\x09\x40\x49\x67\x09\xba\xde\ \xe2\x06\x3c\xd5\x7d\x0d\xb2\xce\x4e\xe9\x28\x44\x14\x00\x39\x27\ \x8f\x9f\xf5\x7c\x9a\x25\xa0\x4c\xf2\xd9\xec\xb7\xbb\xbb\x3a\xeb\ \xa4\x73\x0c\xc7\x97\x05\x00\xc0\xf5\x00\x96\x48\x87\x08\xba\xac\ \xb3\x03\x7f\xd9\x71\x1d\x77\xf7\x23\xa2\x09\x29\xba\x25\xfc\x62\ \xcf\xb5\xbc\x1c\x50\x06\xa5\x52\x29\x5a\x2a\x16\x7f\x25\x9d\x63\ \x38\xbe\x2b\x00\xb6\x95\x39\x1c\x00\x77\xa8\x98\xa2\x82\xbb\x17\ \x7f\xd9\x71\x1d\x3f\xf9\x13\xd1\xa4\xe4\x9c\x3c\xee\xdd\xf3\x31\ \xf4\xb9\x5b\xa5\xa3\x04\x5e\x3e\x9b\x7d\xd3\xf6\x8d\xeb\xde\x2a\ \x9d\x63\x28\xdf\x15\x00\x0c\xec\xf5\x1f\x95\x0e\x11\x64\x8e\x97\ \xc3\xb3\x3b\xaf\xe7\x35\x7f\x22\x9a\x92\xbe\x52\x3f\x7e\xba\xe7\ \x72\xde\x22\x38\x45\x9e\xe7\xa1\x90\xcb\xfd\x5f\xe9\x1c\x43\xf9\ \xaa\x00\xd8\x56\xe6\x52\x00\x67\x48\xe7\x08\x32\x0f\x0e\x9e\xcf\ \xdc\xc0\xd5\xfe\x44\x54\x16\x3d\xc5\x1e\xdc\xc3\xcd\x82\xa6\xac\ \x58\x28\xa4\xb6\xad\x5f\xe3\xab\x87\x30\xf8\xa6\x00\xd8\x56\x26\ \x06\xe0\x26\xe9\x1c\xc1\xe6\xe1\xc5\x5d\x37\xa1\x3b\xcb\xc5\x3b\ \x44\x54\x3e\xdd\xf9\xad\xb8\xcf\xfa\x00\x00\x57\x3a\x4a\xa0\xe5\ \xb3\xd9\xab\xba\xbb\x3a\x1b\xa5\x73\xec\xe3\x9b\x02\x00\xe0\xb3\ \x00\xda\xa4\x43\x04\xd9\x4b\x7b\x6e\xe7\x0e\x7f\x44\x54\x11\x1b\ \x73\x6b\xf0\xeb\xde\x4f\x4a\xc7\x08\x34\xc7\x71\x0c\xa7\x58\xbc\ \x57\x3a\xc7\x3e\xbe\x28\x00\xb6\x95\x69\x01\xf0\x05\xe9\x1c\x41\ \xd6\xb9\xf7\x5e\xee\xed\x4f\x44\x15\xb5\xda\x7e\x8e\x4f\x11\x9c\ \xa2\x5c\x36\xfb\x96\xee\x8d\xeb\x8e\x92\xce\x01\xf8\xa4\x00\x00\ \xf8\x2a\x80\x7a\xe9\x10\x41\xb5\xb9\xff\xf7\x78\x69\xcf\x7f\x48\ \xc7\x20\xa2\x1a\xf0\x7c\xef\xc3\x78\x36\xe7\xab\x4b\xd9\x81\xe2\ \x79\x9e\x2a\x16\x0a\x3f\x97\xce\x01\xf8\xa0\x00\xd8\x56\xe6\xf5\ \x00\x3e\x24\x9d\x23\xa8\x76\x64\x9f\xc5\x0b\xbb\xbe\x0e\xc0\xbf\ \xcf\x74\x20\xa2\x70\x79\xdc\xba\x1b\x2b\xf3\x77\x4b\xc7\x08\xac\ \x7c\x2e\xb7\x68\xfb\x86\xb5\x97\x4a\xe7\x10\x2f\x00\x00\x6e\x81\ \x3f\x72\x04\x4e\x4f\x61\x15\x9e\xcb\xfc\x1f\x78\x70\xa4\xa3\x10\ \x51\x0d\xf1\xe0\xe1\x77\xd6\xb7\xf1\x6a\xd1\xd7\x5b\xdd\xfb\x5a\ \x21\x9f\x17\x9f\xb6\x15\x1d\x78\x6d\x2b\xf3\x4e\x00\x6f\x94\xcc\ \x10\x54\x7d\xc5\x2e\x3c\xbb\xe3\x7a\x38\x5e\x4e\x3a\x0a\x11\xd5\ \x20\xc7\x73\xf1\xab\x3d\x37\x60\x5b\xe9\xaf\xd2\x51\x02\xa9\x58\ \x28\x34\x6d\x5b\xbf\xe6\x6b\x92\x19\xc4\x0a\xc0\xe0\x7e\xff\xdf\ \x94\x3a\x7f\x90\xe5\x9c\x0c\x9e\xd9\xc9\x2d\x7e\x89\x48\x56\xd1\ \x2d\xe1\xe7\x7b\x3e\x83\xdd\xee\x5a\xe9\x28\x81\x94\xcf\xe5\xfe\ \x41\xf2\x39\x01\x92\x33\x00\xd7\x00\xe8\x10\x3c\x7f\x20\x15\xdd\ \x3e\x3c\xb3\xe3\x3a\x64\x4b\xdd\xd2\x51\x88\x88\x90\x73\xf2\xb8\ \xa7\xe7\x23\xb0\xbd\x1d\xd2\x51\x02\xc7\x29\x95\x4c\xa7\x54\x12\ \xdb\x21\x50\xa4\x00\xd8\x56\x66\x1a\x80\x7f\x95\x38\x77\xd0\xbd\ \xb8\xfb\xeb\xe8\x2d\xae\x97\x8e\x41\x44\xb4\x5f\x5f\xa9\x0f\xbf\ \xb4\x3e\x26\x1d\x23\x90\x72\xd9\xec\x05\xdd\x1b\xd7\xb5\x4b\x9c\ \x5b\x6a\x06\xe0\x5a\x00\x29\xa1\x73\x07\xd6\xab\xbd\xbf\xc0\x36\ \xfb\x09\xe9\x18\x44\x44\xaf\xb1\x35\xbf\x09\x8f\xda\x37\x48\xc7\ \x08\x1c\xcf\x75\x55\xa9\x54\xfa\x6f\x89\x73\x57\xbd\x00\x0c\x7e\ \xfa\xff\x54\xb5\xcf\x1b\x74\x7b\x0a\xaf\x60\x15\xef\xf5\x27\x22\ \x1f\x7b\xbe\xef\xb7\x58\x5f\xfc\xbd\x74\x8c\xc0\xc9\x67\xb3\xa7\ \x48\xcc\x02\x48\xcc\x00\x5c\x07\x6e\xfa\x33\x21\x45\xb7\x1f\xcf\ \x67\xbe\x08\xd7\x2b\x4a\x47\x21\x22\x1a\x91\xeb\x79\x78\xc0\xfa\ \x12\xd7\x03\x4c\x90\xe7\x79\xaa\x54\x2a\xfd\xa4\xda\xe7\xad\x6a\ \x01\xb0\xad\xcc\x74\x0c\x2c\xfe\xa3\x09\x58\xbe\xfb\x1b\xb0\x4b\ \x7c\x26\x37\x11\xf9\x5f\xd6\xc9\xe1\x97\xd6\xc7\xa5\x63\x04\x4e\ \x3e\x9b\x3d\xa9\x7b\xe3\xba\x85\xd5\x3c\x67\xb5\x67\x00\xae\x03\ \x20\x76\xcb\x43\x10\xad\xef\xbd\x1f\x5b\xed\x47\xa5\x63\x10\x11\ \x8d\xdb\xd6\x7c\x17\x1e\xb5\xbf\x28\x1d\x23\x50\x06\x67\x01\xee\ \xaa\xe6\x39\xab\x56\x00\x6c\x2b\xd3\x0c\xe0\xea\x6a\x9d\x2f\x0c\ \xac\xc2\x5a\xbc\xb4\xe7\x7b\xd2\x31\x88\x88\x26\xec\xf9\xbe\x07\ \xb0\xbe\xf8\x47\xe9\x18\x81\x92\xcf\x66\x4f\xec\xde\xb8\x6e\x51\ \xb5\xce\x57\xcd\x19\x80\xcf\x81\x9f\xfe\xc7\xad\xe4\xf6\xe3\xf9\ \xcc\x0d\xbc\xee\x4f\x44\x81\x34\xb0\x1e\xe0\x06\xd8\xde\x4e\xe9\ \x28\x81\xe1\x79\x9e\x2a\x15\x8b\x55\x9b\x05\xa8\x4a\x01\xb0\xad\ \xcc\x0c\x00\x57\x55\xe3\x5c\x61\xb1\x7c\xf7\xcd\xe8\x2f\x6d\x91\ \x8e\x41\x44\x34\x69\x03\xeb\x01\xb8\x3f\xc0\x44\xe4\x73\xb9\x13\ \xbb\x37\xae\x3b\xbc\x1a\xe7\xaa\xd6\x0c\xc0\xe7\x00\x24\xab\x74\ \xae\xc0\xdb\xd0\xf7\x2b\x6c\xb1\xff\x24\x1d\x83\x88\x68\xca\xb8\ \x1e\x60\x62\x3c\xcf\x43\xa9\x58\xac\xca\xbe\x00\x15\x2f\x00\xb6\ \x95\x99\x09\x7e\xfa\x1f\xb7\xbd\x85\x75\x58\xd9\xf3\x5d\xe9\x18\ \x44\x44\x65\xf3\x7c\xdf\x03\xd8\x50\x7c\x44\x3a\x46\x60\xe4\x73\ \xb9\x13\xba\x37\xae\x5b\x52\xe9\xf3\x54\x63\x06\xe0\x3a\x00\x89\ \x2a\x9c\x27\xf0\x4a\x5e\x76\xf0\x7e\xff\x82\x74\x14\x22\xa2\xb2\ \xe1\x7a\x80\x89\x19\x9c\x05\xf8\x51\xa5\xcf\x53\xd1\x02\x60\x5b\ \x99\x7a\x00\xbc\x21\x74\x9c\x56\xec\xbe\x19\x7d\xa5\x4d\xd2\x31\ \x88\x88\xca\xce\x76\xb2\xb8\x9f\xfb\x03\x8c\x5b\x3e\x9f\x3f\xbe\ \xbb\xab\x73\x56\x25\xcf\x51\xe9\x19\x80\x8f\x00\x68\xa8\xf0\x39\ \x42\x61\x63\xdf\x03\xd8\xdc\xcf\x5b\x66\x88\x28\xbc\xb6\xe4\x37\ \xe2\x31\xfb\x4b\xd2\x31\x02\xc1\x73\x5d\xe5\x94\x4a\x15\xdd\xff\ \xbd\x62\x05\xc0\xb6\x32\x3a\xb8\xe7\xff\xb8\xf4\x15\xbb\xb0\xb2\ \xe7\x3b\xd2\x31\x88\x88\x2a\xee\xb9\xbe\xdf\x60\x73\xe9\x49\xe9\ \x18\x81\x50\xc8\xe5\xfe\xae\xbb\xab\x33\x52\xa9\xe3\x57\x72\x06\ \xe0\x22\x00\xf3\x2a\x78\xfc\xd0\x58\xd1\x73\x2b\x1c\x2f\x2f\x1d\ \x83\x88\xa8\xe2\x5c\xcf\xc3\xc3\x7b\xbf\x0c\xc0\x95\x8e\xe2\x7b\ \x8e\xe3\x18\xae\xe3\x7c\xbd\x52\xc7\xaf\x64\x01\xf8\x6c\x05\x8f\ \x1d\x1a\x5b\xec\x47\x90\xc9\x2d\x93\x8e\x41\x44\x54\x35\xbb\x8b\ \xbb\xf0\x4c\xf6\x16\xe9\x18\x81\x50\xcc\xe7\x3f\x52\xa9\x63\x57\ \xa4\x00\xd8\x56\xe6\x24\x00\x27\x57\xe2\xd8\x61\x52\x72\xfb\xf1\ \x52\x0f\xb7\xfa\x25\xa2\xda\xf3\x6c\xdf\x7d\xe8\x73\xb7\x4b\xc7\ \xf0\xbd\x62\xb1\x58\xbf\x7d\xc3\xda\x8a\x94\x80\x4a\xcd\x00\x5c\ \x5b\xa1\xe3\x86\xca\x6a\xeb\x87\xc8\x39\xbb\xa4\x63\x10\x11\x55\ \x5d\xc1\x2d\xe2\x77\x7d\xd7\x4b\xc7\x08\x84\x62\xb1\x78\x43\x25\ \x8e\x5b\xf6\x02\x60\x5b\x99\x79\x18\xb8\xfe\x4f\xa3\xb0\x0a\xeb\ \xb0\xbe\xf7\x97\xd2\x31\x88\x88\xc4\xbc\x9a\x5d\x89\x57\x8b\xbf\ \x93\x8e\xe1\x7b\x85\x5c\xee\xb0\xee\x8d\xeb\x4e\x2b\xf7\x71\x2b\ \x31\x03\xf0\x29\x00\x7a\x05\x8e\x1b\x22\x1e\x56\xf4\xdc\x02\x8f\ \x8b\x60\x88\xa8\x86\x79\x00\xfe\xd0\x7b\x13\x3c\x38\xd2\x51\x7c\ \xaf\x54\x2c\x7e\xbb\xdc\xc7\x2c\x6b\x01\xb0\xad\x4c\x03\x06\xee\ \xfd\xa7\x51\x74\xf5\x3d\x88\x9e\xfc\x4b\xd2\x31\x88\x88\xc4\x59\ \x45\x0b\x4f\xd8\x37\x4a\xc7\xf0\xbd\x7c\x2e\x77\x4c\x77\x57\xe7\ \x9c\x72\x1e\xb3\xdc\x33\x00\x1f\x01\x50\x5f\xe6\x63\x86\x4a\xc1\ \xdd\x8b\x55\x7b\x6e\x97\x8e\x41\x44\xe4\x1b\xcf\xf7\xfd\x06\x96\ \xbb\x41\x3a\x86\xaf\x79\x9e\xa7\x9c\x52\xe9\xfb\xe5\x3c\x66\xb9\ \x0b\xc0\x95\x65\x3e\x5e\xe8\xbc\xbc\xe7\x0e\x14\xdc\xbd\xd2\x31\ \x88\x88\x7c\xa3\xe4\x39\x78\xa8\x97\x0b\x02\xc7\x52\xc8\xe7\xcf\ \x2f\xe7\xf1\xca\x56\x00\x6c\x2b\x73\x06\x80\x8e\x72\x1d\x2f\x8c\ \x7a\xf2\xab\xb0\xb1\xef\xb7\xd2\x31\x88\x88\x7c\xa7\x2b\xb7\x0e\ \xaf\x14\xee\x97\x8e\xe1\x6b\x4e\xa9\x64\x6e\xdf\xb0\xf6\x9a\x72\ \x1d\xaf\x9c\x33\x00\x57\x94\xf1\x58\xa1\xe3\xc1\xc5\x8a\x9e\x6f\ \x61\x60\xd9\x0b\x11\x11\x0d\xf5\x48\xef\xad\x70\xc0\x5d\x51\x47\ \x53\x2a\x16\x3f\x5d\xae\x63\x95\xa5\x00\x0c\x2e\xfe\xbb\xa4\x1c\ \xc7\x0a\xab\xf5\xbd\xf7\xc3\x2a\xac\x93\x8e\x41\x44\xe4\x5b\x7d\ \xa5\x7e\xfc\xb9\xff\x8b\xd2\x31\x7c\xad\x90\xcf\xb7\x97\x6b\x31\ \x60\xb9\x66\x00\x2e\x05\x90\x28\xd3\xb1\x42\x27\xef\xec\xc6\x6a\ \xeb\xbf\xa4\x63\x10\x11\xf9\xde\xf2\xfe\x3f\x62\x97\xb3\x5a\x3a\ \x86\x6f\x79\x9e\x07\xa7\x54\xfa\x5a\x39\x8e\x55\xae\x02\xc0\xe9\ \xff\x51\xac\xec\xf9\x2e\x4a\x6e\xbf\x74\x0c\x22\x22\xdf\x73\x3c\ \x17\x0f\xf5\x7e\x41\x3a\x86\xaf\x15\x0b\x85\x0b\xcb\x71\x9c\x29\ \x17\x00\xdb\xca\x2c\x01\x70\x62\x19\xb2\x84\x52\x26\xb7\x0c\x5b\ \xec\x47\xa4\x63\x10\x11\x05\xc6\xd6\x7c\x17\x56\xe6\xef\x96\x8e\ \xe1\x5b\xa5\x62\xb1\x6e\xfb\xc6\x75\x6f\x9b\xea\x71\xca\x31\x03\ \xc0\x4f\xff\x23\xf2\xb0\xb2\xe7\xbb\xd2\x21\x88\x88\x02\xe7\xb1\ \xbe\x1f\x70\x87\xc0\x51\x38\x65\x78\x3e\xc0\x94\x0a\x80\x6d\x65\ \x4c\x00\xef\x9f\x6a\x88\xb0\xda\x9e\x7d\x1a\x7b\x8b\x9d\xd2\x31\ \x88\x88\x02\xa7\xbf\xd4\x8f\x65\xb9\xff\x94\x8e\xe1\x5b\x85\x7c\ \xfe\x98\xee\xae\xce\x29\xad\xbd\x9b\xea\x0c\xc0\x05\x00\x66\x4c\ \xf1\x18\xa1\xb5\xd6\xfa\x89\x74\x04\x22\xa2\xc0\x7a\xae\xff\x5e\ \xe9\x08\xbe\xe5\xba\xae\xe6\x3a\xce\xff\x99\xca\x31\xa6\x5a\x00\ \x38\xfd\x3f\x82\x9d\xb9\xe7\xd1\x53\x78\x59\x3a\x06\x11\x51\x60\ \xed\x2d\xed\xc5\x8a\xfc\x5d\xd2\x31\x7c\xab\x54\x2c\x7e\x68\x2a\ \xef\x9f\x74\x01\xb0\xad\xcc\x2c\x00\xe7\x4d\xe5\xe4\x61\xb6\xc6\ \xe2\x5f\x5a\x22\xa2\xa9\x7a\xb6\x9f\xff\x2f\x1d\x49\x21\x9f\x9f\ \xd9\xbd\x71\xdd\xeb\x27\xfb\xfe\xa9\xcc\x00\x5c\x0c\x3e\xf6\x77\ \x58\xbb\xf3\xff\x8b\x5d\xf9\xe5\xd2\x31\x88\x88\x02\xaf\xa7\xd8\ \x83\x97\x0b\xf7\x49\xc7\xf0\x2d\xc7\x71\xfe\x69\xb2\xef\x9d\x4a\ \x01\xe0\xce\x7f\x23\xe0\xa7\x7f\x22\xa2\xf2\x79\xa6\x9f\x1b\xa9\ \x8d\xa4\x54\x2c\xbe\x65\xb2\xef\x9d\x54\x01\xb0\xad\x4c\x1a\xc0\ \xe9\x93\x3d\x69\x98\xed\x29\xbc\x82\x1d\xb9\xbf\x4a\xc7\x20\x22\ \x0a\x8d\x6b\x7d\x7e\x6f\x00\x00\x20\x00\x49\x44\x41\x54\x4c\x61\ \x07\x3a\x8b\x0f\x49\xc7\xf0\xa5\x62\xa1\xd0\xd8\xbd\x71\xdd\x91\ \x93\x79\xef\x64\x67\x00\x2e\x9a\xc2\x7b\x43\x6d\x0d\x57\xfe\x13\ \x11\x95\xdd\x53\xfd\xdf\x97\x8e\xe0\x5b\x8e\xe3\xfc\xf3\x64\xde\ \x37\xd9\x41\xfc\x5d\x93\x7c\x5f\xa8\xed\x2d\xbe\x8a\xed\xd9\x27\ \xa5\x63\x10\x11\x85\xce\xf6\xfc\x56\x74\x95\x1e\x95\x8e\xe1\x4b\ \xa5\x62\xf1\xdc\xc9\xbc\x6f\xc2\x05\xc0\xb6\x32\x33\x00\x9c\x31\ \x99\x93\x85\xdd\x5a\xeb\x6e\xf0\x71\xbf\x44\x44\x95\xf1\x64\xff\ \x6d\xd2\x11\x7c\xa9\x58\x28\x34\x75\x6f\x5c\x77\xf8\x44\xdf\x37\ \x99\x19\x80\x8b\xc0\xd5\xff\xaf\xd1\x5f\xda\x8c\xad\xf6\x9f\xa5\ \x63\x10\x11\x85\xd6\x96\xdc\x06\x6c\x2b\x3d\x27\x1d\xc3\x97\x1c\ \xc7\xf9\x97\x89\xbe\x67\x32\x05\x80\xab\xff\x87\xb1\xd6\xba\x1b\ \x1e\x5c\xe9\x18\x44\x44\xa1\xe5\x01\x78\xc2\xbe\x45\x3a\x86\x2f\ \x95\x8a\xc5\xf3\x27\xfa\x9e\x09\x15\x00\xdb\xca\x34\x03\x38\x6b\ \xa2\x27\x09\xbb\x6c\xa9\x1b\x9b\xed\x3f\x48\xc7\x20\x22\x0a\xbd\ \x8d\xd9\xb5\xd8\xe9\xbc\x24\x1d\xc3\x77\x8a\x85\xc2\xb4\xee\x8d\ \xeb\x16\x4d\xe4\x3d\x13\x9d\x01\x78\x27\x00\x63\x82\xef\x09\xbd\ \xb5\x7b\xff\x07\xae\x57\x92\x8e\x41\x44\x14\x7a\x1e\x3c\x3c\xde\ \xff\x0d\xe9\x18\xbe\x34\xd1\xbb\x01\x26\x5a\x00\x38\xfd\x3f\x44\ \xce\xd9\x85\xae\xfe\x07\xa5\x63\x10\x11\xd5\x8c\xf5\xb9\x97\xb0\ \xc7\xe5\x93\x56\x87\x2a\x95\x4a\x6f\x9d\xc8\xeb\xc7\x5d\x00\x6c\ \x2b\xd3\x08\xe0\xec\x09\x27\x0a\xb9\xce\xbd\xf7\xc0\xf5\x8a\xd2\ \x31\x88\x88\x6a\x86\xeb\x79\x78\xbc\xff\x26\xe9\x18\xbe\x53\xcc\ \xe7\x9b\xbb\xbb\x3a\xdb\xc6\xfb\xfa\x89\xcc\x00\xbc\x09\x9c\xfe\ \x3f\x84\xeb\x15\xd1\xd5\xcf\xdd\xa9\x88\x88\xaa\xad\x33\xb7\x1c\ \x25\xcf\x96\x8e\xe1\x3b\xae\xe3\x5c\x35\xde\xd7\x4e\xa4\x00\x4c\ \x6a\xa3\x81\x30\xeb\xce\x3e\x8d\xa2\xdb\x2b\x1d\x83\x88\xa8\xe6\ \x14\xdd\x12\x56\x14\xee\x96\x8e\xe1\x3b\x8e\xe3\x5c\x30\xde\xd7\ \x4e\xa4\x00\x9c\x33\x89\x2c\xa1\xb6\xa9\xff\xf7\xd2\x11\x88\x88\ \x6a\xd6\xca\xec\x03\xd2\x11\x7c\xa7\x54\x28\x2c\x1c\xef\x6b\xc7\ \x55\x00\x6c\x2b\xb3\x08\xc0\xbc\xc9\x06\x0a\xa3\x82\x6b\x61\x47\ \xee\x2f\xd2\x31\x88\x88\x6a\x56\x77\x7e\x2b\x7a\xdd\x4d\xd2\x31\ \x7c\xc5\x71\x1c\x63\xfb\xc6\x75\xe3\xfa\xc0\x3e\xde\x19\x00\x7e\ \xfa\x1f\x62\x4b\xff\x23\xbc\xf5\x8f\x88\x48\x90\x07\x0f\x7f\xcb\ \xf1\x51\xc1\x43\xb9\x8e\xf3\x91\xf1\xbc\x6e\xbc\x05\x80\xd7\xff\ \x87\xd8\xd4\xff\x3b\xe9\x08\x44\x44\x35\xef\x95\xdc\xe3\xd2\x11\ \x7c\xc7\x29\x95\xc6\xf5\xbc\x9e\x31\x0b\x80\x6d\x65\x4c\x70\xf7\ \xbf\x43\xf4\x15\xbb\xb0\xa7\xb0\x5a\x3a\x06\x11\x51\xcd\xb3\x8a\ \x16\xb6\x94\x78\x39\xf6\x60\xc5\x42\x61\x66\x77\x57\x67\x62\xac\ \xd7\x8d\x67\x06\xe0\x54\x00\x75\x53\x8f\x14\x1e\xfc\xf4\x4f\x44\ \xe4\x1f\x2f\xe4\xee\x92\x8e\xe0\x2b\x9e\xe7\x29\xcf\x75\x3f\x36\ \xd6\xeb\xc6\x53\x00\x78\xfd\xff\x10\x1e\xf7\xfd\x27\x22\xf2\x91\ \x57\xb3\x2f\xc0\x83\x23\x1d\xc3\x57\x1c\xc7\x79\xf7\x58\xaf\x19\ \x4f\x01\xe0\xf5\xff\x83\x64\x72\xcb\x91\x2d\x75\x4b\xc7\x20\x22\ \xa2\x41\x39\xb7\x80\x97\x0b\x3f\x97\x8e\xe1\x2b\xa5\x62\xf1\xe8\ \xb1\x5e\x33\x6a\x01\xb0\xad\xcc\x0c\x00\xc7\x94\x2d\x51\x08\x6c\ \xee\x7f\x58\x3a\x02\x11\x11\x0d\xb1\x22\x7b\xbf\x74\x04\x5f\x29\ \x15\x8b\x89\xee\x8d\xeb\x0e\x1f\xed\x35\x63\xcd\x00\x9c\x0d\x40\ \x95\x2f\x52\xb0\x39\x5e\x1e\x5b\xb3\x8f\x49\xc7\x20\x22\xa2\x21\ \xb6\xe4\x5f\x45\xde\xeb\x91\x8e\xe1\x2b\xae\xeb\x7e\x72\xb4\x9f\ \x8f\x55\x00\x4e\x2d\x63\x96\xc0\xdb\x66\x3f\x81\x92\xcb\xbd\xa7\ \x89\x88\xfc\xc6\xf1\x5c\x2c\xcb\xfd\x50\x3a\x86\xaf\x38\x8e\x73\ \xe6\x68\x3f\x1f\xab\x00\x9c\x52\xc6\x2c\x81\xb7\x99\xab\xff\x89\ \x88\x7c\xeb\xe5\x1c\x17\x68\x1f\xcc\x29\x95\x3a\x46\xfb\xf9\x88\ \x05\xc0\xb6\x32\x49\x00\x47\x95\x3d\x51\x40\xe5\x9d\xdd\xd8\x99\ \x7b\x5e\x3a\x06\x11\x11\x8d\x20\x53\xd8\x89\x5d\xce\xcb\xd2\x31\ \x7c\xa3\x54\x2c\x26\xba\xbb\x3a\x67\x8e\xf4\xf3\xd1\x66\x00\x8e\ \x07\x1f\xff\xbb\xdf\xe6\xfe\x3f\xc0\x83\x2b\x1d\x83\x88\x88\x46\ \xc1\xcb\x00\x87\xf2\x5c\xf7\xbd\x23\xfd\x6c\xb4\x02\xc0\xe9\xff\ \x83\x6c\xb2\xf9\xe4\x3f\x22\x22\xbf\x5b\xc3\x87\xb4\x1d\xc2\x75\ \x9c\xb7\x8e\xf4\x33\x16\x80\x71\xe8\x2b\x76\x61\x6f\x61\x9d\x74\ \x0c\x22\x22\x1a\x43\x7f\xc9\x46\x57\xe9\x51\xe9\x18\xbe\xe1\x38\ \xce\x88\xfb\x01\x0c\x5b\x00\x6c\x2b\xa3\x00\x9c\x5c\xb1\x44\x01\ \xc3\x6b\xff\x44\x44\xc1\xb1\xae\xc0\xc5\x80\xfb\x94\x8a\xc5\x19\ \xdd\x5d\x9d\xc3\x8e\xf5\x23\xcd\x00\x2c\x02\x30\xad\x72\x91\x82\ \x25\x93\x5f\x26\x1d\x81\x88\x88\xc6\x69\x53\x61\x85\x74\x04\xdf\ \x70\x5d\x57\x79\x9e\x37\xec\x96\xfe\x23\x15\x00\x4e\xff\x0f\xf2\ \xe0\x22\x93\x7b\x51\x3a\x06\x11\x11\x8d\x53\xa6\xd0\x0d\x07\x05\ \xe9\x18\xbe\xe1\x39\xce\xbb\x86\xfb\x3e\x0b\xc0\x18\xf6\x16\xd6\ \xa1\xe8\xf6\x4a\xc7\x20\x22\xa2\x71\x72\x3c\x07\x1b\x8a\x8f\x48\ \xc7\xf0\x0d\xc7\x71\x86\xdd\xd4\x8f\x05\x60\x0c\x99\x1c\xa7\xff\ \x89\x88\x82\xe6\xd5\xc2\x9f\xa4\x23\xf8\x86\x53\x2a\xcd\x1b\xee\ \xfb\xaf\x29\x00\xb6\x95\x49\x01\x38\xa2\xd2\x81\x82\x62\x27\xaf\ \xff\x13\x11\x05\xce\xe6\xc2\x4a\xe9\x08\xbe\x51\x2a\x95\xa2\xdd\ \x5d\x9d\x73\x87\x7e\x7f\xb8\x19\x80\xd7\x81\x0f\x00\x02\x00\xb8\ \x5e\x09\xbb\x73\x5c\x4c\x42\x44\x14\x34\xbb\x8a\x19\x94\x3c\x3e\ \xbb\x65\x1f\xcf\x75\xdf\x36\xf4\x7b\xc3\xed\xf4\x77\x64\x15\xb2\ \x04\xc2\x9e\xc2\x6a\x94\xbc\xac\x74\x0c\x22\x1a\x22\x15\x69\xc1\ \xeb\xa6\x5f\x80\x19\xd1\x05\x68\x8a\xce\x85\xe7\x39\xd8\x5d\xe8\ \xc2\x8e\x6c\x27\x96\xef\xfa\x15\xec\xd2\x1e\xe9\x88\x24\xcc\xf5\ \x5c\x74\x16\x7f\x87\xc5\x91\x0b\xa5\xa3\xf8\x82\xeb\xba\xa7\x01\ \xf8\xfe\xc1\xdf\x63\x01\x18\x45\x26\xf7\x37\xe9\x08\x44\x34\x28\ \x15\x69\xc1\xc5\xf3\xbf\x81\x85\xf5\xa7\x21\xa6\xea\x47\x7c\xdd\ \xbb\x5b\x6f\x46\xbf\xdb\x83\xd5\xd6\x9f\x70\xdf\xfa\xcf\x21\xe7\ \x70\x11\x6f\xad\x7a\xb5\xf0\x18\x0b\xc0\x20\xd7\x75\x5f\x33\xb6\ \xb3\x00\x8c\x82\xf7\xff\x13\xc9\x4b\x18\x4d\x78\xff\xc2\x3b\x70\ \x78\xfd\x1b\x01\x6f\x7c\xef\x49\x6a\x4d\x78\x43\xd3\xc5\x38\x76\ \xda\x45\x78\xa1\xe7\x7e\xfc\xb4\xf3\xd3\x28\xb9\xb9\xca\x06\x25\ \xdf\xd9\x5a\x5c\x25\x1d\xc1\x37\x5c\xc7\x19\xd7\x1a\x00\x16\x00\ \x00\xae\x57\xc0\xee\xfc\x4b\xd2\x31\x88\x6a\xda\x11\x8d\x67\xe3\ \x2b\xc7\xbe\x8c\xc3\xeb\xc6\x3f\xf8\x1f\x4c\x79\x0a\xc7\x36\x5e\ \x84\x1b\xdf\xb0\x16\x87\xd5\xf1\xe1\xa6\xb5\xa6\xa7\xb8\x1b\x79\ \x6f\xaf\x74\x0c\x5f\x70\x4a\xa5\xd4\xd0\xef\x1d\x52\x00\x6c\x2b\ \xd3\x02\x60\x7a\xd5\x12\xf9\xd8\xee\xfc\xff\xc2\xf5\x8a\xd2\x31\ \x88\x6a\xd6\x39\x87\xfd\x03\x3e\xb6\xe8\x1e\x68\x9e\x3e\xe5\x63\ \x99\x88\xe1\xda\x25\x7f\xc4\x49\x33\x2f\x2b\x43\x32\x0a\x0a\xd7\ \xf3\xd0\x59\x7c\x50\x3a\x86\x2f\xb8\xae\xab\xba\x37\xae\x3b\xa4\ \x05\x0f\x9d\x01\xe0\xa7\xff\x41\x3b\x79\xff\x3f\x91\x98\x0b\xe7\ \xdd\x88\xf3\x67\x7d\x7e\x52\x9f\xfa\x47\xa2\x3c\x85\x4b\xe7\xdd\ \x8a\xa3\xa6\xbf\x66\x31\x34\x85\xd8\xab\x85\x27\xa4\x23\xf8\x86\ \xe7\x79\xe7\x1d\xfc\xe7\xa1\x05\x60\x69\x15\xb3\xf8\x1a\xaf\xff\ \x13\xc9\xb8\x70\xde\x8d\x38\x63\xc6\x47\x2b\x73\x70\x0f\xf8\x60\ \xfb\x9d\x98\x11\x6f\xaf\xcc\xf1\xc9\x77\xb6\x16\x56\x4b\x47\xf0\ \x0d\xd7\x75\x4f\x3a\xf8\xcf\x9c\x01\x18\x46\xc9\xb5\xb1\x27\xff\ \x8a\x74\x0c\xa2\x9a\x53\xd1\xc1\x7f\x90\xf2\x34\x7c\x7a\xe9\x43\ \x15\x3d\x07\xf9\x87\x55\xb4\x90\xf5\x32\xd2\x31\x7c\xc1\x75\x9c\ \x25\x07\xff\x99\x05\x60\x18\xbb\xf2\xcb\xe1\xc1\x91\x8e\x41\x54\ \x53\x2e\x9a\xff\xb5\x8a\x0f\xfe\xfb\x24\x55\x13\xce\x9a\x7d\x55\ \x55\xce\x45\xb2\x3c\x78\x58\x5b\xf8\xad\x74\x0c\x5f\x70\x1d\x67\ \xce\xc1\x7f\xde\x5f\x00\x6c\x2b\xa3\xc0\x4b\x00\x00\xb8\xff\x3f\ \x51\xb5\x5d\x34\xff\x6b\x38\xbd\xf9\x23\x55\x3d\xe7\x5b\xe7\x7c\ \xbe\xaa\xe7\x23\x39\xeb\x0b\x4f\x49\x47\xf0\x85\x52\xa9\x94\xec\ \xee\xea\xdc\x3f\xee\x1f\x3c\x03\xd0\x0a\x60\xe4\xdd\x35\x6a\x48\ \x26\xcf\xc7\xff\x12\x55\x8b\xc4\xe0\x0f\x0c\xdc\x19\x70\xfc\xcc\ \xf7\x54\xfd\xbc\x54\x7d\xdb\x8b\xeb\xa4\x23\xf8\x82\xe7\x79\x0a\ \x9e\xb7\x7f\x1d\xc0\xc1\x05\x60\x91\x40\x1e\xdf\xf1\xe0\xa2\xb7\ \xb8\x41\x3a\x06\x51\x4d\x90\x1a\xfc\xf7\x39\x79\xe6\xe5\x62\xe7\ \xa6\xea\xe9\x2d\xed\xe5\x65\xdd\x41\x9e\xe7\x9d\xbe\xef\xeb\x83\ \x0b\xc0\xbc\xea\x47\xf1\x9f\x6c\xa9\x1b\xae\x57\x90\x8e\x41\x14\ \x7a\xd2\x83\x3f\x00\xcc\x8d\x1f\x2d\x7a\x7e\xaa\x0e\xd7\xf3\x90\ \x71\xb8\x2b\x20\x00\xb8\xae\xbb\xff\x52\xff\xc1\x05\xa0\x4d\x20\ \x8b\xef\xf4\x15\xbb\xa4\x23\x10\x85\x9e\x1f\x06\x7f\x00\x30\x10\ \x91\x8e\x40\x55\xd2\x5d\x5a\x2e\x1d\xc1\x17\x3c\xcf\x5b\xb0\xef\ \x6b\x16\x80\x21\xfa\x4a\x2c\x00\x44\x95\x74\xf1\xfc\xaf\xfb\x62\ \xf0\xdf\x67\x7a\x6c\x9e\x74\x04\xaa\x82\x9d\xce\x1a\xe9\x08\xbe\ \xe0\xb9\xee\xec\x7d\x5f\xf3\x12\xc0\x10\x7d\xc5\x4d\xd2\x11\x88\ \x42\xeb\xe2\xf9\x5f\xc7\x69\xcd\x57\x48\xc7\x38\x44\x4b\x62\xb1\ \x74\x04\xaa\x82\xdd\xa5\x8d\xd2\x11\x7c\xc1\x75\xdd\xfd\xdb\xfd\ \x73\x06\x60\x88\x3e\xfe\x25\x21\xaa\x08\x3f\x0e\xfe\x00\xd0\x57\ \xdc\x25\x1d\x81\xaa\xc0\x72\xba\xa5\x23\xf8\x82\xeb\x38\xc9\x7d\ \x5f\x6b\x00\x60\x5b\x19\x03\xc0\xec\x11\xdf\x51\x43\x38\x03\x40\ \x54\x7e\x7e\x1d\xfc\x01\x60\x5b\x3f\x17\x87\xd5\x82\xde\x92\x25\ \x1d\xc1\x17\x1c\xc7\xd1\xbb\xbb\x3a\x63\xc0\x81\x19\x80\xb9\x00\ \xa6\xfe\xc8\xad\x80\x2b\xb9\xfd\xc8\x39\xfc\x34\x40\x54\x4e\x7e\ \x1e\xfc\xa1\x80\x82\x6b\x4b\xa7\xa0\x2a\xc8\xbb\x05\x6e\x09\xbc\ \x8f\xe7\x9d\x00\x1c\x28\x00\x9c\xfe\x07\xd0\x57\xe2\xa7\x7f\xa2\ \x72\xf2\xf5\xe0\x0f\xc0\x2a\x71\x5a\xb8\x96\x6c\x2f\x71\x97\x57\ \x00\xf0\x3c\xef\x58\x80\x05\xe0\x10\xbc\x05\x90\xa8\x7c\x2e\x9e\ \x7f\x93\xaf\x07\x7f\x00\x58\xb5\xe7\xf7\xd2\x11\xa8\x8a\x76\x70\ \x2f\x00\x00\x80\xe7\x79\x4b\x81\x03\x05\x60\x9e\x5c\x14\xff\xe0\ \x0c\x00\x51\x79\x0c\x0c\xfe\x1f\x96\x8e\x31\xa6\x3f\x6d\xbd\x4d\ \x3a\x02\x55\xd1\xae\xd2\xab\xd2\x11\x7c\xc1\x75\xdd\x0e\x80\x33\ \x00\x87\xe0\x0c\x00\xd1\xd4\x05\x65\xf0\xdf\x9c\x5b\x81\x4c\x6e\ \xbd\x74\x0c\xaa\xa2\x1e\x67\x8b\x74\x04\x5f\xf0\x5c\x77\x0e\x70\ \xa0\x00\xb4\x0a\x66\xf1\x0d\x16\x00\xa2\xa9\x09\xca\xe0\x0f\x05\ \xfc\x78\xad\xbf\x2f\x4f\x50\xf9\xed\x2d\x71\x91\x37\x70\x60\x2f\ \x80\x7d\x05\x60\x86\x60\x16\x5f\xf0\xe0\xa2\xaf\xb4\x59\x3a\x06\ \x51\x60\x05\x66\xf0\x07\xf0\xd7\x5d\xf7\x60\x57\x6e\x83\x74\x0c\ \xaa\xb2\x7e\xa7\x8f\x0f\x05\x02\xe0\x79\x5e\x02\x38\x50\x00\xa6\ \x8f\xf2\xda\x9a\xc0\x87\x00\x11\x4d\x5e\x90\x06\xff\x6d\xf9\xd5\ \xf8\x69\xe7\x35\xd2\x31\x48\x00\x1f\x0a\x34\xc0\x75\x5d\x13\x60\ \x01\xd8\x8f\x0b\x00\x89\x26\xe7\x92\xf9\xdf\x0c\xcc\xe0\x6f\x7b\ \x7b\x70\xcb\xca\xb3\xa5\x63\x90\xa0\x6e\x67\x85\x74\x04\x71\x9e\ \xeb\xea\x00\xa0\xd9\x56\x26\x01\x20\x26\x9c\x47\x5c\x5f\x91\x5b\ \x00\x13\x4d\xd4\x25\xf3\xbf\x89\x53\x9b\x3f\x28\x1d\x63\x5c\xb2\ \xde\x5e\x7c\xf5\xc5\xe3\x50\x72\x39\xd3\x57\xcb\x76\x96\x5e\x91\ \x8e\x20\xce\xf3\x3c\x74\x77\x75\x36\x6b\xe0\xa7\x7f\x00\xdc\x02\ \x98\x68\xa2\x82\x36\xf8\x7f\xe5\xc5\x63\x91\xe5\x76\xb0\x35\x8f\ \x0f\x05\x1a\xe4\x79\xed\x2c\x00\x83\xfa\xb9\x00\x90\x68\xdc\x38\ \xf8\x53\x50\xed\x75\x76\x4a\x47\xf0\x05\xcf\xf3\xe6\xb1\x00\x0c\ \x2a\xba\x7d\xd2\x11\x88\x02\x81\x83\x3f\x05\x59\xc1\xcb\x49\x47\ \xf0\x8b\xb9\x2c\x00\x83\x4a\x7c\x20\x08\xd1\x98\x38\xf8\x53\xd0\ \x95\xdc\xa2\x74\x04\x5f\xf0\x3c\x6f\x8e\x01\x16\x00\x00\x40\xc9\ \xcb\x4a\x47\x20\xf2\xb5\x4b\x16\xdc\x8c\x53\xa7\x7f\x40\x3a\xc6\ \xb8\x70\xf0\xa7\x91\x94\xbc\x92\x74\x04\x5f\xf0\x3c\xaf\x45\x03\ \x30\x4d\x3a\x88\x1f\x94\x3c\xce\x00\x10\x8d\x84\x83\x3f\x85\x45\ \xc9\xe3\x46\x40\x00\x00\xcf\x6b\xe6\x0c\x00\x00\xc0\x43\xc9\xe5\ \x0c\x00\x8d\x2e\x6a\x34\xa1\x21\xda\x8e\xb8\x31\x03\x31\xb3\x19\ \x8e\x9b\x45\xb6\xb8\x13\x76\x71\x3b\xac\xdc\x5a\x78\x70\xa5\x23\ \x56\x04\x07\x7f\x0a\x13\xc7\x73\x00\xb8\x38\xb0\x0d\x4e\x6d\xf2\ \x3c\x6f\x1a\x0b\x00\x80\x92\x97\x03\xe0\x49\xc7\x20\x1f\x8a\x19\ \xd3\xb1\x60\xda\x25\x98\x5d\x7f\x06\xa6\x27\x8e\x82\x1a\xe1\x7f\ \x1a\x79\x67\x0f\xb6\xf7\x3e\x85\x4d\xd6\xef\xb1\x79\xef\x23\x08\ \xcb\xdf\x27\x0e\xfe\x14\x46\x79\xcf\x42\x54\x35\x49\xc7\x10\xe5\ \x79\x5e\xca\x00\xd0\x28\x1d\x44\x9a\xc3\x4f\xff\x34\x44\x44\xaf\ \xc7\xe1\x33\xae\xc0\xa2\xe9\x97\xc1\xd0\xe2\x63\xbe\x3e\xaa\x37\ \xa2\xad\xf1\xef\xd0\xd6\xf8\x77\xe8\xc9\xbe\x8c\x15\xdd\xff\x8e\ \x6d\xbd\x4f\x56\x21\x69\xe5\x70\xf0\xa7\xb0\xca\x7a\x7b\x58\x00\ \x3c\x2f\xa9\x01\x88\x48\x07\x91\xc6\xeb\xff\x74\xb0\x69\xf1\x23\ \x71\xfe\xc2\x5f\x63\xc9\x8c\x8f\x8e\x6b\xf0\x1f\xaa\x29\x7e\x04\ \xce\x9c\x77\x07\x4e\x38\xec\xcb\xd0\x94\x59\x81\x84\x95\xc7\xc1\ \x9f\xc2\x2c\xe7\xf5\x48\x47\xf0\x03\x43\x03\x10\x95\x4e\x21\x8d\ \xb7\x00\xd2\x3e\x6d\x8d\x6f\xc5\xd9\xed\x77\x21\x6e\xce\x9c\xf2\ \xb1\x16\x34\x5d\x8c\x37\xce\xff\x21\xa2\x46\xb0\xd6\xd9\xbe\x6b\ \xc1\xb7\x38\xf8\x53\xa8\xe5\xdd\x3d\xd2\x11\xc4\x79\x9e\xa7\x73\ \x06\x00\xbc\x05\x90\x06\x1c\xd6\x70\x36\x4e\x9e\xfb\x0d\xe8\xaa\ \x7c\x9d\x78\x46\xf2\x58\x9c\xbd\xe0\x2e\xc4\x8c\xe6\xb2\x1d\xb3\ \x92\xde\xb5\xe0\x5b\x38\x65\xfa\xe5\xd2\x31\xc6\x85\x83\x3f\x4d\ \x56\xce\xdb\x2b\x1d\xc1\x0f\x58\x00\x00\xce\x00\x10\xd0\x18\x5b\ \x84\x93\xe6\xde\x04\x40\x95\xfd\xd8\x0d\xd1\xf9\x78\xd3\x82\x1f\ \xfb\xbe\x04\x70\xf0\xa7\x5a\x91\x67\x01\xe0\x0c\xc0\x3e\x5c\x03\ \x50\xdb\x34\x65\xe2\xb4\xb6\xef\x4c\xea\x7a\xff\x78\xf9\xbd\x04\ \x70\xf0\xa7\x5a\x92\xf7\x7a\xa5\x23\xf8\x81\xc6\x35\x00\x00\xf7\ \x00\xa8\x71\xed\xd3\x2e\x41\x5d\x64\x6e\xc5\xcf\xd3\x10\x9d\x8f\ \xb3\x17\xfc\x18\x71\x63\x46\xc5\xcf\x35\x11\x1c\xfc\xa9\xd6\x14\ \x58\x00\x38\x03\xb0\x0f\x67\x00\x6a\x97\xae\xc5\xb0\x74\xe6\x27\ \xaa\x76\xbe\xfa\xe8\x7c\xbc\x69\xc1\x8f\x7c\x53\x02\xde\xbd\xe0\ \x16\x0e\xfe\x54\x73\x0a\x5e\xbf\x74\x04\x3f\x50\x2c\x00\xe0\x0c\ \x40\x2d\x9b\x5d\x7f\x46\xd5\xa7\xe5\xfd\x52\x02\xda\x1a\x2f\xc0\ \xc9\xd3\xdf\x2f\x9a\x61\xbc\x38\xf8\x53\x39\xb1\x00\x00\x9e\xe7\ \xf1\x12\x00\xc0\x19\x80\x5a\x36\xbb\xfe\x4c\x91\xf3\x4a\x97\x80\ \xb6\xc6\x0b\x70\xd2\x61\x37\x8a\x9c\x7b\xa2\x38\xf8\x53\xb9\xe5\ \xb9\xf0\x1b\xf0\x3c\xce\x00\x00\x80\xc3\xbf\x0c\x35\x6b\x56\xfd\ \x69\x62\xe7\x96\x2a\x01\xfb\x06\x7f\xa5\xf4\xaa\x9e\x77\x32\x38\ \xf8\x53\x25\x14\x79\xeb\x37\x3c\x5e\x02\x18\xc0\x7d\x00\x6a\x93\ \xa1\x25\xc4\x57\xe5\xd7\x0f\xde\x1d\x50\xad\x12\xc0\xc1\x9f\x08\ \x28\x7a\x39\xe9\x08\xf2\x38\x03\x30\x80\xfb\x00\xd4\xa6\xb8\xe9\ \x8f\x85\x78\xf5\xd1\x79\x03\x25\xa0\x0c\xbb\x0f\x8e\x86\x83\x3f\ \xd1\x00\x16\x00\xc0\xf3\xbc\x1a\x7f\x1e\x22\xd5\xb4\xa8\xee\x9f\ \x87\x81\xd4\x47\xe7\xe1\x4d\xf3\x7f\x54\xb1\x12\xc0\xc1\x9f\x88\ \x86\xd2\x00\x14\xa4\x43\x48\x33\xb4\x84\x74\x04\x12\x50\x70\xfc\ \x35\xc0\x54\xaa\x04\x70\xf0\x27\x3a\x94\xa9\x62\xd2\x11\xc4\x29\ \xa5\x58\x00\x00\xc0\x50\x95\xdb\x01\x8e\xfc\x2b\x5b\xca\x48\x47\ \x78\x8d\x72\x97\x00\x0e\xfe\x44\xaf\xc5\x02\x00\x40\x29\x8f\x05\ \x00\x80\xce\x19\x80\x9a\x54\x74\x7a\x51\x70\xfc\xb7\x27\xf8\x40\ \x09\x98\xfa\x9a\x00\x0e\xfe\x44\xc3\x33\xf9\xa1\x0f\x0a\xf0\x34\ \x00\x79\xe9\x20\xd2\x0c\xc5\x02\x50\xab\xb6\xf7\x3d\x25\x1d\x61\ \x58\xf5\xd1\xb6\x29\x95\x00\x0e\xfe\x44\x23\x8b\xf2\x43\x1f\x67\ \x00\xf6\xa9\xe4\x43\x60\xc8\xdf\xb6\xee\x7d\x5c\x3a\xc2\x88\x0e\ \x94\x80\xf4\x84\xde\xc7\xc1\x9f\x68\x74\x11\x95\x94\x8e\x20\x4e\ \x29\xe5\xb2\x00\x80\x33\x00\xb5\x6c\x6b\xef\x9f\x51\x70\xfc\xfb\ \x60\x90\x81\x12\xf0\xa3\x71\x97\x00\x0e\xfe\x44\x63\x63\x01\x00\ \x30\x78\x09\x80\x05\x80\x33\x00\x35\xab\xe0\xf4\x62\x75\xe6\x87\ \xd2\x31\x46\x35\xde\x12\xc0\xc1\x9f\x68\x7c\x22\xaa\x5e\x3a\x82\ \xb8\x7d\x33\x00\x5c\x03\xc0\x19\x80\x9a\xf6\x4a\xe6\x2e\x64\x4b\ \x3b\xa5\x63\x8c\xaa\x3e\xda\x36\xf0\x28\xe1\x11\x4a\x00\x07\x7f\ \xa2\xf1\x8b\xb2\x00\x00\x80\xc3\x19\x00\x70\x1f\x80\x5a\xe7\xb8\ \x39\x3c\xdd\xf5\x0f\x70\xbd\x92\x74\x94\x51\xd5\x45\x5a\x87\x2d\ \x01\x1c\xfc\x89\x26\x26\xaa\x1a\xa4\x23\x88\x53\x4a\xb1\x00\x00\ \xdc\x07\x80\x80\x9d\xfd\x7f\xc3\xb2\xad\xff\x26\x1d\x63\x4c\x43\ \x4b\x00\x07\x7f\xa2\x89\x8b\xb1\x00\x00\x9c\x01\x18\xc0\x19\x00\ \x02\x80\x75\xbb\x7f\x86\x97\x77\xde\x29\x1d\x63\x4c\xfb\x4a\xc0\ \xe2\xe6\xcb\x39\xf8\x13\x4d\x42\x54\x6b\x94\x8e\x20\x4f\x29\xc7\ \x00\xd7\x00\x70\x0d\x00\xed\xb7\x7c\xfb\xad\x00\x14\x8e\x98\x71\ \x85\x74\x94\x51\xd5\x45\x5a\x71\xcc\xac\xeb\xa5\x63\x8c\x0b\x07\ \x7f\xf2\x9b\x98\xf2\xcf\x73\x40\xa4\x28\xa0\xa4\x01\xa8\xf9\xff\ \x2a\x75\xde\x05\x40\x07\x59\xbe\xfd\x16\xbc\xbc\xf3\xbf\xa4\x63\ \x84\x02\x07\x7f\xf2\xa3\xb8\xe2\x0c\x80\x52\xca\xd6\x00\xec\x92\ \x0e\x22\xcd\x50\x31\x00\x4a\x3a\x06\xf9\x08\x4b\xc0\xd4\x71\xf0\ \x27\xbf\x8a\xaa\x94\x74\x04\x71\x4a\x29\x8b\x05\x00\x00\xa0\xb8\ \x17\x00\xbd\x06\x4b\xc0\xe4\x71\xf0\x27\xbf\xd2\x95\x8e\x81\x07\ \xe1\xd6\x38\xa5\x76\xb3\x00\x0c\xe2\x3a\x00\x1a\x0e\x4b\xc0\xc4\ \x71\xf0\x27\x3f\x33\x02\xb0\x68\xb6\x1a\x94\x52\x3b\x59\x00\x06\ \xf1\x56\x40\x1a\x09\x4b\xc0\xf8\x71\xf0\x27\xbf\x33\x94\x21\x1d\ \xc1\x17\x94\x52\xdb\x59\x00\x06\xf1\x56\x40\x1a\x0d\x4b\xc0\xd8\ \x38\xf8\x53\x10\x18\x9a\x29\x1d\xc1\x17\x94\x52\x5b\x58\x00\x06\ \x99\x5a\x9d\x74\x04\xf2\x39\x96\x80\x91\x71\xf0\xa7\xa0\x88\xa8\ \x98\x74\x04\xbf\xd8\xc4\x02\x30\x28\x69\x1c\x26\x1d\x81\x02\x60\ \xf9\xf6\x5b\xb0\x7a\xa7\xbf\x1f\x1e\x54\x6d\x1c\xfc\x29\x48\x1a\ \xf4\x19\xd2\x11\x7c\x41\x29\xb5\x81\x05\x60\x50\x9d\x39\x57\x3a\ \x02\x05\xc4\x8b\xdb\xbf\xc5\x12\x30\x88\x83\x3f\x05\xcd\x34\xa3\ \x4d\x3a\x82\x3f\x28\xd5\xa9\x25\x52\xcd\x36\x80\x9c\x74\x16\x69\ \x75\x26\xff\x52\xd0\xf8\xb1\x04\x70\xf0\xa7\x60\x9a\x61\x2c\x96\ \x8e\x20\x4e\x29\x85\x74\x6b\x7b\x66\xdf\xcd\x90\x35\x3f\x0b\x50\ \x67\x70\x06\x80\x26\xa6\x96\x4b\x00\x07\x7f\x0a\xaa\xb4\x7e\x94\ \x74\x04\x71\x4a\xd3\x1c\xe0\xc0\x6e\x08\x35\x5f\x00\xe2\x46\x1a\ \x9a\x8a\x48\xc7\xa0\x80\x79\x71\xfb\xb7\xb0\x3a\xf3\x23\xe9\x18\ \x55\xc5\xc1\x9f\x82\x4a\x53\x0a\xcd\xfa\x12\xe9\x18\xe2\x34\x4d\ \x2b\x02\x07\x0a\xc0\x4e\xc1\x2c\xbe\xa0\xa0\x21\x69\xcc\x91\x8e\ \x41\x01\xf4\xe2\xb6\x9b\x6b\xa6\x04\x70\xf0\xa7\x20\x4b\xea\x49\ \x28\x70\x23\x20\xa5\x94\x0d\x1c\x28\x00\x5d\x82\x59\x7c\xa3\x9e\ \xeb\x00\x68\x92\x6a\xa1\x04\x70\xf0\xa7\xa0\x6b\x30\x9a\xa5\x23\ \xf8\x82\xa6\x69\xbb\x80\x03\x05\x60\xa3\x60\x16\xdf\xe0\x3a\x00\ \x9a\x8a\x30\x97\x00\x0e\xfe\x14\x06\x4d\xfa\x6c\xe9\x08\xbe\xa0\ \x34\x6d\x0b\xc0\x02\x70\x88\x3a\xb3\x55\x3a\x02\x05\x5c\x18\x4b\ \x00\x07\x7f\x0a\x8b\xe9\x46\xbb\x74\x04\x5f\xd0\x34\xad\x13\x38\ \x50\x00\x36\xc8\x45\xf1\x0f\x16\x00\x2a\x87\x81\x12\xf0\x63\xe9\ \x18\x65\xc1\xc1\x9f\xc2\x64\x26\x17\x00\x02\x00\x94\x52\x2b\x01\ \xce\x00\x1c\x82\x97\x00\xa8\x5c\x5e\xdc\xf6\xcd\xc0\x97\x00\x0e\ \xfe\x14\x36\x2d\xc6\xb1\xd2\x11\x7c\x41\x29\xb5\x0c\x38\x50\x00\ \x36\x03\x70\xe5\xe2\xf8\x83\xa1\x25\x11\xd5\xa7\x49\xc7\xa0\x90\ \x08\x72\x09\xe0\xe0\x4f\x61\x13\xd5\x4c\xc4\x15\x17\x01\x02\x00\ \x94\x7a\x1e\x18\x2c\x00\x89\x54\x73\x11\xc0\x56\xd1\x40\x3e\x51\ \x67\xf0\x32\x00\x95\x4f\x10\x4b\x00\x07\x7f\x0a\xa3\x3a\x23\x25\ \x1d\xc1\x17\x34\x5d\x77\xd2\xad\xed\x87\xdc\x06\x08\x70\x1d\x00\ \x00\xa0\x9e\xeb\x00\xa8\xcc\x5e\xdc\xf6\x4d\xbc\x92\xf9\x6f\xe9\ \x18\xe3\xc2\xc1\x9f\xc2\xaa\x51\x6f\x91\x8e\xe0\x0b\xba\xae\xf7\ \xef\xfb\xfa\xe0\x02\xc0\x75\x00\x00\x92\x7c\x28\x10\x55\xc0\x0b\ \xdb\xbe\xe1\xfb\x12\xc0\xc1\x9f\xc2\x6c\x1a\x67\x77\x01\x00\x9a\ \xa6\xed\xde\xff\xf5\x41\xdf\x67\x01\x00\x2f\x01\x50\xe5\xf8\xb9\ \x04\x70\xf0\xa7\xb0\x6b\xd6\x17\x49\x47\xf0\x05\xa5\x69\xfb\x2f\ \xf7\xf3\x12\xc0\x10\xbc\x04\x40\x95\xe4\xc7\x12\xc0\xc1\x9f\x6a\ \x41\xda\x38\x5a\x3a\x82\x2f\x28\xa5\x3a\xf7\x7d\xcd\x19\x80\x21\ \xe2\x46\x0b\x34\x65\x4a\xc7\xa0\x10\x1b\x28\x01\x77\x49\xc7\x00\ \xc0\xc1\x9f\x6a\x83\xa6\x14\x66\xe8\x4b\xa5\x63\xf8\x82\xa6\x69\ \x2f\xef\xff\xfa\xa0\xef\xaf\x11\xc8\xe2\x3b\x0a\x1a\x9f\x09\x40\ \x15\xf7\xc2\xb6\x9b\xc4\x4b\xc0\xb6\xde\xa7\x38\xf8\x53\x4d\xa8\ \xd3\xeb\xf9\x10\xa0\x41\x4a\xa9\x27\xf6\x7d\x3d\x74\x06\xa0\xaf\ \xfa\x71\xfc\x67\x7a\xf4\x18\xe9\x08\x54\x03\x24\x4b\xc0\xf6\xbe\ \xa7\xf1\xe4\xc6\x6b\x38\xf8\x53\x4d\x68\x89\x70\x0b\x60\x00\x50\ \x4a\x79\x50\xea\xe9\x7d\x7f\xde\x5f\x00\x12\xa9\x66\x0f\xc0\x4b\ \x22\xa9\x7c\xa6\x39\xc6\xdd\xa2\xa8\x3a\x24\x4a\xc0\xf6\xbe\xa7\ \xf1\xc4\x86\xab\xe1\x78\xf9\xaa\x9e\x97\x48\xca\xfc\xc8\xa9\xd2\ \x11\x7c\x41\x37\x8c\xfe\x74\x6b\xfb\xfe\x4d\xff\xb4\x21\x3f\x5f\ \x59\xe5\x3c\xbe\xd4\x1c\x3d\x1a\xea\x35\xff\x68\x88\x2a\xa3\x9a\ \x25\xa0\xbb\xef\x19\x3c\xb1\xf1\x1a\x0e\xfe\x54\x33\x14\x14\x16\ \x46\x2e\x90\x8e\xe1\x0b\xba\xae\x1f\xb2\xe1\x1f\x0b\xc0\x30\x0c\ \x2d\x89\xc6\xc8\x62\xe9\x18\x54\x43\xaa\x51\x02\xba\xfb\xfe\x82\ \xc7\x37\x5e\x0d\xc7\xcd\x55\xf4\x3c\x44\x7e\x92\x32\x53\x48\xa8\ \x19\xd2\x31\x7c\x41\xd3\xf5\x55\x87\xfc\x79\xc8\xcf\x59\x00\x06\ \x35\xc7\xde\x20\x1d\x81\x6a\x4c\x25\x4b\xc0\xc0\xe0\x7f\x15\x07\ \x7f\xaa\x39\xb3\x23\xbc\xff\x7f\x1f\x4d\xd3\x9e\x39\xe4\xcf\x43\ \x7e\xce\x02\x30\x88\xeb\x00\x48\xc2\x0b\xdb\x6e\xc2\xb2\xad\x37\ \xc2\xf3\x9c\xb2\x1d\x73\xdd\xee\x7b\xf1\xd8\x86\x8f\x73\xf0\xa7\ \x9a\x34\x2f\x72\xba\x74\x04\xdf\x50\x4a\x3d\x7c\xf0\x9f\x0f\x29\ \x00\x89\x54\xf3\x76\x00\xbb\xaa\x9a\xc8\xa7\xa6\x45\x8f\xe4\x7e\ \x00\x24\x62\xcd\xae\xff\xc1\x9f\xd7\x5f\x81\x6c\x69\xe7\x94\x8e\ \x53\x72\xb3\x78\x6e\xcb\x0d\x78\x7e\xcb\x97\xe1\x7a\xa5\x32\xa5\ \x23\x0a\x0e\x05\x85\x85\xe6\x5b\xa5\x63\xf8\x82\xa6\x69\x5e\xba\ \xad\x63\xc5\x21\xdf\x1b\xe6\x75\x9c\x05\x00\xa0\xab\x28\x9a\x22\ \xdc\x38\x82\x64\xec\xe8\x7f\x0e\x0f\xbc\x72\x1e\x56\x74\x7f\x1b\ \x05\xa7\x77\x42\xef\x75\xbd\x22\xd6\xee\xfa\xbf\x78\xe0\x95\x73\ \xd1\xb9\xfb\xbe\x0a\x25\x24\xf2\xbf\x26\x73\x1a\xa2\xaa\x51\x3a\ \x86\x2f\xe8\x86\xf1\x9a\x7b\x7e\x8d\x61\x5e\xf7\x12\x80\x33\x2b\ \x1f\xc7\xff\x9a\x63\xc7\x62\x57\xfe\x45\xe9\x18\x54\xa3\x1c\x37\ \x87\x55\x3b\x7e\x80\x75\xbb\x7e\x8a\xd9\xf5\x6f\xc4\xec\xfa\xd3\ \x91\xae\x3f\x05\x51\xfd\xb5\xff\x43\x73\xdc\x1c\xba\xfb\x9f\xc5\ \xb6\xde\x27\xb0\x65\xef\x9f\x60\x17\xbb\x05\x12\x13\xf9\xcb\x9c\ \xc8\x11\xd2\x11\x7c\x43\xd3\xf5\xcd\x43\xbf\x37\x5c\x01\xe0\x0c\ \xc0\xa0\x19\xb1\x63\xf1\x8a\xf5\x43\xe9\x18\x54\xe3\x0a\x4e\x2f\ \x36\xec\xf9\x35\x36\xec\xf9\x35\x00\xc0\xd4\xea\x10\x37\x67\x20\ \x6a\x34\xa1\xe0\xec\x45\xae\x98\x41\xde\xd9\x23\x9c\x92\xc8\x7f\ \x16\x44\xf8\x59\x76\x1f\x4d\xd3\x5e\x33\xb6\xb3\x00\x8c\xa2\x31\ \x72\x04\x74\x15\x83\xe3\x71\xf1\x14\xf9\x47\xd1\xed\x43\x31\xdf\ \x07\xe4\xd7\x4b\x47\x21\xf2\x2d\x4d\x29\xb4\x9b\xe7\x49\xc7\xf0\ \x0d\x4d\xd3\x9e\x7c\xcd\xf7\x86\x79\xdd\x0a\x00\x5e\xe5\xe3\xf8\ \x9f\xa6\x0c\x4c\x8f\x1e\x25\x1d\x83\x88\x88\x26\x68\xba\x39\x03\ \x86\x4a\x48\xc7\xf0\x0d\xa5\x69\xbf\x1e\xfa\xbd\xd7\x14\x80\x44\ \xaa\xd9\x02\xf0\xf2\xd0\xef\xd7\x2a\xde\x0e\x48\x44\x14\x3c\x73\ \xb8\x88\x7b\x3f\xc3\x30\xf2\xe9\xd6\xf6\x4d\x43\xbf\x3f\xd2\x7e\ \xb7\x4f\x8f\xf0\xfd\x9a\xc3\x02\x40\x44\x14\x3c\x0b\x22\x6f\x92\ \x8e\xe0\x1b\xba\x61\x6c\x18\xee\xfb\x23\x15\x80\x67\x46\xf8\x7e\ \xcd\x49\x45\x16\xc2\xd4\xea\xa5\x63\x10\x11\xd1\x38\xe9\x4a\xc3\ \x7c\xf3\xcd\xd2\x31\x7c\x43\xd7\xf5\x61\x3f\xd4\x73\x06\x60\x0c\ \x0a\x1a\x9a\x63\xaf\x97\x8e\x41\x44\x44\xe3\xd4\x1c\x69\x81\x8e\ \x88\x74\x0c\xdf\x50\xba\x3e\xec\x86\x20\x23\x15\x80\x57\x00\xec\ \xae\x5c\x9c\x60\x69\x8e\xf2\x32\x00\x11\x51\x50\x1c\x16\x79\x9d\ \x74\x04\xdf\xd0\x34\xcd\x1b\xba\x05\xf0\xfe\x9f\x0d\xf7\xcd\x44\ \xaa\xd9\x03\xf0\x97\x8a\xa6\x0a\x90\x19\xb1\xe3\xa4\x23\x10\x11\ \xd1\x38\x2d\x8c\x9c\x23\x1d\xc1\x37\x0c\xd3\xcc\xa4\x5b\xdb\xdd\ \xe1\x7e\x36\xda\x43\xef\x79\x19\x60\x50\x9d\xd9\x8a\x86\x48\x87\ \x74\x0c\x22\x22\x1a\x43\xd2\x48\xa0\xd5\x38\x4b\x3a\x86\x6f\xe8\ \xba\xbe\x7c\xa4\x9f\x8d\x56\x00\xb8\x10\xf0\x20\x73\x13\x6c\x94\ \x44\x44\x7e\xb7\x28\x76\x92\x74\x04\x5f\xd1\x74\x7d\xd8\xe9\x7f\ \x60\xf4\x02\xf0\x57\x00\xe5\x7b\x26\x69\xc0\x1d\x96\x7c\x0b\xd4\ \xa8\xff\xb8\x88\x88\x48\xda\xb1\xb1\x0f\x4b\x47\xf0\x15\xa5\x69\ \x77\x8f\xf4\xb3\x11\x47\xb4\x44\xaa\xb9\x0f\x03\xbb\x02\x12\x80\ \xa8\x3e\x8d\x6b\x01\x88\x88\x7c\xac\x39\x32\x03\xd3\x75\x3e\x00\ \x68\x1f\xc3\x34\xb3\xe9\xd6\xf6\x11\x9f\x0c\x36\xd6\x47\x5a\x5e\ \x06\x38\xc8\x61\xc9\x73\xa5\x23\x10\x11\xd1\x08\x8e\x88\xbd\x45\ \x3a\x82\xaf\xe8\x86\xd1\x39\xda\xcf\xc7\x2a\x00\x4f\x95\x31\x4b\ \xe0\xcd\x4a\x9c\x0e\x43\xe3\xde\xd2\x44\x44\x7e\xa3\x2b\x8d\xd3\ \xff\x43\xe8\xba\xfe\xd8\x68\x3f\x1f\xab\x00\x3c\x02\x3e\x18\x68\ \x3f\x5d\x45\x31\x3b\xce\xc7\x4b\x12\x11\xf9\xcd\x9c\xe8\x02\x44\ \x55\x93\x74\x0c\x5f\xd1\x34\xed\xf6\x51\x7f\x3e\xda\x0f\x13\xa9\ \xe6\x6e\x00\x23\xde\x42\x50\x8b\x0e\x4b\xf2\xf1\x92\x44\x44\x7e\ \x73\x54\xfc\x42\xe9\x08\xbe\x62\x98\x66\x36\xdd\xd6\xb1\x72\xb4\ \xd7\x8c\x67\x59\xfb\xef\xca\x94\x27\x14\x9a\x63\x47\x23\x6e\xa4\ \xa5\x63\x10\x11\xd1\xa0\x98\x16\xc1\x11\x91\x77\x49\xc7\xf0\x15\ \xc3\x34\xc7\xfc\xf0\x3e\x9e\x02\xf0\xfb\x32\x64\x09\x11\x85\xc3\ \x12\x5c\x68\x42\x44\xe4\x17\x0b\xe2\xc7\x40\x41\x97\x8e\xe1\x2b\ \xfa\x08\xfb\xff\x1f\x6c\x3c\x05\xe0\x49\x00\xf6\xd4\xe3\x84\xc7\ \x5c\xde\x0d\x40\x44\xe4\x1b\xc7\xc4\x2e\x97\x8e\xe0\x2b\x4a\x29\ \x28\x4d\xbb\x63\xac\xd7\x8d\x59\x00\x12\xa9\xe6\x02\x80\x47\xcb\ \x11\x2a\x2c\xea\xcc\x56\x34\x46\x0e\x97\x8e\x41\x44\x54\xf3\x52\ \x66\x0a\x73\x0c\xee\xfe\x77\x30\x33\x12\xd9\x99\x6e\x6d\xef\x1b\ \xeb\x75\xe3\xdd\xda\x8e\x97\x01\x86\xe0\x2c\x00\x11\x91\xbc\xc5\ \xb1\x33\xa4\x23\xf8\x8e\x6e\x18\x4f\x8e\xe7\x75\xe3\x2d\x00\x5c\ \x08\x38\xc4\x9c\xe4\xd9\xd0\x94\x21\x1d\x83\x88\xa8\x66\x29\x28\ \xbc\x21\x76\x85\x74\x0c\xdf\xd1\x74\xfd\xce\x71\xbd\x6e\x3c\x2f\ \x4a\xa4\x9a\x57\x03\xe8\x9a\x52\xa2\x90\x89\x68\x29\xcc\xe4\x43\ \x27\x88\x88\xc4\xa4\xa3\xb3\x51\xaf\xcd\x95\x8e\xe1\x2b\xba\xae\ \x97\x5a\xda\x3a\x1e\x1c\xcf\x6b\x27\xf2\x74\x1b\x5e\x06\x18\x62\ \x6e\x92\x4f\x08\x24\x22\x92\x72\x64\xfc\x02\xe9\x08\xbe\x63\x98\ \xe6\xa8\xdb\xff\x1e\x8c\x05\x60\x0a\xd2\xf1\x53\x60\x6a\xf5\xd2\ \x31\x88\x88\x6a\x8e\xa9\x19\x38\x2a\x72\x99\x74\x0c\xdf\xd1\x0d\ \x63\x5c\x9f\xfe\x81\x89\x15\x80\x3f\x02\x28\x4d\x3c\x4e\x78\x69\ \xca\x44\x6b\xf2\x7c\xe9\x18\x44\x44\x35\xa7\x3d\x76\x34\x0c\xc5\ \x67\xb3\x0c\xa5\x69\xda\x6d\xe3\x7e\xed\x78\x5f\x98\x48\x35\xf7\ \x80\xb7\x03\xbe\x46\x7b\xc3\x7b\xa0\x29\x53\x3a\x06\x11\x51\xcd\ \xd0\x94\xc2\x19\xc9\xeb\xa5\x63\xf8\x8e\x19\x89\xec\x4e\xb7\x75\ \xac\x1f\xef\xeb\x27\x32\x03\x00\x00\x3f\x9f\xe0\xeb\x43\x2f\xa6\ \x4f\x47\x6b\xf2\xad\xd2\x31\x88\x88\x6a\xc6\xfc\xd8\x52\x34\x6a\ \xed\xd2\x31\x7c\xc7\x30\xcd\x71\x4f\xff\x03\x13\x2f\x00\xf7\x03\ \x70\x26\xf8\x9e\xd0\x5b\xd8\xf0\x3e\xde\x12\x48\x44\x54\x05\x0a\ \x0a\x67\x24\xff\x51\x3a\x86\x2f\xe9\xba\xfe\x6f\x13\x79\xfd\x84\ \x0a\x40\x22\xd5\xbc\x13\xc0\xa8\xcf\x17\xae\x45\x71\x23\xcd\xe7\ \x03\x10\x11\x55\x41\x5b\x7c\x21\x66\xe8\x4b\xa5\x63\xf8\x8e\x19\ \x89\xf4\xa4\xdb\x3a\x56\x4f\xe4\x3d\x13\x9d\x01\x00\x78\x19\x60\ \x58\x0b\x53\x97\x41\x4d\xea\x1f\x27\x11\x11\x8d\x87\x02\x70\x7a\ \xe2\x5a\xe9\x18\xbe\x64\x98\xe6\xc3\x13\x7d\xcf\x64\x46\xac\x5f\ \x02\x70\x27\xf1\xbe\x50\x4b\x1a\x87\x61\x76\xe2\x8d\xd2\x31\x88\ \x88\x42\x6b\x4e\x6c\x1e\x66\x19\xc7\x4b\xc7\xf0\x25\x5d\xd7\xbf\ \x3a\xd1\xf7\x4c\xb8\x00\x24\x52\xcd\x3b\x00\x3c\x3e\xd1\xf7\xd5\ \x82\x85\xa9\xcb\x30\xd0\x51\x89\x88\xa8\xdc\x4e\x4b\x5e\x23\x1d\ \xc1\x97\xcc\x48\x64\x4f\xba\xad\x63\xd5\x44\xdf\x37\xd9\x39\x6b\ \x5e\x06\x18\x46\x83\xb9\x00\x2d\xf1\xd3\xa4\x63\x10\x11\x85\x4e\ \x4b\x74\x36\x5a\x8d\xb3\xa4\x63\xf8\x92\x61\x9a\x93\x7a\x5e\xcf\ \x64\x0b\x00\x2f\x03\x8c\x60\x51\xea\xfd\xd2\x11\x88\x88\x42\xe7\ \xd4\xe4\x27\xa5\x23\xf8\x96\xae\xeb\x37\x4e\xe6\x7d\x93\x2a\x00\ \x89\x54\xf3\x76\x00\xe3\x7a\xdc\x60\xad\x69\x8c\x2c\xc6\xcc\xd8\ \x09\xd2\x31\x88\x88\x42\xa3\x39\x32\x13\xed\x26\x77\x5d\x1d\x8e\ \x19\x89\x58\xe9\xb6\x8e\x15\x93\x79\xef\x54\x96\xad\xf3\x32\xc0\ \x08\x16\xa5\x2e\x97\x8e\x40\x44\x14\x1a\x27\x27\xf9\xc8\xdf\x91\ \x18\xa6\x39\xe9\xe7\xf4\x4c\xa5\x00\xfc\x02\xdc\x14\x68\x58\xd3\ \xa2\xaf\xc3\xf4\xe8\xd1\xd2\x31\x88\x88\x02\xaf\xc9\x6c\xc2\x11\ \x91\x4b\xa4\x63\xf8\xd6\x64\xa7\xff\x81\x29\x14\x80\x44\xaa\x79\ \x1b\x80\x09\xdf\x77\x58\x2b\x38\x0b\x40\x44\x34\x75\x27\x26\xf9\ \xff\xd2\x91\x44\xa2\xd1\x1d\xe9\xb6\x8e\x17\x27\xfb\xfe\xa9\xee\ \x5c\xf3\x5f\x53\x7c\x7f\x68\xcd\x88\x1d\x87\xa6\xc8\x11\xd2\x31\ \x88\x88\x02\xab\xc1\x68\xc0\x51\x51\x16\x80\x91\x18\xa6\xf9\xa3\ \xa9\xbc\x7f\xaa\x05\xe0\x01\x00\x3b\xa7\x78\x8c\xd0\x5a\xc8\x3b\ \x02\x88\x88\x26\xed\xf8\xe4\xa5\xd2\x11\x7c\x4b\xd3\x34\x57\xd3\ \xf5\x2f\x4f\xe9\x18\x53\x79\x73\x22\xd5\x5c\x04\xf0\x93\xa9\x1c\ \x23\xcc\x5a\xe2\xa7\xa0\xc1\xe4\x13\xab\x88\x88\x26\x2a\x69\x24\ \x71\x6c\xec\xa3\xd2\x31\x7c\x2b\x12\x8d\xbe\x90\x6e\x6d\xb7\xa7\ \x72\x8c\x72\x6c\x5e\xcf\xcb\x00\x23\x52\x38\xb2\xe9\x6a\xe9\x10\ \x44\x44\x81\x73\x66\xdd\xc7\xa0\xa0\x4b\xc7\xf0\x2d\xdd\x34\xbf\ \x34\xd5\x63\x4c\xb9\x00\x24\x52\xcd\xab\x00\x3c\x3b\xd5\xe3\x84\ \x55\x73\xec\x58\xcc\x49\x9c\x2d\x1d\x83\x88\x28\x30\x66\x47\x5b\ \x71\x64\xf4\x32\xe9\x18\xbe\x65\x98\x66\x5f\x4b\x5b\xc7\x6f\xa6\ \x7a\x9c\x72\x3d\xbe\x8e\xb3\x00\xa3\x38\xb2\xe9\x6a\x18\x5a\x52\ \x3a\x06\x11\x91\xef\xe9\x4a\xc3\xf9\xf5\x5f\x93\x8e\xe1\x6b\x66\ \x24\x72\x7f\x39\x8e\x53\xae\x02\x70\x2f\x80\x29\x5d\x8b\x08\xb3\ \xa8\x3e\x0d\x87\xa7\xb8\x91\x05\x11\xd1\x58\x8e\x4e\xbe\x19\xd3\ \xf5\xc3\xa5\x63\xf8\x96\x52\x0a\xba\x61\x7c\xa1\x1c\xc7\x2a\x4b\ \x01\x48\xa4\x9a\xf7\x02\xb8\xaf\x1c\xc7\x0a\xab\xf9\xf5\x17\x22\ \x15\xe9\x90\x8e\x41\x44\xe4\x5b\x75\x46\x12\x6f\x4c\x7e\x51\x3a\ \x86\xaf\x45\xa2\xd1\xce\x74\x6b\xfb\x96\x72\x1c\xab\x5c\x33\x00\ \x00\x2f\x03\x8c\x4a\x41\xc3\x51\x4d\xff\x00\x3e\x2e\x98\x88\x68\ \x78\x67\xd7\x7f\x16\x3a\xa2\xd2\x31\x7c\xcd\x30\xcd\x6f\x97\xeb\ \x58\x65\x2b\x00\x89\x54\xf3\xe3\x00\xd6\x95\xeb\x78\x61\xd4\x14\ \x5d\x82\xb6\xba\xbf\x93\x8e\x41\x44\xe4\x3b\xad\xb1\x0e\x2c\x8e\ \x5c\x28\x1d\xc3\xd7\x74\xc3\x28\xb6\xcc\x5b\x78\x5b\xb9\x8e\x57\ \xce\x19\x00\x00\xf8\x8f\x32\x1f\x2f\x74\x8e\x68\xfc\x38\x22\x5a\ \x83\x74\x0c\x22\x22\xdf\x30\x94\x8e\xf3\xeb\x6f\x92\x8e\xe1\x7b\ \x91\x68\xf4\xa1\x72\x1e\xaf\xdc\x05\xe0\x4e\x00\xbd\x65\x3e\x66\ \xa8\x44\xb4\x06\x2c\x69\xfc\x84\x74\x0c\x22\x22\xdf\x38\xae\xee\ \x6d\x48\x69\xf3\xa4\x63\xf8\x9a\x52\xca\xd3\x0d\xe3\x93\xe5\x3c\ \x66\x59\x0b\xc0\xe0\x62\xc0\x3b\xcb\x79\xcc\x30\x6a\xad\x7b\x2b\ \x9a\xa2\x4b\xa5\x63\x10\x11\x89\x4b\x99\x29\x9c\x9e\xf8\x27\xe9\ \x18\xbe\x17\x8d\xc5\x5e\x28\xd7\xe2\xbf\x7d\xca\x3d\x03\x00\x00\ \xdf\x01\x1f\x13\x3c\x06\x85\xa3\x9a\xae\x85\xaa\xc8\x3f\x7e\x22\ \xa2\x60\x50\x00\xde\x52\x7f\x3d\x77\xfc\x1b\x07\xc3\x34\x3f\x5d\ \xee\x63\x96\x7d\x04\x4a\xa4\x9a\x37\x00\xf8\x65\xb9\x8f\x1b\x36\ \xa9\x48\x07\xe6\xd7\x5f\x24\x1d\x83\x88\x48\xcc\x82\xf8\x91\x58\ \x60\x9e\x2b\x1d\xc3\xf7\x22\xb1\xd8\xe6\x74\x5b\xc7\x93\xe5\x3e\ \x6e\xa5\x3e\x82\xde\x52\xa1\xe3\x86\xca\xe1\xa9\x0f\x23\xa6\x4f\ \x97\x8e\x41\x44\x54\x75\x11\xcd\xc4\xb9\x75\x5c\xf8\x37\x1e\x66\ \x19\xf6\xfd\x1f\x4e\x45\x0a\x40\x22\xd5\xfc\x17\x00\xcf\x54\xe2\ \xd8\x61\x62\x68\x49\x2c\x6d\xba\x4a\x3a\x06\x11\x51\xd5\x9d\x58\ \x77\x09\xea\xb4\x16\xe9\x18\xbe\x67\x9a\x66\x6f\xcb\xbc\x85\x15\ \x59\x5b\x57\xc9\x8b\xd0\xb7\x56\xf0\xd8\xa1\x31\x27\x71\x36\x9a\ \x63\xc7\x4a\xc7\x20\x22\xaa\x9a\x69\xe6\x74\x9c\x1c\xbf\x56\x3a\ \x46\x20\x98\xd1\x68\xc5\x16\xd6\x57\xb2\x00\xfc\x12\xc0\x86\x0a\ \x1e\x3f\x34\x8e\x6a\xfa\x2c\x74\xc5\xdd\xaf\x88\x28\xfc\x34\xa5\ \x70\x5e\xc3\xff\x41\x65\x87\x9f\x70\xd0\x75\xbd\xa4\xe9\xfa\xe7\ \x2b\x75\xfc\x8a\xfd\x1b\x48\xa4\x9a\x1d\x0c\xdc\x11\x40\x63\xa8\ \x33\x5b\x71\x64\xd3\xa7\xa4\x63\x10\x11\x55\xdc\xf1\x75\x6f\xc3\ \x61\xc6\x69\xd2\x31\x02\x21\x12\x8b\xfd\x36\xdd\xda\x5e\xa8\xd4\ \xf1\x2b\x5d\xc1\xee\x04\xb0\xb7\xc2\xe7\x08\x85\xb6\xba\x0b\x70\ \x58\xf2\xcd\xd2\x31\x88\x88\x2a\x66\x4e\xb4\x0d\x67\x26\x6e\x90\ \x8e\x11\x08\x4a\xd3\x3c\xdd\x30\xae\xac\xe4\x39\x2a\x5a\x00\x12\ \xa9\xe6\x5e\x00\x77\x54\xf2\x1c\x61\x72\xd4\xb4\xeb\x50\x67\xcc\ \x95\x8e\x41\x44\x54\x76\x09\x3d\x8e\x0b\x53\x1c\x0e\xc6\x2b\x1a\ \x8d\x3e\x97\x6e\x6d\xdf\x56\xc9\x73\x54\xe3\x22\xcc\xcd\x00\xec\ \x2a\x9c\x27\xf0\x0c\x15\xc7\x71\xcd\x5f\x84\xa6\x22\xd2\x51\x88\ \x88\xca\x46\x53\x0a\x17\xa4\xbe\x84\x84\x9a\x21\x1d\x25\x10\x94\ \x52\x30\x4c\xf3\x43\x95\x3e\x4f\xc5\x0b\x40\x22\xd5\xbc\x03\xc0\ \xf7\x2a\x7d\x9e\xb0\x68\x88\x74\xe0\xc8\xa6\xab\xa5\x63\x10\x11\ \x95\xcd\x71\x75\x17\x60\x9e\x79\xb6\x74\x8c\xc0\x88\xc6\x62\x7f\ \x4d\xb7\x75\xac\xaa\xf4\x79\xaa\xb5\x0c\xf3\x9b\x00\xfa\xab\x74\ \xae\xc0\x9b\x57\xf7\x0e\xcc\x49\xbc\x49\x3a\x06\x11\xd1\x94\xcd\ \x8e\xb6\xe2\xac\xc4\x17\xa5\x63\x04\xc6\xe0\xa7\xff\x0f\x54\xe3\ \x5c\x55\x29\x00\x89\x54\xf3\x4e\x70\x16\x60\x42\x8e\x9e\x76\x1d\ \x92\xc6\x1c\xe9\x18\x44\x44\x93\x16\xd7\x63\xb8\x28\xf5\x03\xe9\ \x18\x81\x12\x8d\xc5\x9e\x4d\xb7\x75\xac\xae\xc6\xb9\xaa\x79\x23\ \xe6\x37\x01\xf4\x55\xf1\x7c\x81\x66\x68\x49\x1c\xd7\xfc\x25\x68\ \xca\x94\x8e\x42\x44\x34\x61\xbc\xee\x3f\x71\x4a\x29\xcf\x30\xcd\ \xcb\xab\x75\xbe\xaa\x15\x80\x44\xaa\x39\x03\xe0\xbb\xd5\x3a\x5f\ \x18\xa4\x22\x0b\xb1\xb4\x91\x5b\x05\x13\x51\xf0\x1c\x57\x77\x01\ \xe6\x9b\xbc\xb5\x79\x22\xa2\xf1\xf8\xb3\xe9\xb6\x8e\x35\xd5\x3a\ \x5f\xb5\xb7\x62\xba\x19\x9c\x05\x98\x90\xf9\xf5\x17\x62\x76\xe2\ \x2c\xe9\x18\x44\x44\xe3\xc6\xeb\xfe\x13\xa7\x94\xf2\x0c\xc3\xa8\ \xda\xa7\x7f\xa0\xca\x05\x20\x91\x6a\xde\x05\xe0\xb6\x6a\x9e\x33\ \x0c\x8e\x9e\xf6\x8f\x48\x18\xb3\xa5\x63\x10\x11\x8d\x69\xe0\xba\ \x3f\xef\xf7\x9f\xa8\x68\x3c\xfe\x97\x74\x5b\xc7\xda\x6a\x9e\x53\ \x62\x33\xe6\x9b\x01\xf4\x0a\x9c\x37\xb0\x4c\x2d\x39\xb8\x3f\x00\ \xd7\x03\x10\x91\x7f\x0d\x5c\xf7\xbf\x01\x09\x35\x53\x3a\x4a\xa0\ \x0c\x7e\xfa\x7f\x7f\xb5\xcf\x5b\xf5\x02\x90\x48\x35\xef\x06\x9f\ \x11\x30\x61\x8d\x91\xc5\x58\xd2\x58\xd1\x5d\x21\x89\x88\xa6\xe4\ \xb8\xba\xbf\xc3\x7c\xf3\x1c\xe9\x18\x81\x13\x8d\xc7\x9f\x4e\xb7\ \x75\x74\x56\xfb\xbc\x52\x8f\x63\xba\x05\x80\x25\x74\xee\xc0\x5a\ \x50\x7f\x31\x66\x25\x4e\x97\x8e\x41\x44\xf4\x1a\xb3\xa3\x73\x71\ \x56\xe2\x4b\xd2\x31\x02\x47\x69\x9a\x67\x18\x46\x55\xee\xfb\x1f\ \x4a\xa4\x00\x0c\xce\x02\x7c\x45\xe2\xdc\x41\xf7\xfa\x69\x9f\x47\ \xbd\x39\x5f\x3a\x06\x11\xd1\x7e\x75\x46\x1d\xef\xf7\x9f\xa4\x58\ \x3c\xfe\x80\xc4\xa7\x7f\x40\xf6\x81\xcc\xb7\x01\x58\x27\x78\xfe\ \x40\x32\xb5\x3a\x9c\x3c\xf3\x66\xc4\x8d\xb4\x74\x14\x22\x22\xc4\ \xf4\x28\xde\xd3\x74\x27\xaf\xfb\x4f\x82\x6e\x18\x45\xdd\x30\xde\ \x2b\x75\x7e\xb1\x02\x90\x48\x35\x17\x00\x7c\x4e\xea\xfc\x41\x16\ \xd3\x9b\x71\xf2\x8c\x9b\x11\xd1\x1a\xa4\xa3\x10\x51\x0d\x33\x35\ \x03\xef\x6a\xfc\x77\x4c\xd3\x16\x4a\x47\x09\xa4\x68\x2c\xf6\xad\ \x74\x6b\xbb\xd8\xad\xf1\x92\x33\x00\x48\xa4\x9a\xff\x1f\x80\x3f\ \x4b\x66\x08\xaa\x3a\xb3\x15\x27\xce\xbc\x09\xba\x8a\x49\x47\x21\ \xa2\x1a\xa4\x2b\x0d\xef\x68\xfc\x12\x66\x19\x27\x48\x47\x09\x24\ \x33\x12\xe9\x99\x35\x7f\xd1\x17\x24\x33\x88\x16\x80\x41\xd7\x02\ \x70\xa5\x43\x04\x51\x53\x64\x09\x8e\x6f\xfe\x32\x14\x74\xe9\x28\ \x44\x54\x43\x14\x14\xce\x4d\x7d\x1a\x0b\xcc\xf3\xa4\xa3\x04\x56\ \x24\x1a\x15\xbf\xad\x4b\xbc\x00\x24\x52\xcd\x2f\x02\xf8\x91\x74\ \x8e\xa0\x9a\x19\x3f\x11\xc7\x4c\xff\x3c\x00\x25\x1d\x85\x88\x6a\ \xc4\x19\xa9\xcb\x70\x64\xf4\x32\xe9\x18\x81\x15\x8d\xc5\xd6\xb4\ \xcc\x5b\x78\xaf\x74\x0e\xf1\x02\x30\xe8\x5f\xc0\xcd\x81\x27\xd3\ \xe7\x04\x00\x00\x18\x52\x49\x44\x41\x54\x26\xed\xb0\xe4\x39\x58\ \xca\x3d\x02\x88\xa8\x0a\x8e\xab\x3f\x0f\x27\xc6\x3e\x23\x1d\x23\ \xb0\x94\x52\x9e\x19\x89\xbc\x4b\x3a\x07\xe0\x93\x02\x90\x48\x35\ \x6f\x07\xf0\x35\xe9\x1c\x41\xd6\xde\x70\x29\xda\x1b\xde\x23\x1d\ \x83\x88\x42\xec\xf0\xc4\xf1\x78\x53\xe2\xdf\xa4\x63\x04\x5a\x2c\ \x1e\xff\x43\xba\xad\x63\x85\x74\x0e\xc0\x27\x05\x60\xd0\xad\x00\ \x36\x4a\x87\x08\xb2\xa5\x8d\x9f\xc0\xdc\xe4\xb9\xd2\x31\x88\x28\ \x84\xda\x62\x8b\xf0\xf6\xfa\xef\x4b\xc7\x08\x34\x5d\xd7\x4b\xba\ \x69\x5e\x2a\x9d\x63\x1f\xdf\x14\x80\x44\xaa\x39\x07\xe0\x7a\xe9\ \x1c\xc1\xa6\xf0\xfa\xe9\xd7\x23\x1d\x3f\x49\x3a\x08\x11\x85\x48\ \x3a\x3a\x1b\x97\xa4\xfe\x1b\x3e\x1a\x32\x02\x29\x1a\x8f\x7f\x2f\ \xdd\xda\xbe\x47\x3a\xc7\x3e\xbe\xfa\xb7\x99\x48\x35\xdf\x0b\xe0\ \x71\xe9\x1c\x41\xa6\xa0\xe3\xb8\xe6\x2f\xa1\x29\xba\x44\x3a\x0a\ \x11\x85\x40\x93\xd9\x84\xf7\xa4\xfe\x07\x3a\x22\xd2\x51\x02\xcd\ \x8c\x44\xac\x59\xf3\x17\xf9\x6a\xf1\x84\xaf\x0a\xc0\xa0\x8f\x03\ \xc8\x4b\x87\x08\x32\x5d\xc5\x70\xe2\x8c\x9b\x50\x6f\xb6\x49\x47\ \x21\xa2\x00\xab\x33\x92\xf8\xfb\xc6\xbb\x10\x55\xdc\x74\x6c\x2a\ \x94\x52\x88\xc4\x62\x62\x3b\xfe\x8d\xc4\x77\x05\x20\x91\x6a\x5e\ \x0d\xe0\x46\xe9\x1c\x41\x17\xd1\x1a\x70\xd2\xcc\x9b\x11\xd7\x67\ \x48\x47\x21\xa2\x00\x8a\xe9\x51\x5c\xda\xf8\x03\xd4\x69\xb3\xa5\ \xa3\x04\x5e\x34\x1e\xff\x73\x4b\x5b\xc7\x83\xd2\x39\x86\xf2\x5d\ \x01\x18\xf4\x75\x00\x2f\x4b\x87\x08\xba\xb8\x3e\x13\x27\xcd\xe4\ \x96\xc1\x44\x34\x31\xa6\x66\xe0\xe2\xc6\x5b\x30\x5d\x3f\x5c\x3a\ \x4a\xe0\xe9\x86\x91\x37\x4c\xf3\xed\xd2\x39\x86\xe3\xcb\x02\x30\ \xf8\x9c\x80\x8f\x02\xf0\xa4\xb3\x04\x5d\xbd\x39\x0f\xa7\xa6\x6f\ \xe3\x4c\x00\x11\x8d\x4b\x4c\x8f\xe2\xdd\x4d\xdf\xc6\x1c\x83\x8b\ \x89\xcb\x21\x16\x8f\x7f\x46\x72\xbf\xff\xd1\xf8\xb2\x00\x00\x40\ \x22\xd5\xfc\x14\x80\x3b\xa4\x73\x84\x41\xbd\x39\x0f\xa7\xb5\x7c\ \x9f\x6b\x02\x88\x68\x54\x75\x46\x12\xef\x6b\xfa\x21\x07\xff\x32\ \x89\xc6\xe3\xab\x5a\xe6\x2d\xbc\x5d\x3a\xc7\x48\x7c\x5b\x00\x06\ \x7d\x1e\xc0\x36\xe9\x10\x61\x10\xd7\x67\xe2\xd4\xf4\x77\x79\x77\ \x00\x11\x0d\xab\xc9\x6c\xc2\xe5\x4d\xf7\x70\xda\xbf\x4c\x34\x5d\ \x77\xcd\x48\xc4\xd7\x0f\x4b\xf0\x75\x01\x48\xa4\x9a\x2d\x00\xd7\ \x48\xe7\x08\x8b\x88\xd6\x80\x53\x66\xde\xca\x7d\x02\x88\xe8\x10\ \xe9\xe8\x6c\x5c\xde\xf4\x4b\x2e\xf8\x2b\xa3\x58\x3c\x7e\x4b\xba\ \xb5\x7d\x93\x74\x8e\xd1\xf8\xba\x00\x00\x40\x22\xd5\xfc\x0b\x00\ \xbf\x92\xce\x11\x16\xba\x8a\xe1\x84\x19\x37\x72\xc7\x40\x22\x02\ \x30\xb0\xc3\xdf\x65\x8d\xbf\xe0\xad\x7e\x65\x14\x89\x46\xb7\xcf\ \x9a\xbf\xe8\x73\xd2\x39\xc6\xe2\xfb\x02\x30\xe8\x6a\xf0\x61\x41\ \x65\xa3\xa0\xe3\x98\xe9\x5f\xe0\xb3\x03\x88\x6a\xdc\xe1\x89\xe3\ \x71\x29\x37\xf9\x29\x2b\xa5\x94\x17\x89\x46\x7d\xb9\xea\x7f\xa8\ \x40\x14\x80\x44\xaa\x79\x33\x80\x7f\x92\xce\x11\x2e\x0a\x4b\x1b\ \xaf\xc4\xd2\xc6\x4f\x82\x8f\x12\x26\xaa\x3d\xc7\xd5\x9f\x87\xb7\ \xd7\xdf\x8e\x80\x0c\x03\x81\x11\x4b\x24\xee\x4b\xb7\x75\x3c\x27\ \x9d\x63\x3c\x82\xf4\x6f\xfe\x7b\x00\xfe\x2c\x1d\x22\x6c\xda\x1b\ \x2e\xc5\xb1\xd3\xff\x09\x0a\xba\x74\x14\x22\xaa\x02\x05\x85\x33\ \x53\xef\xe7\x53\xfd\x2a\xc0\x8c\x44\x7a\x74\xc3\x08\xcc\xd4\x6a\ \x60\x0a\x40\x22\xd5\xec\x01\xb8\x1c\x80\x6f\x1e\xa4\x10\x16\x87\ \x25\xcf\xc1\x89\x33\xbe\x06\x5d\xc5\xa4\xa3\x10\x51\x05\xe9\x4a\ \xc3\xf9\x8d\x9f\xc1\x89\x31\x5f\x6d\x49\x1f\x0a\x4a\xd3\xbc\x68\ \x2c\x76\x6e\xba\xb5\xdd\x95\xce\x32\x5e\x81\x29\x00\xc0\xfe\x4b\ \x01\x9f\x90\xce\x11\x46\x33\xe3\x27\xe2\x94\xf4\xad\xdc\x35\x90\ \x28\xa4\x4c\xcd\xc0\x85\x4d\x5f\xc1\x91\xd1\xcb\xa4\xa3\x84\x52\ \x3c\x91\xf8\x4e\x50\xa6\xfe\xf7\x09\x54\x01\x00\xf6\x3f\x31\xf0\ \x6e\xe9\x1c\x61\xd4\x14\x59\x82\xd3\xd2\xdf\x43\xdc\x48\x4b\x47\ \x21\xa2\x32\x8a\xe9\x51\xbc\xa7\xe9\x36\x2c\x30\x7d\x7d\x5b\x7a\ \x60\x45\x63\xb1\xf5\x7e\x7b\xd2\xdf\x78\x04\xae\x00\x0c\xba\x0a\ \xc0\x46\xe9\x10\x61\x54\x67\xb6\xe2\xf4\xf4\xf7\x51\x6f\xce\x97\ \x8e\x42\x44\x65\x50\x67\xd4\xe1\xb2\x69\xff\x8d\x59\xc6\x09\xd2\ \x51\x42\x49\xd7\xf5\x92\x19\x8d\x9e\x2e\x9d\x63\x32\x02\x59\x00\ \x12\xa9\xe6\xbd\x00\xde\x0f\x20\x30\xd7\x5a\x82\x24\xa6\x37\xe3\ \xb4\xf4\x77\x31\x2b\x11\xc8\xbf\xd3\x44\x34\x68\x76\xb4\x15\x1f\ \x9c\xf6\x73\x4c\xd3\x16\x4a\x47\x09\xad\x58\x22\xf1\x99\x74\x6b\ \xfb\x16\xe9\x1c\x93\x11\xc8\x02\x00\x00\x89\x54\xf3\x13\x00\x6e\ \x92\xce\x11\x56\xa6\x56\x87\xe3\x9b\xbf\x8a\x23\x9b\x3e\x05\x4d\ \x99\xd2\x71\x88\x68\x02\x34\xa5\x70\x42\xfd\xdb\x70\x59\xe3\xfd\ \x48\xa8\x99\xd2\x71\x42\x2b\x96\x48\x3c\xd3\x32\x6f\xe1\xf7\xa4\ \x73\x4c\x56\x60\x0b\xc0\xa0\x1b\x00\xfc\x4d\x3a\x44\x98\x2d\xa8\ \xbf\x18\xa7\xa5\xbf\x87\x84\xc1\x2d\x42\x89\x82\x20\xa1\xc7\x71\ \x71\xd3\xd7\x71\x56\xe2\x8b\xd2\x51\x42\xcd\x30\x4d\xdb\x30\xcd\ \x37\x4b\xe7\x98\x8a\x40\x17\x80\x44\xaa\xb9\x08\xe0\x7d\x00\x6c\ \xe9\x2c\x61\xd6\x18\x59\x8c\x33\x5b\xee\xc4\xec\xc4\x59\xd2\x51\ \x88\x68\x14\x73\x62\xf3\xf0\xe1\xe9\xf7\x63\x7e\xb0\xc7\x25\xdf\ \x53\x4a\x21\x1a\x8f\x5f\x9c\x6e\x6d\x0f\xf4\xd8\x13\xe8\x02\x00\ \x00\x89\x54\xf3\x2b\x00\xae\x93\xce\x11\x76\xa6\x96\xc4\x71\xcd\ \x5f\xc2\xeb\x9a\x3e\xc3\x4b\x02\x44\x3e\xa3\x29\x85\x93\xea\xdf\ \x89\xf7\xa5\x7e\x81\x84\x9a\x21\x1d\x27\xf4\x62\x89\xc4\x3d\x2d\ \x6d\x1d\x0f\x4b\xe7\x98\x2a\xe5\x79\x9e\x74\x86\xb2\xb0\xad\xcc\ \x2f\x01\x5c\x28\x9d\xa3\x16\x58\x85\xb5\x78\x3e\x73\x03\xfa\x4b\ \x81\x5c\xf7\x42\x07\xf9\x73\xf7\x2a\xe9\x08\x34\x45\x09\x3d\x8e\ \xb7\x35\x7e\x15\x6d\xc6\x59\xd2\x51\x6a\x42\x24\x1a\xdd\x3a\x77\ \xd1\xd2\x39\xd2\x39\xca\x21\xf0\x33\x00\x07\xf9\x20\x80\x57\xa4\ \x43\xd4\x82\x54\x64\x21\xce\x6c\xf9\x4f\xcc\x49\xbc\x49\x3a\x0a\ \x51\x4d\x3b\x2c\x36\x1f\x57\x4c\xff\x7f\x1c\xfc\xab\x44\x37\x8c\ \x42\x24\x16\x0b\xcd\xfd\x94\xa1\x29\x00\x83\xb7\x06\x5e\x04\xa0\ \x4f\x3a\x4b\x2d\x30\xb4\x24\xde\xd0\x7c\x03\x8e\x9a\x76\x2d\x34\ \xc5\x27\x89\x11\x55\x93\xa6\x14\x4e\x6e\xb8\x08\xef\x4d\xdd\x87\ \xb8\x6a\x96\x8e\x53\x13\x94\x52\x5e\x2c\x91\xb8\x24\xa8\xb7\xfc\ \x0d\x27\x34\x05\x00\x00\x12\xa9\xe6\x55\x00\xae\x90\xce\x51\x4b\ \xe6\xd5\xbd\x03\x67\xa4\xff\x03\x75\xc6\x5c\xe9\x28\x44\x35\x21\ \xa9\x27\xf0\xee\x69\xb7\xe0\xf4\xf8\x3f\x4b\x47\xa9\x29\xf1\x64\ \xf2\xdb\x2d\x6d\x1d\xbf\x91\xce\x51\x4e\xa1\x59\x03\x70\x30\xdb\ \xca\x7c\x0b\xc0\xb5\xd2\x39\x6a\x49\xc9\xcb\x62\xc5\xee\x9b\xb1\ \xb9\xff\x8f\xd2\x51\x68\x02\xb8\x06\x20\x58\x5a\x63\xed\xb8\xb0\ \xe1\x0e\x44\x55\x93\x74\x94\x9a\x12\x8b\xc7\xff\x36\xa7\xe3\x88\ \xe3\xa4\x73\x94\x5b\xa8\x66\x00\x0e\x72\x3d\x80\xc7\xa5\x43\xd4\ \x12\x43\xc5\x71\xec\xf4\x7f\xc5\xd1\xd3\x3e\x07\x5d\x45\xa5\xe3\ \x10\x85\x8a\xa6\x34\x9c\xda\xf0\x6e\xbc\x27\xf5\x33\x0e\xfe\x55\ \x66\x46\x22\x96\x11\x89\x9c\x26\x9d\xa3\x12\x42\x39\x03\x00\x00\ \xb6\x95\x49\x03\x58\x06\x80\x3b\xd8\x54\x59\x5f\xb1\x0b\x2b\x7a\ \x6e\x45\x26\xb7\x4c\x3a\x0a\x8d\x81\x33\x00\xfe\xd7\x1c\x99\x89\ \xf3\xeb\xbf\x8c\x59\xc6\xf1\xd2\x51\x6a\x8e\xa6\xeb\x4e\x22\x99\ \x7c\x7d\xba\xad\x63\xa5\x74\x96\x4a\x08\x6d\x01\x00\x00\xdb\xca\ \x9c\x02\xe0\x51\x00\xbc\x71\x5d\xc0\x16\xfb\x11\xbc\xd4\xf3\x3d\ \xe4\x9c\x5d\xd2\x51\x68\x04\x2c\x00\xfe\x15\xd5\x22\x38\xa5\xfe\ \xbd\x38\x3e\x76\x8d\x74\x94\xda\xa4\x14\x92\x75\x75\x9f\x68\x99\ \xb7\xf0\x0e\xe9\x28\x95\x12\xea\x02\x00\x00\xb6\x95\xb9\x1a\xc0\ \x6d\xd2\x39\x6a\x55\xc9\xed\xc7\x6a\xeb\x87\x58\xdf\xfb\x4b\x78\ \x7c\x76\x93\xef\xb0\x00\xf8\x8f\x82\xc2\xc2\xc4\xeb\x71\x6e\xdd\ \xd7\xb9\xc2\x5f\x50\x3c\x99\xfc\xd9\xec\x05\x8b\x2f\x95\xce\x51\ \x49\xa1\x2f\x00\x00\x60\x5b\x99\x9f\x00\xb8\x4c\x3a\x47\x2d\xb3\ \x0a\xeb\xb0\xa2\xe7\x16\xf4\xe4\x5f\x92\x8e\x42\x07\x61\x01\xf0\ \x97\x26\xb3\x09\xe7\x36\xfc\x0b\x5a\x79\x5f\xbf\xa8\x68\x2c\xb6\ \xfe\xb0\x85\x4b\x16\x48\xe7\xa8\xb4\x5a\x29\x00\x71\x00\x8f\x01\ \xe0\x45\x34\x51\x1e\xba\xfa\x1e\xc4\xaa\x3d\xb7\xa3\xe0\xee\x95\ \x0e\x43\x60\x01\xf0\x0b\x53\x33\x70\x42\xdd\xc5\x38\x35\x7e\x1d\ \xc2\xbb\x36\x3b\x18\x0c\xd3\xec\x8f\x25\x12\xad\xe9\xd6\xf6\xdd\ \xd2\x59\x2a\xad\x26\x0a\x00\xb0\x7f\x51\xe0\xb3\x00\xda\xa4\xb3\ \xd4\xba\x82\xbb\x17\x2f\xef\xb9\x03\x1b\xfb\x7e\x0b\xa0\x36\xfe\ \xfe\xf9\x15\x0b\x80\xbc\x05\xf1\x25\x38\xaf\xee\x26\xd4\x69\x5c\ \xaf\x2c\x4d\xd7\xf5\x52\x3c\x99\x3c\x26\xac\x8b\xfe\x86\xaa\x99\ \x02\x00\x00\xb6\x95\x59\x0a\xe0\x29\x00\x29\xe9\x2c\x04\xf4\xfc\ \xff\xf6\xee\x3d\x38\xae\xea\xbe\x03\xf8\xf7\x9c\x73\xdf\xbb\xd2\ \x1a\x7b\x95\x5d\xd9\x58\x2b\x4b\x2b\xc9\xd8\xe5\xd9\x29\x0f\x7b\ \x30\x49\x48\x43\xcc\x64\x12\x1e\x49\x68\xda\xf2\xaa\x33\x69\xa0\ \x34\x40\x27\x24\xa1\xaf\x99\x64\x12\x3a\x24\x0d\x33\x29\x50\x60\ \x0a\x43\x02\x74\x86\xd0\x74\x28\xa1\x35\x06\xf2\x68\x1a\x6a\x20\ \x10\x07\x88\x43\x78\xb9\x10\xcb\x18\x8c\x2f\xb6\xaf\x2d\x5d\xbd\ \x56\xda\xfe\xb1\x4b\xfc\x00\xdb\xb2\xb4\xab\xdf\xee\xde\xef\x67\ \xe6\xce\xca\xa3\x3f\xfc\x1d\xcd\xd8\xe7\xab\x73\xee\x39\x67\xec\ \x79\x3c\xb7\xf3\x5b\x88\xc6\x5f\x91\x8e\x92\x58\x2c\x00\x72\xda\ \xad\x76\xfc\x61\xfb\x17\xd1\x6b\xaf\x96\x8e\x42\x00\x94\xd6\xe5\ \x20\x9d\x3e\x37\x5f\x28\x3e\x20\x9d\x65\xae\x24\xaa\x00\x00\x40\ \x1c\x85\x1f\x02\xf0\x10\x00\x4b\x3a\x0b\x01\x65\x4c\xe1\xd5\x3d\ \xf7\xe3\x85\xe8\x0e\x94\xa6\x86\xa5\xe3\x24\x0e\x0b\xc0\xdc\xb3\ \x94\xc1\x49\xe9\xb3\xb1\x2a\xf8\x5b\x68\xfe\x37\xd4\x30\x52\x6d\ \x6d\x5f\xca\x77\xf7\x7d\x43\x3a\xc7\x5c\x4a\x5c\x01\x00\x80\x38\ \x0a\xd7\x00\xb8\x5d\x3a\x07\xed\x35\x36\xb9\x03\x1b\x77\xde\x84\ \xd7\xe3\x1f\x49\x47\x49\x14\x16\x80\xb9\xb5\xd8\xeb\xc5\xea\xb6\ \xeb\x31\x4f\x2f\x91\x8e\x42\xfb\xf0\x53\xa9\xef\x2e\xec\x19\xb8\ \x44\x3a\xc7\x5c\x4b\x64\x01\x00\x80\x38\x0a\xaf\x03\x70\xad\x74\ \x0e\xda\x5f\x38\xba\x01\x1b\x77\xde\x84\xdd\x13\x9b\xa4\xa3\x24\ \x02\x0b\xc0\xdc\x68\xb7\xda\x70\x46\xdb\x15\x38\xc6\xf9\x84\x74\ \x14\x3a\x80\x17\x04\x8f\x2f\xea\x5d\xba\x42\x3a\x87\x84\x24\x17\ \x00\x05\xe0\x5e\x00\x9f\x92\xce\x42\x07\x2a\xe3\xcd\x91\xf5\x78\ \x39\xba\x1b\x3b\xc7\x7f\x23\x1d\xa6\xa5\xb1\x00\xd4\xd7\x3c\x7b\ \x1e\x4e\x49\xfd\x29\x8e\x77\x2f\x06\xdf\xee\x6f\x3c\x8e\xe7\x0d\ \x3a\xae\xdb\x9d\xeb\xea\x4d\xe4\x21\x25\x89\x2d\x00\x00\x10\x47\ \xa1\x07\xe0\xc7\x00\x4e\x93\xce\x42\xef\x6d\xfb\xe8\xd3\x78\x29\ \xba\x0b\x6f\x8f\x3d\x2b\x1d\xa5\x25\xb1\x00\xd4\xc7\x02\x67\x01\ \x4e\x4d\x5d\x8a\xe5\xce\xa7\xa5\xa3\xd0\x41\xd8\xb6\xbd\xc7\xad\ \x6c\xf7\xdb\x25\x9d\x45\x4a\xa2\x0b\x00\x00\xc4\x51\xd8\x01\xe0\ \x09\x00\x2d\x7f\xe8\x43\x33\xdb\x31\xf6\x2b\xbc\x14\xdd\x85\xb7\ \x46\x7f\x2e\x1d\xa5\xa5\xb0\x00\xd4\x56\x87\x93\xc3\x8a\xd4\x67\ \x31\xe0\x9c\x23\x1d\x85\x0e\xc1\x58\xd6\x84\x1f\x04\xc7\xe5\x0a\ \xc5\x17\xa4\xb3\x48\x4a\x7c\x01\x00\x80\x38\x0a\x07\x00\xac\x07\ \x30\x5f\x3a\x0b\x1d\xda\xae\xf1\x17\xf1\x52\x74\x37\xde\x1c\x79\ \x0c\x3c\x43\x60\xf6\x58\x00\x6a\xa3\xd3\x3d\x1a\x2b\x53\x97\xa3\ \xc7\x3e\x4b\x3a\x0a\x1d\x86\xd6\xba\xec\xa7\xd3\x67\xe7\x0b\xc5\ \x75\xd2\x59\xa4\xb1\x00\x54\xc5\x51\x78\x32\x80\x1f\x02\x68\x93\ \xce\x42\x87\xb7\x7b\xe2\xff\xf0\x72\x74\x0f\xb6\xc6\x3f\xe1\x1d\ \x03\xb3\xc0\x02\x30\x73\x0a\xc0\x22\x6f\x09\x4e\x4f\x5d\x89\xc5\ \xd6\xe9\xd2\x71\x68\x1a\x94\x52\xe5\x20\x9d\x5e\x93\xef\xee\xbb\ \x53\x3a\x4b\x23\x60\x01\xd8\x47\x1c\x85\xab\x00\xac\x03\xe0\x4b\ \x67\xa1\xe9\x19\x2e\x6d\xc1\xcb\xd1\x3d\xd8\x12\x3f\x8a\xa9\x72\ \x49\x3a\x4e\xd3\x61\x01\x38\x72\x0a\x0a\x5d\x5e\x1f\x56\xa5\xae\ \x46\xa7\x75\xb2\x74\x1c\x9a\x26\xa5\x14\x82\x74\xfa\xf3\xf9\xee\ \x3e\x5e\x0e\x57\xc5\x02\x70\x80\x38\x0a\xcf\x02\xf0\x03\x00\x8e\ \x74\x16\x9a\xbe\x91\xd2\x36\xbc\xbc\xfb\x5f\xb1\x79\x78\x2d\xa6\ \xca\x13\xd2\x71\x9a\x06\x0b\xc0\xf4\x69\xa5\xd0\xed\x2d\xc3\x19\ \xa9\x6b\xd0\x61\x8e\x95\x8e\x43\x47\x40\x29\x05\x3f\x9d\xfe\x9b\ \xce\xee\xbe\xeb\xa4\xb3\x34\x12\x16\x80\xf7\x10\x47\xe1\xb9\x00\ \xee\x03\x4f\x0b\x6c\x3a\xa3\x93\x6f\x63\xd3\xee\x7b\xb1\x79\xf8\ \x21\x4c\x4c\xed\x91\x8e\xd3\xf0\x58\x00\x0e\xcf\x52\x06\x3d\xfe\ \x71\x58\x15\x5c\x83\xf9\x66\x40\x3a\x0e\xcd\x40\x90\x4e\x5f\xdf\ \xb9\xa4\xff\xcb\xd2\x39\x1a\x0d\x0b\xc0\x41\xc4\x51\xf8\x27\x00\ \xee\x02\x37\xef\x36\xa5\xa9\xf2\x04\xb6\x8d\xac\xc7\xe0\xf0\x23\ \x78\x6b\xf4\x09\x2e\x0f\x1c\x04\x0b\xc0\x7b\x53\x50\xc8\xb9\x0b\ \xb1\xdc\x3b\x1b\xc7\xba\x17\xc2\x51\x29\xe9\x48\x34\x43\x41\x3a\ \x7d\x4b\xe7\x92\xfe\xcb\xa5\x73\x34\x22\x16\x80\x43\x88\xa3\xf0\ \xb3\x00\x6e\x93\xce\x41\xb3\x33\x3e\x15\xe1\xf5\xe1\x1f\x61\x70\ \xf8\x61\xec\x1a\x4f\xf4\xae\x9f\x77\x61\x01\xd8\x5f\xc6\xce\x60\ \xc0\x5b\x85\xdf\xf7\xd6\xa0\x4d\x2f\x96\x8e\x43\xb3\xe4\xa7\x52\ \xf7\x2c\xec\x19\xb8\x50\x3a\x47\xa3\x62\x01\x38\x8c\x38\x0a\xaf\ \x06\x70\x83\x74\x0e\xaa\x8d\xa1\x89\xcd\x18\x1c\x7e\x18\x5b\xe2\ \x47\x31\x52\xda\x26\x1d\x47\x1c\x0b\x00\xe0\x19\x17\x3d\xde\x89\ \x38\xd1\xbb\x08\x8b\xac\x53\xa4\xe3\x50\x8d\xf8\xa9\xd4\x03\x0b\ \x7b\x06\x78\x20\xc3\x21\xb0\x00\x4c\x43\x1c\x85\x7f\x07\xe0\xab\ \xd2\x39\xa8\x96\xca\x08\x47\x9f\xc5\x96\xe1\x75\xd8\x3a\xf2\x53\ \x94\xa6\x62\xe9\x40\x22\x92\x5a\x00\x8c\x32\x58\xec\x15\x71\xac\ \x77\x1e\x96\x3a\xe7\x42\xc1\x48\x47\xa2\x1a\xf2\x82\xe0\xc7\x8b\ \x7a\x97\x9e\x29\x9d\xa3\xd1\xb1\x00\x4c\x53\x1c\x85\xd7\x03\xf8\ \xa2\x74\x0e\xaa\xbd\xc9\xf2\x18\xde\x88\x7f\x86\x2d\xc3\x0f\x63\ \xfb\xe8\xd3\x89\x3a\x57\x20\x49\x05\x40\x41\xa1\xc3\xc9\x61\x99\ \x7f\x16\x8e\x77\x2f\x81\xab\xda\xa5\x23\x51\x1d\x78\xbe\xff\xe4\ \xa2\xe2\x31\xa7\x4a\xe7\x68\x06\x2c\x00\x47\x80\x25\xa0\xf5\x8d\ \x4d\xee\xc0\x96\xe1\x47\x31\x18\x3f\x82\xdd\xe3\xaf\x48\xc7\xa9\ \xbb\x24\x14\x80\x76\xab\x0d\xfd\xfe\x4a\x9c\xe4\xfd\x19\xe6\xe9\ \x5e\xe9\x38\x54\x47\x1c\xfc\x8f\x0c\x0b\xc0\x11\xe2\x72\x40\x72\ \x0c\x4d\x6c\xc6\xf6\xd1\xa7\x11\x8e\x6d\x40\x38\xfa\x4c\x4b\x6e\ \x2b\x6c\xc5\x02\x60\x6b\x0b\x1d\xf6\x42\x2c\x76\x4e\x40\xbf\xb3\ \x9a\x87\xf5\x24\x04\xa7\xfd\x8f\x1c\x0b\xc0\x0c\xf0\xc5\xc0\xe4\ \x29\x63\x0a\xbb\xc7\x5f\x41\x38\xba\x01\xdb\xc7\x36\x60\xc7\xe8\ \x73\x28\x95\x47\xa4\x63\xcd\x5a\x2b\x14\x00\xa3\x34\xb2\x76\x0e\ \x47\x3b\xc7\xa2\xd7\xf9\x10\x0a\xf6\xfb\xb9\xa6\x9f\x30\x7c\xe1\ \x6f\x66\x58\x00\x66\xa8\xba\x45\xf0\x16\xf0\x9c\x80\x44\x9a\x2a\ \x97\xb0\x6b\xfc\x05\x84\xa3\xbf\x40\x38\xb6\x01\x3b\xc6\x7e\xdd\ \x94\x27\x10\x36\x63\x01\xd0\x4a\xe1\x28\x7b\x01\x8e\x76\x96\xa3\ \xc7\xf9\x00\x7a\xec\x0f\xc3\xc0\x95\x8e\x45\x42\xb8\xd5\x6f\xe6\ \x58\x00\x66\xa1\x7a\x58\xd0\x77\xc0\x13\x03\x13\x6f\xaa\x3c\x8e\ \x1d\x63\xbf\xc2\xf6\xd1\x0d\x08\xc7\x36\x60\xd7\xd8\x8b\x28\x63\ \x52\x3a\xd6\x61\x35\x43\x01\x50\x50\xc8\xd8\x19\x2c\x72\x96\x62\ \x89\x73\x06\x8a\xf6\x6a\x38\x8a\x77\x76\x11\x0f\xf9\x99\x2d\x16\ \x80\x59\xaa\x1e\x1b\x7c\x2f\x78\x77\x00\xed\xa3\x34\x15\xe3\xed\ \xb1\x67\x11\x8e\x6e\x40\x38\xf6\x0c\xf6\x4c\xbc\x86\xa9\xf2\xb8\ \x74\xac\x77\x69\xc4\x02\xa0\x95\x42\xda\xb4\xa1\xd3\x29\xa2\xdb\ \x59\x89\x7e\xe7\xa3\xf0\x55\x56\x3a\x16\x35\x10\xa5\x14\xfc\x54\ \x8a\xc7\xfb\xce\x12\x0b\x40\x0d\x54\x2f\x10\xba\x1f\xbc\x45\x90\ \x0e\xa2\x8c\x29\x8c\x94\xb6\x61\x68\x62\x33\x86\x4a\x9b\x31\x34\ \x31\x88\xa1\xd2\x6f\x31\x34\x31\x88\xd1\xc9\xb7\xc5\x72\x49\x16\ \x00\x57\xdb\x48\x5b\x19\xcc\x33\x79\xcc\xb7\xba\x90\x35\xfd\xc8\ \x59\xc7\xa3\xc3\x2c\xe7\x1a\x3e\x1d\x14\x2f\xf6\xa9\x1d\x16\x80\ \x1a\xa9\x5e\x25\xfc\x9f\x00\x38\x37\x49\x47\xa4\x34\x35\x8c\xa1\ \xd2\x60\xb5\x1c\x54\x3f\x27\x36\x63\xa8\xb4\xa5\xee\xb3\x06\xf5\ \x2e\x00\x5a\x29\xa4\x4c\x0a\xed\x56\x16\x47\x99\x85\x58\x60\xf5\ \xe2\x7d\x66\x19\xf2\xd6\x49\xfc\xad\x9e\x8e\x98\x52\xaa\x1c\xa4\ \xd3\x57\xf2\x4a\xdf\xda\x60\x01\xa8\xa1\x38\x0a\x4f\x06\xf0\x10\ \x80\xf9\xd2\x59\xa8\xf9\xfd\x6e\xd6\xa0\x34\x88\xa1\x89\xca\x6c\ \xc1\x70\x69\x0b\x26\xa6\x86\x50\x9a\x8a\x51\x2a\x8f\xa0\x54\x8e\ \x51\x9a\x1a\x01\x30\xb3\x7f\xc7\xb3\x29\x00\x46\x19\x58\xca\xc0\ \x52\x16\x2c\x6d\xc3\x51\x1e\xda\x4d\x07\xe6\x5b\x05\x74\x58\x03\ \xc8\x99\xe3\x90\x35\xcb\xf8\xdb\x3c\xd5\x84\xd6\xba\xec\xa7\x52\ \x6b\xf2\xdd\x7d\x77\x4a\x67\x69\x15\x2c\x00\x35\x16\x47\xe1\x00\ \x80\xb5\x00\x7a\xa4\xb3\x50\x52\x94\x51\x2a\x8f\x62\x72\xea\x9d\ \x42\x50\x2d\x07\x53\xf1\xef\x0a\xc2\xbe\x9f\x93\xfb\x7c\xff\xbf\ \xdf\x78\x08\xb6\xf2\xaa\x8f\x0f\x57\x07\x70\x54\xaa\xfa\xb4\xc1\ \x55\x6d\x70\x55\x3b\x3c\xd5\x0e\x57\xcf\x83\xa7\x8e\x82\xaf\xe6\ \xc1\x55\x19\x70\x03\x0c\xcd\x15\x63\x59\x13\x5e\x10\x7c\x2c\x5f\ \x28\xae\x93\xce\xd2\x4a\x58\x00\xea\x20\x8e\xc2\x0e\x00\x0f\x00\ \x38\x4d\x3a\x0b\xd1\xa1\xbc\xb1\x79\xb3\x74\x04\xa2\x43\xb2\x6d\ \x7b\x8f\xeb\xfb\x27\xe7\x0a\x45\x5e\xe5\x59\x63\xac\xf0\x75\x10\ \x64\xb2\xdb\x01\x7c\x10\xc0\x7d\xd2\x59\x88\x88\x9a\x95\xe3\x79\ \x83\x6e\x10\x74\x71\xf0\xaf\x0f\x16\x80\x3a\x09\x32\xd9\x51\x00\ \x7f\x04\xe0\x1f\xa4\xb3\x10\x11\x35\x1b\x2f\x08\x1e\x77\x5c\xb7\ \x3b\xd7\xd5\xbb\x4b\x3a\x4b\xab\xe2\x12\xc0\x1c\x88\xa3\x70\x0d\ \x80\x5b\xc1\x03\x83\xa8\xc1\x70\x09\x80\x1a\x91\x9f\x4a\x7d\x77\ \x61\xcf\xc0\x25\xd2\x39\x5a\x1d\x67\x00\xe6\x40\x90\xc9\xde\x01\ \x60\x35\x80\x48\x3a\x0b\x11\x51\xa3\x52\x5a\x97\x53\x6d\x6d\x5f\ \xe2\xe0\x3f\x37\x58\x00\xe6\x48\x90\xc9\xfe\x10\xc0\x4a\x00\xbf\ \x95\xce\x42\x44\xd4\x68\x8c\x31\xa5\x20\x9d\x3e\x37\xdf\xdd\xf7\ \x0d\xe9\x2c\x49\xc1\x02\x30\x87\x82\x4c\xf6\xd7\x00\x4e\x01\xf0\ \x94\x74\x16\x22\xa2\x46\x61\xd9\xf6\xb0\x9f\x4a\x9d\x98\x2f\x14\ \x1f\x90\xce\x92\x24\x2c\x00\x73\x2c\xc8\x64\xb7\x01\x38\x03\xc0\ \x3d\xd2\x59\x88\x88\xa4\xb9\x9e\xf7\xaa\x57\x79\xd3\x7f\xa3\x74\ \x96\xa4\xe1\x4b\x80\x82\xe2\x28\xbc\x02\xc0\x0d\x00\x6c\xe9\x2c\ \x94\x4c\x7c\x09\x90\xc4\x28\x05\x3f\x08\xee\x5b\xd8\x33\x70\x81\ \x74\x94\xa4\xe2\x0c\x80\xa0\x20\x93\xbd\x09\xc0\xfb\x01\x6c\x15\ \x8e\x42\x44\x34\x67\xb4\x31\x93\xa9\x74\xfa\x73\x1c\xfc\x65\xb1\ \x00\x08\x0b\x32\xd9\xf5\x00\x4e\x02\xf0\x3f\xd2\x59\x88\x88\xea\ \xcd\x76\x9c\x28\x48\xa5\x4e\xc8\x77\xf7\xdd\x26\x9d\x25\xe9\x58\ \x00\x1a\x40\xf5\xbd\x80\x33\x51\x59\x0e\x20\x22\x6a\x49\x9e\xef\ \xff\xc2\xf5\xfd\x3c\xd7\xfb\x1b\x03\xdf\x01\x68\x30\x71\x14\x7e\ \x0a\xc0\x1d\x00\xd2\xd2\x59\xa8\xf5\xf1\x1d\x00\x9a\x0b\x4a\xa9\ \xb2\x9f\x4a\x7d\xbb\x73\x49\xff\xd5\xd2\x59\x68\x2f\xce\x00\x34\ \x98\x20\x93\xbd\x0f\x95\xad\x82\x2f\x4a\x67\x21\x22\x9a\x2d\x63\ \x59\xe3\x41\x5b\xdb\xc7\x39\xf8\x37\x1e\x16\x80\x06\x14\x64\xb2\ \xcf\x03\x38\x19\xc0\xfd\xd2\x59\x88\x88\x66\xca\x71\xdd\xad\x7e\ \x2a\xd5\x93\x2f\x14\x1f\x94\xce\x42\xef\xc6\x25\x80\x06\x17\x47\ \xe1\x65\x00\xfe\x11\x40\x20\x9d\x85\x5a\x0f\x97\x00\xa8\x1e\x94\ \x52\xf0\x82\xe0\xde\x85\x3d\x03\x9f\x96\xce\x42\x07\xc7\x19\x80\ \x06\x17\x64\xb2\xb7\xa0\xb2\x4b\xe0\x69\xe9\x2c\x44\x44\x87\x63\ \xd9\x76\x1c\xb4\xb5\xad\xe6\xe0\xdf\xf8\x58\x00\x9a\x40\x90\xc9\ \xbe\x08\x60\x05\x80\xaf\x03\x98\x14\x8e\x43\x44\xf4\x9e\xbc\x20\ \x78\xdc\x0b\x82\x8e\x7c\xa1\xb8\x4e\x3a\x0b\x1d\x1e\x97\x00\x9a\ \x4c\x1c\x85\x2b\x01\xdc\x0d\x60\x89\x74\x16\x6a\x7e\x5c\x02\xa0\ \x5a\x30\xc6\x94\xbc\x20\xb8\x2a\xdf\xdd\x77\xb3\x74\x16\x9a\x3e\ \xce\x00\x34\x99\x20\x93\xfd\x5f\x00\xc7\x03\xf8\x8e\x70\x14\x22\ \x22\xb8\x9e\xf7\xaa\x9f\x4e\x77\x73\xf0\x6f\x3e\x9c\x01\x68\x62\ \x71\x14\x9e\x0f\xe0\x36\x00\x0b\xa4\xb3\x50\x73\xe2\x0c\x00\xcd\ \x94\xd2\xba\xec\x07\xc1\x3f\x75\x2e\xe9\xbf\x4a\x3a\x0b\xcd\x0c\ \x67\x00\x9a\x58\x90\xc9\xfe\x3b\x80\xe3\x00\x3c\x22\x9d\x85\x88\ \x92\xc3\x76\x9c\x9d\xa9\x74\xfa\x14\x0e\xfe\xcd\x8d\x05\xa0\xc9\ \x05\x99\xec\x56\x00\x1f\x01\xf0\x39\x00\x91\x70\x1c\x22\x6a\x61\ \xd5\x13\xfd\xfe\xcd\xf5\xfd\x6c\xae\x50\x7c\x4a\x3a\x0f\xcd\x0e\ \x97\x00\x5a\x48\x1c\x85\x9d\x00\x6e\x04\x70\xbe\x74\x16\x6a\x0e\ \x5c\x02\xa0\xe9\x72\x5c\xf7\x4d\xc7\x75\x3f\xc6\x81\xbf\x75\xb0\ \x00\xb4\xa0\x38\x0a\x3f\x0e\xe0\x66\x00\x8b\xa4\xb3\x50\x63\x63\ \x01\xa0\xc3\xd1\xc6\x4c\x79\xbe\x7f\x43\xe7\x92\xfe\x6b\xa4\xb3\ \x50\x6d\x71\x09\xa0\x05\x05\x99\xec\x03\x00\x96\x01\xf8\x67\x00\ \x6c\x78\x44\x34\x23\xae\xef\x3f\x1f\xa4\xd3\xdd\x1c\xfc\x5b\x13\ \x67\x00\x5a\x5c\x1c\x85\x2b\x00\xfc\x0b\x2a\x85\x80\x68\x3f\x9c\ \x01\xa0\xf7\x62\x2c\x6b\xcc\xf3\xfd\xab\xf2\xdd\x7d\xb7\x4a\x67\ \xa1\xfa\xe1\x0c\x40\x8b\x0b\x32\xd9\xf5\x00\x4e\x04\xf0\xf7\x00\ \xc6\x84\xe3\x10\x51\x03\xab\x9e\xe1\xff\x13\x3f\x95\xca\x72\xf0\ \x6f\x7d\x9c\x01\x48\x90\x38\x0a\x97\xa2\x72\x6e\xc0\x2a\xe9\x2c\ \xd4\x18\x38\x03\x40\xef\xb0\x1d\x27\x72\x3c\xef\x8f\xf3\x85\xe2\ \x5a\xe9\x2c\x34\x37\x58\x00\x12\x28\x8e\xc2\x0b\x00\x5c\x0f\xa0\ \x20\x9d\x85\x64\xb1\x00\x90\x31\xa6\xe4\xfa\xfe\xcd\xdc\xd3\x9f\ \x3c\x5c\x02\x48\xa0\x20\x93\xfd\x1e\x80\xa5\x00\xfe\x1a\xc0\x1e\ \xe1\x38\x44\x24\x40\x29\x55\xf6\x83\xe0\x11\x3f\x9d\xee\xe0\xe0\ \x9f\x4c\x9c\x01\x48\xb8\x38\x0a\xf3\x00\xbe\x06\xe0\x52\xb0\x10\ \x26\x0e\x67\x00\x92\xc9\xf5\xbc\x97\x6c\xc7\xf9\x64\xae\x50\x7c\ \x4e\x3a\x0b\xc9\x61\x01\x20\x00\x40\x1c\x85\x27\x00\xb8\x01\xc0\ \x07\xa4\xb3\xd0\xdc\x61\x01\x48\x16\xdb\x71\x76\x3a\xae\x7b\x59\ \xbe\xbb\xef\x7b\xd2\x59\x48\x1e\x0b\x00\xed\x27\x8e\xc2\x73\x00\ \x7c\x13\x40\x51\x3a\x0b\xd5\x1f\x0b\x40\x32\x18\xcb\x9a\x70\x3d\ \xef\x5b\x9d\x4b\xfa\xaf\x95\xce\x42\x8d\x83\x53\xbe\xb4\x9f\x20\ \x93\xfd\x0f\x00\xcb\x01\x7c\x01\xbc\x5b\x80\xa8\xa9\x29\xad\xcb\ \x7e\x2a\xf5\xa0\x9f\x4a\xcd\xe7\xe0\x4f\x07\xe2\x0c\x00\x1d\x54\ \x1c\x85\xf3\x01\xfc\x15\x80\xcf\x03\x68\x13\x8e\x43\x75\xc0\x19\ \x80\xd6\xa4\x94\x2a\xbb\xbe\xbf\xde\xb2\xac\x8b\x73\x85\xe2\x26\ \xe9\x3c\xd4\x98\x58\x00\xe8\xb0\xaa\x45\xe0\x0b\x00\xfe\x12\x40\ \x5a\x38\x0e\xd5\x10\x0b\x40\x6b\xa9\x0e\xfc\x4f\x58\x96\x75\x21\ \x07\x7e\x3a\x1c\x16\x00\x9a\xb6\x38\x0a\x17\xa0\x52\x04\xae\x00\ \x8b\x40\x4b\x60\x01\x68\x0d\xd5\x81\xff\x49\xcb\xb2\x2e\xca\x15\ \x8a\x2f\x4b\xe7\xa1\xe6\xc0\x02\x40\x47\x2c\x8e\xc2\x2c\x80\x6b\ \x00\xfc\x05\x80\x94\x70\x1c\x9a\x05\x16\x80\xe6\xa6\x94\x82\xeb\ \x79\x4f\x5a\xb6\x7d\x51\xae\x50\x7c\x49\x3a\x0f\x35\x17\x16\x00\ \x9a\xb1\x38\x0a\x3b\xb0\xb7\x08\x04\xc2\x71\x68\x06\x58\x00\x9a\ \x53\x75\xe0\xff\xb9\x65\xdb\x17\xe7\x0a\xc5\x17\xa4\xf3\x50\x73\ \x62\x01\xa0\x59\x8b\xa3\xf0\x7d\xa8\x2c\x0d\xfc\x39\x80\x76\xe1\ \x38\x74\x04\x58\x00\x9a\x8b\xd2\xba\xec\xba\xee\x53\x96\x6d\x5f\ \x9a\x2b\x14\x9f\x97\xce\x43\xcd\x8d\x05\x80\x6a\x26\x8e\xc2\x36\ \x00\x9f\x41\x65\xd7\x40\xb7\x6c\x1a\x9a\x0e\x16\x80\xe6\x60\x8c\ \x29\x39\x9e\xf7\x5f\xc6\xb2\x2e\xcb\x75\xf5\xbe\x21\x9d\x87\x5a\ \x03\x0b\x00\xd5\x5c\x1c\x85\x06\xc0\x79\x00\xae\x06\x70\x9a\x70\ \x1c\x3a\x04\x16\x80\xc6\x66\xdb\xf6\x1e\xdb\x75\x6f\xd7\xc6\x7c\ \x39\xd7\xd5\x3b\x2e\x9d\x87\x5a\x0b\x0b\x00\xd5\x55\x1c\x85\xa7\ \xa2\x72\x96\xc0\x79\x00\x8c\x70\x1c\x3a\x00\x0b\x40\x63\x72\x3c\ \x6f\x8b\x6d\xdb\x5f\xc9\x77\xf7\xdd\x2e\x9d\x85\x5a\x17\x0b\x00\ \xcd\x89\x38\x0a\xbb\x51\x59\x1a\xf8\x0c\x78\xa8\x50\xc3\x60\x01\ \x68\x1c\x4a\xa9\xb2\xeb\x79\xbf\xb4\x6c\xfb\xca\x5c\xa1\xf8\x98\ \x74\x1e\x6a\x7d\x2c\x00\x34\xa7\xe2\x28\x6c\x47\xa5\x04\x5c\x06\ \xde\x37\x20\x8e\x05\x40\x9e\xb1\xac\x09\xc7\x75\x1f\x32\x96\x75\ \x79\xae\xab\xf7\x75\xe9\x3c\x94\x1c\x2c\x00\x24\x26\x8e\xc2\x55\ \x00\xd6\x00\xf8\x04\xb8\x8d\x50\x04\x0b\x80\x0c\xa5\x14\x1c\xd7\ \xdd\x64\xd9\xf6\xb7\xf3\xdd\x7d\x37\x4a\xe7\xa1\x64\x62\x01\x20\ \x71\xd5\x59\x81\x0b\x50\x29\x03\xa7\x08\xc7\x49\x14\x16\x80\xb9\ \x65\xd9\xf6\x90\xed\x38\xf7\x1b\xcb\xba\x96\xbf\xed\x93\x34\x16\ \x00\x6a\x28\x71\x14\x2e\x43\xa5\x08\x5c\x08\xa0\x43\x38\x4e\xcb\ \x63\x01\xa8\x3f\xad\xf5\x94\xe3\xba\xbf\x34\xb6\xfd\x95\x7c\xa1\ \xf8\xa0\x74\x1e\xa2\x77\xb0\x00\x50\x43\x8a\xa3\xd0\x06\xf0\x51\ \x54\xca\xc0\x47\xc0\x1d\x04\x75\xc1\x02\x50\x3f\x8e\xeb\xbe\x65\ \xd9\xf6\x9d\xda\x98\xaf\xe6\xba\x7a\x63\xe9\x3c\x44\x07\x62\x01\ \xa0\x86\x17\x47\x61\x27\x80\xf3\x51\x79\x57\xe0\x74\x00\x5a\x36\ \x51\xeb\x60\x01\xa8\x2d\xdb\x71\x22\xcb\xb6\x1f\x31\xc6\x5c\x97\ \x2b\x14\x9f\x91\xce\x43\x74\x28\x2c\x00\xd4\x54\xe2\x28\xcc\xa1\ \x72\xa6\xc0\x27\x01\xac\x02\x67\x06\x66\x85\x05\x60\xf6\x6c\xc7\ \xd9\x65\xd9\xf6\xc3\xd5\x41\xff\x39\xe9\x3c\x44\xd3\xc5\x02\x40\ \x4d\xab\x7a\x19\xd1\x79\xa8\xcc\x0c\xbc\x1f\x80\x25\x1a\xa8\x09\ \xb1\x00\xcc\x8c\xed\x38\x3b\x2d\xdb\x5e\x67\x8c\xf9\x1a\xcf\xe4\ \xa7\x66\xc5\x02\x40\x2d\xa1\x7a\x45\xf1\x39\xa8\x94\x81\x33\xc1\ \x32\x30\x2d\x2c\x00\xd3\x67\x3b\xce\x0e\xcb\xb6\xd7\x1a\x63\xbe\ \xce\x1b\xf8\xa8\x15\xb0\x00\x50\xcb\x89\xa3\x70\x1e\x80\x0f\x02\ \x38\x0b\xc0\x87\xc1\x8b\x89\x0e\x8a\x05\xe0\xe0\x8c\x31\x25\xcb\ \xb6\x37\x19\xcb\x5a\xab\xb5\xbe\x31\x57\x28\xbe\x2a\x9d\x89\xa8\ \x96\x58\x00\xa8\xe5\xc5\x51\xd8\x8f\x4a\x11\x38\x0b\x95\xa5\x82\ \xb4\x68\xa0\x06\xc2\x02\xb0\x97\x52\x0a\xb6\xe3\x6c\x37\x96\xf5\ \x98\x36\xe6\xf6\x7c\xa1\xb8\x56\x3a\x13\x51\x3d\xb1\x00\x50\xa2\ \x54\xb7\x17\xae\xc4\xde\x42\x70\x22\x00\x25\x1a\x4a\x50\xd2\x0b\ \x80\x65\xdb\x23\x96\x6d\x3f\x6b\x8c\xf9\xbe\xd2\xfa\xb6\x5c\x57\ \xef\x90\x74\x26\xa2\xb9\xc2\x02\x40\x89\x56\x7d\x91\xf0\x4c\x54\ \x4a\xc1\x0a\x00\xc7\x21\x41\xef\x0f\x24\xad\x00\x58\xb6\x3d\x62\ \x2c\x6b\x93\x31\xe6\xa7\x5a\xeb\x5b\x73\x85\xe2\x46\xe9\x4c\x44\ \x52\x58\x00\x88\xf6\x11\x47\x61\x0a\xc0\x1f\xa0\x52\x06\x56\x00\ \x38\x0d\xc0\x7c\xd1\x50\x75\xd4\xca\x05\x40\x6b\x5d\xb6\x6c\x3b\ \x34\xc6\x3c\xab\x8d\x59\xa7\xb4\xbe\x27\xd7\xd5\xbb\x4d\x3a\x17\ \x51\xa3\x60\x01\x20\x3a\x84\x38\x0a\x15\x80\x7e\xec\x2d\x04\x2b\ \x00\x1c\x83\x16\x59\x36\x68\xa5\x02\x60\x59\xd6\x98\xb1\xac\xd7\ \x8c\x31\xeb\x95\x31\xdf\x57\x4a\xad\xcb\x75\xf5\x4e\x49\xe7\x22\ \x6a\x54\x2c\x00\x44\x47\x28\x8e\xc2\x0c\x80\x63\x01\xfc\xde\x01\ \xcf\x02\xc9\x5c\x33\xd1\x8c\x05\x40\x6b\x5d\x36\x96\x15\x69\x63\ \xb6\x68\xad\x37\x6a\xad\x1f\x53\x5a\xff\x20\xd7\xd5\x3b\x28\x9d\ \x8d\xa8\x99\xb0\x00\x10\xd5\x48\x1c\x85\x79\x54\x8a\xc0\x72\xec\ \x2d\x05\xcb\x01\xb4\x49\xe6\x3a\x94\x46\x2e\x00\x4a\xa9\xb2\xb1\ \xac\x61\x63\xcc\x56\x6d\xcc\xf3\x5a\xeb\xc7\x95\x52\xeb\x78\xda\ \x1e\x51\x6d\xb0\x00\x10\xd5\x51\x75\x09\xa1\x0b\x95\x65\x84\x6e\ \x00\x85\xea\xf3\xce\xd7\x0b\x21\x78\x9c\xb1\x74\x01\xd0\xc6\x4c\ \x1a\x63\x86\xb5\xd6\x3b\x94\xd6\x5b\x95\x52\x9b\xb4\xd6\xbf\x51\ \x4a\xfd\x0c\x4a\xad\xe7\x14\x3e\x51\xfd\xb0\x00\x10\x09\x8a\xa3\ \xd0\x02\xb0\x18\xef\x2e\x06\x5d\xa8\x5c\x87\xbc\xa0\xfa\x78\xf5\ \xf8\xfb\xeb\x55\x00\x94\x52\x50\x5a\x4f\x6a\xad\x27\x94\x52\xb1\ \xd6\xfa\x6d\xa5\xf5\xeb\x5a\xeb\x4d\x4a\xa9\x8d\x4a\xa9\x0d\x50\ \xea\x69\xde\x92\x47\x24\x87\x05\x80\xa8\x09\xc4\x51\x18\x60\x6f\ \x19\xd8\xf7\x99\xbf\xcf\xd7\xf3\x00\x38\x00\xdc\xea\xa7\xf3\x1e\ \x7f\xde\xef\x7b\x6f\x6c\xde\x6c\x94\x52\x80\x52\x65\x05\x94\xa1\ \x54\x59\x29\x35\x05\xe0\x9d\xcf\x49\xa5\xd4\x24\x80\x49\x28\x35\ \xa9\x80\x92\x52\x2a\x56\x4a\x45\x50\x6a\x87\x52\x6a\xbb\x52\xea\ \x4d\xa5\xd4\xeb\x00\x06\x95\x52\xaf\x41\xa9\x4d\xb9\xae\xde\x70\ \xce\x7e\x38\x44\x34\x23\xff\x0f\xa7\x8b\x1a\xb1\x5a\x35\x73\x4a\ \x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ \x00\x00\x0e\x2f\ \x89\ \x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ \x00\x02\x00\x00\x00\x02\x00\x08\x04\x00\x00\x00\x5e\x71\x1c\x71\ \x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\ \x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\x26\x00\x00\x80\x84\ \x00\x00\xfa\x00\x00\x00\x80\xe8\x00\x00\x75\x30\x00\x00\xea\x60\ \x00\x00\x3a\x98\x00\x00\x17\x70\x9c\xba\x51\x3c\x00\x00\x00\x02\ \x62\x4b\x47\x44\x00\x00\xaa\x8d\x23\x32\x00\x00\x00\x09\x70\x48\ \x59\x73\x00\x00\x0e\xc4\x00\x00\x0e\xc4\x01\x95\x2b\x0e\x1b\x00\ \x00\x00\x07\x74\x49\x4d\x45\x07\xe4\x02\x01\x0c\x05\x32\x3f\xc7\ \x9b\x90\x00\x00\x0c\xfd\x49\x44\x41\x54\x78\xda\xed\xdd\x7f\xb0\ \xe5\x75\x5d\xc7\xf1\xd7\x3d\x80\x80\xfc\x34\x64\x32\x6a\xc0\x4d\ \x7e\x47\xce\x84\x34\x02\x01\xa6\x30\x02\xa5\x08\xa1\x16\x54\x3a\ \x8d\x83\x8e\x33\xcd\x90\xd6\x58\x93\xd3\x4c\x35\xd5\xe4\x4c\xca\ \x30\xfd\xd1\x24\xea\x94\x05\x8a\x3a\xa9\x44\x8d\x39\xfc\x90\x5f\ \x05\x44\xfe\x22\x34\x45\xd6\xb0\x28\x53\x76\x13\x58\x42\x7e\x6e\ \x7f\x5c\xef\xdc\xdd\xe5\xee\xdd\xfb\xfb\xe3\xde\xd7\xe3\xf1\xcf\ \x9e\x7b\xce\xf7\x9c\xfb\xfe\x9e\x99\xef\xf3\x7e\xcf\x39\xdf\xf3\ \xdd\xa9\xac\x85\x7d\x73\x7c\x8e\xcb\x86\x6c\xc8\x61\x39\x34\xcf\ \xcf\x01\xd9\x23\x07\xae\xc9\x6f\x86\xdd\xcb\xff\x26\xd9\x94\x07\ \xb3\x29\xf7\xe7\xeb\xd9\x98\x2f\x66\x63\x9e\x59\xbd\x5f\x37\xb5\ \xaa\x2b\xf3\x43\x79\x45\x5e\x9e\x53\x73\x74\xf6\x58\xd5\xdf\x03\ \xeb\xd7\x96\x7c\x21\xb7\xe5\x96\xdc\x9a\xef\xac\xfc\x83\xaf\x4e\ \x00\xf6\xcd\xb9\x39\x33\xaf\xc8\xb1\xab\xfb\xcc\x40\x91\xa7\x72\ \x5b\xfe\x3e\x1f\xcb\xc6\x95\x7c\xd0\x95\x0e\xc0\x24\xa7\xe6\x75\ \xf9\xc5\x1c\xb2\x86\x4f\x0c\x34\xf9\x97\xbc\x37\x57\x65\xcb\xca\ \x3c\xd8\x4a\x06\xe0\x47\xf3\xa6\xfc\x52\x0e\x1f\xf2\xa4\x40\x93\ \x87\xf3\x91\xfc\x79\xee\x5a\xfe\x03\xad\x54\x00\x4e\xc8\x3b\x72\ \x51\xf6\x1c\xfa\xa4\x40\x97\xeb\xf2\xce\xdc\xb9\xbc\x87\x58\x89\ \x00\x9c\x98\xdf\xca\x6b\x57\xf9\xed\x44\x60\x2e\xcb\x8c\xc0\x72\ \x37\xdb\x13\x72\x59\xce\x1a\xfd\x1c\x40\xb1\xad\xf9\x9b\x5c\x9a\ \x07\x96\x76\xe7\xe5\x7c\x3c\xb7\x5f\xde\x99\xbf\xca\x51\xa3\xd7\ \x1f\xaa\x4d\xe5\xf8\xbc\x25\x4f\xe7\xf6\x6c\x5d\xca\x9d\x97\xfa\ \x4b\x5f\x9b\xf7\xe4\x47\x46\xaf\x3b\xf0\x3d\xff\x98\x37\xe7\x9e\ \xc5\xde\x69\x69\x01\x38\x3c\x1f\xcc\xcb\x46\xaf\x2f\xb0\x9d\x27\ \xf2\xdb\x79\xcf\xe2\xf6\x03\x96\x12\x80\xf3\xf3\xfe\xfc\xc0\xe8\ \x75\x05\xe6\x70\x4d\xde\x90\x87\x16\xbe\xf8\x64\x91\x0f\xbf\x4f\ \x2e\xcf\xc7\x6d\xfe\xf0\x7d\xea\xbc\xdc\x91\xe3\x17\xbe\xf8\xe2\ \xf6\x00\x8e\xcb\x47\xf3\x63\xa3\xd7\x10\x98\xd7\xc3\xf9\xe5\x5c\ \xb3\xb0\x45\x17\xf3\x29\xc0\xa9\xf9\x74\x5e\x38\x7a\xdd\x80\x5d\ \xd8\x3b\xaf\xcf\x37\xf2\xf9\x85\x2c\xba\xf0\x00\x5c\x98\x4f\xfa\ \x0a\x2f\xec\x16\x26\x79\x4d\x36\x2f\xe4\x00\xa1\x85\x06\xe0\xd2\ \xbc\x2f\x7b\x8d\x5e\x2b\x60\x81\xa6\x72\x4e\x1e\xc9\x3f\xed\x6a\ \xb1\x85\x04\x60\x2a\x97\xe5\x77\x1d\xea\x0b\xbb\x95\xa9\x9c\x9d\ \xc7\x72\xdb\xfc\x0b\x2d\x24\x00\x7f\x9c\xdf\x18\xbd\x2e\xc0\x12\ \x9c\x95\x8d\xf9\xe2\x7c\x0b\xec\xfa\xef\xfa\xef\xe4\xf7\x47\xaf\ \x05\xb0\x44\x4f\xe4\x9c\xdc\xb8\xf3\x9b\x77\x15\x80\x5f\xcd\x9f\ \x8e\x5e\x03\x60\x19\x36\xe7\x94\x7c\x75\x67\x37\xce\x1f\x80\x5f\ \xc9\xfb\xbd\xf6\x87\xdd\xdc\xbd\x39\x25\x9b\xe6\xbe\x69\xbe\xcd\ \xfb\xe4\xdc\x94\xe7\x8c\x9e\x1d\x58\xb6\x4f\xe6\xfc\xb9\x6f\xd8\ \xf9\x9b\x80\x3f\x98\xeb\xf3\xbc\xd1\x73\x03\x2b\xe0\xd8\x3c\x90\ \xcf\xce\x75\xc3\xce\xf6\x00\xf6\xcc\x75\xbe\xef\x07\xeb\xc6\xa3\ \x39\x71\xae\x77\x02\x76\xf6\x65\xa0\x77\xd9\xfc\x61\x1d\xd9\x2f\ \x57\xcd\x75\x28\xdf\xdc\x2f\x01\xce\xcb\xe5\xde\xfc\x83\x75\xe5\ \xb0\x3c\x99\x9b\x77\xbc\x72\xae\xcd\xfc\xc0\xdc\xe3\x5c\x3f\xb0\ \xee\x3c\x96\x63\xf3\x8d\xed\xaf\x9a\xeb\x25\xc0\xbb\x6c\xfe\xb0\ \x0e\xed\x9b\x3f\xda\xf1\xaa\x67\xef\x01\x9c\x9c\xdb\x16\x7d\x9a\ \x10\x60\x77\xb0\x35\x67\xe4\xd6\x6d\xaf\xd8\x31\x00\xcf\xc9\xe7\ \x16\x73\x3e\x11\x60\xb7\x72\x47\x4e\xd9\xf6\xac\x81\x3b\xfe\xad\ \xff\x75\x9b\x3f\xac\x63\x2f\xcd\x85\xdb\xfe\xb8\xfd\x1e\xc0\x81\ \xf9\xba\xf3\xfd\xc1\xba\x76\x57\x7e\x72\xf6\x87\xed\xf7\x00\xde\ \x66\xf3\x87\x75\xee\xa4\x9c\x31\xfb\xc3\xb6\xc7\x01\x1c\x94\x0f\ \x65\xdf\xd1\xd3\x01\xab\xec\x90\x7c\x78\xe6\xe2\xb6\x7b\x00\x6f\ \x77\xec\x3f\x14\x78\x75\x8e\x9b\xb9\x38\xbb\x07\x70\x50\xae\xce\ \xde\xa3\x27\x03\x56\xdd\x54\x26\xf9\xbb\xe9\x8b\xb3\x7b\x00\x17\ \x39\xe7\x2f\x94\xf8\x85\x99\x2f\xfa\xcf\x06\xe0\x4d\xa3\x67\x02\ \xd6\xc8\xf3\x72\xd6\xf4\x85\x99\x00\xbc\x38\x27\x8d\x9e\x09\x58\ \x33\x3f\x3f\xfd\xcf\x4c\x00\x2e\x19\x3d\x0f\xb0\x86\x2e\x98\xfe\ \xc4\x6f\x3a\x00\xfb\xe4\xe2\xd1\xf3\x00\x6b\xe8\x80\x9c\x9b\xcc\ \x04\xe0\x1c\x07\x00\x41\x99\x6d\x02\xf0\xea\xd1\xb3\x00\x6b\xec\ \x8c\x64\xfa\xbb\x00\x53\xf9\xaf\xbc\x60\xf4\x34\xc0\x1a\x3b\x2c\ \xff\x3d\x49\x72\x82\xcd\x1f\x0a\x9d\x3e\xfd\x12\xe0\x8c\x65\x3f\ \x10\xb0\xfb\xf9\x5e\x00\x4e\x1f\x3d\x07\x30\xc0\xe9\xd3\xef\x01\ \x6c\xcc\x86\xd1\x93\x00\x6b\xee\xf1\xec\x37\x95\x83\xb3\xd9\x29\ \xc0\xa1\xd2\x0b\x27\x79\xb1\xcd\x1f\x4a\x1d\x35\xc9\x51\xa3\x67\ \x00\x06\x39\x72\x92\x17\x8d\x9e\x01\x18\xe4\xc8\x89\x37\x00\xa1\ \xd6\x8b\x26\x0e\x02\x82\x5a\x07\x4d\x72\xe8\xe8\x19\x80\x41\xf6\ \x9f\xf8\x1e\x20\xd4\x3a\x60\x92\xe7\x8e\x9e\x01\x18\x64\xff\xc9\ \xcc\xc9\x01\x81\x3a\xfb\x4f\xe5\xa9\xed\xfe\x73\x10\xa0\xc7\x53\ \x13\xc7\x01\x42\xad\xc9\x64\xf9\x8f\x01\xec\xae\x04\x00\x8a\x09\ \x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\ \x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\ \x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\ \x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\ \x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\ \x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\ \x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\ \x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\ \x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\ \x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\ \xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\ \x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\ \x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\ \x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\ \x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\ \x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\ \x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\ \x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\ \x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\ \x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\ \xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\ \x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\ \x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\ \x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\ \x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\ \x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\ \x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\ \x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\ \x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\ \x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\ \x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\ \x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\ \x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\ \x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\ \x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\ \xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\ \x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\ \x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\ \x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\ \x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\ \x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\ \x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\ \x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\ \x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\ \x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\ \xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\ \x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\ \x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\ \x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\ \x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\ \x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\ \x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\ \x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\ \x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\ \x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\ \x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\ \x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\ \x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\ \x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\ \x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\ \xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\ \x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\ \x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\ \x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\ \x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\ \x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\ \x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\ \x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\ \x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\ \x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\ \xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\ \x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\x00\x14\ \x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\x80\x62\ \x02\x00\xc5\x04\x00\x8a\x09\x00\x14\x13\x00\x28\x26\x00\x50\x4c\ \x00\xa0\x98\x00\x40\x31\x01\x80\x62\x02\x00\xc5\x04\x00\x8a\x09\ \x00\x14\x13\x00\x28\x26\x00\x50\x4c\x00\xa0\x98\x00\x40\x31\x01\ \x80\x62\x93\x3c\x3d\x7a\x04\x60\x90\x27\x26\x79\x62\xf4\x0c\xc0\ \x20\x5b\x04\x00\x7a\x6d\x99\xe4\xe1\xd1\x33\x00\x83\x6c\x99\xe4\ \xc1\xd1\x33\x00\x83\x3c\x32\xc9\xb7\x47\xcf\x00\x0c\xb2\x65\x92\ \x07\x46\xcf\x00\x0c\xf2\xad\x49\x36\x8e\x9e\x01\x18\xe4\xde\x49\ \xee\x1b\x3d\x03\x30\xc8\xd7\x26\xf9\xd2\xe8\x19\x80\x41\xbe\x36\ \x95\x3d\xf3\x48\xf6\x19\x3d\x07\x30\xc0\x21\x93\x3c\x95\xbb\x47\ \x4f\x01\x0c\xb0\x39\x9b\x27\x49\x6e\x1f\x3d\x07\x30\xc0\x5d\xd3\ \xdf\x06\xbc\x69\xf4\x1c\xc0\x00\xb7\x4c\x07\xe0\xe6\x6c\x1d\x3d\ \x09\xb0\xe6\x6e\x9e\x0e\xc0\xb7\x73\xd7\xe8\x49\x80\x35\xf6\x78\ \xee\x9c\x39\x21\xc8\xdf\x8e\x9e\x05\x58\x63\xb7\xe7\xbb\x33\x01\ \xf8\xc4\xe8\x59\x80\x35\x76\x53\x32\x13\x80\xbb\xf3\xd9\xd1\xd3\ \x00\x6b\xea\x63\xc9\xec\x39\x01\xdf\x37\x7a\x1a\x60\x0d\x7d\x79\ \xfa\xf8\x9f\x99\x00\x5c\x95\xff\x1b\x3d\x11\xb0\x66\xae\x9c\xfe\ \x67\x26\x00\x0f\xe5\xa3\xa3\x27\x02\xd6\xcc\x47\xa6\xff\x99\x3d\ \x2d\xb8\x17\x01\xd0\xe2\x9f\x73\xef\xf4\x85\xd9\x00\xdc\xea\x90\ \x60\x28\xf1\xde\x99\x0b\x53\xdb\x5c\xf9\xca\xfc\xc3\xe8\xb9\x80\ \x55\xf7\xad\x1c\x91\xef\x4e\x5f\xdc\xf6\x7f\x06\xfa\xb4\x6f\x05\ \x40\x81\xcb\x67\x36\xff\xed\xf7\x00\x92\xd3\x72\xcb\xe8\xd9\x80\ \x55\xf5\x68\x8e\xc8\xa6\x99\x1f\xb6\xff\xbf\x01\x6f\xcd\xf5\xa3\ \xa7\x03\x56\xd5\x15\xb3\x9b\xff\x8e\x7b\x00\xc9\x4f\xe4\xce\xec\ \x39\x7a\x42\x60\x95\x3c\x9a\x63\xf3\x9f\xb3\x3f\xee\xb1\xc3\xcd\ \xdf\xcc\x7e\x39\x6d\xf4\x8c\xc0\x2a\xf9\x83\x5c\xbb\xed\x8f\x53\ \xcf\x5a\x60\xef\x7c\x2e\xc7\x8d\x9e\x12\x58\x05\xff\x91\x63\xb7\ \x3f\xe6\x77\xf2\xac\x45\x1e\xcf\x5b\x9d\x20\x04\xd6\xa5\xb7\xef\ \x78\xc8\xff\x1e\x73\x2c\x74\x7f\x0e\xcb\x4b\x46\x4f\x0a\xac\xb0\ \x5b\xf3\x8e\x1d\xaf\x9a\x9a\x73\xc1\x03\x72\x87\x97\x01\xb0\xae\ \x3c\x9a\x93\xf2\x6f\x3b\x5e\x39\x99\x73\xd1\x47\x72\x7e\x1e\x1a\ \x3d\x2f\xb0\x82\xde\xf6\xec\xcd\x7f\x67\x01\x48\xbe\x9a\x37\xe4\ \x99\xd1\x13\x03\x2b\xe4\xe3\xb9\x62\xae\xab\xf7\xd8\xe9\x1d\xbe\ \x92\xbd\x72\xc6\xe8\xa9\x81\x15\xf0\x40\x7e\x26\x8f\xcd\x75\xc3\ \x1e\xf3\xdc\xe9\xa6\xbc\x24\x47\x8f\x9e\x1c\x58\xa6\x27\x73\x41\ \xbe\x3c\xf7\x4d\x93\x79\xee\xf6\x4c\x5e\x9f\x1b\x47\xcf\x0e\x2c\ \xd3\xa5\xf9\xcc\xce\x6e\x9a\xcc\x7b\xc7\xc7\xf2\x2a\x5f\x0f\x82\ \xdd\xda\x1f\xe6\xcf\x76\x7e\xe3\xd4\x2e\xef\x7e\x50\xae\xcb\x49\ \xa3\xd7\x01\x58\x92\xab\x73\xd1\x7c\x07\xf6\xed\x3a\x00\xc9\xf3\ \x73\x43\x7e\x7c\xf4\x7a\x00\x8b\x76\x63\xce\xcd\xe3\xf3\x2d\x30\ \x59\xc0\x83\x3c\x98\x9f\xca\xa7\x46\xaf\x09\xb0\x48\x37\xe6\x35\ \xf3\x6f\xfe\xf3\x7f\x0a\x30\xeb\x89\x5c\x9d\x17\x38\x3c\x18\x76\ \x23\xd7\xe4\x82\x5d\x9f\xec\x7f\x61\x01\x48\x9e\xc9\xb5\xf9\x4e\ \xce\x5e\xd0\x4b\x06\x60\xb4\x2b\x73\x71\x9e\xd8\xf5\x62\x0b\x0d\ \x40\x92\xdc\x91\xfb\x72\x76\x9e\x33\x7a\xcd\x80\x5d\x78\x77\xde\ \xba\xb0\x23\x79\x17\xfb\x17\xfd\x98\x5c\x95\x13\x47\xaf\x1d\xb0\ \x53\x5b\x72\x49\x3e\xbc\xd0\x85\x17\xb3\x07\x90\x24\x9b\xf2\x81\ \x6c\xcd\x19\x5e\x0a\xc0\xf7\xa5\xaf\xe4\xec\xdc\xb0\xf0\xc5\x97\ \xb6\x21\x9f\x99\xbf\xcc\x0f\x8f\x5e\x53\x60\x07\x1f\xca\x9b\xb3\ \x65\x31\x77\x58\xc8\xc7\x80\xcf\x76\x7d\x8e\xc9\xef\xed\xea\x03\ \x06\x60\x0d\x7d\x33\x6f\xcc\xc5\x8b\xdb\xfc\x97\xba\x07\x30\xed\ \xa8\x5c\x96\x9f\x1d\xbd\xd6\x40\xb6\xe6\xaf\xf3\x6b\xd9\xbc\xf8\ \x3b\x2e\xf7\xb5\xfc\x79\x79\x77\x8e\x1c\xbd\xf6\x50\xed\xf3\x79\ \x4b\xee\x5c\xda\x5d\x97\xf6\x12\x60\xd6\x35\x39\x26\xe7\xe5\xae\ \xd1\xcf\x00\x94\xba\x27\x6f\xcc\x49\x4b\xdd\xfc\x97\xbf\x07\x30\ \xe3\xb4\xfc\x66\x5e\x35\xfa\xb9\x80\x2a\x77\xe7\x4f\x72\x65\x9e\ \x5e\xce\x43\xac\xe4\xc7\x79\x27\xe7\x92\xfc\x5c\x0e\x1e\xfb\x9c\ \x40\x81\x27\xf3\xa9\x5c\x91\x6b\x97\x7f\x02\xff\x95\xfe\x3c\x7f\ \xef\xbc\x32\xaf\xcb\x85\x79\xee\xa0\x27\x06\xd6\xbb\x2f\xe5\x83\ \xf9\x8b\xfc\xcf\xca\x3c\xd8\xea\x1c\xd0\x73\x70\xce\xcb\x99\x79\ \x59\x8e\x58\xc3\xa7\x05\xd6\xb7\xc7\x73\x7b\xae\xcf\x27\x72\xf7\ \x4a\x3e\xe8\xea\x1e\xd1\xb7\x21\x3f\x9d\x97\xe7\xa5\xd9\x90\xbd\ \x56\xf5\xf7\xc0\xfa\xf5\x58\xbe\x90\xcf\xe4\x86\xdc\xb6\xeb\xef\ \xf6\x2d\xde\xda\x1c\xd2\xbb\x57\x36\xe4\x98\x1c\x9d\xa3\x73\x78\ \x0e\xc9\xa1\x39\x28\x53\xde\x2b\x80\x67\x79\x26\x0f\xe5\x99\x6c\ \xca\xa6\x6c\xca\xfd\xf9\xf7\x6c\xcc\xbf\xe6\xbe\xe5\xbd\xcd\x37\ \xbf\xff\x07\x17\x3b\x3d\x60\x70\x8a\x2b\xaf\x00\x00\x00\x25\x74\ \x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\ \x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x32\x3a\x30\x35\x3a\ \x35\x30\x2b\x30\x30\x3a\x30\x30\x85\xda\x60\x8f\x00\x00\x00\x25\ \x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\ \x32\x30\x32\x30\x2d\x30\x32\x2d\x30\x31\x54\x31\x32\x3a\x30\x35\ \x3a\x35\x30\x2b\x30\x30\x3a\x30\x30\xf4\x87\xd8\x33\x00\x00\x00\ \x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\ \x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\ \x3c\x1a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ " qt_resource_name = b"\ \x00\x05\ \x00\x6f\xa6\x53\ \x00\x69\ \x00\x63\x00\x6f\x00\x6e\x00\x73\ \x00\x0a\ \x0c\xab\xa1\x67\ \x00\x61\ \x00\x64\x00\x6a\x00\x75\x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x02\x8c\x59\xa7\ \x00\x70\ \x00\x6c\x00\x61\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0e\ \x04\xac\x3c\xa7\ \x00\x64\ \x00\x6f\x00\x77\x00\x6e\x00\x2d\x00\x61\x00\x72\x00\x72\x00\x6f\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x00\x48\x4e\x87\ \x00\x72\ \x00\x65\x00\x77\x00\x69\x00\x6e\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x07\xb5\x0f\xc7\ \x00\x63\ \x00\x61\x00\x6c\x00\x65\x00\x6e\x00\x64\x00\x61\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0c\x3b\xfb\x27\ \x00\x76\ \x00\x6f\x00\x6c\x00\x75\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x06\ \x04\xa9\x57\x47\ \x00\x46\ \x00\x46\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x06\x35\xb1\x87\ \x00\x6c\ \x00\x6f\x00\x6f\x00\x70\x00\x32\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x0c\x98\xba\x47\ \x00\x70\ \x00\x61\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\x63\x59\x27\ \x00\x6c\ \x00\x6f\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0c\ \x08\xfc\xe1\x47\ \x00\x63\ \x00\x6f\x00\x6e\x00\x74\x00\x69\x00\x6e\x00\x75\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x09\ \x08\x9b\xa0\x47\ \x00\x74\ \x00\x72\x00\x61\x00\x73\x00\x68\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0a\ \x0a\xb3\x36\x07\ \x00\x73\ \x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x07\ \x07\xa7\x57\x87\ \x00\x61\ \x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x06\x7c\x5a\x07\ \x00\x63\ \x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x0b\ \x0b\x73\x84\x47\ \x00\x63\ \x00\x6f\x00\x72\x00\x72\x00\x65\x00\x63\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ \x00\x08\ \x0b\x63\x58\x07\ \x00\x73\ \x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ " qt_resource_struct_v1 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x11\x00\x00\x00\x02\ \x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x3c\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x01\xd3\ \x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x14\ \x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x10\xf1\ \x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xad\x64\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xd9\xad\ \x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x02\x4b\x3c\ \x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x02\x24\xac\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x52\ \x00\x00\x01\x2a\x00\x00\x00\x00\x00\x01\x00\x01\x1e\x98\ \x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xfe\x95\ \x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x01\x7b\xcd\ \x00\x00\x01\xa2\x00\x00\x00\x00\x00\x01\x00\x02\xcc\xf6\ \x00\x00\x01\x86\x00\x00\x00\x00\x00\x01\x00\x02\x74\x05\ \x00\x00\x00\x9a\x00\x00\x00\x00\x00\x01\x00\x00\x52\xb9\ \x00\x00\x00\xde\x00\x01\x00\x00\x00\x01\x00\x00\xd8\x55\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ " qt_resource_struct_v2 = b"\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x00\x00\x02\x00\x00\x00\x11\x00\x00\x00\x02\ \x00\x00\x00\x00\x00\x00\x00\x00\ \x00\x00\x00\x62\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x3c\ \x00\x00\x01\x70\x06\x68\x1f\x60\ \x00\x00\x00\x2a\x00\x00\x00\x00\x00\x01\x00\x00\x01\xd3\ \x00\x00\x01\x70\x06\x68\x1f\x60\ \x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x14\ \x00\x00\x01\x70\x06\x68\x17\x90\ \x00\x00\x00\x40\x00\x00\x00\x00\x00\x01\x00\x00\x10\xf1\ \x00\x00\x01\x70\x3f\xab\x84\x10\ \x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xad\x64\ \x00\x00\x01\x70\x3f\x4e\x6c\x08\ \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xd9\xad\ \x00\x00\x01\x70\x06\x68\x17\x90\ \x00\x00\x01\x70\x00\x00\x00\x00\x00\x01\x00\x02\x4b\x3c\ \x00\x00\x01\x71\xbe\x85\x9d\x61\ \x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x02\x24\xac\ \x00\x00\x01\x70\x06\x68\x0f\xc0\ \x00\x00\x00\x7c\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x52\ \x00\x00\x01\x70\x3f\x4d\xe7\x38\ \x00\x00\x01\x2a\x00\x00\x00\x00\x00\x01\x00\x01\x1e\x98\ \x00\x00\x01\x70\x06\x68\x27\x30\ \x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xfe\x95\ \x00\x00\x01\x70\x06\x68\x17\x90\ \x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x01\x7b\xcd\ \x00\x00\x01\x70\x06\x68\x1f\x60\ \x00\x00\x01\xa2\x00\x00\x00\x00\x00\x01\x00\x02\xcc\xf6\ \x00\x00\x01\x70\x06\x68\x1f\x60\ \x00\x00\x01\x86\x00\x00\x00\x00\x00\x01\x00\x02\x74\x05\ \x00\x00\x01\x70\x06\x68\x17\x90\ \x00\x00\x00\x9a\x00\x00\x00\x00\x00\x01\x00\x00\x52\xb9\ \x00\x00\x01\x70\x06\x68\x27\x30\ \x00\x00\x00\xde\x00\x01\x00\x00\x00\x01\x00\x00\xd8\x55\ \x00\x00\x01\x70\x06\x68\x1f\x60\ \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ \x00\x00\x01\x70\x06\x68\x17\x90\ " 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()
[ "jkjh82@naver.com" ]
jkjh82@naver.com
c563ed15ee01d2801876c5409a3057ce4e6d8304
9a157c032515e1fcc432a9335a9bea508bb73daa
/flask_service/src/service/utils/flask_utils.py
98c0f4f8538e8476368bd1c7f160c12d951ec89d
[]
no_license
firbath/thinking_in_flask
4dca7d4788539adb8dbd2c21e139f8502044b263
1f504a026a4eef4ab08c0afdd252959ca387a9ca
refs/heads/master
2023-03-10T23:54:54.233774
2023-02-16T13:06:51
2023-02-16T13:06:51
159,033,983
0
0
null
2022-12-08T09:30:38
2018-11-25T13:23:30
Python
UTF-8
Python
false
false
5,959
py
# -*- coding:utf-8 -*- """ File: flask_utils.py Author: YuFangHui Date: 2019-05-06 Description: """ from datetime import date, time from datetime import datetime as p_datetime # 有时候会返回datatime类型 from functools import wraps from flask import current_app from flask import jsonify from flask import request from flask_restful import Resource from sqlalchemy import DateTime, Numeric, String, Date, Time # 有时又是DateTime from service.utils import jwt_utils from y_utils import time_utils def show_all_route(app): print('~~~~~show_all_route~~~~~') if not app: print('no app') print('~~~~~~~~~~~~~~~~~~~~~~~~') return if not app.view_functions: print('no app.view_functions') else: for key, func in app.view_functions.items(): print(key, func) print('~~~~~~~~~~~~~~~~~~~~~~~~') if not app.url_map: print('no app.url_map') else: print(app.url_map) print('~~~~~~~~~~~~~~~~~~~~~~~~') def res_s(msg='request success', action=None, data=None): return res(True, msg, action, data) def res_f(msg='request failed', action=None, data=None): return res(False, msg, action, data) def res(success=True, msg='si_response', action=None, data=None): return jsonify({ 'success': success, 'time': time_utils.time2str(), 'msg': msg, 'action': action, 'data': data }) def base_token_check(func, permission_check): @wraps(func) def wrapper(*args, **kwargs): """ functools.wraps 则可以将原函数对象的指定属性复制给包装函数对象, 默认有 __module__、__name__、__doc__,或者通过参数选择 """ token = request.headers.get("access-token") rst = jwt_utils.token_decode(token) if rst.get('code') == 0: # 用户鉴权 payload = rst.get('data') if permission_check(payload): return func(*args, **kwargs) else: return res_f(msg='permission denied', action='permission_error') elif rst.get('code') == 1: current_app.app_logger.error('token_required:{}'.format(rst.get('data'))) return res_f(msg='token is invalid:{}'.format(rst.get('data')), action='token_error') else: return res_f(msg='token is invalid', action='token_error') return wrapper def get_user(): token = request.headers.get("access-token") rst = jwt_utils.token_decode(token) if rst.get('code') == 0: payload = rst.get('data') if payload: return { 'user_name': payload.get('user_name'), 'nick_name': payload.get('nick_name'), 'role': payload.get('role'), 'login_time': payload.get('login_time') } return None def model_to_dict(model): m_dict = dict() for col in model.__table__.columns: if isinstance(col.type, DateTime): value = time_utils.time2str(getattr(model, col.name)) elif isinstance(col.type, Numeric): value = float(getattr(model, col.name)) else: value = getattr(model, col.name) # yield (col.name, value) m_dict[col.name] = value return m_dict def fill_model_by_dict(model, m_dict): for col in model.__table__.columns: value = m_dict.get(col.name) if not value: continue if isinstance(col.type, DateTime): value = time_utils.str2time(value) elif isinstance(col.type, Numeric): value = float(value) setattr(model, col.name, value) return model def filter_str_by_dict(model, m_dict, filters, match=False): for col in model.__table__.columns: value = m_dict.get(col.name) if value and isinstance(col.type, String): if match: filters += (col == value.strip(),) else: filters += (col.contains(value.strip()),) # filters += (AccountInfo.id > 1,) return filters # 当结果为result对象列表时,result有key()方法 def result_to_dict(results): res = [dict(zip(r.keys(), r)) for r in results] # 这里r为一个字典,对象传递直接改变字典属性 for r in res: find_datetime(r) return res def find_datetime(value): for v in value: if isinstance(value[v], p_datetime): value[v] = convert_datetime(value[v]) # 这里原理类似,修改的字典对象,不用返回即可修改 def convert_datetime(value): if value: if isinstance(value, (p_datetime, DateTime)): return time_utils.time2str(value) elif isinstance(value, (date, Date)): # return value.strftime("%Y-%m-%d") return time_utils.time2str(value) elif isinstance(value, (Time, time)): # return value.strftime("%H:%M:%S") return time_utils.time2str(value) else: return "" class FlaskResource(Resource): f_permission = '' def __init__(self): # 通过method_decorators管理注解,实现对所用方法的权限约束 # 通过token实现user-role-permission权限管理 # si_permission为空,无须校验,不添加权限注解 if self.__class__.f_permission and self.__class__.token_check not in self.__class__.method_decorators: self.__class__.method_decorators = self.__class__.method_decorators + [self.__class__.token_check] print(self.__class__.method_decorators) @classmethod def permission_check(cls, payload): print('Resource permission_check', cls.__name__) print('payload', payload) return False @classmethod def token_check(cls, func): # print cls.__name__, cls.method_decorators return base_token_check(func=func, permission_check=cls.permission_check)
[ "firbath@163.com" ]
firbath@163.com
79e8b3e2b66f9a620f64b0138c328ca18b482edf
bcafc058770172fe3a150488421241162709fabc
/wibo1/contacts/migrations/0002_auto__add_field_contact_department.py
0528106d5b84e7ea0a7734661e7794283317099a
[ "MIT" ]
permissive
connorbolick/wiboserver
2c1b10a12edf6bc2e95d8dfd4268a924bb654d1c
a00b8d9517c841d9f77827ef9479fa347543b482
refs/heads/master
2021-01-19T12:11:49.691914
2016-09-23T18:15:24
2016-09-23T18:15:24
69,049,714
0
0
null
null
null
null
UTF-8
Python
false
false
2,727
py
# -*- coding: utf-8 -*- import datetime from south.db import db from south.v2 import SchemaMigration from django.db import models class Migration(SchemaMigration): def forwards(self, orm): # Adding field 'Contact.department' db.add_column('contacts_contact', 'department', self.gf('django.db.models.fields.CharField')(default='Add Department!!!', max_length=255), keep_default=False) def backwards(self, orm): # Deleting field 'Contact.department' db.delete_column('contacts_contact', 'department') models = { 'contacts.address': { 'Meta': {'object_name': 'Address'}, 'city': ('django.db.models.fields.CharField', [], {'max_length': '20'}), 'contact': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contacts.Contact']"}), 'country': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'postal_code': ('django.db.models.fields.CharField', [], {'max_length': '20'}), 'state': ('django.db.models.fields.CharField', [], {'max_length': '255'}), 'street_address': ('django.db.models.fields.CharField', [], {'max_length': '255'}) }, 'contacts.contact': { 'Meta': {'object_name': 'Contact'}, 'company': ('django.db.models.fields.CharField', [], {'max_length': '255'}), 'default_price_level': ('django.db.models.fields.CharField', [], {'max_length': '3'}), 'department': ('django.db.models.fields.CharField', [], {'max_length': '255'}), 'email': ('django.db.models.fields.EmailField', [], {'max_length': '254'}), 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30'}), 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30'}), 'student_id': ('django.db.models.fields.CharField', [], {'max_length': '10', 'null': 'True', 'blank': 'True'}) }, 'contacts.telephone': { 'Meta': {'object_name': 'Telephone'}, 'contact': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contacts.Contact']"}), 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), 'phone_number': ('django.db.models.fields.CharField', [], {'max_length': '24'}), 'phone_type': ('django.db.models.fields.CharField', [], {'max_length': '4'}) } } complete_apps = ['contacts']
[ "connor.bolick@gmail.com" ]
connor.bolick@gmail.com
3a3682c5e9b8b2dc53a812f7aa493f976f6a00f4
3cd3b251381dc90b1f97d74e4bd6b0e79627ec79
/subject_orm/orm_program/config.py
3e486690881a21180e66df051b92d46b4abeac37
[]
no_license
feieryouyiji/subject_share
6b134d68deb3121b230b8ce6f551916f5de90cb5
ff8bcc82b979314ee872014d3a82150ff8aca706
refs/heads/master
2020-03-21T07:45:40.074731
2018-08-16T00:05:48
2018-08-16T00:05:48
138,298,539
0
0
null
null
null
null
UTF-8
Python
false
false
124
py
db_config = { 'host': 'localhost', 'port': 3306, 'user': 'dog', 'password': '123456', 'db': 'test_orm' }
[ "799743243@qq.com" ]
799743243@qq.com
cbbc5c587d822ea7dfdc277e5b7947f4c318613c
548b7af28025956076e0cff7a0422f29a61378ce
/theano/matrix_factorization.py
feddfb2ec2326e760531258ab3f00f45c3affd8d
[]
no_license
ramesh-tr/recommendation
14caa0408e49267abaa58aef71b096a99d1c22bc
d44e0ca34eea16b23cffdc61444f04d21bc89ff3
refs/heads/master
2021-01-10T05:00:56.572307
2016-02-15T10:45:01
2016-02-15T10:45:01
51,748,363
0
0
null
null
null
null
UTF-8
Python
false
false
6,907
py
""" Matrix Factorization with Theano implementation Theano: http://deeplearning.net/software/theano/ """ import numpy as np from base import Base from load_data import load_ml_1m from evaluation_metrics import RMSE import time #import theano from theano import shared import theano.tensor as T class MatrixFactorization(Base): def __init__(self, num_user, num_item, num_feature, train, validation, **params): super(MatrixFactorization, self).__init__() self._num_user = num_user self._num_item = num_item self._num_feature = num_feature self.train_size = train.shape[0] # mean rating mean_rating = np.mean(train[:, 2]) self._mean_rating = mean_rating self.user_train = T.cast(shared( np.asarray(train[:, 0], dtype=theano.config.floatX), borrow=True), 'int32') self.item_train = T.cast(shared( np.asarray(train[:, 1], dtype=theano.config.floatX), borrow=True), 'int32') self.rating_train = shared( np.asarray(train[:, 2], dtype=theano.config.floatX), borrow=True) self.user_validation = T.cast(shared( np.asarray(validation[:, 0], dtype=theano.config.floatX), borrow=True), 'int32') self.item_validation = T.cast(shared( np.asarray(validation[:, 1], dtype=theano.config.floatX), borrow=True), 'int32') self.rating_validation = shared( np.asarray(validation[:, 2], dtype=theano.config.floatX), borrow=True) # batch size self.batch_size = int(params.get('batch_size', 100000)) # learning rate self.epsilon = float(params.get('epsilon', 100.0)) # regularization parameter (lambda) self.lam = float(params.get('lam', 0.001)) self.max_rating = params.get('max_rating') self.min_rating = params.get('min_rating') if self.max_rating: self.max_rating = float(self.max_rating) if self.min_rating: self.min_rating = float(self.min_rating) # latent variables # random generate features user_features = 0.3 * np.random.rand(num_user, num_feature) item_features = 0.3 * np.random.rand(num_item, num_feature) self._user_features = shared( value=np.asarray(user_features, dtype=theano.config.floatX), name='user_features', borrow=True) self._item_features = shared( value=np.asarray(item_features, dtype=theano.config.floatX), name='item_features', borrow=True) @property def user(self): return self._num_user @property def items(self): return self._num_item def cost(self, user_index, item_index, ratings): norm_ratings = ratings - self._mean_rating user_features = self._user_features[user_index] item_features = self._item_features[item_index] preds = T.sum(user_features * item_features, axis=1) regularization = T.sum( (item_features ** 2 + user_features ** 2)) return (T.sum((norm_ratings - preds) ** 2) + self.lam * regularization) / self.batch_size def estimate(self, iterations=50, converge=1e-4): last_rmse = None batch_num = int( np.ceil(float(self.train_size / self.batch_size))) print "batch_num =", batch_num + 1 batch = T.lscalar() user_index = T.ivector() item_index = T.ivector() # make sure the it match to floatX type in your Theano setting ratings = T.vector(dtype=theano.config.floatX) cost = self.cost(user_index, item_index, ratings) user_grad = T.grad(cost=cost, wrt=self._user_features) item_grad = T.grad(cost=cost, wrt=self._item_features) updates = [( self._user_features, self._user_features - self.epsilon * user_grad), (self._item_features, self._item_features - self.epsilon * item_grad)] # training train_func = theano.function(inputs=[batch], outputs=[], givens={ user_index: self.user_train[batch * self.batch_size: (batch + 1) * self.batch_size], item_index: self.item_train[batch * self.batch_size: (batch + 1) * self.batch_size], ratings: self.rating_train[batch * self.batch_size: ( batch + 1) * self.batch_size]}, updates=updates) for iteration in xrange(iterations): for batch_index in xrange(batch_num): train_func(batch_index) # train errors train_preds = self.predict(self.user_train, self.item_train) train_rmse = RMSE( train_preds, self.rating_train.get_value(borrow=True)) # validation errors validation_preds = self.predict( self.user_validation, self.item_validation) validation_rmse = RMSE( validation_preds, self.rating_validation.get_value(borrow=True)) self.train_errors.append(train_rmse) print "iterations: %3d, train RMSE: %.6f, validation RMSE: %.6f" % \ (iteration + 1, train_rmse, validation_rmse) # stop if converge if last_rmse: # if abs(train_rmse - last_rmse) < converge: # break pass #last_rmse = train_rmse def predict(self, user_idex, item_index): u_features = self._user_features[user_idex] i_features = self._item_features[item_index] preds = T.sum(u_features * i_features, axis=1) + self._mean_rating preds = preds.eval() if self.max_rating: preds[preds > self.max_rating] = self.max_rating if self.min_rating: preds[preds < self.min_rating] = self.min_rating return preds def suggestions(self, user_id, num=10): # TODO pass def save_model(self): # TODO pass def load_model(self): # TODO pass def example(): """simple test and performance measure """ num_user, num_item, ratings = load_ml_1m() # suffle_data np.random.shuffle(ratings) # split data to training & validation train_pct = 0.9 train_size = int(train_pct * len(ratings)) train = ratings[:train_size] validation = ratings[train_size:] # params num_feature = 10 mf_model = MatrixFactorization( num_user, num_item, num_feature, train, validation, max_rating=5, min_rating=1, batch_size=100000) start_time = time.clock() mf_model.estimate(5) end_time = time.clock() print "time spend = %.3f" % (end_time - start_time) return mf_model
[ "ramesh.ramakrishnan@oracle.com" ]
ramesh.ramakrishnan@oracle.com
3bb9929d0299ef36d04e3b8b585591779c0806ce
60f6e6314f250c1ccc0bed74bb8436bb79948734
/pycheckers/ascii.py
9c97188e8da3aedb2265546a37b9b9e75bc11e90
[]
no_license
darka/pycheckers
088bd061031b1fee2cdcba6740a0a687291c962f
99cea1c03e3ac51de0cddc14b3334ef335179231
refs/heads/master
2023-06-30T20:59:45.911721
2021-08-01T13:08:56
2021-08-01T13:08:56
315,088,711
1
0
null
null
null
null
UTF-8
Python
false
false
334
py
from pycheckers.piece import CheckerColor, CheckerLevel, CheckerPiece ASCII_SYMBOLS = { CheckerColor.RED: {CheckerLevel.MAN: "m", CheckerLevel.KING: "k"}, CheckerColor.WHITE: {CheckerLevel.MAN: "M", CheckerLevel.KING: "K"}, } def ascii_symbol(piece: CheckerPiece) -> str: return ASCII_SYMBOLS[piece.color][piece.level]
[ "darius.scerb@gmail.com" ]
darius.scerb@gmail.com
2ddc013527e286e3b9915689cdb29a47afcad47a
c4bb8335d4eb7beb78e218b1add28c26eaf6fb43
/pyFiles/7.3_Emulating_switchcase.py
c8a1c3cb14a71c4365384f20b7cbcbbfb84d94f5
[]
no_license
TimTheFiend/Python-Tricks
0e66dc748768251ba5c0a50247993ebd6001a863
a7ee9de637c29ef6a213684e6ef2d6a321ad86e7
refs/heads/master
2022-03-06T07:04:55.738362
2019-11-29T09:28:21
2019-11-29T09:28:21
217,983,973
0
0
null
null
null
null
UTF-8
Python
false
false
1,205
py
#region How store function in dictionary and how to call it """We can define a function and then store it in a list for later access:""" def myfunc(a, b): return a + b funcs = [myfunc] print(str(funcs[0])) # <function myfunc at 0x000001DF88DE2E50> print(funcs[0](2, 3)) # 5 #endregion #region Dictionary like switch/case in pseudo code # func_dict = { # 'cond_a': handle_a, # 'cond_b': # } # cond = 'cond_a' # func_dict[cond]() #endregion #region Dictionary like switch/case def dispatch_if(operator, x, y): if operator == 'add': return x + y if operator == 'sub': return x - y if operator == 'mul': return x * y if operator == 'div': return x / y def dispatch_dict(operator, x, y): """Makes more sense to have a constant dictionary, and not make one every time. """ return { 'add': lambda: x + y, 'sub': lambda: x - y, 'mul': lambda: x * y, 'div': lambda: x / y, }.get(operator, lambda: None)() print(dispatch_if('mul', 2, 8)) # 16 print(dispatch_dict('mul', 2, 8)) # 16 print(dispatch_if('mal', 2, 8)) # None print(dispatch_dict('mal', 2, 8)) # None #endregion
[ "33222649+TimTheFiend@users.noreply.github.com" ]
33222649+TimTheFiend@users.noreply.github.com
48c88cb0a7efe65d9ddffb3d21a79346bd9641b7
8bdbd36d1cef4f4a3e4b11ad2369e8e244e96df9
/modules/univention/office365/microsoft/jsonstorage.py
320840c12781af464406740bc54c076e3076b778
[]
no_license
univention/office365
2ef27b956476ee82bb14716e913a879c776d7662
fc69682c1516eb9ca83c8f18dd3a663116fc740f
refs/heads/4.4
2023-06-11T12:54:45.308943
2023-05-25T15:41:01
2023-05-25T15:41:41
154,646,994
1
2
null
2020-08-19T06:06:07
2018-10-25T09:46:31
Python
UTF-8
Python
false
false
2,496
py
# -*- coding: utf-8 -*- # # Univention Office 365 - jsonstorage # # Copyright 2016-2022 Univention GmbH # # http://www.univention.de/ # # All rights reserved. # # The source code of this program is made available # under the terms of the GNU Affero General Public License version 3 # (GNU AGPL V3) as published by the Free Software Foundation. # # Binary versions of this program provided by Univention to you as # well as other copyrighted, protected or trademarked materials like # Logos, graphics, fonts, specific documentations and configurations, # cryptographic keys etc. are subject to a license agreement between # you and Univention and not subject to the GNU AGPL V3. # # In the case you use this program under the terms of the GNU AGPL V3, # the program is provided in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public # License with the Debian GNU/Linux or Univention distribution in file # /usr/share/common-licenses/AGPL-3; if not, see # <http://www.gnu.org/licenses/>. import grp import json import logging import pwd import os from stat import S_IRUSR, S_IWUSR from typing import Dict from univention.office365.logging2udebug import get_logger uid = pwd.getpwnam("listener").pw_uid gid = grp.getgrnam("nogroup").gr_gid class JsonStorage(object): def __init__(self, filename, logger=None): # type: (str, "logging.Logger") -> None self.logger = logger or get_logger("office365", "o365") self.filename = filename def read(self): # type: () -> Dict try: with open(self.filename, "r") as fd: data = json.load(fd) except (IOError, ValueError): data = dict() if not isinstance(data, dict): self.logger.error("AzureAuth._load_data(): Expected dict in file %r, got %r.", self.filename, data) data = dict() return data def write(self, **kwargs): # type: (Dict) -> None data = self.read() data.update(kwargs) self._save(data) def purge(self): # type: () -> None self._save({}) def _save(self, data): # type: (Dict) -> None open(self.filename, "w").close() # touch # os.chmod(self.filename, S_IRUSR | S_IWUSR) # os.chown(self.filename, self.listener_uid, 0) os.chmod(self.filename, 0o700) os.chown(self.filename, uid, gid) with open(self.filename, "w") as fd: json.dump(data, fd)
[ "delgado.extern@univention.de" ]
delgado.extern@univention.de
6cef9ae7e0a2600c467a578aeb711fdf209a3328
f72c9e46af5ce5ac738693daf65e67a0962a229a
/sdk/lusid/models/fx_option.py
6f45a06959519c74da7262d99971e7531c3a0536
[ "MIT" ]
permissive
finbourne/lusid-sdk-python
db8ce602f8408169f6583783c80ebbef83c77807
32fedc00ce5a37a6fe3bd9b9962570a8a9348e48
refs/heads/master
2023-08-29T18:22:49.488811
2023-08-29T15:57:26
2023-08-29T15:57:26
125,082,278
11
11
NOASSERTION
2023-04-28T07:16:48
2018-03-13T16:31:54
Python
UTF-8
Python
false
false
28,291
py
# coding: utf-8 """ LUSID API FINBOURNE Technology # noqa: E501 The version of the OpenAPI document: 1.0.463 Contact: info@finbourne.com Generated by: https://openapi-generator.tech """ try: from inspect import getfullargspec except ImportError: from inspect import getargspec as getfullargspec import pprint import re # noqa: F401 import six from lusid.configuration import Configuration class FxOption(object): """NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech Do not edit the class manually. """ """ Attributes: openapi_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. required_map (dict): The key is attribute name and the value is whether it is 'required' or 'optional'. """ openapi_types = { 'start_date': 'datetime', 'dom_ccy': 'str', 'dom_amount': 'float', 'fgn_ccy': 'str', 'fgn_amount': 'float', 'strike': 'float', 'barriers': 'list[Barrier]', 'exercise_type': 'str', 'is_call_not_put': 'bool', 'is_delivery_not_cash': 'bool', 'is_payoff_digital': 'bool', 'option_maturity_date': 'datetime', 'option_settlement_date': 'datetime', 'payout_style': 'str', 'premium': 'Premium', 'touches': 'list[Touch]', 'instrument_type': 'str' } attribute_map = { 'start_date': 'startDate', 'dom_ccy': 'domCcy', 'dom_amount': 'domAmount', 'fgn_ccy': 'fgnCcy', 'fgn_amount': 'fgnAmount', 'strike': 'strike', 'barriers': 'barriers', 'exercise_type': 'exerciseType', 'is_call_not_put': 'isCallNotPut', 'is_delivery_not_cash': 'isDeliveryNotCash', 'is_payoff_digital': 'isPayoffDigital', 'option_maturity_date': 'optionMaturityDate', 'option_settlement_date': 'optionSettlementDate', 'payout_style': 'payoutStyle', 'premium': 'premium', 'touches': 'touches', 'instrument_type': 'instrumentType' } required_map = { 'start_date': 'required', 'dom_ccy': 'required', 'dom_amount': 'optional', 'fgn_ccy': 'required', 'fgn_amount': 'optional', 'strike': 'optional', 'barriers': 'optional', 'exercise_type': 'optional', 'is_call_not_put': 'required', 'is_delivery_not_cash': 'required', 'is_payoff_digital': 'optional', 'option_maturity_date': 'required', 'option_settlement_date': 'required', 'payout_style': 'optional', 'premium': 'optional', 'touches': 'optional', 'instrument_type': 'required' } def __init__(self, start_date=None, dom_ccy=None, dom_amount=None, fgn_ccy=None, fgn_amount=None, strike=None, barriers=None, exercise_type=None, is_call_not_put=None, is_delivery_not_cash=None, is_payoff_digital=None, option_maturity_date=None, option_settlement_date=None, payout_style=None, premium=None, touches=None, instrument_type=None, local_vars_configuration=None): # noqa: E501 """FxOption - a model defined in OpenAPI" :param start_date: The start date of the instrument. This is normally synonymous with the trade-date. (required) :type start_date: datetime :param dom_ccy: The domestic currency of the instrument. (required) :type dom_ccy: str :param dom_amount: The Amount of DomCcy that will be exchanged if the option is exercised. This amount should be a positive number, with the Call/Put flag used to indicate direction. The corresponding amount of FgnCcy that will be exchanged is this amount times the strike. Note there is no rounding performed on this computed value. This is an optional field, if not set the option ContractSize will default to 1. :type dom_amount: float :param fgn_ccy: The foreign currency of the FX. (required) :type fgn_ccy: str :param fgn_amount: For a vanilla FxOption contract, FgnAmount cannot be set. In case of a digital FxOption (IsPayoffDigital==true) a payoff (if the option is in the money) can be either in domestic or in foreign currency - for the latter FgnAmount must be set. Note: It is invalid to have FgnAmount and DomAmount at the same time. :type fgn_amount: float :param strike: The strike of the option. :type strike: float :param barriers: For a barrier option the list should not be empty. Up to two barriers are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. :type barriers: list[lusid.Barrier] :param exercise_type: Type of optionality that is present; European, American. Supported string (enumeration) values are: [European, American]. :type exercise_type: str :param is_call_not_put: True if the option is a call, false if the option is a put. (required) :type is_call_not_put: bool :param is_delivery_not_cash: True if the option delivers the FX underlying, False if the option is settled in cash. (required) :type is_delivery_not_cash: bool :param is_payoff_digital: By default IsPayoffDigital is false. If IsPayoffDigital=true, the option is 'digital', and the option payoff is 0 or 1 unit of currency, instead of a vanilla CallPayoff=max(spot-strike,0) or PutPayoff=max(strike-spot,0). :type is_payoff_digital: bool :param option_maturity_date: The maturity date of the option. (required) :type option_maturity_date: datetime :param option_settlement_date: The settlement date of the option. (required) :type option_settlement_date: datetime :param payout_style: PayoutStyle for touch options. For options without touch optionality, payoutStyle should not be set. For options with touch optionality (where the touches data has been set), payoutStyle must be defined and cannot be None. Supported string (enumeration) values are: [Deferred, Immediate]. :type payout_style: str :param premium: :type premium: lusid.Premium :param touches: For a touch option the list should not be empty. Up to two touches are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. :type touches: list[lusid.Touch] :param instrument_type: The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashFlowsLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CapFloor, CashSettled, CdsIndex, Basket, FundingLeg, FxSwap, ForwardRateAgreement, SimpleInstrument, Repo, Equity, ExchangeTradedOption, ReferenceInstrument, ComplexBond, InflationLinkedBond, InflationSwap, SimpleCashFlowLoan (required) :type instrument_type: str """ # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration.get_default_copy() self.local_vars_configuration = local_vars_configuration self._start_date = None self._dom_ccy = None self._dom_amount = None self._fgn_ccy = None self._fgn_amount = None self._strike = None self._barriers = None self._exercise_type = None self._is_call_not_put = None self._is_delivery_not_cash = None self._is_payoff_digital = None self._option_maturity_date = None self._option_settlement_date = None self._payout_style = None self._premium = None self._touches = None self._instrument_type = None self.discriminator = None self.start_date = start_date self.dom_ccy = dom_ccy self.dom_amount = dom_amount self.fgn_ccy = fgn_ccy self.fgn_amount = fgn_amount self.strike = strike self.barriers = barriers self.exercise_type = exercise_type self.is_call_not_put = is_call_not_put self.is_delivery_not_cash = is_delivery_not_cash if is_payoff_digital is not None: self.is_payoff_digital = is_payoff_digital self.option_maturity_date = option_maturity_date self.option_settlement_date = option_settlement_date self.payout_style = payout_style if premium is not None: self.premium = premium self.touches = touches self.instrument_type = instrument_type @property def start_date(self): """Gets the start_date of this FxOption. # noqa: E501 The start date of the instrument. This is normally synonymous with the trade-date. # noqa: E501 :return: The start_date of this FxOption. # noqa: E501 :rtype: datetime """ return self._start_date @start_date.setter def start_date(self, start_date): """Sets the start_date of this FxOption. The start date of the instrument. This is normally synonymous with the trade-date. # noqa: E501 :param start_date: The start_date of this FxOption. # noqa: E501 :type start_date: datetime """ if self.local_vars_configuration.client_side_validation and start_date is None: # noqa: E501 raise ValueError("Invalid value for `start_date`, must not be `None`") # noqa: E501 self._start_date = start_date @property def dom_ccy(self): """Gets the dom_ccy of this FxOption. # noqa: E501 The domestic currency of the instrument. # noqa: E501 :return: The dom_ccy of this FxOption. # noqa: E501 :rtype: str """ return self._dom_ccy @dom_ccy.setter def dom_ccy(self, dom_ccy): """Sets the dom_ccy of this FxOption. The domestic currency of the instrument. # noqa: E501 :param dom_ccy: The dom_ccy of this FxOption. # noqa: E501 :type dom_ccy: str """ if self.local_vars_configuration.client_side_validation and dom_ccy is None: # noqa: E501 raise ValueError("Invalid value for `dom_ccy`, must not be `None`") # noqa: E501 self._dom_ccy = dom_ccy @property def dom_amount(self): """Gets the dom_amount of this FxOption. # noqa: E501 The Amount of DomCcy that will be exchanged if the option is exercised. This amount should be a positive number, with the Call/Put flag used to indicate direction. The corresponding amount of FgnCcy that will be exchanged is this amount times the strike. Note there is no rounding performed on this computed value. This is an optional field, if not set the option ContractSize will default to 1. # noqa: E501 :return: The dom_amount of this FxOption. # noqa: E501 :rtype: float """ return self._dom_amount @dom_amount.setter def dom_amount(self, dom_amount): """Sets the dom_amount of this FxOption. The Amount of DomCcy that will be exchanged if the option is exercised. This amount should be a positive number, with the Call/Put flag used to indicate direction. The corresponding amount of FgnCcy that will be exchanged is this amount times the strike. Note there is no rounding performed on this computed value. This is an optional field, if not set the option ContractSize will default to 1. # noqa: E501 :param dom_amount: The dom_amount of this FxOption. # noqa: E501 :type dom_amount: float """ self._dom_amount = dom_amount @property def fgn_ccy(self): """Gets the fgn_ccy of this FxOption. # noqa: E501 The foreign currency of the FX. # noqa: E501 :return: The fgn_ccy of this FxOption. # noqa: E501 :rtype: str """ return self._fgn_ccy @fgn_ccy.setter def fgn_ccy(self, fgn_ccy): """Sets the fgn_ccy of this FxOption. The foreign currency of the FX. # noqa: E501 :param fgn_ccy: The fgn_ccy of this FxOption. # noqa: E501 :type fgn_ccy: str """ if self.local_vars_configuration.client_side_validation and fgn_ccy is None: # noqa: E501 raise ValueError("Invalid value for `fgn_ccy`, must not be `None`") # noqa: E501 self._fgn_ccy = fgn_ccy @property def fgn_amount(self): """Gets the fgn_amount of this FxOption. # noqa: E501 For a vanilla FxOption contract, FgnAmount cannot be set. In case of a digital FxOption (IsPayoffDigital==true) a payoff (if the option is in the money) can be either in domestic or in foreign currency - for the latter FgnAmount must be set. Note: It is invalid to have FgnAmount and DomAmount at the same time. # noqa: E501 :return: The fgn_amount of this FxOption. # noqa: E501 :rtype: float """ return self._fgn_amount @fgn_amount.setter def fgn_amount(self, fgn_amount): """Sets the fgn_amount of this FxOption. For a vanilla FxOption contract, FgnAmount cannot be set. In case of a digital FxOption (IsPayoffDigital==true) a payoff (if the option is in the money) can be either in domestic or in foreign currency - for the latter FgnAmount must be set. Note: It is invalid to have FgnAmount and DomAmount at the same time. # noqa: E501 :param fgn_amount: The fgn_amount of this FxOption. # noqa: E501 :type fgn_amount: float """ self._fgn_amount = fgn_amount @property def strike(self): """Gets the strike of this FxOption. # noqa: E501 The strike of the option. # noqa: E501 :return: The strike of this FxOption. # noqa: E501 :rtype: float """ return self._strike @strike.setter def strike(self, strike): """Sets the strike of this FxOption. The strike of the option. # noqa: E501 :param strike: The strike of this FxOption. # noqa: E501 :type strike: float """ self._strike = strike @property def barriers(self): """Gets the barriers of this FxOption. # noqa: E501 For a barrier option the list should not be empty. Up to two barriers are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. # noqa: E501 :return: The barriers of this FxOption. # noqa: E501 :rtype: list[lusid.Barrier] """ return self._barriers @barriers.setter def barriers(self, barriers): """Sets the barriers of this FxOption. For a barrier option the list should not be empty. Up to two barriers are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. # noqa: E501 :param barriers: The barriers of this FxOption. # noqa: E501 :type barriers: list[lusid.Barrier] """ self._barriers = barriers @property def exercise_type(self): """Gets the exercise_type of this FxOption. # noqa: E501 Type of optionality that is present; European, American. Supported string (enumeration) values are: [European, American]. # noqa: E501 :return: The exercise_type of this FxOption. # noqa: E501 :rtype: str """ return self._exercise_type @exercise_type.setter def exercise_type(self, exercise_type): """Sets the exercise_type of this FxOption. Type of optionality that is present; European, American. Supported string (enumeration) values are: [European, American]. # noqa: E501 :param exercise_type: The exercise_type of this FxOption. # noqa: E501 :type exercise_type: str """ self._exercise_type = exercise_type @property def is_call_not_put(self): """Gets the is_call_not_put of this FxOption. # noqa: E501 True if the option is a call, false if the option is a put. # noqa: E501 :return: The is_call_not_put of this FxOption. # noqa: E501 :rtype: bool """ return self._is_call_not_put @is_call_not_put.setter def is_call_not_put(self, is_call_not_put): """Sets the is_call_not_put of this FxOption. True if the option is a call, false if the option is a put. # noqa: E501 :param is_call_not_put: The is_call_not_put of this FxOption. # noqa: E501 :type is_call_not_put: bool """ if self.local_vars_configuration.client_side_validation and is_call_not_put is None: # noqa: E501 raise ValueError("Invalid value for `is_call_not_put`, must not be `None`") # noqa: E501 self._is_call_not_put = is_call_not_put @property def is_delivery_not_cash(self): """Gets the is_delivery_not_cash of this FxOption. # noqa: E501 True if the option delivers the FX underlying, False if the option is settled in cash. # noqa: E501 :return: The is_delivery_not_cash of this FxOption. # noqa: E501 :rtype: bool """ return self._is_delivery_not_cash @is_delivery_not_cash.setter def is_delivery_not_cash(self, is_delivery_not_cash): """Sets the is_delivery_not_cash of this FxOption. True if the option delivers the FX underlying, False if the option is settled in cash. # noqa: E501 :param is_delivery_not_cash: The is_delivery_not_cash of this FxOption. # noqa: E501 :type is_delivery_not_cash: bool """ if self.local_vars_configuration.client_side_validation and is_delivery_not_cash is None: # noqa: E501 raise ValueError("Invalid value for `is_delivery_not_cash`, must not be `None`") # noqa: E501 self._is_delivery_not_cash = is_delivery_not_cash @property def is_payoff_digital(self): """Gets the is_payoff_digital of this FxOption. # noqa: E501 By default IsPayoffDigital is false. If IsPayoffDigital=true, the option is 'digital', and the option payoff is 0 or 1 unit of currency, instead of a vanilla CallPayoff=max(spot-strike,0) or PutPayoff=max(strike-spot,0). # noqa: E501 :return: The is_payoff_digital of this FxOption. # noqa: E501 :rtype: bool """ return self._is_payoff_digital @is_payoff_digital.setter def is_payoff_digital(self, is_payoff_digital): """Sets the is_payoff_digital of this FxOption. By default IsPayoffDigital is false. If IsPayoffDigital=true, the option is 'digital', and the option payoff is 0 or 1 unit of currency, instead of a vanilla CallPayoff=max(spot-strike,0) or PutPayoff=max(strike-spot,0). # noqa: E501 :param is_payoff_digital: The is_payoff_digital of this FxOption. # noqa: E501 :type is_payoff_digital: bool """ self._is_payoff_digital = is_payoff_digital @property def option_maturity_date(self): """Gets the option_maturity_date of this FxOption. # noqa: E501 The maturity date of the option. # noqa: E501 :return: The option_maturity_date of this FxOption. # noqa: E501 :rtype: datetime """ return self._option_maturity_date @option_maturity_date.setter def option_maturity_date(self, option_maturity_date): """Sets the option_maturity_date of this FxOption. The maturity date of the option. # noqa: E501 :param option_maturity_date: The option_maturity_date of this FxOption. # noqa: E501 :type option_maturity_date: datetime """ if self.local_vars_configuration.client_side_validation and option_maturity_date is None: # noqa: E501 raise ValueError("Invalid value for `option_maturity_date`, must not be `None`") # noqa: E501 self._option_maturity_date = option_maturity_date @property def option_settlement_date(self): """Gets the option_settlement_date of this FxOption. # noqa: E501 The settlement date of the option. # noqa: E501 :return: The option_settlement_date of this FxOption. # noqa: E501 :rtype: datetime """ return self._option_settlement_date @option_settlement_date.setter def option_settlement_date(self, option_settlement_date): """Sets the option_settlement_date of this FxOption. The settlement date of the option. # noqa: E501 :param option_settlement_date: The option_settlement_date of this FxOption. # noqa: E501 :type option_settlement_date: datetime """ if self.local_vars_configuration.client_side_validation and option_settlement_date is None: # noqa: E501 raise ValueError("Invalid value for `option_settlement_date`, must not be `None`") # noqa: E501 self._option_settlement_date = option_settlement_date @property def payout_style(self): """Gets the payout_style of this FxOption. # noqa: E501 PayoutStyle for touch options. For options without touch optionality, payoutStyle should not be set. For options with touch optionality (where the touches data has been set), payoutStyle must be defined and cannot be None. Supported string (enumeration) values are: [Deferred, Immediate]. # noqa: E501 :return: The payout_style of this FxOption. # noqa: E501 :rtype: str """ return self._payout_style @payout_style.setter def payout_style(self, payout_style): """Sets the payout_style of this FxOption. PayoutStyle for touch options. For options without touch optionality, payoutStyle should not be set. For options with touch optionality (where the touches data has been set), payoutStyle must be defined and cannot be None. Supported string (enumeration) values are: [Deferred, Immediate]. # noqa: E501 :param payout_style: The payout_style of this FxOption. # noqa: E501 :type payout_style: str """ self._payout_style = payout_style @property def premium(self): """Gets the premium of this FxOption. # noqa: E501 :return: The premium of this FxOption. # noqa: E501 :rtype: lusid.Premium """ return self._premium @premium.setter def premium(self, premium): """Sets the premium of this FxOption. :param premium: The premium of this FxOption. # noqa: E501 :type premium: lusid.Premium """ self._premium = premium @property def touches(self): """Gets the touches of this FxOption. # noqa: E501 For a touch option the list should not be empty. Up to two touches are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. # noqa: E501 :return: The touches of this FxOption. # noqa: E501 :rtype: list[lusid.Touch] """ return self._touches @touches.setter def touches(self, touches): """Sets the touches of this FxOption. For a touch option the list should not be empty. Up to two touches are supported. An option cannot be at the same time barrier- and touch-option. One (or both) of the lists must be empty. # noqa: E501 :param touches: The touches of this FxOption. # noqa: E501 :type touches: list[lusid.Touch] """ self._touches = touches @property def instrument_type(self): """Gets the instrument_type of this FxOption. # noqa: E501 The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashFlowsLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CapFloor, CashSettled, CdsIndex, Basket, FundingLeg, FxSwap, ForwardRateAgreement, SimpleInstrument, Repo, Equity, ExchangeTradedOption, ReferenceInstrument, ComplexBond, InflationLinkedBond, InflationSwap, SimpleCashFlowLoan # noqa: E501 :return: The instrument_type of this FxOption. # noqa: E501 :rtype: str """ return self._instrument_type @instrument_type.setter def instrument_type(self, instrument_type): """Sets the instrument_type of this FxOption. The available values are: QuotedSecurity, InterestRateSwap, FxForward, Future, ExoticInstrument, FxOption, CreditDefaultSwap, InterestRateSwaption, Bond, EquityOption, FixedLeg, FloatingLeg, BespokeCashFlowsLeg, Unknown, TermDeposit, ContractForDifference, EquitySwap, CashPerpetual, CapFloor, CashSettled, CdsIndex, Basket, FundingLeg, FxSwap, ForwardRateAgreement, SimpleInstrument, Repo, Equity, ExchangeTradedOption, ReferenceInstrument, ComplexBond, InflationLinkedBond, InflationSwap, SimpleCashFlowLoan # noqa: E501 :param instrument_type: The instrument_type of this FxOption. # noqa: E501 :type instrument_type: str """ if self.local_vars_configuration.client_side_validation and instrument_type is None: # noqa: E501 raise ValueError("Invalid value for `instrument_type`, must not be `None`") # noqa: E501 allowed_values = ["QuotedSecurity", "InterestRateSwap", "FxForward", "Future", "ExoticInstrument", "FxOption", "CreditDefaultSwap", "InterestRateSwaption", "Bond", "EquityOption", "FixedLeg", "FloatingLeg", "BespokeCashFlowsLeg", "Unknown", "TermDeposit", "ContractForDifference", "EquitySwap", "CashPerpetual", "CapFloor", "CashSettled", "CdsIndex", "Basket", "FundingLeg", "FxSwap", "ForwardRateAgreement", "SimpleInstrument", "Repo", "Equity", "ExchangeTradedOption", "ReferenceInstrument", "ComplexBond", "InflationLinkedBond", "InflationSwap", "SimpleCashFlowLoan"] # noqa: E501 if self.local_vars_configuration.client_side_validation and instrument_type not in allowed_values: # noqa: E501 raise ValueError( "Invalid value for `instrument_type` ({0}), must be one of {1}" # noqa: E501 .format(instrument_type, allowed_values) ) self._instrument_type = instrument_type def to_dict(self, serialize=False): """Returns the model properties as a dict""" result = {} def convert(x): if hasattr(x, "to_dict"): args = getfullargspec(x.to_dict).args if len(args) == 1: return x.to_dict() else: return x.to_dict(serialize) else: return x for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) attr = self.attribute_map.get(attr, attr) if serialize else attr if isinstance(value, list): result[attr] = list(map( lambda x: convert(x), value )) elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], convert(item[1])), value.items() )) else: result[attr] = convert(value) return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, FxOption): return False return self.to_dict() == other.to_dict() def __ne__(self, other): """Returns true if both objects are not equal""" if not isinstance(other, FxOption): return True return self.to_dict() != other.to_dict()
[ "concourse@finbourne.com" ]
concourse@finbourne.com
612a1943b2e44d5c298c6f1cc9756958d649bcfc
3fa6edd22b4c826431d2b55d1aced446bf2755ac
/tests/blockchain/test_blockchain_transactions.py
24838b3476029cfdc5243ac3ac25c6cbd7291240
[ "Apache-2.0" ]
permissive
luzofex/plottingid-blockchain-1
f3bca87316e93466b7512039f2c588a9baadd4a7
d8a6bdfeb4474b4075e89c129853a606f55dd778
refs/heads/main
2023-06-11T12:32:36.690472
2021-07-06T19:23:19
2021-07-06T19:23:19
null
0
0
null
null
null
null
UTF-8
Python
false
false
40,394
py
import asyncio import logging import pytest from clvm.casts import int_to_bytes from plottingid.consensus.blockchain import ReceiveBlockResult from plottingid.protocols import full_node_protocol from plottingid.types.announcement import Announcement from plottingid.types.condition_opcodes import ConditionOpcode from plottingid.types.condition_with_args import ConditionWithArgs from plottingid.types.spend_bundle import SpendBundle from plottingid.util.errors import ConsensusError, Err from plottingid.util.ints import uint64 from plottingid.util.wallet_tools import WalletTool from tests.core.full_node.test_full_node import connect_and_get_peer from tests.setup_nodes import bt, setup_two_nodes, test_constants from tests.util.generator_tools_testing import run_and_get_removals_and_additions BURN_PUZZLE_HASH = b"0" * 32 WALLET_A = WalletTool(test_constants) WALLET_A_PUZZLE_HASHES = [WALLET_A.get_new_puzzlehash() for _ in range(5)] log = logging.getLogger(__name__) @pytest.fixture(scope="session") def event_loop(): loop = asyncio.get_event_loop() yield loop class TestBlockchainTransactions: @pytest.fixture(scope="function") async def two_nodes(self): async for _ in setup_two_nodes(test_constants): yield _ @pytest.mark.asyncio async def test_basic_blockchain_tx(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes peer = await connect_and_get_peer(server_1, server_2) full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block), None) spend_block = blocks[2] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin) assert spend_bundle is not None tx: full_node_protocol.RespondTransaction = full_node_protocol.RespondTransaction(spend_bundle) await full_node_api_1.respond_transaction(tx, peer) sb = full_node_1.mempool_manager.get_spendbundle(spend_bundle.name()) assert sb is spend_bundle last_block = blocks[-1] next_spendbundle, additions, removals = await full_node_1.mempool_manager.create_bundle_from_mempool( last_block.header_hash ) assert next_spendbundle is not None new_blocks = bt.get_consecutive_blocks( 1, block_list_input=blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=next_spendbundle, guarantee_transaction_block=True, ) next_block = new_blocks[-1] await full_node_1.respond_block(full_node_protocol.RespondBlock(next_block)) assert next_block.header_hash == full_node_1.blockchain.get_peak().header_hash added_coins = next_spendbundle.additions() # Two coins are added, main spend and change assert len(added_coins) == 2 for coin in added_coins: unspent = await full_node_1.coin_store.get_coin_record(coin.name()) assert unspent is not None assert not unspent.spent assert not unspent.coinbase @pytest.mark.asyncio async def test_validate_blockchain_with_double_spend(self, two_nodes): num_blocks = 5 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_3, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = blocks[2] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin) spend_bundle_double = wallet_a.generate_signed_transaction(1001, receiver_puzzlehash, spend_coin) block_spendbundle = SpendBundle.aggregate([spend_bundle, spend_bundle_double]) new_blocks = bt.get_consecutive_blocks( 1, block_list_input=blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block_spendbundle, guarantee_transaction_block=True, ) next_block = new_blocks[-1] res, err, _ = await full_node_1.blockchain.receive_block(next_block) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.DOUBLE_SPEND @pytest.mark.asyncio async def test_validate_blockchain_duplicate_output(self, two_nodes): num_blocks = 3 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = blocks[2] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin) spend_bundle_double = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin) block_spendbundle = SpendBundle.aggregate([spend_bundle, spend_bundle_double]) new_blocks = bt.get_consecutive_blocks( 1, block_list_input=blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block_spendbundle, guarantee_transaction_block=True, ) next_block = new_blocks[-1] res, err, _ = await full_node_1.blockchain.receive_block(next_block) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.DUPLICATE_OUTPUT @pytest.mark.asyncio async def test_validate_blockchain_with_reorg_double_spend(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = blocks[2] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin) blocks_spend = bt.get_consecutive_blocks( 1, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, ) # Move chain to height 10, with a spend at height 10 for block in blocks_spend: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Reorg at height 5, add up to and including height 12 new_blocks = bt.get_consecutive_blocks( 7, blocks[:6], farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, seed=b"another seed", ) for block in new_blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Spend the same coin in the new reorg chain at height 13 new_blocks = bt.get_consecutive_blocks( 1, new_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, ) res, err, _ = await full_node_api_1.full_node.blockchain.receive_block(new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK # But can't spend it twice new_blocks_double = bt.get_consecutive_blocks( 1, new_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, ) res, err, _ = await full_node_api_1.full_node.blockchain.receive_block(new_blocks_double[-1]) assert err is Err.DOUBLE_SPEND assert res == ReceiveBlockResult.INVALID_BLOCK # Now test Reorg at block 5, same spend at block height 12 new_blocks_reorg = bt.get_consecutive_blocks( 1, new_blocks[:12], farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, seed=b"spend at 12 is ok", ) for block in new_blocks_reorg: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Spend at height 13 is also OK (same height) new_blocks_reorg = bt.get_consecutive_blocks( 1, new_blocks[:13], farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, seed=b"spend at 13 is ok", ) for block in new_blocks_reorg: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Spend at height 14 is not OK (already spend) new_blocks_reorg = bt.get_consecutive_blocks( 1, new_blocks[:14], farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, transaction_data=spend_bundle, seed=b"spend at 14 is double spend", ) with pytest.raises(ConsensusError): for block in new_blocks_reorg: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) @pytest.mark.asyncio async def test_validate_blockchain_spend_reorg_coin(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_1_puzzlehash = WALLET_A_PUZZLE_HASHES[1] receiver_2_puzzlehash = WALLET_A_PUZZLE_HASHES[2] receiver_3_puzzlehash = WALLET_A_PUZZLE_HASHES[3] blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = blocks[2] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_1_puzzlehash, spend_coin) new_blocks = bt.get_consecutive_blocks( 1, blocks[:5], seed=b"spend_reorg_coin", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle, guarantee_transaction_block=True, ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) coin_2 = None for coin in run_and_get_removals_and_additions(new_blocks[-1], test_constants.MAX_BLOCK_COST_CLVM)[1]: if coin.puzzle_hash == receiver_1_puzzlehash: coin_2 = coin break assert coin_2 is not None spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_2_puzzlehash, coin_2) new_blocks = bt.get_consecutive_blocks( 1, new_blocks[:6], seed=b"spend_reorg_coin", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle, guarantee_transaction_block=True, ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) coin_3 = None for coin in run_and_get_removals_and_additions(new_blocks[-1], test_constants.MAX_BLOCK_COST_CLVM)[1]: if coin.puzzle_hash == receiver_2_puzzlehash: coin_3 = coin break assert coin_3 is not None spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_3_puzzlehash, coin_3) new_blocks = bt.get_consecutive_blocks( 1, new_blocks[:7], seed=b"spend_reorg_coin", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle, guarantee_transaction_block=True, ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) @pytest.mark.asyncio async def test_validate_blockchain_spend_reorg_cb_coin(self, two_nodes): num_blocks = 15 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_1_puzzlehash = WALLET_A_PUZZLE_HASHES[1] blocks = bt.get_consecutive_blocks(num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Spends a coinbase created in reorg new_blocks = bt.get_consecutive_blocks( 5, blocks[:6], seed=b"reorg cb coin", farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, ) for block in new_blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = new_blocks[-1] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_1_puzzlehash, spend_coin) new_blocks = bt.get_consecutive_blocks( 1, new_blocks, seed=b"reorg cb coin", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle, guarantee_transaction_block=True, ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) @pytest.mark.asyncio async def test_validate_blockchain_spend_reorg_since_genesis(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_1_puzzlehash = WALLET_A_PUZZLE_HASHES[1] blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) spend_block = blocks[-1] spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_1_puzzlehash, spend_coin) new_blocks = bt.get_consecutive_blocks( 1, blocks, seed=b"", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) # Spends a coin in a genesis reorg, that was already spent new_blocks = bt.get_consecutive_blocks( 12, [], seed=b"reorg since genesis", farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, ) for block in new_blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) new_blocks = bt.get_consecutive_blocks( 1, new_blocks, seed=b"reorg since genesis", farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=spend_bundle, ) await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(new_blocks[-1])) @pytest.mark.asyncio async def test_assert_my_coin_id(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent spend_block = blocks[2] bad_block = blocks[3] spend_coin = None bad_spend_coin = None for coin in list(spend_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin = coin for coin in list(bad_block.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: bad_spend_coin = coin valid_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_MY_COIN_ID, [spend_coin.name()]) valid_dic = {valid_cvp.opcode: [valid_cvp]} bad_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_MY_COIN_ID, [bad_spend_coin.name()]) bad_dic = {bad_cvp.opcode: [bad_cvp]} bad_spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin, bad_dic) valid_spend_bundle = wallet_a.generate_signed_transaction(1000, receiver_puzzlehash, spend_coin, valid_dic) assert bad_spend_bundle is not None assert valid_spend_bundle is not None # Invalid block bundle # Create another block that includes our transaction invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=bad_spend_bundle, guarantee_transaction_block=True, ) # Try to validate that block res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_MY_COIN_ID_FAILED # Valid block bundle # Create another block that includes our transaction new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=valid_spend_bundle, guarantee_transaction_block=True, ) res, err, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert res == ReceiveBlockResult.NEW_PEAK assert err is None @pytest.mark.asyncio async def test_assert_coin_announcement_consumed(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] block2 = blocks[3] spend_coin_block_1 = None spend_coin_block_2 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin for coin in list(block2.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_2 = coin # This condition requires block2 coinbase to be spent block1_cvp = ConditionWithArgs( ConditionOpcode.ASSERT_COIN_ANNOUNCEMENT, [Announcement(spend_coin_block_2.name(), b"test").name()], ) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # This condition requires block1 coinbase to be spent block2_cvp = ConditionWithArgs( ConditionOpcode.CREATE_COIN_ANNOUNCEMENT, [b"test"], ) block2_dic = {block2_cvp.opcode: [block2_cvp]} block2_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_2, block2_dic ) # Invalid block bundle assert block1_spend_bundle is not None # Create another block that includes our transaction invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) # Try to validate that block res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_ANNOUNCE_CONSUMED_FAILED # bundle_together contains both transactions bundle_together = SpendBundle.aggregate([block1_spend_bundle, block2_spend_bundle]) # Create another block that includes our transaction new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=bundle_together, guarantee_transaction_block=True, ) # Try to validate newly created block res, err, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert res == ReceiveBlockResult.NEW_PEAK assert err is None @pytest.mark.asyncio async def test_assert_puzzle_announcement_consumed(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] block2 = blocks[3] spend_coin_block_1 = None spend_coin_block_2 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin for coin in list(block2.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_2 = coin # This condition requires block2 coinbase to be spent block1_cvp = ConditionWithArgs( ConditionOpcode.ASSERT_PUZZLE_ANNOUNCEMENT, [Announcement(spend_coin_block_2.puzzle_hash, b"test").name()], ) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # This condition requires block1 coinbase to be spent block2_cvp = ConditionWithArgs( ConditionOpcode.CREATE_PUZZLE_ANNOUNCEMENT, [b"test"], ) block2_dic = {block2_cvp.opcode: [block2_cvp]} block2_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_2, block2_dic ) # Invalid block bundle assert block1_spend_bundle is not None # Create another block that includes our transaction invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) # Try to validate that block res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_ANNOUNCE_CONSUMED_FAILED # bundle_together contains both transactions bundle_together = SpendBundle.aggregate([block1_spend_bundle, block2_spend_bundle]) # Create another block that includes our transaction new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=bundle_together, guarantee_transaction_block=True, ) # Try to validate newly created block res, err, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert res == ReceiveBlockResult.NEW_PEAK assert err is None @pytest.mark.asyncio async def test_assert_height_absolute(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] spend_coin_block_1 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin # This condition requires block1 coinbase to be spent after index 10 block1_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_HEIGHT_ABSOLUTE, [int_to_bytes(10)]) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # program that will be sent too early assert block1_spend_bundle is not None invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) # Try to validate that block at index 10 res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_HEIGHT_ABSOLUTE_FAILED new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, ) res, _, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert res == ReceiveBlockResult.NEW_PEAK # At index 11, it can be spent new_blocks = bt.get_consecutive_blocks( 1, new_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) res, err, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK @pytest.mark.asyncio async def test_assert_height_relative(self, two_nodes): num_blocks = 11 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] spend_coin_block_1 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin # This condition requires block1 coinbase to be spent after index 11 # This condition requires block1 coinbase to be spent more than 10 block after it was farmed # block index has to be greater than (2 + 9 = 11) block1_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_HEIGHT_RELATIVE, [int_to_bytes(9)]) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # program that will be sent too early assert block1_spend_bundle is not None invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) # Try to validate that block at index 11 res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_HEIGHT_RELATIVE_FAILED new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True, ) res, _, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert res == ReceiveBlockResult.NEW_PEAK # At index 12, it can be spent new_blocks = bt.get_consecutive_blocks( 1, new_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, ) res, err, _ = await full_node_1.blockchain.receive_block(new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK @pytest.mark.asyncio async def test_assert_seconds_relative(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] spend_coin_block_1 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin # This condition requires block1 coinbase to be spent 300 seconds after coin creation block1_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_SECONDS_RELATIVE, [int_to_bytes(300)]) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # program that will be sent to early assert block1_spend_bundle is not None invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, time_per_block=20, guarantee_transaction_block=True, ) # Try to validate that block before 300 sec res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_SECONDS_RELATIVE_FAILED valid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, time_per_block=301, ) res, err, _ = await full_node_1.blockchain.receive_block(valid_new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK @pytest.mark.asyncio async def test_assert_seconds_absolute(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] spend_coin_block_1 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin # This condition requires block1 coinbase to be spent after 30 seconds from now current_time_plus3 = uint64(blocks[-1].foliage_transaction_block.timestamp + 30) block1_cvp = ConditionWithArgs(ConditionOpcode.ASSERT_SECONDS_ABSOLUTE, [int_to_bytes(current_time_plus3)]) block1_dic = {block1_cvp.opcode: [block1_cvp]} block1_spend_bundle = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic ) # program that will be sent to early assert block1_spend_bundle is not None invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, time_per_block=20, guarantee_transaction_block=True, ) # Try to validate that block before 30 sec res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.ASSERT_SECONDS_ABSOLUTE_FAILED valid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle, guarantee_transaction_block=True, time_per_block=31, ) res, err, _ = await full_node_1.blockchain.receive_block(valid_new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK @pytest.mark.asyncio async def test_assert_fee_condition(self, two_nodes): num_blocks = 10 wallet_a = WALLET_A coinbase_puzzlehash = WALLET_A_PUZZLE_HASHES[0] receiver_puzzlehash = BURN_PUZZLE_HASH # Farm blocks blocks = bt.get_consecutive_blocks( num_blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, guarantee_transaction_block=True ) full_node_api_1, full_node_api_2, server_1, server_2 = two_nodes full_node_1 = full_node_api_1.full_node for block in blocks: await full_node_api_1.full_node.respond_block(full_node_protocol.RespondBlock(block)) # Coinbase that gets spent block1 = blocks[2] spend_coin_block_1 = None for coin in list(block1.get_included_reward_coins()): if coin.puzzle_hash == coinbase_puzzlehash: spend_coin_block_1 = coin # This condition requires fee to be 10 mojo cvp_fee = ConditionWithArgs(ConditionOpcode.RESERVE_FEE, [int_to_bytes(10)]) # This spend bundle has 9 mojo as fee block1_dic_bad = {cvp_fee.opcode: [cvp_fee]} block1_dic_good = {cvp_fee.opcode: [cvp_fee]} block1_spend_bundle_bad = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic_bad, fee=9 ) block1_spend_bundle_good = wallet_a.generate_signed_transaction( 1000, receiver_puzzlehash, spend_coin_block_1, block1_dic_good, fee=10 ) log.warning(block1_spend_bundle_good.additions()) log.warning(f"Spend bundle fees: {block1_spend_bundle_good.fees()}") invalid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle_bad, guarantee_transaction_block=True, ) res, err, _ = await full_node_1.blockchain.receive_block(invalid_new_blocks[-1]) assert res == ReceiveBlockResult.INVALID_BLOCK assert err == Err.RESERVE_FEE_CONDITION_FAILED valid_new_blocks = bt.get_consecutive_blocks( 1, blocks, farmer_reward_puzzle_hash=coinbase_puzzlehash, transaction_data=block1_spend_bundle_good, guarantee_transaction_block=True, ) res, err, _ = await full_node_1.blockchain.receive_block(valid_new_blocks[-1]) assert err is None assert res == ReceiveBlockResult.NEW_PEAK
[ "cengndupak@gmail.com" ]
cengndupak@gmail.com
fe08790f0a1ce9cb7efb4031c9bbf11adbbfcec9
6efdee46507c2f2d05e4986c963f189a1e754e9b
/ex15.py
048204e2129b9aea9b9230e4d635d3eca03a682d
[]
no_license
SachinPitale/Python
b0d2d08f6f12bdce8a30ba9e9c370d3415721168
6889527b4b04e394feedcd6516e0298cccb6c5ee
refs/heads/master
2020-07-26T05:59:46.325528
2019-09-15T07:26:24
2019-09-15T07:26:24
208,557,473
0
0
null
null
null
null
UTF-8
Python
false
false
246
py
from sys import argv script, filename = argv txt = open(filename) print "Here's your file %r :" %filename print txt.read() print "type the file name again " file_again = raw_input("> ") txt_again = open(file_again) print txt_again.read()
[ "sachinpitale22@gmail.com" ]
sachinpitale22@gmail.com
115cb5c22fa3171edd5d632980ac1d4012d05ea5
72d7c54e0de5793acf97ea457c43e48c5cf903eb
/src/model/train_model.py
2e4272f9a7abd166a4eb378fe98e4fbf7f877976
[ "MIT" ]
permissive
lucashsg77/CIFAR-10_keras_CNN_model
59cf0e12d6a9648ab9c92a79a304c4c762d53170
4190f5941dcd490d7ea833d44eb415841370e190
refs/heads/main
2023-03-19T20:59:26.228680
2021-03-01T03:57:17
2021-03-01T03:57:17
342,723,821
0
0
null
null
null
null
UTF-8
Python
false
false
3,187
py
from tensorflow.keras.datasets import cifar10 from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Conv2D,MaxPool2D,Dense,Flatten,Dropout,Input, AveragePooling2D, Activation,Conv2D, MaxPooling2D, BatchNormalization,Concatenate from tensorflow.keras.callbacks import EarlyStopping, TensorBoard from tensorflow.keras import regularizers, optimizers from tensorflow.keras.preprocessing.image import ImageDataGenerator from tensorflow.keras.utils import to_categorical # the cifar-10 dataset has 32x32 images from 10 differente classes with 6000 images per class, giving us 50k for training and 10k for validation (x_train, y_train), (x_test, y_test) = cifar10.load_data() # normalizing the data x_train = x_train / 255 x_test = x_test / 255 # since we have no ordinary relationship between the classes we need to encode some of the data so we don't get unexpected results y_train_cat = to_categorical(y_train, 10) y_test_cat = to_categorical(y_test, 10) model = Sequential() model.add(Conv2D(32, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same', input_shape = (32, 32, 3))) model.add(BatchNormalization()) model.add(Conv2D(32, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same')) model.add(BatchNormalization()) model.add(MaxPool2D((2, 2))) model.add(Dropout(0.2)) model.add(Conv2D(64, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same')) model.add(BatchNormalization()) model.add(Conv2D(64, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same')) model.add(BatchNormalization()) model.add(MaxPool2D((2, 2))) model.add(Dropout(0.3)) model.add(Conv2D(128, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same')) model.add(BatchNormalization()) model.add(Conv2D(128, (3, 3), activation = 'relu', kernel_initializer = 'he_uniform', padding = 'same')) model.add(BatchNormalization()) model.add(MaxPool2D((2, 2))) model.add(Dropout(0.4)) model.add(Flatten()) model.add(Dense(128, activation = 'relu', kernel_initializer = 'he_uniform')) model.add(BatchNormalization()) model.add(Dropout(0.5)) # we use softmax because we are working with 10 different classes model.add(Dense(10, activation = 'softmax')) model.compile(optimizer = 'adam', loss = 'categorical_crossentropy', metrics = ['accuracy']) # since we needed more images because the previous models were overfitting I'm using keras to flip and shift the image a little bit # so we can have more data for the training ImgDataGen = ImageDataGenerator(width_shift_range = 0.2, height_shift_range = 0.2, horizontal_flip = True, rotation_range = 20) it_train = ImgDataGen.flow(x_train, y_train_cat) steps = int(x_train.shape[0] / 64) #gives us a summary of the model layers, trainable and non-trainable parameters as well as the total parameters model.summary() history = model.fit(it_train, epochs = 55, steps_per_epoch = steps, validation_data = (x_test, y_test_cat)) # prints the final acc of the model evaluation = model.evaluate(x_test, y_test_cat) print('Final accuracy: {}'.format(evaluation[1])) model_name = "cifar-10_model.h5" model.save(model_name)
[ "57928235+lucashsg77@users.noreply.github.com" ]
57928235+lucashsg77@users.noreply.github.com
59aa3074789e5ffda3af89a78300566f1fd5fb91
fb39bd3505d6f129cbc5a823fd0f221ca645ad90
/DAYS_001-010/Day - 003/Exercises/day-3-4-exercise.py
4f64c811f7b0f42d5bdf60fb9a8e1ea60efc61d0
[]
no_license
IacovColisnicenco/100-Days-Of-Code
53c4038b3616d1313ae9ef17cd9e5b2abd910020
5ef420be9f1039018ae2763285a2564f9bca23fc
refs/heads/master
2023-07-10T04:46:38.818348
2021-08-21T13:57:35
2021-08-21T13:57:35
null
0
0
null
null
null
null
UTF-8
Python
false
false
801
py
print("Welcome to the Roller Coaster Ride !!! \n") height = int(input("What is your height in CM : ")) bill = 0 if height >= 120: print("You can Ride Roller Coaster...") age = int(input("What is your Age ? ")) if age < 12: bill = 5 print("Child Tickets are ₹5.") elif age <= 18: bill = 7 print("Youth Tickets are ₹7.") elif 45 <= age <= 55: print("Your Ticket is Free..") else: bill = 12 print("Adult Tickets are ₹12.") want_photos = input("Do you want to take Photos? Y or N : ") if want_photos == "Y": bill += 3 print(f"Your final Ticket Bill is ₹{bill}") else: print("Sorry, You have to grow taller before you can Ride Roller Coaster.. \nHave A Good Day... \nThank You....")
[ "sahasubhajitias59@gmail.com" ]
sahasubhajitias59@gmail.com
121add35cc229a0a92e06d677ca8d13f14203b26
e54c24d0c1ef77e7c6d39e0c579e641a3fe4747b
/stroy/pipelines.py
765bea5e17475c3c9ed7b0c5a039ce770f1fe30e
[]
no_license
msp233/story
a126f72214a61cd05a53c92da0f8010244713572
4fb52e96a5c3fcb4b92aa4804bd3b34abb09e6e5
refs/heads/master
2021-08-24T10:41:00.974907
2017-12-09T08:23:54
2017-12-09T08:23:54
113,455,001
0
0
null
null
null
null
UTF-8
Python
false
false
1,168
py
# -*- coding: utf-8 -*- # Define your item pipelines here # # Don't forget to add your pipeline to the ITEM_PIPELINES setting # See: http://doc.scrapy.org/en/latest/topics/item-pipeline.html from twisted.enterprise import adbapi import MySQLdb import MySQLdb.cursors from scrapy.crawler import Settings as Settings class StroyPipeline(object): def __init__(self): dbargs = dict( host = '127.0.0.1' , db = 'cms', user = 'root', #replace with you user name passwd = '123456', # replace with you password charset = 'utf8', cursorclass = MySQLdb.cursors.DictCursor, use_unicode = True, ) self.dbpool = adbapi.ConnectionPool('MySQLdb',**dbargs) def process_item(self, item,spider): res = self.dbpool.runInteraction(self.insert_into_table,item) return item def insert_into_table(self,conn,item): conn.execute('insert into articles(subject,content,link,cid,addtime,aid) values(%s,%s,%s,%s,%s,%s)', (item['title'],item['content'],item['link'],item['cid'],item['addtime'],item['aid']))
[ "937207392@qq.com" ]
937207392@qq.com
28550cd5ee495e649de93ef976fe0eff54728adb
a8c2246bc3d68f06175cfae843976dc1d2a0c7a0
/polls/migrations/0001_initial.py
e2e8fbbfebe0c99b37cc8ab257261c306c10b840
[]
no_license
PacoBahena/djangovotaciones
b56741ab3b42f44472d41f17dcad575386528832
bf727e837ef099e5df2ccad28a2d15e1e6162e5e
refs/heads/master
2021-01-11T23:22:52.960003
2017-01-20T06:38:29
2017-01-20T06:38:29
78,574,144
0
0
null
null
null
null
UTF-8
Python
false
false
1,230
py
# -*- coding: utf-8 -*- # Generated by Django 1.10.5 on 2017-01-08 23:32 from __future__ import unicode_literals from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Choice', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('choice_text', models.CharField(max_length=200)), ('votes', models.IntegerField(default=0)), ], ), migrations.CreateModel( name='Question', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('question_text', models.CharField(max_length=200)), ('pub_date', models.DateTimeField(verbose_name='date published')), ], ), migrations.AddField( model_name='choice', name='question', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='polls.Question'), ), ]
[ "pbahena72@gmail.com" ]
pbahena72@gmail.com
cd6c1dc9afe5512f1c67d8b3cdc41a75dd85e0d9
316ef315980e2329c0b0da72b50f1c35f276b21a
/googlenet_model/DownloadModel.py
08d82139bb90ab86b7f90f2f60a007d26fdfbb03
[]
no_license
JaggerYoung/Gesture_feature_lstm
7b83d4208e085898bf62929c0e39fa5c411be96f
5538c22521d69e6d9484ef8a62a6e9ef2b2c1a52
refs/heads/master
2021-01-09T06:00:21.065528
2017-02-10T07:49:43
2017-02-10T07:49:43
80,887,611
4
1
null
null
null
null
UTF-8
Python
false
false
97
py
wget http://data.dmlc.ml/mxnet/models/imagenet/inception-v3.tar.gz tar -zxvf inception-v3.tar.gz
[ "854659608@qq.com" ]
854659608@qq.com
398d8e76ef2fe6964a65decd82b98aa723453cac
0c5840c41baf4f0ad6306efab80499f4037ad905
/MysqlDataDriven/DatabaseInit.py
b2d86e8ee100488e7a05d9fcaf9ef4acad837f49
[]
no_license
Li-Guo-Fang/Auto_Design_PO
b89989660098ac3a3aadcfc0d425b11992dd5d27
8c7de33a7d1189c0c7be3ea923efee6c188acef5
refs/heads/main
2023-03-17T09:55:09.207732
2021-03-07T15:09:49
2021-03-07T15:09:49
259,357,811
0
0
null
null
null
null
UTF-8
Python
false
false
2,327
py
import pymysql from MysqlDataDriven.Sql import * class DataBaseInit(object): def __init__(self, host, port, dbName, username, password, charset): self.host = host self.port = port self.db = dbName self.user = username self.passwd = password self.charset = charset def create(self): try: conn = pymysql.connect( host = self.host, port = self.port, user = self.user, passwd = self.passwd, charset = self.charset ) cur = conn.cursor() cur.execute(create_database) conn.select_db("test") cur.execute(drop_table_if_exist_sql) cur.execute(create_table) except pymysql.Error as e: raise e else: cur.close() conn.commit() conn.close() print (u"创建数据库及表成功") #插入数据 def insertDatas(self): try: conn = pymysql.connect( host = self.host, port = self.port, db = self.db, user = self.user, passwd = self.passwd, charset = self.charset ) cur = conn.cursor() #插入数据语句 sql = "insert into test_case(bookname, author) values(%s, %s);" res = cur.executemany(sql, [('Selenium WebDriver实战宝典', '吴晓华'), ('HTTP权威指南', '古尔利'), ('探索式软件测试', '惠特克'), ('暗时间', '刘未鹏')]) except pymysql.Error as e: raise e else: conn.commit() print (u"初始数据插入成功") cur.execute("select * from test_case;") for i in cur.fetchall(): print (i[1], i[2]) cur.close() conn.close() if __name__ == '__main__': db = DataBaseInit( host="localhost", port=3306, dbName="test", username="root", password="123456", charset="utf8" ) db.create() db.insertDatas() print (u"数据库初始化结束")
[ "18301991450@163.com" ]
18301991450@163.com
00e2e61740c9928d57632befab111a3901457624
ff2e7b01096bffaef341585a2ba39addb24ca667
/Buzznauts/app/prepare_submission.py
bbf8015c96e274a88a1e4c27920a313e0741ef25
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
eduardojdiniz/Buzznauts
5a1f55bc5d27b343fde7ff5618356bea1f728c54
8ac242a8d5309b4090a0f0b148ec275cac762bc0
refs/heads/master
2023-07-09T03:18:16.080419
2021-08-19T17:42:36
2021-08-19T17:42:36
392,039,524
2
0
null
null
null
null
UTF-8
Python
false
false
3,918
py
#!/usr/bin/env python # coding=utf-8 import numpy as np import os import os.path as op import argparse import zipfile from Buzznauts.utils import save_dict def prepare_results(results_dir, submission_dir=None, track="full_track"): if track == 'full_track': ROIs = ['WB'] else: ROIs = ['LOC','FFA','STS','EBA','PPA','V1','V2','V3','V4'] if submission_dir is None: submission_dir = op.join(results_dir, track) else: submission_dir = op.join(submission_dir, track) num_subs = 10 subs=[] for s in range(num_subs): subs.append('sub' + str(s+1).zfill(2)) results = {} for ROI in ROIs: ROI_results = {} for sub in subs: ROI_result_file = op.join(results_dir, track, sub, ROI + "_test.npy") if not op.exists(ROI_result_file): print("----------- Warning : submission not ready -----------") print("Result not found for ", sub, " and ROI: ", ROI) print("Please check if the directory is correct or " + \ "generate predicted data for ROI: ", ROI, " in subject: ", sub) return ROI_result = np.load(ROI_result_file) ROI_results[sub] = ROI_result results[ROI] = ROI_results filename = track + ".pkl" if not op.exists(submission_dir): os.makedirs(submission_dir) submission_pkl = op.join(submission_dir, filename) save_dict(results, submission_pkl) submission_zip = op.join(submission_dir, track + ".zip") zipped_results = zipfile.ZipFile(submission_zip, 'w') zipped_results.write(submission_pkl, filename) zipped_results.close() def main(): buzz_root = '/home/dinize@acct.upmchs.net/proj/Buzznauts' description = 'Prepares submission for Algonauts 2021' parser = argparse.ArgumentParser(description=description) model = op.join(buzz_root, 'models/baseline') parser.add_argument('-rd', '--result_dir', help='contains predicted fMRI activity', default = op.join(model, 'results/alexnet/layer_5'), type=str) _help= 'mini_track for all ROIs, full_track for whole brain (WB)' parser.add_argument('-t', '--track', help=_help, default='mini_track', type=str) args = vars(parser.parse_args()) track = args['track'] result_dir = args['result_dir'] if track == 'full_track': ROIs = ['WB'] else: ROIs = ['LOC','FFA','STS','EBA','PPA','V1','V2','V3','V4'] num_subs = 10 subs=[] for s in range(num_subs): subs.append('sub' + str(s+1).zfill(2)) results = {} for ROI in ROIs: ROI_results = {} for sub in subs: ROI_result_file = op.join(result_dir, track, sub, ROI+"_test.npy") print("Result file path: ", ROI_result_file) if not op.exists(ROI_result_file): print("----------- Warning : submission not ready -----------") print("Result not found for ", sub, " and ROI: ", ROI) print("Please check if the directory is correct or " + \ "generate predicted data for ROI: ", ROI, " in subject: ", sub) return ROI_result = np.load(ROI_result_file) ROI_results[sub] = ROI_result results[ROI] = ROI_results filename = track + ".pkl" submission_pkl = op.join(result_dir, track, filename) save_dict(results, submission_pkl) submission_zip = op.join(result_dir, track, track + ".zip") zipped_results = zipfile.ZipFile(submission_zip, 'w') zipped_results.write(submission_pkl, filename) zipped_results.close() if __name__ == "__main__": main()
[ "edd32@pitt.edu" ]
edd32@pitt.edu
689f182aaf2c3e12e5345b5f4029c3a84a26d873
9743d5fd24822f79c156ad112229e25adb9ed6f6
/xai/brain/wordbase/adjectives/_unshakeable.py
e5580220c428d26267e79c308054751c325bd982
[ "MIT" ]
permissive
cash2one/xai
de7adad1758f50dd6786bf0111e71a903f039b64
e76f12c9f4dcf3ac1c7c08b0cc8844c0b0a104b6
refs/heads/master
2021-01-19T12:33:54.964379
2017-01-28T02:00:50
2017-01-28T02:00:50
null
0
0
null
null
null
null
UTF-8
Python
false
false
464
py
#calss header class _UNSHAKEABLE(): def __init__(self,): self.name = "UNSHAKEABLE" self.definitions = [u"If someone's trust or belief is unshakeable, it is firm and cannot be made weaker or destroyed: "] self.parents = [] self.childen = [] self.properties = [] self.jsondata = {} self.specie = 'adjectives' def run(self, obj1, obj2): self.jsondata[obj2] = {} self.jsondata[obj2]['properties'] = self.name.lower() return self.jsondata
[ "xingwang1991@gmail.com" ]
xingwang1991@gmail.com
919e93118fc21b5f45a947257bee54a667752573
51240087b513a3f625806051e883fcbee6cb5dc5
/Strings/Alternate_capitalize.py
6fcedd9e5ae280353f1c644a7987dd73559ac69f
[]
no_license
dakshtrehan/Python-practice
af7fba2232dfa9d0f3593a4eebf8816a0bf86454
831501953daeb24d47bd78fba8b27c253ef08d72
refs/heads/main
2023-04-11T13:30:13.642509
2021-04-30T03:18:23
2021-04-30T03:18:23
347,295,548
0
0
null
null
null
null
UTF-8
Python
false
false
297
py
#Write a program that reads a string and print a string that capitalizes every other letter in the string #e.g. passion becomes pAsSiOn x=input("Enter the string: ") str1= "" for i in range(0, len(x)): if i%2==0: str1+=x[i] else: str1+=x[i].upper() print(str1)
[ "noreply@github.com" ]
dakshtrehan.noreply@github.com
64a735daccbccc34daae44e1bcd1fd7f5686d793
cd8e4f88151a4fa3b39cf74f31d63371516259e5
/Model1/experiments_run/sol_vis.py
957e5c14d136ed31ed07225adef05c53dd77205f
[]
no_license
saintazunya/TSP-project
4a3c2395e862ff446f3427ff3d89b8222ede0de3
46c2f77ca79c3354d11fd49f6f999a3dcb96fe2b
refs/heads/master
2021-10-02T21:17:05.331595
2018-11-30T22:38:40
2018-11-30T22:38:40
116,619,303
2
0
null
null
null
null
UTF-8
Python
false
false
816
py
import numpy as np import matplotlib.pyplot as plt from matplotlib.animation import FuncAnimation import sol_to_index def animate(i): line.set_xdata(solution[0:i,0]) line.set_ydata(solution[0:i,1]) return line #result path='' file=r'100_distance_sol.xlsx' ncities=np.load('datasave.npz')['arr_1'] cities=np.load('datasave.npz')['arr_1'] solidx=sol_to_index.sol_to_index(path+file) solution=cities[solidx] #visualization needs some debuging fig = plt.figure() ax = fig.add_subplot(111) ax.plot(cities[:,0],cities[:,1],'x',markersize=1) ax.plot(solution[:,0],solution[:,1],markersize=0.1) line, = ax.plot([],[],'o',markersize=10,label='route') #animate(10) ax.legend(loc='best') plt.axes().set_aspect(0.8, adjustable='box') FuncAnimation(fig, animate, frames=300) a=1 plt.show()
[ "noreply@github.com" ]
saintazunya.noreply@github.com
510e4a01cd856f71555cce0934d2241858363403
5060fce51bba586ec30667e1dc32fa996eeedd38
/abali/testcases.py
f582f376cdf6c66c4771fa2d6ff9d03ad699715b
[]
no_license
knutsvk/fins
398d67d54b1daf11934aa6c429c9722e72c466db
8854749ba0aea3b9d3ebc25f2992eb78b539ecf5
refs/heads/master
2021-06-16T18:39:51.502888
2017-05-24T11:26:09
2017-05-24T11:26:09
89,158,647
0
0
null
null
null
null
UTF-8
Python
false
false
3,683
py
from fenics import * class Poiseuille(): """ """ def __init__(self, nx, ny, limits=[0, 1, 0, 1], dp=1): self.mesh = self.make_mesh(nx, ny, limits) self.space = self.make_space() self.bc = self.boundary_conditions(limits, dp) self.ic = self.initial_conditions(limits, dp) self.name = 'poiseuille' def make_mesh(self, nx, ny, limits): return UnitSquareMesh(nx, ny) def make_space(self): scalar_element = FiniteElement('P', triangle, 1) vector_element = VectorElement('P', triangle, 2) mixed_element = MixedElement([scalar_element, vector_element]) return FunctionSpace(self.mesh, MixedElement([scalar_element, vector_element])) def boundary_conditions(self, limits, dp): left = CompiledSubDomain('near(x[0], 0.0) && on_boundary') right = CompiledSubDomain('near(x[0], 1.0) && on_boundary') bottom = CompiledSubDomain('near(x[1], 0.0) && on_boundary') top = CompiledSubDomain('near(x[1], 1.0) && on_boundary') v_noslip = Constant((0, 0)) pL = Constant(dp) pR = Constant('0.0') p_bc1 = DirichletBC(self.space.sub(0), pL, left) p_bc2 = DirichletBC(self.space.sub(0), pR, right) v_bc1 = DirichletBC(self.space.sub(1), v_noslip, bottom) v_bc2 = DirichletBC(self.space.sub(1), v_noslip, top) v_bc3 = DirichletBC(self.space.sub(1).sub(1), 0, left) v_bc4 = DirichletBC(self.space.sub(1).sub(1), 0, right) return [p_bc1, p_bc2, v_bc1, v_bc2, v_bc3, v_bc4] def initial_conditions(self, limits, dp): return Expression(('p*(1.0-x[0])', '0.0', '0.0'), p=dp, degree=1) def define_functions(self): # Define functions for solutions at previous and current time steps u = Function(self.space) u = interpolate(self.ic, self.space) u0 = Function(self.space) u0.assign(u) return u, u0 class LidDrivenCavity(): """ """ def __init__(self, nx, ny): self.mesh = self.make_mesh(nx, ny) self.space = self.make_space() self.bc = self.boundary_conditions() self.ic = self.initial_conditions() self.name = 'lid' def make_mesh(self, nx, ny): return UnitSquareMesh(nx, ny) def make_space(self): scalar_element = FiniteElement('P', triangle, 1) vector_element = VectorElement('P', triangle, 2) mixed_element = MixedElement([scalar_element, vector_element]) return FunctionSpace(self.mesh, MixedElement([scalar_element, vector_element])) def boundary_conditions(self): left = CompiledSubDomain('near(x[0], 0.0) && on_boundary') right = CompiledSubDomain('near(x[0], 1.0) && on_boundary') bottom = CompiledSubDomain('near(x[1], 0.0) && on_boundary') top = CompiledSubDomain('near(x[1], 1.0) && on_boundary') v_wall = Constant((0, 0)) v_lid = Constant((1, 0)) # v_lid = Expression(('16.0*x[0]*x[0]*(1.0-x[0])*(1.0-x[0])', '0.0'), degree=4) v_bc1 = DirichletBC(self.space.sub(1), v_lid, top) v_bc2 = DirichletBC(self.space.sub(1), v_wall, bottom) v_bc3 = DirichletBC(self.space.sub(1), v_wall, left) v_bc4 = DirichletBC(self.space.sub(1), v_wall, right) return [v_bc1, v_bc2, v_bc3, v_bc4] def initial_conditions(self): return Constant((0, 0, 0)) def define_functions(self): # Define functions for solutions at previous and current time steps u = Function(self.space) u = interpolate(self.ic, self.space) u0 = Function(self.space) u0.assign(u) return u, u0
[ "ksk38@cam.ac.uk" ]
ksk38@cam.ac.uk
7af33df27c68bca8c3a56d141bdc448c28f85369
4e88344be8aab80357d48eaaaa8fee321ede1b72
/keras_sequential_example.py
b2b8cb2d165ff87cc74850abb57e4e35eb487c95
[]
no_license
martynaut/datacamp-examples
8a63bb6832fb5143b935ddb50ba5514272119a41
a5e5cb87fd835caf094c2646e98c9bc9f0937a1b
refs/heads/master
2021-03-31T00:10:29.853702
2018-09-30T06:03:49
2018-09-30T06:03:49
124,993,276
0
0
null
null
null
null
UTF-8
Python
false
false
3,277
py
from keras.layers import Dense from keras.models import Sequential from keras.optimizers import SGD from keras.callbacks import EarlyStopping from keras.utils import to_categorical import matplotlib.pyplot as plt def get_new_model(input_shape=1): model_i = Sequential() model_i.add(Dense(100, activation='relu', input_shape=input_shape)) model_i.add(Dense(100, activation='relu')) model_i.add(Dense(2, activation='softmax')) return model_i def relu(input_value): # Calculate the value for the output of the relu function: output output = max(input_value, 0) # Return the value just calculated return output # Save the number of columns in predictors: n_cols n_cols = df.drop('output', axis=1).shape[1] y = to_categorical(df['output']) # Create the model: model model = Sequential() # Add the first hidden layer model.add(Dense(50, activation='relu', input_shape=(n_cols,))) # Add the second hidden layer model.add(Dense(50, activation='relu')) # Add the output layer model.add(Dense(2, activation='softmax')) # Compile the model model.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) # Verify that model contains information from compiling print("Loss function: " + model.loss) early_stopping_monitor = EarlyStopping(patience=2) # Fit the model model.fit(predictors, target, epochs=30, validation_split=0.3, callbacks=[early_stopping_monitor]) # Calculate predictions: predictions predictions = model.predict(pred_data) # Calculate predicted probability of survival: predicted_prob_true predicted_prob_true = predictions[:, 1] # print predicted_prob_true print(predicted_prob_true) # Create list of learning rates: lr_to_test lr_to_test = [.000001, 0.01, 1] # Loop over learning rates for lr in lr_to_test: print('\n\nTesting model with learning rate: %f\n' % lr) # Build new model to test, unaffected by previous models model = get_new_model() # Create SGD optimizer with specified learning rate: my_optimizer my_optimizer = SGD(lr=lr) # Compile the model model.compile(optimizer=my_optimizer, loss='categorical_crossentropy') # Fit the model model.fit(predictors, target) # Define early_stopping_monitor early_stopping_monitor = EarlyStopping(patience=2) # Create the new model: model_2 model_2 = Sequential() # Add the first and second layers model_2.add(Dense(100, activation='relu', input_shape=input_shape)) model_2.add(Dense(100, activation='relu')) # Add the output layer model_2.add(Dense(2, activation='softmax')) # Compile model_2 model_2.compile(optimizer='adam', loss='categorical_crossentropy', metrics=['accuracy']) # Fit model_1 model_1_training = model_1.fit(predictors, target, epochs=15, validation_split=0.2, callbacks=[early_stopping_monitor], verbose=False) # Fit model_2 model_2_training = model_2.fit(predictors, target, epochs=15, validation_split=0.2, callbacks=[early_stopping_monitor], verbose=False) # Create the plot plt.plot(model_1_training.history['val_loss'], 'r', model_2_training.history['val_loss'], 'b') plt.xlabel('Epochs') plt.ylabel('Validation score') plt.show()
[ "scienceisthenewblack@gmail.com" ]
scienceisthenewblack@gmail.com
198762cfe5c30a9b906981b180be25fe2d5ab55d
c7c9c0b634310a2df8d0be503abfe2279ab7e9c8
/초보문제/1983.py
690eb6e99e215cea6069e2ae6e504ae9ba005667
[]
no_license
ubjhls/algorithms
f28e4ab7580056bbb1bce275cfe01bda56df31b2
820fb4a183971f3aa7c665ff2895fbdde6fea8f9
refs/heads/master
2020-06-26T23:52:25.333519
2020-04-14T13:53:48
2020-04-14T13:53:48
199,792,029
0
0
null
null
null
null
UTF-8
Python
false
false
597
py
testcase = int(input()) for k in range(testcase): test = list(map(int, input().split())) score = [list(map(int, input().split())) for i in range(test[0])] result = [] for i in range(test[0]): tmp = 0 tmp = score[i][0]*35 + score[i][1]*45 + score[i][2]*20 result.append(tmp) result_tmp = result[test[1]-1] result.sort() result = result[::-1] grade = ['A+', 'A0', 'A-', 'B+', 'B0', 'B-', 'C+', 'C0', 'C-', 'D0'] for i in range(test[0]): if result[i] == result_tmp: print('#{} {}'.format(k+1, grade[i//(test[0]//10)]))
[ "ubjhls@naver.com" ]
ubjhls@naver.com
cc5ec499a2477185f01d8d99f857f8efd74c7e8d
352457b4ce9e0cb66c2bc1a2bc461d6a48626cf2
/opengl_support/tilesets.py
c0f7a21e53bd44b80093265f2faaf237f18d14ac
[ "MIT" ]
permissive
michaelbradley91/sokoban
78c73041d7ef528354f4572238f49ce00a1c4cc5
9a425df01ea68285922edc1c5053376e822db94d
refs/heads/master
2021-07-05T03:25:54.130222
2020-01-01T17:38:26
2020-01-01T17:38:26
230,138,176
0
0
MIT
2021-04-20T19:06:53
2019-12-25T18:12:57
Python
UTF-8
Python
false
false
2,857
py
from typing import Tuple, Optional import pygame from pygame.rect import Rect from coordinate import Coordinate from opengl_support.drawable import Drawable from opengl_support.texture import Texture class TileSet(Texture): """ Represents a tile set in OpenGL """ def __init__(self, surface: pygame.SurfaceType, tile_size: Tuple[int, int], tiles_wide: Optional[int] = None, tiles_high: Optional[int] = None): """ Load a tile set from a given surface :param surface: the tile set as a surface :param tile_size: the size of each tile :param tiles_wide: the number of tiles wide the picture is. Leave as None to calculate this from the image size :param tiles_high: the number of tiles high the picture is. Leave as None to calculate this from the image size :return: the loaded tile set as a dictionary from x,y tile coordinates to the tile """ super().__init__(surface) self.__tile_size = tile_size self.__tiles_wide = tiles_wide self.__tiles_high = tiles_high if not self.__tiles_wide: self.__tiles_wide = self.width // self.tile_size[0] self.__tiles_high = self.height // self.tile_size[1] @property def tile_size(self) -> Tuple[int, int]: return self.__tile_size def draw_tile(self, rect: Rect, tile_coordinate: Coordinate): """ Draw a specific tile from the tile set :param rect: the rectangle in which to draw the tile :param tile_coordinate: the coordinate of the tile :return: nothing Raises a ValueError if the tile coordinate is out of bounds """ if tile_coordinate.x < 0 or tile_coordinate.y < 0 or \ tile_coordinate.x > self.__tiles_wide or tile_coordinate.y > self.__tiles_high: raise ValueError("Invalid tile index") sub_rect = Rect((self.tile_size[0] * tile_coordinate.x, self.tile_size[1] * tile_coordinate.y), self.tile_size) super().draw_sub_rectangle(rect, sub_rect) class Tile(Drawable): """ A singled out tile from a tile set to draw. """ def __init__(self, tile_set: TileSet, tile_coordinate: Coordinate): self.__tile_set = tile_set self.__tile_coordinate = tile_coordinate @property def tile_set(self): return self.__tile_set def reload(self): """ Reload the tile. Generally, it is better to reload the underlying tile set to avoid reloading the whole tile set excessively. """ self.__tile_set.reload() def draw(self, rect: Rect): """ Draw this tile to fill the given rectangle :param rect: the rectangle to fill :return: nothing """ self.__tile_set.draw_tile(rect, self.__tile_coordinate)
[ "michael.bradley@hotmail.co.uk" ]
michael.bradley@hotmail.co.uk
1fb2df762dd45f6aa9845f161da2ee0c3e55bf03
77f5a8d34aadc697e95671f1c9b17ca547e2b4c1
/xierpa3/contributions/filibuster/content/creditcard.py
3038f19db04632a24c976e6344a1a4cf9dd30217
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
dungmv56/Xierpa3
ef9f37a62a5b739e6e41f8bbe683820771a2f22e
1e5fecaee84204401f3cc7ccea10092cb31029bf
refs/heads/master
2020-12-24T11:17:31.945821
2016-02-25T11:39:08
2016-02-25T11:39:08
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,697
py
# -*- coding: UTF-8 -*- # ----------------------------------------------------------------------------- # xierpa server # Copyright (c) 2014+ buro@petr.com, www.petr.com, www.xierpa.com # # X I E R P A 3 # Distribution by the MIT License. # # ----------------------------------------------------------------------------- # # Contributed by Erik van Blokland and Jonathan Hoefler # Original from filibuster. # # FILIBUSTER.ORG! """ living -------------------------------------------------------------------- """ __version__ = '3.0.0' __author__ = "someone" content = { 'creditcard': [ '<#p_cc_flavor#><#p_cc_sx#>', '<#p_cc_flavor#><#p_cc_flavor#><#p_cc_sx#>', '<#p_cc_quality#> <#p_cc_flavor#><#p_cc_sx#>', '<#p_cc_quality#> <#p_cc_flavor#><#p_cc_sx#>', ], 'creditcard_accepted': [ '<#company#> welcomes <#creditcard#>', '<#company#> prefers <#creditcard#>', 'We welcome <#creditcard#>', 'We prefer <#creditcard#>', '<#creditcard#> preferred!', '<#creditcard#> accepted.', 'Pay with <#creditcard#>', ], 'creditcard_issued': [ '<#p_cc_issuer#> <#creditcard#>', u'<#p_cc_issuer#>’s <#creditcard#>', '<#creditcard#>, by <#p_cc_issuer#>', ], 'creditcard_number': [ '<#figs#><#figs#><#figs#><#figs#> <#figs#><#figs#><#figs#><#figs#> <#figs#><#figs#><#figs#><#figs#> <#figs#><#figs#><#figs#><#figs#>', ], 'creditcard_validuntil': [ '<#time_months#> <#time_comingyears#>', ], 'p_acronym': [ '<#alphabet_caps#><#alphabet_caps#>', '<#alphabet_caps#><#alphabet_caps#><#alphabet_caps#>', ], 'p_cc_flavor': [ '<#p_cc_flavor_common#>', '<#p_cc_flavor_nonsense#>', '<#name_japanese#>', '<#p_cc_flavor_religious#>', '<#p_cc_flavor_super#>', '<#p_cc_flavor_count#>', '<#p_cc_flavor_sweet#>', '<#p_cc_flavor_shop#>', '<#p_cc_flavor_money#>', '<#p_cc_flavor_modern#>', '<#p_cc_flavor_currency#>', '<#p_cc_flavor_locale#>', '<#p_cc_flavor_odd#>', '<#p_cc_flavor_others#>', ], 'p_cc_flavor_common': [ 'Direct', 'Media', 'Uni', 'Family', 'Member', 'Diner', ], 'p_cc_flavor_count': [ 'Twin', 'Bi', 'Duo', 'Tri', 'Trio', 'Quatro', 'Penta', ], 'p_cc_flavor_currency': [ 'Dime', '<#sci_transition_metals#>Dollar', 'Dollar', 'Sterling', 'Change', ], 'p_cc_flavor_locale': [ 'Euro', 'Asia', 'US', 'HK', ], 'p_cc_flavor_modern': [ 'Com', 'Phone', 'Smart', 'Swipe', 'Compu', 'Terminal', 'Electro', 'Plasti', 'Chem', 'Chemi', 'Chemo', 'Net', 'Web', 'SET', 'Inter', ], 'p_cc_flavor_money': [ 'Buy', 'Cash', 'Kash', 'Money', 'Pecunia', 'Debet', 'Debt', 'Specu', 'Pin', 'Chipper', ], 'p_cc_flavor_nonsense': [ 'Exi', 'Minto', 'Exo', 'Mondo', 'Fina', ], 'p_cc_flavor_odd': [ 'Gas', 'Petro', 'Petroli', ], 'p_cc_flavor_others': [ '<#p_acronym#>', '<#p_co_creative#>', '<#p_co_mediaprefix#>', '<#p_business_name#>', '<#p_cc_quality#>', ], 'p_cc_flavor_religious': [ 'Pure', 'Reli', 'Holy', 'Spiri', 'God', 'Noble', ], 'p_cc_flavor_shop': [ 'Excel', 'Access', 'XS', 'Fast', 'Digi', 'E', 'Shop', 'Store', 'Market', ], 'p_cc_flavor_super': [ 'Super', 'Hyper', 'Ultra', 'Kid', 'Major', 'Minor', ], 'p_cc_flavor_sweet': [ 'Courtesy', 'Polite', 'Nice', 'Comfort', 'Friendly', 'Friendli', ], 'p_cc_issuer': [ '<#company#>', '<#eurobank#>', '<#usbank#>', '<#name_japanese#>', ], 'p_cc_quality': [ 'Personal', 'Home', 'Business', 'Corporate', '<#sci_popularelements#>', '<#sci_popularelements#>', '<#sci_popularelements#>', '<#sci_popularelements#>', ], 'p_cc_sx': [ 'Card', 'Card', 'Card', 'Card', 'Credit', 'Express', ], }
[ "michiel@concretejungle.nl" ]
michiel@concretejungle.nl
9fe1c000fbf3c51c00c02803c972800561a72a51
27be037ad76d666cc02619d0a326d59e0871954c
/kiribo/tarot.py
93532cb8489176739dea770d4c134b4d6cd38c8a
[ "MIT" ]
permissive
kiritan-pop/kiri_bot
b2f76209e12fd1e2dda02b76396a7daccb59334b
decc93e8271e558c24082c18c712979b319bd302
refs/heads/master
2023-03-07T05:23:12.456450
2023-02-27T06:20:20
2023-02-27T06:20:20
114,524,444
20
6
MIT
2020-08-19T10:27:57
2017-12-17T09:30:08
Python
UTF-8
Python
false
false
4,040
py
# coding: utf-8 import random,json import sys,io,re,os from pytz import timezone from datetime import datetime, timedelta from pprint import pprint as pp from PIL import Image, ImageFont, ImageDraw from kiribo import util from kiribo.config import TAROT_DATA_PATH, TAROT_IMG_PATH, TAROT_CHK_PATH, TAROT_IMGMAP_PATH, FONT_PATH, MEDIA_PATH with open(TAROT_DATA_PATH, 'r') as f: tarot_data = json.load(f) with open(TAROT_IMGMAP_PATH, 'r') as f: imgmap = json.load(f) ORDER = ["総合", "金運", "恋愛", "健康", "仕事", "遊び"] def tarot_reading(): return tarot_data[str(random.randrange(len(tarot_data)))] def get_tarot_image(tarot): return os.path.join(TAROT_IMG_PATH, imgmap[tarot['name']]) def tarot_main(): tarot = tarot_reading() text = f"【{tarot['name']}】{'逆位置' if tarot['rev'] else '正位置'}\n" text += f"{tarot['txt1']}\n{tarot['txt2'] if len(tarot['txt2'])>0 else ''}\n" text += "\n".join([f"{o}:{'☆'*tarot['stars'][o]}" for o in ORDER]) text += "\n powerd by :@HKSN:" return text, tarot def tarot_check(acct): jst_now = datetime.now(timezone('Asia/Tokyo')) if os.path.exists(TAROT_CHK_PATH): with open(TAROT_CHK_PATH, 'r') as f: acct_chk_data = json.load(f) else: acct_chk_data = {} # 1日以上開けないとダメ if acct in acct_chk_data and (jst_now.strftime('%Y%m%d') <= datetime.fromisoformat(acct_chk_data[acct]).strftime('%Y%m%d')): return False acct_chk_data[acct] = jst_now.isoformat() with open(TAROT_CHK_PATH, 'w') as f: json.dump(acct_chk_data, f, ensure_ascii=False, indent=2) return True def make_tarot_image(tarot, avatar_static): img_path = get_tarot_image(tarot) tarot_img = Image.open(img_path) if tarot['rev']: tarot_img = tarot_img.rotate(180) image = Image.new("RGBA", (640, 320), (0, 0, 0, 255)) image.paste(tarot_img, (0, 0)) avatar_static_img_path = util.download_media(avatar_static) # アイコン if avatar_static_img_path: avatar_static_img = Image.open(avatar_static_img_path).convert("RGB") max_size = max(avatar_static_img.width, avatar_static_img.height) RS_SIZE = 36 avatar_static_img = avatar_static_img.resize( (avatar_static_img.width*RS_SIZE//max_size, avatar_static_img.height*RS_SIZE//max_size), resample=Image.LANCZOS) image.paste(avatar_static_img, (tarot_img.width + 72, 8)) # 文字追加 jst_now = datetime.now(timezone('Asia/Tokyo')) temp_txt = f"   {int(jst_now.strftime('%m'))}月{int(jst_now.strftime('%d'))}日の運勢" font = ImageFont.truetype(FONT_PATH, 32) draw = ImageDraw.Draw(image) draw.text((tarot_img.width + 32, 12), temp_txt, fill=(240, 240, 240), font=font) font = ImageFont.truetype(FONT_PATH, 22) order = ["総合", "金運", "恋愛", "健康", "仕事", "遊び"] tarot_txt = f"【{tarot['name']}】{'逆位置' if tarot['rev'] else '正位置'}\n" MAXLENGTH = 19 tarot_txt += f"{tarot['txt1'][:MAXLENGTH]}" if len(tarot['txt1']) > MAXLENGTH: tarot_txt += '\n' tarot_txt += tarot['txt1'][MAXLENGTH:] if len(tarot['txt2']) > 0: tarot_txt += '\n' tarot_txt += f"{tarot['txt2'][:MAXLENGTH]}" if len(tarot['txt2']) > MAXLENGTH: tarot_txt += '\n' tarot_txt += tarot['txt2'][MAXLENGTH:] tarot_txt += '\n' tarot_txt += "\n".join([f"{o}:{'☆'*tarot['stars'][o]}" for o in order]) draw.text((tarot_img.width + 12, 56), tarot_txt, fill=(240, 240, 240), font=font) image.save(os.path.join(MEDIA_PATH, "tarot_tmp.png")) return os.path.join(MEDIA_PATH, "tarot_tmp.png") if __name__ == '__main__': avatar_static = "https://kiritan.work/system/accounts/avatars/000/000/001/original/039525c0ca872f5d.png" print(tarot_check("kiritan")) tarot_txt, tarot = tarot_main() print(tarot_txt) print(make_tarot_image(tarot, avatar_static))
[ "kiritan.pop@gmail.com" ]
kiritan.pop@gmail.com
53279d87f3e8a1742110292cdccdc3fa7018b3c1
7a82203a813ca75af560dd67adaa6edf7a62f562
/04_Dueling_Deep_Q_Network.py
3d4eeb97f1e628cc4df7820bdea7c7557b5a8793
[]
no_license
mrlightman5/DRL
68b6a4b0bb50ca684b53c0dc21351824c6f2317e
5aaedcc855c06979abb31989b3faec467dd99b89
refs/heads/master
2020-03-31T16:34:02.401503
2018-10-08T01:37:23
2018-10-08T01:37:23
null
0
0
null
null
null
null
UTF-8
Python
false
false
15,123
py
# Deep Q-Network Algorithm # Import modules import tensorflow as tf import pygame import random import numpy as np import matplotlib.pyplot as plt import datetime import time import cv2 import os # Import game import sys sys.path.append("DQN_GAMES/") import Deep_Parameters game = Deep_Parameters.game class Dueling_DQN: def __init__(self): # Game Information self.algorithm = 'Dueling_DQN' self.game_name = game.ReturnName() # Get parameters self.progress = '' self.Num_action = game.Return_Num_Action() # Initial parameters self.Num_Exploration = Deep_Parameters.Num_start_training self.Num_Training = Deep_Parameters.Num_training self.Num_Testing = Deep_Parameters.Num_test self.learning_rate = Deep_Parameters.Learning_rate self.gamma = Deep_Parameters.Gamma self.first_epsilon = Deep_Parameters.Epsilon self.final_epsilon = Deep_Parameters.Final_epsilon self.epsilon = self.first_epsilon self.Num_plot_episode = Deep_Parameters.Num_plot_episode self.Is_train = Deep_Parameters.Is_train self.load_path = Deep_Parameters.Load_path self.step = 1 self.score = 0 self.episode = 0 # date - hour - minute of training time self.date_time = str(datetime.date.today()) + '_' + \ str(datetime.datetime.now().hour) + '_' + \ str(datetime.datetime.now().minute) # parameters for skipping and stacking self.state_set = [] self.Num_skipping = Deep_Parameters.Num_skipFrame self.Num_stacking = Deep_Parameters.Num_stackFrame # Parameter for Experience Replay self.Num_replay_memory = Deep_Parameters.Num_replay_memory self.Num_batch = Deep_Parameters.Num_batch self.replay_memory = [] # Parameter for Target Network self.Num_update_target = Deep_Parameters.Num_update # Parameters for network self.img_size = 80 self.Num_colorChannel = Deep_Parameters.Num_colorChannel self.first_conv = Deep_Parameters.first_conv self.second_conv = Deep_Parameters.second_conv self.third_conv = Deep_Parameters.third_conv self.first_dense = Deep_Parameters.first_dense self.second_dense_state = [self.first_dense[1], 1] self.second_dense_action = [self.first_dense[1], self.Num_action] self.GPU_fraction = Deep_Parameters.GPU_fraction # Variables for tensorboard self.loss = 0 self.maxQ = 0 self.score_board = 0 self.maxQ_board = 0 self.loss_board = 0 self.step_old = 0 # Initialize Network self.input, self.output = self.network('network') self.input_target, self.output_target = self.network('target') self.train_step, self.action_target, self.y_target, self.loss_train = self.loss_and_train() self.sess, self.saver, self.summary_placeholders, self.update_ops, self.summary_op, self.summary_writer = self.init_sess() def main(self): # Define game state game_state = game.GameState() # Initialization state = self.initialization(game_state) stacked_state = self.skip_and_stack_frame(state) while True: # Get progress: self.progress = self.get_progress() # Select action action = self.select_action(stacked_state) # Take action and get info. for update next_state, reward, terminal = game_state.frame_step(action) next_state = self.reshape_input(next_state) stacked_next_state = self.skip_and_stack_frame(next_state) # Experience Replay self.experience_replay(stacked_state, action, reward, stacked_next_state, terminal) # Training! if self.progress == 'Training': # Update target network if self.step % self.Num_update_target == 0: self.update_target() # Training self.train(self.replay_memory) # Save model self.save_model() # Update former info. stacked_state = stacked_next_state self.score += reward self.step += 1 # Plotting self.plotting(terminal) # If game is over (terminal) if terminal: stacked_state = self.if_terminal(game_state) # Finished! if self.progress == 'Finished': print('Finished!') break def init_sess(self): # Initialize variables config = tf.ConfigProto() config.gpu_options.per_process_gpu_memory_fraction = self.GPU_fraction sess = tf.InteractiveSession(config=config) # Make folder for save data os.makedirs('saved_networks/' + self.game_name + '/' + self.date_time + '_' + self.algorithm) # Summary for tensorboard summary_placeholders, update_ops, summary_op = self.setup_summary() summary_writer = tf.summary.FileWriter('saved_networks/' + self.game_name + '/' + self.date_time + '_' + self.algorithm, sess.graph) init = tf.global_variables_initializer() sess.run(init) # Load the file if the saved file exists saver = tf.train.Saver() # check_save = 1 check_save = input('Load Model? (1=yes/2=no): ') if check_save == 1: # Restore variables from disk. saver.restore(sess, self.load_path + "/model.ckpt") print("Model restored.") check_train = input('Inference or Training? (1=Inference / 2=Training): ') if check_train == 1: self.Num_Exploration = 0 self.Num_Training = 0 return sess, saver, summary_placeholders, update_ops, summary_op, summary_writer def initialization(self, game_state): action = np.zeros([self.Num_action]) state, _, _ = game_state.frame_step(action) state = self.reshape_input(state) for i in range(self.Num_skipping * self.Num_stacking): self.state_set.append(state) return state def skip_and_stack_frame(self, state): self.state_set.append(state) state_in = np.zeros((self.img_size, self.img_size, self.Num_colorChannel * self.Num_stacking)) # Stack the frame according to the number of skipping frame for stack_frame in range(self.Num_stacking): state_in[:,:, self.Num_colorChannel * stack_frame : self.Num_colorChannel * (stack_frame+1)] = self.state_set[-1 - (self.Num_skipping * stack_frame)] del self.state_set[0] state_in = np.uint8(state_in) return state_in def get_progress(self): progress = '' if self.step <= self.Num_Exploration: progress = 'Exploring' elif self.step <= self.Num_Exploration + self.Num_Training: progress = 'Training' elif self.step <= self.Num_Exploration + self.Num_Training + self.Num_Testing: progress = 'Testing' else: progress = 'Finished' return progress # Resize and make input as grayscale def reshape_input(self, state): state_out = cv2.resize(state, (self.img_size, self.img_size)) if self.Num_colorChannel == 1: state_out = cv2.cvtColor(state_out, cv2.COLOR_BGR2GRAY) state_out = np.reshape(state_out, (self.img_size, self.img_size, 1)) state_out = np.uint8(state_out) return state_out # Code for tensorboard def setup_summary(self): episode_score = tf.Variable(0.) episode_maxQ = tf.Variable(0.) episode_loss = tf.Variable(0.) tf.summary.scalar('Average Score/' + str(self.Num_plot_episode) + ' episodes', episode_score) tf.summary.scalar('Average MaxQ/' + str(self.Num_plot_episode) + ' episodes', episode_maxQ) tf.summary.scalar('Average Loss/' + str(self.Num_plot_episode) + ' episodes', episode_loss) summary_vars = [episode_score, episode_maxQ, episode_loss] summary_placeholders = [tf.placeholder(tf.float32) for _ in range(len(summary_vars))] update_ops = [summary_vars[i].assign(summary_placeholders[i]) for i in range(len(summary_vars))] summary_op = tf.summary.merge_all() return summary_placeholders, update_ops, summary_op # Convolution and pooling def conv2d(self, x, w, stride): return tf.nn.conv2d(x,w,strides=[1, stride, stride, 1], padding='SAME') # Get Variables def conv_weight_variable(self, name, shape): return tf.get_variable(name, shape = shape, initializer = tf.contrib.layers.xavier_initializer_conv2d()) def weight_variable(self, name, shape): return tf.get_variable(name, shape = shape, initializer = tf.contrib.layers.xavier_initializer()) def bias_variable(self, name, shape): return tf.get_variable(name, shape = shape, initializer = tf.contrib.layers.xavier_initializer()) def network(self, network_name): # Input x_image = tf.placeholder(tf.float32, shape = [None, self.img_size, self.img_size, self.Num_stacking * self.Num_colorChannel]) x_normalize = (x_image - (255.0/2)) / (255.0/2) with tf.variable_scope(network_name): # Convolution variables w_conv1 = self.conv_weight_variable('_w_conv1', self.first_conv) b_conv1 = self.bias_variable('_b_conv1',[self.first_conv[3]]) w_conv2 = self.conv_weight_variable('_w_conv2',self.second_conv) b_conv2 = self.bias_variable('_b_conv2',[self.second_conv[3]]) w_conv3 = self.conv_weight_variable('_w_conv3',self.third_conv) b_conv3 = self.bias_variable('_b_conv3',[self.third_conv[3]]) # Densely connect layer variables w_fc1_1 = self.weight_variable('_w_fc1_1',self.first_dense) b_fc1_1 = self.bias_variable('_b_fc1_1',[self.first_dense[1]]) w_fc1_2 = self.weight_variable('_w_fc1_2',self.first_dense) b_fc1_2 = self.bias_variable('_b_fc1_2',[self.first_dense[1]]) w_fc2_1 = self.weight_variable('_w_fc2_1',self.second_dense_state) b_fc2_1 = self.bias_variable('_b_fc2_1',[self.second_dense_state[1]]) w_fc2_2 = self.weight_variable('_w_fc2_2',self.second_dense_action) b_fc2_2 = self.bias_variable('_b_fc2_2',[self.second_dense_action[1]]) # Network h_conv1 = tf.nn.relu(self.conv2d(x_normalize, w_conv1, 4) + b_conv1) h_conv2 = tf.nn.relu(self.conv2d(h_conv1, w_conv2, 2) + b_conv2) h_conv3 = tf.nn.relu(self.conv2d(h_conv2, w_conv3, 1) + b_conv3) h_pool3_flat = tf.reshape(h_conv3, [-1, self.first_dense[0]]) h_fc1_state = tf.nn.relu(tf.matmul(h_pool3_flat, w_fc1_1)+b_fc1_1) h_fc1_action = tf.nn.relu(tf.matmul(h_pool3_flat, w_fc1_2)+b_fc1_2) h_fc2_state = tf.matmul(h_fc1_state, w_fc2_1)+b_fc2_1 h_fc2_action = tf.matmul(h_fc1_action, w_fc2_2)+b_fc2_2 h_fc2_advantage = tf.subtract(h_fc2_action, tf.reduce_mean(h_fc2_action)) output = tf.add(h_fc2_state, h_fc2_advantage) return x_image, output def loss_and_train(self): # Loss function and Train action_target = tf.placeholder(tf.float32, shape = [None, self.Num_action]) y_target = tf.placeholder(tf.float32, shape = [None]) y_prediction = tf.reduce_sum(tf.multiply(self.output, action_target), reduction_indices = 1) Loss = tf.reduce_mean(tf.square(y_prediction - y_target)) train_step = tf.train.AdamOptimizer(learning_rate = self.learning_rate, epsilon = 1e-02).minimize(Loss) return train_step, action_target, y_target, Loss def select_action(self, stacked_state): action = np.zeros([self.Num_action]) action_index = 0 # Choose action if self.progress == 'Exploring': # Choose random action action_index = random.randint(0, self.Num_action-1) action[action_index] = 1 elif self.progress == 'Training': if random.random() < self.epsilon: # Choose random action action_index = random.randint(0, self.Num_action-1) action[action_index] = 1 else: # Choose greedy action Q_value = self.output.eval(feed_dict={self.input: [stacked_state]}) action_index = np.argmax(Q_value) action[action_index] = 1 self.maxQ = np.max(Q_value) # Decrease epsilon while training if self.epsilon > self.final_epsilon: self.epsilon -= self.first_epsilon/self.Num_Training elif self.progress == 'Testing': # Choose greedy action Q_value = self.output.eval(feed_dict={self.input: [stacked_state]}) action_index = np.argmax(Q_value) action[action_index] = 1 self.maxQ = np.max(Q_value) self.epsilon = 0 return action def experience_replay(self, state, action, reward, next_state, terminal): # If Replay memory is longer than Num_replay_memory, delete the oldest one if len(self.replay_memory) >= self.Num_replay_memory: del self.replay_memory[0] self.replay_memory.append([state, action, reward, next_state, terminal]) def update_target(self): # Get trainable variables trainable_variables = tf.trainable_variables() # network variables trainable_variables_network = [var for var in trainable_variables if var.name.startswith('network')] # target variables trainable_variables_target = [var for var in trainable_variables if var.name.startswith('target')] for i in range(len(trainable_variables_network)): self.sess.run(tf.assign(trainable_variables_target[i], trainable_variables_network[i])) def train(self, replay_memory): # Select minibatch minibatch = random.sample(replay_memory, self.Num_batch) # Save the each batch data state_batch = [batch[0] for batch in minibatch] action_batch = [batch[1] for batch in minibatch] reward_batch = [batch[2] for batch in minibatch] next_state_batch = [batch[3] for batch in minibatch] terminal_batch = [batch[4] for batch in minibatch] # Get y_prediction y_batch = [] Q_batch = self.output_target.eval(feed_dict = {self.input_target: next_state_batch}) # Get target values for i in range(len(minibatch)): if terminal_batch[i] == True: y_batch.append(reward_batch[i]) else: y_batch.append(reward_batch[i] + self.gamma * np.max(Q_batch[i])) _, self.loss = self.sess.run([self.train_step, self.loss_train], feed_dict = {self.action_target: action_batch, self.y_target: y_batch, self.input: state_batch}) def save_model(self): # Save the variables to disk. if self.step == self.Num_Exploration + self.Num_Training: save_path = self.saver.save(self.sess, 'saved_networks/' + self.game_name + '/' + self.date_time + '_' + self.algorithm + "/model.ckpt") print("Model saved in file: %s" % save_path) def plotting(self, terminal): if self.progress != 'Exploring': if terminal: self.score_board += self.score self.maxQ_board += self.maxQ self.loss_board += self.loss if self.episode % self.Num_plot_episode == 0 and self.episode != 0 and terminal: diff_step = self.step - self.step_old tensorboard_info = [self.score_board / self.Num_plot_episode, self.maxQ_board / diff_step, self.loss_board / diff_step] for i in range(len(tensorboard_info)): self.sess.run(self.update_ops[i], feed_dict = {self.summary_placeholders[i]: float(tensorboard_info[i])}) summary_str = self.sess.run(self.summary_op) self.summary_writer.add_summary(summary_str, self.step) self.score_board = 0 self.maxQ_board = 0 self.loss_board = 0 self.step_old = self.step else: self.step_old = self.step def if_terminal(self, game_state): # Show Progress print('Step: ' + str(self.step) + ' / ' + 'Episode: ' + str(self.episode) + ' / ' + 'Progress: ' + self.progress + ' / ' + 'Epsilon: ' + str(self.epsilon) + ' / ' + 'Score: ' + str(self.score)) if self.progress != 'Exploring': self.episode += 1 self.score = 0 # If game is finished, initialize the state state = self.initialization(game_state) stacked_state = self.skip_and_stack_frame(state) return stacked_state if __name__ == '__main__': agent = Dueling_DQN() agent.main()
[ "kyushikmin@gmail.com" ]
kyushikmin@gmail.com
a629492186aa2978b196c9518c8c7318a5a90f30
9460c89936efb1043564b22eb538d25cce566806
/exercise_15.py
6e16ab60133ddf6da6024bfc762b2a80d8908d97
[]
no_license
foreverloop/python_pre_exercises
e350daf1c9bb6c7a91d4b4a22823770eb4c241bd
5c5bb1db1115d62fc8d0e3f4deb8d5c60956d601
refs/heads/master
2020-07-26T22:45:58.784142
2019-10-24T19:16:10
2019-10-24T19:16:10
208,787,622
0
0
null
null
null
null
UTF-8
Python
false
false
484
py
""" Exercise 15 (and Solution) Write a program (using functions!) that asks the user for a long string containing multiple words. Print back to the user the same string, except with the words in backwards order. For example, say I type the string: My name is Michele Then I would see the string: Michele is name My shown back to me. """ def choppy_uppy(sentence): words = sentence.split() words.reverse() return words print(choppy_uppy(input("Enter a sentence: ")))
[ "cjones5709@gmail.com" ]
cjones5709@gmail.com
fcf1b5c103056d89f112ff912f52f55eb2e6668f
7b2aac8782c3bde5fb4561fd6189c2e25108239c
/analyse/app/screens/login.py
6eb1bf73304a1c8f73b2056a750e36d589724cee
[]
no_license
tiago-clementino/QVAP
31c6a4a7ae414533a5000d280e9811cc85870d6b
c259677c91e666a2a7aff4be0331ca4bd32f9627
refs/heads/master
2020-06-22T05:48:43.787976
2020-06-12T22:48:12
2020-06-12T22:48:12
197,649,100
0
0
null
null
null
null
UTF-8
Python
false
false
2,385
py
from kivy.uix.screenmanager import Screen from controler.connect_sqlite import Connection from controler.sql_utils import SqlUtils from pathlib import Path class Login(Screen): conn = None email = None def build(self): super(Login, self) def __init__(self, datapath = None): super(Login, self).__init__() Login.conn = Login.get_connection(datapath) #Login.conn = Connection() #Login.conn.create_connection()#Path("data/") / "database.db") @staticmethod def new_connection(datapath = None): Login.conn = Connection() Login.conn.create_connection()#Path("data/") / "database.db") @staticmethod def format_message(msg): return f'"[color=222222][b][/b]{msg}[/color]"' def check_login(self,login=None,password=None,msg=None): if login is not None and password is not None and login.text.strip() != '' and password.text.strip() != '': if SqlUtils.check_login(Login.get_connection(),login.text,password.text,msg): Login.set_login(login.text) self.manager.transition.direction = 'left' self.manager.current = 'recents' # else: # msg.text = 'Login inválido' else: msg.text = Login.format_message( 'Login inválido') #return 'Login inválido' @staticmethod def just_logged(conn): login = SqlUtils.just_logged(conn) Login.set_login(login) return login is not None @staticmethod def set_login(login): if(login is not None and login != ''): Login.email=login @staticmethod def logoff(msg=None): if SqlUtils.logoff(Login.get_connection(),Login.email,msg) > 0: Login.email=None return True return False # @staticmethod # def logoff(msg=None): # if Login.logoff_2(msg): # self.manager.transition.direction = 'right' # self.manager.current = 'login' @staticmethod def get_connection(datapath = None): if(Login.conn == None or not Login.conn.connected()): Login.new_connection(datapath) return Login.conn @staticmethod def close_connection(): if(Login.conn != None and Login.conn.connected()): Login.conn.close_connection()
[ "tiago.luks@gmail.com" ]
tiago.luks@gmail.com
e752b17e0e4d0bf11f9ed7ffe876182729c4680c
801e7af482fe1c8c3fa02d13a281a010f0140061
/events/djangoenv/lib/python2.6/site-packages/pip/exceptions.py
f7079b56c6dc94da6a3fc5148cf132f674ca7f6c
[]
no_license
ratikbhat1/acmwebsite
baff2d97fc5672aeadb38ebc19db37f22144c368
98b6492fa5af01339c6867af906827bd440553f9
refs/heads/master
2021-01-22T02:53:33.255297
2017-09-03T10:26:28
2017-09-03T10:26:28
102,256,551
0
0
null
null
null
null
UTF-8
Python
false
false
967
py
"""Exceptions used throughout package""" class PipError(Exception): """Base pip exception""" class InstallationError(PipError): """General exception during installation""" class UninstallationError(PipError): """General exception during uninstallation""" class DistributionNotFound(InstallationError): """Raised when a distribution cannot be found to satisfy a requirement""" class BestVersionAlreadyInstalled(PipError): """Raised when the most up-to-date version of a package is already installed. """ class BadCommand(PipError): """Raised when virtualenv or a command is not found""" class CommandError(PipError): """Raised when there is an error in command-line arguments""" class PreviousBuildDirError(PipError): """Raised when there's a previous conflicting build directory""" class HashMismatch(InstallationError): """Distribution file hash values don't match."""
[ "ratik.bhatt12@gmail.com" ]
ratik.bhatt12@gmail.com
433e31060105d7ec183dd664229e9c5fe4ee45af
0fa0cb75ecebb32a2f9f2f8f78a17a65e2304d9e
/project/migrations/0002_auto_20200801_1306.py
c813f327e1ada89e50842edb038b168d9ddbb771
[]
no_license
Rupeshyadav9783/DBMS_project_Action_Bid-master
1f309a70d512f6c7aac04504e81815e2b95dc165
58c4681d065dc2dfcd178e9322307b512ce75aa9
refs/heads/master
2023-02-23T00:28:10.286399
2021-01-27T19:20:12
2021-01-27T19:20:12
333,533,578
0
0
null
null
null
null
UTF-8
Python
false
false
512
py
# Generated by Django 3.0.6 on 2020-08-01 13:06 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('project', '0001_initial'), ] operations = [ migrations.AlterField( model_name='item', name='end_interval', field=models.DateField(), ), migrations.AlterField( model_name='item', name='start_interval', field=models.DateField(), ), ]
[ "Rupeshyadav9783@gmail.com" ]
Rupeshyadav9783@gmail.com
de8214dd5f2792bdca5eccdda107e72222c30130
58115fa94a81b02a8b194fe7f1c1cd4ff996df97
/src/anyconfig/schema/__init__.py
1437437066cf8b3c7b6580abe489d66ce4816ad7
[ "MIT" ]
permissive
Terrance-forks/python-anyconfig
9f77de334c162e1c2334a749c29f63bd0294a09b
21d7c0e30287569b394972557b5a54fab03bcd5c
refs/heads/master
2021-06-19T09:11:18.697637
2021-05-17T04:35:10
2021-05-17T04:35:10
202,930,334
0
0
MIT
2019-08-17T20:52:23
2019-08-17T20:52:22
null
UTF-8
Python
false
false
451
py
# # Copyright (C) 2021 Satoru SATOH <satoru.satoh@gmail.com> # SPDX-License-Identifier: MIT # r"""misc global constants, variables, classes and so on. """ try: from .jsonschema import validate, is_valid, gen_schema SUPPORTED: bool = True except ImportError: from .default import validate, is_valid, gen_schema SUPPORTED = False # type: ignore __all__ = [ 'validate', 'is_valid', 'gen_schema', 'SUPPORTED' ] # vim:sw=4:ts=4:et:
[ "satoru.satoh@gmail.com" ]
satoru.satoh@gmail.com
9a6b0bbca87ab02e5f0e4e68b7d4480a2be472b1
281c73dc12641f942693fed9a2f04dd0f1a397d8
/api/urls.py
798fa41da1851954c8de23b4af677e7de7f7e582
[]
no_license
francoCosimo95/django-contact
7adfc45982aff94cf1d01bfba9f6e309f85034b6
fa08e22dead7b4f070bbece900983f6b49196a21
refs/heads/master
2022-09-18T10:31:11.147232
2020-05-26T20:42:13
2020-05-26T20:42:13
267,089,139
0
0
null
null
null
null
UTF-8
Python
false
false
129
py
from django.urls import path from . import views urlpatterns = [ path('send-email', views.send_email, name='send-email'), ]
[ "franco.cosimo95@gmail.com" ]
franco.cosimo95@gmail.com
2200e5d00b4e7f55f91d675065d55986d3c55397
cc85680b699f902af901a8177dc1e6ac97def4d5
/6.py
2869067d8b631fb03205c228757aaaf1cca337d9
[]
no_license
976Evill/day1
3c1f8453cf00f3568bae31d16f7dd2988359603b
fe37b58e613b2a1291498a05d1dffc2e78bc52e8
refs/heads/master
2020-12-20T06:41:42.598168
2020-01-24T13:23:33
2020-01-24T13:23:33
235,990,626
0
0
null
2020-02-17T21:42:03
2020-01-24T11:29:08
Python
UTF-8
Python
false
false
882
py
# Спортсмен занимается ежедневными пробежками. В первый день его результат составил a километров. Каждый день спортсмен # увеличивал результат на 10 % относительно предыдущего.Требуется определить номер дня, на который общий результат # спортсмена составить не менее b километров. Программа должна принимать значения параметров a и b и выводить # одно натуральное число — номер дня. a = float(input('введите начало')) b = float(input('введите конец')) i = 1 while a < b: a = a + a / 10 i += 1 print("День",i,'сулит успех')
[ "an.lebedev@mail.ru" ]
an.lebedev@mail.ru
20762903e5aa9cba8a459c9c72a1e7edc2afca51
c2ede0c8510f607ffd33798104ba30a79771399b
/CL3.py
cc4ba366c9cde70e573809b1b5577d484962c155
[]
no_license
MohammadMohsinKhan/Computing-labs
d147eb1043bed042d78c921641daa2858f1d577a
6d8e14c6dd8da9edab1077d09d5a3eb94c66646a
refs/heads/main
2023-05-14T11:17:44.853432
2021-06-09T02:24:14
2021-06-09T02:24:14
375,201,191
0
0
null
null
null
null
UTF-8
Python
false
false
6,839
py
#!/usr/bin/env python # coding: utf-8 # # Computing 3 Assignment # # --- # ## Background # # Generating statistics from a set of data is a task that computers love. In this assignment, you and your team will be implementing a grade processing system that will generate the mean and standard deviation for a set of final exam grades. # # We will assume that final grades are stored in a list, where each entry in the list is a string with the following format: # # <div align="center"> # "studentNum-finalGrade%" # </div> # # The string represents the final exam mark (*finalGrade*) that the student (*studentNum*) achieved. For example, the cell below contains a list of final exam marks from two students. Student **1007089** achieved a mark of **91%**, and student **1009989** achieved a mark of **77.5%**. # # ``` # grades = ['1007089-91%','1009989-77.5%'] # ``` # # We want to calculate the mean final exam mark from a list of grades. If we assume that we have **N** grades, the mean **$\bar{x}$** can be calculated from the following formula: # # # <br/> # \begin{align} # \bar{x} = \frac{1}{N}\sum_{i=0}^{N-1} x_i \tag{1} # \end{align} # <br/> # # The variable **$x_i$** represents each grade in our list at index i. We assume that we start counting at 0. # # We also want to be able to calculate the standard deviation from a list of grades. The standard deviation measures the amount of variability in our data set. For example, let’s say we want to compute the average and standard deviation for the grades [80, 90, 70, 60]. The average of these grades is 75, and the standard deviation is 11.2. Now imagine we want to compute the average and standard deviation for the grades [80, 76 ,74, 70]. The average of these grades is 75, but the standard deviation is 3.6. Although both sets of grades have the same average, the second set has a smaller standard deviation. The reason is because the grades are not as “spread out” as the grades in the first set. The grades in the second set deviate from their average by a small amount. # # The standard deviation $\sigma$ is calculated using our mean $\bar{x}$ and the following formula: # # <br/> # \begin{align} # \sigma = \sqrt{\frac{1}{N}\sum_{i=0}^{N-1} (x_i-\bar{x})^2} \tag{2} # \end{align} # <br/> # # The requirements of the program are given below. # # # # --- # ## Requirements # # The requirements of the program are given below. Please ensure that your functions have the EXACT naming as specified! Failure to do so will result in lost marks. # # 1. Define a function **extractGrade**(*x*): # - ***x***: A *string* containing a student number and grade in the format "studentNum-Grade%" # - **Return**: The student's grade as a *float*. # # # 2. Define a function **classAverage**(*final_marks*): # - ***final_marks***: A *list* of strings, where each string is formatted as "studentNum-Grade%". # - **Return**: The mean grade of the grades in *final_marks* calculated using equation (1).<br/>*(Hint: Use your **extractGrade** function and a for loop!)* # # # 3. Define a function **classStdDev**(*final_marks*): # - ***final_marks***: A *list* of strings, where each string is formatted as "studentNum-Grade%". # - **Return**: The standard deviation of the grades in *final_marks* calculated using equation (2). # --- # ## Implementation # Please define all functions in the cell below # In[3]: import math def extractGrade(x): grade_percent = list(x.split('-')[1]) grade_percent.remove('%') return ''.join(grade_percent) def classAverage(final_marks): total = 0 #totals the marks of the students for mark in final_marks: total = total + float(extractGrade(mark)) #calculates the average of the students from the total average = total/(len(final_marks)) return average def classStdDev(final_marks): standard_deviation = 0.0 average = classAverage(final_marks) #calculates standard deviation for mark in final_marks: standard_deviation += float((float(extractGrade(mark))-average)**2) standard_deviation = math.sqrt(standard_deviation/len(final_marks)) return standard_deviation # --- # ## Testing # # The following code creates a main function that you can use to test out your code once you have implemented your functions. # # ``` # def main(): # final_exam_grades = ["1003324-71.5%","1001425-99.5%","1009980-86.0%","1001480-84.0%","1005244-87.0%"] # avg = classAverage(final_exam_grades) # std_dev = classStdDev(final_exam_grades) # print("Final exam class average:",round(avg,3),"%") # print("Final exam standard deviation:",round(std_dev,3),"%") # main() # ``` # # Copy the code and paste it into the cell below. Run the cell to verify that your code works correctly with the provided input. The following message should be printed after the main() function above is run: # # >*Final exam class average: 85.6 %<br/> # >Final exam standard deviation: 8.907 %<br/>* # # # # # # # # In[4]: def main(): final_exam_grades = ["1003324-71.5%","1001425-99.5%","1009980-86.0%","1001480-84.0%","1005244-87.0%"] avg = classAverage(final_exam_grades) std_dev = classStdDev(final_exam_grades) print("Final exam class average:",round(avg,3),"%") print("Final exam standard deviation:",round(std_dev,3),"%") main() # Note that your code is not necessarily correct if your output matches the expected output. Your code will be checked against multiple inputs for correctness. The cell above it not graded, so feel free to modify the code as you wish! # --- # ## Reflective Questions # # 1. Assume that you always supply the correctly formatted input into your **classAverage** and **classStdDev** functions. That is, a list where entries are strings that follow the “studentNum-finalGrade%” format. Is there any input that can cause your program to fail? # # 2. How would your code change if the string format was changed from “studentNum-finalGrade%” to “studentNum:finalGrade”? You do not need to implement this change but explain what needs to be modified. # # 3. Can you compute the average and standard deviation grade using a single for loop? Why or why not. # # Please answer all questions in the cell below! # ``` # 1. no since the list with the student number and final grade percent is the only input the functions take. # 2. the seperator in .split would be changed from - to : # 3. no because we need the average to compute the standard deviation. # ``` # --- # ## Submission # # Please download this notebook as a .py file (*File* > *Download as* > *Python (.py)*) and submit it to the Computing Lab 3 dropbox on avenue with the naming convention: macID_CL3.py # # This assignment is due the day after your Lab A section at 11:59 PM EST # # Late labs will not be accepted
[ "noreply@github.com" ]
MohammadMohsinKhan.noreply@github.com
ba0ed28a5efed4abea8f4891d8edfa39bce5a61f
879f7b9a266aabe8b0ed0c48892d5374ecea120d
/www/testing/get_headers.py
d39317ee998eb33db8c48200b04257db0fd6ce65
[ "MIT" ]
permissive
kingslair/WebServer
3bfef5c420b5a4c5c3855cc68bd2c82300a4762d
b72cfdaabc1aaf1d319b7f12f697d224f6fafc69
refs/heads/master
2020-12-03T00:27:30.751312
2018-02-03T13:07:46
2018-02-03T13:07:46
96,032,411
2
1
null
null
null
null
UTF-8
Python
false
false
618
py
import pycurl import re try: from io import BytesIO except ImportError: from StringIO import StringIO as BytesIO headers = {} def header_function(header_line): # Header lines include the first status line (HTTP/1.1) # split on multiple lines if ':' not in header_line: return # Break the header line into header name and value. name, value = header_line.split(':', 1) # Remove whitespace that may be present. name = name.strip() value = value.strip() # Lower the case name = name.lower() # Record the header name and value. headers[name] = value
[ "noreply@github.com" ]
kingslair.noreply@github.com
eb9dbdab539ebde689048650bd5d4420b714e74b
7eae4b6cda54d295fd24314115aa92036c4e717f
/treewidget/apps.py
8cb3090a0b5aa1e46df2caed62141f092da258d0
[ "MIT" ]
permissive
jphilip/django-treewidget
98ef6179d2befddb735a5516559ef9c26d8811e5
e2eff61f98ea7a520f29a4ed7395ec75d134246b
refs/heads/master
2022-11-14T09:54:41.424408
2020-06-29T00:59:31
2020-06-29T00:59:31
275,692,793
0
0
MIT
2020-06-29T00:25:31
2020-06-29T00:25:31
null
UTF-8
Python
false
false
160
py
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.apps import AppConfig class TreewidgetConfig(AppConfig): name = 'treewidget'
[ "jerch@rockborn.de" ]
jerch@rockborn.de
8c2f0b050b1fca1bf2bd0e8619d03e16d3f3c9a6
0e0ef4223d12714949709939166fa225ceec7204
/tyler_github/ETL_hiyd.py
538838a25ad01a82190301f43c00f85908b89ce0
[]
no_license
Chris12081/recipe_recommender
9c5695f7541b67a7b6c99432e0394ec297e158f8
1fb7aa45f6f81e470e93c990c53c823138361f24
refs/heads/master
2022-12-23T00:31:47.037269
2020-09-27T06:59:45
2020-09-27T06:59:45
295,070,601
0
0
null
2020-09-13T03:28:07
2020-09-13T03:28:06
null
UTF-8
Python
false
false
6,766
py
# hiyd import requests from bs4 import BeautifulSoup import os import csv import json import time import random from opencc import OpenCC import math from urllib.parse import urlparse # 將簡轉繁 str =OpenCC('s2t') #print(str.convert(file)) #目標網址 url = 'https://www.hiyd.com/bb/?page=%s' headers={} ua = '''User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 Referer: https://www.hiyd.com/bb/ # Connection: keep-alive # Cookie: _webp=1; coach_gender=1; Hm_lvt_27e0b89fc1f2e9d960a18d82d5f98dbd=1598705109,1598886716,1599149346,1599198467; Hm_lpvt_27e0b89fc1f2e9d960a18d82d5f98dbd=1599235292 # Host: www.hiyd.com''' for i in ua.split("\n"): headers[i.split(": ")[0]] = i.split(": ")[1] # 建立目標目錄及資料夾 resource_path = r'./hiyd' ##需要修改 if not os.path.exists(resource_path): os.mkdir(resource_path) resource_path = r'./hiyd/hiyd_txt' ##需要修改 if not os.path.exists(resource_path): os.mkdir(resource_path) resource_path = r'./hiyd/hiyd_json' ##需要修改 if not os.path.exists(resource_path): os.mkdir(resource_path) start = time.time() def getArticle(page): pages = 1 for times in range(page): #pages res = requests.get(url%(pages), headers=headers) print('目前在第%s頁'%(pages)) # print(res) soup = BeautifulSoup(res.text,'html.parser') # print(soup) title = soup.select('h2') # print(title[0].text) for t in title: title_name = t.findAll('a')[0].text title_name_1 = str.convert(title_name) print(str.convert(title_name)) filepath = './hiyd/hiyd_json/%s.json' % (title_name_1).replace('/','_') if os.path.isfile(filepath): print("gotcha") continue else: print("New for start") print('---') title_url = 'https://'+ t.findAll('a')[0]['href'][2:] # print(title_url) # print('---') url_2 = 'https:'+ t.findAll('a')[0]['href'] res_2 = requests.get(url_2, headers=headers) soup_2 = BeautifulSoup(res_2.text,'html.parser') # print(soup_2.text) time_strengh = soup_2.select('div.hd-row2') time_strengh_1 = str.convert(time_strengh[0].text) time_strengh_2 = time_strengh_1.split() # print(time_strengh_2) times = time_strengh_2[1] print(times) strengh = time_strengh_2[2].split(':') print(strengh[1]) # print(str.convert(time_strengh[0].text)) # print('---') describe = soup_2.select('div.box-info-bd') describe_1 = str.convert(describe[0].text) # print(str.convert(describe[0].text)) # print('---') daily_count = int((len(soup_2.find_all('td')))) print(daily_count) lession_json = [] daily_a = [] u = 45 dt = 6 for d in range(daily_count): try: # print(dt) url_4 = 'https:'+soup_2.find_all('a')[u]['href'] res_4 = requests.get(url_4, headers=headers) soup_4 = BeautifulSoup(res_4.text, 'html.parser') # url_3 = 'https://www.hiyd.com/bb/438_%s/'%(i+1) print(url_4) a = urlparse(url_4) if 'dongzuo' in a[2]: print('out') continue daily_title_4 = soup_4.find_all('span') # daily_title_1 = '第 %s 天:'%(d+1) + str.convert(daily_title[d].text) # daily_title_3_1 = '第 %s 天:' % (d + 1) + str.convert(daily_title_3[dt].text) daily_title_4_1 = str.convert(daily_title_4[3].text) + ':'+ str.convert(daily_title_4[4].text) print(daily_title_4_1) print('------項目數------') print(len(soup_4.select('div.action-list-wrap'))) item = int(len(soup_4.select('div.action-list-wrap'))) item_list = [] except requests.exceptions.InvalidURL: print('off day') u += 1 dt += 1 continue item_list = [] try: for i in range(item): # print(item) daily_url = soup_2.select('a.row-item') # url_4 = 'https:'+soup_2.find_all('a')[u]['href'] # url_3 = 'https://www.hiyd.com/bb/438_%s/'%(i) # u += 1 # res_4 = requests.get(url_4, headers=headers) # soup_4 = BeautifulSoup(res_4.text, 'html.parser') # print(soup_3.select('div.cont-wrap')[i].text) item_1 = str.convert(soup_4.select('div.action-list-wrap')[i].text) item_list.append(item_1) u += 1 dt += 1 except IndexError: pass value_item = {daily_title_4_1: item_list} daily_a.append(value_item) sleeptime_1 = random.randint(7,13) time.sleep(sleeptime_1) print('睡 %s 秒' % (sleeptime_1)) value = {'url': title_url, 'title': title_name_1, 'lesson': daily_a, 'lesson_time': times, 'strengh': strengh[1], 'describe': describe_1, 'time': 0, 'author': 0} lession_json.append(value) with open('./hiyd/hiyd_txt/%s.txt' % (title_name_1), 'w', encoding='utf-8-sig') as f: #.replace('/','_') f.write(title_name) f.write('\n') f.write(title_url) f.write('\n') f.write(time_strengh_1) f.write('\n') f.write(describe_1) transform_json_string = json.dumps(lession_json, ensure_ascii=False) # ensure_ascii=False (要加這個文字才不會變成數字) with open('./hiyd/hiyd_json/%s.json' % (title_name_1).replace('/','_'), 'w', encoding='utf-8') as j: j.write(transform_json_string) sleeptime=random.randint(5, 10) time.sleep(sleeptime) print('睡 %s 秒'%(sleeptime)) pages += 1 print(pages) if __name__ == '__main__': result = getArticle(15) ##需要修改 end = time.time() print('執行時間:%f 秒'%(end - start))
[ "42105981+Chris12081@users.noreply.github.com" ]
42105981+Chris12081@users.noreply.github.com
85eda3f8b38bed558d438173297d47a8f3824eb1
f0b4cbec08d6989a4fa4f03f2525dce41ab25e48
/docs/source/_static/zzz_GENERATED_NOTEBOOK_SOURCE/tertiary/pandas-lmm.py
1e9875ad6ff9e0922b6436bb81e2de35f22f1c7e
[ "BSD-3-Clause", "Apache-2.0", "MIT" ]
permissive
lanastazia/glow
8f6e3406d57969b0459e8057f69cbc7755e11bbb
a0b1dd6846e0449360d74adbe882ca70948a9343
refs/heads/master
2023-01-10T02:54:45.529724
2020-11-17T22:26:05
2020-11-17T22:26:05
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,288
py
# Databricks notebook source # MAGIC %md # MAGIC # Using Pandas UDFs with Genomic Data # MAGIC [Pandas UDFs](https://databricks.com/blog/2017/10/30/introducing-vectorized-udfs-for-pyspark.html) provide a fast way to use Python libraries with Apache Spark™ DataFrames. # MAGIC # MAGIC In this notebook, we demonstrate how to use this functionality to apply the linear mixed model implementation from the popular [statsmodels](https://www.statsmodels.org/stable/mixed_linear.html?highlight=linear%20mixed%20model) library to a DataFrame of genomic data from the [1000 genomes project](https://www.internationalgenome.org/). The population as provided by 1000 genomes sample annotations is used as the grouping variable. # COMMAND ---------- import pyspark.sql.functions as fx import pandas as pd import statsmodels.api as sm import numpy as np from pyspark.sql.types import DoubleType import glow glow.register(spark) #this line is not required when running on databrikcs genomics runtime # COMMAND ---------- # DBTITLE 1,Get the population annotation for samples in 1000genomes phase 3 pop = pd.read_csv('ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/release/20130502/integrated_call_samples_v2.20130502.ALL.ped', sep='\t') pop.head(5) # COMMAND ---------- groups = pop[pop['phase 3 genotypes'] == 1]['Population'] groups_bc = sc.broadcast(groups) # COMMAND ---------- # DBTITLE 1,Define a function to fit one LMM def run_one_lmm(genotypes, phenotypes, groups): try: intercept = np.ones(genotypes.size) genotypes = genotypes.copy() x = np.stack([intercept, genotypes], axis = 1) # Return p-value for genotype coefficient return sm.MixedLM(phenotypes, x, groups).fit().pvalues[1] except np.linalg.LinAlgError: # Could not fit model, return NaN return float('nan') # COMMAND ---------- # DBTITLE 1,Define a function to fit an LMM from Pandas series of phenotypes and phenotypes def lmm(genotypes_series, phenotypes_series): groups = groups_bc.value df = pd.concat([genotypes_series, phenotypes_series], axis = 1) return pd.Series([run_one_lmm(r[0], r[1], groups) for r in df.values]) lmm_udf = fx.pandas_udf(lmm, returnType=DoubleType()) # COMMAND ---------- # DBTITLE 1,Prepare the input DataFrame """ Read in 1000genomes phase 3 chr 22 and split multiallelic sites to biallelic. Add the phenotypes by cross joining with the genomic DataFrame. The input to the lmm is the genotype represented as the number of alt alleles (0, 1, or 2). In this example, we remove all sites where some samples are missing (as represented by -1). """ df = glow.transform( \ "split_multiallelics", \ spark.read.format("vcf").load("/databricks-datasets/genomics/1kg-vcfs/*chr22*.vcf.gz") \ ) \ .crossJoin(spark.read.format("parquet").load("/databricks-datasets/genomics/1000G/phenotypes.normalized/")) \ .withColumn('genotype_states', fx.expr("genotype_states(genotypes)")) \ .where(~fx.array_contains(fx.col('genotype_states'), -1)) # COMMAND ---------- # DBTITLE 1,Run the UDF and display results by_pvalue = df.limit(1000).select("contigName", "start", "names", lmm_udf(df['genotype_states'], df['values']).alias("pValue"))\ .na.drop(subset=["pValue"])\ .orderBy("pValue", ascending=True) display(by_pvalue)
[ "noreply@github.com" ]
lanastazia.noreply@github.com
89018a833caf16c361c788be55349a65e85782d1
30e58b930c31526a1e226a928bc77e23f232080e
/mapfunctions/plotMaker.py
e04deb5fbb17956d5e7c3e0ca08b53359a0972c8
[]
no_license
bbw7561135/anisotropy
c8688f9d705234c6a90f607acb3e8cc28ea5be28
a21f85788c16d8aa14fc5934f476def4c8954f34
refs/heads/master
2021-06-01T05:35:48.727845
2016-05-13T00:27:37
2016-05-13T00:27:37
null
0
0
null
null
null
null
UTF-8
Python
false
false
12,679
py
#!/usr/bin/env python import subprocess, glob, math, os, argparse import myGlobals as my from anisotropy.icesim.analysis import readDist as readDist_IC from anisotropy.topsim.analysis import readDist as readDist_IT from anisotropy.mapfunctions.energyCuts import getEbins, getEnergyMaps def medianLabel(config, emin, emax): if config[:2] == 'IC': median, sigL, sigR = readDist_IC(config, emin, emax) if config[:2] == 'IT': median, sigL, sigR = readDist_IT(config, emin, emax) median = 10**(9+median) median = round(median, -int(math.floor(math.log10(median))) + 1) if median >= 1e15: return '%.1fPeV' % (median / 1e15) if median >= 1e12: if median >= 1e13: return '%iTeV' % (median / 1e12) return '%.1fTeV' % (median / 1e12) if __name__ == "__main__": # Global variables setup for path names my.setupAnisotropy(verbose=False) mapPrefix = my.ani_maps p = argparse.ArgumentParser( description='Makes all plots for anisotropy paper') p.add_argument('-b', '--batch', dest='batch', default=False, action='store_true', help='Option to not show interactive plots') p.add_argument('--largesmall', dest='largesmall', default=False, action='store_true', help='Large and small scale structure maps for IceCube') p.add_argument('--unsmoothed', dest='unsmoothed', default=False, action='store_true', help='Unsmoothed relative intensity map') p.add_argument('--ic59', dest='ic59', default=False, action='store_true', help='IC59 20deg smoothed map for comparison') p.add_argument('--it', dest='it', default=False, action='store_true', help='IceTop relint & sig maps') p.add_argument('--square', dest='square', default=False, action='store_true', help='Square subset maps for comparison of small-scale features') p.add_argument('--ebins', dest='ebins', default=False, action='store_true', help='IceCube maps binned in energy') p.add_argument('--polar', dest='polar', default=False, action='store_true', help='IceCube maps binned in energy (polar view)') p.add_argument('--powerspec', dest='powerspec', default=False, action='store_true', help='Power spectrum plot') p.add_argument('--solar', dest='solar', default=False, action='store_true', help='Solar dipole maps') p.add_argument('--dipole', dest='dipole', default=False, action='store_true', help='Plot dipole phase as a function of energy') p.add_argument('--minima', dest='minima', default=False, action='store_true', help='Plot phase of absolute minimum as a function of energy') p.add_argument('--reco', dest='reco', default=False, action='store_true', help='Plot table used for IC energy reconstructions') p.add_argument('--edist', dest='edist', default=False, action='store_true', help='Plot true energy distributions for reco energy bins') p.add_argument('--edist2', dest='edist2', default=False, action='store_true', help='Plot true energy distributions for reco energy bins') p.add_argument('--proj', dest='proj', default=False, action='store_true', help='Plot 1D projection for sid + solar') p.add_argument('--projerr', dest='projerr', default=False, action='store_true', help='Plot 1D projection for anti + ext') p.add_argument('--projcomp', dest='projcomp', default=False, action='store_true', help='Plot 1D projection for each year') p.add_argument('--smallscale', dest='smallscale', default=False, action='store_true', help='Relative intensity for each small-scale region over time') p.add_argument('--all', dest='all', default=False, action='store_true', help='Make all plots') args = p.parse_args() opts = vars(args) if args.all: opts = {key:True for key in opts} argList = [] outDir = '/home/jbourbeau/anisotropy/paperplots/' if not os.path.isdir(outDir): outDir = '/home/jbourbeau/' ext = 'png' batch = args.batch ##========================================================================= ## Skymaps cmd = '{}/mapfunctions/plotFITS.py'.format(my.ani_home) defArgs = '-o --mask --outDir {} --ext {}'.format(outDir, ext) if batch: defArgs += ' -b' # Large- and small-scale structure mapFile = mapPrefix + '/IC_24H_sid.fits' #a = [mapFile+' -n relint -S 5 -s 3 -m -1.5 -M 1.5 --half'] a = [mapFile+' -n relint -S 5 -s 3 -m -1.5 -M 1.5 --half --gplane'] a += [mapFile+' -n relint -S 5 -s 4 -m -5 -M 5 --multi 2 --half --gplane'] #a += [mapFile+' -n signal -S 5 -m -45 -M 30 --half'] #a += [mapFile+' -n signal -S 5 -m -9 -M 9 --multi 2 --half'] a += [mapFile+' -n signal -S 5 -m -45 -M 45 --half --gplane'] a += [mapFile+' -n signal -S 5 -m -12 -M 12 --multi 2 --half --gplane'] if opts['largesmall']: argList += a # Unsmoothed relative intensity mapFile = mapPrefix + '/IC_24H_sid.fits' a = ['-f '+mapFile+' -n relint -s 3 --half -m -2 -M 2'] a += ['--customOut IC_relint_unsmoothed'] if opts['unsmoothed']: argList += a # IC59 map mapFile = mapPrefix + '/IC59_24H_sid.fits' a = ['-f '+mapFile+' -n relint -S 20 -s 4 -m -2 -M 2 --multi 2 --half'] if opts['ic59']: argList += a # IceTop maps mapFile = mapPrefix + '/IT_24H_sid_STA8.fits' #a = [mapFile+' -n relint -S 20 -s 3 -m -3 -M 3'] #a += [mapFile+' -n signal -S 20 -m -9 -M 9'] label = medianLabel('IT', 8, 100) a = '%s -n relint -S 20 -s 3 -m -3 -M 3 --llabel %s' % (mapFile, label) a += ' --rlabel IceTop --half' if opts['it']: argList += [a] # Anisotropy as a function of energy a = [] eBins = getEbins() eMins, eMaxs = eBins[:-1], eBins[1:] mapFiles = getEnergyMaps('IC') for i, f in enumerate(mapFiles): mapFile = ' '.join(f) label = medianLabel('IC', eMins[i], eMaxs[i]) tempArgs = '%s -n relint -S 20 -s 3 --llabel %s' % (mapFile, label) tempArgs += ' --half' minmax = 3 if float(eMins[i]) >= 6.5 else 1 tempArgs += ' -m -%i -M %i' % (minmax, minmax) # Custom naming for merged file if len(f) > 1: tempArgs += ' --customOut IC_24H_sid_5pt5-6GeV_relint_20deg' a += [tempArgs] if opts['ebins']: argList += a # Polar plots a = [] for i, f in enumerate(mapFiles): mapFile = ' '.join(f) label = medianLabel('IC', eMins[i], eMaxs[i]) tempArgs = '%s -n relint -S 20 -s 3 --polar' % mapFile tempArgs += ' --llabel %s' % label minmax = 3 if float(eMins[i]) >= 6.5 else 1 tempArgs += ' -m -%i -M %i' % (minmax, minmax) if len(f) > 1: tempArgs += ' --customOut IC_24H_sid_5pt5-6GeV_relint_20deg_polar' a += [tempArgs] label = medianLabel('IT', 8, 100) mapFile = '%s/IT_24H_sid_STA8.fits' % mapPrefix a += ['%s -n relint -S 20 -s 3 -m -3 -M 3 --polar --llabel %s --rlabel %s' % \ (mapFile, label, 'IceTop')] if opts['polar']: argList += a # Solar dipole mapFile = mapPrefix + '/IC_24H_solar.fits' a = [mapFile+' -n relint -S 20 -s 4 -m -3 -M 3 --half'] a += [mapFile+' -n signal -S 20 -m -33 -M 33 --half'] mapFile = mapPrefix + '/IT_24H_solar_NotSTA8.fits' mapFile += ' %s/IT_24H_solar_STA8.fits' % mapPrefix newArg = mapFile+' -n relint -S 20 -s 4 -m -3 -M 3 --half' newArg += ' --customOut IT_24H_solar_relint' a += [newArg] newArg = mapFile+' -n signal -S 20 -m -3.5 -M 3.5 --half' newArg += ' --customOut IT_24H_solar_signal' a += [newArg] if opts['solar']: argList += a # Apply default arguments and plot command function argList = ['{} {} {}'.format(cmd, a, defArgs) for a in argList] for a in argList: a = a.split(' ') proc = subprocess.Popen(a) ##========================================================================= ## Other plots # Square comparison maps if opts['square']: cmd = '%s/mapFunctions/plotFITS.py' % my.ani_home mapFile = mapPrefix + '/IC_24H_sid.fits' a = '%s %s -n signal -S 5 -m -12 -M 12 --multi 2' % (cmd, mapFile) a += ' --ramin -90 --ramax 0 --decmin -80 --decmax -35' a += ' -o --mask --outDir %s --ext %s' % (outDir, ext) a += ' --customOut IC_24H_square' if batch: a += ' -b' proc = subprocess.Popen(a.split(' ')) # Recreate IC59 original map b = a.replace('IC_', 'IC59_') b = b.replace('-S 5', '-S 20') proc = subprocess.Popen(b.split(' ')) # Power spectrum out = outDir + 'IC_Power_Spectrum.' + ext if opts['powerspec']: mapFile = '%s/maps/merged/IC_24H_sid.fits' % my.ani_data cmd = 'python %s/polspice/spice.py' % my.ani_home a = '%s %s -a 1 -A 130 -t 140 --multi 2 -o %s' % (cmd, mapFile, out) #a += ' --nofull' a = a.split(' ') if batch: a += ['-b'] proc = subprocess.Popen(a) # Dipole phase #out = outDir + 'IC_Dipole_Phase.' + ext #if opts['dipole']: # from anisotropy.mapFunctions.dipolePlot import energyPlot # offset = 90 # energyPlot(offset=offset, out=out, batch=batch) #out = outDir + 'IC_Minimum_Phase.' + ext #if opts['minima']: # from anisotropy.mapFunctions.dipolePlot import minimumPlot # offset=90 # minimumPlot(offset=offset, out=out, batch=batch) if opts['dipole']: out = '{}/IC_Dipole.{}'.format(outDir, ext) cmd = 'python {}/mapfunctions/phasePlot.py'.format(my.ani_home) a = '{} -f energy -l 3 -o {} --offset 90 -n 72'.format(cmd, out) #a = '%s -f energy -l 4 -o %s --offset 90' % (cmd, out) a = a.split(' ') if batch: a += ['-b'] proc = subprocess.Popen(a) # Reconstructed energy table config = 'IC59' out = outDir + config+'_Median_Energy.' + ext if opts['reco']: from anisotropy.icesim.plots import reco_energy_plot reco_energy_plot(config, out=out, batch=batch) # Energy distribution plot config = 'IC86' out = outDir + config+'_Energy_Distributions.' + ext if opts['edist']: from anisotropy.icesim.plots import eres eres(config, out=out, batch=batch) config = 'IC59' out = outDir + config+'_Energy_Dist2.' + ext if opts['edist2']: from anisotropy.icesim.plots import eres2 eres2(config, out=out, batch=batch) # One-dimensional projection out = outDir + 'IC_proj1d.' + ext mapTypes = ['sid','solar'] #mapTypes = ['anti','ext'] if opts['proj']: mapFiles = ['%s/IC_24H_%s.fits' % (mapPrefix, i) \ for i in mapTypes] a = ['%s/mapFunctions/proj1d.py' % my.ani_home] a += mapFiles a += ['-z','-o',out,'--syserr','--labels','method'] #a += ['-z','-o',out] if batch: a += ['-b'] proc = subprocess.Popen(a) # One-dimensional projection out = outDir + 'IC_proj1d_err.' + ext mapTypes = ['anti','ext'] if opts['projerr']: mapFiles = ['%s/IC_24H_%s.fits' % (mapPrefix, i) \ for i in mapTypes] a = ['%s/mapFunctions/proj1d.py' % my.ani_home] a += mapFiles a += ['-z','-o',out,'--labels','method'] if batch: a += ['-b'] proc = subprocess.Popen(a) # One-dimensional projection for each year if opts['projcomp']: cmd = '%s/mapFunctions/proj1d.py' % my.ani_home configs = ['IC59','IC79','IC86','IC86-II','IC86-III','IC86-IV'] files = ['%s/%s_24H_sid.fits' % (mapPrefix, cfg) for cfg in configs] files = ' '.join(files) out = outDir + 'IC_proj1d_comp.' + ext a = '%s %s -z -o %s --syserr --labels configs' % (cmd, files, out) if batch: a += ' -b' proc = subprocess.Popen(a.split(' ')) if opts['smallscale']: cmd = 'python %s/mapFunctions/testsmall.py' % my.ani_home out = outDir + 'IC_SmallScale.' + ext a = '%s --paper -o %s' % (cmd, out) if batch: a += ' -b' proc = subprocess.Popen(a.split(' '))
[ "jrbourbeau@gmail.com" ]
jrbourbeau@gmail.com
09f998de7dcca8599e073172fe53fca8fc5bb7b8
146b91445ee91a1f02b551e9075b584165aec9f9
/software-assignment-3-master/software-assignment-3-master/todo/forms.py
c4a95bc994f25ecf1b6dadc9e60e9f92065bd326
[]
no_license
SeldaEmir/Django_Blog_Practises
39f8f666f35a54eda28011b89c1ba573783793d7
ac095fd366366f0532b5c8ea4faf55e85bb22d06
refs/heads/master
2021-09-08T22:45:59.078688
2018-03-12T15:50:02
2018-03-12T15:50:02
null
0
0
null
null
null
null
UTF-8
Python
false
false
25
py
__author__ = 'seldaemir'
[ "noreply@github.com" ]
SeldaEmir.noreply@github.com
98730ea9cabba62f347e29709bcad21695798feb
b6dce5523115d7e51ce1c5bf11ca963f9a17f04c
/shift/utils/timer.py
4be249aeb97ad182f8bf6179f4a88b92a227a55e
[ "MIT" ]
permissive
fyabc/Py2016
1fcb345df6bcd89348686e13337158aa4325a8e0
a7e2b4ad11c96be97107821defef379d6e6f7595
refs/heads/master
2020-12-29T02:37:17.580568
2017-02-27T16:18:02
2017-02-27T16:18:02
54,388,415
1
0
null
null
null
null
UTF-8
Python
false
false
2,084
py
# -*- coding: utf-8 -*- __author__ = 'fyabc' import pygame import time class ShiftTimer: """The Timer of this game. Copied from pgu.timer. This is a singleton class. Do NOT have two ShiftTimer object at the same time. """ # The game time when one of the clock parameters was last changed lastGameTime = None # The real time corresponding to the last game time lastRealTime = None # The game time when 'tick' was last called lastTickTime = None # Whether the timer is paused or not paused = False # When this clock was created startTime = None # The speed which this clock moves at relative to the real clock speed = 1 def __init__(self): self.lastGameTime = 0 self.lastTickTime = 0 self.lastRealTime = time.time() self.startTime = time.time() # Set the rate at which this clock ticks relative to the real clock def set_speed(self, n): assert (n >= 0) self.lastGameTime = self.getTime() self.lastRealTime = time.time() self.speed = n # Pause the clock def pause(self): if not self.paused: self.lastGameTime = self.getTime() self.lastRealTime = time.time() self.paused = True # Resume the clock def resume(self): if self.paused: self.paused = False self.lastRealTime = time.time() def tick(self, fps=0): tm = self.getTime() dt = tm - self.lastTickTime if fps > 0: minTime = 1.0 / fps if dt < minTime: pygame.time.wait(int((minTime - dt) * 1000)) dt = minTime self.lastTickTime = tm return dt # Returns the amount of 'game time' that has passed since creating # the clock (paused time does not count). def getTime(self): if self.paused: return self.lastGameTime return self.speed * (time.time() - self.lastRealTime) + self.lastGameTime def getRealTime(self): return time.time() - self.startTime
[ "fyabc@mail.ustc.edu.cn" ]
fyabc@mail.ustc.edu.cn
2db6b9d03d9ffa6ad05fa7db612b7e2db5364dd6
facb8b9155a569b09ba66aefc22564a5bf9cd319
/wp2/merra_scripts/02_preprocessing/merraLagScripts/443-tideGauge.py
1cfa0de339d2f9659ec80f2176dd2e40a6ad8413
[]
no_license
moinabyssinia/modeling-global-storm-surges
13e69faa8f45a1244a964c5de4e2a5a6c95b2128
6e385b2a5f0867df8ceabd155e17ba876779c1bd
refs/heads/master
2023-06-09T00:40:39.319465
2021-06-25T21:00:44
2021-06-25T21:00:44
229,080,191
0
0
null
null
null
null
UTF-8
Python
false
false
3,772
py
# -*- coding: utf-8 -*- """ Created on Tue Mar 31 17:12:23 2020 **************************************************** Load predictors & predictands + predictor importance **************************************************** @author: Michael Tadesse """ #import packages import os import pandas as pd import datetime as dt #used for timedelta from datetime import datetime #define directories # dir_name = 'F:\\01_erainterim\\03_eraint_lagged_predictors\\eraint_D3' dir_in = "/lustre/fs0/home/mtadesse/merraAllCombined" dir_out = "/lustre/fs0/home/mtadesse/merraAllLagged" def lag(): os.chdir(dir_in) #get names tg_list_name = sorted(os.listdir()) x = 443 y = 444 for tg in range(x, y): os.chdir(dir_in) tg_name = tg_list_name[tg] print(tg_name, '\n') pred = pd.read_csv(tg_name) #create a daily time series - date_range #get only the ymd of the start and end times start_time = pred['date'][0].split(' ')[0] end_time = pred['date'].iloc[-1].split(' ')[0] print(start_time, ' - ', end_time, '\n') date_range = pd.date_range(start_time, end_time, freq = 'D') #defining time changing lambda functions time_str = lambda x: str(x) time_converted_str = pd.DataFrame(map(time_str, date_range), columns = ['date']) time_converted_stamp = pd.DataFrame(date_range, columns = ['timestamp']) """ first prepare the six time lagging dataframes then use the merge function to merge the original predictor with the lagging dataframes """ #prepare lagged time series for time only #note here that since MERRA has 3hrly data #the lag_hrs is increased from 6(eraint) to 31(MERRA) time_lagged = pd.DataFrame() lag_hrs = list(range(0, 31)) for lag in lag_hrs: lag_name = 'lag'+str(lag) lam_delta = lambda x: str(x - dt.timedelta(hours = lag)) lag_new = pd.DataFrame(map(lam_delta, time_converted_stamp['timestamp']), \ columns = [lag_name]) time_lagged = pd.concat([time_lagged, lag_new], axis = 1) #datafrmae that contains all lagged time series (just time) time_all = pd.concat([time_converted_str, time_lagged], axis = 1) pred_lagged = pd.DataFrame() for ii in range(1,time_all.shape[1]): #to loop through the lagged time series print(time_all.columns[ii]) #extracting corresponding tag time series lag_ts = pd.DataFrame(time_all.iloc[:,ii]) lag_ts.columns = ['date'] #merge the selected tlagged time with the predictor on = "date" pred_new = pd.merge(pred, lag_ts, on = ['date'], how = 'right') pred_new.drop('Unnamed: 0', axis = 1, inplace = True) #sometimes nan values go to the bottom of the dataframe #sort df by date -> reset the index -> remove old index pred_new.sort_values(by = 'date', inplace=True) pred_new.reset_index(inplace=True) pred_new.drop('index', axis = 1, inplace= True) #concatenate lagged dataframe if ii == 1: pred_lagged = pred_new else: pred_lagged = pd.concat([pred_lagged, pred_new.iloc[:,1:]], axis = 1) #cd to saving directory os.chdir(dir_out) pred_lagged.to_csv(tg_name) os.chdir(dir_in) #run script lag()
[ "michaelg.tadesse@gmail.com" ]
michaelg.tadesse@gmail.com
64411eeed18edf4d09de5cf319c24119d1bea4e2
facb8b9155a569b09ba66aefc22564a5bf9cd319
/wp2/era5_scripts/02_preprocessing/lag82/443-tideGauge.py
00c7b277a09c1bb696c020bb8ff48ee0b7724626
[]
no_license
moinabyssinia/modeling-global-storm-surges
13e69faa8f45a1244a964c5de4e2a5a6c95b2128
6e385b2a5f0867df8ceabd155e17ba876779c1bd
refs/heads/master
2023-06-09T00:40:39.319465
2021-06-25T21:00:44
2021-06-25T21:00:44
229,080,191
0
0
null
null
null
null
UTF-8
Python
false
false
3,984
py
# -*- coding: utf-8 -*- """ Created on Tue Mar 31 17:12:23 2020 **************************************************** Load predictors & predictands + predictor importance **************************************************** @author: Michael Tadesse """ #import packages import os import pandas as pd import datetime as dt #used for timedelta from datetime import datetime #define directories dir_in = '/lustre/fs0/home/mtadesse/ereaFiveCombine' dir_out = '/lustre/fs0/home/mtadesse/eraFiveLag' def lag(): os.chdir(dir_in) #get names tg_list_name = os.listdir() x = 443 y = 444 for t in range(x, y): tg_name = tg_list_name[t] print(tg_name, '\n') # #check if the file exists # os.chdir(dir_out) # if (os.path.isfile(tg_name)): # print('file already exists') # continue #cd to where the actual file is os.chdir(dir_in) pred = pd.read_csv(tg_name) pred.sort_values(by = 'date', inplace=True) pred.reset_index(inplace = True) pred.drop('index', axis = 1, inplace = True) #create a daily time series - date_range #get only the ymd of the start and end times start_time = pred['date'][0].split(' ')[0] end_time = pred['date'].iloc[-1].split(' ')[0] print(start_time, ' - ', end_time, '\n') date_range = pd.date_range(start_time, end_time, freq = 'D') #defining time changing lambda functions time_str = lambda x: str(x) time_converted_str = pd.DataFrame(map(time_str, date_range), columns = ['date']) time_converted_stamp = pd.DataFrame(date_range, columns = ['timestamp']) """ first prepare the six time lagging dataframes then use the merge function to merge the original predictor with the lagging dataframes """ #prepare lagged time series for time only #note here that since ERA20C has 3hrly data #the lag_hrs is increased from 6(eraint) to 11 (era20C) time_lagged = pd.DataFrame() lag_hrs = [0, 6, 12, 18, 24, 30] for lag in lag_hrs: lag_name = 'lag'+str(lag) lam_delta = lambda x: str(x - dt.timedelta(hours = lag)) lag_new = pd.DataFrame(map(lam_delta, time_converted_stamp['timestamp']), \ columns = [lag_name]) time_lagged = pd.concat([time_lagged, lag_new], axis = 1) #datafrmae that contains all lagged time series (just time) time_all = pd.concat([time_converted_str, time_lagged], axis = 1) pred_lagged = pd.DataFrame() for ii in range(1,time_all.shape[1]): #to loop through the lagged time series print(time_all.columns[ii]) #extracting corresponding tag time series lag_ts = pd.DataFrame(time_all.iloc[:,ii]) lag_ts.columns = ['date'] #merge the selected tlagged time with the predictor on = "date" pred_new = pd.merge(pred, lag_ts, on = ['date'], how = 'right') pred_new.drop('Unnamed: 0', axis = 1, inplace = True) #sometimes nan values go to the bottom of the dataframe #sort df by date -> reset the index -> remove old index pred_new.sort_values(by = 'date', inplace=True) pred_new.reset_index(inplace=True) pred_new.drop('index', axis = 1, inplace= True) #concatenate lagged dataframe if ii == 1: pred_lagged = pred_new else: pred_lagged = pd.concat([pred_lagged, pred_new.iloc[:,1:]], axis = 1) #cd to saving directory os.chdir(dir_out) pred_lagged.to_csv(tg_name) os.chdir(dir_in) #run script lag()
[ "michaelg.tadesse@gmail.com" ]
michaelg.tadesse@gmail.com
8f57299beb40db7fc9f5beef5454e07a4da6a9f9
4082ed3200c7540c472257fb6f2901b3038075c5
/Ta3bi2a/setup.py
a9dcd8ad9635baee9e7a0cfc302607b67917e553
[]
no_license
rachid-amk/ta3bi2a
fd4dceb91dda50c3a63c5ef4b0e318b2909af62e
bdb13662845a86b03a6841208b501c4089d0d00f
refs/heads/master
2020-06-17T07:14:22.281396
2019-07-08T15:50:14
2019-07-08T15:50:14
195,842,570
1
0
null
null
null
null
UTF-8
Python
false
false
378
py
try: from setuptools import setup except ImportError: from distutils.core import setup config = { 'description': '', 'author': 'rachid_amk', 'url': '', 'download_url': '', 'author_email': 'rachid.drid@gmail.com', 'version': '0.1', 'install_requires': ['random'], 'packages': [''], 'script': [], 'name': '' } setup(**config)
[ "noreply@github.com" ]
rachid-amk.noreply@github.com
cc2d537eadcb3cc36f164433e109a74ebf20d1dc
606550f7223314db257ca4bf18a091da9235f90d
/demo/poll/migrations/0003_auto_20190801_1004.py
92ad239b8ab529c8748582c3d046cac6c3e54af3
[]
no_license
akshaySkyllord/ems
aab22a748805bebd70edf32a9db276307fe38ff8
02e4f9c964300d9d98e371d1c5bd59b352b6ec51
refs/heads/master
2020-07-03T11:44:17.644705
2019-08-12T09:17:28
2019-08-12T09:17:28
201,894,185
0
0
null
null
null
null
UTF-8
Python
false
false
538
py
# Generated by Django 2.2.3 on 2019-08-01 04:34 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('poll', '0002_auto_20190731_1730'), ] operations = [ migrations.AlterField( model_name='question', name='created_by', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL), ), ]
[ "GS-2219@GSLAB.COM" ]
GS-2219@GSLAB.COM
f5c65c37b451bb7845cec225a79a12aa20bfce04
f0d713996eb095bcdc701f3fab0a8110b8541cbb
/KPicBthv6WhHFGapg_17.py
7aa3aa5f1a8fb508597b2d6bcee51885d1d6d0bd
[]
no_license
daniel-reich/turbo-robot
feda6c0523bb83ab8954b6d06302bfec5b16ebdf
a7a25c63097674c0a81675eed7e6b763785f1c41
refs/heads/main
2023-03-26T01:55:14.210264
2021-03-23T16:08:01
2021-03-23T16:08:01
350,773,815
0
0
null
null
null
null
UTF-8
Python
false
false
595
py
""" Create a function that returns the **number of syllables** in a simple string. The string is made up of _short repeated words_ like `"Lalalalalalala"` (which would have _7 syllables_ ). ### Examples count_syllables("Hehehehehehe") ➞ 6 count_syllables("bobobobobobobobo") ➞ 8 count_syllables("NANANA") ➞ 3 ### Notes * For simplicity, please note that each syllable will consist of two letters only. * Your code should accept strings of any case (upper, lower and mixed case). """ def count_syllables(txt): t = txt.lower() return t.count(t[0:2])
[ "daniel.reich@danielreichs-MacBook-Pro.local" ]
daniel.reich@danielreichs-MacBook-Pro.local
4f6222ce8ad34730fa480688d609ff7eb8a21008
d09b9a4755a0c2a5162392c3d59ae9d15c8395c2
/API/baidu_translate.py
d876205038e83385fb50640edfccd45b2ca86db7
[]
no_license
lenfranky/tools_lz
f0cb8189c15a650bfc1d582eaad40f2c044ddaa5
9ec5af2491a64500a1be4f28f09946895a46e0e6
refs/heads/master
2020-03-28T20:55:46.962365
2018-11-14T05:32:25
2018-11-14T05:32:25
149,114,529
0
0
null
null
null
null
UTF-8
Python
false
false
1,211
py
# /usr/bin/env python # coding=utf8 import httplib import md5 import urllib import random import json def translate_baidu(text='apple'): appid = '20180827000199175' # 你的appid secretKey = 'eJoHgtPn_304EdwhyueZ' # 你的密钥 httpClient = None myurl = '/api/trans/vip/translate' fromLang = 'en' toLang = 'zh' salt = random.randint(32768, 65536) sign = appid + text + str(salt) + secretKey m1 = md5.new() m1.update(sign) sign = m1.hexdigest() myurl = myurl + '?appid=' + appid + '&q=' + urllib.quote(text) + '&from=' + fromLang + '&to=' + toLang + '&salt=' + str( salt) + '&sign=' + sign try: httpClient = httplib.HTTPConnection('api.fanyi.baidu.com') httpClient.request('GET', myurl) # response是HTTPResponse对象 response = httpClient.getresponse() # print response.read() result = response.read() print result data = json.loads(result) return data["trans_result"][0]["dst"] except Exception, e: print e finally: if httpClient: httpClient.close() if __name__ == '__main__': print translate_baidu('Have you eaten lunch?')
[ "327792549@qq.com" ]
327792549@qq.com
f066cea6f931f46a65d678f695ba5d46150afd2f
75402b6c851a12ae41359fdd83e89d2160c308af
/zentral/core/stores/backends/kinesis.py
a5c04ab974baab80ac23fec6e49719b18ff53a28
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-commercial-license" ]
permissive
neocode12/zentral
7b05aeeb823a5a3d7d268cc2b01e0bf1a5e4be71
9ecc8d8334148627fcccaa875f100adacd7a018b
refs/heads/main
2023-04-09T12:06:45.355559
2023-03-15T14:05:05
2023-03-15T14:05:05
327,651,549
0
0
Apache-2.0
2021-01-07T15:30:00
2021-01-07T15:30:00
null
UTF-8
Python
false
false
4,096
py
import logging import boto3 from kombu.utils import json from zentral.core.exceptions import ImproperlyConfigured from zentral.core.stores.backends.base import BaseEventStore from zentral.utils.boto3 import make_refreshable_assume_role_session logger = logging.getLogger('zentral.core.stores.backends.kinesis') class EventStore(BaseEventStore): max_batch_size = 500 def __init__(self, config_d): super(EventStore, self).__init__(config_d) self.stream = config_d["stream"] self.region_name = config_d["region_name"] self.credentials = {} for k in ("aws_access_key_id", "aws_secret_access_key"): v = config_d.get(k) if v: self.credentials[k] = v self.assume_role_arn = config_d.get("assume_role_arn") self.serialization_format = config_d.get("serialization_format", "zentral") if self.serialization_format not in ("zentral", "firehose_v1"): raise ImproperlyConfigured("Unknown serialization format") def wait_and_configure(self): session = boto3.Session(**self.credentials) if self.assume_role_arn: logger.info("Assume role %s", self.assume_role_arn) session = make_refreshable_assume_role_session( session, {"RoleArn": self.assume_role_arn, "RoleSessionName": "ZentralStoreKinesis"} ) self.client = session.client('kinesis', region_name=self.region_name) self.configured = True def _serialize_event(self, event): if not isinstance(event, dict): event_d = event.serialize() else: event_d = event event_id = event_d['_zentral']['id'] event_index = event_d['_zentral']['index'] partition_key = f"{event_id}{event_index}" if self.serialization_format == "firehose_v1": metadata = event_d.pop("_zentral") event_type = metadata.pop("type") created_at = metadata.pop("created_at") tags = metadata.pop("tags", []) objects = metadata.pop("objects", {}) serial_number = metadata.pop("machine_serial_number", None) event_d = { "type": event_type, "created_at": created_at, "tags": tags, "probes": [probe_d["pk"] for probe_d in metadata.get("probes", [])], "objects": [f"{k}:{v}" for k in objects for v in objects[k]], "metadata": json.dumps(metadata), "payload": json.dumps(event_d), "serial_number": serial_number } return json.dumps(event_d).encode("utf-8"), partition_key, event_id, event_index def store(self, event): self.wait_and_configure_if_necessary() data, partition_key, _, _ = self._serialize_event(event) return self.client.put_record(StreamName=self.stream, Data=data, PartitionKey=partition_key) def bulk_store(self, events): self.wait_and_configure_if_necessary() if self.batch_size < 2: raise RuntimeError("bulk_store is not available when batch_size < 2") event_keys = [] records = [] for event in events: data, partition_key, event_id, event_index = self._serialize_event(event) event_keys.append((event_id, event_index)) records.append({'Data': data, 'PartitionKey': partition_key}) if not records: return response = self.client.put_records(Records=records, StreamName=self.stream) failed_record_count = response.get("FailedRecordCount", 0) if failed_record_count == 0: # shortcut yield from event_keys return logger.warning("%s failed record(s)", failed_record_count) for key, record in zip(event_keys, response.get("Records", [])): if record.get("SequenceNumber") and record.get("ShardId"): yield key
[ "eric.falconnier@112hz.com" ]
eric.falconnier@112hz.com
af646b7ff78e8c9fcdc8fbc2cb08695b04778a24
de24f83a5e3768a2638ebcf13cbe717e75740168
/moodledata/vpl_data/127/usersdata/218/35224/submittedfiles/ex11.py
4cdc5c3d13ba6d1d5401867a17bcaa65083f3520
[]
no_license
rafaelperazzo/programacao-web
95643423a35c44613b0f64bed05bd34780fe2436
170dd5440afb9ee68a973f3de13a99aa4c735d79
refs/heads/master
2021-01-12T14:06:25.773146
2017-12-22T16:05:45
2017-12-22T16:05:45
69,566,344
0
0
null
null
null
null
UTF-8
Python
false
false
543
py
# -*- coding: utf-8 -*- D1=int(input('digite o dia da data 1:')) D2=int(input('digite o dia da data 2:')) M1=int(input('digite o mês da data 1:')) M2=int(input('digite o mês da data 2:')) A1=int(input('digite o ano da data 1:')) A2=int(input('digite o ano da data 2:')) if A1>A2: print(data1) elif A2>A1: print(data2) else: if M1>M2: print(data1) elif M2>M1: print(data2) else: if D1>D2: print(data1) elif D2>D1: print(data2) else: print(iguais)
[ "rafael.mota@ufca.edu.br" ]
rafael.mota@ufca.edu.br
02f68212891d84c6678997ae7e3a4cef84abe702
909b254075156f52d04475156283184ef08725f6
/qkdImplementation2.py
de4662be312130bcaced9d6003cd55797d5b4999
[]
no_license
vexandmore/QKDproject
b4c07b5ff0d557d0f404ab46435ed888edc016a3
a90921d0945e89d18aa40c3818c2e395d433e52a
refs/heads/master
2023-09-06T07:44:29.172061
2021-11-12T16:30:39
2021-11-12T16:30:39
341,966,279
0
0
null
null
null
null
UTF-8
Python
false
false
4,977
py
# -*- coding: utf-8 -*- """ This script provides the Alice with her circuits (based on the number of bits , the bits, and the bases.) Input format: number of bits bits bases [Bits and bases are passed to stdin as bistrings, number of bits is passed as an integer] Circuits are returned as a json-wrapped list of qasm. And also acts as a way to measure the circuits. (with measurement bases and circuits) Input format: bases circuits pass in bases as bitstring (either 0 or 1 or 2 to indicate not measuring), followed by a space, followed by json consisting in a list of qasm strings. Measurements are returned as a bitstring (0, 1, or 2), followed by a space, followed by the new qasm circuits @author: Marc """ from numpy.random import * import json from qiskit import QuantumCircuit, execute, Aer, IBMQ from qiskit.compiler import transpile, assemble import sys import time """Measures message in bases.""" def measureMessage(sendCircuits, bases, backend): measurements = [] for i in range(len(bases)): if (bases[i] == 2): measurements.append(2) else: if (bases[i] == 1): sendCircuits[i].h(0) sendCircuits[i].measure(0,0) sendCircuits[i].h(0) else: sendCircuits[i].measure(0,0) result = execute(sendCircuits[i], backend, shots=1, memory=True).result() receiver_bit = int(result.get_memory()[0]) measurements.append(receiver_bit) return measurements def listFromString(str): list = [] for i in str: list.append(int(i)) return list class KeySender: def __randbits__(num): gen = default_rng() return gen.integers(0,1,num, endpoint=True) def __init__ (self, num, bits=[], bases=[]): if bits == []: bits = KeySender.__randbits__(num) if bases == []: bases = KeySender.__randbits__(num) self.num = num self.sendBits = bits self.sendBases = bases def makeSendCircuits(keyData): circuits = [] for i in range(len(keyData.sendBits)): circuit = QuantumCircuit(1,1) if (keyData.sendBits[i] == 1): circuit.x(0) if (keyData.sendBases[i] == 1): circuit.h(0) circuits.append(circuit) return circuits def parseQasm(qasm): #return QuantumCircuit.from_qasm_str(qasm) list = qasm.split("\n") if list.pop(0) != "OPENQASM 2.0;": raise Exception('bad qasm string on line 1') if list.pop(0) != "include \"qelib1.inc\";": raise Exception('bad qasm string on line 2') #check the number of quantum and classical bits and create circuit qreg = int(list.pop(0)[-3]) creg = int(list.pop(0)[-3]) circuit = QuantumCircuit(qreg, creg) for i in list: sub = i.split(' ') if sub[0] == "h": circuit.h(int(sub[1][-3])) elif sub[0] == "x": circuit.x(int(sub[1][-3])) elif sub[0] == "measure": circuit.measure(int(sub[1][-2]), int(sub[3][-3])) elif sub[0] == '': pass else: raise Exception('unknown token ' + sub[0] + ' in qasm') return circuit def main(): backend = Aer.get_backend('qasm_simulator') while True: lineIn = input() #send Alice her circuits if lineIn[-1] == '0' or lineIn[-1] == '1': inArgs = lineIn.split() numBits = int(inArgs[0]) bits = listFromString(inArgs[1]) bases = listFromString(inArgs[2]) alice = KeySender(numBits, bits, bases) circuits = alice.makeSendCircuits() qasmCircuits = [] for i in circuits: qasmCircuits.append(i.qasm()) print(json.dumps(qasmCircuits)) #measure circuits for Bob (or Eve) else : inArgs = lineIn.split(' ', 1) bases = listFromString(inArgs[0]) qasmCircuits = json.loads(inArgs[1]) circuits = [] for i in qasmCircuits: circuits.append(parseQasm(i)) #circuits.append(QuantumCircuit.from_qasm_str(i)) measurements = measureMessage(circuits, bases, backend) #provide results for i in measurements: print(i, end='') print (' ', end='')#Space #provide new circuits newQasmCircuits = [] for i in range(len(circuits)): newQasmCircuits.append(circuits[i].qasm()) print(json.dumps(newQasmCircuits)) main()
[ "Marc@MARC-PC" ]
Marc@MARC-PC
65e10a0a7012828e97029f713526a8b45a7a15b5
86f145e6a4e964fad05a4d319b28854b5b14a241
/node_modules/mongoose/node_modules/mongodb/node_modules/mongodb-core/node_modules/kerberos/build/config.gypi
6d319ce041feb3e69eb07add25a795bc69a3ab13
[ "MIT", "Apache-2.0" ]
permissive
Scrumpus/intapps2
21a11592f2efc96fa1dceafbfc2b764eb7959d91
6a8de928f6b397903c372fc1f1a8e84e80110c41
refs/heads/master
2020-05-18T01:36:10.518024
2015-07-24T17:02:02
2015-07-24T17:02:02
39,644,724
0
0
null
null
null
null
UTF-8
Python
false
false
3,746
gypi
# Do not edit. File was generated by node-gyp's "configure" step { "target_defaults": { "cflags": [], "default_configuration": "Release", "defines": [], "include_dirs": [], "libraries": [] }, "variables": { "clang": 1, "host_arch": "x64", "icu_data_file": "icudt54l.dat", "icu_data_in": "../../deps/icu/source/data/in/icudt54l.dat", "icu_endianness": "l", "icu_gyp_path": "tools/icu/icu-generic.gyp", "icu_locales": "en,root", "icu_path": "./deps/icu", "icu_small": "true", "icu_ver_major": "54", "node_install_npm": "true", "node_prefix": "", "node_shared_cares": "false", "node_shared_http_parser": "false", "node_shared_libuv": "false", "node_shared_openssl": "false", "node_shared_v8": "false", "node_shared_zlib": "false", "node_tag": "", "node_use_dtrace": "true", "node_use_etw": "false", "node_use_mdb": "false", "node_use_openssl": "true", "node_use_perfctr": "false", "openssl_no_asm": 0, "python": "/usr/bin/python", "target_arch": "x64", "uv_library": "static_library", "uv_parent_path": "/deps/uv/", "uv_use_dtrace": "true", "v8_enable_gdbjit": 0, "v8_enable_i18n_support": 1, "v8_no_strict_aliasing": 1, "v8_optimized_debug": 0, "v8_random_seed": 0, "v8_use_snapshot": "false", "want_separate_host_toolset": 0, "nodedir": "/Users/scottschwalbe/.node-gyp/0.12.6", "copy_dev_lib": "true", "standalone_static_library": 1, "save_dev": "", "browser": "", "viewer": "man", "rollback": "true", "usage": "", "globalignorefile": "/usr/local/etc/npmignore", "init_author_url": "", "shell": "/bin/bash", "parseable": "", "shrinkwrap": "true", "init_license": "ISC", "if_present": "", "cache_max": "Infinity", "init_author_email": "", "sign_git_tag": "", "cert": "", "git_tag_version": "true", "local_address": "", "long": "", "fetch_retries": "2", "npat": "", "registry": "https://registry.npmjs.org/", "key": "", "message": "%s", "versions": "", "globalconfig": "/usr/local/etc/npmrc", "always_auth": "", "spin": "true", "cache_lock_retries": "10", "cafile": "", "heading": "npm", "fetch_retry_mintimeout": "10000", "proprietary_attribs": "true", "access": "", "json": "", "description": "true", "engine_strict": "", "https_proxy": "", "init_module": "/Users/scottschwalbe/.npm-init.js", "userconfig": "/Users/scottschwalbe/.npmrc", "node_version": "0.12.6", "user": "", "save": "true", "editor": "vi", "tag": "latest", "global": "", "optional": "true", "bin_links": "true", "force": "", "searchopts": "", "depth": "Infinity", "rebuild_bundle": "true", "searchsort": "name", "unicode": "true", "fetch_retry_maxtimeout": "60000", "ca": "", "save_prefix": "^", "strict_ssl": "true", "tag_version_prefix": "v", "dev": "", "fetch_retry_factor": "10", "group": "20", "save_exact": "", "cache_lock_stale": "60000", "version": "", "cache_min": "10", "cache": "/Users/scottschwalbe/.npm", "searchexclude": "", "color": "true", "save_optional": "", "user_agent": "npm/2.11.2 node/v0.12.6 darwin x64", "ignore_scripts": "", "cache_lock_wait": "10000", "production": "", "save_bundle": "", "init_version": "1.0.0", "umask": "0022", "git": "git", "init_author_name": "", "scope": "", "onload_script": "", "tmp": "/var/folders/7s/f59h1h8j5fs8yj_16qgbg7gm0000gq/T", "unsafe_perm": "true", "link": "", "prefix": "/usr/local" } }
[ "scottschwalbe@Scott-Schwalbe.local" ]
scottschwalbe@Scott-Schwalbe.local
b4a0555eec110566518aa3feabc38351ea50a5ad
bc6cd3b0525e25ed37923adb011b74702db135d7
/tweetcheck/core/views.py
93485a13baa221eb74d892a8b37dc50847446df8
[]
no_license
atbaker/tweetcheck
7dd52efe05a34612075b84d7e75d814bdbc6a2a2
10e010576c6fbccae16ac470850c97ed952882db
refs/heads/master
2021-01-15T13:43:33.940895
2015-05-14T03:39:14
2015-05-14T03:39:14
25,584,812
5
0
null
null
null
null
UTF-8
Python
false
false
5,812
py
from django.db import transaction, IntegrityError from django.http import HttpResponse, JsonResponse from django.shortcuts import redirect from django.utils.crypto import get_random_string from django.views.decorators.csrf import csrf_exempt from django.views.decorators.http import require_http_methods from rest_framework import viewsets from rest_framework.permissions import IsAuthenticated import django_filters import json from .forms import RegisterForm, InviteForm, InvitedUserForm from .models import Organization, TweetCheckUser, Device, Action from .permissions import IsOrganizationAdmin from .serializers import UserSerializer, DeviceSerializer, ActionSerializer class OrganizationQuerysetMixin(object): def get_queryset(self): if self.model.__name__ == 'Tweet': return self.model.objects.filter(handle__organization=self.request.user.organization) elif self.model.__name__ == 'Device': return self.model.objects.filter(user__organization=self.request.user.organization) else: return self.model.objects.filter(organization=self.request.user.organization) class UserFilter(django_filters.FilterSet): token = django_filters.CharFilter(name='auth_token__key') class Meta: model = TweetCheckUser fields = ['is_approver', 'token'] class UserViewSet(OrganizationQuerysetMixin, viewsets.ModelViewSet): model = TweetCheckUser serializer_class = UserSerializer permission_classes = (IsAuthenticated,IsOrganizationAdmin) filter_class = UserFilter def perform_create(self, serializer): serializer.save(user=self.request.user) class DeviceViewSet(OrganizationQuerysetMixin, viewsets.ModelViewSet): model = Device serializer_class = DeviceSerializer filter_fields = ('token',) def perform_create(self, serializer): serializer.save(user=self.request.user) def perform_update(self, serializer): serializer.save(user=self.request.user) class ActionViewSet(OrganizationQuerysetMixin, viewsets.ReadOnlyModelViewSet): model = Action serializer_class = ActionSerializer filter_fields = ('tweet',) paginate_by = 10 @require_http_methods(['POST']) @csrf_exempt def register(request): form = RegisterForm(json.loads(request.body.decode('utf-8'))) if not form.is_valid(): return JsonResponse(form.errors, status=400) try: with transaction.atomic(): organization = Organization.objects.create(name=form.cleaned_data['organization']) user = TweetCheckUser.objects.create_user( email=form.cleaned_data['email'], password=form.cleaned_data['password'], organization=organization, is_active=False, is_approver=True) except IntegrityError: return JsonResponse( {'error': 'Email address {0} already has a TweetCheck account.'.format(form.cleaned_data['email'])}, status=400 ) user.send_activation_email() return HttpResponse() @require_http_methods(['POST']) @csrf_exempt def invite(request): form = InviteForm(json.loads(request.body.decode('utf-8'))) if not form.is_valid(): return JsonResponse(form.errors, status=400) request_user = TweetCheckUser.objects.get(auth_token__key=request.META['HTTP_AUTHORIZATION'].split()[1]) organization = request_user.organization try: user = TweetCheckUser.objects.create_user( email=form.cleaned_data['email'], password=get_random_string(), # Set a random password until the user is activated organization=organization, is_active=False, is_approver=form.cleaned_data['is_approver']) except IntegrityError: return JsonResponse( {'error': 'Email address {0} already has a TweetCheck account.'.format(form.cleaned_data['email'])}, status=400 ) user.send_invitation_email() serializer = UserSerializer(user) return JsonResponse(serializer.data) def reinvite_user(request): user_id = request.GET['user'] try: user = TweetCheckUser.objects.get(pk=user_id) except TweetCheckUser.DoesNotExist: return JsonResponse( {'error': 'There was an error reinviting this user.'}, status=400 ) if user.is_active: # The user is already active and doesn't need to be reinvited return HttpResponse() user.replace_auth_token() user.send_invitation_email() return HttpResponse() @require_http_methods(['POST']) @csrf_exempt def activate_invitation(request): form = InvitedUserForm(json.loads(request.body.decode('utf-8'))) if not form.is_valid(): return JsonResponse(form.errors, status=400) try: user = TweetCheckUser.objects.get(auth_token__key=form.cleaned_data['token']) except TweetCheckUser.DoesNotExist: return JsonResponse( {'error': 'This invitation link is not valid. Please ask someone to invite you again.'}, status=400 ) user.set_password(form.cleaned_data['password']) user.is_active = True user.save() new_token = user.replace_auth_token() return JsonResponse({'token': new_token.key}) def activate(request): token = request.GET['key'] try: user = TweetCheckUser.objects.get(auth_token__key=token) except TweetCheckUser.DoesNotExist: return JsonResponse( {'error': 'This activation link is not valid. Have you registered this email address before?'}, status=400 ) user.is_active = True user.save() new_token = user.replace_auth_token() return redirect('/activate?token={0}'.format(new_token.key))
[ "andrew.tork.baker@gmail.com" ]
andrew.tork.baker@gmail.com
0fc2541411dcb465d061d206bdbd4ed4a27b5913
ea97a6d0d5ffc5ec2730b63a20b1f4de0bd8112d
/scurgen/test/axes_demo.py
a74c934af8fb6965cae2a134495e19057c3db58d
[]
no_license
daler/scurgen
35d5ee35243a41b75c444f5bb71380ba80ba72c6
ca0e4f30e9573684b90a8123e31982490b5fe473
refs/heads/master
2020-12-24T19:18:19.587609
2013-03-11T16:35:33
2013-03-11T16:35:33
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,375
py
import matplotlib.pyplot as plt from mpl_toolkits.axes_grid1 import make_axes_locatable import matplotlib.gridspec as gs import numpy as np fig = plt.figure(figsize=(10,10)) nchroms = 21 nrows = int(np.round(np.sqrt(nchroms))) ncols = nrows nfiles = 3 CHROM = dict( left= 0.05, right=0.8, top=0.9, bottom=0.2, wspace=0.1, hspace=0.1) SLIDER_PAD = 0.01 SLIDER = dict( left=CHROM['left'], right=CHROM['right'], bottom=0.1, top=CHROM['bottom'] - SLIDER_PAD, hspace=0.5, ) CBAR_PAD = 0.01 CBAR = dict( left=CHROM['right'] + CBAR_PAD, right=0.9, wspace=SLIDER['hspace'], top=CHROM['top'], bottom=CHROM['bottom'], ) CHECKS = dict( top=SLIDER['top'], bottom=SLIDER['bottom'], left=SLIDER['right'] + CBAR_PAD, right=CBAR['right'], wspace=CBAR['wspace'], hspace=SLIDER['hspace']) chroms = gs.GridSpec(nrows, ncols) chroms.update(**CHROM) axs1 = [plt.subplot(i) for i in chroms] sliders = gs.GridSpec(nfiles, 1) sliders.update(**SLIDER) axs2 = [plt.subplot(i) for i in sliders] colorbars = gs.GridSpec(1, nfiles) colorbars.update(**CBAR) axs3 = [plt.subplot(i) for i in colorbars] checks = gs.GridSpec(nfiles, nfiles) checks.update(**CHECKS) axs4 = [plt.subplot(checks[i, i]) for i in range(nfiles)] for ax in axs2 + axs4: ax.set_xticks([]) ax.set_yticks([]) plt.show()
[ "dalerr@niddk.nih.gov" ]
dalerr@niddk.nih.gov
474fc47857f2141824d51ee7e2eb4c7d9dcb842a
b05dde785f2bb083ef28de7a1e4dd2868d2d3e1a
/project/models/elmo.py
20fe1f58c08ed41f223e37ce1f1e892cdd571cd7
[]
no_license
I-am-Bot/nlp-homework
fe9cd9a9a87c12bd32acf8080413988570425cc4
daa734983ddfa973f29dfe8402b0dc206ec2ab48
refs/heads/master
2020-12-12T14:22:23.733731
2020-04-07T02:23:35
2020-04-07T02:23:35
234,149,050
0
0
null
null
null
null
UTF-8
Python
false
false
3,348
py
import tensorflow_hub as hub import numpy as np import pandas as pd import tensorflow as tf import numpy as np import pandas as pd from sklearn.model_selection import train_test_split from sklearn.linear_model import LogisticRegression from sklearn.model_selection import GridSearchCV from sklearn.model_selection import cross_val_score from keras_contrib.layers import CRF as CRF_2nd from keras.utils import to_categorical from keras.preprocessing.sequence import pad_sequences from keras.callbacks import ModelCheckpoint from keras.models import Model, Input from keras.layers import LSTM, Embedding, Dense, TimeDistributed, Dropout, Bidirectional from sklearn_crfsuite import metrics import torch import transformers import pandas as pd import numpy as np import argparse from dataset import Dataset import numpy as np import warnings warnings.filterwarnings('ignore') import os os.environ["CUDA_VISIBLE_DEVICES"]="-1" parser = argparse.ArgumentParser() parser.add_argument('--seed', type=int, default=15, help='Random seed.') parser.add_argument('--dataset', type=str, default='restaurant', choices=['restaurant', 'eng'], help='dataset') args = parser.parse_args() data = Dataset(name=args.dataset) # # get sentences samples, for LSTM, WORD2VEC, BERT... X, y = data.get_sentences_labels() _, y_test = data.split_train_test(y) # # calculate max length max_len = 1 # for i in X.values: # if len(i) > max_len: # max_len = len(i) # padded = np.array([i + [0]*(max_len-len(i)) for i in X.values]) elmo = hub.Module("pretrained", trainable=False) embeddings = elmo( X.values, signature="default", as_dict=True)["elmo"] with tf.Session() as session: session.run([tf.global_variables_initializer(), tf.tables_initializer()]) features = session.run(embeddings) tag_to_index = data.tag_to_index index_to_tag = data.index_to_tag y = pad_sequences(maxlen=max_len, sequences=y.values, padding="post", value=tag_to_index["PADword"]) y = [to_categorical(i, num_classes=len(tag_to_index)) for i in y] X_train, X_test = data.split_train_test(features) y_train, _ = data.split_train_test(y) input = Input(shape = (features.shape[1], features.shape[2],)) model = Bidirectional(LSTM(units = 50, return_sequences=True, recurrent_dropout=0.1))(input) model = TimeDistributed(Dense(50, activation="relu"))(model) crf = CRF_2nd(len(data.tag_to_index)) out_layer = crf(model) model = Model(input, out_layer) model.compile(optimizer="rmsprop", loss=crf.loss_function, metrics=[crf.accuracy]) model.summary() BATCH_SIZE = 64 EPOCHS = 10 history = model.fit(X_train, np.array(y_train), batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=0.1, verbose=2) def pred2label(pred): out = [] for pred_i in pred: out_i = [] for p in pred_i: p_i = np.argmax(p) out_i.append(idx2tag[p_i].replace("PADword", "O")) out.append(out_i) return out pred_y = model.predict(X_test) pred_y = np.argmax(pred_y, axis=-1) y_test_true = np.argmax(y_test, -1) pred_y = [[index_to_tag[i].replace("PADword", "O") for i in pred_y[index]][0: len(y_test[index])] for index in range(len(pred_y))] y_test_true = [[index_to_tag[i] for i in row] for row in y_test] print('LSTM Classification Report\n', metrics.flat_classification_report(pred_y, y_test_true))
[ "joe.weijin@gmail.com" ]
joe.weijin@gmail.com
9854d7859fa4e053576c83e5b67de5d52be02adc
ae646229187ab11607e4889e1cf0e380b26fae5c
/experiment_code/loadtensor_runfactorization_printphenotypes.py
7733aba7df01dbc0f8b66758c204b1db20dc5dc9
[]
no_license
aschein/tensor_analysis
cb60caf56713cfb7191c46d3cc20c32ea591d382
155754be7fa8cfb97432997cb66aa37b1a7b582b
refs/heads/master
2021-01-17T07:44:00.657311
2014-09-11T20:45:14
2014-09-11T20:45:14
34,183,143
1
2
null
2018-08-25T20:15:18
2015-04-18T21:19:08
Python
UTF-8
Python
false
false
9,319
py
## this combines the 2 scripts into one comprehensive one: ## ## last modified aug 28, 2014 ## ## 1. run_factorization_localadmin.py ## 2. analyze_tensor_factors_withGamma.py ## ## INPUT: ## R ## alpha ## gammaForTF: numbers separated by commas, ex: '0.001, 0.1, 0.1' ## tensor_filename ## save_folder ## ## OUTPUT: ## tensor factorizaiton results in dir save_folder/ ## pheno_htn_subset_analyzed_REG_<gamma_str>.pickle ## pheno_htn_subset_analyzed_AUG_<gamma_str>.pickle ## Yinfo_htn_subset_analyzed_<gamma_str>.pickle ## ## analyzed PHENOTYPE output in save_folder/ ## phenotypes_<gamma_str>.out ## ## pre-requisites: load environment -- these scripts need to be run first: ## ## ########################################################################################### ## sample inputs: #R = 50 #alpha = 1 #gammaForTF = [0.001, 0.1, 0.1] #save_folder = './pickle_folder_20140828/' #tensor_input = "htn-tensor-subsetforanalysis-20140811-{0}.dat" import sys R = int(sys.argv[1]) alpha = float(sys.argv[2]) gammaForTF = sys.argv[3] tensor_input = sys.argv[4] CODE_DIR = sys.argv[5] save_folder = sys.argv[6] gammaForTF = gammaForTF.split(',') gammaForTF = [float(x) for x in gammaForTF] #load required modules: print "loading required modules" execfile( CODE_DIR + 'setup_python_env.py') pheWAS_xls_file = CODE_DIR + 'ICD9-2-PheWAS.xls' #create output folder if it does not exist if not os.path.exists(save_folder): os.makedirs(save_folder) #do tensor factorization on the SUBSET - with GAMMA as set above ################################################################################################## #laod the tensor for the subset! print "loading tensor data" loaded_X, loaded_axisDict, loaded_classDict = tensorIO.loadSingleTensor(tensor_input) startTime = time.time()#start time -- to time it ##factorization print "running factorization" spntf_htn_subset_analyzed_withGamma = SP_NTF.SP_NTF(loaded_X, R=R, alpha=alpha) Yinfo_htn_subset_analyzed_withGamma = spntf_htn_subset_analyzed_withGamma.computeDecomp(gamma=gammaForTF) marbleElapse = time.time() - startTime #elapsed time #tensor decomposition factors ("phenotypes"): pheno_htn_subset_analyzed_withGamma_REG = spntf_htn_subset_analyzed_withGamma.M[0] pheno_htn_subset_analyzed_withGamma_AUG = spntf_htn_subset_analyzed_withGamma.M[1] pheno_htn_subset_analyzed_withGamma = (pheno_htn_subset_analyzed_withGamma_REG, pheno_htn_subset_analyzed_withGamma_AUG) #string for saving the file based upon gamma gamma_str = '_gamma' for num in gammaForTF: gamma_str = gamma_str + '-' + str(num) gamma_str = gamma_str + '.pickle' #save factorization in pickle outfile_str = save_folder + "pheno_htn_subset_analyzed_REG" + gamma_str with open(outfile_str, "wb") as output_file: ##IMPT! phenotype stored in this pickle pickle.dump(pheno_htn_subset_analyzed_withGamma, output_file) output_file.close() outfile_str = save_folder + "pheno_htn_subset_analyzed_AUG" + gamma_str with open(outfile_str, "wb") as output_file: ##IMPT! phenotype stored in this pickle pickle.dump(pheno_htn_subset_analyzed_withGamma, output_file) output_file.close() outfile_str = save_folder + "Yinfo_htn_subset_analyzed" + gamma_str with open(outfile_str, "wb") as output_file: pickle.dump(Yinfo_htn_subset_analyzed_withGamma, output_file) output_file.close() ########################################################################################################################### ## ## now, load the pickle'd phenotypes, convert to readable phenotype format, and print into output file! ## ## import operator def calculateValues(TM, M): fms = TM.greedy_fms(M) fos = TM.greedy_fos(M) nnz = tensorTools.countTensorNNZ(M) return fms, fos, nnz ## load the tensor ####### loaded_X, loaded_axisDict, loaded_classDict = tensorIO.loadSingleTensor(tensor_input) ##read in the pickles: outfile_str = save_folder + "pheno_htn_subset_analyzed_REG" + gamma_str matrix_pkl = open(outfile_str, "rb") pheno_htn_subset_analyzed_REG_withGamma = pickle.load(matrix_pkl) matrix_pkl.close() outfile_str = save_folder + "Yinfo_htn_subset_analyzed" + gamma_str matrix_pkl = open(outfile_str, "rb") Yinfo_htn_subset_analyzed_withGamma = pickle.load(matrix_pkl) matrix_pkl.close() #write output file pheno_outstream = open(save_folder + "phenotypes"+gamma_str+".out", 'w+') ############################################################################################################## #load pheWAS dictionary xls = pd.ExcelFile(pheWAS_xls_file) df_pheWAS = xls.parse(xls.sheet_names[0]) d_jdrange_lookup = dict(zip(list(df_pheWAS.JD_X_RANGE), list(df_pheWAS.JD_X_NAME))) ############################################################################################################# #tensor with all phenotypes (factorization) ktensor_phenotypes = pheno_htn_subset_analyzed_REG_withGamma[0] l_pts = loaded_axisDict[0].keys() l_jdrange = loaded_axisDict[1].keys() l_meds= loaded_axisDict[2].keys() #will store all the data d_pheno_nonzero_labels = OrderedDict() #sort phenotypes by lambda values: d_lambda_phenoNumber = OrderedDict(zip( list(range(R)), list(ktensor_phenotypes.lmbda) )) l_phenoNumbers_sorted_by_lambda = [tup[0] for tup in sorted(d_lambda_phenoNumber.iteritems(), key=operator.itemgetter(1))][::-1] #get a sorted list of phenotype numbers, which are sorted by using the operator.itemgetter #print phenotype feature names ################# #for i in range(10): for i in l_phenoNumbers_sorted_by_lambda: print "===== phenotype " + str(i) + "=================================================================" pheno_outstream.write("===== phenotype " + str(i) + "=================================================================" + '\n') this_lmbda = ktensor_phenotypes.lmbda[i] this_pheno_pt_factor = ktensor_phenotypes.U[0][:,i] this_pheno_jdrange_factor = ktensor_phenotypes.U[1][:,i] this_pheno_med_factor = ktensor_phenotypes.U[2][:,i] this_pheno_pt_nnz = np.nonzero(this_pheno_pt_factor)[0] this_pheno_jdrange_nnz = np.nonzero(this_pheno_jdrange_factor)[0] this_pheno_med_nnz = np.nonzero(this_pheno_med_factor)[0] l_nonzero_pt_thisPheno = [] l_nonzero_meds_thisPheno = [] l_nonzero_jdrange_thisPheno = [] l_nonzero_jdrange_names_thisPheno = [] for j in this_pheno_pt_nnz: l_nonzero_pt_thisPheno.append(l_pts[j]) for j in this_pheno_jdrange_nnz: l_nonzero_jdrange_thisPheno.append(l_jdrange[j]) l_nonzero_jdrange_names_thisPheno.append(d_jdrange_lookup[l_jdrange[j]]) for j in this_pheno_med_nnz: l_nonzero_meds_thisPheno.append(l_meds[j]) #data d_pheno_nonzero_labels[i] = dict() #for phenotype i d_pheno_nonzero_labels[i]['LAMBDA'] = this_lmbda #lambda value d_pheno_nonzero_labels[i]['PERCENT_PTS'] = len(l_nonzero_pt_thisPheno) / float(len(this_pheno_pt_factor)) d_pheno_nonzero_labels[i]['MEDS_NZ'] = l_nonzero_meds_thisPheno #for phenotype i d_pheno_nonzero_labels[i]['JDRANGE_NZ'] = l_nonzero_jdrange_thisPheno #for phenotype i d_pheno_nonzero_labels[i]['JDRANGE_NAMES_NZ'] = l_nonzero_jdrange_names_thisPheno #for phenotype i print "proportion of pts: " + str(d_pheno_nonzero_labels[i]['PERCENT_PTS']) pheno_outstream.write("proportion of pts: " + str(d_pheno_nonzero_labels[i]['PERCENT_PTS']) + '\n') print "lambda: " + str(this_lmbda) pheno_outstream.write("lambda: " + str(this_lmbda) + '\n') print "----------------------------------------" #divider pheno_outstream.write("----------------------------------------" + '\n') #make ranking of JDRANGE by the weights: nparr_jdrange_weights = this_pheno_jdrange_factor[this_pheno_jdrange_nnz] d_jdrangeindex_weights = OrderedDict(zip(this_pheno_jdrange_nnz, nparr_jdrange_weights)) l_jdrangeindex_sorted = [tup[0] for tup in sorted(d_jdrangeindex_weights.iteritems(), key=operator.itemgetter(1))][::-1] #note: use slice [::-1] to reverse list! for index_this_jdrange in l_jdrangeindex_sorted: print d_jdrange_lookup[l_jdrange[index_this_jdrange]] + '\t' + str("%.3f" %this_pheno_jdrange_factor[index_this_jdrange] ) pheno_outstream.write(str(d_jdrange_lookup[l_jdrange[index_this_jdrange]]) + '\t' + str("%.3f" %this_pheno_jdrange_factor[index_this_jdrange]) +'\n') print "----------------------------------------" #divider between diagnostic codes and meds pheno_outstream.write("----------------------------------------" + '\n') #make ranking of MED by the weights: nparr_med_weights = this_pheno_med_factor[this_pheno_med_nnz] d_medindex_weights = OrderedDict(zip(this_pheno_med_nnz, nparr_med_weights)) l_medindex_sorted = [tup[0] for tup in sorted(d_medindex_weights.iteritems(), key=operator.itemgetter(1))][::-1] for index_this_med in l_medindex_sorted: print l_meds[index_this_med] + '\t' + str("%.3f" %this_pheno_med_factor[index_this_med]) pheno_outstream.write(l_meds[index_this_med] + '\t' + str("%.3f" %this_pheno_med_factor[index_this_med]) + '\n') pheno_outstream.close()
[ "robchen401@gmail.com" ]
robchen401@gmail.com
6fbab4480a4dbe295810065fd70027aba431136e
65fcf07ea6d6dfe0c5a4090343b098807e075010
/app/send_sms.py
ddf1616e9f2939a4869869007f444ac64bf91988
[]
no_license
parkhongbeen/study_selenium
0e7e0bc23809c57c29d5352e2ee81b9a74060026
f1bdfd3c3aa3299791cc53363eea0a811c6dcedc
refs/heads/master
2021-04-20T11:27:39.522904
2020-03-26T12:54:59
2020-03-26T12:54:59
249,679,396
0
0
null
null
null
null
UTF-8
Python
false
false
381
py
from sdk.api.message import Message api_key = "NCSGLMHSQ2FTVZUA" api_secret = "LCSOKSWPDNLZF971PMZ4XAQPZPYD60EW" params = dict() params['type'] = 'sms' params['to'] = '01082128997' params['from'] = '01050022354' params['text'] = '야 홍빈아 내가 내일 커피사줄께' cool = Message(api_key, api_secret) try: response = cool.send(params) except: print('에러')
[ "pack122@naver.com" ]
pack122@naver.com
e3597b3fc31b024bf27d519c69f8f7f7e9e8eed9
79417cee319cba603819da7d1dadf341c8947977
/image_cutter.py
ea84bcbd5bab6bd82e94c30dd5dca8af5d59cbfc
[]
no_license
saveliyshatrov/Cut_Image_3x3
ef8eb7fc6c46994be58e10bac40253df2e9adbfc
e058865a175d4cf6245dc3b09759965cdfbae1b6
refs/heads/master
2022-05-28T17:55:13.536884
2020-04-29T14:56:19
2020-04-29T14:56:19
259,951,995
0
0
null
null
null
null
UTF-8
Python
false
false
532
py
from PIL import Image im = Image.open('CAR.JPG') width, height = im.size #show size of Image print('height:', height) print('width:', width) left = [0,1008,2016] top = [0,1008,2016] right = [1008,2016,3024] bottom = [1008,2016,3024] counter = 1 if __name__ == "__main__": for u in range(len(left)): for z in range(len(left)): im1 = im.crop((left[z], top[u], right[z], bottom[u])) im1 = im1.save("{}.png".format(counter)) print('Image:{}'.format(counter)) counter += 1
[ "noreply@github.com" ]
saveliyshatrov.noreply@github.com
7734622e41048306a547129450508bf4c50e9f13
094627e84a63cdeb97c8917cc6581cc55fa8f583
/brl_baselines/deepq/models.py
4309da5e793c8494de2fd8a12a042c7a978427f7
[ "BSD-3-Clause" ]
permissive
gilwoolee/brl_baselines
844f23b31f53648796325d13cb3c252cda0fc55d
c85df28c0f2dfbd69d3d27928bcbabf36a3663bb
refs/heads/master
2022-11-28T22:31:31.195138
2020-08-04T02:17:28
2020-08-04T02:17:28
278,916,753
0
0
null
null
null
null
UTF-8
Python
false
false
6,059
py
import tensorflow as tf import tensorflow.contrib.layers as layers def _mlp(hiddens, input_, num_actions, scope, reuse=False, layer_norm=False): with tf.variable_scope(scope, reuse=reuse): out = input_ for hidden in hiddens: out = layers.fully_connected(out, num_outputs=hidden, activation_fn=None) if layer_norm: out = layers.layer_norm(out, center=True, scale=True) out = tf.nn.relu(out) q_out = layers.fully_connected(out, num_outputs=num_actions, activation_fn=None) return q_out def mlp(hiddens=[], layer_norm=False): """This model takes as input an observation and returns values of all actions. Parameters ---------- hiddens: [int] list of sizes of hidden layers layer_norm: bool if true applies layer normalization for every layer as described in https://arxiv.org/abs/1607.06450 Returns ------- q_func: function q_function for DQN algorithm. """ return lambda *args, **kwargs: _mlp(hiddens, layer_norm=layer_norm, *args, **kwargs) def _cnn_to_mlp(convs, hiddens, dueling, input_, num_actions, scope, reuse=False, layer_norm=False): with tf.variable_scope(scope, reuse=reuse): out = input_ with tf.variable_scope("convnet"): for num_outputs, kernel_size, stride in convs: out = layers.convolution2d(out, num_outputs=num_outputs, kernel_size=kernel_size, stride=stride, activation_fn=tf.nn.relu) conv_out = layers.flatten(out) with tf.variable_scope("action_value"): action_out = conv_out for hidden in hiddens: action_out = layers.fully_connected(action_out, num_outputs=hidden, activation_fn=None) if layer_norm: action_out = layers.layer_norm(action_out, center=True, scale=True) action_out = tf.nn.relu(action_out) action_scores = layers.fully_connected(action_out, num_outputs=num_actions, activation_fn=None) if dueling: with tf.variable_scope("state_value"): state_out = conv_out for hidden in hiddens: state_out = layers.fully_connected(state_out, num_outputs=hidden, activation_fn=None) if layer_norm: state_out = layers.layer_norm(state_out, center=True, scale=True) state_out = tf.nn.relu(state_out) state_score = layers.fully_connected(state_out, num_outputs=1, activation_fn=None) action_scores_mean = tf.reduce_mean(action_scores, 1) action_scores_centered = action_scores - tf.expand_dims(action_scores_mean, 1) q_out = state_score + action_scores_centered else: q_out = action_scores return q_out def cnn_to_mlp(convs, hiddens, dueling=False, layer_norm=False): """This model takes as input an observation and returns values of all actions. Parameters ---------- convs: [(int, int, int)] list of convolutional layers in form of (num_outputs, kernel_size, stride) hiddens: [int] list of sizes of hidden layers dueling: bool if true double the output MLP to compute a baseline for action scores layer_norm: bool if true applies layer normalization for every layer as described in https://arxiv.org/abs/1607.06450 Returns ------- q_func: function q_function for DQN algorithm. """ return lambda *args, **kwargs: _cnn_to_mlp(convs, hiddens, dueling, layer_norm=layer_norm, *args, **kwargs) def build_q_func(network, hiddens=[24], dueling=False, layer_norm=False, **network_kwargs): if isinstance(network, str): from baselines.common.models import get_network_builder network = get_network_builder(network)(**network_kwargs) def q_func_builder(input_placeholder, num_actions, scope, reuse=False): with tf.variable_scope(scope, reuse=reuse): print("Scope", scope, reuse, input_placeholder) latent = network(input_placeholder) if isinstance(latent, tuple): if latent[1] is not None: raise NotImplementedError("DQN is not compatible with recurrent policies yet") latent = latent[0] latent = layers.flatten(latent) with tf.variable_scope("action_value"): action_out = latent # for hidden in hiddens: # action_out = layers.fully_connected(action_out, num_outputs=hidden, activation_fn=None) # if layer_norm: # action_out = layers.layer_norm(action_out, center=True, scale=True) # action_out = tf.nn.relu(action_out) action_scores = layers.fully_connected(action_out, num_outputs=num_actions, activation_fn=None) if dueling: with tf.variable_scope("state_value"): state_out = latent # for hidden in hiddens: # state_out = layers.fully_connected(state_out, num_outputs=hidden, activation_fn=None) # if layer_norm: # state_out = layers.layer_norm(state_out, center=True, scale=True) # state_out = tf.nn.relu(state_out) state_score = layers.fully_connected(state_out, num_outputs=1, activation_fn=None) action_scores_mean = tf.reduce_mean(action_scores, 1) action_scores_centered = action_scores - tf.expand_dims(action_scores_mean, 1) q_out = state_score + action_scores_centered else: q_out = action_scores return q_out return q_func_builder
[ "gilwoo301@gmail.com" ]
gilwoo301@gmail.com
88fcdc9396f21d80fa9f728c4ba17beefaf239ba
caba236d32e5bde8d41aec9044fe830f2f7ac190
/portfolio/views.py
77921c901d5c8450f5b7c334cd0e796d3936545c
[]
no_license
nasirnupt/djangoproject-companyweb
d54656afe596c27d072621afcace461ffe8e112e
e79ae38c62eb1a818b642a893c2102678e8b9e03
refs/heads/master
2023-02-13T19:50:24.569607
2021-01-18T11:52:29
2021-01-18T11:52:29
330,647,321
0
0
null
null
null
null
UTF-8
Python
false
false
237
py
from django.shortcuts import render # Create your views here. def portfolio(request): return render(request, 'portfolio/portfolio.html') def portfoliodetails(request): return render(request, 'portfolio/portfolio-details.html')
[ "nasirbd04@gmail.com" ]
nasirbd04@gmail.com
b844b38427f2e9c4f4144a00823d138d344fcdc4
563127b7364394236f1ab9e9136cd8eea25f7d8a
/Firebase database_Python script/python-firebase.py
748f185d96859048d38e8c0e20d9c7863ef1526b
[]
no_license
WeHacks/GlobalAI
ee5eaae819416dd8854ffa42adb9860bdb18574f
edc26135953126ab148ce0b5b97bde0d9565d07e
refs/heads/master
2021-01-17T14:46:44.321068
2017-10-02T20:06:04
2017-10-02T20:06:04
95,269,135
0
0
null
null
null
null
UTF-8
Python
false
false
1,671
py
import pyrebase # Firebase DB Connection config = { "apiKey": "AIzaSyDaj_0mZZ09cATbWtzQ7cK3VnxNpbwpbWc", "authDomain": "ai-hackathon-4edf3.firebaseapp.com", "databaseURL": "https://ai-hackathon-4edf3.firebaseio.com", "projectId": "ai-hackathon-4edf3", "storageBucket": "ai-hackathon-4edf3.appspot.com", "messagingSenderId": "399052073630" } firebase = pyrebase.initialize_app(config) db = firebase.database() # Set up firebase user auth = firebase.auth() #authenticate a user user = auth.sign_in_with_email_and_password("test@abc.com", "12345678") # print(user['idToken']) # print(user['email']) # CREATE RECORD daniel = {"name": "daniel9231", "enrollment_id": "jl23jr"} db.child("customers").child("daniel").set(daniel, user['idToken']) jinchi = {"name": "jinchi3423", "enrollment_id": "23jf2523f"} db.child("customers").child("jinchi").set(jinchi, user['idToken']) wilson = {"name": "wilson8640", "enrollment_id": "pdsff341"} db.child("customers").child("wilson").set(wilson, user['idToken']) ron = {"name": "ron1673", "agency": "pdsff341"} db.child("customers").child("ron").set(ron, user['idToken']) test_dummy = {"name": "test", "agency": "fslkdfjwo23423"} db.child("customers").child("test_dummy").set(test_dummy, user['idToken']) # GET ALL RECORDS all_customers = db.child("customers").get(user['idToken']).val() print(all_customers) # GET SINGLE RECORD daniel_data = db.child("customers").child("daniel").get(user['idToken']).val() print(daniel_data) # UPDATE RECORD db.child("customers").child("ron").update({"name": "RON1111"}, user['idToken']) # DELETE RECORD db.child("customers").child("test_dummy").remove(user['idToken'])
[ "swaption2009@gmail.com" ]
swaption2009@gmail.com
b4d08603e8aef4931696a9d7174078edf019fd21
18b5aa9cef8ce3f349e9dce137d41d7328f53a14
/__init__.py
9efffaa76d4cfd6d1d65c0026a9e6b5f1efa3e26
[]
no_license
yibaiershikexin/studygit
2539c3a1ad7ceb2d08bc64048fa7641883a26745
5cdc506600476c8f425060f49eeecce38066794f
refs/heads/master
2021-01-10T01:06:22.457286
2016-02-29T14:33:39
2016-02-29T14:33:39
48,268,362
0
0
null
2016-03-13T17:25:26
2015-12-19T04:27:16
Python
UTF-8
Python
false
false
41
py
__author__ = 'xinx' import os import sys
[ "xinxin521125@hotmail.com" ]
xinxin521125@hotmail.com
6fbb18db3cd059dff8da41f2ab08161885d82908
d83c981aab3c299e2a0e5c4329550acbaaa5e031
/Week 4/venv/Scripts/easy_install-3.7-script.py
ee894aa010fd468300cf761e5e34add7825a2c5e
[]
no_license
Adit-COCO-Garg/Computer-Science-Intro-at-RIT
1570a24b12962bad50a436f5252b563173271fb7
04af43edd559163ac01e20f6b62a3c2711740acd
refs/heads/master
2020-04-16T22:36:45.146161
2020-01-02T07:08:46
2020-01-02T07:08:46
165,975,850
0
0
null
null
null
null
UTF-8
Python
false
false
465
py
#!"Z:\IGMProfile\Desktop\SEM 3\CSCI-141\Week 4\venv\Scripts\python.exe" # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' __requires__ = 'setuptools==40.8.0' import re import sys from pkg_resources import load_entry_point if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() )
[ "ag9126@ad.rit.edu" ]
ag9126@ad.rit.edu
8aff43e82dcac4fabbd01e653ddb046a6e1ccec7
71c5926a4e69931bce8e74472a2499dc67e1b7ed
/SX127x/LoRa.py
22144cadde54cac49ed5dee2b9c7625ffe834b68
[]
no_license
qualitywow/Wireless-Lab4
16e7b974a8242a20eeea96d00d68c22b28873a17
4a4c61d642f2e8a5aae27ffbba094731f80c9273
refs/heads/master
2022-11-07T06:43:12.693068
2020-06-19T12:36:54
2020-06-19T12:36:54
273,489,768
0
0
null
null
null
null
UTF-8
Python
false
false
38,190
py
""" Defines the SX127x class and a few utility functions. """ # Copyright 2015 Mayer Analytics Ltd. # # This file is part of pySX127x. # # pySX127x is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public # License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later # version. # # pySX127x is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You can be released from the requirements of the license by obtaining a commercial license. Such a license is # mandatory as soon as you develop commercial activities involving pySX127x without disclosing the source code of your # own applications, or shipping pySX127x with a closed source product. # # You should have received a copy of the GNU General Public License along with pySX127. If not, see # <http://www.gnu.org/licenses/>. import sys from .constants import * from .board_config import BOARD ################################################## Some utility functions ############################################## def set_bit(value, index, new_bit): """ Set the index'th bit of value to new_bit, and return the new value. :param value: The integer to set the new_bit in :type value: int :param index: 0-based index :param new_bit: New value the bit shall have (0 or 1) :return: Changed value :rtype: int """ mask = 1 << index value &= ~mask if new_bit: value |= mask return value def getter(register_address): """ The getter decorator reads the register content and calls the decorated function to do post-processing. :param register_address: Register address :return: Register value :rtype: int """ def decorator(func): def wrapper(self): return func(self, self.spi.xfer([register_address, 0])[1]) return wrapper return decorator def setter(register_address): """ The setter decorator calls the decorated function for pre-processing and then writes the result to the register :param register_address: Register address :return: New register value :rtype: int """ def decorator(func): def wrapper(self, val): return self.spi.xfer([register_address | 0x80, func(self, val)])[1] return wrapper return decorator ############################################### Definition of the LoRa class ########################################### class LoRa(object): spi = BOARD.SpiDev() # init and get the baord's SPI mode = None # the mode is backed up here backup_registers = [] verbose = True dio_mapping = [None] * 6 # store the dio mapping here def __init__(self, verbose=True, do_calibration=True, calibration_freq=868): """ Init the object Send the device to sleep, read all registers, and do the calibration (if do_calibration=True) :param verbose: Set the verbosity True/False :param calibration_freq: call rx_chain_calibration with this parameter. Default is 868 :param do_calibration: Call rx_chain_calibration, default is True. """ self.verbose = verbose # set the callbacks for DIO0..5 IRQs. BOARD.add_events(self._dio0, self._dio1, self._dio2, self._dio3, self._dio4, self._dio5) # set mode to sleep and read all registers self.set_mode(MODE.SLEEP) self.backup_registers = self.get_all_registers() # more setup work: if do_calibration: self.rx_chain_calibration(calibration_freq) # the FSK registers are set up exactly as modtronix do it: lookup_fsk = [ #[REG.FSK.LNA , 0x23], #[REG.FSK.RX_CONFIG , 0x1E], #[REG.FSK.RSSI_CONFIG , 0xD2], #[REG.FSK.PREAMBLE_DETECT, 0xAA], #[REG.FSK.OSC , 0x07], #[REG.FSK.SYNC_CONFIG , 0x12], #[REG.FSK.SYNC_VALUE_1 , 0xC1], #[REG.FSK.SYNC_VALUE_2 , 0x94], #[REG.FSK.SYNC_VALUE_3 , 0xC1], #[REG.FSK.PACKET_CONFIG_1, 0xD8], #[REG.FSK.FIFO_THRESH , 0x8F], #[REG.FSK.IMAGE_CAL , 0x02], #[REG.FSK.DIO_MAPPING_1 , 0x00], #[REG.FSK.DIO_MAPPING_2 , 0x30] ] self.set_mode(MODE.FSK_STDBY) for register_address, value in lookup_fsk: self.set_register(register_address, value) self.set_mode(MODE.SLEEP) # set the dio_ mapping by calling the two get_dio_mapping_* functions self.get_dio_mapping_1() self.get_dio_mapping_2() # Overridable functions: def on_rx_done(self): pass def on_tx_done(self): pass def on_cad_done(self): pass def on_rx_timeout(self): pass def on_valid_header(self): pass def on_payload_crc_error(self): pass def on_fhss_change_channel(self): pass # Internal callbacks for add_events() def _dio0(self, channel): # DIO0 00: RxDone # DIO0 01: TxDone # DIO0 10: CadDone if self.dio_mapping[0] == 0: self.on_rx_done() elif self.dio_mapping[0] == 1: self.on_tx_done() elif self.dio_mapping[0] == 2: self.on_cad_done() else: raise RuntimeError("unknown dio0mapping!") def _dio1(self, channel): # DIO1 00: RxTimeout # DIO1 01: FhssChangeChannel # DIO1 10: CadDetected if self.dio_mapping[1] == 0: self.on_rx_timeout() elif self.dio_mapping[1] == 1: self.on_fhss_change_channel() elif self.dio_mapping[1] == 2: self.on_CadDetected() else: raise RuntimeError("unknown dio1mapping!") def _dio2(self, channel): # DIO2 00: FhssChangeChannel # DIO2 01: FhssChangeChannel # DIO2 10: FhssChangeChannel self.on_fhss_change_channel() def _dio3(self, channel): # DIO3 00: CadDone # DIO3 01: ValidHeader # DIO3 10: PayloadCrcError if self.dio_mapping[3] == 0: self.on_cad_done() elif self.dio_mapping[3] == 1: self.on_valid_header() elif self.dio_mapping[3] == 2: self.on_payload_crc_error() else: raise RuntimeError("unknown dio3 mapping!") def _dio4(self, channel): raise RuntimeError("DIO4 is not used") def _dio5(self, channel): raise RuntimeError("DIO5 is not used") # All the set/get/read/write functions def get_mode(self): """ Get the mode :return: New mode """ self.mode = self.spi.xfer([REG.LORA.OP_MODE, 0])[1] return self.mode def set_mode(self, mode): """ Set the mode :param mode: Set the mode. Use constants.MODE class :return: New mode """ # the mode is backed up in self.mode if mode == self.mode: return mode if self.verbose: sys.stderr.write("Mode <- %s\n" % MODE.lookup[mode]) self.mode = mode return self.spi.xfer([REG.LORA.OP_MODE | 0x80, mode])[1] def write_payload(self, payload): """ Get FIFO ready for TX: Set FifoAddrPtr to FifoTxBaseAddr. The transceiver is put into STDBY mode. :param payload: Payload to write (list) :return: Written payload """ payload_size = len(payload) self.set_payload_length(payload_size) self.set_mode(MODE.STDBY) base_addr = self.get_fifo_tx_base_addr() self.set_fifo_addr_ptr(base_addr) return self.spi.xfer([REG.LORA.FIFO | 0x80] + payload)[1:] def reset_ptr_rx(self): """ Get FIFO ready for RX: Set FifoAddrPtr to FifoRxBaseAddr. The transceiver is put into STDBY mode. """ self.set_mode(MODE.STDBY) base_addr = self.get_fifo_rx_base_addr() self.set_fifo_addr_ptr(base_addr) def rx_is_good(self): """ Check the IRQ flags for RX errors :return: True if no errors :rtype: bool """ flags = self.get_irq_flags() print(flags) return not any([flags[s] for s in ['crc_error', 'rx_timeout']]) #return not any([flags[s] for s in ['valid_header', 'crc_error', 'rx_done', 'rx_timeout']]) def read_payload(self , nocheck = False): """ Read the payload from FIFO :param nocheck: If True then check rx_is_good() :return: Payload :rtype: list[int] """ if not nocheck and not self.rx_is_good(): return None rx_nb_bytes = self.get_rx_nb_bytes() fifo_rx_current_addr = self.get_fifo_rx_current_addr() #print(fifo_rx_current_addr) #print("--------") self.set_fifo_addr_ptr(fifo_rx_current_addr) payload = self.spi.xfer([REG.LORA.FIFO] + [0] * rx_nb_bytes)[1:] return payload def read_shift_payload(self , nocheck = False): """ Read the payload from FIFO :param nocheck: If True then check rx_is_good() :return: Payload :rtype: list[int] """ if not nocheck and not self.rx_is_good(): return None rx_nb_bytes = self.get_rx_nb_bytes() fifo_rx_current_addr = self.get_fifo_rx_current_addr() #print(fifo_rx_current_addr) #print("--------") self.set_fifo_addr_ptr(fifo_rx_current_addr) payload = self.spi.xfer([REG.LORA.FIFO] + [0] * rx_nb_bytes)[1:] for i in range(1,len(payload)-4): payload[i] -= 5 return payload def get_freq(self): """ Get the frequency (MHz) :return: Frequency in MHz :rtype: float """ msb, mid, lsb = self.spi.xfer([REG.LORA.FR_MSB, 0, 0, 0])[1:] f = lsb + 256*(mid + 256*msb) return f / 16384. def set_freq(self, f): """ Set the frequency (MHz) :param f: Frequency in MHz "type f: float :return: New register settings (3 bytes [msb, mid, lsb]) :rtype: list[int] """ assert self.mode == MODE.SLEEP or self.mode == MODE.STDBY or self.mode == MODE.FSK_STDBY i = int(f * 16384.) # choose floor msb = i // 65536 i -= msb * 65536 mid = i // 256 i -= mid * 256 lsb = i #i = int(f * 65536.) # choose floor #msb = i // 262144 #i -= msb * 262144 #mid = i // 1024 #i -= mid * 1024 #lsb = i #return self.spi.xfer([REG.LORA.FR_MSB | 0x80, 228, 212, 0]) #print("f:",f,"msb:",msb,"mid:",mid,"lsb:",lsb) return self.spi.xfer([REG.LORA.FR_MSB | 0x80, msb, mid, lsb]) def get_pa_config(self, convert_dBm=False): v = self.spi.xfer([REG.LORA.PA_CONFIG, 0])[1] pa_select = v >> 7 max_power = v >> 4 & 0b111 output_power = v & 0b1111 if convert_dBm: max_power = max_power * .6 + 10.8 output_power = max_power - (15 - output_power) return dict( pa_select = pa_select, max_power = max_power, output_power = output_power ) def set_pa_config(self, pa_select=None, max_power=None, output_power=None): """ Configure the PA :param pa_select: Selects PA output pin, 0->RFO, 1->PA_BOOST :param max_power: Select max output power Pmax=10.8+0.6*MaxPower :param output_power: Output power Pout=Pmax-(15-OutputPower) if PaSelect = 0, Pout=17-(15-OutputPower) if PaSelect = 1 (PA_BOOST pin) :return: new register value """ loc = locals() current = self.get_pa_config() loc = {s: current[s] if loc[s] is None else loc[s] for s in loc} val = (loc['pa_select'] << 7) | (loc['max_power'] << 4) | (loc['output_power']) return self.spi.xfer([REG.LORA.PA_CONFIG | 0x80, val])[1] @getter(REG.LORA.PA_RAMP) def get_pa_ramp(self, val): return val & 0b1111 @setter(REG.LORA.PA_RAMP) def set_pa_ramp(self, val): return val & 0b1111 def get_ocp(self, convert_mA=False): v = self.spi.xfer([REG.LORA.OCP, 0])[1] ocp_on = v >> 5 & 0x01 ocp_trim = v & 0b11111 if convert_mA: if ocp_trim <= 15: ocp_trim = 45. + 5. * ocp_trim elif ocp_trim <= 27: ocp_trim = -30. + 10. * ocp_trim else: assert ocp_trim <= 27 return dict( ocp_on = ocp_on, ocp_trim = ocp_trim ) def set_ocp_trim(self, I_mA): assert(I_mA >= 45 and I_mA <= 240) ocp_on = self.spi.xfer([REG.LORA.OCP, 0])[1] >> 5 & 0x01 if I_mA <= 120: v = int(round((I_mA-45.)/5.)) else: v = int(round((I_mA+30.)/10.)) v = set_bit(v, 5, ocp_on) return self.spi.xfer([REG.LORA.OCP | 0x80, v])[1] def get_lna(self): v = self.spi.xfer([REG.LORA.LNA, 0])[1] return dict( lna_gain = v >> 5, lna_boost_lf = v >> 3 & 0b11, lna_boost_hf = v & 0b11 ) def set_lna(self, lna_gain=None, lna_boost_lf=None, lna_boost_hf=None): assert lna_boost_hf is None or lna_boost_hf == 0b00 or lna_boost_hf == 0b11 self.set_mode(MODE.STDBY) if lna_gain is not None: # Apparently agc_auto_on must be 0 in order to set lna_gain self.set_agc_auto_on(lna_gain == GAIN.NOT_USED) loc = locals() current = self.get_lna() loc = {s: current[s] if loc[s] is None else loc[s] for s in loc} val = (loc['lna_gain'] << 5) | (loc['lna_boost_lf'] << 3) | (loc['lna_boost_hf']) retval = self.spi.xfer([REG.LORA.LNA | 0x80, val])[1] if lna_gain is not None: # agc_auto_on must track lna_gain: GAIN=NOT_USED -> agc_auto=ON, otherwise =OFF self.set_agc_auto_on(lna_gain == GAIN.NOT_USED) return retval def set_lna_gain(self, lna_gain): self.set_lna(lna_gain=lna_gain) def get_fifo_addr_ptr(self): return self.spi.xfer([REG.LORA.FIFO_ADDR_PTR, 0])[1] def set_fifo_addr_ptr(self, ptr): return self.spi.xfer([REG.LORA.FIFO_ADDR_PTR | 0x80, ptr])[1] def get_fifo_tx_base_addr(self): return self.spi.xfer([REG.LORA.FIFO_TX_BASE_ADDR, 0])[1] def set_fifo_tx_base_addr(self, ptr): return self.spi.xfer([REG.LORA.FIFO_TX_BASE_ADDR | 0x80, ptr])[1] def get_fifo_rx_base_addr(self): return self.spi.xfer([REG.LORA.FIFO_RX_BASE_ADDR, 0])[1] def set_fifo_rx_base_addr(self, ptr): return self.spi.xfer([REG.LORA.FIFO_RX_BASE_ADDR | 0x80, ptr])[1] def get_fifo_rx_current_addr(self): return self.spi.xfer([REG.LORA.FIFO_RX_CURR_ADDR, 0])[1] def get_fifo_rx_byte_addr(self): return self.spi.xfer([REG.LORA.FIFO_RX_BYTE_ADDR, 0])[1] def get_irq_flags_mask(self): v = self.spi.xfer([REG.LORA.IRQ_FLAGS_MASK, 0])[1] return dict( rx_timeout = v >> 7 & 0x01, rx_done = v >> 6 & 0x01, crc_error = v >> 5 & 0x01, valid_header = v >> 4 & 0x01, tx_done = v >> 3 & 0x01, cad_done = v >> 2 & 0x01, fhss_change_ch = v >> 1 & 0x01, cad_detected = v >> 0 & 0x01, ) def set_irq_flags_mask(self, rx_timeout=None, rx_done=None, crc_error=None, valid_header=None, tx_done=None, cad_done=None, fhss_change_ch=None, cad_detected=None): loc = locals() v = self.spi.xfer([REG.LORA.IRQ_FLAGS_MASK, 0])[1] for i, s in enumerate(['cad_detected', 'fhss_change_ch', 'cad_done', 'tx_done', 'valid_header', 'crc_error', 'rx_done', 'rx_timeout']): this_bit = locals()[s] if this_bit is not None: v = set_bit(v, i, this_bit) return self.spi.xfer([REG.LORA.IRQ_FLAGS_MASK | 0x80, v])[1] def get_irq_flags(self): v = self.spi.xfer([REG.LORA.IRQ_FLAGS, 0])[1] return dict( rx_timeout = v >> 7 & 0x01, rx_done = v >> 6 & 0x01, crc_error = v >> 5 & 0x01, valid_header = v >> 4 & 0x01, tx_done = v >> 3 & 0x01, cad_done = v >> 2 & 0x01, fhss_change_ch = v >> 1 & 0x01, cad_detected = v >> 0 & 0x01, ) def set_irq_flags(self, rx_timeout=None, rx_done=None, crc_error=None, valid_header=None, tx_done=None, cad_done=None, fhss_change_ch=None, cad_detected=None): v = self.spi.xfer([REG.LORA.IRQ_FLAGS, 0])[1] for i, s in enumerate(['cad_detected', 'fhss_change_ch', 'cad_done', 'tx_done', 'valid_header', 'crc_error', 'rx_done', 'rx_timeout']): this_bit = locals()[s] if this_bit is not None: v = set_bit(v, i, this_bit) return self.spi.xfer([REG.LORA.IRQ_FLAGS | 0x80, v])[1] def clear_irq_flags(self, RxTimeout=None, RxDone=None, PayloadCrcError=None, ValidHeader=None, TxDone=None, CadDone=None, FhssChangeChannel=None, CadDetected=None): v = 0 for i, s in enumerate(['CadDetected', 'FhssChangeChannel', 'CadDone', 'TxDone', 'ValidHeader', 'PayloadCrcError', 'RxDone', 'RxTimeout']): this_bit = locals()[s] if this_bit is not None: v = set_bit(v, eval('MASK.IRQ_FLAGS.' + s), this_bit) return self.spi.xfer([REG.LORA.IRQ_FLAGS | 0x80, v])[1] def get_rx_nb_bytes(self): return self.spi.xfer([REG.LORA.RX_NB_BYTES, 0])[1] def get_rx_header_cnt(self): msb, lsb = self.spi.xfer([REG.LORA.RX_HEADER_CNT_MSB, 0, 0])[1:] return lsb + 256 * msb def get_rx_packet_cnt(self): msb, lsb = self.spi.xfer([REG.LORA.RX_PACKET_CNT_MSB, 0, 0])[1:] return lsb + 256 * msb def get_modem_status(self): status = self.spi.xfer([REG.LORA.MODEM_STAT, 0])[1] return dict( rx_coding_rate = status >> 5 & 0x03, modem_clear = status >> 4 & 0x01, header_info_valid = status >> 3 & 0x01, rx_ongoing = status >> 2 & 0x01, signal_sync = status >> 1 & 0x01, signal_detected = status >> 0 & 0x01 ) def get_pkt_snr_value(self): v = self.spi.xfer([REG.LORA.PKT_SNR_VALUE, 0])[1] #return float(256-v) / 4. return float(v) / 4. def get_pkt_rssi_value(self): v = self.spi.xfer([REG.LORA.PKT_RSSI_VALUE, 0])[1] return v - 157 def get_rssi_value(self): v = self.spi.xfer([REG.LORA.RSSI_VALUE, 0])[1] return v - 157 def get_hop_channel(self): v = self.spi.xfer([REG.LORA.HOP_CHANNEL, 0])[1] return dict( pll_timeout = v >> 7, crc_on_payload = v >> 6 & 0x01, fhss_present_channel = v >> 5 & 0b111111 ) def get_modem_config_1(self): val = self.spi.xfer([REG.LORA.MODEM_CONFIG_1, 0])[1] return dict( bw = val >> 4 & 0x0F, coding_rate = val >> 1 & 0x07, implicit_header_mode = val & 0x01 ) def set_modem_config_1(self, bw=None, coding_rate=None, implicit_header_mode=None): loc = locals() current = self.get_modem_config_1() loc = {s: current[s] if loc[s] is None else loc[s] for s in loc} val = loc['implicit_header_mode'] | (loc['coding_rate'] << 1) | (loc['bw'] << 4) return self.spi.xfer([REG.LORA.MODEM_CONFIG_1 | 0x80, val])[1] def set_bw(self, bw): """ Set the bandwidth 0=7.8kHz ... 9=500kHz :param bw: A number 0,2,3,...,9 :return: """ self.set_modem_config_1(bw=bw) def set_coding_rate(self, coding_rate): """ Set the coding rate 4/5, 4/6, 4/7, 4/8 :param coding_rate: A number 1,2,3,4 :return: New register value """ self.set_modem_config_1(coding_rate=coding_rate) def set_implicit_header_mode(self, implicit_header_mode): self.set_modem_config_1(implicit_header_mode=implicit_header_mode) def get_modem_config_2(self, include_symb_timout_lsb=False): val = self.spi.xfer([REG.LORA.MODEM_CONFIG_2, 0])[1] d = dict( spreading_factor = val >> 4 & 0x0F, tx_cont_mode = val >> 3 & 0x01, rx_crc = val >> 2 & 0x01, ) if include_symb_timout_lsb: d['symb_timout_lsb'] = val & 0x03 return d def set_modem_config_2(self, spreading_factor=None, tx_cont_mode=None, rx_crc=None): loc = locals() # RegModemConfig2 contains the SymbTimout MSB bits. We tack the back on when writing this register. current = self.get_modem_config_2(include_symb_timout_lsb=True) loc = {s: current[s] if loc[s] is None else loc[s] for s in loc} val = (loc['spreading_factor'] << 4) | (loc['tx_cont_mode'] << 3) | (loc['rx_crc'] << 2) | current['symb_timout_lsb'] return self.spi.xfer([REG.LORA.MODEM_CONFIG_2 | 0x80, val])[1] def set_spreading_factor(self, spreading_factor): self.set_modem_config_2(spreading_factor=spreading_factor) def set_rx_crc(self, rx_crc): self.set_modem_config_2(rx_crc=rx_crc) def get_modem_config_3(self): val = self.spi.xfer([REG.LORA.MODEM_CONFIG_3, 0])[1] return dict( low_data_rate_optim = val >> 3 & 0x01, agc_auto_on = val >> 2 & 0x01 ) def set_modem_config_3(self, low_data_rate_optim=None, agc_auto_on=None): loc = locals() current = self.get_modem_config_3() loc = {s: current[s] if loc[s] is None else loc[s] for s in loc} val = (loc['low_data_rate_optim'] << 3) | (loc['agc_auto_on'] << 2) return self.spi.xfer([REG.LORA.MODEM_CONFIG_3 | 0x80, val])[1] @setter(REG.LORA.INVERT_IQ) def set_invert_iq(self, invert): """ Invert the LoRa I and Q signals :param invert: 0: normal mode, 1: I and Q inverted :return: New value of register """ return 0x27 | (invert & 0x01) << 6 @setter(REG.LORA.INVERT_IQ) def set_invert_iq_tx(self, invert): #invert tx iq return 0x26 | (invert & 0x01) << 6 @getter(REG.LORA.INVERT_IQ) def get_invert_iq(self, val): """ Get the invert the I and Q setting :return: 0: normal mode, 1: I and Q inverted """ return (val >> 6) & 0x01 def get_agc_auto_on(self): return self.get_modem_config_3()['agc_auto_on'] def set_agc_auto_on(self, agc_auto_on): self.set_modem_config_3(agc_auto_on=agc_auto_on) def get_low_data_rate_optim(self): return self.set_modem_config_3()['low_data_rate_optim'] def set_low_data_rate_optim(self, low_data_rate_optim): self.set_modem_config_3(low_data_rate_optim=low_data_rate_optim) def get_symb_timeout(self): SYMB_TIMEOUT_MSB = REG.LORA.MODEM_CONFIG_2 msb, lsb = self.spi.xfer([SYMB_TIMEOUT_MSB, 0, 0])[1:] # the MSB bits are stored in REG.LORA.MODEM_CONFIG_2 msb = msb & 0b11 return lsb + 256 * msb def set_symb_timeout(self, timeout): bkup_reg_modem_config_2 = self.spi.xfer([REG.LORA.MODEM_CONFIG_2, 0])[1] msb = timeout >> 8 & 0b11 # bits 8-9 lsb = timeout - 256 * msb # bits 0-7 reg_modem_config_2 = bkup_reg_modem_config_2 & 0xFC | msb # bits 2-7 of bkup_reg_modem_config_2 ORed with the two msb bits old_msb = self.spi.xfer([REG.LORA.MODEM_CONFIG_2 | 0x80, reg_modem_config_2])[1] & 0x03 old_lsb = self.spi.xfer([REG.LORA.SYMB_TIMEOUT_LSB | 0x80, lsb])[1] return old_lsb + 256 * old_msb def get_preamble(self): msb, lsb = self.spi.xfer([REG.LORA.PREAMBLE_MSB, 0, 0])[1:] return lsb + 256 * msb def set_preamble(self, preamble): msb = preamble >> 8 lsb = preamble - msb * 256 old_msb, old_lsb = self.spi.xfer([REG.LORA.PREAMBLE_MSB | 0x80, msb, lsb])[1:] return old_lsb + 256 * old_msb @getter(REG.LORA.PAYLOAD_LENGTH) def get_payload_length(self, val): return val @setter(REG.LORA.PAYLOAD_LENGTH) def set_payload_length(self, payload_length): return payload_length @getter(REG.LORA.MAX_PAYLOAD_LENGTH) def get_max_payload_length(self, val): return val @setter(REG.LORA.MAX_PAYLOAD_LENGTH) def set_max_payload_length(self, max_payload_length): return max_payload_length @getter(REG.LORA.HOP_PERIOD) def get_hop_period(self, val): return val @setter(REG.LORA.HOP_PERIOD) def set_hop_period(self, hop_period): return hop_period def get_fei(self): msb, mid, lsb = self.spi.xfer([REG.LORA.FEI_MSB, 0, 0, 0])[1:] msb &= 0x0F freq_error = lsb + 256 * (mid + 256 * msb) return freq_error @getter(REG.LORA.DETECT_OPTIMIZE) def get_detect_optimize(self, val): """ Get LoRa detection optimize setting :return: detection optimize setting 0x03: SF7-12, 0x05: SF6 """ return val & 0b111 @setter(REG.LORA.DETECT_OPTIMIZE) def set_detect_optimize(self, detect_optimize): """ Set LoRa detection optimize :param detect_optimize 0x03: SF7-12, 0x05: SF6 :return: New register value """ assert detect_optimize == 0x03 or detect_optimize == 0x05 return detect_optimize & 0b111 @getter(REG.LORA.DETECTION_THRESH) def get_detection_threshold(self, val): """ Get LoRa detection threshold setting :return: detection threshold 0x0A: SF7-12, 0x0C: SF6 """ return val @setter(REG.LORA.DETECTION_THRESH) def set_detection_threshold(self, detect_threshold): """ Set LoRa detection optimize :param detect_threshold 0x0A: SF7-12, 0x0C: SF6 :return: New register value """ assert detect_threshold == 0x0A or detect_threshold == 0x0C return detect_threshold @getter(REG.LORA.SYNC_WORD) def get_sync_word(self, sync_word): return sync_word @setter(REG.LORA.SYNC_WORD) def set_sync_word(self, sync_word): return sync_word @getter(REG.LORA.DIO_MAPPING_1) def get_dio_mapping_1(self, mapping): """ Get mapping of pins DIO0 to DIO3. Object variable dio_mapping will be set. :param mapping: Register value :type mapping: int :return: Value of the mapping list :rtype: list[int] """ self.dio_mapping = [mapping>>6 & 0x03, mapping>>4 & 0x03, mapping>>2 & 0x03, mapping>>0 & 0x03] \ + self.dio_mapping[4:6] return self.dio_mapping @setter(REG.LORA.DIO_MAPPING_1) def set_dio_mapping_1(self, mapping): """ Set mapping of pins DIO0 to DIO3. Object variable dio_mapping will be set. :param mapping: Register value :type mapping: int :return: New value of the register :rtype: int """ self.dio_mapping = [mapping>>6 & 0x03, mapping>>4 & 0x03, mapping>>2 & 0x03, mapping>>0 & 0x03] \ + self.dio_mapping[4:6] return mapping @getter(REG.LORA.DIO_MAPPING_2) def get_dio_mapping_2(self, mapping): """ Get mapping of pins DIO4 to DIO5. Object variable dio_mapping will be set. :param mapping: Register value :type mapping: int :return: Value of the mapping list :rtype: list[int] """ self.dio_mapping = self.dio_mapping[0:4] + [mapping>>6 & 0x03, mapping>>4 & 0x03] return self.dio_mapping @setter(REG.LORA.DIO_MAPPING_2) def set_dio_mapping_2(self, mapping): """ Set mapping of pins DIO4 to DIO5. Object variable dio_mapping will be set. :param mapping: Register value :type mapping: int :return: New value of the register :rtype: int """ assert mapping & 0b00001110 == 0 self.dio_mapping = self.dio_mapping[0:4] + [mapping>>6 & 0x03, mapping>>4 & 0x03] return mapping def get_dio_mapping(self): """ Utility function that returns the list of current DIO mappings. Object variable dio_mapping will be set. :return: List of current DIO mappings :rtype: list[int] """ self.get_dio_mapping_1() return self.get_dio_mapping_2() def set_dio_mapping(self, mapping): """ Utility function that returns the list of current DIO mappings. Object variable dio_mapping will be set. :param mapping: DIO mapping list :type mapping: list[int] :return: New DIO mapping list :rtype: list[int] """ mapping_1 = (mapping[0] & 0x03) << 6 | (mapping[1] & 0x03) << 4 | (mapping[2] & 0x3) << 2 | mapping[3] & 0x3 mapping_2 = (mapping[4] & 0x03) << 6 | (mapping[5] & 0x03) << 4 self.set_dio_mapping_1(mapping_1) return self.set_dio_mapping_2(mapping_2) @getter(REG.LORA.VERSION) def get_version(self, version): """ Version code of the chip. Bits 7-4 give the full revision number; bits 3-0 give the metal mask revision number. :return: Version code :rtype: int """ return version @getter(REG.LORA.TCXO) def get_tcxo(self, tcxo): """ Get TCXO or XTAL input setting 0 -> "XTAL": Crystal Oscillator with external Crystal 1 -> "TCXO": External clipped sine TCXO AC-connected to XTA pin :param tcxo: 1=TCXO or 0=XTAL input setting :return: TCXO or XTAL input setting :type: int (0 or 1) """ return tcxo & 0b00010000 @setter(REG.LORA.TCXO) def set_tcxo(self, tcxo): """ Make TCXO or XTAL input setting. 0 -> "XTAL": Crystal Oscillator with external Crystal 1 -> "TCXO": External clipped sine TCXO AC-connected to XTA pin :param tcxo: 1=TCXO or 0=XTAL input setting :return: new TCXO or XTAL input setting """ return (tcxo >= 1) << 4 | 0x09 # bits 0-3 must be 0b1001 @getter(REG.LORA.PA_DAC) def get_pa_dac(self, pa_dac): """ Enables the +20dBm option on PA_BOOST pin False -> Default value True -> +20dBm on PA_BOOST when OutputPower=1111 :return: True/False if +20dBm option on PA_BOOST on/off :rtype: bool """ pa_dac &= 0x07 # only bits 0-2 if pa_dac == 0x04: return False elif pa_dac == 0x07: return True else: raise RuntimeError("Bad PA_DAC value %s" % hex(pa_dac)) @setter(REG.LORA.PA_DAC) def set_pa_dac(self, pa_dac): """ Enables the +20dBm option on PA_BOOST pin False -> Default value True -> +20dBm on PA_BOOST when OutputPower=1111 :param pa_dac: 1/0 if +20dBm option on PA_BOOST on/off :return: New pa_dac register value :rtype: int """ return 0x87 if pa_dac else 0x84 def rx_chain_calibration(self, freq=868.): """ Run the image calibration (see Semtech documentation section 4.2.3.8) :param freq: Frequency for the HF calibration :return: None """ # backup some registers op_mode_bkup = self.get_mode() pa_config_bkup = self.get_register(REG.LORA.PA_CONFIG) freq_bkup = self.get_freq() # for image calibration device must be in FSK standby mode self.set_mode(MODE.FSK_STDBY) # cut the PA self.set_register(REG.LORA.PA_CONFIG, 0x00) # calibration for the LF band image_cal = (self.get_register(REG.FSK.IMAGE_CAL) & 0xBF) | 0x40 self.set_register(REG.FSK.IMAGE_CAL, image_cal) while (self.get_register(REG.FSK.IMAGE_CAL) & 0x20) == 0x20: pass # Set a Frequency in HF band self.set_freq(freq) # calibration for the HF band image_cal = (self.get_register(REG.FSK.IMAGE_CAL) & 0xBF) | 0x40 self.set_register(REG.FSK.IMAGE_CAL, image_cal) while (self.get_register(REG.FSK.IMAGE_CAL) & 0x20) == 0x20: pass # put back the saved parameters self.set_mode(op_mode_bkup) self.set_register(REG.LORA.PA_CONFIG, pa_config_bkup) self.set_freq(freq_bkup) def dump_registers(self): """ Returns a list of [reg_addr, reg_name, reg_value] tuples. Chip is put into mode SLEEP. :return: List of [reg_addr, reg_name, reg_value] tuples :rtype: list[tuple] """ self.set_mode(MODE.SLEEP) values = self.get_all_registers() skip_set = set([REG.LORA.FIFO]) result_list = [] for i, s in REG.LORA.lookup.iteritems(): if i in skip_set: continue v = values[i] result_list.append((i, s, v)) return result_list def get_register(self, register_address): return self.spi.xfer([register_address & 0x7F, 0])[1] def set_register(self, register_address, val): return self.spi.xfer([register_address | 0x80, val])[1] def get_all_registers(self): # read all registers reg = [0] + self.spi.xfer([1]+[0]*0x3E)[1:] self.mode = reg[1] return reg def __del__(self): self.set_mode(MODE.SLEEP) if self.verbose: sys.stderr.write("MODE=SLEEP\n") def __str__(self): # don't use __str__ while in any mode other that SLEEP or STDBY assert(self.mode == MODE.SLEEP or self.mode == MODE.STDBY) onoff = lambda i: 'ON' if i else 'OFF' f = self.get_freq() cfg1 = self.get_modem_config_1() cfg2 = self.get_modem_config_2() cfg3 = self.get_modem_config_3() pa_config = self.get_pa_config(convert_dBm=True) ocp = self.get_ocp(convert_mA=True) lna = self.get_lna() s = "SX127x LoRa registers:\n" s += " mode %s\n" % MODE.lookup[self.get_mode()] s += " freq %f MHz\n" % f s += " coding_rate %s\n" % CODING_RATE.lookup[cfg1['coding_rate']] s += " bw %s\n" % BW.lookup[cfg1['bw']] s += " spreading_factor %s chips/symb\n" % (1 << cfg2['spreading_factor']) s += " implicit_hdr_mode %s\n" % onoff(cfg1['implicit_header_mode']) s += " rx_payload_crc %s\n" % onoff(cfg2['rx_crc']) s += " tx_cont_mode %s\n" % onoff(cfg2['tx_cont_mode']) s += " preamble %d\n" % self.get_preamble() s += " low_data_rate_opti %s\n" % onoff(cfg3['low_data_rate_optim']) s += " agc_auto_on %s\n" % onoff(cfg3['agc_auto_on']) s += " symb_timeout %s\n" % self.get_symb_timeout() s += " freq_hop_period %s\n" % self.get_hop_period() s += " hop_channel %s\n" % self.get_hop_channel() s += " payload_length %s\n" % self.get_payload_length() s += " max_payload_length %s\n" % self.get_max_payload_length() s += " irq_flags_mask %s\n" % self.get_irq_flags_mask() s += " irq_flags %s\n" % self.get_irq_flags() s += " rx_nb_byte %d\n" % self.get_rx_nb_bytes() s += " rx_header_cnt %d\n" % self.get_rx_header_cnt() s += " rx_packet_cnt %d\n" % self.get_rx_packet_cnt() s += " pkt_snr_value %f\n" % self.get_pkt_snr_value() s += " pkt_rssi_value %d\n" % self.get_pkt_rssi_value() s += " rssi_value %d\n" % self.get_rssi_value() s += " fei %d\n" % self.get_fei() s += " pa_select %s\n" % PA_SELECT.lookup[pa_config['pa_select']] s += " max_power %f dBm\n" % pa_config['max_power'] s += " output_power %f dBm\n" % pa_config['output_power'] s += " ocp %s\n" % onoff(ocp['ocp_on']) s += " ocp_trim %f mA\n" % ocp['ocp_trim'] s += " lna_gain %s\n" % GAIN.lookup[lna['lna_gain']] s += " lna_boost_lf %s\n" % bin(lna['lna_boost_lf']) s += " lna_boost_hf %s\n" % bin(lna['lna_boost_hf']) s += " detect_optimize %#02x\n" % self.get_detect_optimize() s += " detection_thresh %#02x\n" % self.get_detection_threshold() s += " sync_word %#02x\n" % self.get_sync_word() s += " dio_mapping 0..5 %s\n" % self.get_dio_mapping() s += " tcxo %s\n" % ['XTAL', 'TCXO'][self.get_tcxo()] s += " pa_dac %s\n" % ['default', 'PA_BOOST'][self.get_pa_dac()] s += " fifo_addr_ptr %#02x\n" % self.get_fifo_addr_ptr() s += " fifo_tx_base_addr %#02x\n" % self.get_fifo_tx_base_addr() s += " fifo_rx_base_addr %#02x\n" % self.get_fifo_rx_base_addr() s += " fifo_rx_curr_addr %#02x\n" % self.get_fifo_rx_current_addr() s += " fifo_rx_byte_addr %#02x\n" % self.get_fifo_rx_byte_addr() s += " status %s\n" % self.get_modem_status() s += " version %#02x\n" % self.get_version() return s
[ "noreply@github.com" ]
qualitywow.noreply@github.com
8da47a5ba82adab92c31ba2af81ee90577238534
c54719e0c6552a9fffaa7dc9874752e0572f48bb
/install
e4c83ecc1eaf76dd5808a4f1ebcf2c4974e2662a
[]
no_license
peecky/yandere-trace
27fc8c5dabcee0f3f62ace6df62e7905ea7d01cb
739954a6202d3941e254f9526f4850f6fdd67f72
refs/heads/master
2023-07-12T16:37:45.875933
2023-06-14T08:21:58
2023-06-14T08:21:58
11,084,649
0
0
null
2023-07-12T14:01:52
2013-07-01T04:43:32
PHP
UTF-8
Python
false
false
1,833
#!/usr/bin/python # -*- coding: utf-8 -*- import MySQLdb from defines import * con = MySQLdb.connect(DB_HOST, DB_USER_NAME, DB_PASSWORD, DB_DB_NAME) with con: cur = con.cursor() cur.execute("""create table if not exists %s ( postId INT not null, postInfo MEDIUMBLOB not null, addedDate datetime not null, memo VARCHAR(4096) not null, INDEX (addedDate) )""" % (TABLE_PREFETCHING_QUEUE)) cur.execute("""create table if not exists %s ( id INT not null primary key, filename VARCHAR(255) not null, createdDate datetime not null, prefetched bool not null, memo VARCHAR(4096) not null, lastActiveDate datetime not null, INDEX (prefetched, lastActiveDate) )""" % (TABLE_POST)) cur.execute("""create table if not exists %s ( name VARCHAR(255) not null primary key, beginAt datetime not null, finishedAt datetime not null )""" % (TABLE_BACKGROUND_JOBS)) cur.execute("""create table if not exists %s ( `key` VARCHAR(255) not null primary key, value MEDIUMTEXT not null )""" % (TABLE_KEY_VALUE_STORE)) cur.execute("""create table if not exists %s ( id INT not null auto_increment primary key, lastActiveDate datetime not null, isActive bool not null )""" % (TABLE_USER)) cur.execute("""create table if not exists %s ( userId INT not null, type INT not null, key1 VARCHAR(255) not null, INDEX (key1) )""" % (TABLE_USER_AUTH)) cur.execute("""create table if not exists %s ( userId INT not null, authKey VARBINARY(20) not null, authType INT not null, memo VARCHAR(4096), date datetime not null, INDEX (userId) )""" % (TABLE_USER_SESSION)) cur.execute("""create table if not exists %s ( userId INT not null, postId INT not null, isRead bool not null, updateDate datetime not null, INDEX (isRead, userId), UNIQUE (userId, postId) )""" % (TABLE_ACTIVE_ITEM))
[ "crimsonpi@gmail.com" ]
crimsonpi@gmail.com
c991ede68b1981bd70aaaa75733cea077f39f178
13a31481b19cdc419d17e9c7f8437b6655e3198b
/Maze_1.py
83ebaff0aacb09a72250d89f5e16c37e53b3cbb6
[]
no_license
m8gr75/pygame
2bf619e3c96c3eef400a1647b74f58da128828cb
b1b5a8fcdf02581e62303b93d47db2d7e7a2ac26
refs/heads/master
2021-01-20T09:26:11.889185
2017-05-16T16:55:00
2017-05-16T16:55:00
90,252,179
0
0
null
null
null
null
UTF-8
Python
false
false
2,909
py
import pygame BLACK = (0, 0, 0) WHITE = (255, 255, 255) BLUE = (50, 50, 255) SCREEN_WIDTH = 800 SCREEN_HEIGHT = 600 class Player(pygame.sprite.Sprite): def __init__(self, x, y): super(Player, self).__init__() self.image = pygame.Surface([15, 15]) self.image.fill(WHITE) #Make our top-left corner the passed-in location self.rect = self.image.get_rect() self.rect.y = y self.rect.x = x #set speed vector self.change_x = 0 self.change_y = 0 self.walls = None def changespeed(self, x, y): self.change_x += x self.change_y += y def update(self): self.rect.x += self.change_x block_hit_list = pygame.sprite.spritecollide(self, self.walls, False) for block in block_hit_list: if self.change_x > 0: self.rect.right = block.rect.left else: self.rect.left = block.rect.right self.rect.y += self.change_y block_hit_list = pygame.sprite.spritecollide(self, self.walls, False) for block in block_hit_list: if self.change_y > 0: self.rect.bottom = block.rect.top else: self.rect.top = block.rect.bottom class Wall(pygame.sprite.Sprite): def __init__(self, x, y, width, height): super(Wall, self).__init__() self.image = pygame.Surface([width, height]) self.image.fill(BLUE) self.rect = self.image.get_rect() self.rect.y = y self.rect.x = x pygame.init() screen = pygame.display.set_mode([SCREEN_WIDTH, SCREEN_HEIGHT]) pygame.display.set_caption=("Maze 1") all_sprite_list = pygame.sprite.Group() wall_list = pygame.sprite.Group() clock = pygame.time.Clock() done = True wall = Wall(0, 0, 10, 600) wall_list.add(wall) all_sprite_list.add(wall) wall = Wall(790, 0, 10, 600) wall_list.add(wall) all_sprite_list.add(wall) wall = Wall(10, 0, 790, 10) wall_list.add(wall) all_sprite_list.add(wall) wall = Wall(0, 590, 790, 10) # mine coord. start, end, finish point x, spessore altezza wall_list.add(wall) all_sprite_list.add(wall) wall = Wall(10, 200, 100, 10) #wall along wall_list.add(wall) all_sprite_list.add(wall) player = Player(50, 50) player.walls = wall_list all_sprite_list.add(player) while done: for event in pygame.event.get(): if event.type == pygame.QUIT: done = False elif event.type == pygame.KEYDOWN: if event.key == pygame.K_LEFT: player.changespeed(-3, 0) elif event.key == pygame.K_RIGHT: player.changespeed(3, 0) elif event.key == pygame.K_UP: player.changespeed(0, -3) elif event.key == pygame.K_DOWN: player.changespeed(0, 3) elif event.type == pygame.KEYUP: if event.key == pygame.K_LEFT: player.changespeed(3, 0) elif event.key == pygame.K_RIGHT: player.changespeed(-3, 0) elif event.key == pygame.K_UP: player.changespeed(0, 3) elif event.key == pygame.K_DOWN: player.changespeed(0, -3) all_sprite_list.update() screen.fill(BLACK) all_sprite_list.draw(screen) pygame.display.flip() clock.tick(60) pygame.quit()
[ "noreply@github.com" ]
m8gr75.noreply@github.com
3dcd85c38401d06af2e66326a9b522210cb53cf9
1f006f0c7871fcde10986c4f5cec916f545afc9f
/apps/ice/plugins/oxml/oxml2xhtml_basic_states.py
aa5a0c3fb0c927117618d8300e5a12d3ff58f720
[]
no_license
ptsefton/integrated-content-environment
248b8cd29b29e8989ec1a154dd373814742a38c1
c1d6b5a1bea3df4dde10cb582fb0da361dd747bc
refs/heads/master
2021-01-10T04:46:09.319989
2011-05-05T01:42:52
2011-05-05T01:42:52
36,273,470
0
0
null
null
null
null
UTF-8
Python
false
false
12,587
py
# Copyright (C) 2010 Distance and e-Learning Centre, # University of Southern Queensland # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # """ """ from oxml2xhtml_baseState import BaseState class NullState(BaseState): pass class DocumentState(BaseState): pass class BodyState(BaseState): pass class ParaState(BaseState): # Heading, BlockQuote, DT, DD, Lists, etc... def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) self.__pLastChild = self.parentState._currentHtmlElement.getLastChild() self._currentHtmlElement = self._currentHtmlElement.addChildElement("p") self._numId = "" self._nestedLevel = "" def startElement(self, name, attrs): if name=="w:bookmarkStart": bookmarkId = attrs.get("w:id") bookmarkName = attrs.get("w:name") prefix = self._oxml.idPrefix + self._oxml.bookmarkPrefix self._currentHtmlElement.addAttribute("id", prefix + bookmarkName) elif name=="w:bookmarkEnd": bookmarkId = attrs.get("w:id") def endState(self): style = self._style or "" pce = self.parentState._currentHtmlElement e = self._currentHtmlElement if style.startswith("Heading"): style = "h" + style[-1] if style.startswith("h"): e.name = style elif style.startswith("bq"): level = int(style[2]) e.name = "blockquote" e.setAttribute("class", "bq level%s %s" % (level, style)) e = e.addChildElement("p") elif style.startswith("dt") or style.startswith("dd"): try: level = int(style[2]) except: level = 0 ename = style[:2] if self.__pLastChild and self.__pLastChild.name=="dl": dl = self.__pLastChild else: dl = pce.addChildElement("dl") e.name = ename e.setAttribute("class", "%s level%s" % (style, level-1)) #e = dl.addChildElement(ename, {"class": "%s level%s" % (style, level-1)}) dl.addChild(e) elif style.startswith("li") or style=="ListParagraph": listType = "ol" # default attStyle = "" if style=="ListParagraph": # Word lists #self._numId level = self._nestedLevel ltype = style info = self._oxml.numbering.getNumLevelInfo(self._numId, level) format = info.get("format", "") try: leftIndent = info.get("leftIndent", "0") leftIndent = int(int(leftIndent)/180) attStyle += "padding-left:%sex;" % leftIndent except: pass if format=="bullet": listType = "ul" classStyle = "ulb" elif format=="decimal": classStyle = "lin" elif format=="lowerLetter": classStyle = "lia" elif format=="lowerRoman": classStyle = "lii" elif format=="upperLetter": classStyle = "liA" elif format=="upperRoman": classStyle = "liI" else: classStyle = style else: level = int(style[2]) ltype = style[3] classStyle = style[:2] + style[3] if ltype=="b": listType = "ul" # Find the pe(parent element) that we should be attacting to def isListElement(e): return e and (e.name=="ol" or e.name=="ul") pListElems = [] pLastChild = self.__pLastChild # __pLastChild = parentState htmlElement lastChild while isListElement(pLastChild): # find the depthest listElement first pListElems.insert(0, pLastChild) # process depthest first try: #pLastChild = ul/li:last/ul:last pLastChild = pLastChild.getLastChild().getLastChild() except: break #print "pListElems='%s'" % len(pListElems) listElem = None for listE in pListElems: if listE.tag==style + self._numId + self._nestedLevel: listE.addChildElement("li").addChild(e) listElem = listE break else: if level>listE.tagLevel: li = listE.getLastChild() ## add to listItem or add to listItem's p element addTo = li # add to the listItems # or add to the listItem's p element # p = li.getLastChild() # addTo = p ## NOTE: also the while loop above needs to be changed ## #pLastChild = ul/li:last/p:last/ul:last ## pLastChild = pLastChild.getLastChild().getLastChild().getLastChild() ## newListElem = addTo.addChildElement(listType, {"class":classStyle}) newListElem.tag = style + self._numId + self._nestedLevel newListElem.tagLevel = level newListElem.addChildElement("li").addChild(e) listElem = newListElem break if listElem is None: # create a new top-level list element newListElem = pce.addChildElement(listType, {"class":classStyle}) newListElem.tag = style + self._numId + self._nestedLevel newListElem.tagLevel = level newListElem.addChildElement("li").addChild(e) elif style=="Title": e.name = "h1" e.setAttribute("class", "title") if self.html.title=="": self.html.title = e.text elif style=="p-center": e.setAttribute("class", "centered") elif style=="p-right": e.setAttribute("class", "right-aligned") elif style=="p-indent": e.setAttribute("class", "indented") elif style.startswith("pre"): level = 0 try: level = int(style[3]) except: pass e.name = "pre" e.setAttribute("class", "pre level%s" % level) else: pass # return False if endState is canceled return True def __processList(self): pass class ParaPropState(BaseState): # w:pPr def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def startElement(self, name, attrs): if name=="w:pStyle": self._style = attrs.get("w:val", "") def endState(self): p = self.parentState p._style = self._style # return False if endState is canceled return True class ParaNumPropState(BaseState): def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def startElement(self, name, attrs): if name=="w:numId": val = attrs.get("w:val", "") p = self.parentState.parentState p._numId = val elif name=="w:ilvl": val = attrs.get("w:val", "0") p = self.parentState.parentState p._nestedLevel = val class RunState(BaseState): # inline def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) self._styles = [] def startElement(self, name, attrs): if name=="w:br": self._text += "\n" elif name=="w:tab": self._text += "\t" def endState(self): ce = self._currentHtmlElement text = self._text children = [] # HACK - treat code as pre-formatted ??? if "code" in self._styles: t = self._html.createText(text) t = str(t) t = t.replace("\n", "<br/>").replace("\t", "&#160;"*4) text = self._html.createRawText(t) children.append(text) elif text.find("\n")==-1: # no new lines found children.append(text) else: lines = text.split("\n") children.append(lines.pop(0)) for line in lines: #ce.addChildElement("br") children.append(self.html.createElement("br")) children.append(line) # HACK - megre sibling code elements into one ??? if len(self._styles)==1 and ce.getLastChild().name==self._styles[0]: ce = ce.getLastChild() else: for style in self._styles: ce = ce.addChildElement(style) for child in children: ce.addChild(child) # return False if endState is canceled return True def addStyle(self, style): self._styles.append(style) class RunPropState(BaseState): # w:rPr def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def startElement(self, name, attrs): p = self.parentState styleName = None if name=="w:rStyle": name = attrs.get("w:val", "") if name=="i-code": styleName = "code" elif name=="i-sub": styleName = "sub" elif name=="i-sup": styleName = "sup" elif name=="w:b": styleName = "b" elif name=="w:i": styleName = "i" if styleName is not None: p.addStyle(styleName) def endState(self): # return False if endState is canceled return True class TextState(BaseState): # r:t def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def characters(self, text): self.parentState._text += text class HyperlinkState(BaseState): # w:hyperlink def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) ce = self._currentHtmlElement aName = attrs.get("w:anchor") rId = attrs.get("r:id") #="rId5" if aName: prefix = self._oxml.idPrefix + self._oxml.bookmarkPrefix href = "#" + prefix + aName ce = ce.addChildElement("a", href=href) else: docRels = self._oxml.docRels target, tMode = docRels.getTarget(rId), docRels.getTargetMode(rId) ce = ce.addChildElement("a", href=target) if tMode.lower()=="external": ce.addAttribute("type", "external") self._currentHtmlElement = ce def endState(self): # return False if endState is canceled return True class IgnoreState(BaseState): pass class UnknownState(BaseState): def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def startElement(self, name, attrs): pass def characters(self, text): pass def endState(self): # return False if endState is canceled return True class SectPropState(BaseState): def __init__(self, parentState, name=None, attrs={}): BaseState.__init__(self, parentState, name, attrs) def endState(self): # return False if endState is canceled return True
[ "raward@gmail.com@110e3293-9ef9-cb8f-f479-66bdb1942d05" ]
raward@gmail.com@110e3293-9ef9-cb8f-f479-66bdb1942d05
2d5854de4bf9e90ce484cc45109322c53f5a8080
a7206de39ac114c1a3f81d9085f93e101373d96d
/bcw_classifier.py
3075da247fbee00891929249e33c93e601a3639f
[]
no_license
jlsalmon/sga
99f4d9f618aeb60bd249725c645c5889b6d313b6
88064ec5324cc6848ba6bfb55ddbfe422f418508
refs/heads/master
2016-09-06T16:35:57.084735
2014-03-19T16:00:01
2014-03-19T16:00:01
null
0
0
null
null
null
null
UTF-8
Python
false
false
5,304
py
import random from classifier.BcwClassifier import BcwClassifier from classifier.gene import Gene from sga.population import Population def main(): data_file = 'classifier/data/bcw/breast-cancer-wisconsin.data.txt' data = list() #--------------------------------------------------------------------------- # Load the data #--------------------------------------------------------------------------- with open(data_file, 'r') as f: for line in f: data_line = list() # Split the line but throw away first number (ID number) line = line.split(',')[1:] # Store class label # data_line['class'] = line[-1] # Store data if '?' not in line: for item in line[:-1]: data_line.append(normalise(float(item))) data_line.append(int(line[-1].rstrip())) data.append(data_line) num_genes = 40 gene_length = 18 # lower + upper bound for each 9 data points classifier = BcwClassifier(data, num_genes, gene_length) #--------------------------------------------------------------------------- # Generate the initial population #--------------------------------------------------------------------------- generations = classifier.generations p = Population(representation=classifier.representation, size=classifier.population_size, fitness_func=classifier.fitness_func, selection_func=classifier.selection_func, crossover_func=classifier.crossover_func, mutation_func=classifier.mutation_func, natural_fitness=True, crossover_probability=classifier.crossover_prob, mutation_probability=classifier.mutation_prob, elite_count=classifier.elite_count, tournament_size=classifier.tournament_size) p.gen_population() #--------------------------------------------------------------------------- # Fiddle the population (ugly hack alert) #--------------------------------------------------------------------------- for i, individual in enumerate(p.population): new_genes = list() average_sigmas = list() individual.average_sigmas = list() for genes in classifier.batch_gen(individual.genes, classifier.gene_length): g = Gene(genes)#[normalise(float(gene)) for gene in genes]) g.class_label = 2 if random.random() < 0.5 else 4 g.mutation_step_sizes = [0.015 for _ in xrange(classifier.gene_length)] new_genes.append(g) # Update info for plotter average_sigmas.append(sum(g.mutation_step_sizes) / len(g.mutation_step_sizes)) individual.genes = new_genes individual.average_sigmas.append(sum(average_sigmas) / len(average_sigmas)) # Add strategy parameters individual.strategy_params = {'mutation_step_size': 0.05} #--------------------------------------------------------------------------- # Run the GA #--------------------------------------------------------------------------- p.run(generations) #--------------------------------------------------------------------------- # Validate the population #--------------------------------------------------------------------------- print avg = 0 for individual in p: avg += classifier.fitness_func(individual.genes, validate=True) print 'min individual: %d/%dt, %d/%dv (len=%d, num genes=%d) %s' % \ (classifier.fitness_func(p.min_individual().genes), len(classifier.training_set), classifier.fitness_func(p.min_individual().genes, validate=True), len(classifier.validation_set), len(p.min_individual()), len(p.min_individual()) / classifier.gene_length, p.min_individual()) print 'mean validation fitness:', avg / len(p) print 'max individual: %d/%dt, %d/%dv (len=%d, num genes=%d) %s' % \ (classifier.fitness_func(p.max_individual().genes), len(classifier.training_set), classifier.fitness_func(p.max_individual().genes, validate=True), len(classifier.validation_set), len(p.max_individual()), len(p.max_individual()) / classifier.gene_length, p.max_individual()) data = list() for chunk in classifier.batch_gen(p.average_sigmas, p.size): data.append(sum(chunk) / len(chunk)) p.add_to_plot(data, 'average sigma') for gene in p.max_individual().genes: for pair in classifier.batch_gen(gene.alleles, 2): print pair print gene.class_label print p.show_plot() def normalise(x): """""" return (x - 0) / (10 - 0) #------------------------------------------------------------------------------- # Bootstrap #------------------------------------------------------------------------------- if __name__ == "__main__": main()
[ "justin2.salmon@live.uwe.ac.uk" ]
justin2.salmon@live.uwe.ac.uk
8d6dcc134eeea4c7b3c88b01cc1ac7379c754755
8ddce82f28b9806d9dec1396989c09e46e141b56
/favoriteBooks/favoriteBooks/settings.py
8394b978b2301701fb7ccb35d0a8706029d73630
[]
no_license
achan9528/coding_dojo_django_django_intro
e2cdbf4a02093f93ab802221b557f59643e892d3
8af4d7f3d2ae215f563f6b2f9b6be9e19c6bbb6e
refs/heads/master
2023-02-20T22:00:50.141254
2021-01-22T22:43:23
2021-01-22T22:43:23
327,133,378
0
0
null
null
null
null
UTF-8
Python
false
false
3,130
py
""" Django settings for favoriteBooks project. Generated by 'django-admin startproject' using Django 2.2.4. For more information on this file, see https://docs.djangoproject.com/en/2.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.2/ref/settings/ """ import os # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'u6ko7hl#0lw)q1ca2b71tpe=ra#1r8qo&xd&0^mb15=wwc3ub=' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ 'onlineLibrary', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'favoriteBooks.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'favoriteBooks.wsgi.application' # Database # https://docs.djangoproject.com/en/2.2/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Password validation # https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/2.2/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/2.2/howto/static-files/ STATIC_URL = '/static/'
[ "achan@achans-MacBook-Pro.local" ]
achan@achans-MacBook-Pro.local
2e4599fcb12e9bafa55557645064f7af3f12c9e1
b085268320500f2aa3e2ba50b17f9a612ba8a409
/apps/organization/__init__.py
8f8089a4be6535f6597729edf6bd3583ad235e7e
[]
no_license
ribribrib2/Mxonline
31395f3a4aa47e60d2fd303b1f57bdeb8e56ddfb
7d5121f632365917e7fedb14493cf1705af83535
refs/heads/master
2020-03-25T02:44:39.296512
2018-08-18T17:10:55
2018-08-18T17:10:55
143,305,456
0
0
null
null
null
null
UTF-8
Python
false
false
87
py
# organization/__init__.py default_app_config = 'organization.apps.OrganizationConfig'
[ "1045602705@qq.com" ]
1045602705@qq.com
083fe6c984275123e90a1436370f4cbe136b03a6
c2ab9e30edc66bfd68e8d98e0dc41a67819f0e2c
/test_multinn.py
2b8cef5fdcfc4dee9543928748bb46691bb1863e
[]
no_license
Nair08/NeuralNetworks
e1c79d8adea2d1e9a10a7e1414b96eeb089fca7d
13f9495a4a508ea36d8160e31c4a48fd6da2d6d2
refs/heads/main
2023-02-03T06:05:35.494991
2020-12-25T01:24:53
2020-12-25T01:24:53
324,264,125
0
0
null
null
null
null
UTF-8
Python
false
false
10,356
py
# Nair, Siddhi # 1001-713-489 # 2020_10_25 # Assignment-03-01 import numpy as np import pytest from multinn import MultiNN import tensorflow as tf def test_weight_and_biases_dimensions(): input_dimension = 4 number_of_layers = 3 number_of_nodes_in_layers_list = list(np.random.randint(3, high=15, size=(number_of_layers,))) multi_nn = MultiNN(input_dimension) for layer_number in range(len(number_of_nodes_in_layers_list)): multi_nn.add_layer(number_of_nodes_in_layers_list[layer_number], transfer_function="Sigmoid") previous_number_of_outputs = input_dimension for layer_number in range(len(number_of_nodes_in_layers_list)): assert multi_nn.get_weights_without_biases(layer_number).shape == (previous_number_of_outputs, number_of_nodes_in_layers_list[layer_number]) z = multi_nn.get_biases(layer_number).shape previous_number_of_outputs = number_of_nodes_in_layers_list[layer_number] def test_get_and_set_weight_and_biases(): input_dimension = 4 number_of_layers = 3 number_of_nodes_in_layers_list = list(np.random.randint(3, high=15, size=(number_of_layers,))) multi_nn = MultiNN(input_dimension) for layer_number in range(len(number_of_nodes_in_layers_list)): multi_nn.add_layer(number_of_nodes_in_layers_list[layer_number], transfer_function="Sigmoid") for layer_number in range(len(number_of_nodes_in_layers_list)): W = multi_nn.get_weights_without_biases(layer_number) W = np.random.randn(*W.shape) multi_nn.set_weights_without_biases(W, layer_number) b = multi_nn.get_biases(layer_number) b = np.random.randn(*b.shape) multi_nn.set_biases(b, layer_number) assert np.array_equal(W, multi_nn.get_weights_without_biases(layer_number)) assert np.array_equal(b, multi_nn.get_biases(layer_number)) def test_predict(): np.random.seed(seed=1) input_dimension = 4 number_of_samples = 7 number_of_layers = 3 number_of_nodes_in_layers_list = list(np.random.randint(3, high=15, size=(number_of_layers,))) number_of_nodes_in_layers_list[-1] = 5 multi_nn = MultiNN(input_dimension) for layer_number in range(len(number_of_nodes_in_layers_list)): multi_nn.add_layer(number_of_nodes_in_layers_list[layer_number], transfer_function="Sigmoid") for layer_number in range(len(number_of_nodes_in_layers_list)): W = multi_nn.get_weights_without_biases(layer_number) np.random.seed(seed=1) W = np.random.randn(*W.shape) multi_nn.set_weights_without_biases(W, layer_number) b = multi_nn.get_biases(layer_number) b = np.random.randn(*b.shape) multi_nn.set_biases(b, layer_number) X = np.random.randn(number_of_samples, input_dimension) Y = multi_nn.predict(X) assert np.allclose(Y.numpy(), np.array( \ [[0.03266127, 0.50912841, 0.64450596, 0.9950739, 0.85501755], [0.10064564, 0.33718693, 0.30543574, 0.94555041, 0.85876801], [0.0723957, 0.37974684, 0.32749328, 0.96334569, 0.86322814], [0.08510464, 0.36674615, 0.49463606, 0.97151055, 0.79762128], [0.09168739, 0.3137653, 0.34286721, 0.96533277, 0.87458543], [0.03880329, 0.41823933, 0.33338152, 0.98297688, 0.86816211], [0.04737598, 0.4365602, 0.41720532, 0.9806787, 0.79618209]]), rtol=1e-3, atol=1e-3) def test_predict_02(): np.random.seed(seed=1) input_dimension = 4 number_of_samples = 7 number_of_layers = 2 number_of_nodes_in_layers_list = list(np.random.randint(3, high=15, size=(number_of_layers,))) number_of_nodes_in_layers_list[-1] = 5 multi_nn = MultiNN(input_dimension) for layer_number in range(len(number_of_nodes_in_layers_list)): multi_nn.add_layer(number_of_nodes_in_layers_list[layer_number], transfer_function="Linear") for layer_number in range(len(number_of_nodes_in_layers_list)): W = multi_nn.get_weights_without_biases(layer_number) np.random.seed(seed=1) W = np.random.randn(*W.shape) multi_nn.set_weights_without_biases(W, layer_number) b = multi_nn.get_biases(layer_number) b = np.random.randn(*b.shape) multi_nn.set_biases(b, layer_number) X = 0.01 * np.random.randn(number_of_samples, input_dimension) Y = multi_nn.predict(X).numpy() # print(np.array2string(np.array(Y), separator=",")) assert np.allclose(Y, np.array( \ [[-0.40741104, -3.44566828, -1.76869339, 1.6163245, -2.54072028], [-0.43079142, -3.33179871, -1.68949031, 1.60929609, -2.56731804], [-0.40121922, -3.38003556, -1.72446422, 1.62425049, -2.53508997], [-0.39082312, -3.38185473, -1.70911191, 1.58223456, -2.57304599], [-0.32408109, -3.351902, -1.66647768, 1.55353972, -2.5740835], [-0.25208801, -3.46616221, -1.72734675, 1.53356758, -2.55233025], [-0.54751084, -3.30222443, -1.73142232, 1.72880885, -2.50151569]]), rtol=1e-3, atol=1e-3) def test_train(): from tensorflow.keras.datasets import mnist np.random.seed(seed=1) (X_train, y_train), (X_test, y_test) = mnist.load_data() # Reshape and Normalize data X_train = X_train.reshape(-1, 784).astype(np.float64) / 255.0 - 0.5 y_train = y_train.flatten().astype(np.int32) X_test = X_test.reshape(-1, 784).astype(np.float64) / 255.0 - 0.5 y_test = y_test.flatten().astype(np.int32) input_dimension = X_train.shape[1] indices = list(range(X_train.shape[0])) # np.random.shuffle(indices) number_of_samples_to_use_for_training = 500 number_of_samples_to_use_for_testing = 100 X_train = X_train[indices[:number_of_samples_to_use_for_training]] y_train = y_train[indices[:number_of_samples_to_use_for_training]] X_test = X_test[indices[:number_of_samples_to_use_for_testing]] y_test = y_test[indices[:number_of_samples_to_use_for_testing]] multi_nn = MultiNN(input_dimension) number_of_classes = 10 activations_list = ["Relu", "Relu", "Linear"] number_of_neurons_list = [50, 20, number_of_classes] for layer_number in range(len(activations_list)): multi_nn.add_layer(number_of_neurons_list[layer_number], transfer_function=activations_list[layer_number]) for layer_number in range(len(multi_nn.weights)): W = multi_nn.get_weights_without_biases(layer_number) W = tf.Variable((np.random.randn(*W.shape)) * 0.3, trainable=True) multi_nn.set_weights_without_biases(W, layer_number) b = multi_nn.get_biases(layer_number=layer_number) b = tf.Variable(np.zeros(b.shape) * 0, trainable=True) multi_nn.set_biases(b, layer_number) confusion_matrix = multi_nn.calculate_confusion_matrix(X_train, y_train) # print("************* Confusion Matrix with training data before training ***************\n", np.array2string(confusion_matrix, separator=",")) assert np.allclose(confusion_matrix, np.array( \ [[0., 0., 0., 0., 0., 0., 44., 3., 0., 3.], [0., 0., 0., 0., 1., 0., 62., 2., 0., 1.], [0., 0., 0., 0., 1., 0., 42., 3., 0., 6.], [0., 0., 0., 0., 0., 0., 47., 1., 0., 2.], [0., 0., 0., 0., 0., 0., 20., 16., 6., 10.], [0., 0., 0., 0., 1., 0., 30., 5., 1., 2.], [0., 0., 0., 0., 0., 0., 35., 4., 2., 4.], [0., 0., 0., 0., 0., 0., 25., 12., 13., 2.], [0., 0., 0., 0., 0., 0., 29., 1., 4., 5.], [0., 0., 0., 0., 1., 0., 43., 3., 8., 0.]]), rtol=1e-3, atol=1e-3) percent_error_with_training_data = [] percent_error_with_test_data = [] for k in range(10): multi_nn.train(X_train, y_train, batch_size=100, num_epochs=20, alpha=0.1) percent_error_with_training_data.append(multi_nn.calculate_percent_error(X_train, y_train)) percent_error_with_test_data.append(multi_nn.calculate_percent_error(X_test, y_test)) confusion_matrix = multi_nn.calculate_confusion_matrix(X_train, y_train) # print("************* Percent error using train ***************\n",np.array2string(np.array(percent_error_with_training_data), separator=",")) # print("************* Confusion Matrix with training data ***************\n", np.array2string(confusion_matrix, separator=",")) assert np.allclose(percent_error_with_training_data, np.array( \ [0.324, 0.14, 0.084, 0.036, 0.022, 0.014, 0.012, 0.012, 0.012, 0.012]), rtol=1e-3, atol=1e-3) assert np.allclose(confusion_matrix, np.array( \ [[50., 0., 0., 0., 0., 0., 0., 0., 0., 0.], [0., 65., 1., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 52., 0., 0., 0., 0., 0., 0., 0.], [0., 0., 1., 48., 0., 1., 0., 0., 0., 0.], [0., 0., 0., 0., 52., 0., 0., 0., 0., 0.], [0., 0., 0., 0., 0., 39., 0., 0., 0., 0.], [0., 0., 2., 0., 0., 0., 43., 0., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 52., 0., 0.], [0., 0., 0., 0., 0., 0., 0., 0., 39., 0.], [0., 0., 0., 0., 0., 1., 0., 0., 0., 54.]]), rtol=1e-3, atol=1e-3) confusion_matrix = multi_nn.calculate_confusion_matrix(X_test, y_test) # print("************* Percent error using test ***************\n",np.array2string(np.array(percent_error_with_test_data), separator=",")) # print("************* Confusion Matrix with test data ***************\n", np.array2string(confusion_matrix, separator=",")) assert np.allclose(percent_error_with_test_data, np.array( \ [0.51, 0.36, 0.3, 0.28, 0.28, 0.27, 0.26, 0.26, 0.26, 0.26]), rtol=1e-3, atol=1e-3) assert np.allclose(confusion_matrix, np.array( \ [[7., 0., 0., 0., 0., 1., 0., 0., 0., 0.], [0., 12., 0., 0., 0., 0., 0., 0., 0., 2.], [0., 0., 4., 1., 1., 1., 0., 1., 0., 0.], [0., 0., 0., 9., 0., 1., 0., 0., 0., 1.], [1., 0., 0., 0., 11., 0., 0., 1., 0., 1.], [0., 0., 0., 1., 2., 2., 0., 0., 1., 1.], [0., 0., 1., 0., 1., 0., 7., 1., 0., 0.], [0., 0., 0., 0., 1., 0., 0., 12., 0., 2.], [0., 0., 0., 0., 0., 1., 0., 0., 1., 0.], [0., 0., 0., 0., 1., 0., 0., 1., 0., 9.]]), rtol=1e-3, atol=1e-3)
[ "noreply@github.com" ]
Nair08.noreply@github.com
a28750d60b8ec5ca5296f66052472828b084a86a
293763954ad29020d68d17bb20b2ac8ce09b2412
/Learning & Documentation/Create Models in Tensorflow/linear_regression.py
de2ef0001bad013224eaa176c22b37be896378d2
[ "MIT" ]
permissive
grebtsew/Object-and-facial-detection-in-python
b4371d86ca1b997c310c961b4eeb975af42a8f78
4ef987f1de7509876ca1e3588b2d6f4afaef2a75
refs/heads/master
2023-03-30T16:52:07.192025
2022-07-29T16:00:50
2022-07-29T16:00:50
122,378,661
17
5
MIT
2023-03-25T01:49:15
2018-02-21T18:52:07
Python
UTF-8
Python
false
false
3,681
py
# Copyright 2016 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. # ============================================================================== """Linear regression using the LinearRegressor Estimator.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np import tensorflow as tf import imports85 # pylint: disable=g-bad-import-order STEPS = 1000 PRICE_NORM_FACTOR = 1000 def main(argv): """Builds, trains, and evaluates the model.""" #assert len(argv) == 1 (train, test) = imports85.dataset() print(train) print("-----") print(test) exit(0) print("got dataset") # Switch the labels to units of thousands for better convergence. def to_thousands(features, labels): return features, labels / PRICE_NORM_FACTOR print("train") train = train.map(to_thousands) print("test") test = test.map(to_thousands) # Build the training input_fn. def input_train(): return ( # Shuffling with a buffer larger than the data set ensures # that the examples are well mixed. train.shuffle(1000).batch(128) # Repeat forever .repeat().make_one_shot_iterator().get_next()) # Build the validation input_fn. def input_test(): return (test.shuffle(1000).batch(128) .make_one_shot_iterator().get_next()) feature_columns = [ # "curb-weight" and "highway-mpg" are numeric columns. tf.feature_column.numeric_column(key="curb-weight"), tf.feature_column.numeric_column(key="highway-mpg"), ] # Build the Estimator. model = tf.estimator.LinearRegressor(feature_columns=feature_columns) # Train the model. # By default, the Estimators log output every 100 steps. model.train(input_fn=input_train, steps=STEPS) # Evaluate how the model performs on data it has not yet seen. eval_result = model.evaluate(input_fn=input_test) # The evaluation returns a Python dictionary. The "average_loss" key holds the # Mean Squared Error (MSE). average_loss = eval_result["average_loss"] # Convert MSE to Root Mean Square Error (RMSE). print("\n" + 80 * "*") print("\nRMS error for the test set: ${:.0f}" .format(PRICE_NORM_FACTOR * average_loss**0.5)) # Run the model in prediction mode. input_dict = { "curb-weight": np.array([2000, 3000]), "highway-mpg": np.array([30, 40]) } predict_input_fn = tf.estimator.inputs.numpy_input_fn( input_dict, shuffle=False) predict_results = model.predict(input_fn=predict_input_fn) # Print the prediction results. print("\nPrediction results:") for i, prediction in enumerate(predict_results): msg = ("Curb weight: {: 4d}lbs, " "Highway: {: 0d}mpg, " "Prediction: ${: 9.2f}") msg = msg.format(input_dict["curb-weight"][i], input_dict["highway-mpg"][i], PRICE_NORM_FACTOR * prediction["predictions"][0]) print(" " + msg) print() if __name__ == "__main__": # The Estimator periodically generates "INFO" logs; make these logs visible. tf.logging.set_verbosity(tf.logging.INFO) tf.app.run(main=main)
[ "danwe980@student.liu.se" ]
danwe980@student.liu.se
4e0dade735408ec02614201f3dce6b1d129075a7
a518141ca3ba2b6fa63a7961b51936d9438ff022
/10812 - Beat the Spread!.py
5d9944100b2a7760d5decf4054a94f3decb2b9c7
[]
no_license
jlhung/UVA-Python
ec93b2c98e04c753e8356f3e4825584fae4a8663
7a0db4fecffd7ac4f377f93da41291a8e998ee9b
refs/heads/master
2022-11-28T04:47:49.270187
2020-08-10T13:19:58
2020-08-10T13:19:58
116,969,745
19
9
null
null
null
null
UTF-8
Python
false
false
182
py
n = int(input()) while n: x, y = map(int, input().split()) if (x+y) % 2 or (x+y) < 0 or (x-y) < 0: print("impossible") else: print(int((x+y) / 2), int((x-y) / 2)) n -= 1
[ "35291112+jlhung@users.noreply.github.com" ]
35291112+jlhung@users.noreply.github.com